OSDN Git Service

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