OSDN Git Service

2011-11-21 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_res.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              S E M _ R E S                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2011, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Debug;    use Debug;
29 with Debug_A;  use Debug_A;
30 with Einfo;    use Einfo;
31 with Errout;   use Errout;
32 with Expander; use Expander;
33 with Exp_Disp; use Exp_Disp;
34 with Exp_Ch6;  use Exp_Ch6;
35 with Exp_Ch7;  use Exp_Ch7;
36 with Exp_Tss;  use Exp_Tss;
37 with Exp_Util; use Exp_Util;
38 with Fname;    use Fname;
39 with Freeze;   use Freeze;
40 with Itypes;   use Itypes;
41 with Lib;      use Lib;
42 with Lib.Xref; use Lib.Xref;
43 with Namet;    use Namet;
44 with Nmake;    use Nmake;
45 with Nlists;   use Nlists;
46 with Opt;      use Opt;
47 with Output;   use Output;
48 with Restrict; use Restrict;
49 with Rident;   use Rident;
50 with Rtsfind;  use Rtsfind;
51 with Sem;      use Sem;
52 with Sem_Aux;  use Sem_Aux;
53 with Sem_Aggr; use Sem_Aggr;
54 with Sem_Attr; use Sem_Attr;
55 with Sem_Cat;  use Sem_Cat;
56 with Sem_Ch4;  use Sem_Ch4;
57 with Sem_Ch6;  use Sem_Ch6;
58 with Sem_Ch8;  use Sem_Ch8;
59 with Sem_Ch13; use Sem_Ch13;
60 with Sem_Disp; use Sem_Disp;
61 with Sem_Dist; use Sem_Dist;
62 with Sem_Elim; use Sem_Elim;
63 with Sem_Elab; use Sem_Elab;
64 with Sem_Eval; use Sem_Eval;
65 with Sem_Intr; use Sem_Intr;
66 with Sem_Util; use Sem_Util;
67 with Targparm; use Targparm;
68 with Sem_Type; use Sem_Type;
69 with Sem_Warn; use Sem_Warn;
70 with Sinfo;    use Sinfo;
71 with Sinfo.CN; use Sinfo.CN;
72 with Snames;   use Snames;
73 with Stand;    use Stand;
74 with Stringt;  use Stringt;
75 with Style;    use Style;
76 with Tbuild;   use Tbuild;
77 with Uintp;    use Uintp;
78 with Urealp;   use Urealp;
79
80 package body Sem_Res is
81
82    -----------------------
83    -- Local Subprograms --
84    -----------------------
85
86    --  Second pass (top-down) type checking and overload resolution procedures
87    --  Typ is the type required by context. These procedures propagate the type
88    --  information recursively to the descendants of N. If the node is not
89    --  overloaded, its Etype is established in the first pass. If overloaded,
90    --  the Resolve routines set the correct type. For arith. operators, the
91    --  Etype is the base type of the context.
92
93    --  Note that Resolve_Attribute is separated off in Sem_Attr
94
95    function Bad_Unordered_Enumeration_Reference
96      (N : Node_Id;
97       T : Entity_Id) return Boolean;
98    --  Node N contains a potentially dubious reference to type T, either an
99    --  explicit comparison, or an explicit range. This function returns True
100    --  if the type T is an enumeration type for which No pragma Order has been
101    --  given, and the reference N is not in the same extended source unit as
102    --  the declaration of T.
103
104    procedure Check_Discriminant_Use (N : Node_Id);
105    --  Enforce the restrictions on the use of discriminants when constraining
106    --  a component of a discriminated type (record or concurrent type).
107
108    procedure Check_For_Visible_Operator (N : Node_Id; T : Entity_Id);
109    --  Given a node for an operator associated with type T, check that
110    --  the operator is visible. Operators all of whose operands are
111    --  universal must be checked for visibility during resolution
112    --  because their type is not determinable based on their operands.
113
114    procedure Check_Fully_Declared_Prefix
115      (Typ  : Entity_Id;
116       Pref : Node_Id);
117    --  Check that the type of the prefix of a dereference is not incomplete
118
119    function Check_Infinite_Recursion (N : Node_Id) return Boolean;
120    --  Given a call node, N, which is known to occur immediately within the
121    --  subprogram being called, determines whether it is a detectable case of
122    --  an infinite recursion, and if so, outputs appropriate messages. Returns
123    --  True if an infinite recursion is detected, and False otherwise.
124
125    procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id);
126    --  If the type of the object being initialized uses the secondary stack
127    --  directly or indirectly, create a transient scope for the call to the
128    --  init proc. This is because we do not create transient scopes for the
129    --  initialization of individual components within the init proc itself.
130    --  Could be optimized away perhaps?
131
132    procedure Check_No_Direct_Boolean_Operators (N : Node_Id);
133    --  N is the node for a logical operator. If the operator is predefined, and
134    --  the root type of the operands is Standard.Boolean, then a check is made
135    --  for restriction No_Direct_Boolean_Operators. This procedure also handles
136    --  the style check for Style_Check_Boolean_And_Or.
137
138    function Is_Definite_Access_Type (E : Entity_Id) return Boolean;
139    --  Determine whether E is an access type declared by an access declaration,
140    --  and not an (anonymous) allocator type.
141
142    function Is_Predefined_Op (Nam : Entity_Id) return Boolean;
143    --  Utility to check whether the entity for an operator is a predefined
144    --  operator, in which case the expression is left as an operator in the
145    --  tree (else it is rewritten into a call). An instance of an intrinsic
146    --  conversion operation may be given an operator name, but is not treated
147    --  like an operator. Note that an operator that is an imported back-end
148    --  builtin has convention Intrinsic, but is expected to be rewritten into
149    --  a call, so such an operator is not treated as predefined by this
150    --  predicate.
151
152    procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id);
153    --  If a default expression in entry call N depends on the discriminants
154    --  of the task, it must be replaced with a reference to the discriminant
155    --  of the task being called.
156
157    procedure Resolve_Op_Concat_Arg
158      (N       : Node_Id;
159       Arg     : Node_Id;
160       Typ     : Entity_Id;
161       Is_Comp : Boolean);
162    --  Internal procedure for Resolve_Op_Concat to resolve one operand of
163    --  concatenation operator.  The operand is either of the array type or of
164    --  the component type. If the operand is an aggregate, and the component
165    --  type is composite, this is ambiguous if component type has aggregates.
166
167    procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id);
168    --  Does the first part of the work of Resolve_Op_Concat
169
170    procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id);
171    --  Does the "rest" of the work of Resolve_Op_Concat, after the left operand
172    --  has been resolved. See Resolve_Op_Concat for details.
173
174    procedure Resolve_Allocator                 (N : Node_Id; Typ : Entity_Id);
175    procedure Resolve_Arithmetic_Op             (N : Node_Id; Typ : Entity_Id);
176    procedure Resolve_Call                      (N : Node_Id; Typ : Entity_Id);
177    procedure Resolve_Case_Expression           (N : Node_Id; Typ : Entity_Id);
178    procedure Resolve_Character_Literal         (N : Node_Id; Typ : Entity_Id);
179    procedure Resolve_Comparison_Op             (N : Node_Id; Typ : Entity_Id);
180    procedure Resolve_Conditional_Expression    (N : Node_Id; Typ : Entity_Id);
181    procedure Resolve_Entity_Name               (N : Node_Id; Typ : Entity_Id);
182    procedure Resolve_Equality_Op               (N : Node_Id; Typ : Entity_Id);
183    procedure Resolve_Explicit_Dereference      (N : Node_Id; Typ : Entity_Id);
184    procedure Resolve_Expression_With_Actions   (N : Node_Id; Typ : Entity_Id);
185    procedure Resolve_Indexed_Component         (N : Node_Id; Typ : Entity_Id);
186    procedure Resolve_Integer_Literal           (N : Node_Id; Typ : Entity_Id);
187    procedure Resolve_Logical_Op                (N : Node_Id; Typ : Entity_Id);
188    procedure Resolve_Membership_Op             (N : Node_Id; Typ : Entity_Id);
189    procedure Resolve_Null                      (N : Node_Id; Typ : Entity_Id);
190    procedure Resolve_Operator_Symbol           (N : Node_Id; Typ : Entity_Id);
191    procedure Resolve_Op_Concat                 (N : Node_Id; Typ : Entity_Id);
192    procedure Resolve_Op_Expon                  (N : Node_Id; Typ : Entity_Id);
193    procedure Resolve_Op_Not                    (N : Node_Id; Typ : Entity_Id);
194    procedure Resolve_Qualified_Expression      (N : Node_Id; Typ : Entity_Id);
195    procedure Resolve_Quantified_Expression     (N : Node_Id; Typ : Entity_Id);
196    procedure Resolve_Range                     (N : Node_Id; Typ : Entity_Id);
197    procedure Resolve_Real_Literal              (N : Node_Id; Typ : Entity_Id);
198    procedure Resolve_Reference                 (N : Node_Id; Typ : Entity_Id);
199    procedure Resolve_Selected_Component        (N : Node_Id; Typ : Entity_Id);
200    procedure Resolve_Shift                     (N : Node_Id; Typ : Entity_Id);
201    procedure Resolve_Short_Circuit             (N : Node_Id; Typ : Entity_Id);
202    procedure Resolve_Slice                     (N : Node_Id; Typ : Entity_Id);
203    procedure Resolve_String_Literal            (N : Node_Id; Typ : Entity_Id);
204    procedure Resolve_Subprogram_Info           (N : Node_Id; Typ : Entity_Id);
205    procedure Resolve_Type_Conversion           (N : Node_Id; Typ : Entity_Id);
206    procedure Resolve_Unary_Op                  (N : Node_Id; Typ : Entity_Id);
207    procedure Resolve_Unchecked_Expression      (N : Node_Id; Typ : Entity_Id);
208    procedure Resolve_Unchecked_Type_Conversion (N : Node_Id; Typ : Entity_Id);
209
210    function Operator_Kind
211      (Op_Name   : Name_Id;
212       Is_Binary : Boolean) return Node_Kind;
213    --  Utility to map the name of an operator into the corresponding Node. Used
214    --  by other node rewriting procedures.
215
216    procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id);
217    --  Resolve actuals of call, and add default expressions for missing ones.
218    --  N is the Node_Id for the subprogram call, and Nam is the entity of the
219    --  called subprogram.
220
221    procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id);
222    --  Called from Resolve_Call, when the prefix denotes an entry or element
223    --  of entry family. Actuals are resolved as for subprograms, and the node
224    --  is rebuilt as an entry call. Also called for protected operations. Typ
225    --  is the context type, which is used when the operation is a protected
226    --  function with no arguments, and the return value is indexed.
227
228    procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id);
229    --  A call to a user-defined intrinsic operator is rewritten as a call to
230    --  the corresponding predefined operator, with suitable conversions. Note
231    --  that this applies only for intrinsic operators that denote predefined
232    --  operators, not ones that are intrinsic imports of back-end builtins.
233
234    procedure Resolve_Intrinsic_Unary_Operator (N : Node_Id; Typ : Entity_Id);
235    --  Ditto, for unary operators (arithmetic ones and "not" on signed
236    --  integer types for VMS).
237
238    procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id);
239    --  If an operator node resolves to a call to a user-defined operator,
240    --  rewrite the node as a function call.
241
242    procedure Make_Call_Into_Operator
243      (N     : Node_Id;
244       Typ   : Entity_Id;
245       Op_Id : Entity_Id);
246    --  Inverse transformation: if an operator is given in functional notation,
247    --  then after resolving the node, transform into an operator node, so
248    --  that operands are resolved properly. Recall that predefined operators
249    --  do not have a full signature and special resolution rules apply.
250
251    procedure Rewrite_Renamed_Operator
252      (N   : Node_Id;
253       Op  : Entity_Id;
254       Typ : Entity_Id);
255    --  An operator can rename another, e.g. in  an instantiation. In that
256    --  case, the proper operator node must be constructed and resolved.
257
258    procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id);
259    --  The String_Literal_Subtype is built for all strings that are not
260    --  operands of a static concatenation operation. If the argument is
261    --  not a N_String_Literal node, then the call has no effect.
262
263    procedure Set_Slice_Subtype (N : Node_Id);
264    --  Build subtype of array type, with the range specified by the slice
265
266    procedure Simplify_Type_Conversion (N : Node_Id);
267    --  Called after N has been resolved and evaluated, but before range checks
268    --  have been applied. Currently simplifies a combination of floating-point
269    --  to integer conversion and Truncation attribute.
270
271    function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id;
272    --  A universal_fixed expression in an universal context is unambiguous if
273    --  there is only one applicable fixed point type. Determining whether there
274    --  is only one requires a search over all visible entities, and happens
275    --  only in very pathological cases (see 6115-006).
276
277    -------------------------
278    -- Ambiguous_Character --
279    -------------------------
280
281    procedure Ambiguous_Character (C : Node_Id) is
282       E : Entity_Id;
283
284    begin
285       if Nkind (C) = N_Character_Literal then
286          Error_Msg_N ("ambiguous character literal", C);
287
288          --  First the ones in Standard
289
290          Error_Msg_N ("\\possible interpretation: Character!", C);
291          Error_Msg_N ("\\possible interpretation: Wide_Character!", C);
292
293          --  Include Wide_Wide_Character in Ada 2005 mode
294
295          if Ada_Version >= Ada_2005 then
296             Error_Msg_N ("\\possible interpretation: Wide_Wide_Character!", C);
297          end if;
298
299          --  Now any other types that match
300
301          E := Current_Entity (C);
302          while Present (E) loop
303             Error_Msg_NE ("\\possible interpretation:}!", C, Etype (E));
304             E := Homonym (E);
305          end loop;
306       end if;
307    end Ambiguous_Character;
308
309    -------------------------
310    -- Analyze_And_Resolve --
311    -------------------------
312
313    procedure Analyze_And_Resolve (N : Node_Id) is
314    begin
315       Analyze (N);
316       Resolve (N);
317    end Analyze_And_Resolve;
318
319    procedure Analyze_And_Resolve (N : Node_Id; Typ : Entity_Id) is
320    begin
321       Analyze (N);
322       Resolve (N, Typ);
323    end Analyze_And_Resolve;
324
325    --  Version withs check(s) suppressed
326
327    procedure Analyze_And_Resolve
328      (N        : Node_Id;
329       Typ      : Entity_Id;
330       Suppress : Check_Id)
331    is
332       Scop : constant Entity_Id := Current_Scope;
333
334    begin
335       if Suppress = All_Checks then
336          declare
337             Svg : constant Suppress_Array := Scope_Suppress;
338          begin
339             Scope_Suppress := (others => True);
340             Analyze_And_Resolve (N, Typ);
341             Scope_Suppress := Svg;
342          end;
343
344       else
345          declare
346             Svg : constant Boolean := Scope_Suppress (Suppress);
347
348          begin
349             Scope_Suppress (Suppress) := True;
350             Analyze_And_Resolve (N, Typ);
351             Scope_Suppress (Suppress) := Svg;
352          end;
353       end if;
354
355       if Current_Scope /= Scop
356         and then Scope_Is_Transient
357       then
358          --  This can only happen if a transient scope was created for an inner
359          --  expression, which will be removed upon completion of the analysis
360          --  of an enclosing construct. The transient scope must have the
361          --  suppress status of the enclosing environment, not of this Analyze
362          --  call.
363
364          Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
365            Scope_Suppress;
366       end if;
367    end Analyze_And_Resolve;
368
369    procedure Analyze_And_Resolve
370      (N        : Node_Id;
371       Suppress : Check_Id)
372    is
373       Scop : constant Entity_Id := Current_Scope;
374
375    begin
376       if Suppress = All_Checks then
377          declare
378             Svg : constant Suppress_Array := Scope_Suppress;
379          begin
380             Scope_Suppress := (others => True);
381             Analyze_And_Resolve (N);
382             Scope_Suppress := Svg;
383          end;
384
385       else
386          declare
387             Svg : constant Boolean := Scope_Suppress (Suppress);
388
389          begin
390             Scope_Suppress (Suppress) := True;
391             Analyze_And_Resolve (N);
392             Scope_Suppress (Suppress) := Svg;
393          end;
394       end if;
395
396       if Current_Scope /= Scop
397         and then Scope_Is_Transient
398       then
399          Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
400            Scope_Suppress;
401       end if;
402    end Analyze_And_Resolve;
403
404    ----------------------------------------
405    -- Bad_Unordered_Enumeration_Reference --
406    ----------------------------------------
407
408    function Bad_Unordered_Enumeration_Reference
409      (N : Node_Id;
410       T : Entity_Id) return Boolean
411    is
412    begin
413       return Is_Enumeration_Type (T)
414         and then Comes_From_Source (N)
415         and then Warn_On_Unordered_Enumeration_Type
416         and then not Has_Pragma_Ordered (T)
417         and then not In_Same_Extended_Unit (N, T);
418    end Bad_Unordered_Enumeration_Reference;
419
420    ----------------------------
421    -- Check_Discriminant_Use --
422    ----------------------------
423
424    procedure Check_Discriminant_Use (N : Node_Id) is
425       PN   : constant Node_Id   := Parent (N);
426       Disc : constant Entity_Id := Entity (N);
427       P    : Node_Id;
428       D    : Node_Id;
429
430    begin
431       --  Any use in a spec-expression is legal
432
433       if In_Spec_Expression then
434          null;
435
436       elsif Nkind (PN) = N_Range then
437
438          --  Discriminant cannot be used to constrain a scalar type
439
440          P := Parent (PN);
441
442          if Nkind (P) = N_Range_Constraint
443            and then Nkind (Parent (P)) = N_Subtype_Indication
444            and then Nkind (Parent (Parent (P))) = N_Component_Definition
445          then
446             Error_Msg_N ("discriminant cannot constrain scalar type", N);
447
448          elsif Nkind (P) = N_Index_Or_Discriminant_Constraint then
449
450             --  The following check catches the unusual case where a
451             --  discriminant appears within an index constraint that is part of
452             --  a larger expression within a constraint on a component, e.g. "C
453             --  : Int range 1 .. F (new A(1 .. D))". For now we only check case
454             --  of record components, and note that a similar check should also
455             --  apply in the case of discriminant constraints below. ???
456
457             --  Note that the check for N_Subtype_Declaration below is to
458             --  detect the valid use of discriminants in the constraints of a
459             --  subtype declaration when this subtype declaration appears
460             --  inside the scope of a record type (which is syntactically
461             --  illegal, but which may be created as part of derived type
462             --  processing for records). See Sem_Ch3.Build_Derived_Record_Type
463             --  for more info.
464
465             if Ekind (Current_Scope) = E_Record_Type
466               and then Scope (Disc) = Current_Scope
467               and then not
468                 (Nkind (Parent (P)) = N_Subtype_Indication
469                   and then
470                     Nkind_In (Parent (Parent (P)), N_Component_Definition,
471                                                    N_Subtype_Declaration)
472                   and then Paren_Count (N) = 0)
473             then
474                Error_Msg_N
475                  ("discriminant must appear alone in component constraint", N);
476                return;
477             end if;
478
479             --   Detect a common error:
480
481             --   type R (D : Positive := 100) is record
482             --     Name : String (1 .. D);
483             --   end record;
484
485             --  The default value causes an object of type R to be allocated
486             --  with room for Positive'Last characters. The RM does not mandate
487             --  the allocation of the maximum size, but that is what GNAT does
488             --  so we should warn the programmer that there is a problem.
489
490             Check_Large : declare
491                SI : Node_Id;
492                T  : Entity_Id;
493                TB : Node_Id;
494                CB : Entity_Id;
495
496                function Large_Storage_Type (T : Entity_Id) return Boolean;
497                --  Return True if type T has a large enough range that any
498                --  array whose index type covered the whole range of the type
499                --  would likely raise Storage_Error.
500
501                ------------------------
502                -- Large_Storage_Type --
503                ------------------------
504
505                function Large_Storage_Type (T : Entity_Id) return Boolean is
506                begin
507                   --  The type is considered large if its bounds are known at
508                   --  compile time and if it requires at least as many bits as
509                   --  a Positive to store the possible values.
510
511                   return Compile_Time_Known_Value (Type_Low_Bound (T))
512                     and then Compile_Time_Known_Value (Type_High_Bound (T))
513                     and then
514                       Minimum_Size (T, Biased => True) >=
515                         RM_Size (Standard_Positive);
516                end Large_Storage_Type;
517
518             --  Start of processing for Check_Large
519
520             begin
521                --  Check that the Disc has a large range
522
523                if not Large_Storage_Type (Etype (Disc)) then
524                   goto No_Danger;
525                end if;
526
527                --  If the enclosing type is limited, we allocate only the
528                --  default value, not the maximum, and there is no need for
529                --  a warning.
530
531                if Is_Limited_Type (Scope (Disc)) then
532                   goto No_Danger;
533                end if;
534
535                --  Check that it is the high bound
536
537                if N /= High_Bound (PN)
538                  or else No (Discriminant_Default_Value (Disc))
539                then
540                   goto No_Danger;
541                end if;
542
543                --  Check the array allows a large range at this bound. First
544                --  find the array
545
546                SI := Parent (P);
547
548                if Nkind (SI) /= N_Subtype_Indication then
549                   goto No_Danger;
550                end if;
551
552                T := Entity (Subtype_Mark (SI));
553
554                if not Is_Array_Type (T) then
555                   goto No_Danger;
556                end if;
557
558                --  Next, find the dimension
559
560                TB := First_Index (T);
561                CB := First (Constraints (P));
562                while True
563                  and then Present (TB)
564                  and then Present (CB)
565                  and then CB /= PN
566                loop
567                   Next_Index (TB);
568                   Next (CB);
569                end loop;
570
571                if CB /= PN then
572                   goto No_Danger;
573                end if;
574
575                --  Now, check the dimension has a large range
576
577                if not Large_Storage_Type (Etype (TB)) then
578                   goto No_Danger;
579                end if;
580
581                --  Warn about the danger
582
583                Error_Msg_N
584                  ("?creation of & object may raise Storage_Error!",
585                   Scope (Disc));
586
587                <<No_Danger>>
588                   null;
589
590             end Check_Large;
591          end if;
592
593       --  Legal case is in index or discriminant constraint
594
595       elsif Nkind_In (PN, N_Index_Or_Discriminant_Constraint,
596                           N_Discriminant_Association)
597       then
598          if Paren_Count (N) > 0 then
599             Error_Msg_N
600               ("discriminant in constraint must appear alone",  N);
601
602          elsif Nkind (N) = N_Expanded_Name
603            and then Comes_From_Source (N)
604          then
605             Error_Msg_N
606               ("discriminant must appear alone as a direct name", N);
607          end if;
608
609          return;
610
611       --  Otherwise, context is an expression. It should not be within (i.e. a
612       --  subexpression of) a constraint for a component.
613
614       else
615          D := PN;
616          P := Parent (PN);
617          while not Nkind_In (P, N_Component_Declaration,
618                                 N_Subtype_Indication,
619                                 N_Entry_Declaration)
620          loop
621             D := P;
622             P := Parent (P);
623             exit when No (P);
624          end loop;
625
626          --  If the discriminant is used in an expression that is a bound of a
627          --  scalar type, an Itype is created and the bounds are attached to
628          --  its range, not to the original subtype indication. Such use is of
629          --  course a double fault.
630
631          if (Nkind (P) = N_Subtype_Indication
632               and then Nkind_In (Parent (P), N_Component_Definition,
633                                              N_Derived_Type_Definition)
634               and then D = Constraint (P))
635
636            --  The constraint itself may be given by a subtype indication,
637            --  rather than by a more common discrete range.
638
639            or else (Nkind (P) = N_Subtype_Indication
640                       and then
641                     Nkind (Parent (P)) = N_Index_Or_Discriminant_Constraint)
642            or else Nkind (P) = N_Entry_Declaration
643            or else Nkind (D) = N_Defining_Identifier
644          then
645             Error_Msg_N
646               ("discriminant in constraint must appear alone",  N);
647          end if;
648       end if;
649    end Check_Discriminant_Use;
650
651    --------------------------------
652    -- Check_For_Visible_Operator --
653    --------------------------------
654
655    procedure Check_For_Visible_Operator (N : Node_Id; T : Entity_Id) is
656    begin
657       if Is_Invisible_Operator (N, T) then
658          Error_Msg_NE -- CODEFIX
659            ("operator for} is not directly visible!", N, First_Subtype (T));
660          Error_Msg_N -- CODEFIX
661            ("use clause would make operation legal!", N);
662       end if;
663    end Check_For_Visible_Operator;
664
665    ----------------------------------
666    --  Check_Fully_Declared_Prefix --
667    ----------------------------------
668
669    procedure Check_Fully_Declared_Prefix
670      (Typ  : Entity_Id;
671       Pref : Node_Id)
672    is
673    begin
674       --  Check that the designated type of the prefix of a dereference is
675       --  not an incomplete type. This cannot be done unconditionally, because
676       --  dereferences of private types are legal in default expressions. This
677       --  case is taken care of in Check_Fully_Declared, called below. There
678       --  are also 2005 cases where it is legal for the prefix to be unfrozen.
679
680       --  This consideration also applies to similar checks for allocators,
681       --  qualified expressions, and type conversions.
682
683       --  An additional exception concerns other per-object expressions that
684       --  are not directly related to component declarations, in particular
685       --  representation pragmas for tasks. These will be per-object
686       --  expressions if they depend on discriminants or some global entity.
687       --  If the task has access discriminants, the designated type may be
688       --  incomplete at the point the expression is resolved. This resolution
689       --  takes place within the body of the initialization procedure, where
690       --  the discriminant is replaced by its discriminal.
691
692       if Is_Entity_Name (Pref)
693         and then Ekind (Entity (Pref)) = E_In_Parameter
694       then
695          null;
696
697       --  Ada 2005 (AI-326): Tagged incomplete types allowed. The wrong usages
698       --  are handled by Analyze_Access_Attribute, Analyze_Assignment,
699       --  Analyze_Object_Renaming, and Freeze_Entity.
700
701       elsif Ada_Version >= Ada_2005
702         and then Is_Entity_Name (Pref)
703         and then Is_Access_Type (Etype (Pref))
704         and then Ekind (Directly_Designated_Type (Etype (Pref))) =
705                                                        E_Incomplete_Type
706         and then Is_Tagged_Type (Directly_Designated_Type (Etype (Pref)))
707       then
708          null;
709       else
710          Check_Fully_Declared (Typ, Parent (Pref));
711       end if;
712    end Check_Fully_Declared_Prefix;
713
714    ------------------------------
715    -- Check_Infinite_Recursion --
716    ------------------------------
717
718    function Check_Infinite_Recursion (N : Node_Id) return Boolean is
719       P : Node_Id;
720       C : Node_Id;
721
722       function Same_Argument_List return Boolean;
723       --  Check whether list of actuals is identical to list of formals of
724       --  called function (which is also the enclosing scope).
725
726       ------------------------
727       -- Same_Argument_List --
728       ------------------------
729
730       function Same_Argument_List return Boolean is
731          A    : Node_Id;
732          F    : Entity_Id;
733          Subp : Entity_Id;
734
735       begin
736          if not Is_Entity_Name (Name (N)) then
737             return False;
738          else
739             Subp := Entity (Name (N));
740          end if;
741
742          F := First_Formal (Subp);
743          A := First_Actual (N);
744          while Present (F) and then Present (A) loop
745             if not Is_Entity_Name (A)
746               or else Entity (A) /= F
747             then
748                return False;
749             end if;
750
751             Next_Actual (A);
752             Next_Formal (F);
753          end loop;
754
755          return True;
756       end Same_Argument_List;
757
758    --  Start of processing for Check_Infinite_Recursion
759
760    begin
761       --  Special case, if this is a procedure call and is a call to the
762       --  current procedure with the same argument list, then this is for
763       --  sure an infinite recursion and we insert a call to raise SE.
764
765       if Is_List_Member (N)
766         and then List_Length (List_Containing (N)) = 1
767         and then Same_Argument_List
768       then
769          declare
770             P : constant Node_Id := Parent (N);
771          begin
772             if Nkind (P) = N_Handled_Sequence_Of_Statements
773               and then Nkind (Parent (P)) = N_Subprogram_Body
774               and then Is_Empty_List (Declarations (Parent (P)))
775             then
776                Error_Msg_N ("!?infinite recursion", N);
777                Error_Msg_N ("\!?Storage_Error will be raised at run time", N);
778                Insert_Action (N,
779                  Make_Raise_Storage_Error (Sloc (N),
780                    Reason => SE_Infinite_Recursion));
781                return True;
782             end if;
783          end;
784       end if;
785
786       --  If not that special case, search up tree, quitting if we reach a
787       --  construct (e.g. a conditional) that tells us that this is not a
788       --  case for an infinite recursion warning.
789
790       C := N;
791       loop
792          P := Parent (C);
793
794          --  If no parent, then we were not inside a subprogram, this can for
795          --  example happen when processing certain pragmas in a spec. Just
796          --  return False in this case.
797
798          if No (P) then
799             return False;
800          end if;
801
802          --  Done if we get to subprogram body, this is definitely an infinite
803          --  recursion case if we did not find anything to stop us.
804
805          exit when Nkind (P) = N_Subprogram_Body;
806
807          --  If appearing in conditional, result is false
808
809          if Nkind_In (P, N_Or_Else,
810                          N_And_Then,
811                          N_Case_Expression,
812                          N_Case_Statement,
813                          N_Conditional_Expression,
814                          N_If_Statement)
815          then
816             return False;
817
818          elsif Nkind (P) = N_Handled_Sequence_Of_Statements
819            and then C /= First (Statements (P))
820          then
821             --  If the call is the expression of a return statement and the
822             --  actuals are identical to the formals, it's worth a warning.
823             --  However, we skip this if there is an immediately preceding
824             --  raise statement, since the call is never executed.
825
826             --  Furthermore, this corresponds to a common idiom:
827
828             --    function F (L : Thing) return Boolean is
829             --    begin
830             --       raise Program_Error;
831             --       return F (L);
832             --    end F;
833
834             --  for generating a stub function
835
836             if Nkind (Parent (N)) = N_Simple_Return_Statement
837               and then Same_Argument_List
838             then
839                exit when not Is_List_Member (Parent (N));
840
841                --  OK, return statement is in a statement list, look for raise
842
843                declare
844                   Nod : Node_Id;
845
846                begin
847                   --  Skip past N_Freeze_Entity nodes generated by expansion
848
849                   Nod := Prev (Parent (N));
850                   while Present (Nod)
851                     and then Nkind (Nod) = N_Freeze_Entity
852                   loop
853                      Prev (Nod);
854                   end loop;
855
856                   --  If no raise statement, give warning
857
858                   exit when Nkind (Nod) /= N_Raise_Statement
859                     and then
860                       (Nkind (Nod) not in N_Raise_xxx_Error
861                         or else Present (Condition (Nod)));
862                end;
863             end if;
864
865             return False;
866
867          else
868             C := P;
869          end if;
870       end loop;
871
872       Error_Msg_N ("!?possible infinite recursion", N);
873       Error_Msg_N ("\!?Storage_Error may be raised at run time", N);
874
875       return True;
876    end Check_Infinite_Recursion;
877
878    -------------------------------
879    -- Check_Initialization_Call --
880    -------------------------------
881
882    procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id) is
883       Typ : constant Entity_Id := Etype (First_Formal (Nam));
884
885       function Uses_SS (T : Entity_Id) return Boolean;
886       --  Check whether the creation of an object of the type will involve
887       --  use of the secondary stack. If T is a record type, this is true
888       --  if the expression for some component uses the secondary stack, e.g.
889       --  through a call to a function that returns an unconstrained value.
890       --  False if T is controlled, because cleanups occur elsewhere.
891
892       -------------
893       -- Uses_SS --
894       -------------
895
896       function Uses_SS (T : Entity_Id) return Boolean is
897          Comp      : Entity_Id;
898          Expr      : Node_Id;
899          Full_Type : Entity_Id := Underlying_Type (T);
900
901       begin
902          --  Normally we want to use the underlying type, but if it's not set
903          --  then continue with T.
904
905          if not Present (Full_Type) then
906             Full_Type := T;
907          end if;
908
909          if Is_Controlled (Full_Type) then
910             return False;
911
912          elsif Is_Array_Type (Full_Type) then
913             return Uses_SS (Component_Type (Full_Type));
914
915          elsif Is_Record_Type (Full_Type) then
916             Comp := First_Component (Full_Type);
917             while Present (Comp) loop
918                if Ekind (Comp) = E_Component
919                  and then Nkind (Parent (Comp)) = N_Component_Declaration
920                then
921                   --  The expression for a dynamic component may be rewritten
922                   --  as a dereference, so retrieve original node.
923
924                   Expr := Original_Node (Expression (Parent (Comp)));
925
926                   --  Return True if the expression is a call to a function
927                   --  (including an attribute function such as Image, or a
928                   --  user-defined operator) with a result that requires a
929                   --  transient scope.
930
931                   if (Nkind (Expr) = N_Function_Call
932                        or else Nkind (Expr) in N_Op
933                        or else (Nkind (Expr) = N_Attribute_Reference
934                                  and then Present (Expressions (Expr))))
935                     and then Requires_Transient_Scope (Etype (Expr))
936                   then
937                      return True;
938
939                   elsif Uses_SS (Etype (Comp)) then
940                      return True;
941                   end if;
942                end if;
943
944                Next_Component (Comp);
945             end loop;
946
947             return False;
948
949          else
950             return False;
951          end if;
952       end Uses_SS;
953
954    --  Start of processing for Check_Initialization_Call
955
956    begin
957       --  Establish a transient scope if the type needs it
958
959       if Uses_SS (Typ) then
960          Establish_Transient_Scope (First_Actual (N), Sec_Stack => True);
961       end if;
962    end Check_Initialization_Call;
963
964    ---------------------------------------
965    -- Check_No_Direct_Boolean_Operators --
966    ---------------------------------------
967
968    procedure Check_No_Direct_Boolean_Operators (N : Node_Id) is
969    begin
970       if Scope (Entity (N)) = Standard_Standard
971         and then Root_Type (Etype (Left_Opnd (N))) = Standard_Boolean
972       then
973          --  Restriction only applies to original source code
974
975          if Comes_From_Source (N) then
976             Check_Restriction (No_Direct_Boolean_Operators, N);
977          end if;
978       end if;
979
980       if Style_Check then
981          Check_Boolean_Operator (N);
982       end if;
983    end Check_No_Direct_Boolean_Operators;
984
985    ------------------------------
986    -- Check_Parameterless_Call --
987    ------------------------------
988
989    procedure Check_Parameterless_Call (N : Node_Id) is
990       Nam : Node_Id;
991
992       function Prefix_Is_Access_Subp return Boolean;
993       --  If the prefix is of an access_to_subprogram type, the node must be
994       --  rewritten as a call. Ditto if the prefix is overloaded and all its
995       --  interpretations are access to subprograms.
996
997       ---------------------------
998       -- Prefix_Is_Access_Subp --
999       ---------------------------
1000
1001       function Prefix_Is_Access_Subp return Boolean is
1002          I   : Interp_Index;
1003          It  : Interp;
1004
1005       begin
1006          --  If the context is an attribute reference that can apply to
1007          --  functions, this is never a parameterless call (RM 4.1.4(6)).
1008
1009          if Nkind (Parent (N)) = N_Attribute_Reference
1010             and then (Attribute_Name (Parent (N)) = Name_Address      or else
1011                       Attribute_Name (Parent (N)) = Name_Code_Address or else
1012                       Attribute_Name (Parent (N)) = Name_Access)
1013          then
1014             return False;
1015          end if;
1016
1017          if not Is_Overloaded (N) then
1018             return
1019               Ekind (Etype (N)) = E_Subprogram_Type
1020                 and then Base_Type (Etype (Etype (N))) /= Standard_Void_Type;
1021          else
1022             Get_First_Interp (N, I, It);
1023             while Present (It.Typ) loop
1024                if Ekind (It.Typ) /= E_Subprogram_Type
1025                  or else Base_Type (Etype (It.Typ)) = Standard_Void_Type
1026                then
1027                   return False;
1028                end if;
1029
1030                Get_Next_Interp (I, It);
1031             end loop;
1032
1033             return True;
1034          end if;
1035       end Prefix_Is_Access_Subp;
1036
1037    --  Start of processing for Check_Parameterless_Call
1038
1039    begin
1040       --  Defend against junk stuff if errors already detected
1041
1042       if Total_Errors_Detected /= 0 then
1043          if Nkind (N) in N_Has_Etype and then Etype (N) = Any_Type then
1044             return;
1045          elsif Nkind (N) in N_Has_Chars
1046            and then Chars (N) in Error_Name_Or_No_Name
1047          then
1048             return;
1049          end if;
1050
1051          Require_Entity (N);
1052       end if;
1053
1054       --  If the context expects a value, and the name is a procedure, this is
1055       --  most likely a missing 'Access. Don't try to resolve the parameterless
1056       --  call, error will be caught when the outer call is analyzed.
1057
1058       if Is_Entity_Name (N)
1059         and then Ekind (Entity (N)) = E_Procedure
1060         and then not Is_Overloaded (N)
1061         and then
1062          Nkind_In (Parent (N), N_Parameter_Association,
1063                                N_Function_Call,
1064                                N_Procedure_Call_Statement)
1065       then
1066          return;
1067       end if;
1068
1069       --  Rewrite as call if overloadable entity that is (or could be, in the
1070       --  overloaded case) a function call. If we know for sure that the entity
1071       --  is an enumeration literal, we do not rewrite it.
1072
1073       --  If the entity is the name of an operator, it cannot be a call because
1074       --  operators cannot have default parameters. In this case, this must be
1075       --  a string whose contents coincide with an operator name. Set the kind
1076       --  of the node appropriately.
1077
1078       if (Is_Entity_Name (N)
1079             and then Nkind (N) /= N_Operator_Symbol
1080             and then Is_Overloadable (Entity (N))
1081             and then (Ekind (Entity (N)) /= E_Enumeration_Literal
1082                        or else Is_Overloaded (N)))
1083
1084       --  Rewrite as call if it is an explicit dereference of an expression of
1085       --  a subprogram access type, and the subprogram type is not that of a
1086       --  procedure or entry.
1087
1088       or else
1089         (Nkind (N) = N_Explicit_Dereference and then Prefix_Is_Access_Subp)
1090
1091       --  Rewrite as call if it is a selected component which is a function,
1092       --  this is the case of a call to a protected function (which may be
1093       --  overloaded with other protected operations).
1094
1095       or else
1096         (Nkind (N) = N_Selected_Component
1097           and then (Ekind (Entity (Selector_Name (N))) = E_Function
1098                      or else
1099                        (Ekind_In (Entity (Selector_Name (N)), E_Entry,
1100                                                               E_Procedure)
1101                          and then Is_Overloaded (Selector_Name (N)))))
1102
1103       --  If one of the above three conditions is met, rewrite as call. Apply
1104       --  the rewriting only once.
1105
1106       then
1107          if Nkind (Parent (N)) /= N_Function_Call
1108            or else N /= Name (Parent (N))
1109          then
1110
1111             --  This may be a prefixed call that was not fully analyzed, e.g.
1112             --  an actual in an instance.
1113
1114             if Ada_Version >= Ada_2005
1115               and then Nkind (N) = N_Selected_Component
1116               and then Is_Dispatching_Operation (Entity (Selector_Name (N)))
1117             then
1118                Analyze_Selected_Component (N);
1119
1120                if Nkind (N) /= N_Selected_Component then
1121                   return;
1122                end if;
1123             end if;
1124
1125             Nam := New_Copy (N);
1126
1127             --  If overloaded, overload set belongs to new copy
1128
1129             Save_Interps (N, Nam);
1130
1131             --  Change node to parameterless function call (note that the
1132             --  Parameter_Associations associations field is left set to Empty,
1133             --  its normal default value since there are no parameters)
1134
1135             Change_Node (N, N_Function_Call);
1136             Set_Name (N, Nam);
1137             Set_Sloc (N, Sloc (Nam));
1138             Analyze_Call (N);
1139          end if;
1140
1141       elsif Nkind (N) = N_Parameter_Association then
1142          Check_Parameterless_Call (Explicit_Actual_Parameter (N));
1143
1144       elsif Nkind (N) = N_Operator_Symbol then
1145          Change_Operator_Symbol_To_String_Literal (N);
1146          Set_Is_Overloaded (N, False);
1147          Set_Etype (N, Any_String);
1148       end if;
1149    end Check_Parameterless_Call;
1150
1151    -----------------------------
1152    -- Is_Definite_Access_Type --
1153    -----------------------------
1154
1155    function Is_Definite_Access_Type (E : Entity_Id) return Boolean is
1156       Btyp : constant Entity_Id := Base_Type (E);
1157    begin
1158       return Ekind (Btyp) = E_Access_Type
1159         or else (Ekind (Btyp) = E_Access_Subprogram_Type
1160                   and then Comes_From_Source (Btyp));
1161    end Is_Definite_Access_Type;
1162
1163    ----------------------
1164    -- Is_Predefined_Op --
1165    ----------------------
1166
1167    function Is_Predefined_Op (Nam : Entity_Id) return Boolean is
1168    begin
1169       --  Predefined operators are intrinsic subprograms
1170
1171       if not Is_Intrinsic_Subprogram (Nam) then
1172          return False;
1173       end if;
1174
1175       --  A call to a back-end builtin is never a predefined operator
1176
1177       if Is_Imported (Nam) and then Present (Interface_Name (Nam)) then
1178          return False;
1179       end if;
1180
1181       return not Is_Generic_Instance (Nam)
1182         and then Chars (Nam) in Any_Operator_Name
1183         and then (No (Alias (Nam)) or else Is_Predefined_Op (Alias (Nam)));
1184    end Is_Predefined_Op;
1185
1186    -----------------------------
1187    -- Make_Call_Into_Operator --
1188    -----------------------------
1189
1190    procedure Make_Call_Into_Operator
1191      (N     : Node_Id;
1192       Typ   : Entity_Id;
1193       Op_Id : Entity_Id)
1194    is
1195       Op_Name   : constant Name_Id := Chars (Op_Id);
1196       Act1      : Node_Id := First_Actual (N);
1197       Act2      : Node_Id := Next_Actual (Act1);
1198       Error     : Boolean := False;
1199       Func      : constant Entity_Id := Entity (Name (N));
1200       Is_Binary : constant Boolean   := Present (Act2);
1201       Op_Node   : Node_Id;
1202       Opnd_Type : Entity_Id;
1203       Orig_Type : Entity_Id := Empty;
1204       Pack      : Entity_Id;
1205
1206       type Kind_Test is access function (E : Entity_Id) return Boolean;
1207
1208       function Operand_Type_In_Scope (S : Entity_Id) return Boolean;
1209       --  If the operand is not universal, and the operator is given by an
1210       --  expanded name, verify that the operand has an interpretation with a
1211       --  type defined in the given scope of the operator.
1212
1213       function Type_In_P (Test : Kind_Test) return Entity_Id;
1214       --  Find a type of the given class in package Pack that contains the
1215       --  operator.
1216
1217       ---------------------------
1218       -- Operand_Type_In_Scope --
1219       ---------------------------
1220
1221       function Operand_Type_In_Scope (S : Entity_Id) return Boolean is
1222          Nod : constant Node_Id := Right_Opnd (Op_Node);
1223          I   : Interp_Index;
1224          It  : Interp;
1225
1226       begin
1227          if not Is_Overloaded (Nod) then
1228             return Scope (Base_Type (Etype (Nod))) = S;
1229
1230          else
1231             Get_First_Interp (Nod, I, It);
1232             while Present (It.Typ) loop
1233                if Scope (Base_Type (It.Typ)) = S then
1234                   return True;
1235                end if;
1236
1237                Get_Next_Interp (I, It);
1238             end loop;
1239
1240             return False;
1241          end if;
1242       end Operand_Type_In_Scope;
1243
1244       ---------------
1245       -- Type_In_P --
1246       ---------------
1247
1248       function Type_In_P (Test : Kind_Test) return Entity_Id is
1249          E : Entity_Id;
1250
1251          function In_Decl return Boolean;
1252          --  Verify that node is not part of the type declaration for the
1253          --  candidate type, which would otherwise be invisible.
1254
1255          -------------
1256          -- In_Decl --
1257          -------------
1258
1259          function In_Decl return Boolean is
1260             Decl_Node : constant Node_Id := Parent (E);
1261             N2        : Node_Id;
1262
1263          begin
1264             N2 := N;
1265
1266             if Etype (E) = Any_Type then
1267                return True;
1268
1269             elsif No (Decl_Node) then
1270                return False;
1271
1272             else
1273                while Present (N2)
1274                  and then Nkind (N2) /= N_Compilation_Unit
1275                loop
1276                   if N2 = Decl_Node then
1277                      return True;
1278                   else
1279                      N2 := Parent (N2);
1280                   end if;
1281                end loop;
1282
1283                return False;
1284             end if;
1285          end In_Decl;
1286
1287       --  Start of processing for Type_In_P
1288
1289       begin
1290          --  If the context type is declared in the prefix package, this is the
1291          --  desired base type.
1292
1293          if Scope (Base_Type (Typ)) = Pack and then Test (Typ) then
1294             return Base_Type (Typ);
1295
1296          else
1297             E := First_Entity (Pack);
1298             while Present (E) loop
1299                if Test (E)
1300                  and then not In_Decl
1301                then
1302                   return E;
1303                end if;
1304
1305                Next_Entity (E);
1306             end loop;
1307
1308             return Empty;
1309          end if;
1310       end Type_In_P;
1311
1312    --  Start of processing for Make_Call_Into_Operator
1313
1314    begin
1315       Op_Node := New_Node (Operator_Kind (Op_Name, Is_Binary), Sloc (N));
1316
1317       --  Binary operator
1318
1319       if Is_Binary then
1320          Set_Left_Opnd  (Op_Node, Relocate_Node (Act1));
1321          Set_Right_Opnd (Op_Node, Relocate_Node (Act2));
1322          Save_Interps (Act1, Left_Opnd  (Op_Node));
1323          Save_Interps (Act2, Right_Opnd (Op_Node));
1324          Act1 := Left_Opnd (Op_Node);
1325          Act2 := Right_Opnd (Op_Node);
1326
1327       --  Unary operator
1328
1329       else
1330          Set_Right_Opnd (Op_Node, Relocate_Node (Act1));
1331          Save_Interps (Act1, Right_Opnd (Op_Node));
1332          Act1 := Right_Opnd (Op_Node);
1333       end if;
1334
1335       --  If the operator is denoted by an expanded name, and the prefix is
1336       --  not Standard, but the operator is a predefined one whose scope is
1337       --  Standard, then this is an implicit_operator, inserted as an
1338       --  interpretation by the procedure of the same name. This procedure
1339       --  overestimates the presence of implicit operators, because it does
1340       --  not examine the type of the operands. Verify now that the operand
1341       --  type appears in the given scope. If right operand is universal,
1342       --  check the other operand. In the case of concatenation, either
1343       --  argument can be the component type, so check the type of the result.
1344       --  If both arguments are literals, look for a type of the right kind
1345       --  defined in the given scope. This elaborate nonsense is brought to
1346       --  you courtesy of b33302a. The type itself must be frozen, so we must
1347       --  find the type of the proper class in the given scope.
1348
1349       --  A final wrinkle is the multiplication operator for fixed point types,
1350       --  which is defined in Standard only, and not in the scope of the
1351       --  fixed point type itself.
1352
1353       if Nkind (Name (N)) = N_Expanded_Name then
1354          Pack := Entity (Prefix (Name (N)));
1355
1356          --  If the entity being called is defined in the given package, it is
1357          --  a renaming of a predefined operator, and known to be legal.
1358
1359          if Scope (Entity (Name (N))) = Pack
1360             and then Pack /= Standard_Standard
1361          then
1362             null;
1363
1364          --  Visibility does not need to be checked in an instance: if the
1365          --  operator was not visible in the generic it has been diagnosed
1366          --  already, else there is an implicit copy of it in the instance.
1367
1368          elsif In_Instance then
1369             null;
1370
1371          elsif (Op_Name = Name_Op_Multiply or else Op_Name = Name_Op_Divide)
1372            and then Is_Fixed_Point_Type (Etype (Left_Opnd  (Op_Node)))
1373            and then Is_Fixed_Point_Type (Etype (Right_Opnd (Op_Node)))
1374          then
1375             if Pack /= Standard_Standard then
1376                Error := True;
1377             end if;
1378
1379          --  Ada 2005 AI-420: Predefined equality on Universal_Access is
1380          --  available.
1381
1382          elsif Ada_Version >= Ada_2005
1383            and then (Op_Name = Name_Op_Eq or else Op_Name = Name_Op_Ne)
1384            and then Ekind (Etype (Act1)) = E_Anonymous_Access_Type
1385          then
1386             null;
1387
1388          else
1389             Opnd_Type := Base_Type (Etype (Right_Opnd (Op_Node)));
1390
1391             if Op_Name = Name_Op_Concat then
1392                Opnd_Type := Base_Type (Typ);
1393
1394             elsif (Scope (Opnd_Type) = Standard_Standard
1395                      and then Is_Binary)
1396               or else (Nkind (Right_Opnd (Op_Node)) = N_Attribute_Reference
1397                         and then Is_Binary
1398                         and then not Comes_From_Source (Opnd_Type))
1399             then
1400                Opnd_Type := Base_Type (Etype (Left_Opnd (Op_Node)));
1401             end if;
1402
1403             if Scope (Opnd_Type) = Standard_Standard then
1404
1405                --  Verify that the scope contains a type that corresponds to
1406                --  the given literal. Optimize the case where Pack is Standard.
1407
1408                if Pack /= Standard_Standard then
1409
1410                   if Opnd_Type = Universal_Integer then
1411                      Orig_Type := Type_In_P (Is_Integer_Type'Access);
1412
1413                   elsif Opnd_Type = Universal_Real then
1414                      Orig_Type := Type_In_P (Is_Real_Type'Access);
1415
1416                   elsif Opnd_Type = Any_String then
1417                      Orig_Type := Type_In_P (Is_String_Type'Access);
1418
1419                   elsif Opnd_Type = Any_Access then
1420                      Orig_Type := Type_In_P (Is_Definite_Access_Type'Access);
1421
1422                   elsif Opnd_Type = Any_Composite then
1423                      Orig_Type := Type_In_P (Is_Composite_Type'Access);
1424
1425                      if Present (Orig_Type) then
1426                         if Has_Private_Component (Orig_Type) then
1427                            Orig_Type := Empty;
1428                         else
1429                            Set_Etype (Act1, Orig_Type);
1430
1431                            if Is_Binary then
1432                               Set_Etype (Act2, Orig_Type);
1433                            end if;
1434                         end if;
1435                      end if;
1436
1437                   else
1438                      Orig_Type := Empty;
1439                   end if;
1440
1441                   Error := No (Orig_Type);
1442                end if;
1443
1444             elsif Ekind (Opnd_Type) = E_Allocator_Type
1445                and then No (Type_In_P (Is_Definite_Access_Type'Access))
1446             then
1447                Error := True;
1448
1449             --  If the type is defined elsewhere, and the operator is not
1450             --  defined in the given scope (by a renaming declaration, e.g.)
1451             --  then this is an error as well. If an extension of System is
1452             --  present, and the type may be defined there, Pack must be
1453             --  System itself.
1454
1455             elsif Scope (Opnd_Type) /= Pack
1456               and then Scope (Op_Id) /= Pack
1457               and then (No (System_Aux_Id)
1458                          or else Scope (Opnd_Type) /= System_Aux_Id
1459                          or else Pack /= Scope (System_Aux_Id))
1460             then
1461                if not Is_Overloaded (Right_Opnd (Op_Node)) then
1462                   Error := True;
1463                else
1464                   Error := not Operand_Type_In_Scope (Pack);
1465                end if;
1466
1467             elsif Pack = Standard_Standard
1468               and then not Operand_Type_In_Scope (Standard_Standard)
1469             then
1470                Error := True;
1471             end if;
1472          end if;
1473
1474          if Error then
1475             Error_Msg_Node_2 := Pack;
1476             Error_Msg_NE
1477               ("& not declared in&", N, Selector_Name (Name (N)));
1478             Set_Etype (N, Any_Type);
1479             return;
1480
1481          --  Detect a mismatch between the context type and the result type
1482          --  in the named package, which is otherwise not detected if the
1483          --  operands are universal. Check is only needed if source entity is
1484          --  an operator, not a function that renames an operator.
1485
1486          elsif Nkind (Parent (N)) /= N_Type_Conversion
1487            and then Ekind (Entity (Name (N))) = E_Operator
1488            and then Is_Numeric_Type (Typ)
1489            and then not Is_Universal_Numeric_Type (Typ)
1490            and then Scope (Base_Type (Typ)) /= Pack
1491            and then not In_Instance
1492          then
1493             if Is_Fixed_Point_Type (Typ)
1494               and then (Op_Name = Name_Op_Multiply
1495                           or else
1496                         Op_Name = Name_Op_Divide)
1497             then
1498                --  Already checked above
1499
1500                null;
1501
1502             --  Operator may be defined in an extension of System
1503
1504             elsif Present (System_Aux_Id)
1505               and then Scope (Opnd_Type) = System_Aux_Id
1506             then
1507                null;
1508
1509             else
1510                --  Could we use Wrong_Type here??? (this would require setting
1511                --  Etype (N) to the actual type found where Typ was expected).
1512
1513                Error_Msg_NE ("expect }", N, Typ);
1514             end if;
1515          end if;
1516       end if;
1517
1518       Set_Chars  (Op_Node, Op_Name);
1519
1520       if not Is_Private_Type (Etype (N)) then
1521          Set_Etype (Op_Node, Base_Type (Etype (N)));
1522       else
1523          Set_Etype (Op_Node, Etype (N));
1524       end if;
1525
1526       --  If this is a call to a function that renames a predefined equality,
1527       --  the renaming declaration provides a type that must be used to
1528       --  resolve the operands. This must be done now because resolution of
1529       --  the equality node will not resolve any remaining ambiguity, and it
1530       --  assumes that the first operand is not overloaded.
1531
1532       if (Op_Name = Name_Op_Eq or else Op_Name = Name_Op_Ne)
1533         and then Ekind (Func) = E_Function
1534         and then Is_Overloaded (Act1)
1535       then
1536          Resolve (Act1, Base_Type (Etype (First_Formal (Func))));
1537          Resolve (Act2, Base_Type (Etype (First_Formal (Func))));
1538       end if;
1539
1540       Set_Entity (Op_Node, Op_Id);
1541       Generate_Reference (Op_Id, N, ' ');
1542
1543       --  Do rewrite setting Comes_From_Source on the result if the original
1544       --  call came from source. Although it is not strictly the case that the
1545       --  operator as such comes from the source, logically it corresponds
1546       --  exactly to the function call in the source, so it should be marked
1547       --  this way (e.g. to make sure that validity checks work fine).
1548
1549       declare
1550          CS : constant Boolean := Comes_From_Source (N);
1551       begin
1552          Rewrite (N, Op_Node);
1553          Set_Comes_From_Source (N, CS);
1554       end;
1555
1556       --  If this is an arithmetic operator and the result type is private,
1557       --  the operands and the result must be wrapped in conversion to
1558       --  expose the underlying numeric type and expand the proper checks,
1559       --  e.g. on division.
1560
1561       if Is_Private_Type (Typ) then
1562          case Nkind (N) is
1563             when N_Op_Add   | N_Op_Subtract | N_Op_Multiply | N_Op_Divide |
1564                  N_Op_Expon | N_Op_Mod      | N_Op_Rem      =>
1565                Resolve_Intrinsic_Operator (N, Typ);
1566
1567             when N_Op_Plus  | N_Op_Minus    | N_Op_Abs      =>
1568                Resolve_Intrinsic_Unary_Operator (N, Typ);
1569
1570             when others =>
1571                Resolve (N, Typ);
1572          end case;
1573       else
1574          Resolve (N, Typ);
1575       end if;
1576    end Make_Call_Into_Operator;
1577
1578    -------------------
1579    -- Operator_Kind --
1580    -------------------
1581
1582    function Operator_Kind
1583      (Op_Name   : Name_Id;
1584       Is_Binary : Boolean) return Node_Kind
1585    is
1586       Kind : Node_Kind;
1587
1588    begin
1589       --  Use CASE statement or array???
1590
1591       if Is_Binary then
1592          if    Op_Name =  Name_Op_And      then
1593             Kind := N_Op_And;
1594          elsif Op_Name =  Name_Op_Or       then
1595             Kind := N_Op_Or;
1596          elsif Op_Name =  Name_Op_Xor      then
1597             Kind := N_Op_Xor;
1598          elsif Op_Name =  Name_Op_Eq       then
1599             Kind := N_Op_Eq;
1600          elsif Op_Name =  Name_Op_Ne       then
1601             Kind := N_Op_Ne;
1602          elsif Op_Name =  Name_Op_Lt       then
1603             Kind := N_Op_Lt;
1604          elsif Op_Name =  Name_Op_Le       then
1605             Kind := N_Op_Le;
1606          elsif Op_Name =  Name_Op_Gt       then
1607             Kind := N_Op_Gt;
1608          elsif Op_Name =  Name_Op_Ge       then
1609             Kind := N_Op_Ge;
1610          elsif Op_Name =  Name_Op_Add      then
1611             Kind := N_Op_Add;
1612          elsif Op_Name =  Name_Op_Subtract then
1613             Kind := N_Op_Subtract;
1614          elsif Op_Name =  Name_Op_Concat   then
1615             Kind := N_Op_Concat;
1616          elsif Op_Name =  Name_Op_Multiply then
1617             Kind := N_Op_Multiply;
1618          elsif Op_Name =  Name_Op_Divide   then
1619             Kind := N_Op_Divide;
1620          elsif Op_Name =  Name_Op_Mod      then
1621             Kind := N_Op_Mod;
1622          elsif Op_Name =  Name_Op_Rem      then
1623             Kind := N_Op_Rem;
1624          elsif Op_Name =  Name_Op_Expon    then
1625             Kind := N_Op_Expon;
1626          else
1627             raise Program_Error;
1628          end if;
1629
1630       --  Unary operators
1631
1632       else
1633          if    Op_Name =  Name_Op_Add      then
1634             Kind := N_Op_Plus;
1635          elsif Op_Name =  Name_Op_Subtract then
1636             Kind := N_Op_Minus;
1637          elsif Op_Name =  Name_Op_Abs      then
1638             Kind := N_Op_Abs;
1639          elsif Op_Name =  Name_Op_Not      then
1640             Kind := N_Op_Not;
1641          else
1642             raise Program_Error;
1643          end if;
1644       end if;
1645
1646       return Kind;
1647    end Operator_Kind;
1648
1649    ----------------------------
1650    -- Preanalyze_And_Resolve --
1651    ----------------------------
1652
1653    procedure Preanalyze_And_Resolve (N : Node_Id; T : Entity_Id) is
1654       Save_Full_Analysis : constant Boolean := Full_Analysis;
1655
1656    begin
1657       Full_Analysis := False;
1658       Expander_Mode_Save_And_Set (False);
1659
1660       --  We suppress all checks for this analysis, since the checks will
1661       --  be applied properly, and in the right location, when the default
1662       --  expression is reanalyzed and reexpanded later on.
1663
1664       Analyze_And_Resolve (N, T, Suppress => All_Checks);
1665
1666       Expander_Mode_Restore;
1667       Full_Analysis := Save_Full_Analysis;
1668    end Preanalyze_And_Resolve;
1669
1670    --  Version without context type
1671
1672    procedure Preanalyze_And_Resolve (N : Node_Id) is
1673       Save_Full_Analysis : constant Boolean := Full_Analysis;
1674
1675    begin
1676       Full_Analysis := False;
1677       Expander_Mode_Save_And_Set (False);
1678
1679       Analyze (N);
1680       Resolve (N, Etype (N), Suppress => All_Checks);
1681
1682       Expander_Mode_Restore;
1683       Full_Analysis := Save_Full_Analysis;
1684    end Preanalyze_And_Resolve;
1685
1686    ----------------------------------
1687    -- Replace_Actual_Discriminants --
1688    ----------------------------------
1689
1690    procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id) is
1691       Loc : constant Source_Ptr := Sloc (N);
1692       Tsk : Node_Id := Empty;
1693
1694       function Process_Discr (Nod : Node_Id) return Traverse_Result;
1695       --  Comment needed???
1696
1697       -------------------
1698       -- Process_Discr --
1699       -------------------
1700
1701       function Process_Discr (Nod : Node_Id) return Traverse_Result is
1702          Ent : Entity_Id;
1703
1704       begin
1705          if Nkind (Nod) = N_Identifier then
1706             Ent := Entity (Nod);
1707
1708             if Present (Ent)
1709               and then Ekind (Ent) = E_Discriminant
1710             then
1711                Rewrite (Nod,
1712                  Make_Selected_Component (Loc,
1713                    Prefix        => New_Copy_Tree (Tsk, New_Sloc => Loc),
1714                    Selector_Name => Make_Identifier (Loc, Chars (Ent))));
1715
1716                Set_Etype (Nod, Etype (Ent));
1717             end if;
1718
1719          end if;
1720
1721          return OK;
1722       end Process_Discr;
1723
1724       procedure Replace_Discrs is new Traverse_Proc (Process_Discr);
1725
1726    --  Start of processing for Replace_Actual_Discriminants
1727
1728    begin
1729       if not Full_Expander_Active then
1730          return;
1731       end if;
1732
1733       if Nkind (Name (N)) = N_Selected_Component then
1734          Tsk := Prefix (Name (N));
1735
1736       elsif Nkind (Name (N)) = N_Indexed_Component then
1737          Tsk := Prefix (Prefix (Name (N)));
1738       end if;
1739
1740       if No (Tsk) then
1741          return;
1742       else
1743          Replace_Discrs (Default);
1744       end if;
1745    end Replace_Actual_Discriminants;
1746
1747    -------------
1748    -- Resolve --
1749    -------------
1750
1751    procedure Resolve (N : Node_Id; Typ : Entity_Id) is
1752       Ambiguous : Boolean   := False;
1753       Ctx_Type  : Entity_Id := Typ;
1754       Expr_Type : Entity_Id := Empty; -- prevent junk warning
1755       Err_Type  : Entity_Id := Empty;
1756       Found     : Boolean   := False;
1757       From_Lib  : Boolean;
1758       I         : Interp_Index;
1759       I1        : Interp_Index := 0;  -- prevent junk warning
1760       It        : Interp;
1761       It1       : Interp;
1762       Seen      : Entity_Id := Empty; -- prevent junk warning
1763
1764       function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean;
1765       --  Determine whether a node comes from a predefined library unit or
1766       --  Standard.
1767
1768       procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id);
1769       --  Try and fix up a literal so that it matches its expected type. New
1770       --  literals are manufactured if necessary to avoid cascaded errors.
1771
1772       procedure Report_Ambiguous_Argument;
1773       --  Additional diagnostics when an ambiguous call has an ambiguous
1774       --  argument (typically a controlling actual).
1775
1776       procedure Resolution_Failed;
1777       --  Called when attempt at resolving current expression fails
1778
1779       ------------------------------------
1780       -- Comes_From_Predefined_Lib_Unit --
1781       -------------------------------------
1782
1783       function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean is
1784       begin
1785          return
1786            Sloc (Nod) = Standard_Location
1787              or else Is_Predefined_File_Name
1788                        (Unit_File_Name (Get_Source_Unit (Sloc (Nod))));
1789       end Comes_From_Predefined_Lib_Unit;
1790
1791       --------------------
1792       -- Patch_Up_Value --
1793       --------------------
1794
1795       procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id) is
1796       begin
1797          if Nkind (N) = N_Integer_Literal and then Is_Real_Type (Typ) then
1798             Rewrite (N,
1799               Make_Real_Literal (Sloc (N),
1800                 Realval => UR_From_Uint (Intval (N))));
1801             Set_Etype (N, Universal_Real);
1802             Set_Is_Static_Expression (N);
1803
1804          elsif Nkind (N) = N_Real_Literal and then Is_Integer_Type (Typ) then
1805             Rewrite (N,
1806               Make_Integer_Literal (Sloc (N),
1807                 Intval => UR_To_Uint (Realval (N))));
1808             Set_Etype (N, Universal_Integer);
1809             Set_Is_Static_Expression (N);
1810
1811          elsif Nkind (N) = N_String_Literal
1812                  and then Is_Character_Type (Typ)
1813          then
1814             Set_Character_Literal_Name (Char_Code (Character'Pos ('A')));
1815             Rewrite (N,
1816               Make_Character_Literal (Sloc (N),
1817                 Chars => Name_Find,
1818                 Char_Literal_Value =>
1819                   UI_From_Int (Character'Pos ('A'))));
1820             Set_Etype (N, Any_Character);
1821             Set_Is_Static_Expression (N);
1822
1823          elsif Nkind (N) /= N_String_Literal and then Is_String_Type (Typ) then
1824             Rewrite (N,
1825               Make_String_Literal (Sloc (N),
1826                 Strval => End_String));
1827
1828          elsif Nkind (N) = N_Range then
1829             Patch_Up_Value (Low_Bound (N),  Typ);
1830             Patch_Up_Value (High_Bound (N), Typ);
1831          end if;
1832       end Patch_Up_Value;
1833
1834       -------------------------------
1835       -- Report_Ambiguous_Argument --
1836       -------------------------------
1837
1838       procedure Report_Ambiguous_Argument is
1839          Arg : constant Node_Id := First (Parameter_Associations (N));
1840          I   : Interp_Index;
1841          It  : Interp;
1842
1843       begin
1844          if Nkind (Arg) = N_Function_Call
1845            and then Is_Entity_Name (Name (Arg))
1846            and then Is_Overloaded (Name (Arg))
1847          then
1848             Error_Msg_NE ("ambiguous call to&", Arg, Name (Arg));
1849
1850             --  Could use comments on what is going on here???
1851
1852             Get_First_Interp (Name (Arg), I, It);
1853             while Present (It.Nam) loop
1854                Error_Msg_Sloc := Sloc (It.Nam);
1855
1856                if Nkind (Parent (It.Nam)) = N_Full_Type_Declaration then
1857                   Error_Msg_N ("interpretation (inherited) #!", Arg);
1858                else
1859                   Error_Msg_N ("interpretation #!", Arg);
1860                end if;
1861
1862                Get_Next_Interp (I, It);
1863             end loop;
1864          end if;
1865       end Report_Ambiguous_Argument;
1866
1867       -----------------------
1868       -- Resolution_Failed --
1869       -----------------------
1870
1871       procedure Resolution_Failed is
1872       begin
1873          Patch_Up_Value (N, Typ);
1874          Set_Etype (N, Typ);
1875          Debug_A_Exit ("resolving  ", N, " (done, resolution failed)");
1876          Set_Is_Overloaded (N, False);
1877
1878          --  The caller will return without calling the expander, so we need
1879          --  to set the analyzed flag. Note that it is fine to set Analyzed
1880          --  to True even if we are in the middle of a shallow analysis,
1881          --  (see the spec of sem for more details) since this is an error
1882          --  situation anyway, and there is no point in repeating the
1883          --  analysis later (indeed it won't work to repeat it later, since
1884          --  we haven't got a clear resolution of which entity is being
1885          --  referenced.)
1886
1887          Set_Analyzed (N, True);
1888          return;
1889       end Resolution_Failed;
1890
1891    --  Start of processing for Resolve
1892
1893    begin
1894       if N = Error then
1895          return;
1896       end if;
1897
1898       --  Access attribute on remote subprogram cannot be used for a non-remote
1899       --  access-to-subprogram type.
1900
1901       if Nkind (N) = N_Attribute_Reference
1902         and then (Attribute_Name (N) = Name_Access              or else
1903                   Attribute_Name (N) = Name_Unrestricted_Access or else
1904                   Attribute_Name (N) = Name_Unchecked_Access)
1905         and then Comes_From_Source (N)
1906         and then Is_Entity_Name (Prefix (N))
1907         and then Is_Subprogram (Entity (Prefix (N)))
1908         and then Is_Remote_Call_Interface (Entity (Prefix (N)))
1909         and then not Is_Remote_Access_To_Subprogram_Type (Typ)
1910       then
1911          Error_Msg_N
1912            ("prefix must statically denote a non-remote subprogram", N);
1913       end if;
1914
1915       From_Lib := Comes_From_Predefined_Lib_Unit (N);
1916
1917       --  If the context is a Remote_Access_To_Subprogram, access attributes
1918       --  must be resolved with the corresponding fat pointer. There is no need
1919       --  to check for the attribute name since the return type of an
1920       --  attribute is never a remote type.
1921
1922       if Nkind (N) = N_Attribute_Reference
1923         and then Comes_From_Source (N)
1924         and then (Is_Remote_Call_Interface (Typ) or else Is_Remote_Types (Typ))
1925       then
1926          declare
1927             Attr      : constant Attribute_Id :=
1928                           Get_Attribute_Id (Attribute_Name (N));
1929             Pref      : constant Node_Id      := Prefix (N);
1930             Decl      : Node_Id;
1931             Spec      : Node_Id;
1932             Is_Remote : Boolean := True;
1933
1934          begin
1935             --  Check that Typ is a remote access-to-subprogram type
1936
1937             if Is_Remote_Access_To_Subprogram_Type (Typ) then
1938
1939                --  Prefix (N) must statically denote a remote subprogram
1940                --  declared in a package specification.
1941
1942                if Attr = Attribute_Access then
1943                   Decl := Unit_Declaration_Node (Entity (Pref));
1944
1945                   if Nkind (Decl) = N_Subprogram_Body then
1946                      Spec := Corresponding_Spec (Decl);
1947
1948                      if not No (Spec) then
1949                         Decl := Unit_Declaration_Node (Spec);
1950                      end if;
1951                   end if;
1952
1953                   Spec := Parent (Decl);
1954
1955                   if not Is_Entity_Name (Prefix (N))
1956                     or else Nkind (Spec) /= N_Package_Specification
1957                     or else
1958                       not Is_Remote_Call_Interface (Defining_Entity (Spec))
1959                   then
1960                      Is_Remote := False;
1961                      Error_Msg_N
1962                        ("prefix must statically denote a remote subprogram ",
1963                         N);
1964                   end if;
1965                end if;
1966
1967                --   If we are generating code for a distributed program.
1968                --   perform semantic checks against the corresponding
1969                --   remote entities.
1970
1971                if (Attr = Attribute_Access           or else
1972                    Attr = Attribute_Unchecked_Access or else
1973                    Attr = Attribute_Unrestricted_Access)
1974                  and then Full_Expander_Active
1975                  and then Get_PCS_Name /= Name_No_DSA
1976                then
1977                   Check_Subtype_Conformant
1978                     (New_Id  => Entity (Prefix (N)),
1979                      Old_Id  => Designated_Type
1980                                   (Corresponding_Remote_Type (Typ)),
1981                      Err_Loc => N);
1982
1983                   if Is_Remote then
1984                      Process_Remote_AST_Attribute (N, Typ);
1985                   end if;
1986                end if;
1987             end if;
1988          end;
1989       end if;
1990
1991       Debug_A_Entry ("resolving  ", N);
1992
1993       if Comes_From_Source (N) then
1994          if Is_Fixed_Point_Type (Typ) then
1995             Check_Restriction (No_Fixed_Point, N);
1996
1997          elsif Is_Floating_Point_Type (Typ)
1998            and then Typ /= Universal_Real
1999            and then Typ /= Any_Real
2000          then
2001             Check_Restriction (No_Floating_Point, N);
2002          end if;
2003       end if;
2004
2005       --  Return if already analyzed
2006
2007       if Analyzed (N) then
2008          Debug_A_Exit ("resolving  ", N, "  (done, already analyzed)");
2009          return;
2010
2011       --  Return if type = Any_Type (previous error encountered)
2012
2013       elsif Etype (N) = Any_Type then
2014          Debug_A_Exit ("resolving  ", N, "  (done, Etype = Any_Type)");
2015          return;
2016       end if;
2017
2018       Check_Parameterless_Call (N);
2019
2020       --  If not overloaded, then we know the type, and all that needs doing
2021       --  is to check that this type is compatible with the context.
2022
2023       if not Is_Overloaded (N) then
2024          Found := Covers (Typ, Etype (N));
2025          Expr_Type := Etype (N);
2026
2027       --  In the overloaded case, we must select the interpretation that
2028       --  is compatible with the context (i.e. the type passed to Resolve)
2029
2030       else
2031          --  Loop through possible interpretations
2032
2033          Get_First_Interp (N, I, It);
2034          Interp_Loop : while Present (It.Typ) loop
2035
2036             --  We are only interested in interpretations that are compatible
2037             --  with the expected type, any other interpretations are ignored.
2038
2039             if not Covers (Typ, It.Typ) then
2040                if Debug_Flag_V then
2041                   Write_Str ("    interpretation incompatible with context");
2042                   Write_Eol;
2043                end if;
2044
2045             else
2046                --  Skip the current interpretation if it is disabled by an
2047                --  abstract operator. This action is performed only when the
2048                --  type against which we are resolving is the same as the
2049                --  type of the interpretation.
2050
2051                if Ada_Version >= Ada_2005
2052                  and then It.Typ = Typ
2053                  and then Typ /= Universal_Integer
2054                  and then Typ /= Universal_Real
2055                  and then Present (It.Abstract_Op)
2056                then
2057                   goto Continue;
2058                end if;
2059
2060                --  First matching interpretation
2061
2062                if not Found then
2063                   Found := True;
2064                   I1    := I;
2065                   Seen  := It.Nam;
2066                   Expr_Type := It.Typ;
2067
2068                --  Matching interpretation that is not the first, maybe an
2069                --  error, but there are some cases where preference rules are
2070                --  used to choose between the two possibilities. These and
2071                --  some more obscure cases are handled in Disambiguate.
2072
2073                else
2074                   --  If the current statement is part of a predefined library
2075                   --  unit, then all interpretations which come from user level
2076                   --  packages should not be considered.
2077
2078                   if From_Lib
2079                     and then not Comes_From_Predefined_Lib_Unit (It.Nam)
2080                   then
2081                      goto Continue;
2082                   end if;
2083
2084                   Error_Msg_Sloc := Sloc (Seen);
2085                   It1 := Disambiguate (N, I1, I, Typ);
2086
2087                   --  Disambiguation has succeeded. Skip the remaining
2088                   --  interpretations.
2089
2090                   if It1 /= No_Interp then
2091                      Seen := It1.Nam;
2092                      Expr_Type := It1.Typ;
2093
2094                      while Present (It.Typ) loop
2095                         Get_Next_Interp (I, It);
2096                      end loop;
2097
2098                   else
2099                      --  Before we issue an ambiguity complaint, check for
2100                      --  the case of a subprogram call where at least one
2101                      --  of the arguments is Any_Type, and if so, suppress
2102                      --  the message, since it is a cascaded error.
2103
2104                      if Nkind_In (N, N_Function_Call,
2105                                      N_Procedure_Call_Statement)
2106                      then
2107                         declare
2108                            A : Node_Id;
2109                            E : Node_Id;
2110
2111                         begin
2112                            A := First_Actual (N);
2113                            while Present (A) loop
2114                               E := A;
2115
2116                               if Nkind (E) = N_Parameter_Association then
2117                                  E := Explicit_Actual_Parameter (E);
2118                               end if;
2119
2120                               if Etype (E) = Any_Type then
2121                                  if Debug_Flag_V then
2122                                     Write_Str ("Any_Type in call");
2123                                     Write_Eol;
2124                                  end if;
2125
2126                                  exit Interp_Loop;
2127                               end if;
2128
2129                               Next_Actual (A);
2130                            end loop;
2131                         end;
2132
2133                      elsif Nkind (N) in N_Binary_Op
2134                        and then (Etype (Left_Opnd (N)) = Any_Type
2135                                   or else Etype (Right_Opnd (N)) = Any_Type)
2136                      then
2137                         exit Interp_Loop;
2138
2139                      elsif Nkind (N) in  N_Unary_Op
2140                        and then Etype (Right_Opnd (N)) = Any_Type
2141                      then
2142                         exit Interp_Loop;
2143                      end if;
2144
2145                      --  Not that special case, so issue message using the
2146                      --  flag Ambiguous to control printing of the header
2147                      --  message only at the start of an ambiguous set.
2148
2149                      if not Ambiguous then
2150                         if Nkind (N) = N_Function_Call
2151                           and then Nkind (Name (N)) = N_Explicit_Dereference
2152                         then
2153                            Error_Msg_N
2154                              ("ambiguous expression "
2155                                & "(cannot resolve indirect call)!", N);
2156                         else
2157                            Error_Msg_NE -- CODEFIX
2158                              ("ambiguous expression (cannot resolve&)!",
2159                               N, It.Nam);
2160                         end if;
2161
2162                         Ambiguous := True;
2163
2164                         if Nkind (Parent (Seen)) = N_Full_Type_Declaration then
2165                            Error_Msg_N
2166                              ("\\possible interpretation (inherited)#!", N);
2167                         else
2168                            Error_Msg_N -- CODEFIX
2169                              ("\\possible interpretation#!", N);
2170                         end if;
2171
2172                         if Nkind_In
2173                              (N, N_Procedure_Call_Statement, N_Function_Call)
2174                           and then Present (Parameter_Associations (N))
2175                         then
2176                            Report_Ambiguous_Argument;
2177                         end if;
2178                      end if;
2179
2180                      Error_Msg_Sloc := Sloc (It.Nam);
2181
2182                      --  By default, the error message refers to the candidate
2183                      --  interpretation. But if it is a predefined operator, it
2184                      --  is implicitly declared at the declaration of the type
2185                      --  of the operand. Recover the sloc of that declaration
2186                      --  for the error message.
2187
2188                      if Nkind (N) in N_Op
2189                        and then Scope (It.Nam) = Standard_Standard
2190                        and then not Is_Overloaded (Right_Opnd (N))
2191                        and then Scope (Base_Type (Etype (Right_Opnd (N)))) /=
2192                                                              Standard_Standard
2193                      then
2194                         Err_Type := First_Subtype (Etype (Right_Opnd (N)));
2195
2196                         if Comes_From_Source (Err_Type)
2197                           and then Present (Parent (Err_Type))
2198                         then
2199                            Error_Msg_Sloc := Sloc (Parent (Err_Type));
2200                         end if;
2201
2202                      elsif Nkind (N) in N_Binary_Op
2203                        and then Scope (It.Nam) = Standard_Standard
2204                        and then not Is_Overloaded (Left_Opnd (N))
2205                        and then Scope (Base_Type (Etype (Left_Opnd (N)))) /=
2206                                                              Standard_Standard
2207                      then
2208                         Err_Type := First_Subtype (Etype (Left_Opnd (N)));
2209
2210                         if Comes_From_Source (Err_Type)
2211                           and then Present (Parent (Err_Type))
2212                         then
2213                            Error_Msg_Sloc := Sloc (Parent (Err_Type));
2214                         end if;
2215
2216                      --  If this is an indirect call, use the subprogram_type
2217                      --  in the message, to have a meaningful location. Also
2218                      --  indicate if this is an inherited operation, created
2219                      --  by a type declaration.
2220
2221                      elsif Nkind (N) = N_Function_Call
2222                        and then Nkind (Name (N)) = N_Explicit_Dereference
2223                        and then Is_Type (It.Nam)
2224                      then
2225                         Err_Type := It.Nam;
2226                         Error_Msg_Sloc :=
2227                           Sloc (Associated_Node_For_Itype (Err_Type));
2228                      else
2229                         Err_Type := Empty;
2230                      end if;
2231
2232                      if Nkind (N) in N_Op
2233                        and then Scope (It.Nam) = Standard_Standard
2234                        and then Present (Err_Type)
2235                      then
2236                         --  Special-case the message for universal_fixed
2237                         --  operators, which are not declared with the type
2238                         --  of the operand, but appear forever in Standard.
2239
2240                         if  It.Typ = Universal_Fixed
2241                           and then Scope (It.Nam) = Standard_Standard
2242                         then
2243                            Error_Msg_N
2244                              ("\\possible interpretation as " &
2245                                 "universal_fixed operation " &
2246                                   "(RM 4.5.5 (19))", N);
2247                         else
2248                            Error_Msg_N
2249                              ("\\possible interpretation (predefined)#!", N);
2250                         end if;
2251
2252                      elsif
2253                        Nkind (Parent (It.Nam)) = N_Full_Type_Declaration
2254                      then
2255                         Error_Msg_N
2256                           ("\\possible interpretation (inherited)#!", N);
2257                      else
2258                         Error_Msg_N -- CODEFIX
2259                           ("\\possible interpretation#!", N);
2260                      end if;
2261
2262                   end if;
2263                end if;
2264
2265                --  We have a matching interpretation, Expr_Type is the type
2266                --  from this interpretation, and Seen is the entity.
2267
2268                --  For an operator, just set the entity name. The type will be
2269                --  set by the specific operator resolution routine.
2270
2271                if Nkind (N) in N_Op then
2272                   Set_Entity (N, Seen);
2273                   Generate_Reference (Seen, N);
2274
2275                elsif Nkind (N) = N_Case_Expression then
2276                   Set_Etype (N, Expr_Type);
2277
2278                elsif Nkind (N) = N_Character_Literal then
2279                   Set_Etype (N, Expr_Type);
2280
2281                elsif Nkind (N) = N_Conditional_Expression then
2282                   Set_Etype (N, Expr_Type);
2283
2284                --  AI05-0139-2: Expression is overloaded because type has
2285                --  implicit dereference. If type matches context, no implicit
2286                --  dereference is involved.
2287
2288                elsif Has_Implicit_Dereference (Expr_Type) then
2289                   Set_Etype (N, Expr_Type);
2290                   Set_Is_Overloaded (N, False);
2291                   exit Interp_Loop;
2292
2293                elsif Is_Overloaded (N)
2294                  and then Present (It.Nam)
2295                  and then Ekind (It.Nam) = E_Discriminant
2296                  and then Has_Implicit_Dereference (It.Nam)
2297                then
2298                   Build_Explicit_Dereference (N, It.Nam);
2299
2300                --  For an explicit dereference, attribute reference, range,
2301                --  short-circuit form (which is not an operator node), or call
2302                --  with a name that is an explicit dereference, there is
2303                --  nothing to be done at this point.
2304
2305                elsif Nkind_In (N, N_Explicit_Dereference,
2306                                   N_Attribute_Reference,
2307                                   N_And_Then,
2308                                   N_Indexed_Component,
2309                                   N_Or_Else,
2310                                   N_Range,
2311                                   N_Selected_Component,
2312                                   N_Slice)
2313                  or else Nkind (Name (N)) = N_Explicit_Dereference
2314                then
2315                   null;
2316
2317                --  For procedure or function calls, set the type of the name,
2318                --  and also the entity pointer for the prefix.
2319
2320                elsif Nkind_In (N, N_Procedure_Call_Statement, N_Function_Call)
2321                  and then Is_Entity_Name (Name (N))
2322                then
2323                   Set_Etype  (Name (N), Expr_Type);
2324                   Set_Entity (Name (N), Seen);
2325                   Generate_Reference (Seen, Name (N));
2326
2327                elsif Nkind (N) = N_Function_Call
2328                  and then Nkind (Name (N)) = N_Selected_Component
2329                then
2330                   Set_Etype (Name (N), Expr_Type);
2331                   Set_Entity (Selector_Name (Name (N)), Seen);
2332                   Generate_Reference (Seen, Selector_Name (Name (N)));
2333
2334                --  For all other cases, just set the type of the Name
2335
2336                else
2337                   Set_Etype (Name (N), Expr_Type);
2338                end if;
2339
2340             end if;
2341
2342             <<Continue>>
2343
2344             --  Move to next interpretation
2345
2346             exit Interp_Loop when No (It.Typ);
2347
2348             Get_Next_Interp (I, It);
2349          end loop Interp_Loop;
2350       end if;
2351
2352       --  At this stage Found indicates whether or not an acceptable
2353       --  interpretation exists. If not, then we have an error, except that if
2354       --  the context is Any_Type as a result of some other error, then we
2355       --  suppress the error report.
2356
2357       if not Found then
2358          if Typ /= Any_Type then
2359
2360             --  If type we are looking for is Void, then this is the procedure
2361             --  call case, and the error is simply that what we gave is not a
2362             --  procedure name (we think of procedure calls as expressions with
2363             --  types internally, but the user doesn't think of them this way!)
2364
2365             if Typ = Standard_Void_Type then
2366
2367                --  Special case message if function used as a procedure
2368
2369                if Nkind (N) = N_Procedure_Call_Statement
2370                  and then Is_Entity_Name (Name (N))
2371                  and then Ekind (Entity (Name (N))) = E_Function
2372                then
2373                   Error_Msg_NE
2374                     ("cannot use function & in a procedure call",
2375                      Name (N), Entity (Name (N)));
2376
2377                --  Otherwise give general message (not clear what cases this
2378                --  covers, but no harm in providing for them!)
2379
2380                else
2381                   Error_Msg_N ("expect procedure name in procedure call", N);
2382                end if;
2383
2384                Found := True;
2385
2386             --  Otherwise we do have a subexpression with the wrong type
2387
2388             --  Check for the case of an allocator which uses an access type
2389             --  instead of the designated type. This is a common error and we
2390             --  specialize the message, posting an error on the operand of the
2391             --  allocator, complaining that we expected the designated type of
2392             --  the allocator.
2393
2394             elsif Nkind (N) = N_Allocator
2395               and then Ekind (Typ) in Access_Kind
2396               and then Ekind (Etype (N)) in Access_Kind
2397               and then Designated_Type (Etype (N)) = Typ
2398             then
2399                Wrong_Type (Expression (N), Designated_Type (Typ));
2400                Found := True;
2401
2402             --  Check for view mismatch on Null in instances, for which the
2403             --  view-swapping mechanism has no identifier.
2404
2405             elsif (In_Instance or else In_Inlined_Body)
2406               and then (Nkind (N) = N_Null)
2407               and then Is_Private_Type (Typ)
2408               and then Is_Access_Type (Full_View (Typ))
2409             then
2410                Resolve (N, Full_View (Typ));
2411                Set_Etype (N, Typ);
2412                return;
2413
2414             --  Check for an aggregate. Sometimes we can get bogus aggregates
2415             --  from misuse of parentheses, and we are about to complain about
2416             --  the aggregate without even looking inside it.
2417
2418             --  Instead, if we have an aggregate of type Any_Composite, then
2419             --  analyze and resolve the component fields, and then only issue
2420             --  another message if we get no errors doing this (otherwise
2421             --  assume that the errors in the aggregate caused the problem).
2422
2423             elsif Nkind (N) = N_Aggregate
2424               and then Etype (N) = Any_Composite
2425             then
2426                --  Disable expansion in any case. If there is a type mismatch
2427                --  it may be fatal to try to expand the aggregate. The flag
2428                --  would otherwise be set to false when the error is posted.
2429
2430                Expander_Active := False;
2431
2432                declare
2433                   procedure Check_Aggr (Aggr : Node_Id);
2434                   --  Check one aggregate, and set Found to True if we have a
2435                   --  definite error in any of its elements
2436
2437                   procedure Check_Elmt (Aelmt : Node_Id);
2438                   --  Check one element of aggregate and set Found to True if
2439                   --  we definitely have an error in the element.
2440
2441                   ----------------
2442                   -- Check_Aggr --
2443                   ----------------
2444
2445                   procedure Check_Aggr (Aggr : Node_Id) is
2446                      Elmt : Node_Id;
2447
2448                   begin
2449                      if Present (Expressions (Aggr)) then
2450                         Elmt := First (Expressions (Aggr));
2451                         while Present (Elmt) loop
2452                            Check_Elmt (Elmt);
2453                            Next (Elmt);
2454                         end loop;
2455                      end if;
2456
2457                      if Present (Component_Associations (Aggr)) then
2458                         Elmt := First (Component_Associations (Aggr));
2459                         while Present (Elmt) loop
2460
2461                            --  If this is a default-initialized component, then
2462                            --  there is nothing to check. The box will be
2463                            --  replaced by the appropriate call during late
2464                            --  expansion.
2465
2466                            if not Box_Present (Elmt) then
2467                               Check_Elmt (Expression (Elmt));
2468                            end if;
2469
2470                            Next (Elmt);
2471                         end loop;
2472                      end if;
2473                   end Check_Aggr;
2474
2475                   ----------------
2476                   -- Check_Elmt --
2477                   ----------------
2478
2479                   procedure Check_Elmt (Aelmt : Node_Id) is
2480                   begin
2481                      --  If we have a nested aggregate, go inside it (to
2482                      --  attempt a naked analyze-resolve of the aggregate can
2483                      --  cause undesirable cascaded errors). Do not resolve
2484                      --  expression if it needs a type from context, as for
2485                      --  integer * fixed expression.
2486
2487                      if Nkind (Aelmt) = N_Aggregate then
2488                         Check_Aggr (Aelmt);
2489
2490                      else
2491                         Analyze (Aelmt);
2492
2493                         if not Is_Overloaded (Aelmt)
2494                           and then Etype (Aelmt) /= Any_Fixed
2495                         then
2496                            Resolve (Aelmt);
2497                         end if;
2498
2499                         if Etype (Aelmt) = Any_Type then
2500                            Found := True;
2501                         end if;
2502                      end if;
2503                   end Check_Elmt;
2504
2505                begin
2506                   Check_Aggr (N);
2507                end;
2508             end if;
2509
2510             --  If an error message was issued already, Found got reset to
2511             --  True, so if it is still False, issue standard Wrong_Type msg.
2512
2513             if not Found then
2514                if Is_Overloaded (N)
2515                  and then Nkind (N) = N_Function_Call
2516                then
2517                   declare
2518                      Subp_Name : Node_Id;
2519                   begin
2520                      if Is_Entity_Name (Name (N)) then
2521                         Subp_Name := Name (N);
2522
2523                      elsif Nkind (Name (N)) = N_Selected_Component then
2524
2525                         --  Protected operation: retrieve operation name
2526
2527                         Subp_Name := Selector_Name (Name (N));
2528
2529                      else
2530                         raise Program_Error;
2531                      end if;
2532
2533                      Error_Msg_Node_2 := Typ;
2534                      Error_Msg_NE ("no visible interpretation of&" &
2535                        " matches expected type&", N, Subp_Name);
2536                   end;
2537
2538                   if All_Errors_Mode then
2539                      declare
2540                         Index : Interp_Index;
2541                         It    : Interp;
2542
2543                      begin
2544                         Error_Msg_N ("\\possible interpretations:", N);
2545
2546                         Get_First_Interp (Name (N), Index, It);
2547                         while Present (It.Nam) loop
2548                            Error_Msg_Sloc := Sloc (It.Nam);
2549                            Error_Msg_Node_2 := It.Nam;
2550                            Error_Msg_NE
2551                              ("\\  type& for & declared#", N, It.Typ);
2552                            Get_Next_Interp (Index, It);
2553                         end loop;
2554                      end;
2555
2556                   else
2557                      Error_Msg_N ("\use -gnatf for details", N);
2558                   end if;
2559
2560                else
2561                   Wrong_Type (N, Typ);
2562                end if;
2563             end if;
2564          end if;
2565
2566          Resolution_Failed;
2567          return;
2568
2569       --  Test if we have more than one interpretation for the context
2570
2571       elsif Ambiguous then
2572          Resolution_Failed;
2573          return;
2574
2575       --  Here we have an acceptable interpretation for the context
2576
2577       else
2578          --  Propagate type information and normalize tree for various
2579          --  predefined operations. If the context only imposes a class of
2580          --  types, rather than a specific type, propagate the actual type
2581          --  downward.
2582
2583          if Typ = Any_Integer or else
2584             Typ = Any_Boolean or else
2585             Typ = Any_Modular or else
2586             Typ = Any_Real    or else
2587             Typ = Any_Discrete
2588          then
2589             Ctx_Type := Expr_Type;
2590
2591             --  Any_Fixed is legal in a real context only if a specific fixed-
2592             --  point type is imposed. If Norman Cohen can be confused by this,
2593             --  it deserves a separate message.
2594
2595             if Typ = Any_Real
2596               and then Expr_Type = Any_Fixed
2597             then
2598                Error_Msg_N ("illegal context for mixed mode operation", N);
2599                Set_Etype (N, Universal_Real);
2600                Ctx_Type := Universal_Real;
2601             end if;
2602          end if;
2603
2604          --  A user-defined operator is transformed into a function call at
2605          --  this point, so that further processing knows that operators are
2606          --  really operators (i.e. are predefined operators). User-defined
2607          --  operators that are intrinsic are just renamings of the predefined
2608          --  ones, and need not be turned into calls either, but if they rename
2609          --  a different operator, we must transform the node accordingly.
2610          --  Instantiations of Unchecked_Conversion are intrinsic but are
2611          --  treated as functions, even if given an operator designator.
2612
2613          if Nkind (N) in N_Op
2614            and then Present (Entity (N))
2615            and then Ekind (Entity (N)) /= E_Operator
2616          then
2617
2618             if not Is_Predefined_Op (Entity (N)) then
2619                Rewrite_Operator_As_Call (N, Entity (N));
2620
2621             elsif Present (Alias (Entity (N)))
2622               and then
2623                 Nkind (Parent (Parent (Entity (N)))) =
2624                                     N_Subprogram_Renaming_Declaration
2625             then
2626                Rewrite_Renamed_Operator (N, Alias (Entity (N)), Typ);
2627
2628                --  If the node is rewritten, it will be fully resolved in
2629                --  Rewrite_Renamed_Operator.
2630
2631                if Analyzed (N) then
2632                   return;
2633                end if;
2634             end if;
2635          end if;
2636
2637          case N_Subexpr'(Nkind (N)) is
2638
2639             when N_Aggregate => Resolve_Aggregate                (N, Ctx_Type);
2640
2641             when N_Allocator => Resolve_Allocator                (N, Ctx_Type);
2642
2643             when N_Short_Circuit
2644                              => Resolve_Short_Circuit            (N, Ctx_Type);
2645
2646             when N_Attribute_Reference
2647                              => Resolve_Attribute                (N, Ctx_Type);
2648
2649             when N_Case_Expression
2650                              => Resolve_Case_Expression          (N, Ctx_Type);
2651
2652             when N_Character_Literal
2653                              => Resolve_Character_Literal        (N, Ctx_Type);
2654
2655             when N_Conditional_Expression
2656                              => Resolve_Conditional_Expression   (N, Ctx_Type);
2657
2658             when N_Expanded_Name
2659                              => Resolve_Entity_Name              (N, Ctx_Type);
2660
2661             when N_Explicit_Dereference
2662                              => Resolve_Explicit_Dereference     (N, Ctx_Type);
2663
2664             when N_Expression_With_Actions
2665                              => Resolve_Expression_With_Actions  (N, Ctx_Type);
2666
2667             when N_Extension_Aggregate
2668                              => Resolve_Extension_Aggregate      (N, Ctx_Type);
2669
2670             when N_Function_Call
2671                              => Resolve_Call                     (N, Ctx_Type);
2672
2673             when N_Identifier
2674                              => Resolve_Entity_Name              (N, Ctx_Type);
2675
2676             when N_Indexed_Component
2677                              => Resolve_Indexed_Component        (N, Ctx_Type);
2678
2679             when N_Integer_Literal
2680                              => Resolve_Integer_Literal          (N, Ctx_Type);
2681
2682             when N_Membership_Test
2683                              => Resolve_Membership_Op            (N, Ctx_Type);
2684
2685             when N_Null      => Resolve_Null                     (N, Ctx_Type);
2686
2687             when N_Op_And | N_Op_Or | N_Op_Xor
2688                              => Resolve_Logical_Op               (N, Ctx_Type);
2689
2690             when N_Op_Eq | N_Op_Ne
2691                              => Resolve_Equality_Op              (N, Ctx_Type);
2692
2693             when N_Op_Lt | N_Op_Le | N_Op_Gt | N_Op_Ge
2694                              => Resolve_Comparison_Op            (N, Ctx_Type);
2695
2696             when N_Op_Not    => Resolve_Op_Not                   (N, Ctx_Type);
2697
2698             when N_Op_Add    | N_Op_Subtract | N_Op_Multiply |
2699                  N_Op_Divide | N_Op_Mod      | N_Op_Rem
2700
2701                              => Resolve_Arithmetic_Op            (N, Ctx_Type);
2702
2703             when N_Op_Concat => Resolve_Op_Concat                (N, Ctx_Type);
2704
2705             when N_Op_Expon  => Resolve_Op_Expon                 (N, Ctx_Type);
2706
2707             when N_Op_Plus | N_Op_Minus  | N_Op_Abs
2708                              => Resolve_Unary_Op                 (N, Ctx_Type);
2709
2710             when N_Op_Shift  => Resolve_Shift                    (N, Ctx_Type);
2711
2712             when N_Procedure_Call_Statement
2713                              => Resolve_Call                     (N, Ctx_Type);
2714
2715             when N_Operator_Symbol
2716                              => Resolve_Operator_Symbol          (N, Ctx_Type);
2717
2718             when N_Qualified_Expression
2719                              => Resolve_Qualified_Expression     (N, Ctx_Type);
2720
2721             when N_Quantified_Expression
2722                              => Resolve_Quantified_Expression    (N, Ctx_Type);
2723
2724             when N_Raise_xxx_Error
2725                              => Set_Etype (N, Ctx_Type);
2726
2727             when N_Range     => Resolve_Range                    (N, Ctx_Type);
2728
2729             when N_Real_Literal
2730                              => Resolve_Real_Literal             (N, Ctx_Type);
2731
2732             when N_Reference => Resolve_Reference                (N, Ctx_Type);
2733
2734             when N_Selected_Component
2735                              => Resolve_Selected_Component       (N, Ctx_Type);
2736
2737             when N_Slice     => Resolve_Slice                    (N, Ctx_Type);
2738
2739             when N_String_Literal
2740                              => Resolve_String_Literal           (N, Ctx_Type);
2741
2742             when N_Subprogram_Info
2743                              => Resolve_Subprogram_Info          (N, Ctx_Type);
2744
2745             when N_Type_Conversion
2746                              => Resolve_Type_Conversion          (N, Ctx_Type);
2747
2748             when N_Unchecked_Expression =>
2749                Resolve_Unchecked_Expression                      (N, Ctx_Type);
2750
2751             when N_Unchecked_Type_Conversion =>
2752                Resolve_Unchecked_Type_Conversion                 (N, Ctx_Type);
2753          end case;
2754
2755          --  Ada 2012 (AI05-0149): Apply an (implicit) conversion to an
2756          --  expression of an anonymous access type that occurs in the context
2757          --  of a named general access type, except when the expression is that
2758          --  of a membership test. This ensures proper legality checking in
2759          --  terms of allowed conversions (expressions that would be illegal to
2760          --  convert implicitly are allowed in membership tests).
2761
2762          if Ada_Version >= Ada_2012
2763            and then Ekind (Ctx_Type) = E_General_Access_Type
2764            and then Ekind (Etype (N)) = E_Anonymous_Access_Type
2765            and then Nkind (Parent (N)) not in N_Membership_Test
2766          then
2767             Rewrite (N, Convert_To (Ctx_Type, Relocate_Node (N)));
2768             Analyze_And_Resolve (N, Ctx_Type);
2769          end if;
2770
2771          --  If the subexpression was replaced by a non-subexpression, then
2772          --  all we do is to expand it. The only legitimate case we know of
2773          --  is converting procedure call statement to entry call statements,
2774          --  but there may be others, so we are making this test general.
2775
2776          if Nkind (N) not in N_Subexpr then
2777             Debug_A_Exit ("resolving  ", N, "  (done)");
2778             Expand (N);
2779             return;
2780          end if;
2781
2782          --  AI05-144-2: Check dangerous order dependence within an expression
2783          --  that is not a subexpression. Exclude RHS of an assignment, because
2784          --  both sides may have side-effects and the check must be performed
2785          --  over the statement.
2786
2787          if Nkind (Parent (N)) not in N_Subexpr
2788            and then Nkind (Parent (N)) /= N_Assignment_Statement
2789            and then Nkind (Parent (N)) /= N_Procedure_Call_Statement
2790          then
2791             Check_Order_Dependence;
2792          end if;
2793
2794          --  The expression is definitely NOT overloaded at this point, so
2795          --  we reset the Is_Overloaded flag to avoid any confusion when
2796          --  reanalyzing the node.
2797
2798          Set_Is_Overloaded (N, False);
2799
2800          --  Freeze expression type, entity if it is a name, and designated
2801          --  type if it is an allocator (RM 13.14(10,11,13)).
2802
2803          --  Now that the resolution of the type of the node is complete, and
2804          --  we did not detect an error, we can expand this node. We skip the
2805          --  expand call if we are in a default expression, see section
2806          --  "Handling of Default Expressions" in Sem spec.
2807
2808          Debug_A_Exit ("resolving  ", N, "  (done)");
2809
2810          --  We unconditionally freeze the expression, even if we are in
2811          --  default expression mode (the Freeze_Expression routine tests this
2812          --  flag and only freezes static types if it is set).
2813
2814          --  AI05-177 (Ada2012): Expression functions do not freeze. Only
2815          --  their use (in an expanded call) freezes.
2816
2817          if Ekind (Current_Scope) /= E_Function
2818            or else
2819              Nkind (Original_Node (Unit_Declaration_Node (Current_Scope))) /=
2820                                                         N_Expression_Function
2821          then
2822             Freeze_Expression (N);
2823          end if;
2824
2825          --  Now we can do the expansion
2826
2827          Expand (N);
2828       end if;
2829    end Resolve;
2830
2831    -------------
2832    -- Resolve --
2833    -------------
2834
2835    --  Version with check(s) suppressed
2836
2837    procedure Resolve (N : Node_Id; Typ : Entity_Id; Suppress : Check_Id) is
2838    begin
2839       if Suppress = All_Checks then
2840          declare
2841             Svg : constant Suppress_Array := Scope_Suppress;
2842          begin
2843             Scope_Suppress := (others => True);
2844             Resolve (N, Typ);
2845             Scope_Suppress := Svg;
2846          end;
2847
2848       else
2849          declare
2850             Svg : constant Boolean := Scope_Suppress (Suppress);
2851          begin
2852             Scope_Suppress (Suppress) := True;
2853             Resolve (N, Typ);
2854             Scope_Suppress (Suppress) := Svg;
2855          end;
2856       end if;
2857    end Resolve;
2858
2859    -------------
2860    -- Resolve --
2861    -------------
2862
2863    --  Version with implicit type
2864
2865    procedure Resolve (N : Node_Id) is
2866    begin
2867       Resolve (N, Etype (N));
2868    end Resolve;
2869
2870    ---------------------
2871    -- Resolve_Actuals --
2872    ---------------------
2873
2874    procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id) is
2875       Loc    : constant Source_Ptr := Sloc (N);
2876       A      : Node_Id;
2877       F      : Entity_Id;
2878       A_Typ  : Entity_Id;
2879       F_Typ  : Entity_Id;
2880       Prev   : Node_Id := Empty;
2881       Orig_A : Node_Id;
2882
2883       procedure Check_Argument_Order;
2884       --  Performs a check for the case where the actuals are all simple
2885       --  identifiers that correspond to the formal names, but in the wrong
2886       --  order, which is considered suspicious and cause for a warning.
2887
2888       procedure Check_Prefixed_Call;
2889       --  If the original node is an overloaded call in prefix notation,
2890       --  insert an 'Access or a dereference as needed over the first actual.
2891       --  Try_Object_Operation has already verified that there is a valid
2892       --  interpretation, but the form of the actual can only be determined
2893       --  once the primitive operation is identified.
2894
2895       procedure Insert_Default;
2896       --  If the actual is missing in a call, insert in the actuals list
2897       --  an instance of the default expression. The insertion is always
2898       --  a named association.
2899
2900       function Same_Ancestor (T1, T2 : Entity_Id) return Boolean;
2901       --  Check whether T1 and T2, or their full views, are derived from a
2902       --  common type. Used to enforce the restrictions on array conversions
2903       --  of AI95-00246.
2904
2905       function Static_Concatenation (N : Node_Id) return Boolean;
2906       --  Predicate to determine whether an actual that is a concatenation
2907       --  will be evaluated statically and does not need a transient scope.
2908       --  This must be determined before the actual is resolved and expanded
2909       --  because if needed the transient scope must be introduced earlier.
2910
2911       --------------------------
2912       -- Check_Argument_Order --
2913       --------------------------
2914
2915       procedure Check_Argument_Order is
2916       begin
2917          --  Nothing to do if no parameters, or original node is neither a
2918          --  function call nor a procedure call statement (happens in the
2919          --  operator-transformed-to-function call case), or the call does
2920          --  not come from source, or this warning is off.
2921
2922          if not Warn_On_Parameter_Order
2923            or else No (Parameter_Associations (N))
2924            or else not Nkind_In (Original_Node (N), N_Procedure_Call_Statement,
2925                                                     N_Function_Call)
2926            or else not Comes_From_Source (N)
2927          then
2928             return;
2929          end if;
2930
2931          declare
2932             Nargs : constant Nat := List_Length (Parameter_Associations (N));
2933
2934          begin
2935             --  Nothing to do if only one parameter
2936
2937             if Nargs < 2 then
2938                return;
2939             end if;
2940
2941             --  Here if at least two arguments
2942
2943             declare
2944                Actuals : array (1 .. Nargs) of Node_Id;
2945                Actual  : Node_Id;
2946                Formal  : Node_Id;
2947
2948                Wrong_Order : Boolean := False;
2949                --  Set True if an out of order case is found
2950
2951             begin
2952                --  Collect identifier names of actuals, fail if any actual is
2953                --  not a simple identifier, and record max length of name.
2954
2955                Actual := First (Parameter_Associations (N));
2956                for J in Actuals'Range loop
2957                   if Nkind (Actual) /= N_Identifier then
2958                      return;
2959                   else
2960                      Actuals (J) := Actual;
2961                      Next (Actual);
2962                   end if;
2963                end loop;
2964
2965                --  If we got this far, all actuals are identifiers and the list
2966                --  of their names is stored in the Actuals array.
2967
2968                Formal := First_Formal (Nam);
2969                for J in Actuals'Range loop
2970
2971                   --  If we ran out of formals, that's odd, probably an error
2972                   --  which will be detected elsewhere, but abandon the search.
2973
2974                   if No (Formal) then
2975                      return;
2976                   end if;
2977
2978                   --  If name matches and is in order OK
2979
2980                   if Chars (Formal) = Chars (Actuals (J)) then
2981                      null;
2982
2983                   else
2984                      --  If no match, see if it is elsewhere in list and if so
2985                      --  flag potential wrong order if type is compatible.
2986
2987                      for K in Actuals'Range loop
2988                         if Chars (Formal) = Chars (Actuals (K))
2989                           and then
2990                             Has_Compatible_Type (Actuals (K), Etype (Formal))
2991                         then
2992                            Wrong_Order := True;
2993                            goto Continue;
2994                         end if;
2995                      end loop;
2996
2997                      --  No match
2998
2999                      return;
3000                   end if;
3001
3002                   <<Continue>> Next_Formal (Formal);
3003                end loop;
3004
3005                --  If Formals left over, also probably an error, skip warning
3006
3007                if Present (Formal) then
3008                   return;
3009                end if;
3010
3011                --  Here we give the warning if something was out of order
3012
3013                if Wrong_Order then
3014                   Error_Msg_N
3015                     ("actuals for this call may be in wrong order?", N);
3016                end if;
3017             end;
3018          end;
3019       end Check_Argument_Order;
3020
3021       -------------------------
3022       -- Check_Prefixed_Call --
3023       -------------------------
3024
3025       procedure Check_Prefixed_Call is
3026          Act    : constant Node_Id   := First_Actual (N);
3027          A_Type : constant Entity_Id := Etype (Act);
3028          F_Type : constant Entity_Id := Etype (First_Formal (Nam));
3029          Orig   : constant Node_Id := Original_Node (N);
3030          New_A  : Node_Id;
3031
3032       begin
3033          --  Check whether the call is a prefixed call, with or without
3034          --  additional actuals.
3035
3036          if Nkind (Orig) = N_Selected_Component
3037            or else
3038              (Nkind (Orig) = N_Indexed_Component
3039                and then Nkind (Prefix (Orig)) = N_Selected_Component
3040                and then Is_Entity_Name (Prefix (Prefix (Orig)))
3041                and then Is_Entity_Name (Act)
3042                and then Chars (Act) = Chars (Prefix (Prefix (Orig))))
3043          then
3044             if Is_Access_Type (A_Type)
3045               and then not Is_Access_Type (F_Type)
3046             then
3047                --  Introduce dereference on object in prefix
3048
3049                New_A :=
3050                  Make_Explicit_Dereference (Sloc (Act),
3051                    Prefix => Relocate_Node (Act));
3052                Rewrite (Act, New_A);
3053                Analyze (Act);
3054
3055             elsif Is_Access_Type (F_Type)
3056               and then not Is_Access_Type (A_Type)
3057             then
3058                --  Introduce an implicit 'Access in prefix
3059
3060                if not Is_Aliased_View (Act) then
3061                   Error_Msg_NE
3062                     ("object in prefixed call to& must be aliased"
3063                          & " (RM-2005 4.3.1 (13))",
3064                     Prefix (Act), Nam);
3065                end if;
3066
3067                Rewrite (Act,
3068                  Make_Attribute_Reference (Loc,
3069                    Attribute_Name => Name_Access,
3070                    Prefix         => Relocate_Node (Act)));
3071             end if;
3072
3073             Analyze (Act);
3074          end if;
3075       end Check_Prefixed_Call;
3076
3077       --------------------
3078       -- Insert_Default --
3079       --------------------
3080
3081       procedure Insert_Default is
3082          Actval : Node_Id;
3083          Assoc  : Node_Id;
3084
3085       begin
3086          --  Missing argument in call, nothing to insert
3087
3088          if No (Default_Value (F)) then
3089             return;
3090
3091          else
3092             --  Note that we do a full New_Copy_Tree, so that any associated
3093             --  Itypes are properly copied. This may not be needed any more,
3094             --  but it does no harm as a safety measure! Defaults of a generic
3095             --  formal may be out of bounds of the corresponding actual (see
3096             --  cc1311b) and an additional check may be required.
3097
3098             Actval :=
3099               New_Copy_Tree
3100                 (Default_Value (F),
3101                  New_Scope => Current_Scope,
3102                  New_Sloc  => Loc);
3103
3104             if Is_Concurrent_Type (Scope (Nam))
3105               and then Has_Discriminants (Scope (Nam))
3106             then
3107                Replace_Actual_Discriminants (N, Actval);
3108             end if;
3109
3110             if Is_Overloadable (Nam)
3111               and then Present (Alias (Nam))
3112             then
3113                if Base_Type (Etype (F)) /= Base_Type (Etype (Actval))
3114                  and then not Is_Tagged_Type (Etype (F))
3115                then
3116                   --  If default is a real literal, do not introduce a
3117                   --  conversion whose effect may depend on the run-time
3118                   --  size of universal real.
3119
3120                   if Nkind (Actval) = N_Real_Literal then
3121                      Set_Etype (Actval, Base_Type (Etype (F)));
3122                   else
3123                      Actval := Unchecked_Convert_To (Etype (F), Actval);
3124                   end if;
3125                end if;
3126
3127                if Is_Scalar_Type (Etype (F)) then
3128                   Enable_Range_Check (Actval);
3129                end if;
3130
3131                Set_Parent (Actval, N);
3132
3133                --  Resolve aggregates with their base type, to avoid scope
3134                --  anomalies: the subtype was first built in the subprogram
3135                --  declaration, and the current call may be nested.
3136
3137                if Nkind (Actval) = N_Aggregate then
3138                   Analyze_And_Resolve (Actval, Etype (F));
3139                else
3140                   Analyze_And_Resolve (Actval, Etype (Actval));
3141                end if;
3142
3143             else
3144                Set_Parent (Actval, N);
3145
3146                --  See note above concerning aggregates
3147
3148                if Nkind (Actval) = N_Aggregate
3149                  and then Has_Discriminants (Etype (Actval))
3150                then
3151                   Analyze_And_Resolve (Actval, Base_Type (Etype (Actval)));
3152
3153                --  Resolve entities with their own type, which may differ from
3154                --  the type of a reference in a generic context (the view
3155                --  swapping mechanism did not anticipate the re-analysis of
3156                --  default values in calls).
3157
3158                elsif Is_Entity_Name (Actval) then
3159                   Analyze_And_Resolve (Actval, Etype (Entity (Actval)));
3160
3161                else
3162                   Analyze_And_Resolve (Actval, Etype (Actval));
3163                end if;
3164             end if;
3165
3166             --  If default is a tag indeterminate function call, propagate tag
3167             --  to obtain proper dispatching.
3168
3169             if Is_Controlling_Formal (F)
3170               and then Nkind (Default_Value (F)) = N_Function_Call
3171             then
3172                Set_Is_Controlling_Actual (Actval);
3173             end if;
3174
3175          end if;
3176
3177          --  If the default expression raises constraint error, then just
3178          --  silently replace it with an N_Raise_Constraint_Error node, since
3179          --  we already gave the warning on the subprogram spec. If node is
3180          --  already a Raise_Constraint_Error leave as is, to prevent loops in
3181          --  the warnings removal machinery.
3182
3183          if Raises_Constraint_Error (Actval)
3184            and then Nkind (Actval) /= N_Raise_Constraint_Error
3185          then
3186             Rewrite (Actval,
3187               Make_Raise_Constraint_Error (Loc,
3188                 Reason => CE_Range_Check_Failed));
3189             Set_Raises_Constraint_Error (Actval);
3190             Set_Etype (Actval, Etype (F));
3191          end if;
3192
3193          Assoc :=
3194            Make_Parameter_Association (Loc,
3195              Explicit_Actual_Parameter => Actval,
3196              Selector_Name => Make_Identifier (Loc, Chars (F)));
3197
3198          --  Case of insertion is first named actual
3199
3200          if No (Prev) or else
3201             Nkind (Parent (Prev)) /= N_Parameter_Association
3202          then
3203             Set_Next_Named_Actual (Assoc, First_Named_Actual (N));
3204             Set_First_Named_Actual (N, Actval);
3205
3206             if No (Prev) then
3207                if No (Parameter_Associations (N)) then
3208                   Set_Parameter_Associations (N, New_List (Assoc));
3209                else
3210                   Append (Assoc, Parameter_Associations (N));
3211                end if;
3212
3213             else
3214                Insert_After (Prev, Assoc);
3215             end if;
3216
3217          --  Case of insertion is not first named actual
3218
3219          else
3220             Set_Next_Named_Actual
3221               (Assoc, Next_Named_Actual (Parent (Prev)));
3222             Set_Next_Named_Actual (Parent (Prev), Actval);
3223             Append (Assoc, Parameter_Associations (N));
3224          end if;
3225
3226          Mark_Rewrite_Insertion (Assoc);
3227          Mark_Rewrite_Insertion (Actval);
3228
3229          Prev := Actval;
3230       end Insert_Default;
3231
3232       -------------------
3233       -- Same_Ancestor --
3234       -------------------
3235
3236       function Same_Ancestor (T1, T2 : Entity_Id) return Boolean is
3237          FT1 : Entity_Id := T1;
3238          FT2 : Entity_Id := T2;
3239
3240       begin
3241          if Is_Private_Type (T1)
3242            and then Present (Full_View (T1))
3243          then
3244             FT1 := Full_View (T1);
3245          end if;
3246
3247          if Is_Private_Type (T2)
3248            and then Present (Full_View (T2))
3249          then
3250             FT2 := Full_View (T2);
3251          end if;
3252
3253          return Root_Type (Base_Type (FT1)) = Root_Type (Base_Type (FT2));
3254       end Same_Ancestor;
3255
3256       --------------------------
3257       -- Static_Concatenation --
3258       --------------------------
3259
3260       function Static_Concatenation (N : Node_Id) return Boolean is
3261       begin
3262          case Nkind (N) is
3263             when N_String_Literal =>
3264                return True;
3265
3266             when N_Op_Concat =>
3267
3268                --  Concatenation is static when both operands are static and
3269                --  the concatenation operator is a predefined one.
3270
3271                return Scope (Entity (N)) = Standard_Standard
3272                         and then
3273                       Static_Concatenation (Left_Opnd (N))
3274                         and then
3275                       Static_Concatenation (Right_Opnd (N));
3276
3277             when others =>
3278                if Is_Entity_Name (N) then
3279                   declare
3280                      Ent : constant Entity_Id := Entity (N);
3281                   begin
3282                      return Ekind (Ent) = E_Constant
3283                               and then Present (Constant_Value (Ent))
3284                               and then
3285                                 Is_Static_Expression (Constant_Value (Ent));
3286                   end;
3287
3288                else
3289                   return False;
3290                end if;
3291          end case;
3292       end Static_Concatenation;
3293
3294    --  Start of processing for Resolve_Actuals
3295
3296    begin
3297       Check_Argument_Order;
3298
3299       if Present (First_Actual (N)) then
3300          Check_Prefixed_Call;
3301       end if;
3302
3303       A := First_Actual (N);
3304       F := First_Formal (Nam);
3305       while Present (F) loop
3306          if No (A) and then Needs_No_Actuals (Nam) then
3307             null;
3308
3309          --  If we have an error in any actual or formal, indicated by a type
3310          --  of Any_Type, then abandon resolution attempt, and set result type
3311          --  to Any_Type.
3312
3313          elsif (Present (A) and then Etype (A) = Any_Type)
3314            or else Etype (F) = Any_Type
3315          then
3316             Set_Etype (N, Any_Type);
3317             return;
3318          end if;
3319
3320          --  Case where actual is present
3321
3322          --  If the actual is an entity, generate a reference to it now. We
3323          --  do this before the actual is resolved, because a formal of some
3324          --  protected subprogram, or a task discriminant, will be rewritten
3325          --  during expansion, and the source entity reference may be lost.
3326
3327          if Present (A)
3328            and then Is_Entity_Name (A)
3329            and then Comes_From_Source (N)
3330          then
3331             Orig_A := Entity (A);
3332
3333             if Present (Orig_A) then
3334                if Is_Formal (Orig_A)
3335                  and then Ekind (F) /= E_In_Parameter
3336                then
3337                   Generate_Reference (Orig_A, A, 'm');
3338
3339                elsif not Is_Overloaded (A) then
3340                   Generate_Reference (Orig_A, A);
3341                end if;
3342             end if;
3343          end if;
3344
3345          if Present (A)
3346            and then (Nkind (Parent (A)) /= N_Parameter_Association
3347                       or else Chars (Selector_Name (Parent (A))) = Chars (F))
3348          then
3349             --  If style checking mode on, check match of formal name
3350
3351             if Style_Check then
3352                if Nkind (Parent (A)) = N_Parameter_Association then
3353                   Check_Identifier (Selector_Name (Parent (A)), F);
3354                end if;
3355             end if;
3356
3357             --  If the formal is Out or In_Out, do not resolve and expand the
3358             --  conversion, because it is subsequently expanded into explicit
3359             --  temporaries and assignments. However, the object of the
3360             --  conversion can be resolved. An exception is the case of tagged
3361             --  type conversion with a class-wide actual. In that case we want
3362             --  the tag check to occur and no temporary will be needed (no
3363             --  representation change can occur) and the parameter is passed by
3364             --  reference, so we go ahead and resolve the type conversion.
3365             --  Another exception is the case of reference to component or
3366             --  subcomponent of a bit-packed array, in which case we want to
3367             --  defer expansion to the point the in and out assignments are
3368             --  performed.
3369
3370             if Ekind (F) /= E_In_Parameter
3371               and then Nkind (A) = N_Type_Conversion
3372               and then not Is_Class_Wide_Type (Etype (Expression (A)))
3373             then
3374                if Ekind (F) = E_In_Out_Parameter
3375                  and then Is_Array_Type (Etype (F))
3376                then
3377                   --  In a view conversion, the conversion must be legal in
3378                   --  both directions, and thus both component types must be
3379                   --  aliased, or neither (4.6 (8)).
3380
3381                   --  The extra rule in 4.6 (24.9.2) seems unduly restrictive:
3382                   --  the privacy requirement should not apply to generic
3383                   --  types, and should be checked in an instance. ARG query
3384                   --  is in order ???
3385
3386                   if Has_Aliased_Components (Etype (Expression (A))) /=
3387                      Has_Aliased_Components (Etype (F))
3388                   then
3389                      Error_Msg_N
3390                        ("both component types in a view conversion must be"
3391                          & " aliased, or neither", A);
3392
3393                   --  Comment here??? what set of cases???
3394
3395                   elsif
3396                      not Same_Ancestor (Etype (F), Etype (Expression (A)))
3397                   then
3398                      --  Check view conv between unrelated by ref array types
3399
3400                      if Is_By_Reference_Type (Etype (F))
3401                         or else Is_By_Reference_Type (Etype (Expression (A)))
3402                      then
3403                         Error_Msg_N
3404                           ("view conversion between unrelated by reference " &
3405                            "array types not allowed (\'A'I-00246)", A);
3406
3407                      --  In Ada 2005 mode, check view conversion component
3408                      --  type cannot be private, tagged, or volatile. Note
3409                      --  that we only apply this to source conversions. The
3410                      --  generated code can contain conversions which are
3411                      --  not subject to this test, and we cannot extract the
3412                      --  component type in such cases since it is not present.
3413
3414                      elsif Comes_From_Source (A)
3415                        and then Ada_Version >= Ada_2005
3416                      then
3417                         declare
3418                            Comp_Type : constant Entity_Id :=
3419                                          Component_Type
3420                                            (Etype (Expression (A)));
3421                         begin
3422                            if (Is_Private_Type (Comp_Type)
3423                                  and then not Is_Generic_Type (Comp_Type))
3424                              or else Is_Tagged_Type (Comp_Type)
3425                              or else Is_Volatile (Comp_Type)
3426                            then
3427                               Error_Msg_N
3428                                 ("component type of a view conversion cannot"
3429                                    & " be private, tagged, or volatile"
3430                                    & " (RM 4.6 (24))",
3431                                    Expression (A));
3432                            end if;
3433                         end;
3434                      end if;
3435                   end if;
3436                end if;
3437
3438                --  Resolve expression if conversion is all OK
3439
3440                if (Conversion_OK (A)
3441                     or else Valid_Conversion (A, Etype (A), Expression (A)))
3442                  and then not Is_Ref_To_Bit_Packed_Array (Expression (A))
3443                then
3444                   Resolve (Expression (A));
3445                end if;
3446
3447             --  If the actual is a function call that returns a limited
3448             --  unconstrained object that needs finalization, create a
3449             --  transient scope for it, so that it can receive the proper
3450             --  finalization list.
3451
3452             elsif Nkind (A) = N_Function_Call
3453               and then Is_Limited_Record (Etype (F))
3454               and then not Is_Constrained (Etype (F))
3455               and then Full_Expander_Active
3456               and then (Is_Controlled (Etype (F)) or else Has_Task (Etype (F)))
3457             then
3458                Establish_Transient_Scope (A, False);
3459                Resolve (A, Etype (F));
3460
3461             --  A small optimization: if one of the actuals is a concatenation
3462             --  create a block around a procedure call to recover stack space.
3463             --  This alleviates stack usage when several procedure calls in
3464             --  the same statement list use concatenation. We do not perform
3465             --  this wrapping for code statements, where the argument is a
3466             --  static string, and we want to preserve warnings involving
3467             --  sequences of such statements.
3468
3469             elsif Nkind (A) = N_Op_Concat
3470               and then Nkind (N) = N_Procedure_Call_Statement
3471               and then Full_Expander_Active
3472               and then
3473                 not (Is_Intrinsic_Subprogram (Nam)
3474                       and then Chars (Nam) = Name_Asm)
3475               and then not Static_Concatenation (A)
3476             then
3477                Establish_Transient_Scope (A, False);
3478                Resolve (A, Etype (F));
3479
3480             else
3481                if Nkind (A) = N_Type_Conversion
3482                  and then Is_Array_Type (Etype (F))
3483                  and then not Same_Ancestor (Etype (F), Etype (Expression (A)))
3484                  and then
3485                   (Is_Limited_Type (Etype (F))
3486                      or else Is_Limited_Type (Etype (Expression (A))))
3487                then
3488                   Error_Msg_N
3489                     ("conversion between unrelated limited array types " &
3490                      "not allowed (\A\I-00246)", A);
3491
3492                   if Is_Limited_Type (Etype (F)) then
3493                      Explain_Limited_Type (Etype (F), A);
3494                   end if;
3495
3496                   if Is_Limited_Type (Etype (Expression (A))) then
3497                      Explain_Limited_Type (Etype (Expression (A)), A);
3498                   end if;
3499                end if;
3500
3501                --  (Ada 2005: AI-251): If the actual is an allocator whose
3502                --  directly designated type is a class-wide interface, we build
3503                --  an anonymous access type to use it as the type of the
3504                --  allocator. Later, when the subprogram call is expanded, if
3505                --  the interface has a secondary dispatch table the expander
3506                --  will add a type conversion to force the correct displacement
3507                --  of the pointer.
3508
3509                if Nkind (A) = N_Allocator then
3510                   declare
3511                      DDT : constant Entity_Id :=
3512                              Directly_Designated_Type (Base_Type (Etype (F)));
3513
3514                      New_Itype : Entity_Id;
3515
3516                   begin
3517                      if Is_Class_Wide_Type (DDT)
3518                        and then Is_Interface (DDT)
3519                      then
3520                         New_Itype := Create_Itype (E_Anonymous_Access_Type, A);
3521                         Set_Etype (New_Itype, Etype (A));
3522                         Set_Directly_Designated_Type (New_Itype,
3523                           Directly_Designated_Type (Etype (A)));
3524                         Set_Etype (A, New_Itype);
3525                      end if;
3526
3527                      --  Ada 2005, AI-162:If the actual is an allocator, the
3528                      --  innermost enclosing statement is the master of the
3529                      --  created object. This needs to be done with expansion
3530                      --  enabled only, otherwise the transient scope will not
3531                      --  be removed in the expansion of the wrapped construct.
3532
3533                      if (Is_Controlled (DDT) or else Has_Task (DDT))
3534                        and then Full_Expander_Active
3535                      then
3536                         Establish_Transient_Scope (A, False);
3537                      end if;
3538                   end;
3539                end if;
3540
3541                --  (Ada 2005): The call may be to a primitive operation of
3542                --   a tagged synchronized type, declared outside of the type.
3543                --   In this case the controlling actual must be converted to
3544                --   its corresponding record type, which is the formal type.
3545                --   The actual may be a subtype, either because of a constraint
3546                --   or because it is a generic actual, so use base type to
3547                --   locate concurrent type.
3548
3549                F_Typ := Base_Type (Etype (F));
3550
3551                if Is_Tagged_Type (F_Typ)
3552                  and then (Is_Concurrent_Type (F_Typ)
3553                              or else Is_Concurrent_Record_Type (F_Typ))
3554                then
3555                   --  If the actual is overloaded, look for an interpretation
3556                   --  that has a synchronized type.
3557
3558                   if not Is_Overloaded (A) then
3559                      A_Typ := Base_Type (Etype (A));
3560
3561                   else
3562                      declare
3563                         Index : Interp_Index;
3564                         It    : Interp;
3565
3566                      begin
3567                         Get_First_Interp (A, Index, It);
3568                         while Present (It.Typ) loop
3569                            if Is_Concurrent_Type (It.Typ)
3570                              or else Is_Concurrent_Record_Type (It.Typ)
3571                            then
3572                               A_Typ := Base_Type (It.Typ);
3573                               exit;
3574                            end if;
3575
3576                            Get_Next_Interp (Index, It);
3577                         end loop;
3578                      end;
3579                   end if;
3580
3581                   declare
3582                      Full_A_Typ : Entity_Id;
3583
3584                   begin
3585                      if Present (Full_View (A_Typ)) then
3586                         Full_A_Typ := Base_Type (Full_View (A_Typ));
3587                      else
3588                         Full_A_Typ := A_Typ;
3589                      end if;
3590
3591                      --  Tagged synchronized type (case 1): the actual is a
3592                      --  concurrent type.
3593
3594                      if Is_Concurrent_Type (A_Typ)
3595                        and then Corresponding_Record_Type (A_Typ) = F_Typ
3596                      then
3597                         Rewrite (A,
3598                           Unchecked_Convert_To
3599                             (Corresponding_Record_Type (A_Typ), A));
3600                         Resolve (A, Etype (F));
3601
3602                      --  Tagged synchronized type (case 2): the formal is a
3603                      --  concurrent type.
3604
3605                      elsif Ekind (Full_A_Typ) = E_Record_Type
3606                        and then Present
3607                                (Corresponding_Concurrent_Type (Full_A_Typ))
3608                        and then Is_Concurrent_Type (F_Typ)
3609                        and then Present (Corresponding_Record_Type (F_Typ))
3610                        and then Full_A_Typ = Corresponding_Record_Type (F_Typ)
3611                      then
3612                         Resolve (A, Corresponding_Record_Type (F_Typ));
3613
3614                      --  Common case
3615
3616                      else
3617                         Resolve (A, Etype (F));
3618                      end if;
3619                   end;
3620                else
3621
3622                   --  not a synchronized operation.
3623
3624                   Resolve (A, Etype (F));
3625                end if;
3626             end if;
3627
3628             A_Typ := Etype (A);
3629             F_Typ := Etype (F);
3630
3631             if Comes_From_Source (Original_Node (N))
3632               and then Nkind_In (Original_Node (N), N_Function_Call,
3633                                                     N_Procedure_Call_Statement)
3634             then
3635                --  In formal mode, check that actual parameters matching
3636                --  formals of tagged types are objects (or ancestor type
3637                --  conversions of objects), not general expressions.
3638
3639                if Is_Actual_Tagged_Parameter (A) then
3640                   if Is_SPARK_Object_Reference (A) then
3641                      null;
3642
3643                   elsif Nkind (A) = N_Type_Conversion then
3644                      declare
3645                         Operand     : constant Node_Id   := Expression (A);
3646                         Operand_Typ : constant Entity_Id := Etype (Operand);
3647                         Target_Typ  : constant Entity_Id := A_Typ;
3648
3649                      begin
3650                         if not Is_SPARK_Object_Reference (Operand) then
3651                            Check_SPARK_Restriction
3652                              ("object required", Operand);
3653
3654                         --  In formal mode, the only view conversions are those
3655                         --  involving ancestor conversion of an extended type.
3656
3657                         elsif not
3658                           (Is_Tagged_Type (Target_Typ)
3659                            and then not Is_Class_Wide_Type (Target_Typ)
3660                            and then Is_Tagged_Type (Operand_Typ)
3661                            and then not Is_Class_Wide_Type (Operand_Typ)
3662                            and then Is_Ancestor (Target_Typ, Operand_Typ))
3663                         then
3664                            if Ekind_In
3665                              (F, E_Out_Parameter, E_In_Out_Parameter)
3666                            then
3667                               Check_SPARK_Restriction
3668                                 ("ancestor conversion is the only permitted "
3669                                  & "view conversion", A);
3670                            else
3671                               Check_SPARK_Restriction
3672                                 ("ancestor conversion required", A);
3673                            end if;
3674
3675                         else
3676                            null;
3677                         end if;
3678                      end;
3679
3680                   else
3681                      Check_SPARK_Restriction ("object required", A);
3682                   end if;
3683
3684                --  In formal mode, the only view conversions are those
3685                --  involving ancestor conversion of an extended type.
3686
3687                elsif Nkind (A) = N_Type_Conversion
3688                  and then Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
3689                then
3690                   Check_SPARK_Restriction
3691                     ("ancestor conversion is the only permitted view "
3692                      & "conversion", A);
3693                end if;
3694             end if;
3695
3696             --  Save actual for subsequent check on order dependence, and
3697             --  indicate whether actual is modifiable. For AI05-0144-2.
3698
3699             Save_Actual (A, Ekind (F) /= E_In_Parameter);
3700
3701             --  For mode IN, if actual is an entity, and the type of the formal
3702             --  has warnings suppressed, then we reset Never_Set_In_Source for
3703             --  the calling entity. The reason for this is to catch cases like
3704             --  GNAT.Spitbol.Patterns.Vstring_Var where the called subprogram
3705             --  uses trickery to modify an IN parameter.
3706
3707             if Ekind (F) = E_In_Parameter
3708               and then Is_Entity_Name (A)
3709               and then Present (Entity (A))
3710               and then Ekind (Entity (A)) = E_Variable
3711               and then Has_Warnings_Off (F_Typ)
3712             then
3713                Set_Never_Set_In_Source (Entity (A), False);
3714             end if;
3715
3716             --  Perform error checks for IN and IN OUT parameters
3717
3718             if Ekind (F) /= E_Out_Parameter then
3719
3720                --  Check unset reference. For scalar parameters, it is clearly
3721                --  wrong to pass an uninitialized value as either an IN or
3722                --  IN-OUT parameter. For composites, it is also clearly an
3723                --  error to pass a completely uninitialized value as an IN
3724                --  parameter, but the case of IN OUT is trickier. We prefer
3725                --  not to give a warning here. For example, suppose there is
3726                --  a routine that sets some component of a record to False.
3727                --  It is perfectly reasonable to make this IN-OUT and allow
3728                --  either initialized or uninitialized records to be passed
3729                --  in this case.
3730
3731                --  For partially initialized composite values, we also avoid
3732                --  warnings, since it is quite likely that we are passing a
3733                --  partially initialized value and only the initialized fields
3734                --  will in fact be read in the subprogram.
3735
3736                if Is_Scalar_Type (A_Typ)
3737                  or else (Ekind (F) = E_In_Parameter
3738                            and then not Is_Partially_Initialized_Type (A_Typ))
3739                then
3740                   Check_Unset_Reference (A);
3741                end if;
3742
3743                --  In Ada 83 we cannot pass an OUT parameter as an IN or IN OUT
3744                --  actual to a nested call, since this is case of reading an
3745                --  out parameter, which is not allowed.
3746
3747                if Ada_Version = Ada_83
3748                  and then Is_Entity_Name (A)
3749                  and then Ekind (Entity (A)) = E_Out_Parameter
3750                then
3751                   Error_Msg_N ("(Ada 83) illegal reading of out parameter", A);
3752                end if;
3753             end if;
3754
3755             --  Case of OUT or IN OUT parameter
3756
3757             if Ekind (F) /= E_In_Parameter then
3758
3759                --  For an Out parameter, check for useless assignment. Note
3760                --  that we can't set Last_Assignment this early, because we may
3761                --  kill current values in Resolve_Call, and that call would
3762                --  clobber the Last_Assignment field.
3763
3764                --  Note: call Warn_On_Useless_Assignment before doing the check
3765                --  below for Is_OK_Variable_For_Out_Formal so that the setting
3766                --  of Referenced_As_LHS/Referenced_As_Out_Formal properly
3767                --  reflects the last assignment, not this one!
3768
3769                if Ekind (F) = E_Out_Parameter then
3770                   if Warn_On_Modified_As_Out_Parameter (F)
3771                     and then Is_Entity_Name (A)
3772                     and then Present (Entity (A))
3773                     and then Comes_From_Source (N)
3774                   then
3775                      Warn_On_Useless_Assignment (Entity (A), A);
3776                   end if;
3777                end if;
3778
3779                --  Validate the form of the actual. Note that the call to
3780                --  Is_OK_Variable_For_Out_Formal generates the required
3781                --  reference in this case.
3782
3783                --  A call to an initialization procedure for an aggregate
3784                --  component may initialize a nested component of a constant
3785                --  designated object. In this context the object is variable.
3786
3787                if not Is_OK_Variable_For_Out_Formal (A)
3788                  and then not Is_Init_Proc (Nam)
3789                then
3790                   Error_Msg_NE ("actual for& must be a variable", A, F);
3791                end if;
3792
3793                --  What's the following about???
3794
3795                if Is_Entity_Name (A) then
3796                   Kill_Checks (Entity (A));
3797                else
3798                   Kill_All_Checks;
3799                end if;
3800             end if;
3801
3802             if Etype (A) = Any_Type then
3803                Set_Etype (N, Any_Type);
3804                return;
3805             end if;
3806
3807             --  Apply appropriate range checks for in, out, and in-out
3808             --  parameters. Out and in-out parameters also need a separate
3809             --  check, if there is a type conversion, to make sure the return
3810             --  value meets the constraints of the variable before the
3811             --  conversion.
3812
3813             --  Gigi looks at the check flag and uses the appropriate types.
3814             --  For now since one flag is used there is an optimization which
3815             --  might not be done in the In Out case since Gigi does not do
3816             --  any analysis. More thought required about this ???
3817
3818             if Ekind_In (F, E_In_Parameter, E_In_Out_Parameter) then
3819
3820                --  Apply predicate checks, unless this is a call to the
3821                --  predicate check function itself, which would cause an
3822                --  infinite recursion.
3823
3824                if not (Ekind (Nam) = E_Function
3825                         and then Has_Predicates (Nam))
3826                then
3827                   Apply_Predicate_Check (A, F_Typ);
3828                end if;
3829
3830                --  Apply required constraint checks
3831
3832                if Is_Scalar_Type (Etype (A)) then
3833                   Apply_Scalar_Range_Check (A, F_Typ);
3834
3835                elsif Is_Array_Type (Etype (A)) then
3836                   Apply_Length_Check (A, F_Typ);
3837
3838                elsif Is_Record_Type (F_Typ)
3839                  and then Has_Discriminants (F_Typ)
3840                  and then Is_Constrained (F_Typ)
3841                  and then (not Is_Derived_Type (F_Typ)
3842                             or else Comes_From_Source (Nam))
3843                then
3844                   Apply_Discriminant_Check (A, F_Typ);
3845
3846                elsif Is_Access_Type (F_Typ)
3847                  and then Is_Array_Type (Designated_Type (F_Typ))
3848                  and then Is_Constrained (Designated_Type (F_Typ))
3849                then
3850                   Apply_Length_Check (A, F_Typ);
3851
3852                elsif Is_Access_Type (F_Typ)
3853                  and then Has_Discriminants (Designated_Type (F_Typ))
3854                  and then Is_Constrained (Designated_Type (F_Typ))
3855                then
3856                   Apply_Discriminant_Check (A, F_Typ);
3857
3858                else
3859                   Apply_Range_Check (A, F_Typ);
3860                end if;
3861
3862                --  Ada 2005 (AI-231): Note that the controlling parameter case
3863                --  already existed in Ada 95, which is partially checked
3864                --  elsewhere (see Checks), and we don't want the warning
3865                --  message to differ.
3866
3867                if Is_Access_Type (F_Typ)
3868                  and then Can_Never_Be_Null (F_Typ)
3869                  and then Known_Null (A)
3870                then
3871                   if Is_Controlling_Formal (F) then
3872                      Apply_Compile_Time_Constraint_Error
3873                        (N      => A,
3874                         Msg    => "null value not allowed here?",
3875                         Reason => CE_Access_Check_Failed);
3876
3877                   elsif Ada_Version >= Ada_2005 then
3878                      Apply_Compile_Time_Constraint_Error
3879                        (N      => A,
3880                         Msg    => "(Ada 2005) null not allowed in "
3881                                   & "null-excluding formal?",
3882                         Reason => CE_Null_Not_Allowed);
3883                   end if;
3884                end if;
3885             end if;
3886
3887             if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter) then
3888                if Nkind (A) = N_Type_Conversion then
3889                   if Is_Scalar_Type (A_Typ) then
3890                      Apply_Scalar_Range_Check
3891                        (Expression (A), Etype (Expression (A)), A_Typ);
3892                   else
3893                      Apply_Range_Check
3894                        (Expression (A), Etype (Expression (A)), A_Typ);
3895                   end if;
3896
3897                else
3898                   if Is_Scalar_Type (F_Typ) then
3899                      Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
3900                   elsif Is_Array_Type (F_Typ)
3901                     and then Ekind (F) = E_Out_Parameter
3902                   then
3903                      Apply_Length_Check (A, F_Typ);
3904                   else
3905                      Apply_Range_Check (A, A_Typ, F_Typ);
3906                   end if;
3907                end if;
3908             end if;
3909
3910             --  An actual associated with an access parameter is implicitly
3911             --  converted to the anonymous access type of the formal and must
3912             --  satisfy the legality checks for access conversions.
3913
3914             if Ekind (F_Typ) = E_Anonymous_Access_Type then
3915                if not Valid_Conversion (A, F_Typ, A) then
3916                   Error_Msg_N
3917                     ("invalid implicit conversion for access parameter", A);
3918                end if;
3919             end if;
3920
3921             --  Check bad case of atomic/volatile argument (RM C.6(12))
3922
3923             if Is_By_Reference_Type (Etype (F))
3924               and then Comes_From_Source (N)
3925             then
3926                if Is_Atomic_Object (A)
3927                  and then not Is_Atomic (Etype (F))
3928                then
3929                   Error_Msg_NE
3930                     ("cannot pass atomic argument to non-atomic formal&",
3931                      A, F);
3932
3933                elsif Is_Volatile_Object (A)
3934                  and then not Is_Volatile (Etype (F))
3935                then
3936                   Error_Msg_NE
3937                     ("cannot pass volatile argument to non-volatile formal&",
3938                      A, F);
3939                end if;
3940             end if;
3941
3942             --  Check that subprograms don't have improper controlling
3943             --  arguments (RM 3.9.2 (9)).
3944
3945             --  A primitive operation may have an access parameter of an
3946             --  incomplete tagged type, but a dispatching call is illegal
3947             --  if the type is still incomplete.
3948
3949             if Is_Controlling_Formal (F) then
3950                Set_Is_Controlling_Actual (A);
3951
3952                if Ekind (Etype (F)) = E_Anonymous_Access_Type then
3953                   declare
3954                      Desig : constant Entity_Id := Designated_Type (Etype (F));
3955                   begin
3956                      if Ekind (Desig) = E_Incomplete_Type
3957                        and then No (Full_View (Desig))
3958                        and then No (Non_Limited_View (Desig))
3959                      then
3960                         Error_Msg_NE
3961                           ("premature use of incomplete type& " &
3962                            "in dispatching call", A, Desig);
3963                      end if;
3964                   end;
3965                end if;
3966
3967             elsif Nkind (A) = N_Explicit_Dereference then
3968                Validate_Remote_Access_To_Class_Wide_Type (A);
3969             end if;
3970
3971             if (Is_Class_Wide_Type (A_Typ) or else Is_Dynamically_Tagged (A))
3972               and then not Is_Class_Wide_Type (F_Typ)
3973               and then not Is_Controlling_Formal (F)
3974             then
3975                Error_Msg_N ("class-wide argument not allowed here!", A);
3976
3977                if Is_Subprogram (Nam)
3978                  and then Comes_From_Source (Nam)
3979                then
3980                   Error_Msg_Node_2 := F_Typ;
3981                   Error_Msg_NE
3982                     ("& is not a dispatching operation of &!", A, Nam);
3983                end if;
3984
3985             --  Apply the checks described in 3.10.2(27): if the context is a
3986             --  specific access-to-object, the actual cannot be class-wide.
3987             --  Use base type to exclude access_to_subprogram cases.
3988
3989             elsif Is_Access_Type (A_Typ)
3990               and then Is_Access_Type (F_Typ)
3991               and then not Is_Access_Subprogram_Type (Base_Type (F_Typ))
3992               and then (Is_Class_Wide_Type (Designated_Type (A_Typ))
3993                          or else (Nkind (A) = N_Attribute_Reference
3994                                    and then
3995                                   Is_Class_Wide_Type (Etype (Prefix (A)))))
3996               and then not Is_Class_Wide_Type (Designated_Type (F_Typ))
3997               and then not Is_Controlling_Formal (F)
3998
3999               --  Disable these checks for call to imported C++ subprograms
4000
4001               and then not
4002                 (Is_Entity_Name (Name (N))
4003                   and then Is_Imported (Entity (Name (N)))
4004                   and then Convention (Entity (Name (N))) = Convention_CPP)
4005             then
4006                Error_Msg_N
4007                  ("access to class-wide argument not allowed here!", A);
4008
4009                if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4010                   Error_Msg_Node_2 := Designated_Type (F_Typ);
4011                   Error_Msg_NE
4012                     ("& is not a dispatching operation of &!", A, Nam);
4013                end if;
4014             end if;
4015
4016             Eval_Actual (A);
4017
4018             --  If it is a named association, treat the selector_name as a
4019             --  proper identifier, and mark the corresponding entity. Ignore
4020             --  this reference in Alfa mode, as it refers to an entity not in
4021             --  scope at the point of reference, so the reference should be
4022             --  ignored for computing effects of subprograms.
4023
4024             if Nkind (Parent (A)) = N_Parameter_Association
4025               and then not Alfa_Mode
4026             then
4027                Set_Entity (Selector_Name (Parent (A)), F);
4028                Generate_Reference (F, Selector_Name (Parent (A)));
4029                Set_Etype (Selector_Name (Parent (A)), F_Typ);
4030                Generate_Reference (F_Typ, N, ' ');
4031             end if;
4032
4033             Prev := A;
4034
4035             if Ekind (F) /= E_Out_Parameter then
4036                Check_Unset_Reference (A);
4037             end if;
4038
4039             Next_Actual (A);
4040
4041          --  Case where actual is not present
4042
4043          else
4044             Insert_Default;
4045          end if;
4046
4047          Next_Formal (F);
4048       end loop;
4049    end Resolve_Actuals;
4050
4051    -----------------------
4052    -- Resolve_Allocator --
4053    -----------------------
4054
4055    procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id) is
4056       Desig_T  : constant Entity_Id := Designated_Type (Typ);
4057       E        : constant Node_Id   := Expression (N);
4058       Subtyp   : Entity_Id;
4059       Discrim  : Entity_Id;
4060       Constr   : Node_Id;
4061       Aggr     : Node_Id;
4062       Assoc    : Node_Id := Empty;
4063       Disc_Exp : Node_Id;
4064
4065       procedure Check_Allocator_Discrim_Accessibility
4066         (Disc_Exp  : Node_Id;
4067          Alloc_Typ : Entity_Id);
4068       --  Check that accessibility level associated with an access discriminant
4069       --  initialized in an allocator by the expression Disc_Exp is not deeper
4070       --  than the level of the allocator type Alloc_Typ. An error message is
4071       --  issued if this condition is violated. Specialized checks are done for
4072       --  the cases of a constraint expression which is an access attribute or
4073       --  an access discriminant.
4074
4075       function In_Dispatching_Context return Boolean;
4076       --  If the allocator is an actual in a call, it is allowed to be class-
4077       --  wide when the context is not because it is a controlling actual.
4078
4079       -------------------------------------------
4080       -- Check_Allocator_Discrim_Accessibility --
4081       -------------------------------------------
4082
4083       procedure Check_Allocator_Discrim_Accessibility
4084         (Disc_Exp  : Node_Id;
4085          Alloc_Typ : Entity_Id)
4086       is
4087       begin
4088          if Type_Access_Level (Etype (Disc_Exp)) >
4089             Deepest_Type_Access_Level (Alloc_Typ)
4090          then
4091             Error_Msg_N
4092               ("operand type has deeper level than allocator type", Disc_Exp);
4093
4094          --  When the expression is an Access attribute the level of the prefix
4095          --  object must not be deeper than that of the allocator's type.
4096
4097          elsif Nkind (Disc_Exp) = N_Attribute_Reference
4098            and then Get_Attribute_Id (Attribute_Name (Disc_Exp)) =
4099                       Attribute_Access
4100            and then Object_Access_Level (Prefix (Disc_Exp)) >
4101                       Deepest_Type_Access_Level (Alloc_Typ)
4102          then
4103             Error_Msg_N
4104               ("prefix of attribute has deeper level than allocator type",
4105                Disc_Exp);
4106
4107          --  When the expression is an access discriminant the check is against
4108          --  the level of the prefix object.
4109
4110          elsif Ekind (Etype (Disc_Exp)) = E_Anonymous_Access_Type
4111            and then Nkind (Disc_Exp) = N_Selected_Component
4112            and then Object_Access_Level (Prefix (Disc_Exp)) >
4113                       Deepest_Type_Access_Level (Alloc_Typ)
4114          then
4115             Error_Msg_N
4116               ("access discriminant has deeper level than allocator type",
4117                Disc_Exp);
4118
4119          --  All other cases are legal
4120
4121          else
4122             null;
4123          end if;
4124       end Check_Allocator_Discrim_Accessibility;
4125
4126       ----------------------------
4127       -- In_Dispatching_Context --
4128       ----------------------------
4129
4130       function In_Dispatching_Context return Boolean is
4131          Par : constant Node_Id := Parent (N);
4132
4133       begin
4134          return
4135            Nkind_In (Par, N_Function_Call,
4136                           N_Procedure_Call_Statement)
4137              and then Is_Entity_Name (Name (Par))
4138              and then Is_Dispatching_Operation (Entity (Name (Par)));
4139       end In_Dispatching_Context;
4140
4141    --  Start of processing for Resolve_Allocator
4142
4143    begin
4144       --  Replace general access with specific type
4145
4146       if Ekind (Etype (N)) = E_Allocator_Type then
4147          Set_Etype (N, Base_Type (Typ));
4148       end if;
4149
4150       if Is_Abstract_Type (Typ) then
4151          Error_Msg_N ("type of allocator cannot be abstract",  N);
4152       end if;
4153
4154       --  For qualified expression, resolve the expression using the
4155       --  given subtype (nothing to do for type mark, subtype indication)
4156
4157       if Nkind (E) = N_Qualified_Expression then
4158          if Is_Class_Wide_Type (Etype (E))
4159            and then not Is_Class_Wide_Type (Desig_T)
4160            and then not In_Dispatching_Context
4161          then
4162             Error_Msg_N
4163               ("class-wide allocator not allowed for this access type", N);
4164          end if;
4165
4166          Resolve (Expression (E), Etype (E));
4167          Check_Unset_Reference (Expression (E));
4168
4169          --  A qualified expression requires an exact match of the type,
4170          --  class-wide matching is not allowed.
4171
4172          if (Is_Class_Wide_Type (Etype (Expression (E)))
4173               or else Is_Class_Wide_Type (Etype (E)))
4174            and then Base_Type (Etype (Expression (E))) /= Base_Type (Etype (E))
4175          then
4176             Wrong_Type (Expression (E), Etype (E));
4177          end if;
4178
4179          --  A special accessibility check is needed for allocators that
4180          --  constrain access discriminants. The level of the type of the
4181          --  expression used to constrain an access discriminant cannot be
4182          --  deeper than the type of the allocator (in contrast to access
4183          --  parameters, where the level of the actual can be arbitrary).
4184
4185          --  We can't use Valid_Conversion to perform this check because
4186          --  in general the type of the allocator is unrelated to the type
4187          --  of the access discriminant.
4188
4189          if Ekind (Typ) /= E_Anonymous_Access_Type
4190            or else Is_Local_Anonymous_Access (Typ)
4191          then
4192             Subtyp := Entity (Subtype_Mark (E));
4193
4194             Aggr := Original_Node (Expression (E));
4195
4196             if Has_Discriminants (Subtyp)
4197               and then Nkind_In (Aggr, N_Aggregate, N_Extension_Aggregate)
4198             then
4199                Discrim := First_Discriminant (Base_Type (Subtyp));
4200
4201                --  Get the first component expression of the aggregate
4202
4203                if Present (Expressions (Aggr)) then
4204                   Disc_Exp := First (Expressions (Aggr));
4205
4206                elsif Present (Component_Associations (Aggr)) then
4207                   Assoc := First (Component_Associations (Aggr));
4208
4209                   if Present (Assoc) then
4210                      Disc_Exp := Expression (Assoc);
4211                   else
4212                      Disc_Exp := Empty;
4213                   end if;
4214
4215                else
4216                   Disc_Exp := Empty;
4217                end if;
4218
4219                while Present (Discrim) and then Present (Disc_Exp) loop
4220                   if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4221                      Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4222                   end if;
4223
4224                   Next_Discriminant (Discrim);
4225
4226                   if Present (Discrim) then
4227                      if Present (Assoc) then
4228                         Next (Assoc);
4229                         Disc_Exp := Expression (Assoc);
4230
4231                      elsif Present (Next (Disc_Exp)) then
4232                         Next (Disc_Exp);
4233
4234                      else
4235                         Assoc := First (Component_Associations (Aggr));
4236
4237                         if Present (Assoc) then
4238                            Disc_Exp := Expression (Assoc);
4239                         else
4240                            Disc_Exp := Empty;
4241                         end if;
4242                      end if;
4243                   end if;
4244                end loop;
4245             end if;
4246          end if;
4247
4248       --  For a subtype mark or subtype indication, freeze the subtype
4249
4250       else
4251          Freeze_Expression (E);
4252
4253          if Is_Access_Constant (Typ) and then not No_Initialization (N) then
4254             Error_Msg_N
4255               ("initialization required for access-to-constant allocator", N);
4256          end if;
4257
4258          --  A special accessibility check is needed for allocators that
4259          --  constrain access discriminants. The level of the type of the
4260          --  expression used to constrain an access discriminant cannot be
4261          --  deeper than the type of the allocator (in contrast to access
4262          --  parameters, where the level of the actual can be arbitrary).
4263          --  We can't use Valid_Conversion to perform this check because
4264          --  in general the type of the allocator is unrelated to the type
4265          --  of the access discriminant.
4266
4267          if Nkind (Original_Node (E)) = N_Subtype_Indication
4268            and then (Ekind (Typ) /= E_Anonymous_Access_Type
4269                       or else Is_Local_Anonymous_Access (Typ))
4270          then
4271             Subtyp := Entity (Subtype_Mark (Original_Node (E)));
4272
4273             if Has_Discriminants (Subtyp) then
4274                Discrim := First_Discriminant (Base_Type (Subtyp));
4275                Constr := First (Constraints (Constraint (Original_Node (E))));
4276                while Present (Discrim) and then Present (Constr) loop
4277                   if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4278                      if Nkind (Constr) = N_Discriminant_Association then
4279                         Disc_Exp := Original_Node (Expression (Constr));
4280                      else
4281                         Disc_Exp := Original_Node (Constr);
4282                      end if;
4283
4284                      Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4285                   end if;
4286
4287                   Next_Discriminant (Discrim);
4288                   Next (Constr);
4289                end loop;
4290             end if;
4291          end if;
4292       end if;
4293
4294       --  Ada 2005 (AI-344): A class-wide allocator requires an accessibility
4295       --  check that the level of the type of the created object is not deeper
4296       --  than the level of the allocator's access type, since extensions can
4297       --  now occur at deeper levels than their ancestor types. This is a
4298       --  static accessibility level check; a run-time check is also needed in
4299       --  the case of an initialized allocator with a class-wide argument (see
4300       --  Expand_Allocator_Expression).
4301
4302       if Ada_Version >= Ada_2005
4303         and then Is_Class_Wide_Type (Desig_T)
4304       then
4305          declare
4306             Exp_Typ : Entity_Id;
4307
4308          begin
4309             if Nkind (E) = N_Qualified_Expression then
4310                Exp_Typ := Etype (E);
4311             elsif Nkind (E) = N_Subtype_Indication then
4312                Exp_Typ := Entity (Subtype_Mark (Original_Node (E)));
4313             else
4314                Exp_Typ := Entity (E);
4315             end if;
4316
4317             if Type_Access_Level (Exp_Typ) >
4318                  Deepest_Type_Access_Level (Typ)
4319             then
4320                if In_Instance_Body then
4321                   Error_Msg_N ("?type in allocator has deeper level than" &
4322                                " designated class-wide type", E);
4323                   Error_Msg_N ("\?Program_Error will be raised at run time",
4324                                E);
4325                   Rewrite (N,
4326                     Make_Raise_Program_Error (Sloc (N),
4327                       Reason => PE_Accessibility_Check_Failed));
4328                   Set_Etype (N, Typ);
4329
4330                --  Do not apply Ada 2005 accessibility checks on a class-wide
4331                --  allocator if the type given in the allocator is a formal
4332                --  type. A run-time check will be performed in the instance.
4333
4334                elsif not Is_Generic_Type (Exp_Typ) then
4335                   Error_Msg_N ("type in allocator has deeper level than" &
4336                                " designated class-wide type", E);
4337                end if;
4338             end if;
4339          end;
4340       end if;
4341
4342       --  Check for allocation from an empty storage pool
4343
4344       if No_Pool_Assigned (Typ) then
4345          Error_Msg_N ("allocation from empty storage pool!", N);
4346
4347       --  If the context is an unchecked conversion, as may happen within an
4348       --  inlined subprogram, the allocator is being resolved with its own
4349       --  anonymous type. In that case, if the target type has a specific
4350       --  storage pool, it must be inherited explicitly by the allocator type.
4351
4352       elsif Nkind (Parent (N)) = N_Unchecked_Type_Conversion
4353         and then No (Associated_Storage_Pool (Typ))
4354       then
4355          Set_Associated_Storage_Pool
4356            (Typ, Associated_Storage_Pool (Etype (Parent (N))));
4357       end if;
4358
4359       if Ekind (Etype (N)) = E_Anonymous_Access_Type then
4360          Check_Restriction (No_Anonymous_Allocators, N);
4361       end if;
4362
4363       --  Check that an allocator with task parts isn't for a nested access
4364       --  type when restriction No_Task_Hierarchy applies.
4365
4366       if not Is_Library_Level_Entity (Base_Type (Typ))
4367         and then Has_Task (Base_Type (Desig_T))
4368       then
4369          Check_Restriction (No_Task_Hierarchy, N);
4370       end if;
4371
4372       --  An erroneous allocator may be rewritten as a raise Program_Error
4373       --  statement.
4374
4375       if Nkind (N) = N_Allocator then
4376
4377          --  An anonymous access discriminant is the definition of a
4378          --  coextension.
4379
4380          if Ekind (Typ) = E_Anonymous_Access_Type
4381            and then Nkind (Associated_Node_For_Itype (Typ)) =
4382                       N_Discriminant_Specification
4383          then
4384             declare
4385                Discr : constant Entity_Id :=
4386                          Defining_Identifier (Associated_Node_For_Itype (Typ));
4387
4388             begin
4389                --  Ada 2012 AI05-0052: If the designated type of the allocator
4390                --  is limited, then the allocator shall not be used to define
4391                --  the value of an access discriminant unless the discriminated
4392                --  type is immutably limited.
4393
4394                if Ada_Version >= Ada_2012
4395                  and then Is_Limited_Type (Desig_T)
4396                  and then not Is_Immutably_Limited_Type (Scope (Discr))
4397                then
4398                   Error_Msg_N
4399                     ("only immutably limited types can have anonymous "
4400                      & "access discriminants designating a limited type", N);
4401                end if;
4402             end;
4403
4404             --  Avoid marking an allocator as a dynamic coextension if it is
4405             --  within a static construct.
4406
4407             if not Is_Static_Coextension (N) then
4408                Set_Is_Dynamic_Coextension (N);
4409             end if;
4410
4411          --  Cleanup for potential static coextensions
4412
4413          else
4414             Set_Is_Dynamic_Coextension (N, False);
4415             Set_Is_Static_Coextension  (N, False);
4416          end if;
4417       end if;
4418
4419       --  Report a simple error: if the designated object is a local task,
4420       --  its body has not been seen yet, and its activation will fail an
4421       --  elaboration check.
4422
4423       if Is_Task_Type (Desig_T)
4424         and then Scope (Base_Type (Desig_T)) = Current_Scope
4425         and then Is_Compilation_Unit (Current_Scope)
4426         and then Ekind (Current_Scope) = E_Package
4427         and then not In_Package_Body (Current_Scope)
4428       then
4429          Error_Msg_N ("cannot activate task before body seen?", N);
4430          Error_Msg_N ("\Program_Error will be raised at run time?", N);
4431       end if;
4432
4433       --  Ada 2012 (AI05-0111-3): Issue a warning whenever allocating a task
4434       --  or a type containing tasks on a subpool since the deallocation of
4435       --  the subpool may lead to undefined task behavior. Perform the check
4436       --  only when the allocator has not been converted into a Program_Error
4437       --  due to a previous error.
4438
4439       if Ada_Version >= Ada_2012
4440         and then Nkind (N) = N_Allocator
4441         and then Present (Subpool_Handle_Name (N))
4442         and then Has_Task (Desig_T)
4443       then
4444          Error_Msg_N ("?allocation of task on subpool may lead to " &
4445                       "undefined behavior", N);
4446       end if;
4447    end Resolve_Allocator;
4448
4449    ---------------------------
4450    -- Resolve_Arithmetic_Op --
4451    ---------------------------
4452
4453    --  Used for resolving all arithmetic operators except exponentiation
4454
4455    procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id) is
4456       L   : constant Node_Id := Left_Opnd (N);
4457       R   : constant Node_Id := Right_Opnd (N);
4458       TL  : constant Entity_Id := Base_Type (Etype (L));
4459       TR  : constant Entity_Id := Base_Type (Etype (R));
4460       T   : Entity_Id;
4461       Rop : Node_Id;
4462
4463       B_Typ : constant Entity_Id := Base_Type (Typ);
4464       --  We do the resolution using the base type, because intermediate values
4465       --  in expressions always are of the base type, not a subtype of it.
4466
4467       function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean;
4468       --  Returns True if N is in a context that expects "any real type"
4469
4470       function Is_Integer_Or_Universal (N : Node_Id) return Boolean;
4471       --  Return True iff given type is Integer or universal real/integer
4472
4473       procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id);
4474       --  Choose type of integer literal in fixed-point operation to conform
4475       --  to available fixed-point type. T is the type of the other operand,
4476       --  which is needed to determine the expected type of N.
4477
4478       procedure Set_Operand_Type (N : Node_Id);
4479       --  Set operand type to T if universal
4480
4481       -------------------------------
4482       -- Expected_Type_Is_Any_Real --
4483       -------------------------------
4484
4485       function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean is
4486       begin
4487          --  N is the expression after "delta" in a fixed_point_definition;
4488          --  see RM-3.5.9(6):
4489
4490          return Nkind_In (Parent (N), N_Ordinary_Fixed_Point_Definition,
4491                                       N_Decimal_Fixed_Point_Definition,
4492
4493          --  N is one of the bounds in a real_range_specification;
4494          --  see RM-3.5.7(5):
4495
4496                                       N_Real_Range_Specification,
4497
4498          --  N is the expression of a delta_constraint;
4499          --  see RM-J.3(3):
4500
4501                                       N_Delta_Constraint);
4502       end Expected_Type_Is_Any_Real;
4503
4504       -----------------------------
4505       -- Is_Integer_Or_Universal --
4506       -----------------------------
4507
4508       function Is_Integer_Or_Universal (N : Node_Id) return Boolean is
4509          T     : Entity_Id;
4510          Index : Interp_Index;
4511          It    : Interp;
4512
4513       begin
4514          if not Is_Overloaded (N) then
4515             T := Etype (N);
4516             return Base_Type (T) = Base_Type (Standard_Integer)
4517               or else T = Universal_Integer
4518               or else T = Universal_Real;
4519          else
4520             Get_First_Interp (N, Index, It);
4521             while Present (It.Typ) loop
4522                if Base_Type (It.Typ) = Base_Type (Standard_Integer)
4523                  or else It.Typ = Universal_Integer
4524                  or else It.Typ = Universal_Real
4525                then
4526                   return True;
4527                end if;
4528
4529                Get_Next_Interp (Index, It);
4530             end loop;
4531          end if;
4532
4533          return False;
4534       end Is_Integer_Or_Universal;
4535
4536       ----------------------------
4537       -- Set_Mixed_Mode_Operand --
4538       ----------------------------
4539
4540       procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id) is
4541          Index : Interp_Index;
4542          It    : Interp;
4543
4544       begin
4545          if Universal_Interpretation (N) = Universal_Integer then
4546
4547             --  A universal integer literal is resolved as standard integer
4548             --  except in the case of a fixed-point result, where we leave it
4549             --  as universal (to be handled by Exp_Fixd later on)
4550
4551             if Is_Fixed_Point_Type (T) then
4552                Resolve (N, Universal_Integer);
4553             else
4554                Resolve (N, Standard_Integer);
4555             end if;
4556
4557          elsif Universal_Interpretation (N) = Universal_Real
4558            and then (T = Base_Type (Standard_Integer)
4559                       or else T = Universal_Integer
4560                       or else T = Universal_Real)
4561          then
4562             --  A universal real can appear in a fixed-type context. We resolve
4563             --  the literal with that context, even though this might raise an
4564             --  exception prematurely (the other operand may be zero).
4565
4566             Resolve (N, B_Typ);
4567
4568          elsif Etype (N) = Base_Type (Standard_Integer)
4569            and then T = Universal_Real
4570            and then Is_Overloaded (N)
4571          then
4572             --  Integer arg in mixed-mode operation. Resolve with universal
4573             --  type, in case preference rule must be applied.
4574
4575             Resolve (N, Universal_Integer);
4576
4577          elsif Etype (N) = T
4578            and then B_Typ /= Universal_Fixed
4579          then
4580             --  Not a mixed-mode operation, resolve with context
4581
4582             Resolve (N, B_Typ);
4583
4584          elsif Etype (N) = Any_Fixed then
4585
4586             --  N may itself be a mixed-mode operation, so use context type
4587
4588             Resolve (N, B_Typ);
4589
4590          elsif Is_Fixed_Point_Type (T)
4591            and then B_Typ = Universal_Fixed
4592            and then Is_Overloaded (N)
4593          then
4594             --  Must be (fixed * fixed) operation, operand must have one
4595             --  compatible interpretation.
4596
4597             Resolve (N, Any_Fixed);
4598
4599          elsif Is_Fixed_Point_Type (B_Typ)
4600            and then (T = Universal_Real
4601                       or else Is_Fixed_Point_Type (T))
4602            and then Is_Overloaded (N)
4603          then
4604             --  C * F(X) in a fixed context, where C is a real literal or a
4605             --  fixed-point expression. F must have either a fixed type
4606             --  interpretation or an integer interpretation, but not both.
4607
4608             Get_First_Interp (N, Index, It);
4609             while Present (It.Typ) loop
4610                if Base_Type (It.Typ) = Base_Type (Standard_Integer) then
4611                   if Analyzed (N) then
4612                      Error_Msg_N ("ambiguous operand in fixed operation", N);
4613                   else
4614                      Resolve (N, Standard_Integer);
4615                   end if;
4616
4617                elsif Is_Fixed_Point_Type (It.Typ) then
4618                   if Analyzed (N) then
4619                      Error_Msg_N ("ambiguous operand in fixed operation", N);
4620                   else
4621                      Resolve (N, It.Typ);
4622                   end if;
4623                end if;
4624
4625                Get_Next_Interp (Index, It);
4626             end loop;
4627
4628             --  Reanalyze the literal with the fixed type of the context. If
4629             --  context is Universal_Fixed, we are within a conversion, leave
4630             --  the literal as a universal real because there is no usable
4631             --  fixed type, and the target of the conversion plays no role in
4632             --  the resolution.
4633
4634             declare
4635                Op2 : Node_Id;
4636                T2  : Entity_Id;
4637
4638             begin
4639                if N = L then
4640                   Op2 := R;
4641                else
4642                   Op2 := L;
4643                end if;
4644
4645                if B_Typ = Universal_Fixed
4646                   and then Nkind (Op2) = N_Real_Literal
4647                then
4648                   T2 := Universal_Real;
4649                else
4650                   T2 := B_Typ;
4651                end if;
4652
4653                Set_Analyzed (Op2, False);
4654                Resolve (Op2, T2);
4655             end;
4656
4657          else
4658             Resolve (N);
4659          end if;
4660       end Set_Mixed_Mode_Operand;
4661
4662       ----------------------
4663       -- Set_Operand_Type --
4664       ----------------------
4665
4666       procedure Set_Operand_Type (N : Node_Id) is
4667       begin
4668          if Etype (N) = Universal_Integer
4669            or else Etype (N) = Universal_Real
4670          then
4671             Set_Etype (N, T);
4672          end if;
4673       end Set_Operand_Type;
4674
4675    --  Start of processing for Resolve_Arithmetic_Op
4676
4677    begin
4678       if Comes_From_Source (N)
4679         and then Ekind (Entity (N)) = E_Function
4680         and then Is_Imported (Entity (N))
4681         and then Is_Intrinsic_Subprogram (Entity (N))
4682       then
4683          Resolve_Intrinsic_Operator (N, Typ);
4684          return;
4685
4686       --  Special-case for mixed-mode universal expressions or fixed point type
4687       --  operation: each argument is resolved separately. The same treatment
4688       --  is required if one of the operands of a fixed point operation is
4689       --  universal real, since in this case we don't do a conversion to a
4690       --  specific fixed-point type (instead the expander handles the case).
4691
4692       --  Set the type of the node to its universal interpretation because
4693       --  legality checks on an exponentiation operand need the context.
4694
4695       elsif (B_Typ = Universal_Integer or else B_Typ = Universal_Real)
4696         and then Present (Universal_Interpretation (L))
4697         and then Present (Universal_Interpretation (R))
4698       then
4699          Set_Etype (N, B_Typ);
4700          Resolve (L, Universal_Interpretation (L));
4701          Resolve (R, Universal_Interpretation (R));
4702
4703       elsif (B_Typ = Universal_Real
4704               or else Etype (N) = Universal_Fixed
4705               or else (Etype (N) = Any_Fixed
4706                         and then Is_Fixed_Point_Type (B_Typ))
4707               or else (Is_Fixed_Point_Type (B_Typ)
4708                         and then (Is_Integer_Or_Universal (L)
4709                                    or else
4710                                   Is_Integer_Or_Universal (R))))
4711         and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
4712       then
4713          if TL = Universal_Integer or else TR = Universal_Integer then
4714             Check_For_Visible_Operator (N, B_Typ);
4715          end if;
4716
4717          --  If context is a fixed type and one operand is integer, the other
4718          --  is resolved with the type of the context.
4719
4720          if Is_Fixed_Point_Type (B_Typ)
4721            and then (Base_Type (TL) = Base_Type (Standard_Integer)
4722                       or else TL = Universal_Integer)
4723          then
4724             Resolve (R, B_Typ);
4725             Resolve (L, TL);
4726
4727          elsif Is_Fixed_Point_Type (B_Typ)
4728            and then (Base_Type (TR) = Base_Type (Standard_Integer)
4729                       or else TR = Universal_Integer)
4730          then
4731             Resolve (L, B_Typ);
4732             Resolve (R, TR);
4733
4734          else
4735             Set_Mixed_Mode_Operand (L, TR);
4736             Set_Mixed_Mode_Operand (R, TL);
4737          end if;
4738
4739          --  Check the rule in RM05-4.5.5(19.1/2) disallowing universal_fixed
4740          --  multiplying operators from being used when the expected type is
4741          --  also universal_fixed. Note that B_Typ will be Universal_Fixed in
4742          --  some cases where the expected type is actually Any_Real;
4743          --  Expected_Type_Is_Any_Real takes care of that case.
4744
4745          if Etype (N) = Universal_Fixed
4746            or else Etype (N) = Any_Fixed
4747          then
4748             if B_Typ = Universal_Fixed
4749               and then not Expected_Type_Is_Any_Real (N)
4750               and then not Nkind_In (Parent (N), N_Type_Conversion,
4751                                                  N_Unchecked_Type_Conversion)
4752             then
4753                Error_Msg_N ("type cannot be determined from context!", N);
4754                Error_Msg_N ("\explicit conversion to result type required", N);
4755
4756                Set_Etype (L, Any_Type);
4757                Set_Etype (R, Any_Type);
4758
4759             else
4760                if Ada_Version = Ada_83
4761                  and then Etype (N) = Universal_Fixed
4762                  and then not
4763                    Nkind_In (Parent (N), N_Type_Conversion,
4764                                          N_Unchecked_Type_Conversion)
4765                then
4766                   Error_Msg_N
4767                     ("(Ada 83) fixed-point operation "
4768                      & "needs explicit conversion", N);
4769                end if;
4770
4771                --  The expected type is "any real type" in contexts like
4772
4773                --    type T is delta <universal_fixed-expression> ...
4774
4775                --  in which case we need to set the type to Universal_Real
4776                --  so that static expression evaluation will work properly.
4777
4778                if Expected_Type_Is_Any_Real (N) then
4779                   Set_Etype (N, Universal_Real);
4780                else
4781                   Set_Etype (N, B_Typ);
4782                end if;
4783             end if;
4784
4785          elsif Is_Fixed_Point_Type (B_Typ)
4786            and then (Is_Integer_Or_Universal (L)
4787                        or else Nkind (L) = N_Real_Literal
4788                        or else Nkind (R) = N_Real_Literal
4789                        or else Is_Integer_Or_Universal (R))
4790          then
4791             Set_Etype (N, B_Typ);
4792
4793          elsif Etype (N) = Any_Fixed then
4794
4795             --  If no previous errors, this is only possible if one operand is
4796             --  overloaded and the context is universal. Resolve as such.
4797
4798             Set_Etype (N, B_Typ);
4799          end if;
4800
4801       else
4802          if (TL = Universal_Integer or else TL = Universal_Real)
4803               and then
4804             (TR = Universal_Integer or else TR = Universal_Real)
4805          then
4806             Check_For_Visible_Operator (N, B_Typ);
4807          end if;
4808
4809          --  If the context is Universal_Fixed and the operands are also
4810          --  universal fixed, this is an error, unless there is only one
4811          --  applicable fixed_point type (usually Duration).
4812
4813          if B_Typ = Universal_Fixed and then Etype (L) = Universal_Fixed then
4814             T := Unique_Fixed_Point_Type (N);
4815
4816             if T  = Any_Type then
4817                Set_Etype (N, T);
4818                return;
4819             else
4820                Resolve (L, T);
4821                Resolve (R, T);
4822             end if;
4823
4824          else
4825             Resolve (L, B_Typ);
4826             Resolve (R, B_Typ);
4827          end if;
4828
4829          --  If one of the arguments was resolved to a non-universal type.
4830          --  label the result of the operation itself with the same type.
4831          --  Do the same for the universal argument, if any.
4832
4833          T := Intersect_Types (L, R);
4834          Set_Etype (N, Base_Type (T));
4835          Set_Operand_Type (L);
4836          Set_Operand_Type (R);
4837       end if;
4838
4839       Generate_Operator_Reference (N, Typ);
4840       Eval_Arithmetic_Op (N);
4841
4842       --  In SPARK, a multiplication or division with operands of fixed point
4843       --  types shall be qualified or explicitly converted to identify the
4844       --  result type.
4845
4846       if (Is_Fixed_Point_Type (Etype (L))
4847            or else Is_Fixed_Point_Type (Etype (R)))
4848         and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
4849         and then
4850           not Nkind_In (Parent (N), N_Qualified_Expression, N_Type_Conversion)
4851       then
4852          Check_SPARK_Restriction
4853            ("operation should be qualified or explicitly converted", N);
4854       end if;
4855
4856       --  Set overflow and division checking bit. Much cleverer code needed
4857       --  here eventually and perhaps the Resolve routines should be separated
4858       --  for the various arithmetic operations, since they will need
4859       --  different processing. ???
4860
4861       if Nkind (N) in N_Op then
4862          if not Overflow_Checks_Suppressed (Etype (N)) then
4863             Enable_Overflow_Check (N);
4864          end if;
4865
4866          --  Give warning if explicit division by zero
4867
4868          if Nkind_In (N, N_Op_Divide, N_Op_Rem, N_Op_Mod)
4869            and then not Division_Checks_Suppressed (Etype (N))
4870          then
4871             Rop := Right_Opnd (N);
4872
4873             if Compile_Time_Known_Value (Rop)
4874               and then ((Is_Integer_Type (Etype (Rop))
4875                           and then Expr_Value (Rop) = Uint_0)
4876                          or else
4877                            (Is_Real_Type (Etype (Rop))
4878                              and then Expr_Value_R (Rop) = Ureal_0))
4879             then
4880                --  Specialize the warning message according to the operation.
4881                --  The following warnings are for the case
4882
4883                case Nkind (N) is
4884                   when N_Op_Divide =>
4885
4886                      --  For division, we have two cases, for float division
4887                      --  of an unconstrained float type, on a machine where
4888                      --  Machine_Overflows is false, we don't get an exception
4889                      --  at run-time, but rather an infinity or Nan. The Nan
4890                      --  case is pretty obscure, so just warn about infinities.
4891
4892                      if Is_Floating_Point_Type (Typ)
4893                        and then not Is_Constrained (Typ)
4894                        and then not Machine_Overflows_On_Target
4895                      then
4896                         Error_Msg_N
4897                           ("float division by zero, " &
4898                            "may generate '+'/'- infinity?", Right_Opnd (N));
4899
4900                         --  For all other cases, we get a Constraint_Error
4901
4902                      else
4903                         Apply_Compile_Time_Constraint_Error
4904                           (N, "division by zero?", CE_Divide_By_Zero,
4905                            Loc => Sloc (Right_Opnd (N)));
4906                      end if;
4907
4908                   when N_Op_Rem =>
4909                      Apply_Compile_Time_Constraint_Error
4910                        (N, "rem with zero divisor?", CE_Divide_By_Zero,
4911                         Loc => Sloc (Right_Opnd (N)));
4912
4913                   when N_Op_Mod =>
4914                      Apply_Compile_Time_Constraint_Error
4915                        (N, "mod with zero divisor?", CE_Divide_By_Zero,
4916                         Loc => Sloc (Right_Opnd (N)));
4917
4918                   --  Division by zero can only happen with division, rem,
4919                   --  and mod operations.
4920
4921                   when others =>
4922                      raise Program_Error;
4923                end case;
4924
4925             --  Otherwise just set the flag to check at run time
4926
4927             else
4928                Activate_Division_Check (N);
4929             end if;
4930          end if;
4931
4932          --  If Restriction No_Implicit_Conditionals is active, then it is
4933          --  violated if either operand can be negative for mod, or for rem
4934          --  if both operands can be negative.
4935
4936          if Restriction_Check_Required (No_Implicit_Conditionals)
4937            and then Nkind_In (N, N_Op_Rem, N_Op_Mod)
4938          then
4939             declare
4940                Lo : Uint;
4941                Hi : Uint;
4942                OK : Boolean;
4943
4944                LNeg : Boolean;
4945                RNeg : Boolean;
4946                --  Set if corresponding operand might be negative
4947
4948             begin
4949                Determine_Range
4950                  (Left_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
4951                LNeg := (not OK) or else Lo < 0;
4952
4953                Determine_Range
4954                  (Right_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
4955                RNeg := (not OK) or else Lo < 0;
4956
4957                --  Check if we will be generating conditionals. There are two
4958                --  cases where that can happen, first for REM, the only case
4959                --  is largest negative integer mod -1, where the division can
4960                --  overflow, but we still have to give the right result. The
4961                --  front end generates a test for this annoying case. Here we
4962                --  just test if both operands can be negative (that's what the
4963                --  expander does, so we match its logic here).
4964
4965                --  The second case is mod where either operand can be negative.
4966                --  In this case, the back end has to generate additional tests.
4967
4968                if (Nkind (N) = N_Op_Rem and then (LNeg and RNeg))
4969                     or else
4970                   (Nkind (N) = N_Op_Mod and then (LNeg or RNeg))
4971                then
4972                   Check_Restriction (No_Implicit_Conditionals, N);
4973                end if;
4974             end;
4975          end if;
4976       end if;
4977
4978       Check_Unset_Reference (L);
4979       Check_Unset_Reference (R);
4980    end Resolve_Arithmetic_Op;
4981
4982    ------------------
4983    -- Resolve_Call --
4984    ------------------
4985
4986    procedure Resolve_Call (N : Node_Id; Typ : Entity_Id) is
4987       Loc     : constant Source_Ptr := Sloc (N);
4988       Subp    : constant Node_Id    := Name (N);
4989       Nam     : Entity_Id;
4990       I       : Interp_Index;
4991       It      : Interp;
4992       Norm_OK : Boolean;
4993       Scop    : Entity_Id;
4994       Rtype   : Entity_Id;
4995
4996       function Same_Or_Aliased_Subprograms
4997         (S : Entity_Id;
4998          E : Entity_Id) return Boolean;
4999       --  Returns True if the subprogram entity S is the same as E or else
5000       --  S is an alias of E.
5001
5002       ---------------------------------
5003       -- Same_Or_Aliased_Subprograms --
5004       ---------------------------------
5005
5006       function Same_Or_Aliased_Subprograms
5007         (S : Entity_Id;
5008          E : Entity_Id) return Boolean
5009       is
5010          Subp_Alias : constant Entity_Id := Alias (S);
5011       begin
5012          return S = E
5013            or else (Present (Subp_Alias) and then Subp_Alias = E);
5014       end Same_Or_Aliased_Subprograms;
5015
5016    --  Start of processing for Resolve_Call
5017
5018    begin
5019       --  The context imposes a unique interpretation with type Typ on a
5020       --  procedure or function call. Find the entity of the subprogram that
5021       --  yields the expected type, and propagate the corresponding formal
5022       --  constraints on the actuals. The caller has established that an
5023       --  interpretation exists, and emitted an error if not unique.
5024
5025       --  First deal with the case of a call to an access-to-subprogram,
5026       --  dereference made explicit in Analyze_Call.
5027
5028       if Ekind (Etype (Subp)) = E_Subprogram_Type then
5029          if not Is_Overloaded (Subp) then
5030             Nam := Etype (Subp);
5031
5032          else
5033             --  Find the interpretation whose type (a subprogram type) has a
5034             --  return type that is compatible with the context. Analysis of
5035             --  the node has established that one exists.
5036
5037             Nam := Empty;
5038
5039             Get_First_Interp (Subp,  I, It);
5040             while Present (It.Typ) loop
5041                if Covers (Typ, Etype (It.Typ)) then
5042                   Nam := It.Typ;
5043                   exit;
5044                end if;
5045
5046                Get_Next_Interp (I, It);
5047             end loop;
5048
5049             if No (Nam) then
5050                raise Program_Error;
5051             end if;
5052          end if;
5053
5054          --  If the prefix is not an entity, then resolve it
5055
5056          if not Is_Entity_Name (Subp) then
5057             Resolve (Subp, Nam);
5058          end if;
5059
5060          --  For an indirect call, we always invalidate checks, since we do not
5061          --  know whether the subprogram is local or global. Yes we could do
5062          --  better here, e.g. by knowing that there are no local subprograms,
5063          --  but it does not seem worth the effort. Similarly, we kill all
5064          --  knowledge of current constant values.
5065
5066          Kill_Current_Values;
5067
5068       --  If this is a procedure call which is really an entry call, do
5069       --  the conversion of the procedure call to an entry call. Protected
5070       --  operations use the same circuitry because the name in the call
5071       --  can be an arbitrary expression with special resolution rules.
5072
5073       elsif Nkind_In (Subp, N_Selected_Component, N_Indexed_Component)
5074         or else (Is_Entity_Name (Subp)
5075                   and then Ekind (Entity (Subp)) = E_Entry)
5076       then
5077          Resolve_Entry_Call (N, Typ);
5078          Check_Elab_Call (N);
5079
5080          --  Kill checks and constant values, as above for indirect case
5081          --  Who knows what happens when another task is activated?
5082
5083          Kill_Current_Values;
5084          return;
5085
5086       --  Normal subprogram call with name established in Resolve
5087
5088       elsif not (Is_Type (Entity (Subp))) then
5089          Nam := Entity (Subp);
5090          Set_Entity_With_Style_Check (Subp, Nam);
5091
5092       --  Otherwise we must have the case of an overloaded call
5093
5094       else
5095          pragma Assert (Is_Overloaded (Subp));
5096
5097          --  Initialize Nam to prevent warning (we know it will be assigned
5098          --  in the loop below, but the compiler does not know that).
5099
5100          Nam := Empty;
5101
5102          Get_First_Interp (Subp,  I, It);
5103          while Present (It.Typ) loop
5104             if Covers (Typ, It.Typ) then
5105                Nam := It.Nam;
5106                Set_Entity_With_Style_Check (Subp, Nam);
5107                exit;
5108             end if;
5109
5110             Get_Next_Interp (I, It);
5111          end loop;
5112       end if;
5113
5114       if Is_Access_Subprogram_Type (Base_Type (Etype (Nam)))
5115          and then not Is_Access_Subprogram_Type (Base_Type (Typ))
5116          and then Nkind (Subp) /= N_Explicit_Dereference
5117          and then Present (Parameter_Associations (N))
5118       then
5119          --  The prefix is a parameterless function call that returns an access
5120          --  to subprogram. If parameters are present in the current call, add
5121          --  add an explicit dereference. We use the base type here because
5122          --  within an instance these may be subtypes.
5123
5124          --  The dereference is added either in Analyze_Call or here. Should
5125          --  be consolidated ???
5126
5127          Set_Is_Overloaded (Subp, False);
5128          Set_Etype (Subp, Etype (Nam));
5129          Insert_Explicit_Dereference (Subp);
5130          Nam := Designated_Type (Etype (Nam));
5131          Resolve (Subp, Nam);
5132       end if;
5133
5134       --  Check that a call to Current_Task does not occur in an entry body
5135
5136       if Is_RTE (Nam, RE_Current_Task) then
5137          declare
5138             P : Node_Id;
5139
5140          begin
5141             P := N;
5142             loop
5143                P := Parent (P);
5144
5145                --  Exclude calls that occur within the default of a formal
5146                --  parameter of the entry, since those are evaluated outside
5147                --  of the body.
5148
5149                exit when No (P) or else Nkind (P) = N_Parameter_Specification;
5150
5151                if Nkind (P) = N_Entry_Body
5152                  or else (Nkind (P) = N_Subprogram_Body
5153                            and then Is_Entry_Barrier_Function (P))
5154                then
5155                   Rtype := Etype (N);
5156                   Error_Msg_NE
5157                     ("?& should not be used in entry body (RM C.7(17))",
5158                      N, Nam);
5159                   Error_Msg_NE
5160                     ("\Program_Error will be raised at run time?", N, Nam);
5161                   Rewrite (N,
5162                     Make_Raise_Program_Error (Loc,
5163                       Reason => PE_Current_Task_In_Entry_Body));
5164                   Set_Etype (N, Rtype);
5165                   return;
5166                end if;
5167             end loop;
5168          end;
5169       end if;
5170
5171       --  Check that a procedure call does not occur in the context of the
5172       --  entry call statement of a conditional or timed entry call. Note that
5173       --  the case of a call to a subprogram renaming of an entry will also be
5174       --  rejected. The test for N not being an N_Entry_Call_Statement is
5175       --  defensive, covering the possibility that the processing of entry
5176       --  calls might reach this point due to later modifications of the code
5177       --  above.
5178
5179       if Nkind (Parent (N)) = N_Entry_Call_Alternative
5180         and then Nkind (N) /= N_Entry_Call_Statement
5181         and then Entry_Call_Statement (Parent (N)) = N
5182       then
5183          if Ada_Version < Ada_2005 then
5184             Error_Msg_N ("entry call required in select statement", N);
5185
5186          --  Ada 2005 (AI-345): If a procedure_call_statement is used
5187          --  for a procedure_or_entry_call, the procedure_name or
5188          --  procedure_prefix of the procedure_call_statement shall denote
5189          --  an entry renamed by a procedure, or (a view of) a primitive
5190          --  subprogram of a limited interface whose first parameter is
5191          --  a controlling parameter.
5192
5193          elsif Nkind (N) = N_Procedure_Call_Statement
5194            and then not Is_Renamed_Entry (Nam)
5195            and then not Is_Controlling_Limited_Procedure (Nam)
5196          then
5197             Error_Msg_N
5198              ("entry call or dispatching primitive of interface required", N);
5199          end if;
5200       end if;
5201
5202       --  Check that this is not a call to a protected procedure or entry from
5203       --  within a protected function.
5204
5205       if Ekind (Current_Scope) = E_Function
5206         and then Ekind (Scope (Current_Scope)) = E_Protected_Type
5207         and then Ekind (Nam) /= E_Function
5208         and then Scope (Nam) = Scope (Current_Scope)
5209       then
5210          Error_Msg_N ("within protected function, protected " &
5211            "object is constant", N);
5212          Error_Msg_N ("\cannot call operation that may modify it", N);
5213       end if;
5214
5215       --  Freeze the subprogram name if not in a spec-expression. Note that we
5216       --  freeze procedure calls as well as function calls. Procedure calls are
5217       --  not frozen according to the rules (RM 13.14(14)) because it is
5218       --  impossible to have a procedure call to a non-frozen procedure in pure
5219       --  Ada, but in the code that we generate in the expander, this rule
5220       --  needs extending because we can generate procedure calls that need
5221       --  freezing.
5222
5223       if Is_Entity_Name (Subp) and then not In_Spec_Expression then
5224          Freeze_Expression (Subp);
5225       end if;
5226
5227       --  For a predefined operator, the type of the result is the type imposed
5228       --  by context, except for a predefined operation on universal fixed.
5229       --  Otherwise The type of the call is the type returned by the subprogram
5230       --  being called.
5231
5232       if Is_Predefined_Op (Nam) then
5233          if Etype (N) /= Universal_Fixed then
5234             Set_Etype (N, Typ);
5235          end if;
5236
5237       --  If the subprogram returns an array type, and the context requires the
5238       --  component type of that array type, the node is really an indexing of
5239       --  the parameterless call. Resolve as such. A pathological case occurs
5240       --  when the type of the component is an access to the array type. In
5241       --  this case the call is truly ambiguous.
5242
5243       elsif (Needs_No_Actuals (Nam) or else Needs_One_Actual (Nam))
5244         and then
5245           ((Is_Array_Type (Etype (Nam))
5246              and then Covers (Typ, Component_Type (Etype (Nam))))
5247              or else (Is_Access_Type (Etype (Nam))
5248                        and then Is_Array_Type (Designated_Type (Etype (Nam)))
5249                        and then
5250                          Covers
5251                           (Typ,
5252                            Component_Type (Designated_Type (Etype (Nam))))))
5253       then
5254          declare
5255             Index_Node : Node_Id;
5256             New_Subp   : Node_Id;
5257             Ret_Type   : constant Entity_Id := Etype (Nam);
5258
5259          begin
5260             if Is_Access_Type (Ret_Type)
5261               and then Ret_Type = Component_Type (Designated_Type (Ret_Type))
5262             then
5263                Error_Msg_N
5264                  ("cannot disambiguate function call and indexing", N);
5265             else
5266                New_Subp := Relocate_Node (Subp);
5267                Set_Entity (Subp, Nam);
5268
5269                if (Is_Array_Type (Ret_Type)
5270                     and then Component_Type (Ret_Type) /= Any_Type)
5271                  or else
5272                   (Is_Access_Type (Ret_Type)
5273                     and then
5274                       Component_Type (Designated_Type (Ret_Type)) /= Any_Type)
5275                then
5276                   if Needs_No_Actuals (Nam) then
5277
5278                      --  Indexed call to a parameterless function
5279
5280                      Index_Node :=
5281                        Make_Indexed_Component (Loc,
5282                          Prefix =>
5283                            Make_Function_Call (Loc,
5284                              Name => New_Subp),
5285                          Expressions => Parameter_Associations (N));
5286                   else
5287                      --  An Ada 2005 prefixed call to a primitive operation
5288                      --  whose first parameter is the prefix. This prefix was
5289                      --  prepended to the parameter list, which is actually a
5290                      --  list of indexes. Remove the prefix in order to build
5291                      --  the proper indexed component.
5292
5293                      Index_Node :=
5294                         Make_Indexed_Component (Loc,
5295                           Prefix =>
5296                             Make_Function_Call (Loc,
5297                                Name => New_Subp,
5298                                Parameter_Associations =>
5299                                  New_List
5300                                    (Remove_Head (Parameter_Associations (N)))),
5301                            Expressions => Parameter_Associations (N));
5302                   end if;
5303
5304                   --  Preserve the parenthesis count of the node
5305
5306                   Set_Paren_Count (Index_Node, Paren_Count (N));
5307
5308                   --  Since we are correcting a node classification error made
5309                   --  by the parser, we call Replace rather than Rewrite.
5310
5311                   Replace (N, Index_Node);
5312
5313                   Set_Etype (Prefix (N), Ret_Type);
5314                   Set_Etype (N, Typ);
5315                   Resolve_Indexed_Component (N, Typ);
5316                   Check_Elab_Call (Prefix (N));
5317                end if;
5318             end if;
5319
5320             return;
5321          end;
5322
5323       else
5324          Set_Etype (N, Etype (Nam));
5325       end if;
5326
5327       --  In the case where the call is to an overloaded subprogram, Analyze
5328       --  calls Normalize_Actuals once per overloaded subprogram. Therefore in
5329       --  such a case Normalize_Actuals needs to be called once more to order
5330       --  the actuals correctly. Otherwise the call will have the ordering
5331       --  given by the last overloaded subprogram whether this is the correct
5332       --  one being called or not.
5333
5334       if Is_Overloaded (Subp) then
5335          Normalize_Actuals (N, Nam, False, Norm_OK);
5336          pragma Assert (Norm_OK);
5337       end if;
5338
5339       --  In any case, call is fully resolved now. Reset Overload flag, to
5340       --  prevent subsequent overload resolution if node is analyzed again
5341
5342       Set_Is_Overloaded (Subp, False);
5343       Set_Is_Overloaded (N, False);
5344
5345       --  If we are calling the current subprogram from immediately within its
5346       --  body, then that is the case where we can sometimes detect cases of
5347       --  infinite recursion statically. Do not try this in case restriction
5348       --  No_Recursion is in effect anyway, and do it only for source calls.
5349
5350       if Comes_From_Source (N) then
5351          Scop := Current_Scope;
5352
5353          --  Issue warning for possible infinite recursion in the absence
5354          --  of the No_Recursion restriction.
5355
5356          if Same_Or_Aliased_Subprograms (Nam, Scop)
5357            and then not Restriction_Active (No_Recursion)
5358            and then Check_Infinite_Recursion (N)
5359          then
5360             --  Here we detected and flagged an infinite recursion, so we do
5361             --  not need to test the case below for further warnings. Also we
5362             --  are all done if we now have a raise SE node.
5363
5364             if Nkind (N) = N_Raise_Storage_Error then
5365                return;
5366             end if;
5367
5368          --  If call is to immediately containing subprogram, then check for
5369          --  the case of a possible run-time detectable infinite recursion.
5370
5371          else
5372             Scope_Loop : while Scop /= Standard_Standard loop
5373                if Same_Or_Aliased_Subprograms (Nam, Scop) then
5374
5375                   --  Although in general case, recursion is not statically
5376                   --  checkable, the case of calling an immediately containing
5377                   --  subprogram is easy to catch.
5378
5379                   Check_Restriction (No_Recursion, N);
5380
5381                   --  If the recursive call is to a parameterless subprogram,
5382                   --  then even if we can't statically detect infinite
5383                   --  recursion, this is pretty suspicious, and we output a
5384                   --  warning. Furthermore, we will try later to detect some
5385                   --  cases here at run time by expanding checking code (see
5386                   --  Detect_Infinite_Recursion in package Exp_Ch6).
5387
5388                   --  If the recursive call is within a handler, do not emit a
5389                   --  warning, because this is a common idiom: loop until input
5390                   --  is correct, catch illegal input in handler and restart.
5391
5392                   if No (First_Formal (Nam))
5393                     and then Etype (Nam) = Standard_Void_Type
5394                     and then not Error_Posted (N)
5395                     and then Nkind (Parent (N)) /= N_Exception_Handler
5396                   then
5397                      --  For the case of a procedure call. We give the message
5398                      --  only if the call is the first statement in a sequence
5399                      --  of statements, or if all previous statements are
5400                      --  simple assignments. This is simply a heuristic to
5401                      --  decrease false positives, without losing too many good
5402                      --  warnings. The idea is that these previous statements
5403                      --  may affect global variables the procedure depends on.
5404                      --  We also exclude raise statements, that may arise from
5405                      --  constraint checks and are probably unrelated to the
5406                      --  intended control flow.
5407
5408                      if Nkind (N) = N_Procedure_Call_Statement
5409                        and then Is_List_Member (N)
5410                      then
5411                         declare
5412                            P : Node_Id;
5413                         begin
5414                            P := Prev (N);
5415                            while Present (P) loop
5416                               if not Nkind_In (P,
5417                                 N_Assignment_Statement,
5418                                 N_Raise_Constraint_Error)
5419                               then
5420                                  exit Scope_Loop;
5421                               end if;
5422
5423                               Prev (P);
5424                            end loop;
5425                         end;
5426                      end if;
5427
5428                      --  Do not give warning if we are in a conditional context
5429
5430                      declare
5431                         K : constant Node_Kind := Nkind (Parent (N));
5432                      begin
5433                         if (K = N_Loop_Statement
5434                              and then Present (Iteration_Scheme (Parent (N))))
5435                           or else K = N_If_Statement
5436                           or else K = N_Elsif_Part
5437                           or else K = N_Case_Statement_Alternative
5438                         then
5439                            exit Scope_Loop;
5440                         end if;
5441                      end;
5442
5443                      --  Here warning is to be issued
5444
5445                      Set_Has_Recursive_Call (Nam);
5446                      Error_Msg_N
5447                        ("?possible infinite recursion!", N);
5448                      Error_Msg_N
5449                        ("\?Storage_Error may be raised at run time!", N);
5450                   end if;
5451
5452                   exit Scope_Loop;
5453                end if;
5454
5455                Scop := Scope (Scop);
5456             end loop Scope_Loop;
5457          end if;
5458       end if;
5459
5460       --  Check obsolescent reference to Ada.Characters.Handling subprogram
5461
5462       Check_Obsolescent_2005_Entity (Nam, Subp);
5463
5464       --  If subprogram name is a predefined operator, it was given in
5465       --  functional notation. Replace call node with operator node, so
5466       --  that actuals can be resolved appropriately.
5467
5468       if Is_Predefined_Op (Nam) or else Ekind (Nam) = E_Operator then
5469          Make_Call_Into_Operator (N, Typ, Entity (Name (N)));
5470          return;
5471
5472       elsif Present (Alias (Nam))
5473         and then Is_Predefined_Op (Alias (Nam))
5474       then
5475          Resolve_Actuals (N, Nam);
5476          Make_Call_Into_Operator (N, Typ, Alias (Nam));
5477          return;
5478       end if;
5479
5480       --  Create a transient scope if the resulting type requires it
5481
5482       --  There are several notable exceptions:
5483
5484       --  a) In init procs, the transient scope overhead is not needed, and is
5485       --  even incorrect when the call is a nested initialization call for a
5486       --  component whose expansion may generate adjust calls. However, if the
5487       --  call is some other procedure call within an initialization procedure
5488       --  (for example a call to Create_Task in the init_proc of the task
5489       --  run-time record) a transient scope must be created around this call.
5490
5491       --  b) Enumeration literal pseudo-calls need no transient scope
5492
5493       --  c) Intrinsic subprograms (Unchecked_Conversion and source info
5494       --  functions) do not use the secondary stack even though the return
5495       --  type may be unconstrained.
5496
5497       --  d) Calls to a build-in-place function, since such functions may
5498       --  allocate their result directly in a target object, and cases where
5499       --  the result does get allocated in the secondary stack are checked for
5500       --  within the specialized Exp_Ch6 procedures for expanding those
5501       --  build-in-place calls.
5502
5503       --  e) If the subprogram is marked Inline_Always, then even if it returns
5504       --  an unconstrained type the call does not require use of the secondary
5505       --  stack. However, inlining will only take place if the body to inline
5506       --  is already present. It may not be available if e.g. the subprogram is
5507       --  declared in a child instance.
5508
5509       --  If this is an initialization call for a type whose construction
5510       --  uses the secondary stack, and it is not a nested call to initialize
5511       --  a component, we do need to create a transient scope for it. We
5512       --  check for this by traversing the type in Check_Initialization_Call.
5513
5514       if Is_Inlined (Nam)
5515         and then Has_Pragma_Inline_Always (Nam)
5516         and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
5517         and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
5518       then
5519          null;
5520
5521       elsif Ekind (Nam) = E_Enumeration_Literal
5522         or else Is_Build_In_Place_Function (Nam)
5523         or else Is_Intrinsic_Subprogram (Nam)
5524       then
5525          null;
5526
5527       elsif Full_Expander_Active
5528         and then Is_Type (Etype (Nam))
5529         and then Requires_Transient_Scope (Etype (Nam))
5530         and then
5531           (not Within_Init_Proc
5532             or else
5533               (not Is_Init_Proc (Nam) and then Ekind (Nam) /= E_Function))
5534       then
5535          Establish_Transient_Scope (N, Sec_Stack => True);
5536
5537          --  If the call appears within the bounds of a loop, it will
5538          --  be rewritten and reanalyzed, nothing left to do here.
5539
5540          if Nkind (N) /= N_Function_Call then
5541             return;
5542          end if;
5543
5544       elsif Is_Init_Proc (Nam)
5545         and then not Within_Init_Proc
5546       then
5547          Check_Initialization_Call (N, Nam);
5548       end if;
5549
5550       --  A protected function cannot be called within the definition of the
5551       --  enclosing protected type.
5552
5553       if Is_Protected_Type (Scope (Nam))
5554         and then In_Open_Scopes (Scope (Nam))
5555         and then not Has_Completion (Scope (Nam))
5556       then
5557          Error_Msg_NE
5558            ("& cannot be called before end of protected definition", N, Nam);
5559       end if;
5560
5561       --  Propagate interpretation to actuals, and add default expressions
5562       --  where needed.
5563
5564       if Present (First_Formal (Nam)) then
5565          Resolve_Actuals (N, Nam);
5566
5567       --  Overloaded literals are rewritten as function calls, for purpose of
5568       --  resolution. After resolution, we can replace the call with the
5569       --  literal itself.
5570
5571       elsif Ekind (Nam) = E_Enumeration_Literal then
5572          Copy_Node (Subp, N);
5573          Resolve_Entity_Name (N, Typ);
5574
5575          --  Avoid validation, since it is a static function call
5576
5577          Generate_Reference (Nam, Subp);
5578          return;
5579       end if;
5580
5581       --  If the subprogram is not global, then kill all saved values and
5582       --  checks. This is a bit conservative, since in many cases we could do
5583       --  better, but it is not worth the effort. Similarly, we kill constant
5584       --  values. However we do not need to do this for internal entities
5585       --  (unless they are inherited user-defined subprograms), since they
5586       --  are not in the business of molesting local values.
5587
5588       --  If the flag Suppress_Value_Tracking_On_Calls is set, then we also
5589       --  kill all checks and values for calls to global subprograms. This
5590       --  takes care of the case where an access to a local subprogram is
5591       --  taken, and could be passed directly or indirectly and then called
5592       --  from almost any context.
5593
5594       --  Note: we do not do this step till after resolving the actuals. That
5595       --  way we still take advantage of the current value information while
5596       --  scanning the actuals.
5597
5598       --  We suppress killing values if we are processing the nodes associated
5599       --  with N_Freeze_Entity nodes. Otherwise the declaration of a tagged
5600       --  type kills all the values as part of analyzing the code that
5601       --  initializes the dispatch tables.
5602
5603       if Inside_Freezing_Actions = 0
5604         and then (not Is_Library_Level_Entity (Nam)
5605                    or else Suppress_Value_Tracking_On_Call
5606                              (Nearest_Dynamic_Scope (Current_Scope)))
5607         and then (Comes_From_Source (Nam)
5608                    or else (Present (Alias (Nam))
5609                              and then Comes_From_Source (Alias (Nam))))
5610       then
5611          Kill_Current_Values;
5612       end if;
5613
5614       --  If we are warning about unread OUT parameters, this is the place to
5615       --  set Last_Assignment for OUT and IN OUT parameters. We have to do this
5616       --  after the above call to Kill_Current_Values (since that call clears
5617       --  the Last_Assignment field of all local variables).
5618
5619       if (Warn_On_Modified_Unread or Warn_On_All_Unread_Out_Parameters)
5620         and then Comes_From_Source (N)
5621         and then In_Extended_Main_Source_Unit (N)
5622       then
5623          declare
5624             F : Entity_Id;
5625             A : Node_Id;
5626
5627          begin
5628             F := First_Formal (Nam);
5629             A := First_Actual (N);
5630             while Present (F) and then Present (A) loop
5631                if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
5632                  and then Warn_On_Modified_As_Out_Parameter (F)
5633                  and then Is_Entity_Name (A)
5634                  and then Present (Entity (A))
5635                  and then Comes_From_Source (N)
5636                  and then Safe_To_Capture_Value (N, Entity (A))
5637                then
5638                   Set_Last_Assignment (Entity (A), A);
5639                end if;
5640
5641                Next_Formal (F);
5642                Next_Actual (A);
5643             end loop;
5644          end;
5645       end if;
5646
5647       --  If the subprogram is a primitive operation, check whether or not
5648       --  it is a correct dispatching call.
5649
5650       if Is_Overloadable (Nam)
5651         and then Is_Dispatching_Operation (Nam)
5652       then
5653          Check_Dispatching_Call (N);
5654
5655       elsif Ekind (Nam) /= E_Subprogram_Type
5656         and then Is_Abstract_Subprogram (Nam)
5657         and then not In_Instance
5658       then
5659          Error_Msg_NE ("cannot call abstract subprogram &!", N, Nam);
5660       end if;
5661
5662       --  If this is a dispatching call, generate the appropriate reference,
5663       --  for better source navigation in GPS.
5664
5665       if Is_Overloadable (Nam)
5666         and then Present (Controlling_Argument (N))
5667       then
5668          Generate_Reference (Nam, Subp, 'R');
5669
5670       --  Normal case, not a dispatching call: generate a call reference
5671
5672       else
5673          Generate_Reference (Nam, Subp, 's');
5674       end if;
5675
5676       if Is_Intrinsic_Subprogram (Nam) then
5677          Check_Intrinsic_Call (N);
5678       end if;
5679
5680       --  Check for violation of restriction No_Specific_Termination_Handlers
5681       --  and warn on a potentially blocking call to Abort_Task.
5682
5683       if Restriction_Check_Required (No_Specific_Termination_Handlers)
5684         and then (Is_RTE (Nam, RE_Set_Specific_Handler)
5685                     or else
5686                   Is_RTE (Nam, RE_Specific_Handler))
5687       then
5688          Check_Restriction (No_Specific_Termination_Handlers, N);
5689
5690       elsif Is_RTE (Nam, RE_Abort_Task) then
5691          Check_Potentially_Blocking_Operation (N);
5692       end if;
5693
5694       --  A call to Ada.Real_Time.Timing_Events.Set_Handler to set a relative
5695       --  timing event violates restriction No_Relative_Delay (AI-0211). We
5696       --  need to check the second argument to determine whether it is an
5697       --  absolute or relative timing event.
5698
5699       if Restriction_Check_Required (No_Relative_Delay)
5700         and then Is_RTE (Nam, RE_Set_Handler)
5701         and then Is_RTE (Etype (Next_Actual (First_Actual (N))), RE_Time_Span)
5702       then
5703          Check_Restriction (No_Relative_Delay, N);
5704       end if;
5705
5706       --  Issue an error for a call to an eliminated subprogram. We skip this
5707       --  in a spec expression, e.g. a call in a default parameter value, since
5708       --  we are not really doing a call at this time. That's important because
5709       --  the spec expression may itself belong to an eliminated subprogram.
5710
5711       if not In_Spec_Expression then
5712          Check_For_Eliminated_Subprogram (Subp, Nam);
5713       end if;
5714
5715       --  In formal mode, the primitive operations of a tagged type or type
5716       --  extension do not include functions that return the tagged type.
5717
5718       --  Commented out as the call to Is_Inherited_Operation_For_Type may
5719       --  cause an error because the type entity of the parent node of
5720       --  Entity (Name (N) may not be set. ???
5721       --  So why not just add a guard ???
5722
5723 --      if Nkind (N) = N_Function_Call
5724 --        and then Is_Tagged_Type (Etype (N))
5725 --        and then Is_Entity_Name (Name (N))
5726 --        and then Is_Inherited_Operation_For_Type
5727 --                   (Entity (Name (N)), Etype (N))
5728 --      then
5729 --         Check_SPARK_Restriction ("function not inherited", N);
5730 --      end if;
5731
5732       --  Implement rule in 12.5.1 (23.3/2): In an instance, if the actual is
5733       --  class-wide and the call dispatches on result in a context that does
5734       --  not provide a tag, the call raises Program_Error.
5735
5736       if Nkind (N) = N_Function_Call
5737         and then In_Instance
5738         and then Is_Generic_Actual_Type (Typ)
5739         and then Is_Class_Wide_Type (Typ)
5740         and then Has_Controlling_Result (Nam)
5741         and then Nkind (Parent (N)) = N_Object_Declaration
5742       then
5743          --  Verify that none of the formals are controlling
5744
5745          declare
5746             Call_OK : Boolean := False;
5747             F       : Entity_Id;
5748
5749          begin
5750             F := First_Formal (Nam);
5751             while Present (F) loop
5752                if Is_Controlling_Formal (F) then
5753                   Call_OK := True;
5754                   exit;
5755                end if;
5756
5757                Next_Formal (F);
5758             end loop;
5759
5760             if not Call_OK then
5761                Error_Msg_N ("!? cannot determine tag of result", N);
5762                Error_Msg_N ("!? Program_Error will be raised", N);
5763                Insert_Action (N,
5764                  Make_Raise_Program_Error (Sloc (N),
5765                     Reason => PE_Explicit_Raise));
5766             end if;
5767          end;
5768       end if;
5769
5770       --  All done, evaluate call and deal with elaboration issues
5771
5772       Eval_Call (N);
5773       Check_Elab_Call (N);
5774       Warn_On_Overlapping_Actuals (Nam, N);
5775    end Resolve_Call;
5776
5777    -----------------------------
5778    -- Resolve_Case_Expression --
5779    -----------------------------
5780
5781    procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id) is
5782       Alt : Node_Id;
5783
5784    begin
5785       Alt := First (Alternatives (N));
5786       while Present (Alt) loop
5787          Resolve (Expression (Alt), Typ);
5788          Next (Alt);
5789       end loop;
5790
5791       Set_Etype (N, Typ);
5792       Eval_Case_Expression (N);
5793    end Resolve_Case_Expression;
5794
5795    -------------------------------
5796    -- Resolve_Character_Literal --
5797    -------------------------------
5798
5799    procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id) is
5800       B_Typ : constant Entity_Id := Base_Type (Typ);
5801       C     : Entity_Id;
5802
5803    begin
5804       --  Verify that the character does belong to the type of the context
5805
5806       Set_Etype (N, B_Typ);
5807       Eval_Character_Literal (N);
5808
5809       --  Wide_Wide_Character literals must always be defined, since the set
5810       --  of wide wide character literals is complete, i.e. if a character
5811       --  literal is accepted by the parser, then it is OK for wide wide
5812       --  character (out of range character literals are rejected).
5813
5814       if Root_Type (B_Typ) = Standard_Wide_Wide_Character then
5815          return;
5816
5817       --  Always accept character literal for type Any_Character, which
5818       --  occurs in error situations and in comparisons of literals, both
5819       --  of which should accept all literals.
5820
5821       elsif B_Typ = Any_Character then
5822          return;
5823
5824       --  For Standard.Character or a type derived from it, check that the
5825       --  literal is in range.
5826
5827       elsif Root_Type (B_Typ) = Standard_Character then
5828          if In_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
5829             return;
5830          end if;
5831
5832       --  For Standard.Wide_Character or a type derived from it, check that the
5833       --  literal is in range.
5834
5835       elsif Root_Type (B_Typ) = Standard_Wide_Character then
5836          if In_Wide_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
5837             return;
5838          end if;
5839
5840       --  For Standard.Wide_Wide_Character or a type derived from it, we
5841       --  know the literal is in range, since the parser checked!
5842
5843       elsif Root_Type (B_Typ) = Standard_Wide_Wide_Character then
5844          return;
5845
5846       --  If the entity is already set, this has already been resolved in a
5847       --  generic context, or comes from expansion. Nothing else to do.
5848
5849       elsif Present (Entity (N)) then
5850          return;
5851
5852       --  Otherwise we have a user defined character type, and we can use the
5853       --  standard visibility mechanisms to locate the referenced entity.
5854
5855       else
5856          C := Current_Entity (N);
5857          while Present (C) loop
5858             if Etype (C) = B_Typ then
5859                Set_Entity_With_Style_Check (N, C);
5860                Generate_Reference (C, N);
5861                return;
5862             end if;
5863
5864             C := Homonym (C);
5865          end loop;
5866       end if;
5867
5868       --  If we fall through, then the literal does not match any of the
5869       --  entries of the enumeration type. This isn't just a constraint error
5870       --  situation, it is an illegality (see RM 4.2).
5871
5872       Error_Msg_NE
5873         ("character not defined for }", N, First_Subtype (B_Typ));
5874    end Resolve_Character_Literal;
5875
5876    ---------------------------
5877    -- Resolve_Comparison_Op --
5878    ---------------------------
5879
5880    --  Context requires a boolean type, and plays no role in resolution.
5881    --  Processing identical to that for equality operators. The result type is
5882    --  the base type, which matters when pathological subtypes of booleans with
5883    --  limited ranges are used.
5884
5885    procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id) is
5886       L : constant Node_Id := Left_Opnd (N);
5887       R : constant Node_Id := Right_Opnd (N);
5888       T : Entity_Id;
5889
5890    begin
5891       --  If this is an intrinsic operation which is not predefined, use the
5892       --  types of its declared arguments to resolve the possibly overloaded
5893       --  operands. Otherwise the operands are unambiguous and specify the
5894       --  expected type.
5895
5896       if Scope (Entity (N)) /= Standard_Standard then
5897          T := Etype (First_Entity (Entity (N)));
5898
5899       else
5900          T := Find_Unique_Type (L, R);
5901
5902          if T = Any_Fixed then
5903             T := Unique_Fixed_Point_Type (L);
5904          end if;
5905       end if;
5906
5907       Set_Etype (N, Base_Type (Typ));
5908       Generate_Reference (T, N, ' ');
5909
5910       --  Skip remaining processing if already set to Any_Type
5911
5912       if T = Any_Type then
5913          return;
5914       end if;
5915
5916       --  Deal with other error cases
5917
5918       if T = Any_String    or else
5919          T = Any_Composite or else
5920          T = Any_Character
5921       then
5922          if T = Any_Character then
5923             Ambiguous_Character (L);
5924          else
5925             Error_Msg_N ("ambiguous operands for comparison", N);
5926          end if;
5927
5928          Set_Etype (N, Any_Type);
5929          return;
5930       end if;
5931
5932       --  Resolve the operands if types OK
5933
5934       Resolve (L, T);
5935       Resolve (R, T);
5936       Check_Unset_Reference (L);
5937       Check_Unset_Reference (R);
5938       Generate_Operator_Reference (N, T);
5939       Check_Low_Bound_Tested (N);
5940
5941       --  In SPARK, ordering operators <, <=, >, >= are not defined for Boolean
5942       --  types or array types except String.
5943
5944       if Is_Boolean_Type (T) then
5945          Check_SPARK_Restriction
5946            ("comparison is not defined on Boolean type", N);
5947
5948       elsif Is_Array_Type (T)
5949         and then Base_Type (T) /= Standard_String
5950       then
5951          Check_SPARK_Restriction
5952            ("comparison is not defined on array types other than String", N);
5953       end if;
5954
5955       --  Check comparison on unordered enumeration
5956
5957       if Comes_From_Source (N)
5958         and then Bad_Unordered_Enumeration_Reference (N, Etype (L))
5959       then
5960          Error_Msg_N ("comparison on unordered enumeration type?", N);
5961       end if;
5962
5963       --  Evaluate the relation (note we do this after the above check since
5964       --  this Eval call may change N to True/False.
5965
5966       Eval_Relational_Op (N);
5967    end Resolve_Comparison_Op;
5968
5969    ------------------------------------
5970    -- Resolve_Conditional_Expression --
5971    ------------------------------------
5972
5973    procedure Resolve_Conditional_Expression (N : Node_Id; Typ : Entity_Id) is
5974       Condition : constant Node_Id := First (Expressions (N));
5975       Then_Expr : constant Node_Id := Next (Condition);
5976       Else_Expr : Node_Id          := Next (Then_Expr);
5977
5978    begin
5979       Resolve (Condition, Any_Boolean);
5980       Resolve (Then_Expr, Typ);
5981
5982       --  If ELSE expression present, just resolve using the determined type
5983
5984       if Present (Else_Expr) then
5985          Resolve (Else_Expr, Typ);
5986
5987       --  If no ELSE expression is present, root type must be Standard.Boolean
5988       --  and we provide a Standard.True result converted to the appropriate
5989       --  Boolean type (in case it is a derived boolean type).
5990
5991       elsif Root_Type (Typ) = Standard_Boolean then
5992          Else_Expr :=
5993            Convert_To (Typ, New_Occurrence_Of (Standard_True, Sloc (N)));
5994          Analyze_And_Resolve (Else_Expr, Typ);
5995          Append_To (Expressions (N), Else_Expr);
5996
5997       else
5998          Error_Msg_N ("can only omit ELSE expression in Boolean case", N);
5999          Append_To (Expressions (N), Error);
6000       end if;
6001
6002       Set_Etype (N, Typ);
6003       Eval_Conditional_Expression (N);
6004    end Resolve_Conditional_Expression;
6005
6006    -----------------------------------------
6007    -- Resolve_Discrete_Subtype_Indication --
6008    -----------------------------------------
6009
6010    procedure Resolve_Discrete_Subtype_Indication
6011      (N   : Node_Id;
6012       Typ : Entity_Id)
6013    is
6014       R : Node_Id;
6015       S : Entity_Id;
6016
6017    begin
6018       Analyze (Subtype_Mark (N));
6019       S := Entity (Subtype_Mark (N));
6020
6021       if Nkind (Constraint (N)) /= N_Range_Constraint then
6022          Error_Msg_N ("expect range constraint for discrete type", N);
6023          Set_Etype (N, Any_Type);
6024
6025       else
6026          R := Range_Expression (Constraint (N));
6027
6028          if R = Error then
6029             return;
6030          end if;
6031
6032          Analyze (R);
6033
6034          if Base_Type (S) /= Base_Type (Typ) then
6035             Error_Msg_NE
6036               ("expect subtype of }", N, First_Subtype (Typ));
6037
6038             --  Rewrite the constraint as a range of Typ
6039             --  to allow compilation to proceed further.
6040
6041             Set_Etype (N, Typ);
6042             Rewrite (Low_Bound (R),
6043               Make_Attribute_Reference (Sloc (Low_Bound (R)),
6044                 Prefix         => New_Occurrence_Of (Typ, Sloc (R)),
6045                 Attribute_Name => Name_First));
6046             Rewrite (High_Bound (R),
6047               Make_Attribute_Reference (Sloc (High_Bound (R)),
6048                 Prefix         => New_Occurrence_Of (Typ, Sloc (R)),
6049                 Attribute_Name => Name_First));
6050
6051          else
6052             Resolve (R, Typ);
6053             Set_Etype (N, Etype (R));
6054
6055             --  Additionally, we must check that the bounds are compatible
6056             --  with the given subtype, which might be different from the
6057             --  type of the context.
6058
6059             Apply_Range_Check (R, S);
6060
6061             --  ??? If the above check statically detects a Constraint_Error
6062             --  it replaces the offending bound(s) of the range R with a
6063             --  Constraint_Error node. When the itype which uses these bounds
6064             --  is frozen the resulting call to Duplicate_Subexpr generates
6065             --  a new temporary for the bounds.
6066
6067             --  Unfortunately there are other itypes that are also made depend
6068             --  on these bounds, so when Duplicate_Subexpr is called they get
6069             --  a forward reference to the newly created temporaries and Gigi
6070             --  aborts on such forward references. This is probably sign of a
6071             --  more fundamental problem somewhere else in either the order of
6072             --  itype freezing or the way certain itypes are constructed.
6073
6074             --  To get around this problem we call Remove_Side_Effects right
6075             --  away if either bounds of R are a Constraint_Error.
6076
6077             declare
6078                L : constant Node_Id := Low_Bound (R);
6079                H : constant Node_Id := High_Bound (R);
6080
6081             begin
6082                if Nkind (L) = N_Raise_Constraint_Error then
6083                   Remove_Side_Effects (L);
6084                end if;
6085
6086                if Nkind (H) = N_Raise_Constraint_Error then
6087                   Remove_Side_Effects (H);
6088                end if;
6089             end;
6090
6091             Check_Unset_Reference (Low_Bound  (R));
6092             Check_Unset_Reference (High_Bound (R));
6093          end if;
6094       end if;
6095    end Resolve_Discrete_Subtype_Indication;
6096
6097    -------------------------
6098    -- Resolve_Entity_Name --
6099    -------------------------
6100
6101    --  Used to resolve identifiers and expanded names
6102
6103    procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id) is
6104       E : constant Entity_Id := Entity (N);
6105
6106    begin
6107       --  If garbage from errors, set to Any_Type and return
6108
6109       if No (E) and then Total_Errors_Detected /= 0 then
6110          Set_Etype (N, Any_Type);
6111          return;
6112       end if;
6113
6114       --  Replace named numbers by corresponding literals. Note that this is
6115       --  the one case where Resolve_Entity_Name must reset the Etype, since
6116       --  it is currently marked as universal.
6117
6118       if Ekind (E) = E_Named_Integer then
6119          Set_Etype (N, Typ);
6120          Eval_Named_Integer (N);
6121
6122       elsif Ekind (E) = E_Named_Real then
6123          Set_Etype (N, Typ);
6124          Eval_Named_Real (N);
6125
6126       --  For enumeration literals, we need to make sure that a proper style
6127       --  check is done, since such literals are overloaded, and thus we did
6128       --  not do a style check during the first phase of analysis.
6129
6130       elsif Ekind (E) = E_Enumeration_Literal then
6131          Set_Entity_With_Style_Check (N, E);
6132          Eval_Entity_Name (N);
6133
6134       --  Case of subtype name appearing as an operand in expression
6135
6136       elsif Is_Type (E) then
6137
6138          --  Allow use of subtype if it is a concurrent type where we are
6139          --  currently inside the body. This will eventually be expanded into a
6140          --  call to Self (for tasks) or _object (for protected objects). Any
6141          --  other use of a subtype is invalid.
6142
6143          if Is_Concurrent_Type (E)
6144            and then In_Open_Scopes (E)
6145          then
6146             null;
6147
6148          --  Any other use is an error
6149
6150          else
6151             Error_Msg_N
6152                ("invalid use of subtype mark in expression or call", N);
6153          end if;
6154
6155       --  Check discriminant use if entity is discriminant in current scope,
6156       --  i.e. discriminant of record or concurrent type currently being
6157       --  analyzed. Uses in corresponding body are unrestricted.
6158
6159       elsif Ekind (E) = E_Discriminant
6160         and then Scope (E) = Current_Scope
6161         and then not Has_Completion (Current_Scope)
6162       then
6163          Check_Discriminant_Use (N);
6164
6165       --  A parameterless generic function cannot appear in a context that
6166       --  requires resolution.
6167
6168       elsif Ekind (E) = E_Generic_Function then
6169          Error_Msg_N ("illegal use of generic function", N);
6170
6171       elsif Ekind (E) = E_Out_Parameter
6172         and then Ada_Version = Ada_83
6173         and then (Nkind (Parent (N)) in N_Op
6174                    or else (Nkind (Parent (N)) = N_Assignment_Statement
6175                              and then N = Expression (Parent (N)))
6176                    or else Nkind (Parent (N)) = N_Explicit_Dereference)
6177       then
6178          Error_Msg_N ("(Ada 83) illegal reading of out parameter", N);
6179
6180       --  In all other cases, just do the possible static evaluation
6181
6182       else
6183          --  A deferred constant that appears in an expression must have a
6184          --  completion, unless it has been removed by in-place expansion of
6185          --  an aggregate.
6186
6187          if Ekind (E) = E_Constant
6188            and then Comes_From_Source (E)
6189            and then No (Constant_Value (E))
6190            and then Is_Frozen (Etype (E))
6191            and then not In_Spec_Expression
6192            and then not Is_Imported (E)
6193          then
6194             if No_Initialization (Parent (E))
6195               or else (Present (Full_View (E))
6196                         and then No_Initialization (Parent (Full_View (E))))
6197             then
6198                null;
6199             else
6200                Error_Msg_N (
6201                  "deferred constant is frozen before completion", N);
6202             end if;
6203          end if;
6204
6205          Eval_Entity_Name (N);
6206       end if;
6207    end Resolve_Entity_Name;
6208
6209    -------------------
6210    -- Resolve_Entry --
6211    -------------------
6212
6213    procedure Resolve_Entry (Entry_Name : Node_Id) is
6214       Loc    : constant Source_Ptr := Sloc (Entry_Name);
6215       Nam    : Entity_Id;
6216       New_N  : Node_Id;
6217       S      : Entity_Id;
6218       Tsk    : Entity_Id;
6219       E_Name : Node_Id;
6220       Index  : Node_Id;
6221
6222       function Actual_Index_Type (E : Entity_Id) return Entity_Id;
6223       --  If the bounds of the entry family being called depend on task
6224       --  discriminants, build a new index subtype where a discriminant is
6225       --  replaced with the value of the discriminant of the target task.
6226       --  The target task is the prefix of the entry name in the call.
6227
6228       -----------------------
6229       -- Actual_Index_Type --
6230       -----------------------
6231
6232       function Actual_Index_Type (E : Entity_Id) return Entity_Id is
6233          Typ   : constant Entity_Id := Entry_Index_Type (E);
6234          Tsk   : constant Entity_Id := Scope (E);
6235          Lo    : constant Node_Id   := Type_Low_Bound  (Typ);
6236          Hi    : constant Node_Id   := Type_High_Bound (Typ);
6237          New_T : Entity_Id;
6238
6239          function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id;
6240          --  If the bound is given by a discriminant, replace with a reference
6241          --  to the discriminant of the same name in the target task. If the
6242          --  entry name is the target of a requeue statement and the entry is
6243          --  in the current protected object, the bound to be used is the
6244          --  discriminal of the object (see Apply_Range_Checks for details of
6245          --  the transformation).
6246
6247          -----------------------------
6248          -- Actual_Discriminant_Ref --
6249          -----------------------------
6250
6251          function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id is
6252             Typ : constant Entity_Id := Etype (Bound);
6253             Ref : Node_Id;
6254
6255          begin
6256             Remove_Side_Effects (Bound);
6257
6258             if not Is_Entity_Name (Bound)
6259               or else Ekind (Entity (Bound)) /= E_Discriminant
6260             then
6261                return Bound;
6262
6263             elsif Is_Protected_Type (Tsk)
6264               and then In_Open_Scopes (Tsk)
6265               and then Nkind (Parent (Entry_Name)) = N_Requeue_Statement
6266             then
6267                --  Note: here Bound denotes a discriminant of the corresponding
6268                --  record type tskV, whose discriminal is a formal of the
6269                --  init-proc tskVIP. What we want is the body discriminal,
6270                --  which is associated to the discriminant of the original
6271                --  concurrent type tsk.
6272
6273                return New_Occurrence_Of
6274                         (Find_Body_Discriminal (Entity (Bound)), Loc);
6275
6276             else
6277                Ref :=
6278                  Make_Selected_Component (Loc,
6279                    Prefix => New_Copy_Tree (Prefix (Prefix (Entry_Name))),
6280                    Selector_Name => New_Occurrence_Of (Entity (Bound), Loc));
6281                Analyze (Ref);
6282                Resolve (Ref, Typ);
6283                return Ref;
6284             end if;
6285          end Actual_Discriminant_Ref;
6286
6287       --  Start of processing for Actual_Index_Type
6288
6289       begin
6290          if not Has_Discriminants (Tsk)
6291            or else (not Is_Entity_Name (Lo) and then not Is_Entity_Name (Hi))
6292          then
6293             return Entry_Index_Type (E);
6294
6295          else
6296             New_T := Create_Itype (Ekind (Typ), Parent (Entry_Name));
6297             Set_Etype        (New_T, Base_Type (Typ));
6298             Set_Size_Info    (New_T, Typ);
6299             Set_RM_Size      (New_T, RM_Size (Typ));
6300             Set_Scalar_Range (New_T,
6301               Make_Range (Sloc (Entry_Name),
6302                 Low_Bound  => Actual_Discriminant_Ref (Lo),
6303                 High_Bound => Actual_Discriminant_Ref (Hi)));
6304
6305             return New_T;
6306          end if;
6307       end Actual_Index_Type;
6308
6309    --  Start of processing of Resolve_Entry
6310
6311    begin
6312       --  Find name of entry being called, and resolve prefix of name with its
6313       --  own type. The prefix can be overloaded, and the name and signature of
6314       --  the entry must be taken into account.
6315
6316       if Nkind (Entry_Name) = N_Indexed_Component then
6317
6318          --  Case of dealing with entry family within the current tasks
6319
6320          E_Name := Prefix (Entry_Name);
6321
6322       else
6323          E_Name := Entry_Name;
6324       end if;
6325
6326       if Is_Entity_Name (E_Name) then
6327
6328          --  Entry call to an entry (or entry family) in the current task. This
6329          --  is legal even though the task will deadlock. Rewrite as call to
6330          --  current task.
6331
6332          --  This can also be a call to an entry in an enclosing task. If this
6333          --  is a single task, we have to retrieve its name, because the scope
6334          --  of the entry is the task type, not the object. If the enclosing
6335          --  task is a task type, the identity of the task is given by its own
6336          --  self variable.
6337
6338          --  Finally this can be a requeue on an entry of the same task or
6339          --  protected object.
6340
6341          S := Scope (Entity (E_Name));
6342
6343          for J in reverse 0 .. Scope_Stack.Last loop
6344             if Is_Task_Type (Scope_Stack.Table (J).Entity)
6345               and then not Comes_From_Source (S)
6346             then
6347                --  S is an enclosing task or protected object. The concurrent
6348                --  declaration has been converted into a type declaration, and
6349                --  the object itself has an object declaration that follows
6350                --  the type in the same declarative part.
6351
6352                Tsk := Next_Entity (S);
6353                while Etype (Tsk) /= S loop
6354                   Next_Entity (Tsk);
6355                end loop;
6356
6357                S := Tsk;
6358                exit;
6359
6360             elsif S = Scope_Stack.Table (J).Entity then
6361
6362                --  Call to current task. Will be transformed into call to Self
6363
6364                exit;
6365
6366             end if;
6367          end loop;
6368
6369          New_N :=
6370            Make_Selected_Component (Loc,
6371              Prefix => New_Occurrence_Of (S, Loc),
6372              Selector_Name =>
6373                New_Occurrence_Of (Entity (E_Name), Loc));
6374          Rewrite (E_Name, New_N);
6375          Analyze (E_Name);
6376
6377       elsif Nkind (Entry_Name) = N_Selected_Component
6378         and then Is_Overloaded (Prefix (Entry_Name))
6379       then
6380          --  Use the entry name (which must be unique at this point) to find
6381          --  the prefix that returns the corresponding task/protected type.
6382
6383          declare
6384             Pref : constant Node_Id := Prefix (Entry_Name);
6385             Ent  : constant Entity_Id :=  Entity (Selector_Name (Entry_Name));
6386             I    : Interp_Index;
6387             It   : Interp;
6388
6389          begin
6390             Get_First_Interp (Pref, I, It);
6391             while Present (It.Typ) loop
6392                if Scope (Ent) = It.Typ then
6393                   Set_Etype (Pref, It.Typ);
6394                   exit;
6395                end if;
6396
6397                Get_Next_Interp (I, It);
6398             end loop;
6399          end;
6400       end if;
6401
6402       if Nkind (Entry_Name) = N_Selected_Component then
6403          Resolve (Prefix (Entry_Name));
6404
6405       else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
6406          Nam := Entity (Selector_Name (Prefix (Entry_Name)));
6407          Resolve (Prefix (Prefix (Entry_Name)));
6408          Index :=  First (Expressions (Entry_Name));
6409          Resolve (Index, Entry_Index_Type (Nam));
6410
6411          --  Up to this point the expression could have been the actual in a
6412          --  simple entry call, and be given by a named association.
6413
6414          if Nkind (Index) = N_Parameter_Association then
6415             Error_Msg_N ("expect expression for entry index", Index);
6416          else
6417             Apply_Range_Check (Index, Actual_Index_Type (Nam));
6418          end if;
6419       end if;
6420    end Resolve_Entry;
6421
6422    ------------------------
6423    -- Resolve_Entry_Call --
6424    ------------------------
6425
6426    procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id) is
6427       Entry_Name  : constant Node_Id    := Name (N);
6428       Loc         : constant Source_Ptr := Sloc (Entry_Name);
6429       Actuals     : List_Id;
6430       First_Named : Node_Id;
6431       Nam         : Entity_Id;
6432       Norm_OK     : Boolean;
6433       Obj         : Node_Id;
6434       Was_Over    : Boolean;
6435
6436    begin
6437       --  We kill all checks here, because it does not seem worth the effort to
6438       --  do anything better, an entry call is a big operation.
6439
6440       Kill_All_Checks;
6441
6442       --  Processing of the name is similar for entry calls and protected
6443       --  operation calls. Once the entity is determined, we can complete
6444       --  the resolution of the actuals.
6445
6446       --  The selector may be overloaded, in the case of a protected object
6447       --  with overloaded functions. The type of the context is used for
6448       --  resolution.
6449
6450       if Nkind (Entry_Name) = N_Selected_Component
6451         and then Is_Overloaded (Selector_Name (Entry_Name))
6452         and then Typ /= Standard_Void_Type
6453       then
6454          declare
6455             I  : Interp_Index;
6456             It : Interp;
6457
6458          begin
6459             Get_First_Interp (Selector_Name (Entry_Name), I, It);
6460             while Present (It.Typ) loop
6461                if Covers (Typ, It.Typ) then
6462                   Set_Entity (Selector_Name (Entry_Name), It.Nam);
6463                   Set_Etype  (Entry_Name, It.Typ);
6464
6465                   Generate_Reference (It.Typ, N, ' ');
6466                end if;
6467
6468                Get_Next_Interp (I, It);
6469             end loop;
6470          end;
6471       end if;
6472
6473       Resolve_Entry (Entry_Name);
6474
6475       if Nkind (Entry_Name) = N_Selected_Component then
6476
6477          --  Simple entry call
6478
6479          Nam := Entity (Selector_Name (Entry_Name));
6480          Obj := Prefix (Entry_Name);
6481          Was_Over := Is_Overloaded (Selector_Name (Entry_Name));
6482
6483       else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
6484
6485          --  Call to member of entry family
6486
6487          Nam := Entity (Selector_Name (Prefix (Entry_Name)));
6488          Obj := Prefix (Prefix (Entry_Name));
6489          Was_Over := Is_Overloaded (Selector_Name (Prefix (Entry_Name)));
6490       end if;
6491
6492       --  We cannot in general check the maximum depth of protected entry calls
6493       --  at compile time. But we can tell that any protected entry call at all
6494       --  violates a specified nesting depth of zero.
6495
6496       if Is_Protected_Type (Scope (Nam)) then
6497          Check_Restriction (Max_Entry_Queue_Length, N);
6498       end if;
6499
6500       --  Use context type to disambiguate a protected function that can be
6501       --  called without actuals and that returns an array type, and where the
6502       --  argument list may be an indexing of the returned value.
6503
6504       if Ekind (Nam) = E_Function
6505         and then Needs_No_Actuals (Nam)
6506         and then Present (Parameter_Associations (N))
6507         and then
6508           ((Is_Array_Type (Etype (Nam))
6509              and then Covers (Typ, Component_Type (Etype (Nam))))
6510
6511             or else (Is_Access_Type (Etype (Nam))
6512                       and then Is_Array_Type (Designated_Type (Etype (Nam)))
6513                       and then
6514                         Covers
6515                          (Typ,
6516                           Component_Type (Designated_Type (Etype (Nam))))))
6517       then
6518          declare
6519             Index_Node : Node_Id;
6520
6521          begin
6522             Index_Node :=
6523               Make_Indexed_Component (Loc,
6524                 Prefix =>
6525                   Make_Function_Call (Loc, Name => Relocate_Node (Entry_Name)),
6526                 Expressions => Parameter_Associations (N));
6527
6528             --  Since we are correcting a node classification error made by the
6529             --  parser, we call Replace rather than Rewrite.
6530
6531             Replace (N, Index_Node);
6532             Set_Etype (Prefix (N), Etype (Nam));
6533             Set_Etype (N, Typ);
6534             Resolve_Indexed_Component (N, Typ);
6535             return;
6536          end;
6537       end if;
6538
6539       if Ekind_In (Nam, E_Entry, E_Entry_Family)
6540         and then Present (PPC_Wrapper (Nam))
6541         and then Current_Scope /= PPC_Wrapper (Nam)
6542       then
6543          --  Rewrite as call to the precondition wrapper, adding the task
6544          --  object to the list of actuals. If the call is to a member of an
6545          --  entry family, include the index as well.
6546
6547          declare
6548             New_Call    : Node_Id;
6549             New_Actuals : List_Id;
6550
6551          begin
6552             New_Actuals := New_List (Obj);
6553
6554             if  Nkind (Entry_Name) = N_Indexed_Component then
6555                Append_To (New_Actuals,
6556                  New_Copy_Tree (First (Expressions (Entry_Name))));
6557             end if;
6558
6559             Append_List (Parameter_Associations (N), New_Actuals);
6560             New_Call :=
6561               Make_Procedure_Call_Statement (Loc,
6562                 Name                   =>
6563                   New_Occurrence_Of (PPC_Wrapper (Nam), Loc),
6564                 Parameter_Associations => New_Actuals);
6565             Rewrite (N, New_Call);
6566             Analyze_And_Resolve (N);
6567             return;
6568          end;
6569       end if;
6570
6571       --  The operation name may have been overloaded. Order the actuals
6572       --  according to the formals of the resolved entity, and set the return
6573       --  type to that of the operation.
6574
6575       if Was_Over then
6576          Normalize_Actuals (N, Nam, False, Norm_OK);
6577          pragma Assert (Norm_OK);
6578          Set_Etype (N, Etype (Nam));
6579       end if;
6580
6581       Resolve_Actuals (N, Nam);
6582
6583       --  Create a call reference to the entry
6584
6585       Generate_Reference (Nam, Entry_Name, 's');
6586
6587       if Ekind_In (Nam, E_Entry, E_Entry_Family) then
6588          Check_Potentially_Blocking_Operation (N);
6589       end if;
6590
6591       --  Verify that a procedure call cannot masquerade as an entry
6592       --  call where an entry call is expected.
6593
6594       if Ekind (Nam) = E_Procedure then
6595          if Nkind (Parent (N)) = N_Entry_Call_Alternative
6596            and then N = Entry_Call_Statement (Parent (N))
6597          then
6598             Error_Msg_N ("entry call required in select statement", N);
6599
6600          elsif Nkind (Parent (N)) = N_Triggering_Alternative
6601            and then N = Triggering_Statement (Parent (N))
6602          then
6603             Error_Msg_N ("triggering statement cannot be procedure call", N);
6604
6605          elsif Ekind (Scope (Nam)) = E_Task_Type
6606            and then not In_Open_Scopes (Scope (Nam))
6607          then
6608             Error_Msg_N ("task has no entry with this name", Entry_Name);
6609          end if;
6610       end if;
6611
6612       --  After resolution, entry calls and protected procedure calls are
6613       --  changed into entry calls, for expansion. The structure of the node
6614       --  does not change, so it can safely be done in place. Protected
6615       --  function calls must keep their structure because they are
6616       --  subexpressions.
6617
6618       if Ekind (Nam) /= E_Function then
6619
6620          --  A protected operation that is not a function may modify the
6621          --  corresponding object, and cannot apply to a constant. If this
6622          --  is an internal call, the prefix is the type itself.
6623
6624          if Is_Protected_Type (Scope (Nam))
6625            and then not Is_Variable (Obj)
6626            and then (not Is_Entity_Name (Obj)
6627                        or else not Is_Type (Entity (Obj)))
6628          then
6629             Error_Msg_N
6630               ("prefix of protected procedure or entry call must be variable",
6631                Entry_Name);
6632          end if;
6633
6634          Actuals := Parameter_Associations (N);
6635          First_Named := First_Named_Actual (N);
6636
6637          Rewrite (N,
6638            Make_Entry_Call_Statement (Loc,
6639              Name                   => Entry_Name,
6640              Parameter_Associations => Actuals));
6641
6642          Set_First_Named_Actual (N, First_Named);
6643          Set_Analyzed (N, True);
6644
6645       --  Protected functions can return on the secondary stack, in which
6646       --  case we must trigger the transient scope mechanism.
6647
6648       elsif Full_Expander_Active
6649         and then Requires_Transient_Scope (Etype (Nam))
6650       then
6651          Establish_Transient_Scope (N, Sec_Stack => True);
6652       end if;
6653    end Resolve_Entry_Call;
6654
6655    -------------------------
6656    -- Resolve_Equality_Op --
6657    -------------------------
6658
6659    --  Both arguments must have the same type, and the boolean context does
6660    --  not participate in the resolution. The first pass verifies that the
6661    --  interpretation is not ambiguous, and the type of the left argument is
6662    --  correctly set, or is Any_Type in case of ambiguity. If both arguments
6663    --  are strings or aggregates, allocators, or Null, they are ambiguous even
6664    --  though they carry a single (universal) type. Diagnose this case here.
6665
6666    procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id) is
6667       L : constant Node_Id   := Left_Opnd (N);
6668       R : constant Node_Id   := Right_Opnd (N);
6669       T : Entity_Id := Find_Unique_Type (L, R);
6670
6671       procedure Check_Conditional_Expression (Cond : Node_Id);
6672       --  The resolution rule for conditional expressions requires that each
6673       --  such must have a unique type. This means that if several dependent
6674       --  expressions are of a non-null anonymous access type, and the context
6675       --  does not impose an expected type (as can be the case in an equality
6676       --  operation) the expression must be rejected.
6677
6678       function Find_Unique_Access_Type return Entity_Id;
6679       --  In the case of allocators, make a last-ditch attempt to find a single
6680       --  access type with the right designated type. This is semantically
6681       --  dubious, and of no interest to any real code, but c48008a makes it
6682       --  all worthwhile.
6683
6684       ----------------------------------
6685       -- Check_Conditional_Expression --
6686       ----------------------------------
6687
6688       procedure Check_Conditional_Expression (Cond : Node_Id) is
6689          Then_Expr : Node_Id;
6690          Else_Expr : Node_Id;
6691
6692       begin
6693          if Nkind (Cond) = N_Conditional_Expression then
6694             Then_Expr := Next (First (Expressions (Cond)));
6695             Else_Expr := Next (Then_Expr);
6696
6697             if Nkind (Then_Expr) /= N_Null
6698               and then Nkind (Else_Expr) /= N_Null
6699             then
6700                Error_Msg_N
6701                  ("cannot determine type of conditional expression", Cond);
6702             end if;
6703          end if;
6704       end Check_Conditional_Expression;
6705
6706       -----------------------------
6707       -- Find_Unique_Access_Type --
6708       -----------------------------
6709
6710       function Find_Unique_Access_Type return Entity_Id is
6711          Acc : Entity_Id;
6712          E   : Entity_Id;
6713          S   : Entity_Id;
6714
6715       begin
6716          if Ekind (Etype (R)) =  E_Allocator_Type then
6717             Acc := Designated_Type (Etype (R));
6718          elsif Ekind (Etype (L)) =  E_Allocator_Type then
6719             Acc := Designated_Type (Etype (L));
6720          else
6721             return Empty;
6722          end if;
6723
6724          S := Current_Scope;
6725          while S /= Standard_Standard loop
6726             E := First_Entity (S);
6727             while Present (E) loop
6728                if Is_Type (E)
6729                  and then Is_Access_Type (E)
6730                  and then Ekind (E) /= E_Allocator_Type
6731                  and then Designated_Type (E) = Base_Type (Acc)
6732                then
6733                   return E;
6734                end if;
6735
6736                Next_Entity (E);
6737             end loop;
6738
6739             S := Scope (S);
6740          end loop;
6741
6742          return Empty;
6743       end Find_Unique_Access_Type;
6744
6745    --  Start of processing for Resolve_Equality_Op
6746
6747    begin
6748       Set_Etype (N, Base_Type (Typ));
6749       Generate_Reference (T, N, ' ');
6750
6751       if T = Any_Fixed then
6752          T := Unique_Fixed_Point_Type (L);
6753       end if;
6754
6755       if T /= Any_Type then
6756          if T = Any_String    or else
6757             T = Any_Composite or else
6758             T = Any_Character
6759          then
6760             if T = Any_Character then
6761                Ambiguous_Character (L);
6762             else
6763                Error_Msg_N ("ambiguous operands for equality", N);
6764             end if;
6765
6766             Set_Etype (N, Any_Type);
6767             return;
6768
6769          elsif T = Any_Access
6770            or else Ekind_In (T, E_Allocator_Type, E_Access_Attribute_Type)
6771          then
6772             T := Find_Unique_Access_Type;
6773
6774             if No (T) then
6775                Error_Msg_N ("ambiguous operands for equality", N);
6776                Set_Etype (N, Any_Type);
6777                return;
6778             end if;
6779
6780          --  Conditional expressions must have a single type, and if the
6781          --  context does not impose one the dependent expressions cannot
6782          --  be anonymous access types.
6783
6784          elsif Ada_Version >= Ada_2012
6785            and then Ekind_In (Etype (L), E_Anonymous_Access_Type,
6786                                          E_Anonymous_Access_Subprogram_Type)
6787            and then Ekind_In (Etype (R), E_Anonymous_Access_Type,
6788                                          E_Anonymous_Access_Subprogram_Type)
6789          then
6790             Check_Conditional_Expression (L);
6791             Check_Conditional_Expression (R);
6792          end if;
6793
6794          Resolve (L, T);
6795          Resolve (R, T);
6796
6797          --  In SPARK, equality operators = and /= for array types other than
6798          --  String are only defined when, for each index position, the
6799          --  operands have equal static bounds.
6800
6801          if Is_Array_Type (T) then
6802             --  Protect call to Matching_Static_Array_Bounds to avoid costly
6803             --  operation if not needed.
6804
6805             if Restriction_Check_Required (SPARK)
6806               and then Base_Type (T) /= Standard_String
6807               and then Base_Type (Etype (L)) = Base_Type (Etype (R))
6808               and then Etype (L) /= Any_Composite  --  or else L in error
6809               and then Etype (R) /= Any_Composite  --  or else R in error
6810               and then not Matching_Static_Array_Bounds (Etype (L), Etype (R))
6811             then
6812                Check_SPARK_Restriction
6813                  ("array types should have matching static bounds", N);
6814             end if;
6815          end if;
6816
6817          --  If the unique type is a class-wide type then it will be expanded
6818          --  into a dispatching call to the predefined primitive. Therefore we
6819          --  check here for potential violation of such restriction.
6820
6821          if Is_Class_Wide_Type (T) then
6822             Check_Restriction (No_Dispatching_Calls, N);
6823          end if;
6824
6825          if Warn_On_Redundant_Constructs
6826            and then Comes_From_Source (N)
6827            and then Is_Entity_Name (R)
6828            and then Entity (R) = Standard_True
6829            and then Comes_From_Source (R)
6830          then
6831             Error_Msg_N -- CODEFIX
6832               ("?comparison with True is redundant!", R);
6833          end if;
6834
6835          Check_Unset_Reference (L);
6836          Check_Unset_Reference (R);
6837          Generate_Operator_Reference (N, T);
6838          Check_Low_Bound_Tested (N);
6839
6840          --  If this is an inequality, it may be the implicit inequality
6841          --  created for a user-defined operation, in which case the corres-
6842          --  ponding equality operation is not intrinsic, and the operation
6843          --  cannot be constant-folded. Else fold.
6844
6845          if Nkind (N) = N_Op_Eq
6846            or else Comes_From_Source (Entity (N))
6847            or else Ekind (Entity (N)) = E_Operator
6848            or else Is_Intrinsic_Subprogram
6849                      (Corresponding_Equality (Entity (N)))
6850          then
6851             Eval_Relational_Op (N);
6852
6853          elsif Nkind (N) = N_Op_Ne
6854            and then Is_Abstract_Subprogram (Entity (N))
6855          then
6856             Error_Msg_NE ("cannot call abstract subprogram &!", N, Entity (N));
6857          end if;
6858
6859          --  Ada 2005: If one operand is an anonymous access type, convert the
6860          --  other operand to it, to ensure that the underlying types match in
6861          --  the back-end. Same for access_to_subprogram, and the conversion
6862          --  verifies that the types are subtype conformant.
6863
6864          --  We apply the same conversion in the case one of the operands is a
6865          --  private subtype of the type of the other.
6866
6867          --  Why the Expander_Active test here ???
6868
6869          if Full_Expander_Active
6870            and then
6871              (Ekind_In (T, E_Anonymous_Access_Type,
6872                            E_Anonymous_Access_Subprogram_Type)
6873                or else Is_Private_Type (T))
6874          then
6875             if Etype (L) /= T then
6876                Rewrite (L,
6877                  Make_Unchecked_Type_Conversion (Sloc (L),
6878                    Subtype_Mark => New_Occurrence_Of (T, Sloc (L)),
6879                    Expression   => Relocate_Node (L)));
6880                Analyze_And_Resolve (L, T);
6881             end if;
6882
6883             if (Etype (R)) /= T then
6884                Rewrite (R,
6885                   Make_Unchecked_Type_Conversion (Sloc (R),
6886                     Subtype_Mark => New_Occurrence_Of (Etype (L), Sloc (R)),
6887                     Expression   => Relocate_Node (R)));
6888                Analyze_And_Resolve (R, T);
6889             end if;
6890          end if;
6891       end if;
6892    end Resolve_Equality_Op;
6893
6894    ----------------------------------
6895    -- Resolve_Explicit_Dereference --
6896    ----------------------------------
6897
6898    procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id) is
6899       Loc   : constant Source_Ptr := Sloc (N);
6900       New_N : Node_Id;
6901       P     : constant Node_Id := Prefix (N);
6902       I     : Interp_Index;
6903       It    : Interp;
6904
6905    begin
6906       Check_Fully_Declared_Prefix (Typ, P);
6907
6908       if Is_Overloaded (P) then
6909
6910          --  Use the context type to select the prefix that has the correct
6911          --  designated type.
6912
6913          Get_First_Interp (P, I, It);
6914          while Present (It.Typ) loop
6915             exit when Is_Access_Type (It.Typ)
6916               and then Covers (Typ, Designated_Type (It.Typ));
6917             Get_Next_Interp (I, It);
6918          end loop;
6919
6920          if Present (It.Typ) then
6921             Resolve (P, It.Typ);
6922          else
6923             --  If no interpretation covers the designated type of the prefix,
6924             --  this is the pathological case where not all implementations of
6925             --  the prefix allow the interpretation of the node as a call. Now
6926             --  that the expected type is known, Remove other interpretations
6927             --  from prefix, rewrite it as a call, and resolve again, so that
6928             --  the proper call node is generated.
6929
6930             Get_First_Interp (P, I, It);
6931             while Present (It.Typ) loop
6932                if Ekind (It.Typ) /= E_Access_Subprogram_Type then
6933                   Remove_Interp (I);
6934                end if;
6935
6936                Get_Next_Interp (I, It);
6937             end loop;
6938
6939             New_N :=
6940               Make_Function_Call (Loc,
6941                 Name =>
6942                   Make_Explicit_Dereference (Loc,
6943                     Prefix => P),
6944                 Parameter_Associations => New_List);
6945
6946             Save_Interps (N, New_N);
6947             Rewrite (N, New_N);
6948             Analyze_And_Resolve (N, Typ);
6949             return;
6950          end if;
6951
6952          Set_Etype (N, Designated_Type (It.Typ));
6953
6954       else
6955          Resolve (P);
6956       end if;
6957
6958       if Is_Access_Type (Etype (P)) then
6959          Apply_Access_Check (N);
6960       end if;
6961
6962       --  If the designated type is a packed unconstrained array type, and the
6963       --  explicit dereference is not in the context of an attribute reference,
6964       --  then we must compute and set the actual subtype, since it is needed
6965       --  by Gigi. The reason we exclude the attribute case is that this is
6966       --  handled fine by Gigi, and in fact we use such attributes to build the
6967       --  actual subtype. We also exclude generated code (which builds actual
6968       --  subtypes directly if they are needed).
6969
6970       if Is_Array_Type (Etype (N))
6971         and then Is_Packed (Etype (N))
6972         and then not Is_Constrained (Etype (N))
6973         and then Nkind (Parent (N)) /= N_Attribute_Reference
6974         and then Comes_From_Source (N)
6975       then
6976          Set_Etype (N, Get_Actual_Subtype (N));
6977       end if;
6978
6979       --  Note: No Eval processing is required for an explicit dereference,
6980       --  because such a name can never be static.
6981
6982    end Resolve_Explicit_Dereference;
6983
6984    -------------------------------------
6985    -- Resolve_Expression_With_Actions --
6986    -------------------------------------
6987
6988    procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id) is
6989    begin
6990       Set_Etype (N, Typ);
6991    end Resolve_Expression_With_Actions;
6992
6993    -------------------------------
6994    -- Resolve_Indexed_Component --
6995    -------------------------------
6996
6997    procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id) is
6998       Name       : constant Node_Id := Prefix  (N);
6999       Expr       : Node_Id;
7000       Array_Type : Entity_Id := Empty; -- to prevent junk warning
7001       Index      : Node_Id;
7002
7003    begin
7004       if Is_Overloaded (Name) then
7005
7006          --  Use the context type to select the prefix that yields the correct
7007          --  component type.
7008
7009          declare
7010             I     : Interp_Index;
7011             It    : Interp;
7012             I1    : Interp_Index := 0;
7013             P     : constant Node_Id := Prefix (N);
7014             Found : Boolean := False;
7015
7016          begin
7017             Get_First_Interp (P, I, It);
7018             while Present (It.Typ) loop
7019                if (Is_Array_Type (It.Typ)
7020                      and then Covers (Typ, Component_Type (It.Typ)))
7021                  or else (Is_Access_Type (It.Typ)
7022                             and then Is_Array_Type (Designated_Type (It.Typ))
7023                             and then
7024                               Covers
7025                                 (Typ,
7026                                  Component_Type (Designated_Type (It.Typ))))
7027                then
7028                   if Found then
7029                      It := Disambiguate (P, I1, I, Any_Type);
7030
7031                      if It = No_Interp then
7032                         Error_Msg_N ("ambiguous prefix for indexing",  N);
7033                         Set_Etype (N, Typ);
7034                         return;
7035
7036                      else
7037                         Found := True;
7038                         Array_Type := It.Typ;
7039                         I1 := I;
7040                      end if;
7041
7042                   else
7043                      Found := True;
7044                      Array_Type := It.Typ;
7045                      I1 := I;
7046                   end if;
7047                end if;
7048
7049                Get_Next_Interp (I, It);
7050             end loop;
7051          end;
7052
7053       else
7054          Array_Type := Etype (Name);
7055       end if;
7056
7057       Resolve (Name, Array_Type);
7058       Array_Type := Get_Actual_Subtype_If_Available (Name);
7059
7060       --  If prefix is access type, dereference to get real array type.
7061       --  Note: we do not apply an access check because the expander always
7062       --  introduces an explicit dereference, and the check will happen there.
7063
7064       if Is_Access_Type (Array_Type) then
7065          Array_Type := Designated_Type (Array_Type);
7066       end if;
7067
7068       --  If name was overloaded, set component type correctly now
7069       --  If a misplaced call to an entry family (which has no index types)
7070       --  return. Error will be diagnosed from calling context.
7071
7072       if Is_Array_Type (Array_Type) then
7073          Set_Etype (N, Component_Type (Array_Type));
7074       else
7075          return;
7076       end if;
7077
7078       Index := First_Index (Array_Type);
7079       Expr  := First (Expressions (N));
7080
7081       --  The prefix may have resolved to a string literal, in which case its
7082       --  etype has a special representation. This is only possible currently
7083       --  if the prefix is a static concatenation, written in functional
7084       --  notation.
7085
7086       if Ekind (Array_Type) = E_String_Literal_Subtype then
7087          Resolve (Expr, Standard_Positive);
7088
7089       else
7090          while Present (Index) and Present (Expr) loop
7091             Resolve (Expr, Etype (Index));
7092             Check_Unset_Reference (Expr);
7093
7094             if Is_Scalar_Type (Etype (Expr)) then
7095                Apply_Scalar_Range_Check (Expr, Etype (Index));
7096             else
7097                Apply_Range_Check (Expr, Get_Actual_Subtype (Index));
7098             end if;
7099
7100             Next_Index (Index);
7101             Next (Expr);
7102          end loop;
7103       end if;
7104
7105       --  Do not generate the warning on suspicious index if we are analyzing
7106       --  package Ada.Tags; otherwise we will report the warning with the
7107       --  Prims_Ptr field of the dispatch table.
7108
7109       if Scope (Etype (Prefix (N))) = Standard_Standard
7110         or else not
7111           Is_RTU (Cunit_Entity (Get_Source_Unit (Etype (Prefix (N)))),
7112                   Ada_Tags)
7113       then
7114          Warn_On_Suspicious_Index (Name, First (Expressions (N)));
7115          Eval_Indexed_Component (N);
7116       end if;
7117
7118       --  If the array type is atomic, and is packed, and we are in a left side
7119       --  context, then this is worth a warning, since we have a situation
7120       --  where the access to the component may cause extra read/writes of
7121       --  the atomic array object, which could be considered unexpected.
7122
7123       if Nkind (N) = N_Indexed_Component
7124         and then (Is_Atomic (Array_Type)
7125                    or else (Is_Entity_Name (Prefix (N))
7126                              and then Is_Atomic (Entity (Prefix (N)))))
7127         and then Is_Bit_Packed_Array (Array_Type)
7128         and then Is_LHS (N)
7129       then
7130          Error_Msg_N ("?assignment to component of packed atomic array",
7131                       Prefix (N));
7132          Error_Msg_N ("?\may cause unexpected accesses to atomic object",
7133                       Prefix (N));
7134       end if;
7135    end Resolve_Indexed_Component;
7136
7137    -----------------------------
7138    -- Resolve_Integer_Literal --
7139    -----------------------------
7140
7141    procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id) is
7142    begin
7143       Set_Etype (N, Typ);
7144       Eval_Integer_Literal (N);
7145    end Resolve_Integer_Literal;
7146
7147    --------------------------------
7148    -- Resolve_Intrinsic_Operator --
7149    --------------------------------
7150
7151    procedure Resolve_Intrinsic_Operator  (N : Node_Id; Typ : Entity_Id) is
7152       Btyp    : constant Entity_Id := Base_Type (Underlying_Type (Typ));
7153       Op      : Entity_Id;
7154       Orig_Op : constant Entity_Id := Entity (N);
7155       Arg1    : Node_Id;
7156       Arg2    : Node_Id;
7157
7158       function Convert_Operand (Opnd : Node_Id) return Node_Id;
7159       --  If the operand is a literal, it cannot be the expression in a
7160       --  conversion. Use a qualified expression instead.
7161
7162       function Convert_Operand (Opnd : Node_Id) return Node_Id is
7163          Loc : constant Source_Ptr := Sloc (Opnd);
7164          Res : Node_Id;
7165       begin
7166          if Nkind_In (Opnd, N_Integer_Literal, N_Real_Literal) then
7167             Res :=
7168               Make_Qualified_Expression (Loc,
7169                 Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
7170                 Expression   => Relocate_Node (Opnd));
7171             Analyze (Res);
7172
7173          else
7174             Res := Unchecked_Convert_To (Btyp, Opnd);
7175          end if;
7176
7177          return Res;
7178       end Convert_Operand;
7179
7180    --  Start of processing for Resolve_Intrinsic_Operator
7181
7182    begin
7183       --  We must preserve the original entity in a generic setting, so that
7184       --  the legality of the operation can be verified in an instance.
7185
7186       if not Full_Expander_Active then
7187          return;
7188       end if;
7189
7190       Op := Entity (N);
7191       while Scope (Op) /= Standard_Standard loop
7192          Op := Homonym (Op);
7193          pragma Assert (Present (Op));
7194       end loop;
7195
7196       Set_Entity (N, Op);
7197       Set_Is_Overloaded (N, False);
7198
7199       --  If the result or operand types are private, rewrite with unchecked
7200       --  conversions on the operands and the result, to expose the proper
7201       --  underlying numeric type.
7202
7203       if Is_Private_Type (Typ)
7204         or else Is_Private_Type (Etype (Left_Opnd (N)))
7205         or else Is_Private_Type (Etype (Right_Opnd (N)))
7206       then
7207          Arg1 := Convert_Operand (Left_Opnd (N));
7208          --  Unchecked_Convert_To (Btyp, Left_Opnd  (N));
7209          --  What on earth is this commented out fragment of code???
7210
7211          if Nkind (N) = N_Op_Expon then
7212             Arg2 := Unchecked_Convert_To (Standard_Integer, Right_Opnd (N));
7213          else
7214             Arg2 := Convert_Operand (Right_Opnd (N));
7215          end if;
7216
7217          if Nkind (Arg1) = N_Type_Conversion then
7218             Save_Interps (Left_Opnd (N),  Expression (Arg1));
7219          end if;
7220
7221          if Nkind (Arg2) = N_Type_Conversion then
7222             Save_Interps (Right_Opnd (N), Expression (Arg2));
7223          end if;
7224
7225          Set_Left_Opnd  (N, Arg1);
7226          Set_Right_Opnd (N, Arg2);
7227
7228          Set_Etype (N, Btyp);
7229          Rewrite (N, Unchecked_Convert_To (Typ, N));
7230          Resolve (N, Typ);
7231
7232       elsif Typ /= Etype (Left_Opnd (N))
7233         or else Typ /= Etype (Right_Opnd (N))
7234       then
7235          --  Add explicit conversion where needed, and save interpretations in
7236          --  case operands are overloaded. If the context is a VMS operation,
7237          --  assert that the conversion is legal (the operands have the proper
7238          --  types to select the VMS intrinsic). Note that in rare cases the
7239          --  VMS operators may be visible, but the default System is being used
7240          --  and Address is a private type.
7241
7242          Arg1 := Convert_To (Typ, Left_Opnd  (N));
7243          Arg2 := Convert_To (Typ, Right_Opnd (N));
7244
7245          if Nkind (Arg1) = N_Type_Conversion then
7246             Save_Interps (Left_Opnd (N), Expression (Arg1));
7247
7248             if Is_VMS_Operator (Orig_Op) then
7249                Set_Conversion_OK (Arg1);
7250             end if;
7251          else
7252             Save_Interps (Left_Opnd (N), Arg1);
7253          end if;
7254
7255          if Nkind (Arg2) = N_Type_Conversion then
7256             Save_Interps (Right_Opnd (N), Expression (Arg2));
7257
7258             if Is_VMS_Operator (Orig_Op) then
7259                Set_Conversion_OK (Arg2);
7260             end if;
7261          else
7262             Save_Interps (Right_Opnd (N), Arg2);
7263          end if;
7264
7265          Rewrite (Left_Opnd  (N), Arg1);
7266          Rewrite (Right_Opnd (N), Arg2);
7267          Analyze (Arg1);
7268          Analyze (Arg2);
7269          Resolve_Arithmetic_Op (N, Typ);
7270
7271       else
7272          Resolve_Arithmetic_Op (N, Typ);
7273       end if;
7274    end Resolve_Intrinsic_Operator;
7275
7276    --------------------------------------
7277    -- Resolve_Intrinsic_Unary_Operator --
7278    --------------------------------------
7279
7280    procedure Resolve_Intrinsic_Unary_Operator
7281      (N   : Node_Id;
7282       Typ : Entity_Id)
7283    is
7284       Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
7285       Op   : Entity_Id;
7286       Arg2 : Node_Id;
7287
7288    begin
7289       Op := Entity (N);
7290       while Scope (Op) /= Standard_Standard loop
7291          Op := Homonym (Op);
7292          pragma Assert (Present (Op));
7293       end loop;
7294
7295       Set_Entity (N, Op);
7296
7297       if Is_Private_Type (Typ) then
7298          Arg2 := Unchecked_Convert_To (Btyp, Right_Opnd (N));
7299          Save_Interps (Right_Opnd (N), Expression (Arg2));
7300
7301          Set_Right_Opnd (N, Arg2);
7302
7303          Set_Etype (N, Btyp);
7304          Rewrite (N, Unchecked_Convert_To (Typ, N));
7305          Resolve (N, Typ);
7306
7307       else
7308          Resolve_Unary_Op (N, Typ);
7309       end if;
7310    end Resolve_Intrinsic_Unary_Operator;
7311
7312    ------------------------
7313    -- Resolve_Logical_Op --
7314    ------------------------
7315
7316    procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id) is
7317       B_Typ : Entity_Id;
7318
7319    begin
7320       Check_No_Direct_Boolean_Operators (N);
7321
7322       --  Predefined operations on scalar types yield the base type. On the
7323       --  other hand, logical operations on arrays yield the type of the
7324       --  arguments (and the context).
7325
7326       if Is_Array_Type (Typ) then
7327          B_Typ := Typ;
7328       else
7329          B_Typ := Base_Type (Typ);
7330       end if;
7331
7332       --  OK if this is a VMS-specific intrinsic operation
7333
7334       if Is_VMS_Operator (Entity (N)) then
7335          null;
7336
7337       --  The following test is required because the operands of the operation
7338       --  may be literals, in which case the resulting type appears to be
7339       --  compatible with a signed integer type, when in fact it is compatible
7340       --  only with modular types. If the context itself is universal, the
7341       --  operation is illegal.
7342
7343       elsif not Valid_Boolean_Arg (Typ) then
7344          Error_Msg_N ("invalid context for logical operation", N);
7345          Set_Etype (N, Any_Type);
7346          return;
7347
7348       elsif Typ = Any_Modular then
7349          Error_Msg_N
7350            ("no modular type available in this context", N);
7351          Set_Etype (N, Any_Type);
7352          return;
7353
7354       elsif Is_Modular_Integer_Type (Typ)
7355         and then Etype (Left_Opnd (N)) = Universal_Integer
7356         and then Etype (Right_Opnd (N)) = Universal_Integer
7357       then
7358          Check_For_Visible_Operator (N, B_Typ);
7359       end if;
7360
7361       --  Replace AND by AND THEN, or OR by OR ELSE, if Short_Circuit_And_Or
7362       --  is active and the result type is standard Boolean (do not mess with
7363       --  ops that return a nonstandard Boolean type, because something strange
7364       --  is going on).
7365
7366       --  Note: you might expect this replacement to be done during expansion,
7367       --  but that doesn't work, because when the pragma Short_Circuit_And_Or
7368       --  is used, no part of the right operand of an "and" or "or" operator
7369       --  should be executed if the left operand would short-circuit the
7370       --  evaluation of the corresponding "and then" or "or else". If we left
7371       --  the replacement to expansion time, then run-time checks associated
7372       --  with such operands would be evaluated unconditionally, due to being
7373       --  before the condition prior to the rewriting as short-circuit forms
7374       --  during expansion.
7375
7376       if Short_Circuit_And_Or
7377         and then B_Typ = Standard_Boolean
7378         and then Nkind_In (N, N_Op_And, N_Op_Or)
7379       then
7380          if Nkind (N) = N_Op_And then
7381             Rewrite (N,
7382               Make_And_Then (Sloc (N),
7383                 Left_Opnd  => Relocate_Node (Left_Opnd (N)),
7384                 Right_Opnd => Relocate_Node (Right_Opnd (N))));
7385             Analyze_And_Resolve (N, B_Typ);
7386
7387          --  Case of OR changed to OR ELSE
7388
7389          else
7390             Rewrite (N,
7391               Make_Or_Else (Sloc (N),
7392                 Left_Opnd  => Relocate_Node (Left_Opnd (N)),
7393                 Right_Opnd => Relocate_Node (Right_Opnd (N))));
7394             Analyze_And_Resolve (N, B_Typ);
7395          end if;
7396
7397          --  Return now, since analysis of the rewritten ops will take care of
7398          --  other reference bookkeeping and expression folding.
7399
7400          return;
7401       end if;
7402
7403       Resolve (Left_Opnd (N), B_Typ);
7404       Resolve (Right_Opnd (N), B_Typ);
7405
7406       Check_Unset_Reference (Left_Opnd  (N));
7407       Check_Unset_Reference (Right_Opnd (N));
7408
7409       Set_Etype (N, B_Typ);
7410       Generate_Operator_Reference (N, B_Typ);
7411       Eval_Logical_Op (N);
7412
7413       --  In SPARK, logical operations AND, OR and XOR for arrays are defined
7414       --  only when both operands have same static lower and higher bounds. Of
7415       --  course the types have to match, so only check if operands are
7416       --  compatible and the node itself has no errors.
7417
7418       if Is_Array_Type (B_Typ)
7419         and then Nkind (N) in N_Binary_Op
7420       then
7421          declare
7422             Left_Typ  : constant Node_Id := Etype (Left_Opnd (N));
7423             Right_Typ : constant Node_Id := Etype (Right_Opnd (N));
7424
7425          begin
7426             --  Protect call to Matching_Static_Array_Bounds to avoid costly
7427             --  operation if not needed.
7428
7429             if Restriction_Check_Required (SPARK)
7430               and then Base_Type (Left_Typ) = Base_Type (Right_Typ)
7431               and then Left_Typ /= Any_Composite  --  or Left_Opnd in error
7432               and then Right_Typ /= Any_Composite  --  or Right_Opnd in error
7433               and then not Matching_Static_Array_Bounds (Left_Typ, Right_Typ)
7434             then
7435                Check_SPARK_Restriction
7436                  ("array types should have matching static bounds", N);
7437             end if;
7438          end;
7439       end if;
7440    end Resolve_Logical_Op;
7441
7442    ---------------------------
7443    -- Resolve_Membership_Op --
7444    ---------------------------
7445
7446    --  The context can only be a boolean type, and does not determine the
7447    --  arguments. Arguments should be unambiguous, but the preference rule for
7448    --  universal types applies.
7449
7450    procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id) is
7451       pragma Warnings (Off, Typ);
7452
7453       L : constant Node_Id := Left_Opnd  (N);
7454       R : constant Node_Id := Right_Opnd (N);
7455       T : Entity_Id;
7456
7457       procedure Resolve_Set_Membership;
7458       --  Analysis has determined a unique type for the left operand. Use it to
7459       --  resolve the disjuncts.
7460
7461       ----------------------------
7462       -- Resolve_Set_Membership --
7463       ----------------------------
7464
7465       procedure Resolve_Set_Membership is
7466          Alt : Node_Id;
7467
7468       begin
7469          Resolve (L, Etype (L));
7470
7471          Alt := First (Alternatives (N));
7472          while Present (Alt) loop
7473
7474             --  Alternative is an expression, a range
7475             --  or a subtype mark.
7476
7477             if not Is_Entity_Name (Alt)
7478               or else not Is_Type (Entity (Alt))
7479             then
7480                Resolve (Alt, Etype (L));
7481             end if;
7482
7483             Next (Alt);
7484          end loop;
7485       end Resolve_Set_Membership;
7486
7487    --  Start of processing for Resolve_Membership_Op
7488
7489    begin
7490       if L = Error or else R = Error then
7491          return;
7492       end if;
7493
7494       if Present (Alternatives (N)) then
7495          Resolve_Set_Membership;
7496          return;
7497
7498       elsif not Is_Overloaded (R)
7499         and then
7500           (Etype (R) = Universal_Integer
7501              or else
7502            Etype (R) = Universal_Real)
7503         and then Is_Overloaded (L)
7504       then
7505          T := Etype (R);
7506
7507       --  Ada 2005 (AI-251): Support the following case:
7508
7509       --      type I is interface;
7510       --      type T is tagged ...
7511
7512       --      function Test (O : I'Class) is
7513       --      begin
7514       --         return O in T'Class.
7515       --      end Test;
7516
7517       --  In this case we have nothing else to do. The membership test will be
7518       --  done at run time.
7519
7520       elsif Ada_Version >= Ada_2005
7521         and then Is_Class_Wide_Type (Etype (L))
7522         and then Is_Interface (Etype (L))
7523         and then Is_Class_Wide_Type (Etype (R))
7524         and then not Is_Interface (Etype (R))
7525       then
7526          return;
7527       else
7528          T := Intersect_Types (L, R);
7529       end if;
7530
7531       --  If mixed-mode operations are present and operands are all literal,
7532       --  the only interpretation involves Duration, which is probably not
7533       --  the intention of the programmer.
7534
7535       if T = Any_Fixed then
7536          T := Unique_Fixed_Point_Type (N);
7537
7538          if T = Any_Type then
7539             return;
7540          end if;
7541       end if;
7542
7543       Resolve (L, T);
7544       Check_Unset_Reference (L);
7545
7546       if Nkind (R) = N_Range
7547         and then not Is_Scalar_Type (T)
7548       then
7549          Error_Msg_N ("scalar type required for range", R);
7550       end if;
7551
7552       if Is_Entity_Name (R) then
7553          Freeze_Expression (R);
7554       else
7555          Resolve (R, T);
7556          Check_Unset_Reference (R);
7557       end if;
7558
7559       Eval_Membership_Op (N);
7560    end Resolve_Membership_Op;
7561
7562    ------------------
7563    -- Resolve_Null --
7564    ------------------
7565
7566    procedure Resolve_Null (N : Node_Id; Typ : Entity_Id) is
7567       Loc : constant Source_Ptr := Sloc (N);
7568
7569    begin
7570       --  Handle restriction against anonymous null access values This
7571       --  restriction can be turned off using -gnatdj.
7572
7573       --  Ada 2005 (AI-231): Remove restriction
7574
7575       if Ada_Version < Ada_2005
7576         and then not Debug_Flag_J
7577         and then Ekind (Typ) = E_Anonymous_Access_Type
7578         and then Comes_From_Source (N)
7579       then
7580          --  In the common case of a call which uses an explicitly null value
7581          --  for an access parameter, give specialized error message.
7582
7583          if Nkind_In (Parent (N), N_Procedure_Call_Statement,
7584                                   N_Function_Call)
7585          then
7586             Error_Msg_N
7587               ("null is not allowed as argument for an access parameter", N);
7588
7589          --  Standard message for all other cases (are there any?)
7590
7591          else
7592             Error_Msg_N
7593               ("null cannot be of an anonymous access type", N);
7594          end if;
7595       end if;
7596
7597       --  Ada 2005 (AI-231): Generate the null-excluding check in case of
7598       --  assignment to a null-excluding object
7599
7600       if Ada_Version >= Ada_2005
7601         and then Can_Never_Be_Null (Typ)
7602         and then Nkind (Parent (N)) = N_Assignment_Statement
7603       then
7604          if not Inside_Init_Proc then
7605             Insert_Action
7606               (Compile_Time_Constraint_Error (N,
7607                  "(Ada 2005) null not allowed in null-excluding objects?"),
7608                Make_Raise_Constraint_Error (Loc,
7609                  Reason => CE_Access_Check_Failed));
7610          else
7611             Insert_Action (N,
7612               Make_Raise_Constraint_Error (Loc,
7613                 Reason => CE_Access_Check_Failed));
7614          end if;
7615       end if;
7616
7617       --  In a distributed context, null for a remote access to subprogram may
7618       --  need to be replaced with a special record aggregate. In this case,
7619       --  return after having done the transformation.
7620
7621       if (Ekind (Typ) = E_Record_Type
7622            or else Is_Remote_Access_To_Subprogram_Type (Typ))
7623         and then Remote_AST_Null_Value (N, Typ)
7624       then
7625          return;
7626       end if;
7627
7628       --  The null literal takes its type from the context
7629
7630       Set_Etype (N, Typ);
7631    end Resolve_Null;
7632
7633    -----------------------
7634    -- Resolve_Op_Concat --
7635    -----------------------
7636
7637    procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id) is
7638
7639       --  We wish to avoid deep recursion, because concatenations are often
7640       --  deeply nested, as in A&B&...&Z. Therefore, we walk down the left
7641       --  operands nonrecursively until we find something that is not a simple
7642       --  concatenation (A in this case). We resolve that, and then walk back
7643       --  up the tree following Parent pointers, calling Resolve_Op_Concat_Rest
7644       --  to do the rest of the work at each level. The Parent pointers allow
7645       --  us to avoid recursion, and thus avoid running out of memory. See also
7646       --  Sem_Ch4.Analyze_Concatenation, where a similar approach is used.
7647
7648       NN  : Node_Id := N;
7649       Op1 : Node_Id;
7650
7651    begin
7652       --  The following code is equivalent to:
7653
7654       --    Resolve_Op_Concat_First (NN, Typ);
7655       --    Resolve_Op_Concat_Arg (N, ...);
7656       --    Resolve_Op_Concat_Rest (N, Typ);
7657
7658       --  where the Resolve_Op_Concat_Arg call recurses back here if the left
7659       --  operand is a concatenation.
7660
7661       --  Walk down left operands
7662
7663       loop
7664          Resolve_Op_Concat_First (NN, Typ);
7665          Op1 := Left_Opnd (NN);
7666          exit when not (Nkind (Op1) = N_Op_Concat
7667                          and then not Is_Array_Type (Component_Type (Typ))
7668                          and then Entity (Op1) = Entity (NN));
7669          NN := Op1;
7670       end loop;
7671
7672       --  Now (given the above example) NN is A&B and Op1 is A
7673
7674       --  First resolve Op1 ...
7675
7676       Resolve_Op_Concat_Arg (NN, Op1, Typ, Is_Component_Left_Opnd  (NN));
7677
7678       --  ... then walk NN back up until we reach N (where we started), calling
7679       --  Resolve_Op_Concat_Rest along the way.
7680
7681       loop
7682          Resolve_Op_Concat_Rest (NN, Typ);
7683          exit when NN = N;
7684          NN := Parent (NN);
7685       end loop;
7686
7687       if Base_Type (Etype (N)) /= Standard_String then
7688          Check_SPARK_Restriction
7689            ("result of concatenation should have type String", N);
7690       end if;
7691    end Resolve_Op_Concat;
7692
7693    ---------------------------
7694    -- Resolve_Op_Concat_Arg --
7695    ---------------------------
7696
7697    procedure Resolve_Op_Concat_Arg
7698      (N       : Node_Id;
7699       Arg     : Node_Id;
7700       Typ     : Entity_Id;
7701       Is_Comp : Boolean)
7702    is
7703       Btyp : constant Entity_Id := Base_Type (Typ);
7704       Ctyp : constant Entity_Id := Component_Type (Typ);
7705
7706    begin
7707       if In_Instance then
7708          if Is_Comp
7709            or else (not Is_Overloaded (Arg)
7710                      and then Etype (Arg) /= Any_Composite
7711                      and then Covers (Ctyp, Etype (Arg)))
7712          then
7713             Resolve (Arg, Ctyp);
7714          else
7715             Resolve (Arg, Btyp);
7716          end if;
7717
7718       --  If both Array & Array and Array & Component are visible, there is a
7719       --  potential ambiguity that must be reported.
7720
7721       elsif Has_Compatible_Type (Arg, Ctyp) then
7722          if Nkind (Arg) = N_Aggregate
7723            and then Is_Composite_Type (Ctyp)
7724          then
7725             if Is_Private_Type (Ctyp) then
7726                Resolve (Arg, Btyp);
7727
7728             --  If the operation is user-defined and not overloaded use its
7729             --  profile. The operation may be a renaming, in which case it has
7730             --  been rewritten, and we want the original profile.
7731
7732             elsif not Is_Overloaded (N)
7733               and then Comes_From_Source (Entity (Original_Node (N)))
7734               and then Ekind (Entity (Original_Node (N))) = E_Function
7735             then
7736                Resolve (Arg,
7737                  Etype
7738                    (Next_Formal (First_Formal (Entity (Original_Node (N))))));
7739                return;
7740
7741             --  Otherwise an aggregate may match both the array type and the
7742             --  component type.
7743
7744             else
7745                Error_Msg_N ("ambiguous aggregate must be qualified", Arg);
7746                Set_Etype (Arg, Any_Type);
7747             end if;
7748
7749          else
7750             if Is_Overloaded (Arg)
7751               and then Has_Compatible_Type (Arg, Typ)
7752               and then Etype (Arg) /= Any_Type
7753             then
7754                declare
7755                   I    : Interp_Index;
7756                   It   : Interp;
7757                   Func : Entity_Id;
7758
7759                begin
7760                   Get_First_Interp (Arg, I, It);
7761                   Func := It.Nam;
7762                   Get_Next_Interp (I, It);
7763
7764                   --  Special-case the error message when the overloading is
7765                   --  caused by a function that yields an array and can be
7766                   --  called without parameters.
7767
7768                   if It.Nam = Func then
7769                      Error_Msg_Sloc := Sloc (Func);
7770                      Error_Msg_N ("ambiguous call to function#", Arg);
7771                      Error_Msg_NE
7772                        ("\\interpretation as call yields&", Arg, Typ);
7773                      Error_Msg_NE
7774                        ("\\interpretation as indexing of call yields&",
7775                          Arg, Component_Type (Typ));
7776
7777                   else
7778                      Error_Msg_N ("ambiguous operand for concatenation!", Arg);
7779
7780                      Get_First_Interp (Arg, I, It);
7781                      while Present (It.Nam) loop
7782                         Error_Msg_Sloc := Sloc (It.Nam);
7783
7784                         if Base_Type (It.Typ) = Btyp
7785                              or else
7786                            Base_Type (It.Typ) = Base_Type (Ctyp)
7787                         then
7788                            Error_Msg_N -- CODEFIX
7789                              ("\\possible interpretation#", Arg);
7790                         end if;
7791
7792                         Get_Next_Interp (I, It);
7793                      end loop;
7794                   end if;
7795                end;
7796             end if;
7797
7798             Resolve (Arg, Component_Type (Typ));
7799
7800             if Nkind (Arg) = N_String_Literal then
7801                Set_Etype (Arg, Component_Type (Typ));
7802             end if;
7803
7804             if Arg = Left_Opnd (N) then
7805                Set_Is_Component_Left_Opnd (N);
7806             else
7807                Set_Is_Component_Right_Opnd (N);
7808             end if;
7809          end if;
7810
7811       else
7812          Resolve (Arg, Btyp);
7813       end if;
7814
7815       --  Concatenation is restricted in SPARK: each operand must be either a
7816       --  string literal, the name of a string constant, a static character or
7817       --  string expression, or another concatenation. Arg cannot be a
7818       --  concatenation here as callers of Resolve_Op_Concat_Arg call it
7819       --  separately on each final operand, past concatenation operations.
7820
7821       if Is_Character_Type (Etype (Arg)) then
7822          if not Is_Static_Expression (Arg) then
7823             Check_SPARK_Restriction
7824               ("character operand for concatenation should be static", Arg);
7825          end if;
7826
7827       elsif Is_String_Type (Etype (Arg)) then
7828          if not (Nkind_In (Arg, N_Identifier, N_Expanded_Name)
7829                   and then Is_Constant_Object (Entity (Arg)))
7830            and then not Is_Static_Expression (Arg)
7831          then
7832             Check_SPARK_Restriction
7833               ("string operand for concatenation should be static", Arg);
7834          end if;
7835
7836       --  Do not issue error on an operand that is neither a character nor a
7837       --  string, as the error is issued in Resolve_Op_Concat.
7838
7839       else
7840          null;
7841       end if;
7842
7843       Check_Unset_Reference (Arg);
7844    end Resolve_Op_Concat_Arg;
7845
7846    -----------------------------
7847    -- Resolve_Op_Concat_First --
7848    -----------------------------
7849
7850    procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id) is
7851       Btyp : constant Entity_Id := Base_Type (Typ);
7852       Op1  : constant Node_Id := Left_Opnd (N);
7853       Op2  : constant Node_Id := Right_Opnd (N);
7854
7855    begin
7856       --  The parser folds an enormous sequence of concatenations of string
7857       --  literals into "" & "...", where the Is_Folded_In_Parser flag is set
7858       --  in the right operand. If the expression resolves to a predefined "&"
7859       --  operator, all is well. Otherwise, the parser's folding is wrong, so
7860       --  we give an error. See P_Simple_Expression in Par.Ch4.
7861
7862       if Nkind (Op2) = N_String_Literal
7863         and then Is_Folded_In_Parser (Op2)
7864         and then Ekind (Entity (N)) = E_Function
7865       then
7866          pragma Assert (Nkind (Op1) = N_String_Literal  --  should be ""
7867                and then String_Length (Strval (Op1)) = 0);
7868          Error_Msg_N ("too many user-defined concatenations", N);
7869          return;
7870       end if;
7871
7872       Set_Etype (N, Btyp);
7873
7874       if Is_Limited_Composite (Btyp) then
7875          Error_Msg_N ("concatenation not available for limited array", N);
7876          Explain_Limited_Type (Btyp, N);
7877       end if;
7878    end Resolve_Op_Concat_First;
7879
7880    ----------------------------
7881    -- Resolve_Op_Concat_Rest --
7882    ----------------------------
7883
7884    procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id) is
7885       Op1  : constant Node_Id := Left_Opnd (N);
7886       Op2  : constant Node_Id := Right_Opnd (N);
7887
7888    begin
7889       Resolve_Op_Concat_Arg (N, Op2, Typ, Is_Component_Right_Opnd  (N));
7890
7891       Generate_Operator_Reference (N, Typ);
7892
7893       if Is_String_Type (Typ) then
7894          Eval_Concatenation (N);
7895       end if;
7896
7897       --  If this is not a static concatenation, but the result is a string
7898       --  type (and not an array of strings) ensure that static string operands
7899       --  have their subtypes properly constructed.
7900
7901       if Nkind (N) /= N_String_Literal
7902         and then Is_Character_Type (Component_Type (Typ))
7903       then
7904          Set_String_Literal_Subtype (Op1, Typ);
7905          Set_String_Literal_Subtype (Op2, Typ);
7906       end if;
7907    end Resolve_Op_Concat_Rest;
7908
7909    ----------------------
7910    -- Resolve_Op_Expon --
7911    ----------------------
7912
7913    procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id) is
7914       B_Typ : constant Entity_Id := Base_Type (Typ);
7915
7916    begin
7917       --  Catch attempts to do fixed-point exponentiation with universal
7918       --  operands, which is a case where the illegality is not caught during
7919       --  normal operator analysis.
7920
7921       if Is_Fixed_Point_Type (Typ) and then Comes_From_Source (N) then
7922          Error_Msg_N ("exponentiation not available for fixed point", N);
7923          return;
7924
7925       elsif Nkind (Parent (N)) in N_Op
7926         and then Is_Fixed_Point_Type (Etype (Parent (N)))
7927         and then Etype (N) = Universal_Real
7928         and then Comes_From_Source (N)
7929       then
7930          Error_Msg_N ("exponentiation not available for fixed point", N);
7931          return;
7932       end if;
7933
7934       if Comes_From_Source (N)
7935         and then Ekind (Entity (N)) = E_Function
7936         and then Is_Imported (Entity (N))
7937         and then Is_Intrinsic_Subprogram (Entity (N))
7938       then
7939          Resolve_Intrinsic_Operator (N, Typ);
7940          return;
7941       end if;
7942
7943       if Etype (Left_Opnd (N)) = Universal_Integer
7944         or else Etype (Left_Opnd (N)) = Universal_Real
7945       then
7946          Check_For_Visible_Operator (N, B_Typ);
7947       end if;
7948
7949       --  We do the resolution using the base type, because intermediate values
7950       --  in expressions always are of the base type, not a subtype of it.
7951
7952       Resolve (Left_Opnd (N), B_Typ);
7953       Resolve (Right_Opnd (N), Standard_Integer);
7954
7955       Check_Unset_Reference (Left_Opnd  (N));
7956       Check_Unset_Reference (Right_Opnd (N));
7957
7958       Set_Etype (N, B_Typ);
7959       Generate_Operator_Reference (N, B_Typ);
7960       Eval_Op_Expon (N);
7961
7962       --  Set overflow checking bit. Much cleverer code needed here eventually
7963       --  and perhaps the Resolve routines should be separated for the various
7964       --  arithmetic operations, since they will need different processing. ???
7965
7966       if Nkind (N) in N_Op then
7967          if not Overflow_Checks_Suppressed (Etype (N)) then
7968             Enable_Overflow_Check (N);
7969          end if;
7970       end if;
7971    end Resolve_Op_Expon;
7972
7973    --------------------
7974    -- Resolve_Op_Not --
7975    --------------------
7976
7977    procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id) is
7978       B_Typ : Entity_Id;
7979
7980       function Parent_Is_Boolean return Boolean;
7981       --  This function determines if the parent node is a boolean operator or
7982       --  operation (comparison op, membership test, or short circuit form) and
7983       --  the not in question is the left operand of this operation. Note that
7984       --  if the not is in parens, then false is returned.
7985
7986       -----------------------
7987       -- Parent_Is_Boolean --
7988       -----------------------
7989
7990       function Parent_Is_Boolean return Boolean is
7991       begin
7992          if Paren_Count (N) /= 0 then
7993             return False;
7994
7995          else
7996             case Nkind (Parent (N)) is
7997                when N_Op_And   |
7998                     N_Op_Eq    |
7999                     N_Op_Ge    |
8000                     N_Op_Gt    |
8001                     N_Op_Le    |
8002                     N_Op_Lt    |
8003                     N_Op_Ne    |
8004                     N_Op_Or    |
8005                     N_Op_Xor   |
8006                     N_In       |
8007                     N_Not_In   |
8008                     N_And_Then |
8009                     N_Or_Else  =>
8010
8011                   return Left_Opnd (Parent (N)) = N;
8012
8013                when others =>
8014                   return False;
8015             end case;
8016          end if;
8017       end Parent_Is_Boolean;
8018
8019    --  Start of processing for Resolve_Op_Not
8020
8021    begin
8022       --  Predefined operations on scalar types yield the base type. On the
8023       --  other hand, logical operations on arrays yield the type of the
8024       --  arguments (and the context).
8025
8026       if Is_Array_Type (Typ) then
8027          B_Typ := Typ;
8028       else
8029          B_Typ := Base_Type (Typ);
8030       end if;
8031
8032       if Is_VMS_Operator (Entity (N)) then
8033          null;
8034
8035       --  Straightforward case of incorrect arguments
8036
8037       elsif not Valid_Boolean_Arg (Typ) then
8038          Error_Msg_N ("invalid operand type for operator&", N);
8039          Set_Etype (N, Any_Type);
8040          return;
8041
8042       --  Special case of probable missing parens
8043
8044       elsif Typ = Universal_Integer or else Typ = Any_Modular then
8045          if Parent_Is_Boolean then
8046             Error_Msg_N
8047               ("operand of not must be enclosed in parentheses",
8048                Right_Opnd (N));
8049          else
8050             Error_Msg_N
8051               ("no modular type available in this context", N);
8052          end if;
8053
8054          Set_Etype (N, Any_Type);
8055          return;
8056
8057       --  OK resolution of NOT
8058
8059       else
8060          --  Warn if non-boolean types involved. This is a case like not a < b
8061          --  where a and b are modular, where we will get (not a) < b and most
8062          --  likely not (a < b) was intended.
8063
8064          if Warn_On_Questionable_Missing_Parens
8065            and then not Is_Boolean_Type (Typ)
8066            and then Parent_Is_Boolean
8067          then
8068             Error_Msg_N ("?not expression should be parenthesized here!", N);
8069          end if;
8070
8071          --  Warn on double negation if checking redundant constructs
8072
8073          if Warn_On_Redundant_Constructs
8074            and then Comes_From_Source (N)
8075            and then Comes_From_Source (Right_Opnd (N))
8076            and then Root_Type (Typ) = Standard_Boolean
8077            and then Nkind (Right_Opnd (N)) = N_Op_Not
8078          then
8079             Error_Msg_N ("redundant double negation?", N);
8080          end if;
8081
8082          --  Complete resolution and evaluation of NOT
8083
8084          Resolve (Right_Opnd (N), B_Typ);
8085          Check_Unset_Reference (Right_Opnd (N));
8086          Set_Etype (N, B_Typ);
8087          Generate_Operator_Reference (N, B_Typ);
8088          Eval_Op_Not (N);
8089       end if;
8090    end Resolve_Op_Not;
8091
8092    -----------------------------
8093    -- Resolve_Operator_Symbol --
8094    -----------------------------
8095
8096    --  Nothing to be done, all resolved already
8097
8098    procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id) is
8099       pragma Warnings (Off, N);
8100       pragma Warnings (Off, Typ);
8101
8102    begin
8103       null;
8104    end Resolve_Operator_Symbol;
8105
8106    ----------------------------------
8107    -- Resolve_Qualified_Expression --
8108    ----------------------------------
8109
8110    procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id) is
8111       pragma Warnings (Off, Typ);
8112
8113       Target_Typ : constant Entity_Id := Entity (Subtype_Mark (N));
8114       Expr       : constant Node_Id   := Expression (N);
8115
8116    begin
8117       Resolve (Expr, Target_Typ);
8118
8119       --  Protect call to Matching_Static_Array_Bounds to avoid costly
8120       --  operation if not needed.
8121
8122       if Restriction_Check_Required (SPARK)
8123         and then Is_Array_Type (Target_Typ)
8124         and then Is_Array_Type (Etype (Expr))
8125         and then Etype (Expr) /= Any_Composite  --  or else Expr in error
8126         and then not Matching_Static_Array_Bounds (Target_Typ, Etype (Expr))
8127       then
8128          Check_SPARK_Restriction
8129            ("array types should have matching static bounds", N);
8130       end if;
8131
8132       --  A qualified expression requires an exact match of the type, class-
8133       --  wide matching is not allowed. However, if the qualifying type is
8134       --  specific and the expression has a class-wide type, it may still be
8135       --  okay, since it can be the result of the expansion of a call to a
8136       --  dispatching function, so we also have to check class-wideness of the
8137       --  type of the expression's original node.
8138
8139       if (Is_Class_Wide_Type (Target_Typ)
8140            or else
8141              (Is_Class_Wide_Type (Etype (Expr))
8142                and then Is_Class_Wide_Type (Etype (Original_Node (Expr)))))
8143         and then Base_Type (Etype (Expr)) /= Base_Type (Target_Typ)
8144       then
8145          Wrong_Type (Expr, Target_Typ);
8146       end if;
8147
8148       --  If the target type is unconstrained, then we reset the type of the
8149       --  result from the type of the expression. For other cases, the actual
8150       --  subtype of the expression is the target type.
8151
8152       if Is_Composite_Type (Target_Typ)
8153         and then not Is_Constrained (Target_Typ)
8154       then
8155          Set_Etype (N, Etype (Expr));
8156       end if;
8157
8158       Eval_Qualified_Expression (N);
8159    end Resolve_Qualified_Expression;
8160
8161    -----------------------------------
8162    -- Resolve_Quantified_Expression --
8163    -----------------------------------
8164
8165    procedure Resolve_Quantified_Expression (N : Node_Id; Typ : Entity_Id) is
8166    begin
8167       if not Alfa_Mode then
8168
8169          --  If expansion is enabled, analysis is delayed until the expresssion
8170          --  is rewritten as a loop.
8171
8172          if Operating_Mode /= Check_Semantics then
8173             return;
8174          end if;
8175
8176          --  The loop structure is already resolved during its analysis, only
8177          --  the resolution of the condition needs to be done. Expansion is
8178          --  disabled so that checks and other generated code are inserted in
8179          --  the tree after expression has been rewritten as a loop.
8180
8181          Expander_Mode_Save_And_Set (False);
8182          Resolve (Condition (N), Typ);
8183          Expander_Mode_Restore;
8184
8185       --  In Alfa mode, we need normal expansion in order to properly introduce
8186       --  the necessary transient scopes.
8187
8188       else
8189          Resolve (Condition (N), Typ);
8190       end if;
8191    end Resolve_Quantified_Expression;
8192
8193    -------------------
8194    -- Resolve_Range --
8195    -------------------
8196
8197    procedure Resolve_Range (N : Node_Id; Typ : Entity_Id) is
8198       L : constant Node_Id := Low_Bound (N);
8199       H : constant Node_Id := High_Bound (N);
8200
8201       function First_Last_Ref return Boolean;
8202       --  Returns True if N is of the form X'First .. X'Last where X is the
8203       --  same entity for both attributes.
8204
8205       --------------------
8206       -- First_Last_Ref --
8207       --------------------
8208
8209       function First_Last_Ref return Boolean is
8210          Lorig : constant Node_Id := Original_Node (L);
8211          Horig : constant Node_Id := Original_Node (H);
8212
8213       begin
8214          if Nkind (Lorig) = N_Attribute_Reference
8215            and then Nkind (Horig) = N_Attribute_Reference
8216            and then Attribute_Name (Lorig) = Name_First
8217            and then Attribute_Name (Horig) = Name_Last
8218          then
8219             declare
8220                PL : constant Node_Id := Prefix (Lorig);
8221                PH : constant Node_Id := Prefix (Horig);
8222             begin
8223                if Is_Entity_Name (PL)
8224                  and then Is_Entity_Name (PH)
8225                  and then Entity (PL) = Entity (PH)
8226                then
8227                   return True;
8228                end if;
8229             end;
8230          end if;
8231
8232          return False;
8233       end First_Last_Ref;
8234
8235    --  Start of processing for Resolve_Range
8236
8237    begin
8238       Set_Etype (N, Typ);
8239       Resolve (L, Typ);
8240       Resolve (H, Typ);
8241
8242       --  Check for inappropriate range on unordered enumeration type
8243
8244       if Bad_Unordered_Enumeration_Reference (N, Typ)
8245
8246         --  Exclude X'First .. X'Last if X is the same entity for both
8247
8248         and then not First_Last_Ref
8249       then
8250          Error_Msg ("subrange of unordered enumeration type?", Sloc (N));
8251       end if;
8252
8253       Check_Unset_Reference (L);
8254       Check_Unset_Reference (H);
8255
8256       --  We have to check the bounds for being within the base range as
8257       --  required for a non-static context. Normally this is automatic and
8258       --  done as part of evaluating expressions, but the N_Range node is an
8259       --  exception, since in GNAT we consider this node to be a subexpression,
8260       --  even though in Ada it is not. The circuit in Sem_Eval could check for
8261       --  this, but that would put the test on the main evaluation path for
8262       --  expressions.
8263
8264       Check_Non_Static_Context (L);
8265       Check_Non_Static_Context (H);
8266
8267       --  Check for an ambiguous range over character literals. This will
8268       --  happen with a membership test involving only literals.
8269
8270       if Typ = Any_Character then
8271          Ambiguous_Character (L);
8272          Set_Etype (N, Any_Type);
8273          return;
8274       end if;
8275
8276       --  If bounds are static, constant-fold them, so size computations are
8277       --  identical between front-end and back-end. Do not perform this
8278       --  transformation while analyzing generic units, as type information
8279       --  would be lost when reanalyzing the constant node in the instance.
8280
8281       if Is_Discrete_Type (Typ) and then Full_Expander_Active then
8282          if Is_OK_Static_Expression (L) then
8283             Fold_Uint  (L, Expr_Value (L), Is_Static_Expression (L));
8284          end if;
8285
8286          if Is_OK_Static_Expression (H) then
8287             Fold_Uint  (H, Expr_Value (H), Is_Static_Expression (H));
8288          end if;
8289       end if;
8290    end Resolve_Range;
8291
8292    --------------------------
8293    -- Resolve_Real_Literal --
8294    --------------------------
8295
8296    procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id) is
8297       Actual_Typ : constant Entity_Id := Etype (N);
8298
8299    begin
8300       --  Special processing for fixed-point literals to make sure that the
8301       --  value is an exact multiple of small where this is required. We skip
8302       --  this for the universal real case, and also for generic types.
8303
8304       if Is_Fixed_Point_Type (Typ)
8305         and then Typ /= Universal_Fixed
8306         and then Typ /= Any_Fixed
8307         and then not Is_Generic_Type (Typ)
8308       then
8309          declare
8310             Val   : constant Ureal := Realval (N);
8311             Cintr : constant Ureal := Val / Small_Value (Typ);
8312             Cint  : constant Uint  := UR_Trunc (Cintr);
8313             Den   : constant Uint  := Norm_Den (Cintr);
8314             Stat  : Boolean;
8315
8316          begin
8317             --  Case of literal is not an exact multiple of the Small
8318
8319             if Den /= 1 then
8320
8321                --  For a source program literal for a decimal fixed-point type,
8322                --  this is statically illegal (RM 4.9(36)).
8323
8324                if Is_Decimal_Fixed_Point_Type (Typ)
8325                  and then Actual_Typ = Universal_Real
8326                  and then Comes_From_Source (N)
8327                then
8328                   Error_Msg_N ("value has extraneous low order digits", N);
8329                end if;
8330
8331                --  Generate a warning if literal from source
8332
8333                if Is_Static_Expression (N)
8334                  and then Warn_On_Bad_Fixed_Value
8335                then
8336                   Error_Msg_N
8337                     ("?static fixed-point value is not a multiple of Small!",
8338                      N);
8339                end if;
8340
8341                --  Replace literal by a value that is the exact representation
8342                --  of a value of the type, i.e. a multiple of the small value,
8343                --  by truncation, since Machine_Rounds is false for all GNAT
8344                --  fixed-point types (RM 4.9(38)).
8345
8346                Stat := Is_Static_Expression (N);
8347                Rewrite (N,
8348                  Make_Real_Literal (Sloc (N),
8349                    Realval => Small_Value (Typ) * Cint));
8350
8351                Set_Is_Static_Expression (N, Stat);
8352             end if;
8353
8354             --  In all cases, set the corresponding integer field
8355
8356             Set_Corresponding_Integer_Value (N, Cint);
8357          end;
8358       end if;
8359
8360       --  Now replace the actual type by the expected type as usual
8361
8362       Set_Etype (N, Typ);
8363       Eval_Real_Literal (N);
8364    end Resolve_Real_Literal;
8365
8366    -----------------------
8367    -- Resolve_Reference --
8368    -----------------------
8369
8370    procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id) is
8371       P : constant Node_Id := Prefix (N);
8372
8373    begin
8374       --  Replace general access with specific type
8375
8376       if Ekind (Etype (N)) = E_Allocator_Type then
8377          Set_Etype (N, Base_Type (Typ));
8378       end if;
8379
8380       Resolve (P, Designated_Type (Etype (N)));
8381
8382       --  If we are taking the reference of a volatile entity, then treat it as
8383       --  a potential modification of this entity. This is too conservative,
8384       --  but necessary because remove side effects can cause transformations
8385       --  of normal assignments into reference sequences that otherwise fail to
8386       --  notice the modification.
8387
8388       if Is_Entity_Name (P) and then Treat_As_Volatile (Entity (P)) then
8389          Note_Possible_Modification (P, Sure => False);
8390       end if;
8391    end Resolve_Reference;
8392
8393    --------------------------------
8394    -- Resolve_Selected_Component --
8395    --------------------------------
8396
8397    procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id) is
8398       Comp  : Entity_Id;
8399       Comp1 : Entity_Id        := Empty; -- prevent junk warning
8400       P     : constant Node_Id := Prefix  (N);
8401       S     : constant Node_Id := Selector_Name (N);
8402       T     : Entity_Id        := Etype (P);
8403       I     : Interp_Index;
8404       I1    : Interp_Index := 0; -- prevent junk warning
8405       It    : Interp;
8406       It1   : Interp;
8407       Found : Boolean;
8408
8409       function Init_Component return Boolean;
8410       --  Check whether this is the initialization of a component within an
8411       --  init proc (by assignment or call to another init proc). If true,
8412       --  there is no need for a discriminant check.
8413
8414       --------------------
8415       -- Init_Component --
8416       --------------------
8417
8418       function Init_Component return Boolean is
8419       begin
8420          return Inside_Init_Proc
8421            and then Nkind (Prefix (N)) = N_Identifier
8422            and then Chars (Prefix (N)) = Name_uInit
8423            and then Nkind (Parent (Parent (N))) = N_Case_Statement_Alternative;
8424       end Init_Component;
8425
8426    --  Start of processing for Resolve_Selected_Component
8427
8428    begin
8429       if Is_Overloaded (P) then
8430
8431          --  Use the context type to select the prefix that has a selector
8432          --  of the correct name and type.
8433
8434          Found := False;
8435          Get_First_Interp (P, I, It);
8436
8437          Search : while Present (It.Typ) loop
8438             if Is_Access_Type (It.Typ) then
8439                T := Designated_Type (It.Typ);
8440             else
8441                T := It.Typ;
8442             end if;
8443
8444             --  Locate selected component. For a private prefix the selector
8445             --  can denote a discriminant.
8446
8447             if Is_Record_Type (T) or else Is_Private_Type (T) then
8448
8449                --  The visible components of a class-wide type are those of
8450                --  the root type.
8451
8452                if Is_Class_Wide_Type (T) then
8453                   T := Etype (T);
8454                end if;
8455
8456                Comp := First_Entity (T);
8457                while Present (Comp) loop
8458                   if Chars (Comp) = Chars (S)
8459                     and then Covers (Etype (Comp), Typ)
8460                   then
8461                      if not Found then
8462                         Found := True;
8463                         I1  := I;
8464                         It1 := It;
8465                         Comp1 := Comp;
8466
8467                      else
8468                         It := Disambiguate (P, I1, I, Any_Type);
8469
8470                         if It = No_Interp then
8471                            Error_Msg_N
8472                              ("ambiguous prefix for selected component",  N);
8473                            Set_Etype (N, Typ);
8474                            return;
8475
8476                         else
8477                            It1 := It;
8478
8479                            --  There may be an implicit dereference. Retrieve
8480                            --  designated record type.
8481
8482                            if Is_Access_Type (It1.Typ) then
8483                               T := Designated_Type (It1.Typ);
8484                            else
8485                               T := It1.Typ;
8486                            end if;
8487
8488                            if Scope (Comp1) /= T then
8489
8490                               --  Resolution chooses the new interpretation.
8491                               --  Find the component with the right name.
8492
8493                               Comp1 := First_Entity (T);
8494                               while Present (Comp1)
8495                                 and then Chars (Comp1) /= Chars (S)
8496                               loop
8497                                  Comp1 := Next_Entity (Comp1);
8498                               end loop;
8499                            end if;
8500
8501                            exit Search;
8502                         end if;
8503                      end if;
8504                   end if;
8505
8506                   Comp := Next_Entity (Comp);
8507                end loop;
8508             end if;
8509
8510             Get_Next_Interp (I, It);
8511          end loop Search;
8512
8513          Resolve (P, It1.Typ);
8514          Set_Etype (N, Typ);
8515          Set_Entity_With_Style_Check (S, Comp1);
8516
8517       else
8518          --  Resolve prefix with its type
8519
8520          Resolve (P, T);
8521       end if;
8522
8523       --  Generate cross-reference. We needed to wait until full overloading
8524       --  resolution was complete to do this, since otherwise we can't tell if
8525       --  we are an lvalue or not.
8526
8527       if May_Be_Lvalue (N) then
8528          Generate_Reference (Entity (S), S, 'm');
8529       else
8530          Generate_Reference (Entity (S), S, 'r');
8531       end if;
8532
8533       --  If prefix is an access type, the node will be transformed into an
8534       --  explicit dereference during expansion. The type of the node is the
8535       --  designated type of that of the prefix.
8536
8537       if Is_Access_Type (Etype (P)) then
8538          T := Designated_Type (Etype (P));
8539          Check_Fully_Declared_Prefix (T, P);
8540       else
8541          T := Etype (P);
8542       end if;
8543
8544       if Has_Discriminants (T)
8545         and then Ekind_In (Entity (S), E_Component, E_Discriminant)
8546         and then Present (Original_Record_Component (Entity (S)))
8547         and then Ekind (Original_Record_Component (Entity (S))) = E_Component
8548         and then Present (Discriminant_Checking_Func
8549                            (Original_Record_Component (Entity (S))))
8550         and then not Discriminant_Checks_Suppressed (T)
8551         and then not Init_Component
8552       then
8553          Set_Do_Discriminant_Check (N);
8554       end if;
8555
8556       if Ekind (Entity (S)) = E_Void then
8557          Error_Msg_N ("premature use of component", S);
8558       end if;
8559
8560       --  If the prefix is a record conversion, this may be a renamed
8561       --  discriminant whose bounds differ from those of the original
8562       --  one, so we must ensure that a range check is performed.
8563
8564       if Nkind (P) = N_Type_Conversion
8565         and then Ekind (Entity (S)) = E_Discriminant
8566         and then Is_Discrete_Type (Typ)
8567       then
8568          Set_Etype (N, Base_Type (Typ));
8569       end if;
8570
8571       --  Note: No Eval processing is required, because the prefix is of a
8572       --  record type, or protected type, and neither can possibly be static.
8573
8574       --  If the array type is atomic, and is packed, and we are in a left side
8575       --  context, then this is worth a warning, since we have a situation
8576       --  where the access to the component may cause extra read/writes of the
8577       --  atomic array object, which could be considered unexpected.
8578
8579       if Nkind (N) = N_Selected_Component
8580         and then (Is_Atomic (T)
8581                    or else (Is_Entity_Name (Prefix (N))
8582                              and then Is_Atomic (Entity (Prefix (N)))))
8583         and then Is_Packed (T)
8584         and then Is_LHS (N)
8585       then
8586          Error_Msg_N ("?assignment to component of packed atomic record",
8587                       Prefix (N));
8588          Error_Msg_N ("?\may cause unexpected accesses to atomic object",
8589                       Prefix (N));
8590       end if;
8591    end Resolve_Selected_Component;
8592
8593    -------------------
8594    -- Resolve_Shift --
8595    -------------------
8596
8597    procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id) is
8598       B_Typ : constant Entity_Id := Base_Type (Typ);
8599       L     : constant Node_Id   := Left_Opnd  (N);
8600       R     : constant Node_Id   := Right_Opnd (N);
8601
8602    begin
8603       --  We do the resolution using the base type, because intermediate values
8604       --  in expressions always are of the base type, not a subtype of it.
8605
8606       Resolve (L, B_Typ);
8607       Resolve (R, Standard_Natural);
8608
8609       Check_Unset_Reference (L);
8610       Check_Unset_Reference (R);
8611
8612       Set_Etype (N, B_Typ);
8613       Generate_Operator_Reference (N, B_Typ);
8614       Eval_Shift (N);
8615    end Resolve_Shift;
8616
8617    ---------------------------
8618    -- Resolve_Short_Circuit --
8619    ---------------------------
8620
8621    procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id) is
8622       B_Typ : constant Entity_Id := Base_Type (Typ);
8623       L     : constant Node_Id   := Left_Opnd  (N);
8624       R     : constant Node_Id   := Right_Opnd (N);
8625
8626    begin
8627       Resolve (L, B_Typ);
8628       Resolve (R, B_Typ);
8629
8630       --  Check for issuing warning for always False assert/check, this happens
8631       --  when assertions are turned off, in which case the pragma Assert/Check
8632       --  was transformed into:
8633
8634       --     if False and then <condition> then ...
8635
8636       --  and we detect this pattern
8637
8638       if Warn_On_Assertion_Failure
8639         and then Is_Entity_Name (R)
8640         and then Entity (R) = Standard_False
8641         and then Nkind (Parent (N)) = N_If_Statement
8642         and then Nkind (N) = N_And_Then
8643         and then Is_Entity_Name (L)
8644         and then Entity (L) = Standard_False
8645       then
8646          declare
8647             Orig : constant Node_Id := Original_Node (Parent (N));
8648
8649          begin
8650             if Nkind (Orig) = N_Pragma
8651               and then Pragma_Name (Orig) = Name_Assert
8652             then
8653                --  Don't want to warn if original condition is explicit False
8654
8655                declare
8656                   Expr : constant Node_Id :=
8657                            Original_Node
8658                              (Expression
8659                                (First (Pragma_Argument_Associations (Orig))));
8660                begin
8661                   if Is_Entity_Name (Expr)
8662                     and then Entity (Expr) = Standard_False
8663                   then
8664                      null;
8665                   else
8666                      --  Issue warning. We do not want the deletion of the
8667                      --  IF/AND-THEN to take this message with it. We achieve
8668                      --  this by making sure that the expanded code points to
8669                      --  the Sloc of the expression, not the original pragma.
8670
8671                      Error_Msg_N
8672                        ("?assertion would fail at run time!",
8673                         Expression
8674                           (First (Pragma_Argument_Associations (Orig))));
8675                   end if;
8676                end;
8677
8678             --  Similar processing for Check pragma
8679
8680             elsif Nkind (Orig) = N_Pragma
8681               and then Pragma_Name (Orig) = Name_Check
8682             then
8683                --  Don't want to warn if original condition is explicit False
8684
8685                declare
8686                   Expr : constant Node_Id :=
8687                            Original_Node
8688                              (Expression
8689                                 (Next (First
8690                                   (Pragma_Argument_Associations (Orig)))));
8691                begin
8692                   if Is_Entity_Name (Expr)
8693                     and then Entity (Expr) = Standard_False
8694                   then
8695                      null;
8696                   else
8697                      Error_Msg_N
8698                        ("?check would fail at run time!",
8699                         Expression
8700                           (Last (Pragma_Argument_Associations (Orig))));
8701                   end if;
8702                end;
8703             end if;
8704          end;
8705       end if;
8706
8707       --  Continue with processing of short circuit
8708
8709       Check_Unset_Reference (L);
8710       Check_Unset_Reference (R);
8711
8712       Set_Etype (N, B_Typ);
8713       Eval_Short_Circuit (N);
8714    end Resolve_Short_Circuit;
8715
8716    -------------------
8717    -- Resolve_Slice --
8718    -------------------
8719
8720    procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id) is
8721       Name       : constant Node_Id := Prefix (N);
8722       Drange     : constant Node_Id := Discrete_Range (N);
8723       Array_Type : Entity_Id        := Empty;
8724       Index      : Node_Id;
8725
8726    begin
8727       if Is_Overloaded (Name) then
8728
8729          --  Use the context type to select the prefix that yields the correct
8730          --  array type.
8731
8732          declare
8733             I      : Interp_Index;
8734             I1     : Interp_Index := 0;
8735             It     : Interp;
8736             P      : constant Node_Id := Prefix (N);
8737             Found  : Boolean := False;
8738
8739          begin
8740             Get_First_Interp (P, I,  It);
8741             while Present (It.Typ) loop
8742                if (Is_Array_Type (It.Typ)
8743                     and then Covers (Typ,  It.Typ))
8744                  or else (Is_Access_Type (It.Typ)
8745                            and then Is_Array_Type (Designated_Type (It.Typ))
8746                            and then Covers (Typ, Designated_Type (It.Typ)))
8747                then
8748                   if Found then
8749                      It := Disambiguate (P, I1, I, Any_Type);
8750
8751                      if It = No_Interp then
8752                         Error_Msg_N ("ambiguous prefix for slicing",  N);
8753                         Set_Etype (N, Typ);
8754                         return;
8755                      else
8756                         Found := True;
8757                         Array_Type := It.Typ;
8758                         I1 := I;
8759                      end if;
8760                   else
8761                      Found := True;
8762                      Array_Type := It.Typ;
8763                      I1 := I;
8764                   end if;
8765                end if;
8766
8767                Get_Next_Interp (I, It);
8768             end loop;
8769          end;
8770
8771       else
8772          Array_Type := Etype (Name);
8773       end if;
8774
8775       Resolve (Name, Array_Type);
8776
8777       if Is_Access_Type (Array_Type) then
8778          Apply_Access_Check (N);
8779          Array_Type := Designated_Type (Array_Type);
8780
8781          --  If the prefix is an access to an unconstrained array, we must use
8782          --  the actual subtype of the object to perform the index checks. The
8783          --  object denoted by the prefix is implicit in the node, so we build
8784          --  an explicit representation for it in order to compute the actual
8785          --  subtype.
8786
8787          if not Is_Constrained (Array_Type) then
8788             Remove_Side_Effects (Prefix (N));
8789
8790             declare
8791                Obj : constant Node_Id :=
8792                        Make_Explicit_Dereference (Sloc (N),
8793                          Prefix => New_Copy_Tree (Prefix (N)));
8794             begin
8795                Set_Etype (Obj, Array_Type);
8796                Set_Parent (Obj, Parent (N));
8797                Array_Type := Get_Actual_Subtype (Obj);
8798             end;
8799          end if;
8800
8801       elsif Is_Entity_Name (Name)
8802         or else Nkind (Name) = N_Explicit_Dereference
8803         or else (Nkind (Name) = N_Function_Call
8804                   and then not Is_Constrained (Etype (Name)))
8805       then
8806          Array_Type := Get_Actual_Subtype (Name);
8807
8808       --  If the name is a selected component that depends on discriminants,
8809       --  build an actual subtype for it. This can happen only when the name
8810       --  itself is overloaded; otherwise the actual subtype is created when
8811       --  the selected component is analyzed.
8812
8813       elsif Nkind (Name) = N_Selected_Component
8814         and then Full_Analysis
8815         and then Depends_On_Discriminant (First_Index (Array_Type))
8816       then
8817          declare
8818             Act_Decl : constant Node_Id :=
8819                          Build_Actual_Subtype_Of_Component (Array_Type, Name);
8820          begin
8821             Insert_Action (N, Act_Decl);
8822             Array_Type := Defining_Identifier (Act_Decl);
8823          end;
8824
8825       --  Maybe this should just be "else", instead of checking for the
8826       --  specific case of slice??? This is needed for the case where the
8827       --  prefix is an Image attribute, which gets expanded to a slice, and so
8828       --  has a constrained subtype which we want to use for the slice range
8829       --  check applied below (the range check won't get done if the
8830       --  unconstrained subtype of the 'Image is used).
8831
8832       elsif Nkind (Name) = N_Slice then
8833          Array_Type := Etype (Name);
8834       end if;
8835
8836       --  If name was overloaded, set slice type correctly now
8837
8838       Set_Etype (N, Array_Type);
8839
8840       --  If the range is specified by a subtype mark, no resolution is
8841       --  necessary. Else resolve the bounds, and apply needed checks.
8842
8843       if not Is_Entity_Name (Drange) then
8844          Index := First_Index (Array_Type);
8845          Resolve (Drange, Base_Type (Etype (Index)));
8846
8847          if Nkind (Drange) = N_Range then
8848
8849             --  Ensure that side effects in the bounds are properly handled
8850
8851             Force_Evaluation (Low_Bound (Drange));
8852             Force_Evaluation (High_Bound (Drange));
8853
8854             --  Do not apply the range check to nodes associated with the
8855             --  frontend expansion of the dispatch table. We first check
8856             --  if Ada.Tags is already loaded to avoid the addition of an
8857             --  undesired dependence on such run-time unit.
8858
8859             if not Tagged_Type_Expansion
8860               or else not
8861                 (RTU_Loaded (Ada_Tags)
8862                   and then Nkind (Prefix (N)) = N_Selected_Component
8863                   and then Present (Entity (Selector_Name (Prefix (N))))
8864                   and then Entity (Selector_Name (Prefix (N))) =
8865                                          RTE_Record_Component (RE_Prims_Ptr))
8866             then
8867                Apply_Range_Check (Drange, Etype (Index));
8868             end if;
8869          end if;
8870       end if;
8871
8872       Set_Slice_Subtype (N);
8873
8874       --  Check bad use of type with predicates
8875
8876       if Has_Predicates (Etype (Drange)) then
8877          Bad_Predicated_Subtype_Use
8878            ("subtype& has predicate, not allowed in slice",
8879             Drange, Etype (Drange));
8880
8881       --  Otherwise here is where we check suspicious indexes
8882
8883       elsif Nkind (Drange) = N_Range then
8884          Warn_On_Suspicious_Index (Name, Low_Bound  (Drange));
8885          Warn_On_Suspicious_Index (Name, High_Bound (Drange));
8886       end if;
8887
8888       Eval_Slice (N);
8889    end Resolve_Slice;
8890
8891    ----------------------------
8892    -- Resolve_String_Literal --
8893    ----------------------------
8894
8895    procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id) is
8896       C_Typ      : constant Entity_Id  := Component_Type (Typ);
8897       R_Typ      : constant Entity_Id  := Root_Type (C_Typ);
8898       Loc        : constant Source_Ptr := Sloc (N);
8899       Str        : constant String_Id  := Strval (N);
8900       Strlen     : constant Nat        := String_Length (Str);
8901       Subtype_Id : Entity_Id;
8902       Need_Check : Boolean;
8903
8904    begin
8905       --  For a string appearing in a concatenation, defer creation of the
8906       --  string_literal_subtype until the end of the resolution of the
8907       --  concatenation, because the literal may be constant-folded away. This
8908       --  is a useful optimization for long concatenation expressions.
8909
8910       --  If the string is an aggregate built for a single character (which
8911       --  happens in a non-static context) or a is null string to which special
8912       --  checks may apply, we build the subtype. Wide strings must also get a
8913       --  string subtype if they come from a one character aggregate. Strings
8914       --  generated by attributes might be static, but it is often hard to
8915       --  determine whether the enclosing context is static, so we generate
8916       --  subtypes for them as well, thus losing some rarer optimizations ???
8917       --  Same for strings that come from a static conversion.
8918
8919       Need_Check :=
8920         (Strlen = 0 and then Typ /= Standard_String)
8921           or else Nkind (Parent (N)) /= N_Op_Concat
8922           or else (N /= Left_Opnd (Parent (N))
8923                     and then N /= Right_Opnd (Parent (N)))
8924           or else ((Typ = Standard_Wide_String
8925                       or else Typ = Standard_Wide_Wide_String)
8926                     and then Nkind (Original_Node (N)) /= N_String_Literal);
8927
8928       --  If the resolving type is itself a string literal subtype, we can just
8929       --  reuse it, since there is no point in creating another.
8930
8931       if Ekind (Typ) = E_String_Literal_Subtype then
8932          Subtype_Id := Typ;
8933
8934       elsif Nkind (Parent (N)) = N_Op_Concat
8935         and then not Need_Check
8936         and then not Nkind_In (Original_Node (N), N_Character_Literal,
8937                                                   N_Attribute_Reference,
8938                                                   N_Qualified_Expression,
8939                                                   N_Type_Conversion)
8940       then
8941          Subtype_Id := Typ;
8942
8943       --  Otherwise we must create a string literal subtype. Note that the
8944       --  whole idea of string literal subtypes is simply to avoid the need
8945       --  for building a full fledged array subtype for each literal.
8946
8947       else
8948          Set_String_Literal_Subtype (N, Typ);
8949          Subtype_Id := Etype (N);
8950       end if;
8951
8952       if Nkind (Parent (N)) /= N_Op_Concat
8953         or else Need_Check
8954       then
8955          Set_Etype (N, Subtype_Id);
8956          Eval_String_Literal (N);
8957       end if;
8958
8959       if Is_Limited_Composite (Typ)
8960         or else Is_Private_Composite (Typ)
8961       then
8962          Error_Msg_N ("string literal not available for private array", N);
8963          Set_Etype (N, Any_Type);
8964          return;
8965       end if;
8966
8967       --  The validity of a null string has been checked in the call to
8968       --  Eval_String_Literal.
8969
8970       if Strlen = 0 then
8971          return;
8972
8973       --  Always accept string literal with component type Any_Character, which
8974       --  occurs in error situations and in comparisons of literals, both of
8975       --  which should accept all literals.
8976
8977       elsif R_Typ = Any_Character then
8978          return;
8979
8980       --  If the type is bit-packed, then we always transform the string
8981       --  literal into a full fledged aggregate.
8982
8983       elsif Is_Bit_Packed_Array (Typ) then
8984          null;
8985
8986       --  Deal with cases of Wide_Wide_String, Wide_String, and String
8987
8988       else
8989          --  For Standard.Wide_Wide_String, or any other type whose component
8990          --  type is Standard.Wide_Wide_Character, we know that all the
8991          --  characters in the string must be acceptable, since the parser
8992          --  accepted the characters as valid character literals.
8993
8994          if R_Typ = Standard_Wide_Wide_Character then
8995             null;
8996
8997          --  For the case of Standard.String, or any other type whose component
8998          --  type is Standard.Character, we must make sure that there are no
8999          --  wide characters in the string, i.e. that it is entirely composed
9000          --  of characters in range of type Character.
9001
9002          --  If the string literal is the result of a static concatenation, the
9003          --  test has already been performed on the components, and need not be
9004          --  repeated.
9005
9006          elsif R_Typ = Standard_Character
9007            and then Nkind (Original_Node (N)) /= N_Op_Concat
9008          then
9009             for J in 1 .. Strlen loop
9010                if not In_Character_Range (Get_String_Char (Str, J)) then
9011
9012                   --  If we are out of range, post error. This is one of the
9013                   --  very few places that we place the flag in the middle of
9014                   --  a token, right under the offending wide character. Not
9015                   --  quite clear if this is right wrt wide character encoding
9016                   --  sequences, but it's only an error message!
9017
9018                   Error_Msg
9019                     ("literal out of range of type Standard.Character",
9020                      Source_Ptr (Int (Loc) + J));
9021                   return;
9022                end if;
9023             end loop;
9024
9025          --  For the case of Standard.Wide_String, or any other type whose
9026          --  component type is Standard.Wide_Character, we must make sure that
9027          --  there are no wide characters in the string, i.e. that it is
9028          --  entirely composed of characters in range of type Wide_Character.
9029
9030          --  If the string literal is the result of a static concatenation,
9031          --  the test has already been performed on the components, and need
9032          --  not be repeated.
9033
9034          elsif R_Typ = Standard_Wide_Character
9035            and then Nkind (Original_Node (N)) /= N_Op_Concat
9036          then
9037             for J in 1 .. Strlen loop
9038                if not In_Wide_Character_Range (Get_String_Char (Str, J)) then
9039
9040                   --  If we are out of range, post error. This is one of the
9041                   --  very few places that we place the flag in the middle of
9042                   --  a token, right under the offending wide character.
9043
9044                   --  This is not quite right, because characters in general
9045                   --  will take more than one character position ???
9046
9047                   Error_Msg
9048                     ("literal out of range of type Standard.Wide_Character",
9049                      Source_Ptr (Int (Loc) + J));
9050                   return;
9051                end if;
9052             end loop;
9053
9054          --  If the root type is not a standard character, then we will convert
9055          --  the string into an aggregate and will let the aggregate code do
9056          --  the checking. Standard Wide_Wide_Character is also OK here.
9057
9058          else
9059             null;
9060          end if;
9061
9062          --  See if the component type of the array corresponding to the string
9063          --  has compile time known bounds. If yes we can directly check
9064          --  whether the evaluation of the string will raise constraint error.
9065          --  Otherwise we need to transform the string literal into the
9066          --  corresponding character aggregate and let the aggregate code do
9067          --  the checking.
9068
9069          if Is_Standard_Character_Type (R_Typ) then
9070
9071             --  Check for the case of full range, where we are definitely OK
9072
9073             if Component_Type (Typ) = Base_Type (Component_Type (Typ)) then
9074                return;
9075             end if;
9076
9077             --  Here the range is not the complete base type range, so check
9078
9079             declare
9080                Comp_Typ_Lo : constant Node_Id :=
9081                                Type_Low_Bound (Component_Type (Typ));
9082                Comp_Typ_Hi : constant Node_Id :=
9083                                Type_High_Bound (Component_Type (Typ));
9084
9085                Char_Val : Uint;
9086
9087             begin
9088                if Compile_Time_Known_Value (Comp_Typ_Lo)
9089                  and then Compile_Time_Known_Value (Comp_Typ_Hi)
9090                then
9091                   for J in 1 .. Strlen loop
9092                      Char_Val := UI_From_Int (Int (Get_String_Char (Str, J)));
9093
9094                      if Char_Val < Expr_Value (Comp_Typ_Lo)
9095                        or else Char_Val > Expr_Value (Comp_Typ_Hi)
9096                      then
9097                         Apply_Compile_Time_Constraint_Error
9098                           (N, "character out of range?", CE_Range_Check_Failed,
9099                            Loc => Source_Ptr (Int (Loc) + J));
9100                      end if;
9101                   end loop;
9102
9103                   return;
9104                end if;
9105             end;
9106          end if;
9107       end if;
9108
9109       --  If we got here we meed to transform the string literal into the
9110       --  equivalent qualified positional array aggregate. This is rather
9111       --  heavy artillery for this situation, but it is hard work to avoid.
9112
9113       declare
9114          Lits : constant List_Id    := New_List;
9115          P    : Source_Ptr := Loc + 1;
9116          C    : Char_Code;
9117
9118       begin
9119          --  Build the character literals, we give them source locations that
9120          --  correspond to the string positions, which is a bit tricky given
9121          --  the possible presence of wide character escape sequences.
9122
9123          for J in 1 .. Strlen loop
9124             C := Get_String_Char (Str, J);
9125             Set_Character_Literal_Name (C);
9126
9127             Append_To (Lits,
9128               Make_Character_Literal (P,
9129                 Chars              => Name_Find,
9130                 Char_Literal_Value => UI_From_CC (C)));
9131
9132             if In_Character_Range (C) then
9133                P := P + 1;
9134
9135             --  Should we have a call to Skip_Wide here ???
9136
9137             --  ???     else
9138             --             Skip_Wide (P);
9139
9140             end if;
9141          end loop;
9142
9143          Rewrite (N,
9144            Make_Qualified_Expression (Loc,
9145              Subtype_Mark => New_Reference_To (Typ, Loc),
9146              Expression   =>
9147                Make_Aggregate (Loc, Expressions => Lits)));
9148
9149          Analyze_And_Resolve (N, Typ);
9150       end;
9151    end Resolve_String_Literal;
9152
9153    -----------------------------
9154    -- Resolve_Subprogram_Info --
9155    -----------------------------
9156
9157    procedure Resolve_Subprogram_Info (N : Node_Id; Typ : Entity_Id) is
9158    begin
9159       Set_Etype (N, Typ);
9160    end Resolve_Subprogram_Info;
9161
9162    -----------------------------
9163    -- Resolve_Type_Conversion --
9164    -----------------------------
9165
9166    procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id) is
9167       Conv_OK     : constant Boolean   := Conversion_OK (N);
9168       Operand     : constant Node_Id   := Expression (N);
9169       Operand_Typ : constant Entity_Id := Etype (Operand);
9170       Target_Typ  : constant Entity_Id := Etype (N);
9171       Rop         : Node_Id;
9172       Orig_N      : Node_Id;
9173       Orig_T      : Node_Id;
9174
9175       Test_Redundant : Boolean := Warn_On_Redundant_Constructs;
9176       --  Set to False to suppress cases where we want to suppress the test
9177       --  for redundancy to avoid possible false positives on this warning.
9178
9179    begin
9180       if not Conv_OK
9181         and then not Valid_Conversion (N, Target_Typ, Operand)
9182       then
9183          return;
9184       end if;
9185
9186       --  If the Operand Etype is Universal_Fixed, then the conversion is
9187       --  never redundant. We need this check because by the time we have
9188       --  finished the rather complex transformation, the conversion looks
9189       --  redundant when it is not.
9190
9191       if Operand_Typ = Universal_Fixed then
9192          Test_Redundant := False;
9193
9194       --  If the operand is marked as Any_Fixed, then special processing is
9195       --  required. This is also a case where we suppress the test for a
9196       --  redundant conversion, since most certainly it is not redundant.
9197
9198       elsif Operand_Typ = Any_Fixed then
9199          Test_Redundant := False;
9200
9201          --  Mixed-mode operation involving a literal. Context must be a fixed
9202          --  type which is applied to the literal subsequently.
9203
9204          if Is_Fixed_Point_Type (Typ) then
9205             Set_Etype (Operand, Universal_Real);
9206
9207          elsif Is_Numeric_Type (Typ)
9208            and then Nkind_In (Operand, N_Op_Multiply, N_Op_Divide)
9209            and then (Etype (Right_Opnd (Operand)) = Universal_Real
9210                        or else
9211                      Etype (Left_Opnd  (Operand)) = Universal_Real)
9212          then
9213             --  Return if expression is ambiguous
9214
9215             if Unique_Fixed_Point_Type (N) = Any_Type then
9216                return;
9217
9218             --  If nothing else, the available fixed type is Duration
9219
9220             else
9221                Set_Etype (Operand, Standard_Duration);
9222             end if;
9223
9224             --  Resolve the real operand with largest available precision
9225
9226             if Etype (Right_Opnd (Operand)) = Universal_Real then
9227                Rop := New_Copy_Tree (Right_Opnd (Operand));
9228             else
9229                Rop := New_Copy_Tree (Left_Opnd (Operand));
9230             end if;
9231
9232             Resolve (Rop, Universal_Real);
9233
9234             --  If the operand is a literal (it could be a non-static and
9235             --  illegal exponentiation) check whether the use of Duration
9236             --  is potentially inaccurate.
9237
9238             if Nkind (Rop) = N_Real_Literal
9239               and then Realval (Rop) /= Ureal_0
9240               and then abs (Realval (Rop)) < Delta_Value (Standard_Duration)
9241             then
9242                Error_Msg_N
9243                  ("?universal real operand can only " &
9244                   "be interpreted as Duration!",
9245                   Rop);
9246                Error_Msg_N
9247                  ("\?precision will be lost in the conversion!", Rop);
9248             end if;
9249
9250          elsif Is_Numeric_Type (Typ)
9251            and then Nkind (Operand) in N_Op
9252            and then Unique_Fixed_Point_Type (N) /= Any_Type
9253          then
9254             Set_Etype (Operand, Standard_Duration);
9255
9256          else
9257             Error_Msg_N ("invalid context for mixed mode operation", N);
9258             Set_Etype (Operand, Any_Type);
9259             return;
9260          end if;
9261       end if;
9262
9263       Resolve (Operand);
9264
9265       --  In SPARK, a type conversion between array types should be restricted
9266       --  to types which have matching static bounds.
9267
9268       --  Protect call to Matching_Static_Array_Bounds to avoid costly
9269       --  operation if not needed.
9270
9271       if Restriction_Check_Required (SPARK)
9272         and then Is_Array_Type (Target_Typ)
9273         and then Is_Array_Type (Operand_Typ)
9274         and then Operand_Typ /= Any_Composite  --  or else Operand in error
9275         and then not Matching_Static_Array_Bounds (Target_Typ, Operand_Typ)
9276       then
9277          Check_SPARK_Restriction
9278            ("array types should have matching static bounds", N);
9279       end if;
9280
9281       --  In formal mode, the operand of an ancestor type conversion must be an
9282       --  object (not an expression).
9283
9284       if Is_Tagged_Type (Target_Typ)
9285         and then not Is_Class_Wide_Type (Target_Typ)
9286         and then Is_Tagged_Type (Operand_Typ)
9287         and then not Is_Class_Wide_Type (Operand_Typ)
9288         and then Is_Ancestor (Target_Typ, Operand_Typ)
9289         and then not Is_SPARK_Object_Reference (Operand)
9290       then
9291          Check_SPARK_Restriction ("object required", Operand);
9292       end if;
9293
9294       --  Note: we do the Eval_Type_Conversion call before applying the
9295       --  required checks for a subtype conversion. This is important, since
9296       --  both are prepared under certain circumstances to change the type
9297       --  conversion to a constraint error node, but in the case of
9298       --  Eval_Type_Conversion this may reflect an illegality in the static
9299       --  case, and we would miss the illegality (getting only a warning
9300       --  message), if we applied the type conversion checks first.
9301
9302       Eval_Type_Conversion (N);
9303
9304       --  Even when evaluation is not possible, we may be able to simplify the
9305       --  conversion or its expression. This needs to be done before applying
9306       --  checks, since otherwise the checks may use the original expression
9307       --  and defeat the simplifications. This is specifically the case for
9308       --  elimination of the floating-point Truncation attribute in
9309       --  float-to-int conversions.
9310
9311       Simplify_Type_Conversion (N);
9312
9313       --  If after evaluation we still have a type conversion, then we may need
9314       --  to apply checks required for a subtype conversion.
9315
9316       --  Skip these type conversion checks if universal fixed operands
9317       --  operands involved, since range checks are handled separately for
9318       --  these cases (in the appropriate Expand routines in unit Exp_Fixd).
9319
9320       if Nkind (N) = N_Type_Conversion
9321         and then not Is_Generic_Type (Root_Type (Target_Typ))
9322         and then Target_Typ  /= Universal_Fixed
9323         and then Operand_Typ /= Universal_Fixed
9324       then
9325          Apply_Type_Conversion_Checks (N);
9326       end if;
9327
9328       --  Issue warning for conversion of simple object to its own type. We
9329       --  have to test the original nodes, since they may have been rewritten
9330       --  by various optimizations.
9331
9332       Orig_N := Original_Node (N);
9333
9334       --  Here we test for a redundant conversion if the warning mode is
9335       --  active (and was not locally reset), and we have a type conversion
9336       --  from source not appearing in a generic instance.
9337
9338       if Test_Redundant
9339         and then Nkind (Orig_N) = N_Type_Conversion
9340         and then Comes_From_Source (Orig_N)
9341         and then not In_Instance
9342       then
9343          Orig_N := Original_Node (Expression (Orig_N));
9344          Orig_T := Target_Typ;
9345
9346          --  If the node is part of a larger expression, the Target_Type
9347          --  may not be the original type of the node if the context is a
9348          --  condition. Recover original type to see if conversion is needed.
9349
9350          if Is_Boolean_Type (Orig_T)
9351           and then Nkind (Parent (N)) in N_Op
9352          then
9353             Orig_T := Etype (Parent (N));
9354          end if;
9355
9356          --  If we have an entity name, then give the warning if the entity
9357          --  is the right type, or if it is a loop parameter covered by the
9358          --  original type (that's needed because loop parameters have an
9359          --  odd subtype coming from the bounds).
9360
9361          if (Is_Entity_Name (Orig_N)
9362                and then
9363                  (Etype (Entity (Orig_N)) = Orig_T
9364                    or else
9365                      (Ekind (Entity (Orig_N)) = E_Loop_Parameter
9366                        and then Covers (Orig_T, Etype (Entity (Orig_N))))))
9367
9368            --  If not an entity, then type of expression must match
9369
9370            or else Etype (Orig_N) = Orig_T
9371          then
9372             --  One more check, do not give warning if the analyzed conversion
9373             --  has an expression with non-static bounds, and the bounds of the
9374             --  target are static. This avoids junk warnings in cases where the
9375             --  conversion is necessary to establish staticness, for example in
9376             --  a case statement.
9377
9378             if not Is_OK_Static_Subtype (Operand_Typ)
9379               and then Is_OK_Static_Subtype (Target_Typ)
9380             then
9381                null;
9382
9383             --  Finally, if this type conversion occurs in a context requiring
9384             --  a prefix, and the expression is a qualified expression then the
9385             --  type conversion is not redundant, since a qualified expression
9386             --  is not a prefix, whereas a type conversion is. For example, "X
9387             --  := T'(Funx(...)).Y;" is illegal because a selected component
9388             --  requires a prefix, but a type conversion makes it legal: "X :=
9389             --  T(T'(Funx(...))).Y;"
9390
9391             --  In Ada 2012, a qualified expression is a name, so this idiom is
9392             --  no longer needed, but we still suppress the warning because it
9393             --  seems unfriendly for warnings to pop up when you switch to the
9394             --  newer language version.
9395
9396             elsif Nkind (Orig_N) = N_Qualified_Expression
9397               and then Nkind_In (Parent (N), N_Attribute_Reference,
9398                                              N_Indexed_Component,
9399                                              N_Selected_Component,
9400                                              N_Slice,
9401                                              N_Explicit_Dereference)
9402             then
9403                null;
9404
9405             --  Here we give the redundant conversion warning. If it is an
9406             --  entity, give the name of the entity in the message. If not,
9407             --  just mention the expression.
9408
9409             else
9410                if Is_Entity_Name (Orig_N) then
9411                   Error_Msg_Node_2 := Orig_T;
9412                   Error_Msg_NE -- CODEFIX
9413                     ("?redundant conversion, & is of type &!",
9414                      N, Entity (Orig_N));
9415                else
9416                   Error_Msg_NE
9417                     ("?redundant conversion, expression is of type&!",
9418                      N, Orig_T);
9419                end if;
9420             end if;
9421          end if;
9422       end if;
9423
9424       --  Ada 2005 (AI-251): Handle class-wide interface type conversions.
9425       --  No need to perform any interface conversion if the type of the
9426       --  expression coincides with the target type.
9427
9428       if Ada_Version >= Ada_2005
9429         and then Full_Expander_Active
9430         and then Operand_Typ /= Target_Typ
9431       then
9432          declare
9433             Opnd   : Entity_Id := Operand_Typ;
9434             Target : Entity_Id := Target_Typ;
9435
9436          begin
9437             if Is_Access_Type (Opnd) then
9438                Opnd := Designated_Type (Opnd);
9439             end if;
9440
9441             if Is_Access_Type (Target_Typ) then
9442                Target := Designated_Type (Target);
9443             end if;
9444
9445             if Opnd = Target then
9446                null;
9447
9448             --  Conversion from interface type
9449
9450             elsif Is_Interface (Opnd) then
9451
9452                --  Ada 2005 (AI-217): Handle entities from limited views
9453
9454                if From_With_Type (Opnd) then
9455                   Error_Msg_Qual_Level := 99;
9456                   Error_Msg_NE -- CODEFIX
9457                     ("missing WITH clause on package &", N,
9458                     Cunit_Entity (Get_Source_Unit (Base_Type (Opnd))));
9459                   Error_Msg_N
9460                     ("type conversions require visibility of the full view",
9461                      N);
9462
9463                elsif From_With_Type (Target)
9464                  and then not
9465                    (Is_Access_Type (Target_Typ)
9466                       and then Present (Non_Limited_View (Etype (Target))))
9467                then
9468                   Error_Msg_Qual_Level := 99;
9469                   Error_Msg_NE -- CODEFIX
9470                     ("missing WITH clause on package &", N,
9471                     Cunit_Entity (Get_Source_Unit (Base_Type (Target))));
9472                   Error_Msg_N
9473                     ("type conversions require visibility of the full view",
9474                      N);
9475
9476                else
9477                   Expand_Interface_Conversion (N, Is_Static => False);
9478                end if;
9479
9480             --  Conversion to interface type
9481
9482             elsif Is_Interface (Target) then
9483
9484                --  Handle subtypes
9485
9486                if Ekind_In (Opnd, E_Protected_Subtype, E_Task_Subtype) then
9487                   Opnd := Etype (Opnd);
9488                end if;
9489
9490                if not Interface_Present_In_Ancestor
9491                         (Typ   => Opnd,
9492                          Iface => Target)
9493                then
9494                   if Is_Class_Wide_Type (Opnd) then
9495
9496                      --  The static analysis is not enough to know if the
9497                      --  interface is implemented or not. Hence we must pass
9498                      --  the work to the expander to generate code to evaluate
9499                      --  the conversion at run time.
9500
9501                      Expand_Interface_Conversion (N, Is_Static => False);
9502
9503                   else
9504                      Error_Msg_Name_1 := Chars (Etype (Target));
9505                      Error_Msg_Name_2 := Chars (Opnd);
9506                      Error_Msg_N
9507                        ("wrong interface conversion (% is not a progenitor " &
9508                         "of %)", N);
9509                   end if;
9510
9511                else
9512                   Expand_Interface_Conversion (N);
9513                end if;
9514             end if;
9515          end;
9516       end if;
9517    end Resolve_Type_Conversion;
9518
9519    ----------------------
9520    -- Resolve_Unary_Op --
9521    ----------------------
9522
9523    procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id) is
9524       B_Typ : constant Entity_Id := Base_Type (Typ);
9525       R     : constant Node_Id   := Right_Opnd (N);
9526       OK    : Boolean;
9527       Lo    : Uint;
9528       Hi    : Uint;
9529
9530    begin
9531       if Is_Modular_Integer_Type (Typ) and then Nkind (N) /= N_Op_Not then
9532          Error_Msg_Name_1 := Chars (Typ);
9533          Check_SPARK_Restriction
9534            ("unary operator not defined for modular type%", N);
9535       end if;
9536
9537       --  Deal with intrinsic unary operators
9538
9539       if Comes_From_Source (N)
9540         and then Ekind (Entity (N)) = E_Function
9541         and then Is_Imported (Entity (N))
9542         and then Is_Intrinsic_Subprogram (Entity (N))
9543       then
9544          Resolve_Intrinsic_Unary_Operator (N, Typ);
9545          return;
9546       end if;
9547
9548       --  Deal with universal cases
9549
9550       if Etype (R) = Universal_Integer
9551            or else
9552          Etype (R) = Universal_Real
9553       then
9554          Check_For_Visible_Operator (N, B_Typ);
9555       end if;
9556
9557       Set_Etype (N, B_Typ);
9558       Resolve (R, B_Typ);
9559
9560       --  Generate warning for expressions like abs (x mod 2)
9561
9562       if Warn_On_Redundant_Constructs
9563         and then Nkind (N) = N_Op_Abs
9564       then
9565          Determine_Range (Right_Opnd (N), OK, Lo, Hi);
9566
9567          if OK and then Hi >= Lo and then Lo >= 0 then
9568             Error_Msg_N -- CODEFIX
9569              ("?abs applied to known non-negative value has no effect", N);
9570          end if;
9571       end if;
9572
9573       --  Deal with reference generation
9574
9575       Check_Unset_Reference (R);
9576       Generate_Operator_Reference (N, B_Typ);
9577       Eval_Unary_Op (N);
9578
9579       --  Set overflow checking bit. Much cleverer code needed here eventually
9580       --  and perhaps the Resolve routines should be separated for the various
9581       --  arithmetic operations, since they will need different processing ???
9582
9583       if Nkind (N) in N_Op then
9584          if not Overflow_Checks_Suppressed (Etype (N)) then
9585             Enable_Overflow_Check (N);
9586          end if;
9587       end if;
9588
9589       --  Generate warning for expressions like -5 mod 3 for integers. No need
9590       --  to worry in the floating-point case, since parens do not affect the
9591       --  result so there is no point in giving in a warning.
9592
9593       declare
9594          Norig : constant Node_Id := Original_Node (N);
9595          Rorig : Node_Id;
9596          Val   : Uint;
9597          HB    : Uint;
9598          LB    : Uint;
9599          Lval  : Uint;
9600          Opnd  : Node_Id;
9601
9602       begin
9603          if Warn_On_Questionable_Missing_Parens
9604            and then Comes_From_Source (Norig)
9605            and then Is_Integer_Type (Typ)
9606            and then Nkind (Norig) = N_Op_Minus
9607          then
9608             Rorig := Original_Node (Right_Opnd (Norig));
9609
9610             --  We are looking for cases where the right operand is not
9611             --  parenthesized, and is a binary operator, multiply, divide, or
9612             --  mod. These are the cases where the grouping can affect results.
9613
9614             if Paren_Count (Rorig) = 0
9615               and then Nkind_In (Rorig, N_Op_Mod, N_Op_Multiply, N_Op_Divide)
9616             then
9617                --  For mod, we always give the warning, since the value is
9618                --  affected by the parenthesization (e.g. (-5) mod 315 /=
9619                --  -(5 mod 315)). But for the other cases, the only concern is
9620                --  overflow, e.g. for the case of 8 big signed (-(2 * 64)
9621                --  overflows, but (-2) * 64 does not). So we try to give the
9622                --  message only when overflow is possible.
9623
9624                if Nkind (Rorig) /= N_Op_Mod
9625                  and then Compile_Time_Known_Value (R)
9626                then
9627                   Val := Expr_Value (R);
9628
9629                   if Compile_Time_Known_Value (Type_High_Bound (Typ)) then
9630                      HB := Expr_Value (Type_High_Bound (Typ));
9631                   else
9632                      HB := Expr_Value (Type_High_Bound (Base_Type (Typ)));
9633                   end if;
9634
9635                   if Compile_Time_Known_Value (Type_Low_Bound (Typ)) then
9636                      LB := Expr_Value (Type_Low_Bound (Typ));
9637                   else
9638                      LB := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
9639                   end if;
9640
9641                   --  Note that the test below is deliberately excluding the
9642                   --  largest negative number, since that is a potentially
9643                   --  troublesome case (e.g. -2 * x, where the result is the
9644                   --  largest negative integer has an overflow with 2 * x).
9645
9646                   if Val > LB and then Val <= HB then
9647                      return;
9648                   end if;
9649                end if;
9650
9651                --  For the multiplication case, the only case we have to worry
9652                --  about is when (-a)*b is exactly the largest negative number
9653                --  so that -(a*b) can cause overflow. This can only happen if
9654                --  a is a power of 2, and more generally if any operand is a
9655                --  constant that is not a power of 2, then the parentheses
9656                --  cannot affect whether overflow occurs. We only bother to
9657                --  test the left most operand
9658
9659                --  Loop looking at left operands for one that has known value
9660
9661                Opnd := Rorig;
9662                Opnd_Loop : while Nkind (Opnd) = N_Op_Multiply loop
9663                   if Compile_Time_Known_Value (Left_Opnd (Opnd)) then
9664                      Lval := UI_Abs (Expr_Value (Left_Opnd (Opnd)));
9665
9666                      --  Operand value of 0 or 1 skips warning
9667
9668                      if Lval <= 1 then
9669                         return;
9670
9671                      --  Otherwise check power of 2, if power of 2, warn, if
9672                      --  anything else, skip warning.
9673
9674                      else
9675                         while Lval /= 2 loop
9676                            if Lval mod 2 = 1 then
9677                               return;
9678                            else
9679                               Lval := Lval / 2;
9680                            end if;
9681                         end loop;
9682
9683                         exit Opnd_Loop;
9684                      end if;
9685                   end if;
9686
9687                   --  Keep looking at left operands
9688
9689                   Opnd := Left_Opnd (Opnd);
9690                end loop Opnd_Loop;
9691
9692                --  For rem or "/" we can only have a problematic situation
9693                --  if the divisor has a value of minus one or one. Otherwise
9694                --  overflow is impossible (divisor > 1) or we have a case of
9695                --  division by zero in any case.
9696
9697                if Nkind_In (Rorig, N_Op_Divide, N_Op_Rem)
9698                  and then Compile_Time_Known_Value (Right_Opnd (Rorig))
9699                  and then UI_Abs (Expr_Value (Right_Opnd (Rorig))) /= 1
9700                then
9701                   return;
9702                end if;
9703
9704                --  If we fall through warning should be issued
9705
9706                Error_Msg_N
9707                  ("?unary minus expression should be parenthesized here!", N);
9708             end if;
9709          end if;
9710       end;
9711    end Resolve_Unary_Op;
9712
9713    ----------------------------------
9714    -- Resolve_Unchecked_Expression --
9715    ----------------------------------
9716
9717    procedure Resolve_Unchecked_Expression
9718      (N   : Node_Id;
9719       Typ : Entity_Id)
9720    is
9721    begin
9722       Resolve (Expression (N), Typ, Suppress => All_Checks);
9723       Set_Etype (N, Typ);
9724    end Resolve_Unchecked_Expression;
9725
9726    ---------------------------------------
9727    -- Resolve_Unchecked_Type_Conversion --
9728    ---------------------------------------
9729
9730    procedure Resolve_Unchecked_Type_Conversion
9731      (N   : Node_Id;
9732       Typ : Entity_Id)
9733    is
9734       pragma Warnings (Off, Typ);
9735
9736       Operand   : constant Node_Id   := Expression (N);
9737       Opnd_Type : constant Entity_Id := Etype (Operand);
9738
9739    begin
9740       --  Resolve operand using its own type
9741
9742       Resolve (Operand, Opnd_Type);
9743       Eval_Unchecked_Conversion (N);
9744    end Resolve_Unchecked_Type_Conversion;
9745
9746    ------------------------------
9747    -- Rewrite_Operator_As_Call --
9748    ------------------------------
9749
9750    procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id) is
9751       Loc     : constant Source_Ptr := Sloc (N);
9752       Actuals : constant List_Id    := New_List;
9753       New_N   : Node_Id;
9754
9755    begin
9756       if Nkind (N) in  N_Binary_Op then
9757          Append (Left_Opnd (N), Actuals);
9758       end if;
9759
9760       Append (Right_Opnd (N), Actuals);
9761
9762       New_N :=
9763         Make_Function_Call (Sloc => Loc,
9764           Name => New_Occurrence_Of (Nam, Loc),
9765           Parameter_Associations => Actuals);
9766
9767       Preserve_Comes_From_Source (New_N, N);
9768       Preserve_Comes_From_Source (Name (New_N), N);
9769       Rewrite (N, New_N);
9770       Set_Etype (N, Etype (Nam));
9771    end Rewrite_Operator_As_Call;
9772
9773    ------------------------------
9774    -- Rewrite_Renamed_Operator --
9775    ------------------------------
9776
9777    procedure Rewrite_Renamed_Operator
9778      (N   : Node_Id;
9779       Op  : Entity_Id;
9780       Typ : Entity_Id)
9781    is
9782       Nam       : constant Name_Id := Chars (Op);
9783       Is_Binary : constant Boolean := Nkind (N) in N_Binary_Op;
9784       Op_Node   : Node_Id;
9785
9786    begin
9787       --  Rewrite the operator node using the real operator, not its renaming.
9788       --  Exclude user-defined intrinsic operations of the same name, which are
9789       --  treated separately and rewritten as calls.
9790
9791       if Ekind (Op) /= E_Function or else Chars (N) /= Nam then
9792          Op_Node := New_Node (Operator_Kind (Nam, Is_Binary), Sloc (N));
9793          Set_Chars      (Op_Node, Nam);
9794          Set_Etype      (Op_Node, Etype (N));
9795          Set_Entity     (Op_Node, Op);
9796          Set_Right_Opnd (Op_Node, Right_Opnd (N));
9797
9798          --  Indicate that both the original entity and its renaming are
9799          --  referenced at this point.
9800
9801          Generate_Reference (Entity (N), N);
9802          Generate_Reference (Op, N);
9803
9804          if Is_Binary then
9805             Set_Left_Opnd  (Op_Node, Left_Opnd  (N));
9806          end if;
9807
9808          Rewrite (N, Op_Node);
9809
9810          --  If the context type is private, add the appropriate conversions so
9811          --  that the operator is applied to the full view. This is done in the
9812          --  routines that resolve intrinsic operators.
9813
9814          if Is_Intrinsic_Subprogram (Op)
9815            and then Is_Private_Type (Typ)
9816          then
9817             case Nkind (N) is
9818                when N_Op_Add   | N_Op_Subtract | N_Op_Multiply | N_Op_Divide |
9819                     N_Op_Expon | N_Op_Mod      | N_Op_Rem      =>
9820                   Resolve_Intrinsic_Operator (N, Typ);
9821
9822                when N_Op_Plus  | N_Op_Minus    | N_Op_Abs      =>
9823                   Resolve_Intrinsic_Unary_Operator (N, Typ);
9824
9825                when others =>
9826                   Resolve (N, Typ);
9827             end case;
9828          end if;
9829
9830       elsif Ekind (Op) = E_Function and then Is_Intrinsic_Subprogram (Op) then
9831
9832          --  Operator renames a user-defined operator of the same name. Use the
9833          --  original operator in the node, which is the one Gigi knows about.
9834
9835          Set_Entity (N, Op);
9836          Set_Is_Overloaded (N, False);
9837       end if;
9838    end Rewrite_Renamed_Operator;
9839
9840    -----------------------
9841    -- Set_Slice_Subtype --
9842    -----------------------
9843
9844    --  Build an implicit subtype declaration to represent the type delivered by
9845    --  the slice. This is an abbreviated version of an array subtype. We define
9846    --  an index subtype for the slice, using either the subtype name or the
9847    --  discrete range of the slice. To be consistent with index usage elsewhere
9848    --  we create a list header to hold the single index. This list is not
9849    --  otherwise attached to the syntax tree.
9850
9851    procedure Set_Slice_Subtype (N : Node_Id) is
9852       Loc           : constant Source_Ptr := Sloc (N);
9853       Index_List    : constant List_Id    := New_List;
9854       Index         : Node_Id;
9855       Index_Subtype : Entity_Id;
9856       Index_Type    : Entity_Id;
9857       Slice_Subtype : Entity_Id;
9858       Drange        : constant Node_Id := Discrete_Range (N);
9859
9860    begin
9861       if Is_Entity_Name (Drange) then
9862          Index_Subtype := Entity (Drange);
9863
9864       else
9865          --  We force the evaluation of a range. This is definitely needed in
9866          --  the renamed case, and seems safer to do unconditionally. Note in
9867          --  any case that since we will create and insert an Itype referring
9868          --  to this range, we must make sure any side effect removal actions
9869          --  are inserted before the Itype definition.
9870
9871          if Nkind (Drange) = N_Range then
9872             Force_Evaluation (Low_Bound (Drange));
9873             Force_Evaluation (High_Bound (Drange));
9874          end if;
9875
9876          Index_Type := Base_Type (Etype (Drange));
9877
9878          Index_Subtype := Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
9879
9880          --  Take a new copy of Drange (where bounds have been rewritten to
9881          --  reference side-effect-free names). Using a separate tree ensures
9882          --  that further expansion (e.g. while rewriting a slice assignment
9883          --  into a FOR loop) does not attempt to remove side effects on the
9884          --  bounds again (which would cause the bounds in the index subtype
9885          --  definition to refer to temporaries before they are defined) (the
9886          --  reason is that some names are considered side effect free here
9887          --  for the subtype, but not in the context of a loop iteration
9888          --  scheme).
9889
9890          Set_Scalar_Range (Index_Subtype, New_Copy_Tree (Drange));
9891          Set_Parent       (Scalar_Range (Index_Subtype), Index_Subtype);
9892          Set_Etype        (Index_Subtype, Index_Type);
9893          Set_Size_Info    (Index_Subtype, Index_Type);
9894          Set_RM_Size      (Index_Subtype, RM_Size (Index_Type));
9895       end if;
9896
9897       Slice_Subtype := Create_Itype (E_Array_Subtype, N);
9898
9899       Index := New_Occurrence_Of (Index_Subtype, Loc);
9900       Set_Etype (Index, Index_Subtype);
9901       Append (Index, Index_List);
9902
9903       Set_First_Index    (Slice_Subtype, Index);
9904       Set_Etype          (Slice_Subtype, Base_Type (Etype (N)));
9905       Set_Is_Constrained (Slice_Subtype, True);
9906
9907       Check_Compile_Time_Size (Slice_Subtype);
9908
9909       --  The Etype of the existing Slice node is reset to this slice subtype.
9910       --  Its bounds are obtained from its first index.
9911
9912       Set_Etype (N, Slice_Subtype);
9913
9914       --  For packed slice subtypes, freeze immediately (except in the case of
9915       --  being in a "spec expression" where we never freeze when we first see
9916       --  the expression).
9917
9918       if Is_Packed (Slice_Subtype) and not In_Spec_Expression then
9919          Freeze_Itype (Slice_Subtype, N);
9920
9921       --  For all other cases insert an itype reference in the slice's actions
9922       --  so that the itype is frozen at the proper place in the tree (i.e. at
9923       --  the point where actions for the slice are analyzed). Note that this
9924       --  is different from freezing the itype immediately, which might be
9925       --  premature (e.g. if the slice is within a transient scope). This needs
9926       --  to be done only if expansion is enabled.
9927
9928       elsif Full_Expander_Active then
9929          Ensure_Defined (Typ => Slice_Subtype, N => N);
9930       end if;
9931    end Set_Slice_Subtype;
9932
9933    --------------------------------
9934    -- Set_String_Literal_Subtype --
9935    --------------------------------
9936
9937    procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id) is
9938       Loc        : constant Source_Ptr := Sloc (N);
9939       Low_Bound  : constant Node_Id :=
9940                      Type_Low_Bound (Etype (First_Index (Typ)));
9941       Subtype_Id : Entity_Id;
9942
9943    begin
9944       if Nkind (N) /= N_String_Literal then
9945          return;
9946       end if;
9947
9948       Subtype_Id := Create_Itype (E_String_Literal_Subtype, N);
9949       Set_String_Literal_Length (Subtype_Id, UI_From_Int
9950                                                (String_Length (Strval (N))));
9951       Set_Etype          (Subtype_Id, Base_Type (Typ));
9952       Set_Is_Constrained (Subtype_Id);
9953       Set_Etype          (N, Subtype_Id);
9954
9955       if Is_OK_Static_Expression (Low_Bound) then
9956
9957       --  The low bound is set from the low bound of the corresponding index
9958       --  type. Note that we do not store the high bound in the string literal
9959       --  subtype, but it can be deduced if necessary from the length and the
9960       --  low bound.
9961
9962          Set_String_Literal_Low_Bound (Subtype_Id, Low_Bound);
9963
9964       else
9965          --  If the lower bound is not static we create a range for the string
9966          --  literal, using the index type and the known length of the literal.
9967          --  The index type is not necessarily Positive, so the upper bound is
9968          --  computed as  T'Val (T'Pos (Low_Bound) + L - 1)
9969
9970          declare
9971             Index_List    : constant List_Id    := New_List;
9972             Index_Type    : constant Entity_Id := Etype (First_Index (Typ));
9973
9974             High_Bound : constant Node_Id :=
9975                            Make_Attribute_Reference (Loc,
9976                              Attribute_Name => Name_Val,
9977                              Prefix         =>
9978                                New_Occurrence_Of (Index_Type, Loc),
9979                              Expressions    => New_List (
9980                                Make_Op_Add (Loc,
9981                                  Left_Opnd  =>
9982                                    Make_Attribute_Reference (Loc,
9983                                      Attribute_Name => Name_Pos,
9984                                      Prefix         =>
9985                                        New_Occurrence_Of (Index_Type, Loc),
9986                                      Expressions    =>
9987                                        New_List (New_Copy_Tree (Low_Bound))),
9988                                  Right_Opnd =>
9989                                    Make_Integer_Literal (Loc,
9990                                      String_Length (Strval (N)) - 1))));
9991
9992             Array_Subtype : Entity_Id;
9993             Index_Subtype : Entity_Id;
9994             Drange        : Node_Id;
9995             Index         : Node_Id;
9996
9997          begin
9998             if Is_Integer_Type (Index_Type) then
9999                Set_String_Literal_Low_Bound
10000                  (Subtype_Id, Make_Integer_Literal (Loc, 1));
10001
10002             else
10003                --  If the index type is an enumeration type, build bounds
10004                --  expression with attributes.
10005
10006                Set_String_Literal_Low_Bound
10007                  (Subtype_Id,
10008                   Make_Attribute_Reference (Loc,
10009                     Attribute_Name => Name_First,
10010                     Prefix         =>
10011                       New_Occurrence_Of (Base_Type (Index_Type), Loc)));
10012                Set_Etype (String_Literal_Low_Bound (Subtype_Id), Index_Type);
10013             end if;
10014
10015             Analyze_And_Resolve (String_Literal_Low_Bound (Subtype_Id));
10016
10017             --  Build bona fide subtype for the string, and wrap it in an
10018             --  unchecked conversion, because the backend expects the
10019             --  String_Literal_Subtype to have a static lower bound.
10020
10021             Index_Subtype :=
10022               Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
10023             Drange := Make_Range (Loc, New_Copy_Tree (Low_Bound), High_Bound);
10024             Set_Scalar_Range (Index_Subtype, Drange);
10025             Set_Parent (Drange, N);
10026             Analyze_And_Resolve (Drange, Index_Type);
10027
10028             --  In the context, the Index_Type may already have a constraint,
10029             --  so use common base type on string subtype. The base type may
10030             --  be used when generating attributes of the string, for example
10031             --  in the context of a slice assignment.
10032
10033             Set_Etype     (Index_Subtype, Base_Type (Index_Type));
10034             Set_Size_Info (Index_Subtype, Index_Type);
10035             Set_RM_Size   (Index_Subtype, RM_Size (Index_Type));
10036
10037             Array_Subtype := Create_Itype (E_Array_Subtype, N);
10038
10039             Index := New_Occurrence_Of (Index_Subtype, Loc);
10040             Set_Etype (Index, Index_Subtype);
10041             Append (Index, Index_List);
10042
10043             Set_First_Index    (Array_Subtype, Index);
10044             Set_Etype          (Array_Subtype, Base_Type (Typ));
10045             Set_Is_Constrained (Array_Subtype, True);
10046
10047             Rewrite (N,
10048               Make_Unchecked_Type_Conversion (Loc,
10049                 Subtype_Mark => New_Occurrence_Of (Array_Subtype, Loc),
10050                 Expression => Relocate_Node (N)));
10051             Set_Etype (N, Array_Subtype);
10052          end;
10053       end if;
10054    end Set_String_Literal_Subtype;
10055
10056    ------------------------------
10057    -- Simplify_Type_Conversion --
10058    ------------------------------
10059
10060    procedure Simplify_Type_Conversion (N : Node_Id) is
10061    begin
10062       if Nkind (N) = N_Type_Conversion then
10063          declare
10064             Operand    : constant Node_Id   := Expression (N);
10065             Target_Typ : constant Entity_Id := Etype (N);
10066             Opnd_Typ   : constant Entity_Id := Etype (Operand);
10067
10068          begin
10069             if Is_Floating_Point_Type (Opnd_Typ)
10070               and then
10071                 (Is_Integer_Type (Target_Typ)
10072                    or else (Is_Fixed_Point_Type (Target_Typ)
10073                               and then Conversion_OK (N)))
10074               and then Nkind (Operand) = N_Attribute_Reference
10075               and then Attribute_Name (Operand) = Name_Truncation
10076
10077             --  Special processing required if the conversion is the expression
10078             --  of a Truncation attribute reference. In this case we replace:
10079
10080             --     ityp (ftyp'Truncation (x))
10081
10082             --  by
10083
10084             --     ityp (x)
10085
10086             --  with the Float_Truncate flag set, which is more efficient.
10087
10088             then
10089                Rewrite (Operand,
10090                  Relocate_Node (First (Expressions (Operand))));
10091                Set_Float_Truncate (N, True);
10092             end if;
10093          end;
10094       end if;
10095    end Simplify_Type_Conversion;
10096
10097    -----------------------------
10098    -- Unique_Fixed_Point_Type --
10099    -----------------------------
10100
10101    function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id is
10102       T1   : Entity_Id := Empty;
10103       T2   : Entity_Id;
10104       Item : Node_Id;
10105       Scop : Entity_Id;
10106
10107       procedure Fixed_Point_Error;
10108       --  Give error messages for true ambiguity. Messages are posted on node
10109       --  N, and entities T1, T2 are the possible interpretations.
10110
10111       -----------------------
10112       -- Fixed_Point_Error --
10113       -----------------------
10114
10115       procedure Fixed_Point_Error is
10116       begin
10117          Error_Msg_N ("ambiguous universal_fixed_expression", N);
10118          Error_Msg_NE ("\\possible interpretation as}", N, T1);
10119          Error_Msg_NE ("\\possible interpretation as}", N, T2);
10120       end Fixed_Point_Error;
10121
10122    --  Start of processing for Unique_Fixed_Point_Type
10123
10124    begin
10125       --  The operations on Duration are visible, so Duration is always a
10126       --  possible interpretation.
10127
10128       T1 := Standard_Duration;
10129
10130       --  Look for fixed-point types in enclosing scopes
10131
10132       Scop := Current_Scope;
10133       while Scop /= Standard_Standard loop
10134          T2 := First_Entity (Scop);
10135          while Present (T2) loop
10136             if Is_Fixed_Point_Type (T2)
10137               and then Current_Entity (T2) = T2
10138               and then Scope (Base_Type (T2)) = Scop
10139             then
10140                if Present (T1) then
10141                   Fixed_Point_Error;
10142                   return Any_Type;
10143                else
10144                   T1 := T2;
10145                end if;
10146             end if;
10147
10148             Next_Entity (T2);
10149          end loop;
10150
10151          Scop := Scope (Scop);
10152       end loop;
10153
10154       --  Look for visible fixed type declarations in the context
10155
10156       Item := First (Context_Items (Cunit (Current_Sem_Unit)));
10157       while Present (Item) loop
10158          if Nkind (Item) = N_With_Clause then
10159             Scop := Entity (Name (Item));
10160             T2 := First_Entity (Scop);
10161             while Present (T2) loop
10162                if Is_Fixed_Point_Type (T2)
10163                  and then Scope (Base_Type (T2)) = Scop
10164                  and then (Is_Potentially_Use_Visible (T2) or else In_Use (T2))
10165                then
10166                   if Present (T1) then
10167                      Fixed_Point_Error;
10168                      return Any_Type;
10169                   else
10170                      T1 := T2;
10171                   end if;
10172                end if;
10173
10174                Next_Entity (T2);
10175             end loop;
10176          end if;
10177
10178          Next (Item);
10179       end loop;
10180
10181       if Nkind (N) = N_Real_Literal then
10182          Error_Msg_NE ("?real literal interpreted as }!", N, T1);
10183       else
10184          Error_Msg_NE ("?universal_fixed expression interpreted as }!", N, T1);
10185       end if;
10186
10187       return T1;
10188    end Unique_Fixed_Point_Type;
10189
10190    ----------------------
10191    -- Valid_Conversion --
10192    ----------------------
10193
10194    function Valid_Conversion
10195      (N           : Node_Id;
10196       Target      : Entity_Id;
10197       Operand     : Node_Id;
10198       Report_Errs : Boolean := True) return Boolean
10199    is
10200       Target_Type : constant Entity_Id := Base_Type (Target);
10201       Opnd_Type   : Entity_Id          := Etype (Operand);
10202
10203       function Conversion_Check
10204         (Valid : Boolean;
10205          Msg   : String) return Boolean;
10206       --  Little routine to post Msg if Valid is False, returns Valid value
10207
10208       --  The following are badly named, this kind of overloading is actively
10209       --  confusing in reading code, please rename to something like
10210       --  Error_Msg_N_If_Reporting ???
10211
10212       procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id);
10213       --  If Report_Errs, then calls Errout.Error_Msg_N with its arguments
10214
10215       procedure Error_Msg_NE
10216         (Msg : String;
10217          N   : Node_Or_Entity_Id;
10218          E   : Node_Or_Entity_Id);
10219       --  If Report_Errs, then calls Errout.Error_Msg_NE with its arguments
10220
10221       function Valid_Tagged_Conversion
10222         (Target_Type : Entity_Id;
10223          Opnd_Type   : Entity_Id) return Boolean;
10224       --  Specifically test for validity of tagged conversions
10225
10226       function Valid_Array_Conversion return Boolean;
10227       --  Check index and component conformance, and accessibility levels if
10228       --  the component types are anonymous access types (Ada 2005).
10229
10230       ----------------------
10231       -- Conversion_Check --
10232       ----------------------
10233
10234       function Conversion_Check
10235         (Valid : Boolean;
10236          Msg   : String) return Boolean
10237       is
10238       begin
10239          if not Valid
10240
10241             --  A generic unit has already been analyzed and we have verified
10242             --  that a particular conversion is OK in that context. Since the
10243             --  instance is reanalyzed without relying on the relationships
10244             --  established during the analysis of the generic, it is possible
10245             --  to end up with inconsistent views of private types. Do not emit
10246             --  the error message in such cases. The rest of the machinery in
10247             --  Valid_Conversion still ensures the proper compatibility of
10248             --  target and operand types.
10249
10250            and then not In_Instance
10251          then
10252             Error_Msg_N (Msg, Operand);
10253          end if;
10254
10255          return Valid;
10256       end Conversion_Check;
10257
10258       -----------------
10259       -- Error_Msg_N --
10260       -----------------
10261
10262       procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
10263       begin
10264          if Report_Errs then
10265             Errout.Error_Msg_N (Msg, N);
10266          end if;
10267       end Error_Msg_N;
10268
10269       ------------------
10270       -- Error_Msg_NE --
10271       ------------------
10272
10273       procedure Error_Msg_NE
10274         (Msg : String;
10275          N   : Node_Or_Entity_Id;
10276          E   : Node_Or_Entity_Id)
10277       is
10278       begin
10279          if Report_Errs then
10280             Errout.Error_Msg_NE (Msg, N, E);
10281          end if;
10282       end Error_Msg_NE;
10283
10284       ----------------------------
10285       -- Valid_Array_Conversion --
10286       ----------------------------
10287
10288       function Valid_Array_Conversion return Boolean
10289       is
10290          Opnd_Comp_Type : constant Entity_Id := Component_Type (Opnd_Type);
10291          Opnd_Comp_Base : constant Entity_Id := Base_Type (Opnd_Comp_Type);
10292
10293          Opnd_Index      : Node_Id;
10294          Opnd_Index_Type : Entity_Id;
10295
10296          Target_Comp_Type : constant Entity_Id :=
10297                               Component_Type (Target_Type);
10298          Target_Comp_Base : constant Entity_Id :=
10299                               Base_Type (Target_Comp_Type);
10300
10301          Target_Index      : Node_Id;
10302          Target_Index_Type : Entity_Id;
10303
10304       begin
10305          --  Error if wrong number of dimensions
10306
10307          if
10308            Number_Dimensions (Target_Type) /= Number_Dimensions (Opnd_Type)
10309          then
10310             Error_Msg_N
10311               ("incompatible number of dimensions for conversion", Operand);
10312             return False;
10313
10314          --  Number of dimensions matches
10315
10316          else
10317             --  Loop through indexes of the two arrays
10318
10319             Target_Index := First_Index (Target_Type);
10320             Opnd_Index   := First_Index (Opnd_Type);
10321             while Present (Target_Index) and then Present (Opnd_Index) loop
10322                Target_Index_Type := Etype (Target_Index);
10323                Opnd_Index_Type   := Etype (Opnd_Index);
10324
10325                --  Error if index types are incompatible
10326
10327                if not (Is_Integer_Type (Target_Index_Type)
10328                        and then Is_Integer_Type (Opnd_Index_Type))
10329                  and then (Root_Type (Target_Index_Type)
10330                            /= Root_Type (Opnd_Index_Type))
10331                then
10332                   Error_Msg_N
10333                     ("incompatible index types for array conversion",
10334                      Operand);
10335                   return False;
10336                end if;
10337
10338                Next_Index (Target_Index);
10339                Next_Index (Opnd_Index);
10340             end loop;
10341
10342             --  If component types have same base type, all set
10343
10344             if Target_Comp_Base  = Opnd_Comp_Base then
10345                null;
10346
10347                --  Here if base types of components are not the same. The only
10348                --  time this is allowed is if we have anonymous access types.
10349
10350                --  The conversion of arrays of anonymous access types can lead
10351                --  to dangling pointers. AI-392 formalizes the accessibility
10352                --  checks that must be applied to such conversions to prevent
10353                --  out-of-scope references.
10354
10355             elsif Ekind_In
10356                     (Target_Comp_Base, E_Anonymous_Access_Type,
10357                                        E_Anonymous_Access_Subprogram_Type)
10358               and then Ekind (Opnd_Comp_Base) = Ekind (Target_Comp_Base)
10359               and then
10360                 Subtypes_Statically_Match (Target_Comp_Type, Opnd_Comp_Type)
10361             then
10362                if Type_Access_Level (Target_Type) <
10363                     Deepest_Type_Access_Level (Opnd_Type)
10364                then
10365                   if In_Instance_Body then
10366                      Error_Msg_N
10367                        ("?source array type has " &
10368                         "deeper accessibility level than target", Operand);
10369                      Error_Msg_N
10370                        ("\?Program_Error will be raised at run time",
10371                         Operand);
10372                      Rewrite (N,
10373                        Make_Raise_Program_Error (Sloc (N),
10374                          Reason => PE_Accessibility_Check_Failed));
10375                      Set_Etype (N, Target_Type);
10376                      return False;
10377
10378                   --  Conversion not allowed because of accessibility levels
10379
10380                   else
10381                      Error_Msg_N
10382                        ("source array type has " &
10383                        "deeper accessibility level than target", Operand);
10384                      return False;
10385                   end if;
10386
10387                else
10388                   null;
10389                end if;
10390
10391             --  All other cases where component base types do not match
10392
10393             else
10394                Error_Msg_N
10395                  ("incompatible component types for array conversion",
10396                   Operand);
10397                return False;
10398             end if;
10399
10400             --  Check that component subtypes statically match. For numeric
10401             --  types this means that both must be either constrained or
10402             --  unconstrained. For enumeration types the bounds must match.
10403             --  All of this is checked in Subtypes_Statically_Match.
10404
10405             if not Subtypes_Statically_Match
10406                      (Target_Comp_Type, Opnd_Comp_Type)
10407             then
10408                Error_Msg_N
10409                  ("component subtypes must statically match", Operand);
10410                return False;
10411             end if;
10412          end if;
10413
10414          return True;
10415       end Valid_Array_Conversion;
10416
10417       -----------------------------
10418       -- Valid_Tagged_Conversion --
10419       -----------------------------
10420
10421       function Valid_Tagged_Conversion
10422         (Target_Type : Entity_Id;
10423          Opnd_Type   : Entity_Id) return Boolean
10424       is
10425       begin
10426          --  Upward conversions are allowed (RM 4.6(22))
10427
10428          if Covers (Target_Type, Opnd_Type)
10429            or else Is_Ancestor (Target_Type, Opnd_Type)
10430          then
10431             return True;
10432
10433          --  Downward conversion are allowed if the operand is class-wide
10434          --  (RM 4.6(23)).
10435
10436          elsif Is_Class_Wide_Type (Opnd_Type)
10437            and then Covers (Opnd_Type, Target_Type)
10438          then
10439             return True;
10440
10441          elsif Covers (Opnd_Type, Target_Type)
10442            or else Is_Ancestor (Opnd_Type, Target_Type)
10443          then
10444             return
10445               Conversion_Check (False,
10446                 "downward conversion of tagged objects not allowed");
10447
10448          --  Ada 2005 (AI-251): The conversion to/from interface types is
10449          --  always valid
10450
10451          elsif Is_Interface (Target_Type) or else Is_Interface (Opnd_Type) then
10452             return True;
10453
10454          --  If the operand is a class-wide type obtained through a limited_
10455          --  with clause, and the context includes the non-limited view, use
10456          --  it to determine whether the conversion is legal.
10457
10458          elsif Is_Class_Wide_Type (Opnd_Type)
10459            and then From_With_Type (Opnd_Type)
10460            and then Present (Non_Limited_View (Etype (Opnd_Type)))
10461            and then Is_Interface (Non_Limited_View (Etype (Opnd_Type)))
10462          then
10463             return True;
10464
10465          elsif Is_Access_Type (Opnd_Type)
10466            and then Is_Interface (Directly_Designated_Type (Opnd_Type))
10467          then
10468             return True;
10469
10470          else
10471             Error_Msg_NE
10472               ("invalid tagged conversion, not compatible with}",
10473                N, First_Subtype (Opnd_Type));
10474             return False;
10475          end if;
10476       end Valid_Tagged_Conversion;
10477
10478    --  Start of processing for Valid_Conversion
10479
10480    begin
10481       Check_Parameterless_Call (Operand);
10482
10483       if Is_Overloaded (Operand) then
10484          declare
10485             I   : Interp_Index;
10486             I1  : Interp_Index;
10487             It  : Interp;
10488             It1 : Interp;
10489             N1  : Entity_Id;
10490             T1  : Entity_Id;
10491
10492          begin
10493             --  Remove procedure calls, which syntactically cannot appear in
10494             --  this context, but which cannot be removed by type checking,
10495             --  because the context does not impose a type.
10496
10497             --  When compiling for VMS, spurious ambiguities can be produced
10498             --  when arithmetic operations have a literal operand and return
10499             --  System.Address or a descendant of it. These ambiguities are
10500             --  otherwise resolved by the context, but for conversions there
10501             --  is no context type and the removal of the spurious operations
10502             --  must be done explicitly here.
10503
10504             --  The node may be labelled overloaded, but still contain only one
10505             --  interpretation because others were discarded earlier. If this
10506             --  is the case, retain the single interpretation if legal.
10507
10508             Get_First_Interp (Operand, I, It);
10509             Opnd_Type := It.Typ;
10510             Get_Next_Interp (I, It);
10511
10512             if Present (It.Typ)
10513               and then Opnd_Type /= Standard_Void_Type
10514             then
10515                --  More than one candidate interpretation is available
10516
10517                Get_First_Interp (Operand, I, It);
10518                while Present (It.Typ) loop
10519                   if It.Typ = Standard_Void_Type then
10520                      Remove_Interp (I);
10521                   end if;
10522
10523                   if Present (System_Aux_Id)
10524                     and then Is_Descendent_Of_Address (It.Typ)
10525                   then
10526                      Remove_Interp (I);
10527                   end if;
10528
10529                   Get_Next_Interp (I, It);
10530                end loop;
10531             end if;
10532
10533             Get_First_Interp (Operand, I, It);
10534             I1  := I;
10535             It1 := It;
10536
10537             if No (It.Typ) then
10538                Error_Msg_N ("illegal operand in conversion", Operand);
10539                return False;
10540             end if;
10541
10542             Get_Next_Interp (I, It);
10543
10544             if Present (It.Typ) then
10545                N1  := It1.Nam;
10546                T1  := It1.Typ;
10547                It1 :=  Disambiguate (Operand, I1, I, Any_Type);
10548
10549                if It1 = No_Interp then
10550                   Error_Msg_N ("ambiguous operand in conversion", Operand);
10551
10552                   --  If the interpretation involves a standard operator, use
10553                   --  the location of the type, which may be user-defined.
10554
10555                   if Sloc (It.Nam) = Standard_Location then
10556                      Error_Msg_Sloc := Sloc (It.Typ);
10557                   else
10558                      Error_Msg_Sloc := Sloc (It.Nam);
10559                   end if;
10560
10561                   Error_Msg_N -- CODEFIX
10562                     ("\\possible interpretation#!", Operand);
10563
10564                   if Sloc (N1) = Standard_Location then
10565                      Error_Msg_Sloc := Sloc (T1);
10566                   else
10567                      Error_Msg_Sloc := Sloc (N1);
10568                   end if;
10569
10570                   Error_Msg_N -- CODEFIX
10571                     ("\\possible interpretation#!", Operand);
10572
10573                   return False;
10574                end if;
10575             end if;
10576
10577             Set_Etype (Operand, It1.Typ);
10578             Opnd_Type := It1.Typ;
10579          end;
10580       end if;
10581
10582       --  Numeric types
10583
10584       if Is_Numeric_Type (Target_Type)  then
10585
10586          --  A universal fixed expression can be converted to any numeric type
10587
10588          if Opnd_Type = Universal_Fixed then
10589             return True;
10590
10591          --  Also no need to check when in an instance or inlined body, because
10592          --  the legality has been established when the template was analyzed.
10593          --  Furthermore, numeric conversions may occur where only a private
10594          --  view of the operand type is visible at the instantiation point.
10595          --  This results in a spurious error if we check that the operand type
10596          --  is a numeric type.
10597
10598          --  Note: in a previous version of this unit, the following tests were
10599          --  applied only for generated code (Comes_From_Source set to False),
10600          --  but in fact the test is required for source code as well, since
10601          --  this situation can arise in source code.
10602
10603          elsif In_Instance or else In_Inlined_Body then
10604             return True;
10605
10606          --  Otherwise we need the conversion check
10607
10608          else
10609             return Conversion_Check
10610                     (Is_Numeric_Type (Opnd_Type),
10611                      "illegal operand for numeric conversion");
10612          end if;
10613
10614       --  Array types
10615
10616       elsif Is_Array_Type (Target_Type) then
10617          if not Is_Array_Type (Opnd_Type)
10618            or else Opnd_Type = Any_Composite
10619            or else Opnd_Type = Any_String
10620          then
10621             Error_Msg_N ("illegal operand for array conversion", Operand);
10622             return False;
10623          else
10624             return Valid_Array_Conversion;
10625          end if;
10626
10627       --  Ada 2005 (AI-251): Anonymous access types where target references an
10628       --  interface type.
10629
10630       elsif Ekind_In (Target_Type, E_General_Access_Type,
10631                                    E_Anonymous_Access_Type)
10632         and then Is_Interface (Directly_Designated_Type (Target_Type))
10633       then
10634          --  Check the static accessibility rule of 4.6(17). Note that the
10635          --  check is not enforced when within an instance body, since the
10636          --  RM requires such cases to be caught at run time.
10637
10638          if Ekind (Target_Type) /= E_Anonymous_Access_Type then
10639             if Type_Access_Level (Opnd_Type) >
10640                Deepest_Type_Access_Level (Target_Type)
10641             then
10642                --  In an instance, this is a run-time check, but one we know
10643                --  will fail, so generate an appropriate warning. The raise
10644                --  will be generated by Expand_N_Type_Conversion.
10645
10646                if In_Instance_Body then
10647                   Error_Msg_N
10648                     ("?cannot convert local pointer to non-local access type",
10649                      Operand);
10650                   Error_Msg_N
10651                     ("\?Program_Error will be raised at run time", Operand);
10652
10653                else
10654                   Error_Msg_N
10655                     ("cannot convert local pointer to non-local access type",
10656                      Operand);
10657                   return False;
10658                end if;
10659
10660             --  Special accessibility checks are needed in the case of access
10661             --  discriminants declared for a limited type.
10662
10663             elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
10664               and then not Is_Local_Anonymous_Access (Opnd_Type)
10665             then
10666                --  When the operand is a selected access discriminant the check
10667                --  needs to be made against the level of the object denoted by
10668                --  the prefix of the selected name (Object_Access_Level handles
10669                --  checking the prefix of the operand for this case).
10670
10671                if Nkind (Operand) = N_Selected_Component
10672                  and then Object_Access_Level (Operand) >
10673                    Deepest_Type_Access_Level (Target_Type)
10674                then
10675                   --  In an instance, this is a run-time check, but one we know
10676                   --  will fail, so generate an appropriate warning. The raise
10677                   --  will be generated by Expand_N_Type_Conversion.
10678
10679                   if In_Instance_Body then
10680                      Error_Msg_N
10681                        ("?cannot convert access discriminant to non-local" &
10682                         " access type", Operand);
10683                      Error_Msg_N
10684                        ("\?Program_Error will be raised at run time", Operand);
10685                   else
10686                      Error_Msg_N
10687                        ("cannot convert access discriminant to non-local" &
10688                         " access type", Operand);
10689                      return False;
10690                   end if;
10691                end if;
10692
10693                --  The case of a reference to an access discriminant from
10694                --  within a limited type declaration (which will appear as
10695                --  a discriminal) is always illegal because the level of the
10696                --  discriminant is considered to be deeper than any (nameable)
10697                --  access type.
10698
10699                if Is_Entity_Name (Operand)
10700                  and then not Is_Local_Anonymous_Access (Opnd_Type)
10701                  and then
10702                    Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
10703                  and then Present (Discriminal_Link (Entity (Operand)))
10704                then
10705                   Error_Msg_N
10706                     ("discriminant has deeper accessibility level than target",
10707                      Operand);
10708                   return False;
10709                end if;
10710             end if;
10711          end if;
10712
10713          return True;
10714
10715       --  General and anonymous access types
10716
10717       elsif Ekind_In (Target_Type, E_General_Access_Type,
10718                                    E_Anonymous_Access_Type)
10719           and then
10720             Conversion_Check
10721               (Is_Access_Type (Opnd_Type)
10722                 and then not
10723                   Ekind_In (Opnd_Type, E_Access_Subprogram_Type,
10724                                        E_Access_Protected_Subprogram_Type),
10725                "must be an access-to-object type")
10726       then
10727          if Is_Access_Constant (Opnd_Type)
10728            and then not Is_Access_Constant (Target_Type)
10729          then
10730             Error_Msg_N
10731               ("access-to-constant operand type not allowed", Operand);
10732             return False;
10733          end if;
10734
10735          --  Check the static accessibility rule of 4.6(17). Note that the
10736          --  check is not enforced when within an instance body, since the RM
10737          --  requires such cases to be caught at run time.
10738
10739          if Ekind (Target_Type) /= E_Anonymous_Access_Type
10740            or else Is_Local_Anonymous_Access (Target_Type)
10741            or else Nkind (Associated_Node_For_Itype (Target_Type)) =
10742                      N_Object_Declaration
10743          then
10744             --  Ada 2012 (AI05-0149): Perform legality checking on implicit
10745             --  conversions from an anonymous access type to a named general
10746             --  access type. Such conversions are not allowed in the case of
10747             --  access parameters and stand-alone objects of an anonymous
10748             --  access type. The implicit conversion case is recognized by
10749             --  testing that Comes_From_Source is False and that it's been
10750             --  rewritten. The Comes_From_Source test isn't sufficient because
10751             --  nodes in inlined calls to predefined library routines can have
10752             --  Comes_From_Source set to False. (Is there a better way to test
10753             --  for implicit conversions???)
10754
10755             if Ada_Version >= Ada_2012
10756               and then not Comes_From_Source (N)
10757               and then N /= Original_Node (N)
10758               and then Ekind (Target_Type) = E_General_Access_Type
10759               and then Ekind (Opnd_Type) = E_Anonymous_Access_Type
10760             then
10761                if Is_Itype (Opnd_Type) then
10762
10763                   --  Implicit conversions aren't allowed for objects of an
10764                   --  anonymous access type, since such objects have nonstatic
10765                   --  levels in Ada 2012.
10766
10767                   if Nkind (Associated_Node_For_Itype (Opnd_Type)) =
10768                        N_Object_Declaration
10769                   then
10770                      Error_Msg_N
10771                        ("implicit conversion of stand-alone anonymous " &
10772                         "access object not allowed", Operand);
10773                      return False;
10774
10775                   --  Implicit conversions aren't allowed for anonymous access
10776                   --  parameters. The "not Is_Local_Anonymous_Access_Type" test
10777                   --  is done to exclude anonymous access results.
10778
10779                   elsif not Is_Local_Anonymous_Access (Opnd_Type)
10780                     and then Nkind_In (Associated_Node_For_Itype (Opnd_Type),
10781                                        N_Function_Specification,
10782                                        N_Procedure_Specification)
10783                   then
10784                      Error_Msg_N
10785                        ("implicit conversion of anonymous access formal " &
10786                         "not allowed", Operand);
10787                      return False;
10788
10789                   --  This is a case where there's an enclosing object whose
10790                   --  to which the "statically deeper than" relationship does
10791                   --  not apply (such as an access discriminant selected from
10792                   --  a dereference of an access parameter).
10793
10794                   elsif Object_Access_Level (Operand)
10795                           = Scope_Depth (Standard_Standard)
10796                   then
10797                      Error_Msg_N
10798                        ("implicit conversion of anonymous access value " &
10799                         "not allowed", Operand);
10800                      return False;
10801
10802                   --  In other cases, the level of the operand's type must be
10803                   --  statically less deep than that of the target type, else
10804                   --  implicit conversion is disallowed (by RM12-8.6(27.1/3)).
10805
10806                   elsif Type_Access_Level (Opnd_Type) >
10807                         Deepest_Type_Access_Level (Target_Type)
10808                   then
10809                      Error_Msg_N
10810                        ("implicit conversion of anonymous access value " &
10811                         "violates accessibility", Operand);
10812                      return False;
10813                   end if;
10814                end if;
10815
10816             elsif Type_Access_Level (Opnd_Type) >
10817                     Deepest_Type_Access_Level (Target_Type)
10818             then
10819                --  In an instance, this is a run-time check, but one we know
10820                --  will fail, so generate an appropriate warning. The raise
10821                --  will be generated by Expand_N_Type_Conversion.
10822
10823                if In_Instance_Body then
10824                   Error_Msg_N
10825                     ("?cannot convert local pointer to non-local access type",
10826                      Operand);
10827                   Error_Msg_N
10828                     ("\?Program_Error will be raised at run time", Operand);
10829
10830                else
10831                   --  Avoid generation of spurious error message
10832
10833                   if not Error_Posted (N) then
10834                      Error_Msg_N
10835                       ("cannot convert local pointer to non-local access type",
10836                        Operand);
10837                   end if;
10838
10839                   return False;
10840                end if;
10841
10842             --  Special accessibility checks are needed in the case of access
10843             --  discriminants declared for a limited type.
10844
10845             elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
10846               and then not Is_Local_Anonymous_Access (Opnd_Type)
10847             then
10848                --  When the operand is a selected access discriminant the check
10849                --  needs to be made against the level of the object denoted by
10850                --  the prefix of the selected name (Object_Access_Level handles
10851                --  checking the prefix of the operand for this case).
10852
10853                if Nkind (Operand) = N_Selected_Component
10854                  and then Object_Access_Level (Operand) >
10855                           Deepest_Type_Access_Level (Target_Type)
10856                then
10857                   --  In an instance, this is a run-time check, but one we know
10858                   --  will fail, so generate an appropriate warning. The raise
10859                   --  will be generated by Expand_N_Type_Conversion.
10860
10861                   if In_Instance_Body then
10862                      Error_Msg_N
10863                        ("?cannot convert access discriminant to non-local" &
10864                         " access type", Operand);
10865                      Error_Msg_N
10866                        ("\?Program_Error will be raised at run time",
10867                         Operand);
10868
10869                   else
10870                      Error_Msg_N
10871                        ("cannot convert access discriminant to non-local" &
10872                         " access type", Operand);
10873                      return False;
10874                   end if;
10875                end if;
10876
10877                --  The case of a reference to an access discriminant from
10878                --  within a limited type declaration (which will appear as
10879                --  a discriminal) is always illegal because the level of the
10880                --  discriminant is considered to be deeper than any (nameable)
10881                --  access type.
10882
10883                if Is_Entity_Name (Operand)
10884                  and then
10885                    Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
10886                  and then Present (Discriminal_Link (Entity (Operand)))
10887                then
10888                   Error_Msg_N
10889                     ("discriminant has deeper accessibility level than target",
10890                      Operand);
10891                   return False;
10892                end if;
10893             end if;
10894          end if;
10895
10896          --  In the presence of limited_with clauses we have to use non-limited
10897          --  views, if available.
10898
10899          Check_Limited : declare
10900             function Full_Designated_Type (T : Entity_Id) return Entity_Id;
10901             --  Helper function to handle limited views
10902
10903             --------------------------
10904             -- Full_Designated_Type --
10905             --------------------------
10906
10907             function Full_Designated_Type (T : Entity_Id) return Entity_Id is
10908                Desig : constant Entity_Id := Designated_Type (T);
10909
10910             begin
10911                --  Handle the limited view of a type
10912
10913                if Is_Incomplete_Type (Desig)
10914                  and then From_With_Type (Desig)
10915                  and then Present (Non_Limited_View (Desig))
10916                then
10917                   return Available_View (Desig);
10918                else
10919                   return Desig;
10920                end if;
10921             end Full_Designated_Type;
10922
10923             --  Local Declarations
10924
10925             Target : constant Entity_Id := Full_Designated_Type (Target_Type);
10926             Opnd   : constant Entity_Id := Full_Designated_Type (Opnd_Type);
10927
10928             Same_Base : constant Boolean :=
10929                           Base_Type (Target) = Base_Type (Opnd);
10930
10931          --  Start of processing for Check_Limited
10932
10933          begin
10934             if Is_Tagged_Type (Target) then
10935                return Valid_Tagged_Conversion (Target, Opnd);
10936
10937             else
10938                if not Same_Base then
10939                   Error_Msg_NE
10940                     ("target designated type not compatible with }",
10941                      N, Base_Type (Opnd));
10942                   return False;
10943
10944                --  Ada 2005 AI-384: legality rule is symmetric in both
10945                --  designated types. The conversion is legal (with possible
10946                --  constraint check) if either designated type is
10947                --  unconstrained.
10948
10949                elsif Subtypes_Statically_Match (Target, Opnd)
10950                  or else
10951                    (Has_Discriminants (Target)
10952                      and then
10953                       (not Is_Constrained (Opnd)
10954                         or else not Is_Constrained (Target)))
10955                then
10956                   --  Special case, if Value_Size has been used to make the
10957                   --  sizes different, the conversion is not allowed even
10958                   --  though the subtypes statically match.
10959
10960                   if Known_Static_RM_Size (Target)
10961                     and then Known_Static_RM_Size (Opnd)
10962                     and then RM_Size (Target) /= RM_Size (Opnd)
10963                   then
10964                      Error_Msg_NE
10965                        ("target designated subtype not compatible with }",
10966                         N, Opnd);
10967                      Error_Msg_NE
10968                        ("\because sizes of the two designated subtypes differ",
10969                         N, Opnd);
10970                      return False;
10971
10972                   --  Normal case where conversion is allowed
10973
10974                   else
10975                      return True;
10976                   end if;
10977
10978                else
10979                   Error_Msg_NE
10980                     ("target designated subtype not compatible with }",
10981                      N, Opnd);
10982                   return False;
10983                end if;
10984             end if;
10985          end Check_Limited;
10986
10987       --  Access to subprogram types. If the operand is an access parameter,
10988       --  the type has a deeper accessibility that any master, and cannot be
10989       --  assigned. We must make an exception if the conversion is part of an
10990       --  assignment and the target is the return object of an extended return
10991       --  statement, because in that case the accessibility check takes place
10992       --  after the return.
10993
10994       elsif Is_Access_Subprogram_Type (Target_Type)
10995         and then No (Corresponding_Remote_Type (Opnd_Type))
10996       then
10997          if Ekind (Base_Type (Opnd_Type)) = E_Anonymous_Access_Subprogram_Type
10998            and then Is_Entity_Name (Operand)
10999            and then Ekind (Entity (Operand)) = E_In_Parameter
11000            and then
11001              (Nkind (Parent (N)) /= N_Assignment_Statement
11002                or else not Is_Entity_Name (Name (Parent (N)))
11003                or else not Is_Return_Object (Entity (Name (Parent (N)))))
11004          then
11005             Error_Msg_N
11006               ("illegal attempt to store anonymous access to subprogram",
11007                Operand);
11008             Error_Msg_N
11009               ("\value has deeper accessibility than any master " &
11010                "(RM 3.10.2 (13))",
11011                Operand);
11012
11013             Error_Msg_NE
11014              ("\use named access type for& instead of access parameter",
11015                Operand, Entity (Operand));
11016          end if;
11017
11018          --  Check that the designated types are subtype conformant
11019
11020          Check_Subtype_Conformant (New_Id  => Designated_Type (Target_Type),
11021                                    Old_Id  => Designated_Type (Opnd_Type),
11022                                    Err_Loc => N);
11023
11024          --  Check the static accessibility rule of 4.6(20)
11025
11026          if Type_Access_Level (Opnd_Type) >
11027             Deepest_Type_Access_Level (Target_Type)
11028          then
11029             Error_Msg_N
11030               ("operand type has deeper accessibility level than target",
11031                Operand);
11032
11033          --  Check that if the operand type is declared in a generic body,
11034          --  then the target type must be declared within that same body
11035          --  (enforces last sentence of 4.6(20)).
11036
11037          elsif Present (Enclosing_Generic_Body (Opnd_Type)) then
11038             declare
11039                O_Gen : constant Node_Id :=
11040                          Enclosing_Generic_Body (Opnd_Type);
11041
11042                T_Gen : Node_Id;
11043
11044             begin
11045                T_Gen := Enclosing_Generic_Body (Target_Type);
11046                while Present (T_Gen) and then T_Gen /= O_Gen loop
11047                   T_Gen := Enclosing_Generic_Body (T_Gen);
11048                end loop;
11049
11050                if T_Gen /= O_Gen then
11051                   Error_Msg_N
11052                     ("target type must be declared in same generic body"
11053                      & " as operand type", N);
11054                end if;
11055             end;
11056          end if;
11057
11058          return True;
11059
11060       --  Remote subprogram access types
11061
11062       elsif Is_Remote_Access_To_Subprogram_Type (Target_Type)
11063         and then Is_Remote_Access_To_Subprogram_Type (Opnd_Type)
11064       then
11065          --  It is valid to convert from one RAS type to another provided
11066          --  that their specification statically match.
11067
11068          Check_Subtype_Conformant
11069            (New_Id  =>
11070               Designated_Type (Corresponding_Remote_Type (Target_Type)),
11071             Old_Id  =>
11072               Designated_Type (Corresponding_Remote_Type (Opnd_Type)),
11073             Err_Loc =>
11074               N);
11075          return True;
11076
11077       --  If it was legal in the generic, it's legal in the instance
11078
11079       elsif In_Instance_Body then
11080          return True;
11081
11082       --  If both are tagged types, check legality of view conversions
11083
11084       elsif Is_Tagged_Type (Target_Type)
11085               and then
11086             Is_Tagged_Type (Opnd_Type)
11087       then
11088          return Valid_Tagged_Conversion (Target_Type, Opnd_Type);
11089
11090       --  Types derived from the same root type are convertible
11091
11092       elsif Root_Type (Target_Type) = Root_Type (Opnd_Type) then
11093          return True;
11094
11095       --  In an instance or an inlined body, there may be inconsistent views of
11096       --  the same type, or of types derived from a common root.
11097
11098       elsif (In_Instance or In_Inlined_Body)
11099         and then
11100           Root_Type (Underlying_Type (Target_Type)) =
11101           Root_Type (Underlying_Type (Opnd_Type))
11102       then
11103          return True;
11104
11105       --  Special check for common access type error case
11106
11107       elsif Ekind (Target_Type) = E_Access_Type
11108          and then Is_Access_Type (Opnd_Type)
11109       then
11110          Error_Msg_N ("target type must be general access type!", N);
11111          Error_Msg_NE -- CODEFIX
11112             ("add ALL to }!", N, Target_Type);
11113          return False;
11114
11115       else
11116          Error_Msg_NE ("invalid conversion, not compatible with }",
11117            N, Opnd_Type);
11118          return False;
11119       end if;
11120    end Valid_Conversion;
11121
11122 end Sem_Res;