OSDN Git Service

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