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