[multiple changes]
[official-gcc.git] / gcc / ada / sem_res.adb
blob84f19a7a8edada6544468ccd0c6e587e66d75b13
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-2017, 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 ------------------------------------------------------------------------------
26 with Atree; use Atree;
27 with Checks; use Checks;
28 with Debug; use Debug;
29 with Debug_A; use Debug_A;
30 with Einfo; use Einfo;
31 with Errout; use Errout;
32 with Expander; use Expander;
33 with Exp_Disp; use Exp_Disp;
34 with Exp_Ch6; use Exp_Ch6;
35 with Exp_Ch7; use Exp_Ch7;
36 with Exp_Tss; use Exp_Tss;
37 with Exp_Util; use Exp_Util;
38 with Freeze; use Freeze;
39 with Ghost; use Ghost;
40 with Inline; use Inline;
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 Par_SCO; use Par_SCO;
50 with Restrict; use Restrict;
51 with Rident; use Rident;
52 with Rtsfind; use Rtsfind;
53 with Sem; use Sem;
54 with Sem_Aux; use Sem_Aux;
55 with Sem_Aggr; use Sem_Aggr;
56 with Sem_Attr; use Sem_Attr;
57 with Sem_Cat; use Sem_Cat;
58 with Sem_Ch4; use Sem_Ch4;
59 with Sem_Ch3; use Sem_Ch3;
60 with Sem_Ch6; use Sem_Ch6;
61 with Sem_Ch8; use Sem_Ch8;
62 with Sem_Ch13; use Sem_Ch13;
63 with Sem_Dim; use Sem_Dim;
64 with Sem_Disp; use Sem_Disp;
65 with Sem_Dist; use Sem_Dist;
66 with Sem_Elab; use Sem_Elab;
67 with Sem_Elim; use Sem_Elim;
68 with Sem_Eval; use Sem_Eval;
69 with Sem_Intr; use Sem_Intr;
70 with Sem_Util; use Sem_Util;
71 with Targparm; use Targparm;
72 with Sem_Type; use Sem_Type;
73 with Sem_Warn; use Sem_Warn;
74 with Sinfo; use Sinfo;
75 with Sinfo.CN; use Sinfo.CN;
76 with Snames; use Snames;
77 with Stand; use Stand;
78 with Stringt; use Stringt;
79 with Style; use Style;
80 with Tbuild; use Tbuild;
81 with Uintp; use Uintp;
82 with Urealp; use Urealp;
84 package body Sem_Res is
86 -----------------------
87 -- Local Subprograms --
88 -----------------------
90 -- Second pass (top-down) type checking and overload resolution procedures
91 -- Typ is the type required by context. These procedures propagate the
92 -- type information recursively to the descendants of N. If the node is not
93 -- overloaded, its Etype is established in the first pass. If overloaded,
94 -- the Resolve routines set the correct type. For arithmetic operators, the
95 -- Etype is the base type of the context.
97 -- Note that Resolve_Attribute is separated off in Sem_Attr
99 procedure Check_Discriminant_Use (N : Node_Id);
100 -- Enforce the restrictions on the use of discriminants when constraining
101 -- a component of a discriminated type (record or concurrent type).
103 procedure Check_For_Visible_Operator (N : Node_Id; T : Entity_Id);
104 -- Given a node for an operator associated with type T, check that the
105 -- operator is visible. Operators all of whose operands are universal must
106 -- be checked for visibility during resolution because their type is not
107 -- determinable based on their operands.
109 procedure Check_Fully_Declared_Prefix
110 (Typ : Entity_Id;
111 Pref : Node_Id);
112 -- Check that the type of the prefix of a dereference is not incomplete
114 function Check_Infinite_Recursion (N : Node_Id) return Boolean;
115 -- Given a call node, N, which is known to occur immediately within the
116 -- subprogram being called, determines whether it is a detectable case of
117 -- an infinite recursion, and if so, outputs appropriate messages. Returns
118 -- True if an infinite recursion is detected, and False otherwise.
120 procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id);
121 -- If the type of the object being initialized uses the secondary stack
122 -- directly or indirectly, create a transient scope for the call to the
123 -- init proc. This is because we do not create transient scopes for the
124 -- initialization of individual components within the init proc itself.
125 -- Could be optimized away perhaps?
127 procedure Check_No_Direct_Boolean_Operators (N : Node_Id);
128 -- N is the node for a logical operator. If the operator is predefined, and
129 -- the root type of the operands is Standard.Boolean, then a check is made
130 -- for restriction No_Direct_Boolean_Operators. This procedure also handles
131 -- the style check for Style_Check_Boolean_And_Or.
133 function Is_Atomic_Ref_With_Address (N : Node_Id) return Boolean;
134 -- N is either an indexed component or a selected component. This function
135 -- returns true if the prefix refers to an object that has an address
136 -- clause (the case in which we may want to issue a warning).
138 function Is_Definite_Access_Type (E : Entity_Id) return Boolean;
139 -- Determine whether E is an access type declared by an access declaration,
140 -- and not an (anonymous) allocator type.
142 function Is_Predefined_Op (Nam : Entity_Id) return Boolean;
143 -- Utility to check whether the entity for an operator is a predefined
144 -- operator, in which case the expression is left as an operator in the
145 -- tree (else it is rewritten into a call). An instance of an intrinsic
146 -- conversion operation may be given an operator name, but is not treated
147 -- like an operator. Note that an operator that is an imported back-end
148 -- builtin has convention Intrinsic, but is expected to be rewritten into
149 -- a call, so such an operator is not treated as predefined by this
150 -- predicate.
152 procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id);
153 -- If a default expression in entry call N depends on the discriminants
154 -- of the task, it must be replaced with a reference to the discriminant
155 -- of the task being called.
157 procedure Resolve_Op_Concat_Arg
158 (N : Node_Id;
159 Arg : Node_Id;
160 Typ : Entity_Id;
161 Is_Comp : Boolean);
162 -- Internal procedure for Resolve_Op_Concat to resolve one operand of
163 -- concatenation operator. The operand is either of the array type or of
164 -- the component type. If the operand is an aggregate, and the component
165 -- type is composite, this is ambiguous if component type has aggregates.
167 procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id);
168 -- Does the first part of the work of Resolve_Op_Concat
170 procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id);
171 -- Does the "rest" of the work of Resolve_Op_Concat, after the left operand
172 -- has been resolved. See Resolve_Op_Concat for details.
174 procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id);
175 procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id);
176 procedure Resolve_Call (N : Node_Id; Typ : Entity_Id);
177 procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id);
178 procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id);
179 procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id);
180 procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id);
181 procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id);
182 procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id);
183 procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id);
184 procedure Resolve_If_Expression (N : Node_Id; Typ : Entity_Id);
185 procedure Resolve_Generalized_Indexing (N : Node_Id; Typ : Entity_Id);
186 procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id);
187 procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id);
188 procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id);
189 procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id);
190 procedure Resolve_Null (N : Node_Id; Typ : Entity_Id);
191 procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id);
192 procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id);
193 procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id);
194 procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id);
195 procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id);
196 procedure Resolve_Raise_Expression (N : Node_Id; Typ : Entity_Id);
197 procedure Resolve_Range (N : Node_Id; Typ : Entity_Id);
198 procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id);
199 procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id);
200 procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id);
201 procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id);
202 procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id);
203 procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id);
204 procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id);
205 procedure Resolve_Target_Name (N : Node_Id; Typ : Entity_Id);
206 procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id);
207 procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id);
208 procedure Resolve_Unchecked_Expression (N : Node_Id; Typ : Entity_Id);
209 procedure Resolve_Unchecked_Type_Conversion (N : Node_Id; Typ : Entity_Id);
211 function Operator_Kind
212 (Op_Name : Name_Id;
213 Is_Binary : Boolean) return Node_Kind;
214 -- Utility to map the name of an operator into the corresponding Node. Used
215 -- by other node rewriting procedures.
217 procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id);
218 -- Resolve actuals of call, and add default expressions for missing ones.
219 -- N is the Node_Id for the subprogram call, and Nam is the entity of the
220 -- called subprogram.
222 procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id);
223 -- Called from Resolve_Call, when the prefix denotes an entry or element
224 -- of entry family. Actuals are resolved as for subprograms, and the node
225 -- is rebuilt as an entry call. Also called for protected operations. Typ
226 -- is the context type, which is used when the operation is a protected
227 -- function with no arguments, and the return value is indexed.
229 procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id);
230 -- A call to a user-defined intrinsic operator is rewritten as a call to
231 -- the corresponding predefined operator, with suitable conversions. Note
232 -- that this applies only for intrinsic operators that denote predefined
233 -- operators, not ones that are intrinsic imports of back-end builtins.
235 procedure Resolve_Intrinsic_Unary_Operator (N : Node_Id; Typ : Entity_Id);
236 -- Ditto, for arithmetic unary operators
238 procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id);
239 -- If an operator node resolves to a call to a user-defined operator,
240 -- rewrite the node as a function call.
242 procedure Make_Call_Into_Operator
243 (N : Node_Id;
244 Typ : Entity_Id;
245 Op_Id : Entity_Id);
246 -- Inverse transformation: if an operator is given in functional notation,
247 -- then after resolving the node, transform into an operator node, so that
248 -- operands are resolved properly. Recall that predefined operators do not
249 -- have a full signature and special resolution rules apply.
251 procedure Rewrite_Renamed_Operator
252 (N : Node_Id;
253 Op : Entity_Id;
254 Typ : Entity_Id);
255 -- An operator can rename another, e.g. in an instantiation. In that
256 -- case, the proper operator node must be constructed and resolved.
258 procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id);
259 -- The String_Literal_Subtype is built for all strings that are not
260 -- operands of a static concatenation operation. If the argument is not
261 -- a N_String_Literal node, then the call has no effect.
263 procedure Set_Slice_Subtype (N : Node_Id);
264 -- Build subtype of array type, with the range specified by the slice
266 procedure Simplify_Type_Conversion (N : Node_Id);
267 -- Called after N has been resolved and evaluated, but before range checks
268 -- have been applied. Currently simplifies a combination of floating-point
269 -- to integer conversion and Rounding or Truncation attribute.
271 function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id;
272 -- A universal_fixed expression in an universal context is unambiguous if
273 -- there is only one applicable fixed point type. Determining whether there
274 -- is only one requires a search over all visible entities, and happens
275 -- only in very pathological cases (see 6115-006).
277 -------------------------
278 -- Ambiguous_Character --
279 -------------------------
281 procedure Ambiguous_Character (C : Node_Id) is
282 E : Entity_Id;
284 begin
285 if Nkind (C) = N_Character_Literal then
286 Error_Msg_N ("ambiguous character literal", C);
288 -- First the ones in Standard
290 Error_Msg_N ("\\possible interpretation: Character!", C);
291 Error_Msg_N ("\\possible interpretation: Wide_Character!", C);
293 -- Include Wide_Wide_Character in Ada 2005 mode
295 if Ada_Version >= Ada_2005 then
296 Error_Msg_N ("\\possible interpretation: Wide_Wide_Character!", C);
297 end if;
299 -- Now any other types that match
301 E := Current_Entity (C);
302 while Present (E) loop
303 Error_Msg_NE ("\\possible interpretation:}!", C, Etype (E));
304 E := Homonym (E);
305 end loop;
306 end if;
307 end Ambiguous_Character;
309 -------------------------
310 -- Analyze_And_Resolve --
311 -------------------------
313 procedure Analyze_And_Resolve (N : Node_Id) is
314 begin
315 Analyze (N);
316 Resolve (N);
317 end Analyze_And_Resolve;
319 procedure Analyze_And_Resolve (N : Node_Id; Typ : Entity_Id) is
320 begin
321 Analyze (N);
322 Resolve (N, Typ);
323 end Analyze_And_Resolve;
325 -- Versions with check(s) suppressed
327 procedure Analyze_And_Resolve
328 (N : Node_Id;
329 Typ : Entity_Id;
330 Suppress : Check_Id)
332 Scop : constant Entity_Id := Current_Scope;
334 begin
335 if Suppress = All_Checks then
336 declare
337 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
338 begin
339 Scope_Suppress.Suppress := (others => True);
340 Analyze_And_Resolve (N, Typ);
341 Scope_Suppress.Suppress := Sva;
342 end;
344 else
345 declare
346 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
347 begin
348 Scope_Suppress.Suppress (Suppress) := True;
349 Analyze_And_Resolve (N, Typ);
350 Scope_Suppress.Suppress (Suppress) := Svg;
351 end;
352 end if;
354 if Current_Scope /= Scop
355 and then Scope_Is_Transient
356 then
357 -- This can only happen if a transient scope was created for an inner
358 -- expression, which will be removed upon completion of the analysis
359 -- of an enclosing construct. The transient scope must have the
360 -- suppress status of the enclosing environment, not of this Analyze
361 -- call.
363 Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
364 Scope_Suppress;
365 end if;
366 end Analyze_And_Resolve;
368 procedure Analyze_And_Resolve
369 (N : Node_Id;
370 Suppress : Check_Id)
372 Scop : constant Entity_Id := Current_Scope;
374 begin
375 if Suppress = All_Checks then
376 declare
377 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
378 begin
379 Scope_Suppress.Suppress := (others => True);
380 Analyze_And_Resolve (N);
381 Scope_Suppress.Suppress := Sva;
382 end;
384 else
385 declare
386 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
387 begin
388 Scope_Suppress.Suppress (Suppress) := True;
389 Analyze_And_Resolve (N);
390 Scope_Suppress.Suppress (Suppress) := Svg;
391 end;
392 end if;
394 if Current_Scope /= Scop and then Scope_Is_Transient then
395 Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
396 Scope_Suppress;
397 end if;
398 end Analyze_And_Resolve;
400 ----------------------------
401 -- Check_Discriminant_Use --
402 ----------------------------
404 procedure Check_Discriminant_Use (N : Node_Id) is
405 PN : constant Node_Id := Parent (N);
406 Disc : constant Entity_Id := Entity (N);
407 P : Node_Id;
408 D : Node_Id;
410 begin
411 -- Any use in a spec-expression is legal
413 if In_Spec_Expression then
414 null;
416 elsif Nkind (PN) = N_Range then
418 -- Discriminant cannot be used to constrain a scalar type
420 P := Parent (PN);
422 if Nkind (P) = N_Range_Constraint
423 and then Nkind (Parent (P)) = N_Subtype_Indication
424 and then Nkind (Parent (Parent (P))) = N_Component_Definition
425 then
426 Error_Msg_N ("discriminant cannot constrain scalar type", N);
428 elsif Nkind (P) = N_Index_Or_Discriminant_Constraint then
430 -- The following check catches the unusual case where a
431 -- discriminant appears within an index constraint that is part
432 -- of a larger expression within a constraint on a component,
433 -- e.g. "C : Int range 1 .. F (new A(1 .. D))". For now we only
434 -- check case of record components, and note that a similar check
435 -- should also apply in the case of discriminant constraints
436 -- below. ???
438 -- Note that the check for N_Subtype_Declaration below is to
439 -- detect the valid use of discriminants in the constraints of a
440 -- subtype declaration when this subtype declaration appears
441 -- inside the scope of a record type (which is syntactically
442 -- illegal, but which may be created as part of derived type
443 -- processing for records). See Sem_Ch3.Build_Derived_Record_Type
444 -- for more info.
446 if Ekind (Current_Scope) = E_Record_Type
447 and then Scope (Disc) = Current_Scope
448 and then not
449 (Nkind (Parent (P)) = N_Subtype_Indication
450 and then
451 Nkind_In (Parent (Parent (P)), N_Component_Definition,
452 N_Subtype_Declaration)
453 and then Paren_Count (N) = 0)
454 then
455 Error_Msg_N
456 ("discriminant must appear alone in component constraint", N);
457 return;
458 end if;
460 -- Detect a common error:
462 -- type R (D : Positive := 100) is record
463 -- Name : String (1 .. D);
464 -- end record;
466 -- The default value causes an object of type R to be allocated
467 -- with room for Positive'Last characters. The RM does not mandate
468 -- the allocation of the maximum size, but that is what GNAT does
469 -- so we should warn the programmer that there is a problem.
471 Check_Large : declare
472 SI : Node_Id;
473 T : Entity_Id;
474 TB : Node_Id;
475 CB : Entity_Id;
477 function Large_Storage_Type (T : Entity_Id) return Boolean;
478 -- Return True if type T has a large enough range that any
479 -- array whose index type covered the whole range of the type
480 -- would likely raise Storage_Error.
482 ------------------------
483 -- Large_Storage_Type --
484 ------------------------
486 function Large_Storage_Type (T : Entity_Id) return Boolean is
487 begin
488 -- The type is considered large if its bounds are known at
489 -- compile time and if it requires at least as many bits as
490 -- a Positive to store the possible values.
492 return Compile_Time_Known_Value (Type_Low_Bound (T))
493 and then Compile_Time_Known_Value (Type_High_Bound (T))
494 and then
495 Minimum_Size (T, Biased => True) >=
496 RM_Size (Standard_Positive);
497 end Large_Storage_Type;
499 -- Start of processing for Check_Large
501 begin
502 -- Check that the Disc has a large range
504 if not Large_Storage_Type (Etype (Disc)) then
505 goto No_Danger;
506 end if;
508 -- If the enclosing type is limited, we allocate only the
509 -- default value, not the maximum, and there is no need for
510 -- a warning.
512 if Is_Limited_Type (Scope (Disc)) then
513 goto No_Danger;
514 end if;
516 -- Check that it is the high bound
518 if N /= High_Bound (PN)
519 or else No (Discriminant_Default_Value (Disc))
520 then
521 goto No_Danger;
522 end if;
524 -- Check the array allows a large range at this bound. First
525 -- find the array
527 SI := Parent (P);
529 if Nkind (SI) /= N_Subtype_Indication then
530 goto No_Danger;
531 end if;
533 T := Entity (Subtype_Mark (SI));
535 if not Is_Array_Type (T) then
536 goto No_Danger;
537 end if;
539 -- Next, find the dimension
541 TB := First_Index (T);
542 CB := First (Constraints (P));
543 while True
544 and then Present (TB)
545 and then Present (CB)
546 and then CB /= PN
547 loop
548 Next_Index (TB);
549 Next (CB);
550 end loop;
552 if CB /= PN then
553 goto No_Danger;
554 end if;
556 -- Now, check the dimension has a large range
558 if not Large_Storage_Type (Etype (TB)) then
559 goto No_Danger;
560 end if;
562 -- Warn about the danger
564 Error_Msg_N
565 ("??creation of & object may raise Storage_Error!",
566 Scope (Disc));
568 <<No_Danger>>
569 null;
571 end Check_Large;
572 end if;
574 -- Legal case is in index or discriminant constraint
576 elsif Nkind_In (PN, N_Index_Or_Discriminant_Constraint,
577 N_Discriminant_Association)
578 then
579 if Paren_Count (N) > 0 then
580 Error_Msg_N
581 ("discriminant in constraint must appear alone", N);
583 elsif Nkind (N) = N_Expanded_Name
584 and then Comes_From_Source (N)
585 then
586 Error_Msg_N
587 ("discriminant must appear alone as a direct name", N);
588 end if;
590 return;
592 -- Otherwise, context is an expression. It should not be within (i.e. a
593 -- subexpression of) a constraint for a component.
595 else
596 D := PN;
597 P := Parent (PN);
598 while not Nkind_In (P, N_Component_Declaration,
599 N_Subtype_Indication,
600 N_Entry_Declaration)
601 loop
602 D := P;
603 P := Parent (P);
604 exit when No (P);
605 end loop;
607 -- If the discriminant is used in an expression that is a bound of a
608 -- scalar type, an Itype is created and the bounds are attached to
609 -- its range, not to the original subtype indication. Such use is of
610 -- course a double fault.
612 if (Nkind (P) = N_Subtype_Indication
613 and then Nkind_In (Parent (P), N_Component_Definition,
614 N_Derived_Type_Definition)
615 and then D = Constraint (P))
617 -- The constraint itself may be given by a subtype indication,
618 -- rather than by a more common discrete range.
620 or else (Nkind (P) = N_Subtype_Indication
621 and then
622 Nkind (Parent (P)) = N_Index_Or_Discriminant_Constraint)
623 or else Nkind (P) = N_Entry_Declaration
624 or else Nkind (D) = N_Defining_Identifier
625 then
626 Error_Msg_N
627 ("discriminant in constraint must appear alone", N);
628 end if;
629 end if;
630 end Check_Discriminant_Use;
632 --------------------------------
633 -- Check_For_Visible_Operator --
634 --------------------------------
636 procedure Check_For_Visible_Operator (N : Node_Id; T : Entity_Id) is
637 begin
638 if Is_Invisible_Operator (N, T) then
639 Error_Msg_NE -- CODEFIX
640 ("operator for} is not directly visible!", N, First_Subtype (T));
641 Error_Msg_N -- CODEFIX
642 ("use clause would make operation legal!", N);
643 end if;
644 end Check_For_Visible_Operator;
646 ----------------------------------
647 -- Check_Fully_Declared_Prefix --
648 ----------------------------------
650 procedure Check_Fully_Declared_Prefix
651 (Typ : Entity_Id;
652 Pref : Node_Id)
654 begin
655 -- Check that the designated type of the prefix of a dereference is
656 -- not an incomplete type. This cannot be done unconditionally, because
657 -- dereferences of private types are legal in default expressions. This
658 -- case is taken care of in Check_Fully_Declared, called below. There
659 -- are also 2005 cases where it is legal for the prefix to be unfrozen.
661 -- This consideration also applies to similar checks for allocators,
662 -- qualified expressions, and type conversions.
664 -- An additional exception concerns other per-object expressions that
665 -- are not directly related to component declarations, in particular
666 -- representation pragmas for tasks. These will be per-object
667 -- expressions if they depend on discriminants or some global entity.
668 -- If the task has access discriminants, the designated type may be
669 -- incomplete at the point the expression is resolved. This resolution
670 -- takes place within the body of the initialization procedure, where
671 -- the discriminant is replaced by its discriminal.
673 if Is_Entity_Name (Pref)
674 and then Ekind (Entity (Pref)) = E_In_Parameter
675 then
676 null;
678 -- Ada 2005 (AI-326): Tagged incomplete types allowed. The wrong usages
679 -- are handled by Analyze_Access_Attribute, Analyze_Assignment,
680 -- Analyze_Object_Renaming, and Freeze_Entity.
682 elsif Ada_Version >= Ada_2005
683 and then Is_Entity_Name (Pref)
684 and then Is_Access_Type (Etype (Pref))
685 and then Ekind (Directly_Designated_Type (Etype (Pref))) =
686 E_Incomplete_Type
687 and then Is_Tagged_Type (Directly_Designated_Type (Etype (Pref)))
688 then
689 null;
690 else
691 Check_Fully_Declared (Typ, Parent (Pref));
692 end if;
693 end Check_Fully_Declared_Prefix;
695 ------------------------------
696 -- Check_Infinite_Recursion --
697 ------------------------------
699 function Check_Infinite_Recursion (N : Node_Id) return Boolean is
700 P : Node_Id;
701 C : Node_Id;
703 function Same_Argument_List return Boolean;
704 -- Check whether list of actuals is identical to list of formals of
705 -- called function (which is also the enclosing scope).
707 ------------------------
708 -- Same_Argument_List --
709 ------------------------
711 function Same_Argument_List return Boolean is
712 A : Node_Id;
713 F : Entity_Id;
714 Subp : Entity_Id;
716 begin
717 if not Is_Entity_Name (Name (N)) then
718 return False;
719 else
720 Subp := Entity (Name (N));
721 end if;
723 F := First_Formal (Subp);
724 A := First_Actual (N);
725 while Present (F) and then Present (A) loop
726 if not Is_Entity_Name (A) or else Entity (A) /= F then
727 return False;
728 end if;
730 Next_Actual (A);
731 Next_Formal (F);
732 end loop;
734 return True;
735 end Same_Argument_List;
737 -- Start of processing for Check_Infinite_Recursion
739 begin
740 -- Special case, if this is a procedure call and is a call to the
741 -- current procedure with the same argument list, then this is for
742 -- sure an infinite recursion and we insert a call to raise SE.
744 if Is_List_Member (N)
745 and then List_Length (List_Containing (N)) = 1
746 and then Same_Argument_List
747 then
748 declare
749 P : constant Node_Id := Parent (N);
750 begin
751 if Nkind (P) = N_Handled_Sequence_Of_Statements
752 and then Nkind (Parent (P)) = N_Subprogram_Body
753 and then Is_Empty_List (Declarations (Parent (P)))
754 then
755 Error_Msg_Warn := SPARK_Mode /= On;
756 Error_Msg_N ("!infinite recursion<<", N);
757 Error_Msg_N ("\!Storage_Error [<<", N);
758 Insert_Action (N,
759 Make_Raise_Storage_Error (Sloc (N),
760 Reason => SE_Infinite_Recursion));
761 return True;
762 end if;
763 end;
764 end if;
766 -- If not that special case, search up tree, quitting if we reach a
767 -- construct (e.g. a conditional) that tells us that this is not a
768 -- case for an infinite recursion warning.
770 C := N;
771 loop
772 P := Parent (C);
774 -- If no parent, then we were not inside a subprogram, this can for
775 -- example happen when processing certain pragmas in a spec. Just
776 -- return False in this case.
778 if No (P) then
779 return False;
780 end if;
782 -- Done if we get to subprogram body, this is definitely an infinite
783 -- recursion case if we did not find anything to stop us.
785 exit when Nkind (P) = N_Subprogram_Body;
787 -- If appearing in conditional, result is false
789 if Nkind_In (P, N_Or_Else,
790 N_And_Then,
791 N_Case_Expression,
792 N_Case_Statement,
793 N_If_Expression,
794 N_If_Statement)
795 then
796 return False;
798 elsif Nkind (P) = N_Handled_Sequence_Of_Statements
799 and then C /= First (Statements (P))
800 then
801 -- If the call is the expression of a return statement and the
802 -- actuals are identical to the formals, it's worth a warning.
803 -- However, we skip this if there is an immediately preceding
804 -- raise statement, since the call is never executed.
806 -- Furthermore, this corresponds to a common idiom:
808 -- function F (L : Thing) return Boolean is
809 -- begin
810 -- raise Program_Error;
811 -- return F (L);
812 -- end F;
814 -- for generating a stub function
816 if Nkind (Parent (N)) = N_Simple_Return_Statement
817 and then Same_Argument_List
818 then
819 exit when not Is_List_Member (Parent (N));
821 -- OK, return statement is in a statement list, look for raise
823 declare
824 Nod : Node_Id;
826 begin
827 -- Skip past N_Freeze_Entity nodes generated by expansion
829 Nod := Prev (Parent (N));
830 while Present (Nod)
831 and then Nkind (Nod) = N_Freeze_Entity
832 loop
833 Prev (Nod);
834 end loop;
836 -- If no raise statement, give warning. We look at the
837 -- original node, because in the case of "raise ... with
838 -- ...", the node has been transformed into a call.
840 exit when Nkind (Original_Node (Nod)) /= N_Raise_Statement
841 and then
842 (Nkind (Nod) not in N_Raise_xxx_Error
843 or else Present (Condition (Nod)));
844 end;
845 end if;
847 return False;
849 else
850 C := P;
851 end if;
852 end loop;
854 Error_Msg_Warn := SPARK_Mode /= On;
855 Error_Msg_N ("!possible infinite recursion<<", N);
856 Error_Msg_N ("\!??Storage_Error ]<<", N);
858 return True;
859 end Check_Infinite_Recursion;
861 -------------------------------
862 -- Check_Initialization_Call --
863 -------------------------------
865 procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id) is
866 Typ : constant Entity_Id := Etype (First_Formal (Nam));
868 function Uses_SS (T : Entity_Id) return Boolean;
869 -- Check whether the creation of an object of the type will involve
870 -- use of the secondary stack. If T is a record type, this is true
871 -- if the expression for some component uses the secondary stack, e.g.
872 -- through a call to a function that returns an unconstrained value.
873 -- False if T is controlled, because cleanups occur elsewhere.
875 -------------
876 -- Uses_SS --
877 -------------
879 function Uses_SS (T : Entity_Id) return Boolean is
880 Comp : Entity_Id;
881 Expr : Node_Id;
882 Full_Type : Entity_Id := Underlying_Type (T);
884 begin
885 -- Normally we want to use the underlying type, but if it's not set
886 -- then continue with T.
888 if not Present (Full_Type) then
889 Full_Type := T;
890 end if;
892 if Is_Controlled (Full_Type) then
893 return False;
895 elsif Is_Array_Type (Full_Type) then
896 return Uses_SS (Component_Type (Full_Type));
898 elsif Is_Record_Type (Full_Type) then
899 Comp := First_Component (Full_Type);
900 while Present (Comp) loop
901 if Ekind (Comp) = E_Component
902 and then Nkind (Parent (Comp)) = N_Component_Declaration
903 then
904 -- The expression for a dynamic component may be rewritten
905 -- as a dereference, so retrieve original node.
907 Expr := Original_Node (Expression (Parent (Comp)));
909 -- Return True if the expression is a call to a function
910 -- (including an attribute function such as Image, or a
911 -- user-defined operator) with a result that requires a
912 -- transient scope.
914 if (Nkind (Expr) = N_Function_Call
915 or else Nkind (Expr) in N_Op
916 or else (Nkind (Expr) = N_Attribute_Reference
917 and then Present (Expressions (Expr))))
918 and then Requires_Transient_Scope (Etype (Expr))
919 then
920 return True;
922 elsif Uses_SS (Etype (Comp)) then
923 return True;
924 end if;
925 end if;
927 Next_Component (Comp);
928 end loop;
930 return False;
932 else
933 return False;
934 end if;
935 end Uses_SS;
937 -- Start of processing for Check_Initialization_Call
939 begin
940 -- Establish a transient scope if the type needs it
942 if Uses_SS (Typ) then
943 Establish_Transient_Scope (First_Actual (N), Sec_Stack => True);
944 end if;
945 end Check_Initialization_Call;
947 ---------------------------------------
948 -- Check_No_Direct_Boolean_Operators --
949 ---------------------------------------
951 procedure Check_No_Direct_Boolean_Operators (N : Node_Id) is
952 begin
953 if Scope (Entity (N)) = Standard_Standard
954 and then Root_Type (Etype (Left_Opnd (N))) = Standard_Boolean
955 then
956 -- Restriction only applies to original source code
958 if Comes_From_Source (N) then
959 Check_Restriction (No_Direct_Boolean_Operators, N);
960 end if;
961 end if;
963 -- Do style check (but skip if in instance, error is on template)
965 if Style_Check then
966 if not In_Instance then
967 Check_Boolean_Operator (N);
968 end if;
969 end if;
970 end Check_No_Direct_Boolean_Operators;
972 ------------------------------
973 -- Check_Parameterless_Call --
974 ------------------------------
976 procedure Check_Parameterless_Call (N : Node_Id) is
977 Nam : Node_Id;
979 function Prefix_Is_Access_Subp return Boolean;
980 -- If the prefix is of an access_to_subprogram type, the node must be
981 -- rewritten as a call. Ditto if the prefix is overloaded and all its
982 -- interpretations are access to subprograms.
984 ---------------------------
985 -- Prefix_Is_Access_Subp --
986 ---------------------------
988 function Prefix_Is_Access_Subp return Boolean is
989 I : Interp_Index;
990 It : Interp;
992 begin
993 -- If the context is an attribute reference that can apply to
994 -- functions, this is never a parameterless call (RM 4.1.4(6)).
996 if Nkind (Parent (N)) = N_Attribute_Reference
997 and then Nam_In (Attribute_Name (Parent (N)), Name_Address,
998 Name_Code_Address,
999 Name_Access)
1000 then
1001 return False;
1002 end if;
1004 if not Is_Overloaded (N) then
1005 return
1006 Ekind (Etype (N)) = E_Subprogram_Type
1007 and then Base_Type (Etype (Etype (N))) /= Standard_Void_Type;
1008 else
1009 Get_First_Interp (N, I, It);
1010 while Present (It.Typ) loop
1011 if Ekind (It.Typ) /= E_Subprogram_Type
1012 or else Base_Type (Etype (It.Typ)) = Standard_Void_Type
1013 then
1014 return False;
1015 end if;
1017 Get_Next_Interp (I, It);
1018 end loop;
1020 return True;
1021 end if;
1022 end Prefix_Is_Access_Subp;
1024 -- Start of processing for Check_Parameterless_Call
1026 begin
1027 -- Defend against junk stuff if errors already detected
1029 if Total_Errors_Detected /= 0 then
1030 if Nkind (N) in N_Has_Etype and then Etype (N) = Any_Type then
1031 return;
1032 elsif Nkind (N) in N_Has_Chars
1033 and then not Is_Valid_Name (Chars (N))
1034 then
1035 return;
1036 end if;
1038 Require_Entity (N);
1039 end if;
1041 -- If the context expects a value, and the name is a procedure, this is
1042 -- most likely a missing 'Access. Don't try to resolve the parameterless
1043 -- call, error will be caught when the outer call is analyzed.
1045 if Is_Entity_Name (N)
1046 and then Ekind (Entity (N)) = E_Procedure
1047 and then not Is_Overloaded (N)
1048 and then
1049 Nkind_In (Parent (N), N_Parameter_Association,
1050 N_Function_Call,
1051 N_Procedure_Call_Statement)
1052 then
1053 return;
1054 end if;
1056 -- Rewrite as call if overloadable entity that is (or could be, in the
1057 -- overloaded case) a function call. If we know for sure that the entity
1058 -- is an enumeration literal, we do not rewrite it.
1060 -- If the entity is the name of an operator, it cannot be a call because
1061 -- operators cannot have default parameters. In this case, this must be
1062 -- a string whose contents coincide with an operator name. Set the kind
1063 -- of the node appropriately.
1065 if (Is_Entity_Name (N)
1066 and then Nkind (N) /= N_Operator_Symbol
1067 and then Is_Overloadable (Entity (N))
1068 and then (Ekind (Entity (N)) /= E_Enumeration_Literal
1069 or else Is_Overloaded (N)))
1071 -- Rewrite as call if it is an explicit dereference of an expression of
1072 -- a subprogram access type, and the subprogram type is not that of a
1073 -- procedure or entry.
1075 or else
1076 (Nkind (N) = N_Explicit_Dereference and then Prefix_Is_Access_Subp)
1078 -- Rewrite as call if it is a selected component which is a function,
1079 -- this is the case of a call to a protected function (which may be
1080 -- overloaded with other protected operations).
1082 or else
1083 (Nkind (N) = N_Selected_Component
1084 and then (Ekind (Entity (Selector_Name (N))) = E_Function
1085 or else
1086 (Ekind_In (Entity (Selector_Name (N)), E_Entry,
1087 E_Procedure)
1088 and then Is_Overloaded (Selector_Name (N)))))
1090 -- If one of the above three conditions is met, rewrite as call. Apply
1091 -- the rewriting only once.
1093 then
1094 if Nkind (Parent (N)) /= N_Function_Call
1095 or else N /= Name (Parent (N))
1096 then
1098 -- This may be a prefixed call that was not fully analyzed, e.g.
1099 -- an actual in an instance.
1101 if Ada_Version >= Ada_2005
1102 and then Nkind (N) = N_Selected_Component
1103 and then Is_Dispatching_Operation (Entity (Selector_Name (N)))
1104 then
1105 Analyze_Selected_Component (N);
1107 if Nkind (N) /= N_Selected_Component then
1108 return;
1109 end if;
1110 end if;
1112 -- The node is the name of the parameterless call. Preserve its
1113 -- descendants, which may be complex expressions.
1115 Nam := Relocate_Node (N);
1117 -- If overloaded, overload set belongs to new copy
1119 Save_Interps (N, Nam);
1121 -- Change node to parameterless function call (note that the
1122 -- Parameter_Associations associations field is left set to Empty,
1123 -- its normal default value since there are no parameters)
1125 Change_Node (N, N_Function_Call);
1126 Set_Name (N, Nam);
1127 Set_Sloc (N, Sloc (Nam));
1128 Analyze_Call (N);
1129 end if;
1131 elsif Nkind (N) = N_Parameter_Association then
1132 Check_Parameterless_Call (Explicit_Actual_Parameter (N));
1134 elsif Nkind (N) = N_Operator_Symbol then
1135 Change_Operator_Symbol_To_String_Literal (N);
1136 Set_Is_Overloaded (N, False);
1137 Set_Etype (N, Any_String);
1138 end if;
1139 end Check_Parameterless_Call;
1141 --------------------------------
1142 -- Is_Atomic_Ref_With_Address --
1143 --------------------------------
1145 function Is_Atomic_Ref_With_Address (N : Node_Id) return Boolean is
1146 Pref : constant Node_Id := Prefix (N);
1148 begin
1149 if not Is_Entity_Name (Pref) then
1150 return False;
1152 else
1153 declare
1154 Pent : constant Entity_Id := Entity (Pref);
1155 Ptyp : constant Entity_Id := Etype (Pent);
1156 begin
1157 return not Is_Access_Type (Ptyp)
1158 and then (Is_Atomic (Ptyp) or else Is_Atomic (Pent))
1159 and then Present (Address_Clause (Pent));
1160 end;
1161 end if;
1162 end Is_Atomic_Ref_With_Address;
1164 -----------------------------
1165 -- Is_Definite_Access_Type --
1166 -----------------------------
1168 function Is_Definite_Access_Type (E : Entity_Id) return Boolean is
1169 Btyp : constant Entity_Id := Base_Type (E);
1170 begin
1171 return Ekind (Btyp) = E_Access_Type
1172 or else (Ekind (Btyp) = E_Access_Subprogram_Type
1173 and then Comes_From_Source (Btyp));
1174 end Is_Definite_Access_Type;
1176 ----------------------
1177 -- Is_Predefined_Op --
1178 ----------------------
1180 function Is_Predefined_Op (Nam : Entity_Id) return Boolean is
1181 begin
1182 -- Predefined operators are intrinsic subprograms
1184 if not Is_Intrinsic_Subprogram (Nam) then
1185 return False;
1186 end if;
1188 -- A call to a back-end builtin is never a predefined operator
1190 if Is_Imported (Nam) and then Present (Interface_Name (Nam)) then
1191 return False;
1192 end if;
1194 return not Is_Generic_Instance (Nam)
1195 and then Chars (Nam) in Any_Operator_Name
1196 and then (No (Alias (Nam)) or else Is_Predefined_Op (Alias (Nam)));
1197 end Is_Predefined_Op;
1199 -----------------------------
1200 -- Make_Call_Into_Operator --
1201 -----------------------------
1203 procedure Make_Call_Into_Operator
1204 (N : Node_Id;
1205 Typ : Entity_Id;
1206 Op_Id : Entity_Id)
1208 Op_Name : constant Name_Id := Chars (Op_Id);
1209 Act1 : Node_Id := First_Actual (N);
1210 Act2 : Node_Id := Next_Actual (Act1);
1211 Error : Boolean := False;
1212 Func : constant Entity_Id := Entity (Name (N));
1213 Is_Binary : constant Boolean := Present (Act2);
1214 Op_Node : Node_Id;
1215 Opnd_Type : Entity_Id := Empty;
1216 Orig_Type : Entity_Id := Empty;
1217 Pack : Entity_Id;
1219 type Kind_Test is access function (E : Entity_Id) return Boolean;
1221 function Operand_Type_In_Scope (S : Entity_Id) return Boolean;
1222 -- If the operand is not universal, and the operator is given by an
1223 -- expanded name, verify that the operand has an interpretation with a
1224 -- type defined in the given scope of the operator.
1226 function Type_In_P (Test : Kind_Test) return Entity_Id;
1227 -- Find a type of the given class in package Pack that contains the
1228 -- operator.
1230 ---------------------------
1231 -- Operand_Type_In_Scope --
1232 ---------------------------
1234 function Operand_Type_In_Scope (S : Entity_Id) return Boolean is
1235 Nod : constant Node_Id := Right_Opnd (Op_Node);
1236 I : Interp_Index;
1237 It : Interp;
1239 begin
1240 if not Is_Overloaded (Nod) then
1241 return Scope (Base_Type (Etype (Nod))) = S;
1243 else
1244 Get_First_Interp (Nod, I, It);
1245 while Present (It.Typ) loop
1246 if Scope (Base_Type (It.Typ)) = S then
1247 return True;
1248 end if;
1250 Get_Next_Interp (I, It);
1251 end loop;
1253 return False;
1254 end if;
1255 end Operand_Type_In_Scope;
1257 ---------------
1258 -- Type_In_P --
1259 ---------------
1261 function Type_In_P (Test : Kind_Test) return Entity_Id is
1262 E : Entity_Id;
1264 function In_Decl return Boolean;
1265 -- Verify that node is not part of the type declaration for the
1266 -- candidate type, which would otherwise be invisible.
1268 -------------
1269 -- In_Decl --
1270 -------------
1272 function In_Decl return Boolean is
1273 Decl_Node : constant Node_Id := Parent (E);
1274 N2 : Node_Id;
1276 begin
1277 N2 := N;
1279 if Etype (E) = Any_Type then
1280 return True;
1282 elsif No (Decl_Node) then
1283 return False;
1285 else
1286 while Present (N2)
1287 and then Nkind (N2) /= N_Compilation_Unit
1288 loop
1289 if N2 = Decl_Node then
1290 return True;
1291 else
1292 N2 := Parent (N2);
1293 end if;
1294 end loop;
1296 return False;
1297 end if;
1298 end In_Decl;
1300 -- Start of processing for Type_In_P
1302 begin
1303 -- If the context type is declared in the prefix package, this is the
1304 -- desired base type.
1306 if Scope (Base_Type (Typ)) = Pack and then Test (Typ) then
1307 return Base_Type (Typ);
1309 else
1310 E := First_Entity (Pack);
1311 while Present (E) loop
1312 if Test (E) and then not In_Decl then
1313 return E;
1314 end if;
1316 Next_Entity (E);
1317 end loop;
1319 return Empty;
1320 end if;
1321 end Type_In_P;
1323 -- Start of processing for Make_Call_Into_Operator
1325 begin
1326 Op_Node := New_Node (Operator_Kind (Op_Name, Is_Binary), Sloc (N));
1328 -- Ensure that the corresponding operator has the same parent as the
1329 -- original call. This guarantees that parent traversals performed by
1330 -- the ABE mechanism succeed.
1332 Set_Parent (Op_Node, Parent (N));
1334 -- Binary operator
1336 if Is_Binary then
1337 Set_Left_Opnd (Op_Node, Relocate_Node (Act1));
1338 Set_Right_Opnd (Op_Node, Relocate_Node (Act2));
1339 Save_Interps (Act1, Left_Opnd (Op_Node));
1340 Save_Interps (Act2, Right_Opnd (Op_Node));
1341 Act1 := Left_Opnd (Op_Node);
1342 Act2 := Right_Opnd (Op_Node);
1344 -- Unary operator
1346 else
1347 Set_Right_Opnd (Op_Node, Relocate_Node (Act1));
1348 Save_Interps (Act1, Right_Opnd (Op_Node));
1349 Act1 := Right_Opnd (Op_Node);
1350 end if;
1352 -- If the operator is denoted by an expanded name, and the prefix is
1353 -- not Standard, but the operator is a predefined one whose scope is
1354 -- Standard, then this is an implicit_operator, inserted as an
1355 -- interpretation by the procedure of the same name. This procedure
1356 -- overestimates the presence of implicit operators, because it does
1357 -- not examine the type of the operands. Verify now that the operand
1358 -- type appears in the given scope. If right operand is universal,
1359 -- check the other operand. In the case of concatenation, either
1360 -- argument can be the component type, so check the type of the result.
1361 -- If both arguments are literals, look for a type of the right kind
1362 -- defined in the given scope. This elaborate nonsense is brought to
1363 -- you courtesy of b33302a. The type itself must be frozen, so we must
1364 -- find the type of the proper class in the given scope.
1366 -- A final wrinkle is the multiplication operator for fixed point types,
1367 -- which is defined in Standard only, and not in the scope of the
1368 -- fixed point type itself.
1370 if Nkind (Name (N)) = N_Expanded_Name then
1371 Pack := Entity (Prefix (Name (N)));
1373 -- If this is a package renaming, get renamed entity, which will be
1374 -- the scope of the operands if operaton is type-correct.
1376 if Present (Renamed_Entity (Pack)) then
1377 Pack := Renamed_Entity (Pack);
1378 end if;
1380 -- If the entity being called is defined in the given package, it is
1381 -- a renaming of a predefined operator, and known to be legal.
1383 if Scope (Entity (Name (N))) = Pack
1384 and then Pack /= Standard_Standard
1385 then
1386 null;
1388 -- Visibility does not need to be checked in an instance: if the
1389 -- operator was not visible in the generic it has been diagnosed
1390 -- already, else there is an implicit copy of it in the instance.
1392 elsif In_Instance then
1393 null;
1395 elsif Nam_In (Op_Name, Name_Op_Multiply, Name_Op_Divide)
1396 and then Is_Fixed_Point_Type (Etype (Left_Opnd (Op_Node)))
1397 and then Is_Fixed_Point_Type (Etype (Right_Opnd (Op_Node)))
1398 then
1399 if Pack /= Standard_Standard then
1400 Error := True;
1401 end if;
1403 -- Ada 2005 AI-420: Predefined equality on Universal_Access is
1404 -- available.
1406 elsif Ada_Version >= Ada_2005
1407 and then Nam_In (Op_Name, Name_Op_Eq, Name_Op_Ne)
1408 and then Ekind (Etype (Act1)) = E_Anonymous_Access_Type
1409 then
1410 null;
1412 else
1413 Opnd_Type := Base_Type (Etype (Right_Opnd (Op_Node)));
1415 if Op_Name = Name_Op_Concat then
1416 Opnd_Type := Base_Type (Typ);
1418 elsif (Scope (Opnd_Type) = Standard_Standard
1419 and then Is_Binary)
1420 or else (Nkind (Right_Opnd (Op_Node)) = N_Attribute_Reference
1421 and then Is_Binary
1422 and then not Comes_From_Source (Opnd_Type))
1423 then
1424 Opnd_Type := Base_Type (Etype (Left_Opnd (Op_Node)));
1425 end if;
1427 if Scope (Opnd_Type) = Standard_Standard then
1429 -- Verify that the scope contains a type that corresponds to
1430 -- the given literal. Optimize the case where Pack is Standard.
1432 if Pack /= Standard_Standard then
1433 if Opnd_Type = Universal_Integer then
1434 Orig_Type := Type_In_P (Is_Integer_Type'Access);
1436 elsif Opnd_Type = Universal_Real then
1437 Orig_Type := Type_In_P (Is_Real_Type'Access);
1439 elsif Opnd_Type = Any_String then
1440 Orig_Type := Type_In_P (Is_String_Type'Access);
1442 elsif Opnd_Type = Any_Access then
1443 Orig_Type := Type_In_P (Is_Definite_Access_Type'Access);
1445 elsif Opnd_Type = Any_Composite then
1446 Orig_Type := Type_In_P (Is_Composite_Type'Access);
1448 if Present (Orig_Type) then
1449 if Has_Private_Component (Orig_Type) then
1450 Orig_Type := Empty;
1451 else
1452 Set_Etype (Act1, Orig_Type);
1454 if Is_Binary then
1455 Set_Etype (Act2, Orig_Type);
1456 end if;
1457 end if;
1458 end if;
1460 else
1461 Orig_Type := Empty;
1462 end if;
1464 Error := No (Orig_Type);
1465 end if;
1467 elsif Ekind (Opnd_Type) = E_Allocator_Type
1468 and then No (Type_In_P (Is_Definite_Access_Type'Access))
1469 then
1470 Error := True;
1472 -- If the type is defined elsewhere, and the operator is not
1473 -- defined in the given scope (by a renaming declaration, e.g.)
1474 -- then this is an error as well. If an extension of System is
1475 -- present, and the type may be defined there, Pack must be
1476 -- System itself.
1478 elsif Scope (Opnd_Type) /= Pack
1479 and then Scope (Op_Id) /= Pack
1480 and then (No (System_Aux_Id)
1481 or else Scope (Opnd_Type) /= System_Aux_Id
1482 or else Pack /= Scope (System_Aux_Id))
1483 then
1484 if not Is_Overloaded (Right_Opnd (Op_Node)) then
1485 Error := True;
1486 else
1487 Error := not Operand_Type_In_Scope (Pack);
1488 end if;
1490 elsif Pack = Standard_Standard
1491 and then not Operand_Type_In_Scope (Standard_Standard)
1492 then
1493 Error := True;
1494 end if;
1495 end if;
1497 if Error then
1498 Error_Msg_Node_2 := Pack;
1499 Error_Msg_NE
1500 ("& not declared in&", N, Selector_Name (Name (N)));
1501 Set_Etype (N, Any_Type);
1502 return;
1504 -- Detect a mismatch between the context type and the result type
1505 -- in the named package, which is otherwise not detected if the
1506 -- operands are universal. Check is only needed if source entity is
1507 -- an operator, not a function that renames an operator.
1509 elsif Nkind (Parent (N)) /= N_Type_Conversion
1510 and then Ekind (Entity (Name (N))) = E_Operator
1511 and then Is_Numeric_Type (Typ)
1512 and then not Is_Universal_Numeric_Type (Typ)
1513 and then Scope (Base_Type (Typ)) /= Pack
1514 and then not In_Instance
1515 then
1516 if Is_Fixed_Point_Type (Typ)
1517 and then Nam_In (Op_Name, Name_Op_Multiply, Name_Op_Divide)
1518 then
1519 -- Already checked above
1521 null;
1523 -- Operator may be defined in an extension of System
1525 elsif Present (System_Aux_Id)
1526 and then Present (Opnd_Type)
1527 and then Scope (Opnd_Type) = System_Aux_Id
1528 then
1529 null;
1531 else
1532 -- Could we use Wrong_Type here??? (this would require setting
1533 -- Etype (N) to the actual type found where Typ was expected).
1535 Error_Msg_NE ("expect }", N, Typ);
1536 end if;
1537 end if;
1538 end if;
1540 Set_Chars (Op_Node, Op_Name);
1542 if not Is_Private_Type (Etype (N)) then
1543 Set_Etype (Op_Node, Base_Type (Etype (N)));
1544 else
1545 Set_Etype (Op_Node, Etype (N));
1546 end if;
1548 -- If this is a call to a function that renames a predefined equality,
1549 -- the renaming declaration provides a type that must be used to
1550 -- resolve the operands. This must be done now because resolution of
1551 -- the equality node will not resolve any remaining ambiguity, and it
1552 -- assumes that the first operand is not overloaded.
1554 if Nam_In (Op_Name, Name_Op_Eq, Name_Op_Ne)
1555 and then Ekind (Func) = E_Function
1556 and then Is_Overloaded (Act1)
1557 then
1558 Resolve (Act1, Base_Type (Etype (First_Formal (Func))));
1559 Resolve (Act2, Base_Type (Etype (First_Formal (Func))));
1560 end if;
1562 Set_Entity (Op_Node, Op_Id);
1563 Generate_Reference (Op_Id, N, ' ');
1565 -- Do rewrite setting Comes_From_Source on the result if the original
1566 -- call came from source. Although it is not strictly the case that the
1567 -- operator as such comes from the source, logically it corresponds
1568 -- exactly to the function call in the source, so it should be marked
1569 -- this way (e.g. to make sure that validity checks work fine).
1571 declare
1572 CS : constant Boolean := Comes_From_Source (N);
1573 begin
1574 Rewrite (N, Op_Node);
1575 Set_Comes_From_Source (N, CS);
1576 end;
1578 -- If this is an arithmetic operator and the result type is private,
1579 -- the operands and the result must be wrapped in conversion to
1580 -- expose the underlying numeric type and expand the proper checks,
1581 -- e.g. on division.
1583 if Is_Private_Type (Typ) then
1584 case Nkind (N) is
1585 when N_Op_Add
1586 | N_Op_Divide
1587 | N_Op_Expon
1588 | N_Op_Mod
1589 | N_Op_Multiply
1590 | N_Op_Rem
1591 | N_Op_Subtract
1593 Resolve_Intrinsic_Operator (N, Typ);
1595 when N_Op_Abs
1596 | N_Op_Minus
1597 | N_Op_Plus
1599 Resolve_Intrinsic_Unary_Operator (N, Typ);
1601 when others =>
1602 Resolve (N, Typ);
1603 end case;
1604 else
1605 Resolve (N, Typ);
1606 end if;
1608 -- If in ASIS_Mode, propagate operand types to original actuals of
1609 -- function call, which would otherwise not be fully resolved. If
1610 -- the call has already been constant-folded, nothing to do. We
1611 -- relocate the operand nodes rather than copy them, to preserve
1612 -- original_node pointers, given that the operands themselves may
1613 -- have been rewritten. If the call was itself a rewriting of an
1614 -- operator node, nothing to do.
1616 if ASIS_Mode
1617 and then Nkind (N) in N_Op
1618 and then Nkind (Original_Node (N)) = N_Function_Call
1619 then
1620 declare
1621 L : Node_Id;
1622 R : constant Node_Id := Right_Opnd (N);
1624 Old_First : constant Node_Id :=
1625 First (Parameter_Associations (Original_Node (N)));
1626 Old_Sec : Node_Id;
1628 begin
1629 if Is_Binary then
1630 L := Left_Opnd (N);
1631 Old_Sec := Next (Old_First);
1633 -- If the original call has named associations, replace the
1634 -- explicit actual parameter in the association with the proper
1635 -- resolved operand.
1637 if Nkind (Old_First) = N_Parameter_Association then
1638 if Chars (Selector_Name (Old_First)) =
1639 Chars (First_Entity (Op_Id))
1640 then
1641 Rewrite (Explicit_Actual_Parameter (Old_First),
1642 Relocate_Node (L));
1643 else
1644 Rewrite (Explicit_Actual_Parameter (Old_First),
1645 Relocate_Node (R));
1646 end if;
1648 else
1649 Rewrite (Old_First, Relocate_Node (L));
1650 end if;
1652 if Nkind (Old_Sec) = N_Parameter_Association then
1653 if Chars (Selector_Name (Old_Sec)) =
1654 Chars (First_Entity (Op_Id))
1655 then
1656 Rewrite (Explicit_Actual_Parameter (Old_Sec),
1657 Relocate_Node (L));
1658 else
1659 Rewrite (Explicit_Actual_Parameter (Old_Sec),
1660 Relocate_Node (R));
1661 end if;
1663 else
1664 Rewrite (Old_Sec, Relocate_Node (R));
1665 end if;
1667 else
1668 if Nkind (Old_First) = N_Parameter_Association then
1669 Rewrite (Explicit_Actual_Parameter (Old_First),
1670 Relocate_Node (R));
1671 else
1672 Rewrite (Old_First, Relocate_Node (R));
1673 end if;
1674 end if;
1675 end;
1677 Set_Parent (Original_Node (N), Parent (N));
1678 end if;
1679 end Make_Call_Into_Operator;
1681 -------------------
1682 -- Operator_Kind --
1683 -------------------
1685 function Operator_Kind
1686 (Op_Name : Name_Id;
1687 Is_Binary : Boolean) return Node_Kind
1689 Kind : Node_Kind;
1691 begin
1692 -- Use CASE statement or array???
1694 if Is_Binary then
1695 if Op_Name = Name_Op_And then
1696 Kind := N_Op_And;
1697 elsif Op_Name = Name_Op_Or then
1698 Kind := N_Op_Or;
1699 elsif Op_Name = Name_Op_Xor then
1700 Kind := N_Op_Xor;
1701 elsif Op_Name = Name_Op_Eq then
1702 Kind := N_Op_Eq;
1703 elsif Op_Name = Name_Op_Ne then
1704 Kind := N_Op_Ne;
1705 elsif Op_Name = Name_Op_Lt then
1706 Kind := N_Op_Lt;
1707 elsif Op_Name = Name_Op_Le then
1708 Kind := N_Op_Le;
1709 elsif Op_Name = Name_Op_Gt then
1710 Kind := N_Op_Gt;
1711 elsif Op_Name = Name_Op_Ge then
1712 Kind := N_Op_Ge;
1713 elsif Op_Name = Name_Op_Add then
1714 Kind := N_Op_Add;
1715 elsif Op_Name = Name_Op_Subtract then
1716 Kind := N_Op_Subtract;
1717 elsif Op_Name = Name_Op_Concat then
1718 Kind := N_Op_Concat;
1719 elsif Op_Name = Name_Op_Multiply then
1720 Kind := N_Op_Multiply;
1721 elsif Op_Name = Name_Op_Divide then
1722 Kind := N_Op_Divide;
1723 elsif Op_Name = Name_Op_Mod then
1724 Kind := N_Op_Mod;
1725 elsif Op_Name = Name_Op_Rem then
1726 Kind := N_Op_Rem;
1727 elsif Op_Name = Name_Op_Expon then
1728 Kind := N_Op_Expon;
1729 else
1730 raise Program_Error;
1731 end if;
1733 -- Unary operators
1735 else
1736 if Op_Name = Name_Op_Add then
1737 Kind := N_Op_Plus;
1738 elsif Op_Name = Name_Op_Subtract then
1739 Kind := N_Op_Minus;
1740 elsif Op_Name = Name_Op_Abs then
1741 Kind := N_Op_Abs;
1742 elsif Op_Name = Name_Op_Not then
1743 Kind := N_Op_Not;
1744 else
1745 raise Program_Error;
1746 end if;
1747 end if;
1749 return Kind;
1750 end Operator_Kind;
1752 ----------------------------
1753 -- Preanalyze_And_Resolve --
1754 ----------------------------
1756 procedure Preanalyze_And_Resolve (N : Node_Id; T : Entity_Id) is
1757 Save_Full_Analysis : constant Boolean := Full_Analysis;
1759 begin
1760 Full_Analysis := False;
1761 Expander_Mode_Save_And_Set (False);
1763 -- Normally, we suppress all checks for this preanalysis. There is no
1764 -- point in processing them now, since they will be applied properly
1765 -- and in the proper location when the default expressions reanalyzed
1766 -- and reexpanded later on. We will also have more information at that
1767 -- point for possible suppression of individual checks.
1769 -- However, in SPARK mode, most expansion is suppressed, and this
1770 -- later reanalysis and reexpansion may not occur. SPARK mode does
1771 -- require the setting of checking flags for proof purposes, so we
1772 -- do the SPARK preanalysis without suppressing checks.
1774 -- This special handling for SPARK mode is required for example in the
1775 -- case of Ada 2012 constructs such as quantified expressions, which are
1776 -- expanded in two separate steps.
1778 if GNATprove_Mode then
1779 Analyze_And_Resolve (N, T);
1780 else
1781 Analyze_And_Resolve (N, T, Suppress => All_Checks);
1782 end if;
1784 Expander_Mode_Restore;
1785 Full_Analysis := Save_Full_Analysis;
1786 end Preanalyze_And_Resolve;
1788 -- Version without context type
1790 procedure Preanalyze_And_Resolve (N : Node_Id) is
1791 Save_Full_Analysis : constant Boolean := Full_Analysis;
1793 begin
1794 Full_Analysis := False;
1795 Expander_Mode_Save_And_Set (False);
1797 Analyze (N);
1798 Resolve (N, Etype (N), Suppress => All_Checks);
1800 Expander_Mode_Restore;
1801 Full_Analysis := Save_Full_Analysis;
1802 end Preanalyze_And_Resolve;
1804 ----------------------------------
1805 -- Replace_Actual_Discriminants --
1806 ----------------------------------
1808 procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id) is
1809 Loc : constant Source_Ptr := Sloc (N);
1810 Tsk : Node_Id := Empty;
1812 function Process_Discr (Nod : Node_Id) return Traverse_Result;
1813 -- Comment needed???
1815 -------------------
1816 -- Process_Discr --
1817 -------------------
1819 function Process_Discr (Nod : Node_Id) return Traverse_Result is
1820 Ent : Entity_Id;
1822 begin
1823 if Nkind (Nod) = N_Identifier then
1824 Ent := Entity (Nod);
1826 if Present (Ent)
1827 and then Ekind (Ent) = E_Discriminant
1828 then
1829 Rewrite (Nod,
1830 Make_Selected_Component (Loc,
1831 Prefix => New_Copy_Tree (Tsk, New_Sloc => Loc),
1832 Selector_Name => Make_Identifier (Loc, Chars (Ent))));
1834 Set_Etype (Nod, Etype (Ent));
1835 end if;
1837 end if;
1839 return OK;
1840 end Process_Discr;
1842 procedure Replace_Discrs is new Traverse_Proc (Process_Discr);
1844 -- Start of processing for Replace_Actual_Discriminants
1846 begin
1847 if Expander_Active then
1848 null;
1850 -- Allow the replacement of concurrent discriminants in GNATprove even
1851 -- though this is a light expansion activity. Note that generic units
1852 -- are not modified.
1854 elsif GNATprove_Mode and not Inside_A_Generic then
1855 null;
1857 else
1858 return;
1859 end if;
1861 if Nkind (Name (N)) = N_Selected_Component then
1862 Tsk := Prefix (Name (N));
1864 elsif Nkind (Name (N)) = N_Indexed_Component then
1865 Tsk := Prefix (Prefix (Name (N)));
1866 end if;
1868 if Present (Tsk) then
1869 Replace_Discrs (Default);
1870 end if;
1871 end Replace_Actual_Discriminants;
1873 -------------
1874 -- Resolve --
1875 -------------
1877 procedure Resolve (N : Node_Id; Typ : Entity_Id) is
1878 Ambiguous : Boolean := False;
1879 Ctx_Type : Entity_Id := Typ;
1880 Expr_Type : Entity_Id := Empty; -- prevent junk warning
1881 Err_Type : Entity_Id := Empty;
1882 Found : Boolean := False;
1883 From_Lib : Boolean;
1884 I : Interp_Index;
1885 I1 : Interp_Index := 0; -- prevent junk warning
1886 It : Interp;
1887 It1 : Interp;
1888 Seen : Entity_Id := Empty; -- prevent junk warning
1890 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean;
1891 -- Determine whether a node comes from a predefined library unit or
1892 -- Standard.
1894 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id);
1895 -- Try and fix up a literal so that it matches its expected type. New
1896 -- literals are manufactured if necessary to avoid cascaded errors.
1898 procedure Report_Ambiguous_Argument;
1899 -- Additional diagnostics when an ambiguous call has an ambiguous
1900 -- argument (typically a controlling actual).
1902 procedure Resolution_Failed;
1903 -- Called when attempt at resolving current expression fails
1905 ------------------------------------
1906 -- Comes_From_Predefined_Lib_Unit --
1907 -------------------------------------
1909 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean is
1910 begin
1911 return
1912 Sloc (Nod) = Standard_Location or else In_Predefined_Unit (Nod);
1913 end Comes_From_Predefined_Lib_Unit;
1915 --------------------
1916 -- Patch_Up_Value --
1917 --------------------
1919 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id) is
1920 begin
1921 if Nkind (N) = N_Integer_Literal and then Is_Real_Type (Typ) then
1922 Rewrite (N,
1923 Make_Real_Literal (Sloc (N),
1924 Realval => UR_From_Uint (Intval (N))));
1925 Set_Etype (N, Universal_Real);
1926 Set_Is_Static_Expression (N);
1928 elsif Nkind (N) = N_Real_Literal and then Is_Integer_Type (Typ) then
1929 Rewrite (N,
1930 Make_Integer_Literal (Sloc (N),
1931 Intval => UR_To_Uint (Realval (N))));
1932 Set_Etype (N, Universal_Integer);
1933 Set_Is_Static_Expression (N);
1935 elsif Nkind (N) = N_String_Literal
1936 and then Is_Character_Type (Typ)
1937 then
1938 Set_Character_Literal_Name (Char_Code (Character'Pos ('A')));
1939 Rewrite (N,
1940 Make_Character_Literal (Sloc (N),
1941 Chars => Name_Find,
1942 Char_Literal_Value =>
1943 UI_From_Int (Character'Pos ('A'))));
1944 Set_Etype (N, Any_Character);
1945 Set_Is_Static_Expression (N);
1947 elsif Nkind (N) /= N_String_Literal and then Is_String_Type (Typ) then
1948 Rewrite (N,
1949 Make_String_Literal (Sloc (N),
1950 Strval => End_String));
1952 elsif Nkind (N) = N_Range then
1953 Patch_Up_Value (Low_Bound (N), Typ);
1954 Patch_Up_Value (High_Bound (N), Typ);
1955 end if;
1956 end Patch_Up_Value;
1958 -------------------------------
1959 -- Report_Ambiguous_Argument --
1960 -------------------------------
1962 procedure Report_Ambiguous_Argument is
1963 Arg : constant Node_Id := First (Parameter_Associations (N));
1964 I : Interp_Index;
1965 It : Interp;
1967 begin
1968 if Nkind (Arg) = N_Function_Call
1969 and then Is_Entity_Name (Name (Arg))
1970 and then Is_Overloaded (Name (Arg))
1971 then
1972 Error_Msg_NE ("ambiguous call to&", Arg, Name (Arg));
1974 -- Could use comments on what is going on here???
1976 Get_First_Interp (Name (Arg), I, It);
1977 while Present (It.Nam) loop
1978 Error_Msg_Sloc := Sloc (It.Nam);
1980 if Nkind (Parent (It.Nam)) = N_Full_Type_Declaration then
1981 Error_Msg_N ("interpretation (inherited) #!", Arg);
1982 else
1983 Error_Msg_N ("interpretation #!", Arg);
1984 end if;
1986 Get_Next_Interp (I, It);
1987 end loop;
1988 end if;
1989 end Report_Ambiguous_Argument;
1991 -----------------------
1992 -- Resolution_Failed --
1993 -----------------------
1995 procedure Resolution_Failed is
1996 begin
1997 Patch_Up_Value (N, Typ);
1999 -- Set the type to the desired one to minimize cascaded errors. Note
2000 -- that this is an approximation and does not work in all cases.
2002 Set_Etype (N, Typ);
2004 Debug_A_Exit ("resolving ", N, " (done, resolution failed)");
2005 Set_Is_Overloaded (N, False);
2007 -- The caller will return without calling the expander, so we need
2008 -- to set the analyzed flag. Note that it is fine to set Analyzed
2009 -- to True even if we are in the middle of a shallow analysis,
2010 -- (see the spec of sem for more details) since this is an error
2011 -- situation anyway, and there is no point in repeating the
2012 -- analysis later (indeed it won't work to repeat it later, since
2013 -- we haven't got a clear resolution of which entity is being
2014 -- referenced.)
2016 Set_Analyzed (N, True);
2017 return;
2018 end Resolution_Failed;
2020 -- Start of processing for Resolve
2022 begin
2023 if N = Error then
2024 return;
2025 end if;
2027 -- Access attribute on remote subprogram cannot be used for a non-remote
2028 -- access-to-subprogram type.
2030 if Nkind (N) = N_Attribute_Reference
2031 and then Nam_In (Attribute_Name (N), Name_Access,
2032 Name_Unrestricted_Access,
2033 Name_Unchecked_Access)
2034 and then Comes_From_Source (N)
2035 and then Is_Entity_Name (Prefix (N))
2036 and then Is_Subprogram (Entity (Prefix (N)))
2037 and then Is_Remote_Call_Interface (Entity (Prefix (N)))
2038 and then not Is_Remote_Access_To_Subprogram_Type (Typ)
2039 then
2040 Error_Msg_N
2041 ("prefix must statically denote a non-remote subprogram", N);
2042 end if;
2044 From_Lib := Comes_From_Predefined_Lib_Unit (N);
2046 -- If the context is a Remote_Access_To_Subprogram, access attributes
2047 -- must be resolved with the corresponding fat pointer. There is no need
2048 -- to check for the attribute name since the return type of an
2049 -- attribute is never a remote type.
2051 if Nkind (N) = N_Attribute_Reference
2052 and then Comes_From_Source (N)
2053 and then (Is_Remote_Call_Interface (Typ) or else Is_Remote_Types (Typ))
2054 then
2055 declare
2056 Attr : constant Attribute_Id :=
2057 Get_Attribute_Id (Attribute_Name (N));
2058 Pref : constant Node_Id := Prefix (N);
2059 Decl : Node_Id;
2060 Spec : Node_Id;
2061 Is_Remote : Boolean := True;
2063 begin
2064 -- Check that Typ is a remote access-to-subprogram type
2066 if Is_Remote_Access_To_Subprogram_Type (Typ) then
2068 -- Prefix (N) must statically denote a remote subprogram
2069 -- declared in a package specification.
2071 if Attr = Attribute_Access or else
2072 Attr = Attribute_Unchecked_Access or else
2073 Attr = Attribute_Unrestricted_Access
2074 then
2075 Decl := Unit_Declaration_Node (Entity (Pref));
2077 if Nkind (Decl) = N_Subprogram_Body then
2078 Spec := Corresponding_Spec (Decl);
2080 if Present (Spec) then
2081 Decl := Unit_Declaration_Node (Spec);
2082 end if;
2083 end if;
2085 Spec := Parent (Decl);
2087 if not Is_Entity_Name (Prefix (N))
2088 or else Nkind (Spec) /= N_Package_Specification
2089 or else
2090 not Is_Remote_Call_Interface (Defining_Entity (Spec))
2091 then
2092 Is_Remote := False;
2093 Error_Msg_N
2094 ("prefix must statically denote a remote subprogram ",
2096 end if;
2098 -- If we are generating code in distributed mode, perform
2099 -- semantic checks against corresponding remote entities.
2101 if Expander_Active
2102 and then Get_PCS_Name /= Name_No_DSA
2103 then
2104 Check_Subtype_Conformant
2105 (New_Id => Entity (Prefix (N)),
2106 Old_Id => Designated_Type
2107 (Corresponding_Remote_Type (Typ)),
2108 Err_Loc => N);
2110 if Is_Remote then
2111 Process_Remote_AST_Attribute (N, Typ);
2112 end if;
2113 end if;
2114 end if;
2115 end if;
2116 end;
2117 end if;
2119 Debug_A_Entry ("resolving ", N);
2121 if Debug_Flag_V then
2122 Write_Overloads (N);
2123 end if;
2125 if Comes_From_Source (N) then
2126 if Is_Fixed_Point_Type (Typ) then
2127 Check_Restriction (No_Fixed_Point, N);
2129 elsif Is_Floating_Point_Type (Typ)
2130 and then Typ /= Universal_Real
2131 and then Typ /= Any_Real
2132 then
2133 Check_Restriction (No_Floating_Point, N);
2134 end if;
2135 end if;
2137 -- Return if already analyzed
2139 if Analyzed (N) then
2140 Debug_A_Exit ("resolving ", N, " (done, already analyzed)");
2141 Analyze_Dimension (N);
2142 return;
2144 -- Any case of Any_Type as the Etype value means that we had a
2145 -- previous error.
2147 elsif Etype (N) = Any_Type then
2148 Debug_A_Exit ("resolving ", N, " (done, Etype = Any_Type)");
2149 return;
2150 end if;
2152 Check_Parameterless_Call (N);
2154 -- The resolution of an Expression_With_Actions is determined by
2155 -- its Expression.
2157 if Nkind (N) = N_Expression_With_Actions then
2158 Resolve (Expression (N), Typ);
2160 Found := True;
2161 Expr_Type := Etype (Expression (N));
2163 -- If not overloaded, then we know the type, and all that needs doing
2164 -- is to check that this type is compatible with the context.
2166 elsif not Is_Overloaded (N) then
2167 Found := Covers (Typ, Etype (N));
2168 Expr_Type := Etype (N);
2170 -- In the overloaded case, we must select the interpretation that
2171 -- is compatible with the context (i.e. the type passed to Resolve)
2173 else
2174 -- Loop through possible interpretations
2176 Get_First_Interp (N, I, It);
2177 Interp_Loop : while Present (It.Typ) loop
2178 if Debug_Flag_V then
2179 Write_Str ("Interp: ");
2180 Write_Interp (It);
2181 end if;
2183 -- We are only interested in interpretations that are compatible
2184 -- with the expected type, any other interpretations are ignored.
2186 if not Covers (Typ, It.Typ) then
2187 if Debug_Flag_V then
2188 Write_Str (" interpretation incompatible with context");
2189 Write_Eol;
2190 end if;
2192 else
2193 -- Skip the current interpretation if it is disabled by an
2194 -- abstract operator. This action is performed only when the
2195 -- type against which we are resolving is the same as the
2196 -- type of the interpretation.
2198 if Ada_Version >= Ada_2005
2199 and then It.Typ = Typ
2200 and then Typ /= Universal_Integer
2201 and then Typ /= Universal_Real
2202 and then Present (It.Abstract_Op)
2203 then
2204 if Debug_Flag_V then
2205 Write_Line ("Skip.");
2206 end if;
2208 goto Continue;
2209 end if;
2211 -- First matching interpretation
2213 if not Found then
2214 Found := True;
2215 I1 := I;
2216 Seen := It.Nam;
2217 Expr_Type := It.Typ;
2219 -- Matching interpretation that is not the first, maybe an
2220 -- error, but there are some cases where preference rules are
2221 -- used to choose between the two possibilities. These and
2222 -- some more obscure cases are handled in Disambiguate.
2224 else
2225 -- If the current statement is part of a predefined library
2226 -- unit, then all interpretations which come from user level
2227 -- packages should not be considered. Check previous and
2228 -- current one.
2230 if From_Lib then
2231 if not Comes_From_Predefined_Lib_Unit (It.Nam) then
2232 goto Continue;
2234 elsif not Comes_From_Predefined_Lib_Unit (Seen) then
2236 -- Previous interpretation must be discarded
2238 I1 := I;
2239 Seen := It.Nam;
2240 Expr_Type := It.Typ;
2241 Set_Entity (N, Seen);
2242 goto Continue;
2243 end if;
2244 end if;
2246 -- Otherwise apply further disambiguation steps
2248 Error_Msg_Sloc := Sloc (Seen);
2249 It1 := Disambiguate (N, I1, I, Typ);
2251 -- Disambiguation has succeeded. Skip the remaining
2252 -- interpretations.
2254 if It1 /= No_Interp then
2255 Seen := It1.Nam;
2256 Expr_Type := It1.Typ;
2258 while Present (It.Typ) loop
2259 Get_Next_Interp (I, It);
2260 end loop;
2262 else
2263 -- Before we issue an ambiguity complaint, check for the
2264 -- case of a subprogram call where at least one of the
2265 -- arguments is Any_Type, and if so suppress the message,
2266 -- since it is a cascaded error. This can also happen for
2267 -- a generalized indexing operation.
2269 if Nkind (N) in N_Subprogram_Call
2270 or else (Nkind (N) = N_Indexed_Component
2271 and then Present (Generalized_Indexing (N)))
2272 then
2273 declare
2274 A : Node_Id;
2275 E : Node_Id;
2277 begin
2278 if Nkind (N) = N_Indexed_Component then
2279 Rewrite (N, Generalized_Indexing (N));
2280 end if;
2282 A := First_Actual (N);
2283 while Present (A) loop
2284 E := A;
2286 if Nkind (E) = N_Parameter_Association then
2287 E := Explicit_Actual_Parameter (E);
2288 end if;
2290 if Etype (E) = Any_Type then
2291 if Debug_Flag_V then
2292 Write_Str ("Any_Type in call");
2293 Write_Eol;
2294 end if;
2296 exit Interp_Loop;
2297 end if;
2299 Next_Actual (A);
2300 end loop;
2301 end;
2303 elsif Nkind (N) in N_Binary_Op
2304 and then (Etype (Left_Opnd (N)) = Any_Type
2305 or else Etype (Right_Opnd (N)) = Any_Type)
2306 then
2307 exit Interp_Loop;
2309 elsif Nkind (N) in N_Unary_Op
2310 and then Etype (Right_Opnd (N)) = Any_Type
2311 then
2312 exit Interp_Loop;
2313 end if;
2315 -- Not that special case, so issue message using the flag
2316 -- Ambiguous to control printing of the header message
2317 -- only at the start of an ambiguous set.
2319 if not Ambiguous then
2320 if Nkind (N) = N_Function_Call
2321 and then Nkind (Name (N)) = N_Explicit_Dereference
2322 then
2323 Error_Msg_N
2324 ("ambiguous expression (cannot resolve indirect "
2325 & "call)!", N);
2326 else
2327 Error_Msg_NE -- CODEFIX
2328 ("ambiguous expression (cannot resolve&)!",
2329 N, It.Nam);
2330 end if;
2332 Ambiguous := True;
2334 if Nkind (Parent (Seen)) = N_Full_Type_Declaration then
2335 Error_Msg_N
2336 ("\\possible interpretation (inherited)#!", N);
2337 else
2338 Error_Msg_N -- CODEFIX
2339 ("\\possible interpretation#!", N);
2340 end if;
2342 if Nkind (N) in N_Subprogram_Call
2343 and then Present (Parameter_Associations (N))
2344 then
2345 Report_Ambiguous_Argument;
2346 end if;
2347 end if;
2349 Error_Msg_Sloc := Sloc (It.Nam);
2351 -- By default, the error message refers to the candidate
2352 -- interpretation. But if it is a predefined operator, it
2353 -- is implicitly declared at the declaration of the type
2354 -- of the operand. Recover the sloc of that declaration
2355 -- for the error message.
2357 if Nkind (N) in N_Op
2358 and then Scope (It.Nam) = Standard_Standard
2359 and then not Is_Overloaded (Right_Opnd (N))
2360 and then Scope (Base_Type (Etype (Right_Opnd (N)))) /=
2361 Standard_Standard
2362 then
2363 Err_Type := First_Subtype (Etype (Right_Opnd (N)));
2365 if Comes_From_Source (Err_Type)
2366 and then Present (Parent (Err_Type))
2367 then
2368 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2369 end if;
2371 elsif Nkind (N) in N_Binary_Op
2372 and then Scope (It.Nam) = Standard_Standard
2373 and then not Is_Overloaded (Left_Opnd (N))
2374 and then Scope (Base_Type (Etype (Left_Opnd (N)))) /=
2375 Standard_Standard
2376 then
2377 Err_Type := First_Subtype (Etype (Left_Opnd (N)));
2379 if Comes_From_Source (Err_Type)
2380 and then Present (Parent (Err_Type))
2381 then
2382 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2383 end if;
2385 -- If this is an indirect call, use the subprogram_type
2386 -- in the message, to have a meaningful location. Also
2387 -- indicate if this is an inherited operation, created
2388 -- by a type declaration.
2390 elsif Nkind (N) = N_Function_Call
2391 and then Nkind (Name (N)) = N_Explicit_Dereference
2392 and then Is_Type (It.Nam)
2393 then
2394 Err_Type := It.Nam;
2395 Error_Msg_Sloc :=
2396 Sloc (Associated_Node_For_Itype (Err_Type));
2397 else
2398 Err_Type := Empty;
2399 end if;
2401 if Nkind (N) in N_Op
2402 and then Scope (It.Nam) = Standard_Standard
2403 and then Present (Err_Type)
2404 then
2405 -- Special-case the message for universal_fixed
2406 -- operators, which are not declared with the type
2407 -- of the operand, but appear forever in Standard.
2409 if It.Typ = Universal_Fixed
2410 and then Scope (It.Nam) = Standard_Standard
2411 then
2412 Error_Msg_N
2413 ("\\possible interpretation as universal_fixed "
2414 & "operation (RM 4.5.5 (19))", N);
2415 else
2416 Error_Msg_N
2417 ("\\possible interpretation (predefined)#!", N);
2418 end if;
2420 elsif
2421 Nkind (Parent (It.Nam)) = N_Full_Type_Declaration
2422 then
2423 Error_Msg_N
2424 ("\\possible interpretation (inherited)#!", N);
2425 else
2426 Error_Msg_N -- CODEFIX
2427 ("\\possible interpretation#!", N);
2428 end if;
2430 end if;
2431 end if;
2433 -- We have a matching interpretation, Expr_Type is the type
2434 -- from this interpretation, and Seen is the entity.
2436 -- For an operator, just set the entity name. The type will be
2437 -- set by the specific operator resolution routine.
2439 if Nkind (N) in N_Op then
2440 Set_Entity (N, Seen);
2441 Generate_Reference (Seen, N);
2443 elsif Nkind_In (N, N_Case_Expression,
2444 N_Character_Literal,
2445 N_Delta_Aggregate,
2446 N_If_Expression)
2447 then
2448 Set_Etype (N, Expr_Type);
2450 -- AI05-0139-2: Expression is overloaded because type has
2451 -- implicit dereference. If type matches context, no implicit
2452 -- dereference is involved. If the expression is an entity,
2453 -- generate a reference to it, as this is not done for an
2454 -- overloaded construct during analysis.
2456 elsif Has_Implicit_Dereference (Expr_Type) then
2457 Set_Etype (N, Expr_Type);
2458 Set_Is_Overloaded (N, False);
2460 if Is_Entity_Name (N) then
2461 Generate_Reference (Entity (N), N);
2462 end if;
2464 exit Interp_Loop;
2466 elsif Is_Overloaded (N)
2467 and then Present (It.Nam)
2468 and then Ekind (It.Nam) = E_Discriminant
2469 and then Has_Implicit_Dereference (It.Nam)
2470 then
2471 -- If the node is a general indexing, the dereference is
2472 -- is inserted when resolving the rewritten form, else
2473 -- insert it now.
2475 if Nkind (N) /= N_Indexed_Component
2476 or else No (Generalized_Indexing (N))
2477 then
2478 Build_Explicit_Dereference (N, It.Nam);
2479 end if;
2481 -- For an explicit dereference, attribute reference, range,
2482 -- short-circuit form (which is not an operator node), or call
2483 -- with a name that is an explicit dereference, there is
2484 -- nothing to be done at this point.
2486 elsif Nkind_In (N, N_Attribute_Reference,
2487 N_And_Then,
2488 N_Explicit_Dereference,
2489 N_Identifier,
2490 N_Indexed_Component,
2491 N_Or_Else,
2492 N_Range,
2493 N_Selected_Component,
2494 N_Slice)
2495 or else Nkind (Name (N)) = N_Explicit_Dereference
2496 then
2497 null;
2499 -- For procedure or function calls, set the type of the name,
2500 -- and also the entity pointer for the prefix.
2502 elsif Nkind (N) in N_Subprogram_Call
2503 and then Is_Entity_Name (Name (N))
2504 then
2505 Set_Etype (Name (N), Expr_Type);
2506 Set_Entity (Name (N), Seen);
2507 Generate_Reference (Seen, Name (N));
2509 elsif Nkind (N) = N_Function_Call
2510 and then Nkind (Name (N)) = N_Selected_Component
2511 then
2512 Set_Etype (Name (N), Expr_Type);
2513 Set_Entity (Selector_Name (Name (N)), Seen);
2514 Generate_Reference (Seen, Selector_Name (Name (N)));
2516 -- For all other cases, just set the type of the Name
2518 else
2519 Set_Etype (Name (N), Expr_Type);
2520 end if;
2522 end if;
2524 <<Continue>>
2526 -- Move to next interpretation
2528 exit Interp_Loop when No (It.Typ);
2530 Get_Next_Interp (I, It);
2531 end loop Interp_Loop;
2532 end if;
2534 -- At this stage Found indicates whether or not an acceptable
2535 -- interpretation exists. If not, then we have an error, except that if
2536 -- the context is Any_Type as a result of some other error, then we
2537 -- suppress the error report.
2539 if not Found then
2540 if Typ /= Any_Type then
2542 -- If type we are looking for is Void, then this is the procedure
2543 -- call case, and the error is simply that what we gave is not a
2544 -- procedure name (we think of procedure calls as expressions with
2545 -- types internally, but the user doesn't think of them this way).
2547 if Typ = Standard_Void_Type then
2549 -- Special case message if function used as a procedure
2551 if Nkind (N) = N_Procedure_Call_Statement
2552 and then Is_Entity_Name (Name (N))
2553 and then Ekind (Entity (Name (N))) = E_Function
2554 then
2555 Error_Msg_NE
2556 ("cannot use call to function & as a statement",
2557 Name (N), Entity (Name (N)));
2558 Error_Msg_N
2559 ("\return value of a function call cannot be ignored",
2560 Name (N));
2562 -- Otherwise give general message (not clear what cases this
2563 -- covers, but no harm in providing for them).
2565 else
2566 Error_Msg_N ("expect procedure name in procedure call", N);
2567 end if;
2569 Found := True;
2571 -- Otherwise we do have a subexpression with the wrong type
2573 -- Check for the case of an allocator which uses an access type
2574 -- instead of the designated type. This is a common error and we
2575 -- specialize the message, posting an error on the operand of the
2576 -- allocator, complaining that we expected the designated type of
2577 -- the allocator.
2579 elsif Nkind (N) = N_Allocator
2580 and then Is_Access_Type (Typ)
2581 and then Is_Access_Type (Etype (N))
2582 and then Designated_Type (Etype (N)) = Typ
2583 then
2584 Wrong_Type (Expression (N), Designated_Type (Typ));
2585 Found := True;
2587 -- Check for view mismatch on Null in instances, for which the
2588 -- view-swapping mechanism has no identifier.
2590 elsif (In_Instance or else In_Inlined_Body)
2591 and then (Nkind (N) = N_Null)
2592 and then Is_Private_Type (Typ)
2593 and then Is_Access_Type (Full_View (Typ))
2594 then
2595 Resolve (N, Full_View (Typ));
2596 Set_Etype (N, Typ);
2597 return;
2599 -- Check for an aggregate. Sometimes we can get bogus aggregates
2600 -- from misuse of parentheses, and we are about to complain about
2601 -- the aggregate without even looking inside it.
2603 -- Instead, if we have an aggregate of type Any_Composite, then
2604 -- analyze and resolve the component fields, and then only issue
2605 -- another message if we get no errors doing this (otherwise
2606 -- assume that the errors in the aggregate caused the problem).
2608 elsif Nkind (N) = N_Aggregate
2609 and then Etype (N) = Any_Composite
2610 then
2611 -- Disable expansion in any case. If there is a type mismatch
2612 -- it may be fatal to try to expand the aggregate. The flag
2613 -- would otherwise be set to false when the error is posted.
2615 Expander_Active := False;
2617 declare
2618 procedure Check_Aggr (Aggr : Node_Id);
2619 -- Check one aggregate, and set Found to True if we have a
2620 -- definite error in any of its elements
2622 procedure Check_Elmt (Aelmt : Node_Id);
2623 -- Check one element of aggregate and set Found to True if
2624 -- we definitely have an error in the element.
2626 ----------------
2627 -- Check_Aggr --
2628 ----------------
2630 procedure Check_Aggr (Aggr : Node_Id) is
2631 Elmt : Node_Id;
2633 begin
2634 if Present (Expressions (Aggr)) then
2635 Elmt := First (Expressions (Aggr));
2636 while Present (Elmt) loop
2637 Check_Elmt (Elmt);
2638 Next (Elmt);
2639 end loop;
2640 end if;
2642 if Present (Component_Associations (Aggr)) then
2643 Elmt := First (Component_Associations (Aggr));
2644 while Present (Elmt) loop
2646 -- If this is a default-initialized component, then
2647 -- there is nothing to check. The box will be
2648 -- replaced by the appropriate call during late
2649 -- expansion.
2651 if Nkind (Elmt) /= N_Iterated_Component_Association
2652 and then not Box_Present (Elmt)
2653 then
2654 Check_Elmt (Expression (Elmt));
2655 end if;
2657 Next (Elmt);
2658 end loop;
2659 end if;
2660 end Check_Aggr;
2662 ----------------
2663 -- Check_Elmt --
2664 ----------------
2666 procedure Check_Elmt (Aelmt : Node_Id) is
2667 begin
2668 -- If we have a nested aggregate, go inside it (to
2669 -- attempt a naked analyze-resolve of the aggregate can
2670 -- cause undesirable cascaded errors). Do not resolve
2671 -- expression if it needs a type from context, as for
2672 -- integer * fixed expression.
2674 if Nkind (Aelmt) = N_Aggregate then
2675 Check_Aggr (Aelmt);
2677 else
2678 Analyze (Aelmt);
2680 if not Is_Overloaded (Aelmt)
2681 and then Etype (Aelmt) /= Any_Fixed
2682 then
2683 Resolve (Aelmt);
2684 end if;
2686 if Etype (Aelmt) = Any_Type then
2687 Found := True;
2688 end if;
2689 end if;
2690 end Check_Elmt;
2692 begin
2693 Check_Aggr (N);
2694 end;
2695 end if;
2697 -- Looks like we have a type error, but check for special case
2698 -- of Address wanted, integer found, with the configuration pragma
2699 -- Allow_Integer_Address active. If we have this case, introduce
2700 -- an unchecked conversion to allow the integer expression to be
2701 -- treated as an Address. The reverse case of integer wanted,
2702 -- Address found, is treated in an analogous manner.
2704 if Address_Integer_Convert_OK (Typ, Etype (N)) then
2705 Rewrite (N, Unchecked_Convert_To (Typ, Relocate_Node (N)));
2706 Analyze_And_Resolve (N, Typ);
2707 return;
2709 -- Under relaxed RM semantics silently replace occurrences of null
2710 -- by System.Address_Null.
2712 elsif Null_To_Null_Address_Convert_OK (N, Typ) then
2713 Replace_Null_By_Null_Address (N);
2714 Analyze_And_Resolve (N, Typ);
2715 return;
2716 end if;
2718 -- That special Allow_Integer_Address check did not apply, so we
2719 -- have a real type error. If an error message was issued already,
2720 -- Found got reset to True, so if it's still False, issue standard
2721 -- Wrong_Type message.
2723 if not Found then
2724 if Is_Overloaded (N) and then Nkind (N) = N_Function_Call then
2725 declare
2726 Subp_Name : Node_Id;
2728 begin
2729 if Is_Entity_Name (Name (N)) then
2730 Subp_Name := Name (N);
2732 elsif Nkind (Name (N)) = N_Selected_Component then
2734 -- Protected operation: retrieve operation name
2736 Subp_Name := Selector_Name (Name (N));
2738 else
2739 raise Program_Error;
2740 end if;
2742 Error_Msg_Node_2 := Typ;
2743 Error_Msg_NE
2744 ("no visible interpretation of& matches expected type&",
2745 N, Subp_Name);
2746 end;
2748 if All_Errors_Mode then
2749 declare
2750 Index : Interp_Index;
2751 It : Interp;
2753 begin
2754 Error_Msg_N ("\\possible interpretations:", N);
2756 Get_First_Interp (Name (N), Index, It);
2757 while Present (It.Nam) loop
2758 Error_Msg_Sloc := Sloc (It.Nam);
2759 Error_Msg_Node_2 := It.Nam;
2760 Error_Msg_NE
2761 ("\\ type& for & declared#", N, It.Typ);
2762 Get_Next_Interp (Index, It);
2763 end loop;
2764 end;
2766 else
2767 Error_Msg_N ("\use -gnatf for details", N);
2768 end if;
2770 else
2771 Wrong_Type (N, Typ);
2772 end if;
2773 end if;
2774 end if;
2776 Resolution_Failed;
2777 return;
2779 -- Test if we have more than one interpretation for the context
2781 elsif Ambiguous then
2782 Resolution_Failed;
2783 return;
2785 -- Only one intepretation
2787 else
2788 -- In Ada 2005, if we have something like "X : T := 2 + 2;", where
2789 -- the "+" on T is abstract, and the operands are of universal type,
2790 -- the above code will have (incorrectly) resolved the "+" to the
2791 -- universal one in Standard. Therefore check for this case and give
2792 -- an error. We can't do this earlier, because it would cause legal
2793 -- cases to get errors (when some other type has an abstract "+").
2795 if Ada_Version >= Ada_2005
2796 and then Nkind (N) in N_Op
2797 and then Is_Overloaded (N)
2798 and then Is_Universal_Numeric_Type (Etype (Entity (N)))
2799 then
2800 Get_First_Interp (N, I, It);
2801 while Present (It.Typ) loop
2802 if Present (It.Abstract_Op) and then
2803 Etype (It.Abstract_Op) = Typ
2804 then
2805 Error_Msg_NE
2806 ("cannot call abstract subprogram &!", N, It.Abstract_Op);
2807 return;
2808 end if;
2810 Get_Next_Interp (I, It);
2811 end loop;
2812 end if;
2814 -- Here we have an acceptable interpretation for the context
2816 -- Propagate type information and normalize tree for various
2817 -- predefined operations. If the context only imposes a class of
2818 -- types, rather than a specific type, propagate the actual type
2819 -- downward.
2821 if Typ = Any_Integer or else
2822 Typ = Any_Boolean or else
2823 Typ = Any_Modular or else
2824 Typ = Any_Real or else
2825 Typ = Any_Discrete
2826 then
2827 Ctx_Type := Expr_Type;
2829 -- Any_Fixed is legal in a real context only if a specific fixed-
2830 -- point type is imposed. If Norman Cohen can be confused by this,
2831 -- it deserves a separate message.
2833 if Typ = Any_Real
2834 and then Expr_Type = Any_Fixed
2835 then
2836 Error_Msg_N ("illegal context for mixed mode operation", N);
2837 Set_Etype (N, Universal_Real);
2838 Ctx_Type := Universal_Real;
2839 end if;
2840 end if;
2842 -- A user-defined operator is transformed into a function call at
2843 -- this point, so that further processing knows that operators are
2844 -- really operators (i.e. are predefined operators). User-defined
2845 -- operators that are intrinsic are just renamings of the predefined
2846 -- ones, and need not be turned into calls either, but if they rename
2847 -- a different operator, we must transform the node accordingly.
2848 -- Instantiations of Unchecked_Conversion are intrinsic but are
2849 -- treated as functions, even if given an operator designator.
2851 if Nkind (N) in N_Op
2852 and then Present (Entity (N))
2853 and then Ekind (Entity (N)) /= E_Operator
2854 then
2855 if not Is_Predefined_Op (Entity (N)) then
2856 Rewrite_Operator_As_Call (N, Entity (N));
2858 elsif Present (Alias (Entity (N)))
2859 and then
2860 Nkind (Parent (Parent (Entity (N)))) =
2861 N_Subprogram_Renaming_Declaration
2862 then
2863 Rewrite_Renamed_Operator (N, Alias (Entity (N)), Typ);
2865 -- If the node is rewritten, it will be fully resolved in
2866 -- Rewrite_Renamed_Operator.
2868 if Analyzed (N) then
2869 return;
2870 end if;
2871 end if;
2872 end if;
2874 case N_Subexpr'(Nkind (N)) is
2875 when N_Aggregate =>
2876 Resolve_Aggregate (N, Ctx_Type);
2878 when N_Allocator =>
2879 Resolve_Allocator (N, Ctx_Type);
2881 when N_Short_Circuit =>
2882 Resolve_Short_Circuit (N, Ctx_Type);
2884 when N_Attribute_Reference =>
2885 Resolve_Attribute (N, Ctx_Type);
2887 when N_Case_Expression =>
2888 Resolve_Case_Expression (N, Ctx_Type);
2890 when N_Character_Literal =>
2891 Resolve_Character_Literal (N, Ctx_Type);
2893 when N_Delta_Aggregate =>
2894 Resolve_Delta_Aggregate (N, Ctx_Type);
2896 when N_Expanded_Name =>
2897 Resolve_Entity_Name (N, Ctx_Type);
2899 when N_Explicit_Dereference =>
2900 Resolve_Explicit_Dereference (N, Ctx_Type);
2902 when N_Expression_With_Actions =>
2903 Resolve_Expression_With_Actions (N, Ctx_Type);
2905 when N_Extension_Aggregate =>
2906 Resolve_Extension_Aggregate (N, Ctx_Type);
2908 when N_Function_Call =>
2909 Resolve_Call (N, Ctx_Type);
2911 when N_Identifier =>
2912 Resolve_Entity_Name (N, Ctx_Type);
2914 when N_If_Expression =>
2915 Resolve_If_Expression (N, Ctx_Type);
2917 when N_Indexed_Component =>
2918 Resolve_Indexed_Component (N, Ctx_Type);
2920 when N_Integer_Literal =>
2921 Resolve_Integer_Literal (N, Ctx_Type);
2923 when N_Membership_Test =>
2924 Resolve_Membership_Op (N, Ctx_Type);
2926 when N_Null =>
2927 Resolve_Null (N, Ctx_Type);
2929 when N_Op_And
2930 | N_Op_Or
2931 | N_Op_Xor
2933 Resolve_Logical_Op (N, Ctx_Type);
2935 when N_Op_Eq
2936 | N_Op_Ne
2938 Resolve_Equality_Op (N, Ctx_Type);
2940 when N_Op_Ge
2941 | N_Op_Gt
2942 | N_Op_Le
2943 | N_Op_Lt
2945 Resolve_Comparison_Op (N, Ctx_Type);
2947 when N_Op_Not =>
2948 Resolve_Op_Not (N, Ctx_Type);
2950 when N_Op_Add
2951 | N_Op_Divide
2952 | N_Op_Mod
2953 | N_Op_Multiply
2954 | N_Op_Rem
2955 | N_Op_Subtract
2957 Resolve_Arithmetic_Op (N, Ctx_Type);
2959 when N_Op_Concat =>
2960 Resolve_Op_Concat (N, Ctx_Type);
2962 when N_Op_Expon =>
2963 Resolve_Op_Expon (N, Ctx_Type);
2965 when N_Op_Abs
2966 | N_Op_Minus
2967 | N_Op_Plus
2969 Resolve_Unary_Op (N, Ctx_Type);
2971 when N_Op_Shift =>
2972 Resolve_Shift (N, Ctx_Type);
2974 when N_Procedure_Call_Statement =>
2975 Resolve_Call (N, Ctx_Type);
2977 when N_Operator_Symbol =>
2978 Resolve_Operator_Symbol (N, Ctx_Type);
2980 when N_Qualified_Expression =>
2981 Resolve_Qualified_Expression (N, Ctx_Type);
2983 -- Why is the following null, needs a comment ???
2985 when N_Quantified_Expression =>
2986 null;
2988 when N_Raise_Expression =>
2989 Resolve_Raise_Expression (N, Ctx_Type);
2991 when N_Raise_xxx_Error =>
2992 Set_Etype (N, Ctx_Type);
2994 when N_Range =>
2995 Resolve_Range (N, Ctx_Type);
2997 when N_Real_Literal =>
2998 Resolve_Real_Literal (N, Ctx_Type);
3000 when N_Reference =>
3001 Resolve_Reference (N, Ctx_Type);
3003 when N_Selected_Component =>
3004 Resolve_Selected_Component (N, Ctx_Type);
3006 when N_Slice =>
3007 Resolve_Slice (N, Ctx_Type);
3009 when N_String_Literal =>
3010 Resolve_String_Literal (N, Ctx_Type);
3012 when N_Target_Name =>
3013 Resolve_Target_Name (N, Ctx_Type);
3015 when N_Type_Conversion =>
3016 Resolve_Type_Conversion (N, Ctx_Type);
3018 when N_Unchecked_Expression =>
3019 Resolve_Unchecked_Expression (N, Ctx_Type);
3021 when N_Unchecked_Type_Conversion =>
3022 Resolve_Unchecked_Type_Conversion (N, Ctx_Type);
3023 end case;
3025 -- Mark relevant use-type and use-package clauses as effective using
3026 -- the original node because constant folding may have occured and
3027 -- removed references that need to be examined.
3029 if Nkind (Original_Node (N)) in N_Op then
3030 Mark_Use_Clauses (Original_Node (N));
3031 end if;
3033 -- Ada 2012 (AI05-0149): Apply an (implicit) conversion to an
3034 -- expression of an anonymous access type that occurs in the context
3035 -- of a named general access type, except when the expression is that
3036 -- of a membership test. This ensures proper legality checking in
3037 -- terms of allowed conversions (expressions that would be illegal to
3038 -- convert implicitly are allowed in membership tests).
3040 if Ada_Version >= Ada_2012
3041 and then Ekind (Ctx_Type) = E_General_Access_Type
3042 and then Ekind (Etype (N)) = E_Anonymous_Access_Type
3043 and then Nkind (Parent (N)) not in N_Membership_Test
3044 then
3045 Rewrite (N, Convert_To (Ctx_Type, Relocate_Node (N)));
3046 Analyze_And_Resolve (N, Ctx_Type);
3047 end if;
3049 -- If the subexpression was replaced by a non-subexpression, then
3050 -- all we do is to expand it. The only legitimate case we know of
3051 -- is converting procedure call statement to entry call statements,
3052 -- but there may be others, so we are making this test general.
3054 if Nkind (N) not in N_Subexpr then
3055 Debug_A_Exit ("resolving ", N, " (done)");
3056 Expand (N);
3057 return;
3058 end if;
3060 -- The expression is definitely NOT overloaded at this point, so
3061 -- we reset the Is_Overloaded flag to avoid any confusion when
3062 -- reanalyzing the node.
3064 Set_Is_Overloaded (N, False);
3066 -- Freeze expression type, entity if it is a name, and designated
3067 -- type if it is an allocator (RM 13.14(10,11,13)).
3069 -- Now that the resolution of the type of the node is complete, and
3070 -- we did not detect an error, we can expand this node. We skip the
3071 -- expand call if we are in a default expression, see section
3072 -- "Handling of Default Expressions" in Sem spec.
3074 Debug_A_Exit ("resolving ", N, " (done)");
3076 -- We unconditionally freeze the expression, even if we are in
3077 -- default expression mode (the Freeze_Expression routine tests this
3078 -- flag and only freezes static types if it is set).
3080 -- Ada 2012 (AI05-177): The declaration of an expression function
3081 -- does not cause freezing, but we never reach here in that case.
3082 -- Here we are resolving the corresponding expanded body, so we do
3083 -- need to perform normal freezing.
3085 -- As elsewhere we do not emit freeze node within a generic. We make
3086 -- an exception for entities that are expressions, only to detect
3087 -- misuses of deferred constants and preserve the output of various
3088 -- tests.
3090 if not Inside_A_Generic or else Is_Entity_Name (N) then
3091 Freeze_Expression (N);
3092 end if;
3094 -- Now we can do the expansion
3096 Expand (N);
3097 end if;
3098 end Resolve;
3100 -------------
3101 -- Resolve --
3102 -------------
3104 -- Version with check(s) suppressed
3106 procedure Resolve (N : Node_Id; Typ : Entity_Id; Suppress : Check_Id) is
3107 begin
3108 if Suppress = All_Checks then
3109 declare
3110 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
3111 begin
3112 Scope_Suppress.Suppress := (others => True);
3113 Resolve (N, Typ);
3114 Scope_Suppress.Suppress := Sva;
3115 end;
3117 else
3118 declare
3119 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
3120 begin
3121 Scope_Suppress.Suppress (Suppress) := True;
3122 Resolve (N, Typ);
3123 Scope_Suppress.Suppress (Suppress) := Svg;
3124 end;
3125 end if;
3126 end Resolve;
3128 -------------
3129 -- Resolve --
3130 -------------
3132 -- Version with implicit type
3134 procedure Resolve (N : Node_Id) is
3135 begin
3136 Resolve (N, Etype (N));
3137 end Resolve;
3139 ---------------------
3140 -- Resolve_Actuals --
3141 ---------------------
3143 procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id) is
3144 Loc : constant Source_Ptr := Sloc (N);
3145 A : Node_Id;
3146 A_Id : Entity_Id;
3147 A_Typ : Entity_Id := Empty; -- init to avoid warning
3148 F : Entity_Id;
3149 F_Typ : Entity_Id;
3150 Prev : Node_Id := Empty;
3151 Orig_A : Node_Id;
3152 Real_F : Entity_Id := Empty; -- init to avoid warning
3154 Real_Subp : Entity_Id;
3155 -- If the subprogram being called is an inherited operation for
3156 -- a formal derived type in an instance, Real_Subp is the subprogram
3157 -- that will be called. It may have different formal names than the
3158 -- operation of the formal in the generic, so after actual is resolved
3159 -- the name of the actual in a named association must carry the name
3160 -- of the actual of the subprogram being called.
3162 procedure Check_Aliased_Parameter;
3163 -- Check rules on aliased parameters and related accessibility rules
3164 -- in (RM 3.10.2 (10.2-10.4)).
3166 procedure Check_Argument_Order;
3167 -- Performs a check for the case where the actuals are all simple
3168 -- identifiers that correspond to the formal names, but in the wrong
3169 -- order, which is considered suspicious and cause for a warning.
3171 procedure Check_Prefixed_Call;
3172 -- If the original node is an overloaded call in prefix notation,
3173 -- insert an 'Access or a dereference as needed over the first actual.
3174 -- Try_Object_Operation has already verified that there is a valid
3175 -- interpretation, but the form of the actual can only be determined
3176 -- once the primitive operation is identified.
3178 procedure Flag_Effectively_Volatile_Objects (Expr : Node_Id);
3179 -- Emit an error concerning the illegal usage of an effectively volatile
3180 -- object in interfering context (SPARK RM 7.13(12)).
3182 procedure Insert_Default;
3183 -- If the actual is missing in a call, insert in the actuals list
3184 -- an instance of the default expression. The insertion is always
3185 -- a named association.
3187 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean;
3188 -- Check whether T1 and T2, or their full views, are derived from a
3189 -- common type. Used to enforce the restrictions on array conversions
3190 -- of AI95-00246.
3192 function Static_Concatenation (N : Node_Id) return Boolean;
3193 -- Predicate to determine whether an actual that is a concatenation
3194 -- will be evaluated statically and does not need a transient scope.
3195 -- This must be determined before the actual is resolved and expanded
3196 -- because if needed the transient scope must be introduced earlier.
3198 -----------------------------
3199 -- Check_Aliased_Parameter --
3200 -----------------------------
3202 procedure Check_Aliased_Parameter is
3203 Nominal_Subt : Entity_Id;
3205 begin
3206 if Is_Aliased (F) then
3207 if Is_Tagged_Type (A_Typ) then
3208 null;
3210 elsif Is_Aliased_View (A) then
3211 if Is_Constr_Subt_For_U_Nominal (A_Typ) then
3212 Nominal_Subt := Base_Type (A_Typ);
3213 else
3214 Nominal_Subt := A_Typ;
3215 end if;
3217 if Subtypes_Statically_Match (F_Typ, Nominal_Subt) then
3218 null;
3220 -- In a generic body assume the worst for generic formals:
3221 -- they can have a constrained partial view (AI05-041).
3223 elsif Has_Discriminants (F_Typ)
3224 and then not Is_Constrained (F_Typ)
3225 and then not Has_Constrained_Partial_View (F_Typ)
3226 and then not Is_Generic_Type (F_Typ)
3227 then
3228 null;
3230 else
3231 Error_Msg_NE ("untagged actual does not match "
3232 & "aliased formal&", A, F);
3233 end if;
3235 else
3236 Error_Msg_NE ("actual for aliased formal& must be "
3237 & "aliased object", A, F);
3238 end if;
3240 if Ekind (Nam) = E_Procedure then
3241 null;
3243 elsif Ekind (Etype (Nam)) = E_Anonymous_Access_Type then
3244 if Nkind (Parent (N)) = N_Type_Conversion
3245 and then Type_Access_Level (Etype (Parent (N))) <
3246 Object_Access_Level (A)
3247 then
3248 Error_Msg_N ("aliased actual has wrong accessibility", A);
3249 end if;
3251 elsif Nkind (Parent (N)) = N_Qualified_Expression
3252 and then Nkind (Parent (Parent (N))) = N_Allocator
3253 and then Type_Access_Level (Etype (Parent (Parent (N)))) <
3254 Object_Access_Level (A)
3255 then
3256 Error_Msg_N
3257 ("aliased actual in allocator has wrong accessibility", A);
3258 end if;
3259 end if;
3260 end Check_Aliased_Parameter;
3262 --------------------------
3263 -- Check_Argument_Order --
3264 --------------------------
3266 procedure Check_Argument_Order is
3267 begin
3268 -- Nothing to do if no parameters, or original node is neither a
3269 -- function call nor a procedure call statement (happens in the
3270 -- operator-transformed-to-function call case), or the call does
3271 -- not come from source, or this warning is off.
3273 if not Warn_On_Parameter_Order
3274 or else No (Parameter_Associations (N))
3275 or else Nkind (Original_Node (N)) not in N_Subprogram_Call
3276 or else not Comes_From_Source (N)
3277 then
3278 return;
3279 end if;
3281 declare
3282 Nargs : constant Nat := List_Length (Parameter_Associations (N));
3284 begin
3285 -- Nothing to do if only one parameter
3287 if Nargs < 2 then
3288 return;
3289 end if;
3291 -- Here if at least two arguments
3293 declare
3294 Actuals : array (1 .. Nargs) of Node_Id;
3295 Actual : Node_Id;
3296 Formal : Node_Id;
3298 Wrong_Order : Boolean := False;
3299 -- Set True if an out of order case is found
3301 begin
3302 -- Collect identifier names of actuals, fail if any actual is
3303 -- not a simple identifier, and record max length of name.
3305 Actual := First (Parameter_Associations (N));
3306 for J in Actuals'Range loop
3307 if Nkind (Actual) /= N_Identifier then
3308 return;
3309 else
3310 Actuals (J) := Actual;
3311 Next (Actual);
3312 end if;
3313 end loop;
3315 -- If we got this far, all actuals are identifiers and the list
3316 -- of their names is stored in the Actuals array.
3318 Formal := First_Formal (Nam);
3319 for J in Actuals'Range loop
3321 -- If we ran out of formals, that's odd, probably an error
3322 -- which will be detected elsewhere, but abandon the search.
3324 if No (Formal) then
3325 return;
3326 end if;
3328 -- If name matches and is in order OK
3330 if Chars (Formal) = Chars (Actuals (J)) then
3331 null;
3333 else
3334 -- If no match, see if it is elsewhere in list and if so
3335 -- flag potential wrong order if type is compatible.
3337 for K in Actuals'Range loop
3338 if Chars (Formal) = Chars (Actuals (K))
3339 and then
3340 Has_Compatible_Type (Actuals (K), Etype (Formal))
3341 then
3342 Wrong_Order := True;
3343 goto Continue;
3344 end if;
3345 end loop;
3347 -- No match
3349 return;
3350 end if;
3352 <<Continue>> Next_Formal (Formal);
3353 end loop;
3355 -- If Formals left over, also probably an error, skip warning
3357 if Present (Formal) then
3358 return;
3359 end if;
3361 -- Here we give the warning if something was out of order
3363 if Wrong_Order then
3364 Error_Msg_N
3365 ("?P?actuals for this call may be in wrong order", N);
3366 end if;
3367 end;
3368 end;
3369 end Check_Argument_Order;
3371 -------------------------
3372 -- Check_Prefixed_Call --
3373 -------------------------
3375 procedure Check_Prefixed_Call is
3376 Act : constant Node_Id := First_Actual (N);
3377 A_Type : constant Entity_Id := Etype (Act);
3378 F_Type : constant Entity_Id := Etype (First_Formal (Nam));
3379 Orig : constant Node_Id := Original_Node (N);
3380 New_A : Node_Id;
3382 begin
3383 -- Check whether the call is a prefixed call, with or without
3384 -- additional actuals.
3386 if Nkind (Orig) = N_Selected_Component
3387 or else
3388 (Nkind (Orig) = N_Indexed_Component
3389 and then Nkind (Prefix (Orig)) = N_Selected_Component
3390 and then Is_Entity_Name (Prefix (Prefix (Orig)))
3391 and then Is_Entity_Name (Act)
3392 and then Chars (Act) = Chars (Prefix (Prefix (Orig))))
3393 then
3394 if Is_Access_Type (A_Type)
3395 and then not Is_Access_Type (F_Type)
3396 then
3397 -- Introduce dereference on object in prefix
3399 New_A :=
3400 Make_Explicit_Dereference (Sloc (Act),
3401 Prefix => Relocate_Node (Act));
3402 Rewrite (Act, New_A);
3403 Analyze (Act);
3405 elsif Is_Access_Type (F_Type)
3406 and then not Is_Access_Type (A_Type)
3407 then
3408 -- Introduce an implicit 'Access in prefix
3410 if not Is_Aliased_View (Act) then
3411 Error_Msg_NE
3412 ("object in prefixed call to& must be aliased "
3413 & "(RM 4.1.3 (13 1/2))",
3414 Prefix (Act), Nam);
3415 end if;
3417 Rewrite (Act,
3418 Make_Attribute_Reference (Loc,
3419 Attribute_Name => Name_Access,
3420 Prefix => Relocate_Node (Act)));
3421 end if;
3423 Analyze (Act);
3424 end if;
3425 end Check_Prefixed_Call;
3427 ---------------------------------------
3428 -- Flag_Effectively_Volatile_Objects --
3429 ---------------------------------------
3431 procedure Flag_Effectively_Volatile_Objects (Expr : Node_Id) is
3432 function Flag_Object (N : Node_Id) return Traverse_Result;
3433 -- Determine whether arbitrary node N denotes an effectively volatile
3434 -- object and if it does, emit an error.
3436 -----------------
3437 -- Flag_Object --
3438 -----------------
3440 function Flag_Object (N : Node_Id) return Traverse_Result is
3441 Id : Entity_Id;
3443 begin
3444 -- Do not consider nested function calls because they have already
3445 -- been processed during their own resolution.
3447 if Nkind (N) = N_Function_Call then
3448 return Skip;
3450 elsif Is_Entity_Name (N) and then Present (Entity (N)) then
3451 Id := Entity (N);
3453 if Is_Object (Id)
3454 and then Is_Effectively_Volatile (Id)
3455 and then (Async_Writers_Enabled (Id)
3456 or else Effective_Reads_Enabled (Id))
3457 then
3458 Error_Msg_N
3459 ("volatile object cannot appear in this context (SPARK "
3460 & "RM 7.1.3(11))", N);
3461 return Skip;
3462 end if;
3463 end if;
3465 return OK;
3466 end Flag_Object;
3468 procedure Flag_Objects is new Traverse_Proc (Flag_Object);
3470 -- Start of processing for Flag_Effectively_Volatile_Objects
3472 begin
3473 Flag_Objects (Expr);
3474 end Flag_Effectively_Volatile_Objects;
3476 --------------------
3477 -- Insert_Default --
3478 --------------------
3480 procedure Insert_Default is
3481 Actval : Node_Id;
3482 Assoc : Node_Id;
3484 begin
3485 -- Missing argument in call, nothing to insert
3487 if No (Default_Value (F)) then
3488 return;
3490 else
3491 -- Note that we do a full New_Copy_Tree, so that any associated
3492 -- Itypes are properly copied. This may not be needed any more,
3493 -- but it does no harm as a safety measure. Defaults of a generic
3494 -- formal may be out of bounds of the corresponding actual (see
3495 -- cc1311b) and an additional check may be required.
3497 Actval :=
3498 New_Copy_Tree
3499 (Default_Value (F),
3500 New_Scope => Current_Scope,
3501 New_Sloc => Loc);
3503 -- Propagate dimension information, if any.
3505 Copy_Dimensions (Default_Value (F), Actval);
3507 if Is_Concurrent_Type (Scope (Nam))
3508 and then Has_Discriminants (Scope (Nam))
3509 then
3510 Replace_Actual_Discriminants (N, Actval);
3511 end if;
3513 if Is_Overloadable (Nam)
3514 and then Present (Alias (Nam))
3515 then
3516 if Base_Type (Etype (F)) /= Base_Type (Etype (Actval))
3517 and then not Is_Tagged_Type (Etype (F))
3518 then
3519 -- If default is a real literal, do not introduce a
3520 -- conversion whose effect may depend on the run-time
3521 -- size of universal real.
3523 if Nkind (Actval) = N_Real_Literal then
3524 Set_Etype (Actval, Base_Type (Etype (F)));
3525 else
3526 Actval := Unchecked_Convert_To (Etype (F), Actval);
3527 end if;
3528 end if;
3530 if Is_Scalar_Type (Etype (F)) then
3531 Enable_Range_Check (Actval);
3532 end if;
3534 Set_Parent (Actval, N);
3536 -- Resolve aggregates with their base type, to avoid scope
3537 -- anomalies: the subtype was first built in the subprogram
3538 -- declaration, and the current call may be nested.
3540 if Nkind (Actval) = N_Aggregate then
3541 Analyze_And_Resolve (Actval, Etype (F));
3542 else
3543 Analyze_And_Resolve (Actval, Etype (Actval));
3544 end if;
3546 else
3547 Set_Parent (Actval, N);
3549 -- See note above concerning aggregates
3551 if Nkind (Actval) = N_Aggregate
3552 and then Has_Discriminants (Etype (Actval))
3553 then
3554 Analyze_And_Resolve (Actval, Base_Type (Etype (Actval)));
3556 -- Resolve entities with their own type, which may differ from
3557 -- the type of a reference in a generic context (the view
3558 -- swapping mechanism did not anticipate the re-analysis of
3559 -- default values in calls).
3561 elsif Is_Entity_Name (Actval) then
3562 Analyze_And_Resolve (Actval, Etype (Entity (Actval)));
3564 else
3565 Analyze_And_Resolve (Actval, Etype (Actval));
3566 end if;
3567 end if;
3569 -- If default is a tag indeterminate function call, propagate tag
3570 -- to obtain proper dispatching.
3572 if Is_Controlling_Formal (F)
3573 and then Nkind (Default_Value (F)) = N_Function_Call
3574 then
3575 Set_Is_Controlling_Actual (Actval);
3576 end if;
3577 end if;
3579 -- If the default expression raises constraint error, then just
3580 -- silently replace it with an N_Raise_Constraint_Error node, since
3581 -- we already gave the warning on the subprogram spec. If node is
3582 -- already a Raise_Constraint_Error leave as is, to prevent loops in
3583 -- the warnings removal machinery.
3585 if Raises_Constraint_Error (Actval)
3586 and then Nkind (Actval) /= N_Raise_Constraint_Error
3587 then
3588 Rewrite (Actval,
3589 Make_Raise_Constraint_Error (Loc,
3590 Reason => CE_Range_Check_Failed));
3592 Set_Raises_Constraint_Error (Actval);
3593 Set_Etype (Actval, Etype (F));
3594 end if;
3596 Assoc :=
3597 Make_Parameter_Association (Loc,
3598 Explicit_Actual_Parameter => Actval,
3599 Selector_Name => Make_Identifier (Loc, Chars (F)));
3601 -- Case of insertion is first named actual
3603 if No (Prev)
3604 or else Nkind (Parent (Prev)) /= N_Parameter_Association
3605 then
3606 Set_Next_Named_Actual (Assoc, First_Named_Actual (N));
3607 Set_First_Named_Actual (N, Actval);
3609 if No (Prev) then
3610 if No (Parameter_Associations (N)) then
3611 Set_Parameter_Associations (N, New_List (Assoc));
3612 else
3613 Append (Assoc, Parameter_Associations (N));
3614 end if;
3616 else
3617 Insert_After (Prev, Assoc);
3618 end if;
3620 -- Case of insertion is not first named actual
3622 else
3623 Set_Next_Named_Actual
3624 (Assoc, Next_Named_Actual (Parent (Prev)));
3625 Set_Next_Named_Actual (Parent (Prev), Actval);
3626 Append (Assoc, Parameter_Associations (N));
3627 end if;
3629 Mark_Rewrite_Insertion (Assoc);
3630 Mark_Rewrite_Insertion (Actval);
3632 Prev := Actval;
3633 end Insert_Default;
3635 -------------------
3636 -- Same_Ancestor --
3637 -------------------
3639 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean is
3640 FT1 : Entity_Id := T1;
3641 FT2 : Entity_Id := T2;
3643 begin
3644 if Is_Private_Type (T1)
3645 and then Present (Full_View (T1))
3646 then
3647 FT1 := Full_View (T1);
3648 end if;
3650 if Is_Private_Type (T2)
3651 and then Present (Full_View (T2))
3652 then
3653 FT2 := Full_View (T2);
3654 end if;
3656 return Root_Type (Base_Type (FT1)) = Root_Type (Base_Type (FT2));
3657 end Same_Ancestor;
3659 --------------------------
3660 -- Static_Concatenation --
3661 --------------------------
3663 function Static_Concatenation (N : Node_Id) return Boolean is
3664 begin
3665 case Nkind (N) is
3666 when N_String_Literal =>
3667 return True;
3669 when N_Op_Concat =>
3671 -- Concatenation is static when both operands are static and
3672 -- the concatenation operator is a predefined one.
3674 return Scope (Entity (N)) = Standard_Standard
3675 and then
3676 Static_Concatenation (Left_Opnd (N))
3677 and then
3678 Static_Concatenation (Right_Opnd (N));
3680 when others =>
3681 if Is_Entity_Name (N) then
3682 declare
3683 Ent : constant Entity_Id := Entity (N);
3684 begin
3685 return Ekind (Ent) = E_Constant
3686 and then Present (Constant_Value (Ent))
3687 and then
3688 Is_OK_Static_Expression (Constant_Value (Ent));
3689 end;
3691 else
3692 return False;
3693 end if;
3694 end case;
3695 end Static_Concatenation;
3697 -- Start of processing for Resolve_Actuals
3699 begin
3700 Check_Argument_Order;
3702 if Is_Overloadable (Nam)
3703 and then Is_Inherited_Operation (Nam)
3704 and then In_Instance
3705 and then Present (Alias (Nam))
3706 and then Present (Overridden_Operation (Alias (Nam)))
3707 then
3708 Real_Subp := Alias (Nam);
3709 else
3710 Real_Subp := Empty;
3711 end if;
3713 if Present (First_Actual (N)) then
3714 Check_Prefixed_Call;
3715 end if;
3717 A := First_Actual (N);
3718 F := First_Formal (Nam);
3720 if Present (Real_Subp) then
3721 Real_F := First_Formal (Real_Subp);
3722 end if;
3724 while Present (F) loop
3725 if No (A) and then Needs_No_Actuals (Nam) then
3726 null;
3728 -- If we have an error in any actual or formal, indicated by a type
3729 -- of Any_Type, then abandon resolution attempt, and set result type
3730 -- to Any_Type. Skip this if the actual is a Raise_Expression, whose
3731 -- type is imposed from context.
3733 elsif (Present (A) and then Etype (A) = Any_Type)
3734 or else Etype (F) = Any_Type
3735 then
3736 if Nkind (A) /= N_Raise_Expression then
3737 Set_Etype (N, Any_Type);
3738 return;
3739 end if;
3740 end if;
3742 -- Case where actual is present
3744 -- If the actual is an entity, generate a reference to it now. We
3745 -- do this before the actual is resolved, because a formal of some
3746 -- protected subprogram, or a task discriminant, will be rewritten
3747 -- during expansion, and the source entity reference may be lost.
3749 if Present (A)
3750 and then Is_Entity_Name (A)
3751 and then Comes_From_Source (A)
3752 then
3753 -- Annotate the tree by creating a variable reference marker when
3754 -- the actual denotes a variable reference, in case the reference
3755 -- is folded or optimized away. The variable reference marker is
3756 -- automatically saved for later examination by the ABE Processing
3757 -- phase. The status of the reference is set as follows:
3759 -- status mode
3760 -- read IN, IN OUT
3761 -- write IN OUT, OUT
3763 Build_Variable_Reference_Marker
3764 (N => A,
3765 Read => Ekind (F) /= E_Out_Parameter,
3766 Write => Ekind (F) /= E_In_Parameter);
3768 Orig_A := Entity (A);
3770 if Present (Orig_A) then
3771 if Is_Formal (Orig_A)
3772 and then Ekind (F) /= E_In_Parameter
3773 then
3774 Generate_Reference (Orig_A, A, 'm');
3776 elsif not Is_Overloaded (A) then
3777 if Ekind (F) /= E_Out_Parameter then
3778 Generate_Reference (Orig_A, A);
3780 -- RM 6.4.1(12): For an out parameter that is passed by
3781 -- copy, the formal parameter object is created, and:
3783 -- * For an access type, the formal parameter is initialized
3784 -- from the value of the actual, without checking that the
3785 -- value satisfies any constraint, any predicate, or any
3786 -- exclusion of the null value.
3788 -- * For a scalar type that has the Default_Value aspect
3789 -- specified, the formal parameter is initialized from the
3790 -- value of the actual, without checking that the value
3791 -- satisfies any constraint or any predicate.
3792 -- I do not understand why this case is included??? this is
3793 -- not a case where an OUT parameter is treated as IN OUT.
3795 -- * For a composite type with discriminants or that has
3796 -- implicit initial values for any subcomponents, the
3797 -- behavior is as for an in out parameter passed by copy.
3799 -- Hence for these cases we generate the read reference now
3800 -- (the write reference will be generated later by
3801 -- Note_Possible_Modification).
3803 elsif Is_By_Copy_Type (Etype (F))
3804 and then
3805 (Is_Access_Type (Etype (F))
3806 or else
3807 (Is_Scalar_Type (Etype (F))
3808 and then
3809 Present (Default_Aspect_Value (Etype (F))))
3810 or else
3811 (Is_Composite_Type (Etype (F))
3812 and then (Has_Discriminants (Etype (F))
3813 or else Is_Partially_Initialized_Type
3814 (Etype (F)))))
3815 then
3816 Generate_Reference (Orig_A, A);
3817 end if;
3818 end if;
3819 end if;
3820 end if;
3822 if Present (A)
3823 and then (Nkind (Parent (A)) /= N_Parameter_Association
3824 or else Chars (Selector_Name (Parent (A))) = Chars (F))
3825 then
3826 -- If style checking mode on, check match of formal name
3828 if Style_Check then
3829 if Nkind (Parent (A)) = N_Parameter_Association then
3830 Check_Identifier (Selector_Name (Parent (A)), F);
3831 end if;
3832 end if;
3834 -- If the formal is Out or In_Out, do not resolve and expand the
3835 -- conversion, because it is subsequently expanded into explicit
3836 -- temporaries and assignments. However, the object of the
3837 -- conversion can be resolved. An exception is the case of tagged
3838 -- type conversion with a class-wide actual. In that case we want
3839 -- the tag check to occur and no temporary will be needed (no
3840 -- representation change can occur) and the parameter is passed by
3841 -- reference, so we go ahead and resolve the type conversion.
3842 -- Another exception is the case of reference to component or
3843 -- subcomponent of a bit-packed array, in which case we want to
3844 -- defer expansion to the point the in and out assignments are
3845 -- performed.
3847 if Ekind (F) /= E_In_Parameter
3848 and then Nkind (A) = N_Type_Conversion
3849 and then not Is_Class_Wide_Type (Etype (Expression (A)))
3850 then
3851 if Ekind (F) = E_In_Out_Parameter
3852 and then Is_Array_Type (Etype (F))
3853 then
3854 -- In a view conversion, the conversion must be legal in
3855 -- both directions, and thus both component types must be
3856 -- aliased, or neither (4.6 (8)).
3858 -- The extra rule in 4.6 (24.9.2) seems unduly restrictive:
3859 -- the privacy requirement should not apply to generic
3860 -- types, and should be checked in an instance. ARG query
3861 -- is in order ???
3863 if Has_Aliased_Components (Etype (Expression (A))) /=
3864 Has_Aliased_Components (Etype (F))
3865 then
3866 Error_Msg_N
3867 ("both component types in a view conversion must be"
3868 & " aliased, or neither", A);
3870 -- Comment here??? what set of cases???
3872 elsif
3873 not Same_Ancestor (Etype (F), Etype (Expression (A)))
3874 then
3875 -- Check view conv between unrelated by ref array types
3877 if Is_By_Reference_Type (Etype (F))
3878 or else Is_By_Reference_Type (Etype (Expression (A)))
3879 then
3880 Error_Msg_N
3881 ("view conversion between unrelated by reference "
3882 & "array types not allowed (\'A'I-00246)", A);
3884 -- In Ada 2005 mode, check view conversion component
3885 -- type cannot be private, tagged, or volatile. Note
3886 -- that we only apply this to source conversions. The
3887 -- generated code can contain conversions which are
3888 -- not subject to this test, and we cannot extract the
3889 -- component type in such cases since it is not present.
3891 elsif Comes_From_Source (A)
3892 and then Ada_Version >= Ada_2005
3893 then
3894 declare
3895 Comp_Type : constant Entity_Id :=
3896 Component_Type
3897 (Etype (Expression (A)));
3898 begin
3899 if (Is_Private_Type (Comp_Type)
3900 and then not Is_Generic_Type (Comp_Type))
3901 or else Is_Tagged_Type (Comp_Type)
3902 or else Is_Volatile (Comp_Type)
3903 then
3904 Error_Msg_N
3905 ("component type of a view conversion cannot"
3906 & " be private, tagged, or volatile"
3907 & " (RM 4.6 (24))",
3908 Expression (A));
3909 end if;
3910 end;
3911 end if;
3912 end if;
3913 end if;
3915 -- Resolve expression if conversion is all OK
3917 if (Conversion_OK (A)
3918 or else Valid_Conversion (A, Etype (A), Expression (A)))
3919 and then not Is_Ref_To_Bit_Packed_Array (Expression (A))
3920 then
3921 Resolve (Expression (A));
3922 end if;
3924 -- If the actual is a function call that returns a limited
3925 -- unconstrained object that needs finalization, create a
3926 -- transient scope for it, so that it can receive the proper
3927 -- finalization list.
3929 elsif Nkind (A) = N_Function_Call
3930 and then Is_Limited_Record (Etype (F))
3931 and then not Is_Constrained (Etype (F))
3932 and then Expander_Active
3933 and then (Is_Controlled (Etype (F)) or else Has_Task (Etype (F)))
3934 then
3935 Establish_Transient_Scope (A, Sec_Stack => False);
3936 Resolve (A, Etype (F));
3938 -- A small optimization: if one of the actuals is a concatenation
3939 -- create a block around a procedure call to recover stack space.
3940 -- This alleviates stack usage when several procedure calls in
3941 -- the same statement list use concatenation. We do not perform
3942 -- this wrapping for code statements, where the argument is a
3943 -- static string, and we want to preserve warnings involving
3944 -- sequences of such statements.
3946 elsif Nkind (A) = N_Op_Concat
3947 and then Nkind (N) = N_Procedure_Call_Statement
3948 and then Expander_Active
3949 and then
3950 not (Is_Intrinsic_Subprogram (Nam)
3951 and then Chars (Nam) = Name_Asm)
3952 and then not Static_Concatenation (A)
3953 then
3954 Establish_Transient_Scope (A, Sec_Stack => False);
3955 Resolve (A, Etype (F));
3957 else
3958 if Nkind (A) = N_Type_Conversion
3959 and then Is_Array_Type (Etype (F))
3960 and then not Same_Ancestor (Etype (F), Etype (Expression (A)))
3961 and then
3962 (Is_Limited_Type (Etype (F))
3963 or else Is_Limited_Type (Etype (Expression (A))))
3964 then
3965 Error_Msg_N
3966 ("conversion between unrelated limited array types "
3967 & "not allowed ('A'I-00246)", A);
3969 if Is_Limited_Type (Etype (F)) then
3970 Explain_Limited_Type (Etype (F), A);
3971 end if;
3973 if Is_Limited_Type (Etype (Expression (A))) then
3974 Explain_Limited_Type (Etype (Expression (A)), A);
3975 end if;
3976 end if;
3978 -- (Ada 2005: AI-251): If the actual is an allocator whose
3979 -- directly designated type is a class-wide interface, we build
3980 -- an anonymous access type to use it as the type of the
3981 -- allocator. Later, when the subprogram call is expanded, if
3982 -- the interface has a secondary dispatch table the expander
3983 -- will add a type conversion to force the correct displacement
3984 -- of the pointer.
3986 if Nkind (A) = N_Allocator then
3987 declare
3988 DDT : constant Entity_Id :=
3989 Directly_Designated_Type (Base_Type (Etype (F)));
3991 New_Itype : Entity_Id;
3993 begin
3994 if Is_Class_Wide_Type (DDT)
3995 and then Is_Interface (DDT)
3996 then
3997 New_Itype := Create_Itype (E_Anonymous_Access_Type, A);
3998 Set_Etype (New_Itype, Etype (A));
3999 Set_Directly_Designated_Type
4000 (New_Itype, Directly_Designated_Type (Etype (A)));
4001 Set_Etype (A, New_Itype);
4002 end if;
4004 -- Ada 2005, AI-162:If the actual is an allocator, the
4005 -- innermost enclosing statement is the master of the
4006 -- created object. This needs to be done with expansion
4007 -- enabled only, otherwise the transient scope will not
4008 -- be removed in the expansion of the wrapped construct.
4010 if (Is_Controlled (DDT) or else Has_Task (DDT))
4011 and then Expander_Active
4012 then
4013 Establish_Transient_Scope (A, Sec_Stack => False);
4014 end if;
4015 end;
4017 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
4018 Check_Restriction (No_Access_Parameter_Allocators, A);
4019 end if;
4020 end if;
4022 -- (Ada 2005): The call may be to a primitive operation of a
4023 -- tagged synchronized type, declared outside of the type. In
4024 -- this case the controlling actual must be converted to its
4025 -- corresponding record type, which is the formal type. The
4026 -- actual may be a subtype, either because of a constraint or
4027 -- because it is a generic actual, so use base type to locate
4028 -- concurrent type.
4030 F_Typ := Base_Type (Etype (F));
4032 if Is_Tagged_Type (F_Typ)
4033 and then (Is_Concurrent_Type (F_Typ)
4034 or else Is_Concurrent_Record_Type (F_Typ))
4035 then
4036 -- If the actual is overloaded, look for an interpretation
4037 -- that has a synchronized type.
4039 if not Is_Overloaded (A) then
4040 A_Typ := Base_Type (Etype (A));
4042 else
4043 declare
4044 Index : Interp_Index;
4045 It : Interp;
4047 begin
4048 Get_First_Interp (A, Index, It);
4049 while Present (It.Typ) loop
4050 if Is_Concurrent_Type (It.Typ)
4051 or else Is_Concurrent_Record_Type (It.Typ)
4052 then
4053 A_Typ := Base_Type (It.Typ);
4054 exit;
4055 end if;
4057 Get_Next_Interp (Index, It);
4058 end loop;
4059 end;
4060 end if;
4062 declare
4063 Full_A_Typ : Entity_Id;
4065 begin
4066 if Present (Full_View (A_Typ)) then
4067 Full_A_Typ := Base_Type (Full_View (A_Typ));
4068 else
4069 Full_A_Typ := A_Typ;
4070 end if;
4072 -- Tagged synchronized type (case 1): the actual is a
4073 -- concurrent type.
4075 if Is_Concurrent_Type (A_Typ)
4076 and then Corresponding_Record_Type (A_Typ) = F_Typ
4077 then
4078 Rewrite (A,
4079 Unchecked_Convert_To
4080 (Corresponding_Record_Type (A_Typ), A));
4081 Resolve (A, Etype (F));
4083 -- Tagged synchronized type (case 2): the formal is a
4084 -- concurrent type.
4086 elsif Ekind (Full_A_Typ) = E_Record_Type
4087 and then Present
4088 (Corresponding_Concurrent_Type (Full_A_Typ))
4089 and then Is_Concurrent_Type (F_Typ)
4090 and then Present (Corresponding_Record_Type (F_Typ))
4091 and then Full_A_Typ = Corresponding_Record_Type (F_Typ)
4092 then
4093 Resolve (A, Corresponding_Record_Type (F_Typ));
4095 -- Common case
4097 else
4098 Resolve (A, Etype (F));
4099 end if;
4100 end;
4102 -- Not a synchronized operation
4104 else
4105 Resolve (A, Etype (F));
4106 end if;
4107 end if;
4109 A_Typ := Etype (A);
4110 F_Typ := Etype (F);
4112 -- An actual cannot be an untagged formal incomplete type
4114 if Ekind (A_Typ) = E_Incomplete_Type
4115 and then not Is_Tagged_Type (A_Typ)
4116 and then Is_Generic_Type (A_Typ)
4117 then
4118 Error_Msg_N
4119 ("invalid use of untagged formal incomplete type", A);
4120 end if;
4122 if Comes_From_Source (Original_Node (N))
4123 and then Nkind_In (Original_Node (N), N_Function_Call,
4124 N_Procedure_Call_Statement)
4125 then
4126 -- In formal mode, check that actual parameters matching
4127 -- formals of tagged types are objects (or ancestor type
4128 -- conversions of objects), not general expressions.
4130 if Is_Actual_Tagged_Parameter (A) then
4131 if Is_SPARK_05_Object_Reference (A) then
4132 null;
4134 elsif Nkind (A) = N_Type_Conversion then
4135 declare
4136 Operand : constant Node_Id := Expression (A);
4137 Operand_Typ : constant Entity_Id := Etype (Operand);
4138 Target_Typ : constant Entity_Id := A_Typ;
4140 begin
4141 if not Is_SPARK_05_Object_Reference (Operand) then
4142 Check_SPARK_05_Restriction
4143 ("object required", Operand);
4145 -- In formal mode, the only view conversions are those
4146 -- involving ancestor conversion of an extended type.
4148 elsif not
4149 (Is_Tagged_Type (Target_Typ)
4150 and then not Is_Class_Wide_Type (Target_Typ)
4151 and then Is_Tagged_Type (Operand_Typ)
4152 and then not Is_Class_Wide_Type (Operand_Typ)
4153 and then Is_Ancestor (Target_Typ, Operand_Typ))
4154 then
4155 if Ekind_In
4156 (F, E_Out_Parameter, E_In_Out_Parameter)
4157 then
4158 Check_SPARK_05_Restriction
4159 ("ancestor conversion is the only permitted "
4160 & "view conversion", A);
4161 else
4162 Check_SPARK_05_Restriction
4163 ("ancestor conversion required", A);
4164 end if;
4166 else
4167 null;
4168 end if;
4169 end;
4171 else
4172 Check_SPARK_05_Restriction ("object required", A);
4173 end if;
4175 -- In formal mode, the only view conversions are those
4176 -- involving ancestor conversion of an extended type.
4178 elsif Nkind (A) = N_Type_Conversion
4179 and then Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
4180 then
4181 Check_SPARK_05_Restriction
4182 ("ancestor conversion is the only permitted view "
4183 & "conversion", A);
4184 end if;
4185 end if;
4187 -- has warnings suppressed, then we reset Never_Set_In_Source for
4188 -- the calling entity. The reason for this is to catch cases like
4189 -- GNAT.Spitbol.Patterns.Vstring_Var where the called subprogram
4190 -- uses trickery to modify an IN parameter.
4192 if Ekind (F) = E_In_Parameter
4193 and then Is_Entity_Name (A)
4194 and then Present (Entity (A))
4195 and then Ekind (Entity (A)) = E_Variable
4196 and then Has_Warnings_Off (F_Typ)
4197 then
4198 Set_Never_Set_In_Source (Entity (A), False);
4199 end if;
4201 -- Perform error checks for IN and IN OUT parameters
4203 if Ekind (F) /= E_Out_Parameter then
4205 -- Check unset reference. For scalar parameters, it is clearly
4206 -- wrong to pass an uninitialized value as either an IN or
4207 -- IN-OUT parameter. For composites, it is also clearly an
4208 -- error to pass a completely uninitialized value as an IN
4209 -- parameter, but the case of IN OUT is trickier. We prefer
4210 -- not to give a warning here. For example, suppose there is
4211 -- a routine that sets some component of a record to False.
4212 -- It is perfectly reasonable to make this IN-OUT and allow
4213 -- either initialized or uninitialized records to be passed
4214 -- in this case.
4216 -- For partially initialized composite values, we also avoid
4217 -- warnings, since it is quite likely that we are passing a
4218 -- partially initialized value and only the initialized fields
4219 -- will in fact be read in the subprogram.
4221 if Is_Scalar_Type (A_Typ)
4222 or else (Ekind (F) = E_In_Parameter
4223 and then not Is_Partially_Initialized_Type (A_Typ))
4224 then
4225 Check_Unset_Reference (A);
4226 end if;
4228 -- In Ada 83 we cannot pass an OUT parameter as an IN or IN OUT
4229 -- actual to a nested call, since this constitutes a reading of
4230 -- the parameter, which is not allowed.
4232 if Ada_Version = Ada_83
4233 and then Is_Entity_Name (A)
4234 and then Ekind (Entity (A)) = E_Out_Parameter
4235 then
4236 Error_Msg_N ("(Ada 83) illegal reading of out parameter", A);
4237 end if;
4238 end if;
4240 -- In -gnatd.q mode, forget that a given array is constant when
4241 -- it is passed as an IN parameter to a foreign-convention
4242 -- subprogram. This is in case the subprogram evilly modifies the
4243 -- object. Of course, correct code would use IN OUT.
4245 if Debug_Flag_Dot_Q
4246 and then Ekind (F) = E_In_Parameter
4247 and then Has_Foreign_Convention (Nam)
4248 and then Is_Array_Type (F_Typ)
4249 and then Nkind (A) in N_Has_Entity
4250 and then Present (Entity (A))
4251 then
4252 Set_Is_True_Constant (Entity (A), False);
4253 end if;
4255 -- Case of OUT or IN OUT parameter
4257 if Ekind (F) /= E_In_Parameter then
4259 -- For an Out parameter, check for useless assignment. Note
4260 -- that we can't set Last_Assignment this early, because we may
4261 -- kill current values in Resolve_Call, and that call would
4262 -- clobber the Last_Assignment field.
4264 -- Note: call Warn_On_Useless_Assignment before doing the check
4265 -- below for Is_OK_Variable_For_Out_Formal so that the setting
4266 -- of Referenced_As_LHS/Referenced_As_Out_Formal properly
4267 -- reflects the last assignment, not this one.
4269 if Ekind (F) = E_Out_Parameter then
4270 if Warn_On_Modified_As_Out_Parameter (F)
4271 and then Is_Entity_Name (A)
4272 and then Present (Entity (A))
4273 and then Comes_From_Source (N)
4274 then
4275 Warn_On_Useless_Assignment (Entity (A), A);
4276 end if;
4277 end if;
4279 -- Validate the form of the actual. Note that the call to
4280 -- Is_OK_Variable_For_Out_Formal generates the required
4281 -- reference in this case.
4283 -- A call to an initialization procedure for an aggregate
4284 -- component may initialize a nested component of a constant
4285 -- designated object. In this context the object is variable.
4287 if not Is_OK_Variable_For_Out_Formal (A)
4288 and then not Is_Init_Proc (Nam)
4289 then
4290 Error_Msg_NE ("actual for& must be a variable", A, F);
4292 if Is_Subprogram (Current_Scope) then
4293 if Is_Invariant_Procedure (Current_Scope)
4294 or else Is_Partial_Invariant_Procedure (Current_Scope)
4295 then
4296 Error_Msg_N
4297 ("function used in invariant cannot modify its "
4298 & "argument", F);
4300 elsif Is_Predicate_Function (Current_Scope) then
4301 Error_Msg_N
4302 ("function used in predicate cannot modify its "
4303 & "argument", F);
4304 end if;
4305 end if;
4306 end if;
4308 -- What's the following about???
4310 if Is_Entity_Name (A) then
4311 Kill_Checks (Entity (A));
4312 else
4313 Kill_All_Checks;
4314 end if;
4315 end if;
4317 if Etype (A) = Any_Type then
4318 Set_Etype (N, Any_Type);
4319 return;
4320 end if;
4322 -- Apply appropriate constraint/predicate checks for IN [OUT] case
4324 if Ekind_In (F, E_In_Parameter, E_In_Out_Parameter) then
4326 -- Apply predicate tests except in certain special cases. Note
4327 -- that it might be more consistent to apply these only when
4328 -- expansion is active (in Exp_Ch6.Expand_Actuals), as we do
4329 -- for the outbound predicate tests ??? In any case indicate
4330 -- the function being called, for better warnings if the call
4331 -- leads to an infinite recursion.
4333 if Predicate_Tests_On_Arguments (Nam) then
4334 Apply_Predicate_Check (A, F_Typ, Nam);
4335 end if;
4337 -- Apply required constraint checks
4339 -- Gigi looks at the check flag and uses the appropriate types.
4340 -- For now since one flag is used there is an optimization
4341 -- which might not be done in the IN OUT case since Gigi does
4342 -- not do any analysis. More thought required about this ???
4344 -- In fact is this comment obsolete??? doesn't the expander now
4345 -- generate all these tests anyway???
4347 if Is_Scalar_Type (Etype (A)) then
4348 Apply_Scalar_Range_Check (A, F_Typ);
4350 elsif Is_Array_Type (Etype (A)) then
4351 Apply_Length_Check (A, F_Typ);
4353 elsif Is_Record_Type (F_Typ)
4354 and then Has_Discriminants (F_Typ)
4355 and then Is_Constrained (F_Typ)
4356 and then (not Is_Derived_Type (F_Typ)
4357 or else Comes_From_Source (Nam))
4358 then
4359 Apply_Discriminant_Check (A, F_Typ);
4361 -- For view conversions of a discriminated object, apply
4362 -- check to object itself, the conversion alreay has the
4363 -- proper type.
4365 if Nkind (A) = N_Type_Conversion
4366 and then Is_Constrained (Etype (Expression (A)))
4367 then
4368 Apply_Discriminant_Check (Expression (A), F_Typ);
4369 end if;
4371 elsif Is_Access_Type (F_Typ)
4372 and then Is_Array_Type (Designated_Type (F_Typ))
4373 and then Is_Constrained (Designated_Type (F_Typ))
4374 then
4375 Apply_Length_Check (A, F_Typ);
4377 elsif Is_Access_Type (F_Typ)
4378 and then Has_Discriminants (Designated_Type (F_Typ))
4379 and then Is_Constrained (Designated_Type (F_Typ))
4380 then
4381 Apply_Discriminant_Check (A, F_Typ);
4383 else
4384 Apply_Range_Check (A, F_Typ);
4385 end if;
4387 -- Ada 2005 (AI-231): Note that the controlling parameter case
4388 -- already existed in Ada 95, which is partially checked
4389 -- elsewhere (see Checks), and we don't want the warning
4390 -- message to differ.
4392 if Is_Access_Type (F_Typ)
4393 and then Can_Never_Be_Null (F_Typ)
4394 and then Known_Null (A)
4395 then
4396 if Is_Controlling_Formal (F) then
4397 Apply_Compile_Time_Constraint_Error
4398 (N => A,
4399 Msg => "null value not allowed here??",
4400 Reason => CE_Access_Check_Failed);
4402 elsif Ada_Version >= Ada_2005 then
4403 Apply_Compile_Time_Constraint_Error
4404 (N => A,
4405 Msg => "(Ada 2005) null not allowed in "
4406 & "null-excluding formal??",
4407 Reason => CE_Null_Not_Allowed);
4408 end if;
4409 end if;
4410 end if;
4412 -- Checks for OUT parameters and IN OUT parameters
4414 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter) then
4416 -- If there is a type conversion, make sure the return value
4417 -- meets the constraints of the variable before the conversion.
4419 if Nkind (A) = N_Type_Conversion then
4420 if Is_Scalar_Type (A_Typ) then
4421 Apply_Scalar_Range_Check
4422 (Expression (A), Etype (Expression (A)), A_Typ);
4424 -- In addition, the returned value of the parameter must
4425 -- satisfy the bounds of the object type (see comment
4426 -- below).
4428 Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
4430 else
4431 Apply_Range_Check
4432 (Expression (A), Etype (Expression (A)), A_Typ);
4433 end if;
4435 -- If no conversion, apply scalar range checks and length check
4436 -- based on the subtype of the actual (NOT that of the formal).
4437 -- This indicates that the check takes place on return from the
4438 -- call. During expansion the required constraint checks are
4439 -- inserted. In GNATprove mode, in the absence of expansion,
4440 -- the flag indicates that the returned value is valid.
4442 else
4443 if Is_Scalar_Type (F_Typ) then
4444 Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
4446 elsif Is_Array_Type (F_Typ)
4447 and then Ekind (F) = E_Out_Parameter
4448 then
4449 Apply_Length_Check (A, F_Typ);
4450 else
4451 Apply_Range_Check (A, A_Typ, F_Typ);
4452 end if;
4453 end if;
4455 -- Note: we do not apply the predicate checks for the case of
4456 -- OUT and IN OUT parameters. They are instead applied in the
4457 -- Expand_Actuals routine in Exp_Ch6.
4458 end if;
4460 -- An actual associated with an access parameter is implicitly
4461 -- converted to the anonymous access type of the formal and must
4462 -- satisfy the legality checks for access conversions.
4464 if Ekind (F_Typ) = E_Anonymous_Access_Type then
4465 if not Valid_Conversion (A, F_Typ, A) then
4466 Error_Msg_N
4467 ("invalid implicit conversion for access parameter", A);
4468 end if;
4470 -- If the actual is an access selected component of a variable,
4471 -- the call may modify its designated object. It is reasonable
4472 -- to treat this as a potential modification of the enclosing
4473 -- record, to prevent spurious warnings that it should be
4474 -- declared as a constant, because intuitively programmers
4475 -- regard the designated subcomponent as part of the record.
4477 if Nkind (A) = N_Selected_Component
4478 and then Is_Entity_Name (Prefix (A))
4479 and then not Is_Constant_Object (Entity (Prefix (A)))
4480 then
4481 Note_Possible_Modification (A, Sure => False);
4482 end if;
4483 end if;
4485 -- Check bad case of atomic/volatile argument (RM C.6(12))
4487 if Is_By_Reference_Type (Etype (F))
4488 and then Comes_From_Source (N)
4489 then
4490 if Is_Atomic_Object (A)
4491 and then not Is_Atomic (Etype (F))
4492 then
4493 Error_Msg_NE
4494 ("cannot pass atomic argument to non-atomic formal&",
4495 A, F);
4497 elsif Is_Volatile_Object (A)
4498 and then not Is_Volatile (Etype (F))
4499 then
4500 Error_Msg_NE
4501 ("cannot pass volatile argument to non-volatile formal&",
4502 A, F);
4503 end if;
4504 end if;
4506 -- Check that subprograms don't have improper controlling
4507 -- arguments (RM 3.9.2 (9)).
4509 -- A primitive operation may have an access parameter of an
4510 -- incomplete tagged type, but a dispatching call is illegal
4511 -- if the type is still incomplete.
4513 if Is_Controlling_Formal (F) then
4514 Set_Is_Controlling_Actual (A);
4516 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
4517 declare
4518 Desig : constant Entity_Id := Designated_Type (Etype (F));
4519 begin
4520 if Ekind (Desig) = E_Incomplete_Type
4521 and then No (Full_View (Desig))
4522 and then No (Non_Limited_View (Desig))
4523 then
4524 Error_Msg_NE
4525 ("premature use of incomplete type& "
4526 & "in dispatching call", A, Desig);
4527 end if;
4528 end;
4529 end if;
4531 elsif Nkind (A) = N_Explicit_Dereference then
4532 Validate_Remote_Access_To_Class_Wide_Type (A);
4533 end if;
4535 -- Apply legality rule 3.9.2 (9/1)
4537 if (Is_Class_Wide_Type (A_Typ) or else Is_Dynamically_Tagged (A))
4538 and then not Is_Class_Wide_Type (F_Typ)
4539 and then not Is_Controlling_Formal (F)
4540 and then not In_Instance
4541 then
4542 Error_Msg_N ("class-wide argument not allowed here!", A);
4544 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4545 Error_Msg_Node_2 := F_Typ;
4546 Error_Msg_NE
4547 ("& is not a dispatching operation of &!", A, Nam);
4548 end if;
4550 -- Apply the checks described in 3.10.2(27): if the context is a
4551 -- specific access-to-object, the actual cannot be class-wide.
4552 -- Use base type to exclude access_to_subprogram cases.
4554 elsif Is_Access_Type (A_Typ)
4555 and then Is_Access_Type (F_Typ)
4556 and then not Is_Access_Subprogram_Type (Base_Type (F_Typ))
4557 and then (Is_Class_Wide_Type (Designated_Type (A_Typ))
4558 or else (Nkind (A) = N_Attribute_Reference
4559 and then
4560 Is_Class_Wide_Type (Etype (Prefix (A)))))
4561 and then not Is_Class_Wide_Type (Designated_Type (F_Typ))
4562 and then not Is_Controlling_Formal (F)
4564 -- Disable these checks for call to imported C++ subprograms
4566 and then not
4567 (Is_Entity_Name (Name (N))
4568 and then Is_Imported (Entity (Name (N)))
4569 and then Convention (Entity (Name (N))) = Convention_CPP)
4570 then
4571 Error_Msg_N
4572 ("access to class-wide argument not allowed here!", A);
4574 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4575 Error_Msg_Node_2 := Designated_Type (F_Typ);
4576 Error_Msg_NE
4577 ("& is not a dispatching operation of &!", A, Nam);
4578 end if;
4579 end if;
4581 Check_Aliased_Parameter;
4583 Eval_Actual (A);
4585 -- If it is a named association, treat the selector_name as a
4586 -- proper identifier, and mark the corresponding entity.
4588 if Nkind (Parent (A)) = N_Parameter_Association
4590 -- Ignore reference in SPARK mode, as it refers to an entity not
4591 -- in scope at the point of reference, so the reference should
4592 -- be ignored for computing effects of subprograms.
4594 and then not GNATprove_Mode
4595 then
4596 -- If subprogram is overridden, use name of formal that
4597 -- is being called.
4599 if Present (Real_Subp) then
4600 Set_Entity (Selector_Name (Parent (A)), Real_F);
4601 Set_Etype (Selector_Name (Parent (A)), Etype (Real_F));
4603 else
4604 Set_Entity (Selector_Name (Parent (A)), F);
4605 Generate_Reference (F, Selector_Name (Parent (A)));
4606 Set_Etype (Selector_Name (Parent (A)), F_Typ);
4607 Generate_Reference (F_Typ, N, ' ');
4608 end if;
4609 end if;
4611 Prev := A;
4613 if Ekind (F) /= E_Out_Parameter then
4614 Check_Unset_Reference (A);
4615 end if;
4617 -- The following checks are only relevant when SPARK_Mode is on as
4618 -- they are not standard Ada legality rule. Internally generated
4619 -- temporaries are ignored.
4621 if SPARK_Mode = On and then Comes_From_Source (A) then
4623 -- An effectively volatile object may act as an actual when the
4624 -- corresponding formal is of a non-scalar effectively volatile
4625 -- type (SPARK RM 7.1.3(11)).
4627 if not Is_Scalar_Type (Etype (F))
4628 and then Is_Effectively_Volatile (Etype (F))
4629 then
4630 null;
4632 -- An effectively volatile object may act as an actual in a
4633 -- call to an instance of Unchecked_Conversion.
4634 -- (SPARK RM 7.1.3(11)).
4636 elsif Is_Unchecked_Conversion_Instance (Nam) then
4637 null;
4639 -- The actual denotes an object
4641 elsif Is_Effectively_Volatile_Object (A) then
4642 Error_Msg_N
4643 ("volatile object cannot act as actual in a call (SPARK "
4644 & "RM 7.1.3(11))", A);
4646 -- Otherwise the actual denotes an expression. Inspect the
4647 -- expression and flag each effectively volatile object with
4648 -- enabled property Async_Writers or Effective_Reads as illegal
4649 -- because it apprears within an interfering context. Note that
4650 -- this is usually done in Resolve_Entity_Name, but when the
4651 -- effectively volatile object appears as an actual in a call,
4652 -- the call must be resolved first.
4654 else
4655 Flag_Effectively_Volatile_Objects (A);
4656 end if;
4658 -- An effectively volatile variable cannot act as an actual
4659 -- parameter in a procedure call when the variable has enabled
4660 -- property Effective_Reads and the corresponding formal is of
4661 -- mode IN (SPARK RM 7.1.3(10)).
4663 if Ekind (Nam) = E_Procedure
4664 and then Ekind (F) = E_In_Parameter
4665 and then Is_Entity_Name (A)
4666 then
4667 A_Id := Entity (A);
4669 if Ekind (A_Id) = E_Variable
4670 and then Is_Effectively_Volatile (Etype (A_Id))
4671 and then Effective_Reads_Enabled (A_Id)
4672 then
4673 Error_Msg_NE
4674 ("effectively volatile variable & cannot appear as "
4675 & "actual in procedure call", A, A_Id);
4677 Error_Msg_Name_1 := Name_Effective_Reads;
4678 Error_Msg_N ("\\variable has enabled property %", A);
4679 Error_Msg_N ("\\corresponding formal has mode IN", A);
4680 end if;
4681 end if;
4682 end if;
4684 -- A formal parameter of a specific tagged type whose related
4685 -- subprogram is subject to pragma Extensions_Visible with value
4686 -- "False" cannot act as an actual in a subprogram with value
4687 -- "True" (SPARK RM 6.1.7(3)).
4689 if Is_EVF_Expression (A)
4690 and then Extensions_Visible_Status (Nam) =
4691 Extensions_Visible_True
4692 then
4693 Error_Msg_N
4694 ("formal parameter cannot act as actual parameter when "
4695 & "Extensions_Visible is False", A);
4696 Error_Msg_NE
4697 ("\subprogram & has Extensions_Visible True", A, Nam);
4698 end if;
4700 -- The actual parameter of a Ghost subprogram whose formal is of
4701 -- mode IN OUT or OUT must be a Ghost variable (SPARK RM 6.9(12)).
4703 if Comes_From_Source (Nam)
4704 and then Is_Ghost_Entity (Nam)
4705 and then Ekind_In (F, E_In_Out_Parameter, E_Out_Parameter)
4706 and then Is_Entity_Name (A)
4707 and then Present (Entity (A))
4708 and then not Is_Ghost_Entity (Entity (A))
4709 then
4710 Error_Msg_NE
4711 ("non-ghost variable & cannot appear as actual in call to "
4712 & "ghost procedure", A, Entity (A));
4714 if Ekind (F) = E_In_Out_Parameter then
4715 Error_Msg_N ("\corresponding formal has mode `IN OUT`", A);
4716 else
4717 Error_Msg_N ("\corresponding formal has mode OUT", A);
4718 end if;
4719 end if;
4721 Next_Actual (A);
4723 -- Case where actual is not present
4725 else
4726 Insert_Default;
4727 end if;
4729 Next_Formal (F);
4731 if Present (Real_Subp) then
4732 Next_Formal (Real_F);
4733 end if;
4734 end loop;
4735 end Resolve_Actuals;
4737 -----------------------
4738 -- Resolve_Allocator --
4739 -----------------------
4741 procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id) is
4742 Desig_T : constant Entity_Id := Designated_Type (Typ);
4743 E : constant Node_Id := Expression (N);
4744 Subtyp : Entity_Id;
4745 Discrim : Entity_Id;
4746 Constr : Node_Id;
4747 Aggr : Node_Id;
4748 Assoc : Node_Id := Empty;
4749 Disc_Exp : Node_Id;
4751 procedure Check_Allocator_Discrim_Accessibility
4752 (Disc_Exp : Node_Id;
4753 Alloc_Typ : Entity_Id);
4754 -- Check that accessibility level associated with an access discriminant
4755 -- initialized in an allocator by the expression Disc_Exp is not deeper
4756 -- than the level of the allocator type Alloc_Typ. An error message is
4757 -- issued if this condition is violated. Specialized checks are done for
4758 -- the cases of a constraint expression which is an access attribute or
4759 -- an access discriminant.
4761 function In_Dispatching_Context return Boolean;
4762 -- If the allocator is an actual in a call, it is allowed to be class-
4763 -- wide when the context is not because it is a controlling actual.
4765 -------------------------------------------
4766 -- Check_Allocator_Discrim_Accessibility --
4767 -------------------------------------------
4769 procedure Check_Allocator_Discrim_Accessibility
4770 (Disc_Exp : Node_Id;
4771 Alloc_Typ : Entity_Id)
4773 begin
4774 if Type_Access_Level (Etype (Disc_Exp)) >
4775 Deepest_Type_Access_Level (Alloc_Typ)
4776 then
4777 Error_Msg_N
4778 ("operand type has deeper level than allocator type", Disc_Exp);
4780 -- When the expression is an Access attribute the level of the prefix
4781 -- object must not be deeper than that of the allocator's type.
4783 elsif Nkind (Disc_Exp) = N_Attribute_Reference
4784 and then Get_Attribute_Id (Attribute_Name (Disc_Exp)) =
4785 Attribute_Access
4786 and then Object_Access_Level (Prefix (Disc_Exp)) >
4787 Deepest_Type_Access_Level (Alloc_Typ)
4788 then
4789 Error_Msg_N
4790 ("prefix of attribute has deeper level than allocator type",
4791 Disc_Exp);
4793 -- When the expression is an access discriminant the check is against
4794 -- the level of the prefix object.
4796 elsif Ekind (Etype (Disc_Exp)) = E_Anonymous_Access_Type
4797 and then Nkind (Disc_Exp) = N_Selected_Component
4798 and then Object_Access_Level (Prefix (Disc_Exp)) >
4799 Deepest_Type_Access_Level (Alloc_Typ)
4800 then
4801 Error_Msg_N
4802 ("access discriminant has deeper level than allocator type",
4803 Disc_Exp);
4805 -- All other cases are legal
4807 else
4808 null;
4809 end if;
4810 end Check_Allocator_Discrim_Accessibility;
4812 ----------------------------
4813 -- In_Dispatching_Context --
4814 ----------------------------
4816 function In_Dispatching_Context return Boolean is
4817 Par : constant Node_Id := Parent (N);
4819 begin
4820 return Nkind (Par) in N_Subprogram_Call
4821 and then Is_Entity_Name (Name (Par))
4822 and then Is_Dispatching_Operation (Entity (Name (Par)));
4823 end In_Dispatching_Context;
4825 -- Start of processing for Resolve_Allocator
4827 begin
4828 -- Replace general access with specific type
4830 if Ekind (Etype (N)) = E_Allocator_Type then
4831 Set_Etype (N, Base_Type (Typ));
4832 end if;
4834 if Is_Abstract_Type (Typ) then
4835 Error_Msg_N ("type of allocator cannot be abstract", N);
4836 end if;
4838 -- For qualified expression, resolve the expression using the given
4839 -- subtype (nothing to do for type mark, subtype indication)
4841 if Nkind (E) = N_Qualified_Expression then
4842 if Is_Class_Wide_Type (Etype (E))
4843 and then not Is_Class_Wide_Type (Desig_T)
4844 and then not In_Dispatching_Context
4845 then
4846 Error_Msg_N
4847 ("class-wide allocator not allowed for this access type", N);
4848 end if;
4850 Resolve (Expression (E), Etype (E));
4851 Check_Non_Static_Context (Expression (E));
4852 Check_Unset_Reference (Expression (E));
4854 -- Allocators generated by the build-in-place expansion mechanism
4855 -- are explicitly marked as coming from source but do not need to be
4856 -- checked for limited initialization. To exclude this case, ensure
4857 -- that the parent of the allocator is a source node.
4858 -- The return statement constructed for an Expression_Function does
4859 -- not come from source but requires a limited check.
4861 if Is_Limited_Type (Etype (E))
4862 and then Comes_From_Source (N)
4863 and then
4864 (Comes_From_Source (Parent (N))
4865 or else
4866 (Ekind (Current_Scope) = E_Function
4867 and then Nkind (Original_Node (Unit_Declaration_Node
4868 (Current_Scope))) = N_Expression_Function))
4869 and then not In_Instance_Body
4870 then
4871 if not OK_For_Limited_Init (Etype (E), Expression (E)) then
4872 if Nkind (Parent (N)) = N_Assignment_Statement then
4873 Error_Msg_N
4874 ("illegal expression for initialized allocator of a "
4875 & "limited type (RM 7.5 (2.7/2))", N);
4876 else
4877 Error_Msg_N
4878 ("initialization not allowed for limited types", N);
4879 end if;
4881 Explain_Limited_Type (Etype (E), N);
4882 end if;
4883 end if;
4885 -- A qualified expression requires an exact match of the type. Class-
4886 -- wide matching is not allowed.
4888 if (Is_Class_Wide_Type (Etype (Expression (E)))
4889 or else Is_Class_Wide_Type (Etype (E)))
4890 and then Base_Type (Etype (Expression (E))) /= Base_Type (Etype (E))
4891 then
4892 Wrong_Type (Expression (E), Etype (E));
4893 end if;
4895 -- Calls to build-in-place functions are not currently supported in
4896 -- allocators for access types associated with a simple storage pool.
4897 -- Supporting such allocators may require passing additional implicit
4898 -- parameters to build-in-place functions (or a significant revision
4899 -- of the current b-i-p implementation to unify the handling for
4900 -- multiple kinds of storage pools). ???
4902 if Is_Limited_View (Desig_T)
4903 and then Nkind (Expression (E)) = N_Function_Call
4904 then
4905 declare
4906 Pool : constant Entity_Id :=
4907 Associated_Storage_Pool (Root_Type (Typ));
4908 begin
4909 if Present (Pool)
4910 and then
4911 Present (Get_Rep_Pragma
4912 (Etype (Pool), Name_Simple_Storage_Pool_Type))
4913 then
4914 Error_Msg_N
4915 ("limited function calls not yet supported in simple "
4916 & "storage pool allocators", Expression (E));
4917 end if;
4918 end;
4919 end if;
4921 -- A special accessibility check is needed for allocators that
4922 -- constrain access discriminants. The level of the type of the
4923 -- expression used to constrain an access discriminant cannot be
4924 -- deeper than the type of the allocator (in contrast to access
4925 -- parameters, where the level of the actual can be arbitrary).
4927 -- We can't use Valid_Conversion to perform this check because in
4928 -- general the type of the allocator is unrelated to the type of
4929 -- the access discriminant.
4931 if Ekind (Typ) /= E_Anonymous_Access_Type
4932 or else Is_Local_Anonymous_Access (Typ)
4933 then
4934 Subtyp := Entity (Subtype_Mark (E));
4936 Aggr := Original_Node (Expression (E));
4938 if Has_Discriminants (Subtyp)
4939 and then Nkind_In (Aggr, N_Aggregate, N_Extension_Aggregate)
4940 then
4941 Discrim := First_Discriminant (Base_Type (Subtyp));
4943 -- Get the first component expression of the aggregate
4945 if Present (Expressions (Aggr)) then
4946 Disc_Exp := First (Expressions (Aggr));
4948 elsif Present (Component_Associations (Aggr)) then
4949 Assoc := First (Component_Associations (Aggr));
4951 if Present (Assoc) then
4952 Disc_Exp := Expression (Assoc);
4953 else
4954 Disc_Exp := Empty;
4955 end if;
4957 else
4958 Disc_Exp := Empty;
4959 end if;
4961 while Present (Discrim) and then Present (Disc_Exp) loop
4962 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4963 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4964 end if;
4966 Next_Discriminant (Discrim);
4968 if Present (Discrim) then
4969 if Present (Assoc) then
4970 Next (Assoc);
4971 Disc_Exp := Expression (Assoc);
4973 elsif Present (Next (Disc_Exp)) then
4974 Next (Disc_Exp);
4976 else
4977 Assoc := First (Component_Associations (Aggr));
4979 if Present (Assoc) then
4980 Disc_Exp := Expression (Assoc);
4981 else
4982 Disc_Exp := Empty;
4983 end if;
4984 end if;
4985 end if;
4986 end loop;
4987 end if;
4988 end if;
4990 -- For a subtype mark or subtype indication, freeze the subtype
4992 else
4993 Freeze_Expression (E);
4995 if Is_Access_Constant (Typ) and then not No_Initialization (N) then
4996 Error_Msg_N
4997 ("initialization required for access-to-constant allocator", N);
4998 end if;
5000 -- A special accessibility check is needed for allocators that
5001 -- constrain access discriminants. The level of the type of the
5002 -- expression used to constrain an access discriminant cannot be
5003 -- deeper than the type of the allocator (in contrast to access
5004 -- parameters, where the level of the actual can be arbitrary).
5005 -- We can't use Valid_Conversion to perform this check because
5006 -- in general the type of the allocator is unrelated to the type
5007 -- of the access discriminant.
5009 if Nkind (Original_Node (E)) = N_Subtype_Indication
5010 and then (Ekind (Typ) /= E_Anonymous_Access_Type
5011 or else Is_Local_Anonymous_Access (Typ))
5012 then
5013 Subtyp := Entity (Subtype_Mark (Original_Node (E)));
5015 if Has_Discriminants (Subtyp) then
5016 Discrim := First_Discriminant (Base_Type (Subtyp));
5017 Constr := First (Constraints (Constraint (Original_Node (E))));
5018 while Present (Discrim) and then Present (Constr) loop
5019 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
5020 if Nkind (Constr) = N_Discriminant_Association then
5021 Disc_Exp := Original_Node (Expression (Constr));
5022 else
5023 Disc_Exp := Original_Node (Constr);
5024 end if;
5026 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
5027 end if;
5029 Next_Discriminant (Discrim);
5030 Next (Constr);
5031 end loop;
5032 end if;
5033 end if;
5034 end if;
5036 -- Ada 2005 (AI-344): A class-wide allocator requires an accessibility
5037 -- check that the level of the type of the created object is not deeper
5038 -- than the level of the allocator's access type, since extensions can
5039 -- now occur at deeper levels than their ancestor types. This is a
5040 -- static accessibility level check; a run-time check is also needed in
5041 -- the case of an initialized allocator with a class-wide argument (see
5042 -- Expand_Allocator_Expression).
5044 if Ada_Version >= Ada_2005
5045 and then Is_Class_Wide_Type (Desig_T)
5046 then
5047 declare
5048 Exp_Typ : Entity_Id;
5050 begin
5051 if Nkind (E) = N_Qualified_Expression then
5052 Exp_Typ := Etype (E);
5053 elsif Nkind (E) = N_Subtype_Indication then
5054 Exp_Typ := Entity (Subtype_Mark (Original_Node (E)));
5055 else
5056 Exp_Typ := Entity (E);
5057 end if;
5059 if Type_Access_Level (Exp_Typ) >
5060 Deepest_Type_Access_Level (Typ)
5061 then
5062 if In_Instance_Body then
5063 Error_Msg_Warn := SPARK_Mode /= On;
5064 Error_Msg_N
5065 ("type in allocator has deeper level than "
5066 & "designated class-wide type<<", E);
5067 Error_Msg_N ("\Program_Error [<<", E);
5068 Rewrite (N,
5069 Make_Raise_Program_Error (Sloc (N),
5070 Reason => PE_Accessibility_Check_Failed));
5071 Set_Etype (N, Typ);
5073 -- Do not apply Ada 2005 accessibility checks on a class-wide
5074 -- allocator if the type given in the allocator is a formal
5075 -- type. A run-time check will be performed in the instance.
5077 elsif not Is_Generic_Type (Exp_Typ) then
5078 Error_Msg_N ("type in allocator has deeper level than "
5079 & "designated class-wide type", E);
5080 end if;
5081 end if;
5082 end;
5083 end if;
5085 -- Check for allocation from an empty storage pool
5087 if No_Pool_Assigned (Typ) then
5088 Error_Msg_N ("allocation from empty storage pool!", N);
5090 -- If the context is an unchecked conversion, as may happen within an
5091 -- inlined subprogram, the allocator is being resolved with its own
5092 -- anonymous type. In that case, if the target type has a specific
5093 -- storage pool, it must be inherited explicitly by the allocator type.
5095 elsif Nkind (Parent (N)) = N_Unchecked_Type_Conversion
5096 and then No (Associated_Storage_Pool (Typ))
5097 then
5098 Set_Associated_Storage_Pool
5099 (Typ, Associated_Storage_Pool (Etype (Parent (N))));
5100 end if;
5102 if Ekind (Etype (N)) = E_Anonymous_Access_Type then
5103 Check_Restriction (No_Anonymous_Allocators, N);
5104 end if;
5106 -- Check that an allocator with task parts isn't for a nested access
5107 -- type when restriction No_Task_Hierarchy applies.
5109 if not Is_Library_Level_Entity (Base_Type (Typ))
5110 and then Has_Task (Base_Type (Desig_T))
5111 then
5112 Check_Restriction (No_Task_Hierarchy, N);
5113 end if;
5115 -- An illegal allocator may be rewritten as a raise Program_Error
5116 -- statement.
5118 if Nkind (N) = N_Allocator then
5120 -- An anonymous access discriminant is the definition of a
5121 -- coextension.
5123 if Ekind (Typ) = E_Anonymous_Access_Type
5124 and then Nkind (Associated_Node_For_Itype (Typ)) =
5125 N_Discriminant_Specification
5126 then
5127 declare
5128 Discr : constant Entity_Id :=
5129 Defining_Identifier (Associated_Node_For_Itype (Typ));
5131 begin
5132 Check_Restriction (No_Coextensions, N);
5134 -- Ada 2012 AI05-0052: If the designated type of the allocator
5135 -- is limited, then the allocator shall not be used to define
5136 -- the value of an access discriminant unless the discriminated
5137 -- type is immutably limited.
5139 if Ada_Version >= Ada_2012
5140 and then Is_Limited_Type (Desig_T)
5141 and then not Is_Limited_View (Scope (Discr))
5142 then
5143 Error_Msg_N
5144 ("only immutably limited types can have anonymous "
5145 & "access discriminants designating a limited type", N);
5146 end if;
5147 end;
5149 -- Avoid marking an allocator as a dynamic coextension if it is
5150 -- within a static construct.
5152 if not Is_Static_Coextension (N) then
5153 Set_Is_Dynamic_Coextension (N);
5155 -- ??? We currently do not handle finalization and deallocation
5156 -- of coextensions properly so let's at least warn the user
5157 -- about it.
5159 if Is_Controlled (Desig_T) then
5160 Error_Msg_N
5161 ("??coextension will not be finalized when its "
5162 & "associated owner is deallocated or finalized", N);
5163 else
5164 Error_Msg_N
5165 ("??coextension will not be deallocated when its "
5166 & "associated owner is deallocated", N);
5167 end if;
5168 end if;
5170 -- Cleanup for potential static coextensions
5172 else
5173 Set_Is_Dynamic_Coextension (N, False);
5174 Set_Is_Static_Coextension (N, False);
5176 -- ??? It seems we also do not properly finalize anonymous
5177 -- access-to-controlled objects within their declared scope and
5178 -- instead finalize them with their associated unit. Warn the
5179 -- user about it here.
5181 if Ekind (Typ) = E_Anonymous_Access_Type
5182 and then Is_Controlled_Active (Desig_T)
5183 then
5184 Error_Msg_N
5185 ("??object designated by anonymous access object might not "
5186 & "be finalized until its enclosing library unit goes out "
5187 & "of scope", N);
5188 Error_Msg_N ("\use named access type instead", N);
5189 end if;
5190 end if;
5191 end if;
5193 -- Report a simple error: if the designated object is a local task,
5194 -- its body has not been seen yet, and its activation will fail an
5195 -- elaboration check.
5197 if Is_Task_Type (Desig_T)
5198 and then Scope (Base_Type (Desig_T)) = Current_Scope
5199 and then Is_Compilation_Unit (Current_Scope)
5200 and then Ekind (Current_Scope) = E_Package
5201 and then not In_Package_Body (Current_Scope)
5202 then
5203 Error_Msg_Warn := SPARK_Mode /= On;
5204 Error_Msg_N ("cannot activate task before body seen<<", N);
5205 Error_Msg_N ("\Program_Error [<<", N);
5206 end if;
5208 -- Ada 2012 (AI05-0111-3): Detect an attempt to allocate a task or a
5209 -- type with a task component on a subpool. This action must raise
5210 -- Program_Error at runtime.
5212 if Ada_Version >= Ada_2012
5213 and then Nkind (N) = N_Allocator
5214 and then Present (Subpool_Handle_Name (N))
5215 and then Has_Task (Desig_T)
5216 then
5217 Error_Msg_Warn := SPARK_Mode /= On;
5218 Error_Msg_N ("cannot allocate task on subpool<<", N);
5219 Error_Msg_N ("\Program_Error [<<", N);
5221 Rewrite (N,
5222 Make_Raise_Program_Error (Sloc (N),
5223 Reason => PE_Explicit_Raise));
5224 Set_Etype (N, Typ);
5225 end if;
5226 end Resolve_Allocator;
5228 ---------------------------
5229 -- Resolve_Arithmetic_Op --
5230 ---------------------------
5232 -- Used for resolving all arithmetic operators except exponentiation
5234 procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id) is
5235 L : constant Node_Id := Left_Opnd (N);
5236 R : constant Node_Id := Right_Opnd (N);
5237 TL : constant Entity_Id := Base_Type (Etype (L));
5238 TR : constant Entity_Id := Base_Type (Etype (R));
5239 T : Entity_Id;
5240 Rop : Node_Id;
5242 B_Typ : constant Entity_Id := Base_Type (Typ);
5243 -- We do the resolution using the base type, because intermediate values
5244 -- in expressions always are of the base type, not a subtype of it.
5246 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean;
5247 -- Returns True if N is in a context that expects "any real type"
5249 function Is_Integer_Or_Universal (N : Node_Id) return Boolean;
5250 -- Return True iff given type is Integer or universal real/integer
5252 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id);
5253 -- Choose type of integer literal in fixed-point operation to conform
5254 -- to available fixed-point type. T is the type of the other operand,
5255 -- which is needed to determine the expected type of N.
5257 procedure Set_Operand_Type (N : Node_Id);
5258 -- Set operand type to T if universal
5260 -------------------------------
5261 -- Expected_Type_Is_Any_Real --
5262 -------------------------------
5264 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean is
5265 begin
5266 -- N is the expression after "delta" in a fixed_point_definition;
5267 -- see RM-3.5.9(6):
5269 return Nkind_In (Parent (N), N_Ordinary_Fixed_Point_Definition,
5270 N_Decimal_Fixed_Point_Definition,
5272 -- N is one of the bounds in a real_range_specification;
5273 -- see RM-3.5.7(5):
5275 N_Real_Range_Specification,
5277 -- N is the expression of a delta_constraint;
5278 -- see RM-J.3(3):
5280 N_Delta_Constraint);
5281 end Expected_Type_Is_Any_Real;
5283 -----------------------------
5284 -- Is_Integer_Or_Universal --
5285 -----------------------------
5287 function Is_Integer_Or_Universal (N : Node_Id) return Boolean is
5288 T : Entity_Id;
5289 Index : Interp_Index;
5290 It : Interp;
5292 begin
5293 if not Is_Overloaded (N) then
5294 T := Etype (N);
5295 return Base_Type (T) = Base_Type (Standard_Integer)
5296 or else T = Universal_Integer
5297 or else T = Universal_Real;
5298 else
5299 Get_First_Interp (N, Index, It);
5300 while Present (It.Typ) loop
5301 if Base_Type (It.Typ) = Base_Type (Standard_Integer)
5302 or else It.Typ = Universal_Integer
5303 or else It.Typ = Universal_Real
5304 then
5305 return True;
5306 end if;
5308 Get_Next_Interp (Index, It);
5309 end loop;
5310 end if;
5312 return False;
5313 end Is_Integer_Or_Universal;
5315 ----------------------------
5316 -- Set_Mixed_Mode_Operand --
5317 ----------------------------
5319 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id) is
5320 Index : Interp_Index;
5321 It : Interp;
5323 begin
5324 if Universal_Interpretation (N) = Universal_Integer then
5326 -- A universal integer literal is resolved as standard integer
5327 -- except in the case of a fixed-point result, where we leave it
5328 -- as universal (to be handled by Exp_Fixd later on)
5330 if Is_Fixed_Point_Type (T) then
5331 Resolve (N, Universal_Integer);
5332 else
5333 Resolve (N, Standard_Integer);
5334 end if;
5336 elsif Universal_Interpretation (N) = Universal_Real
5337 and then (T = Base_Type (Standard_Integer)
5338 or else T = Universal_Integer
5339 or else T = Universal_Real)
5340 then
5341 -- A universal real can appear in a fixed-type context. We resolve
5342 -- the literal with that context, even though this might raise an
5343 -- exception prematurely (the other operand may be zero).
5345 Resolve (N, B_Typ);
5347 elsif Etype (N) = Base_Type (Standard_Integer)
5348 and then T = Universal_Real
5349 and then Is_Overloaded (N)
5350 then
5351 -- Integer arg in mixed-mode operation. Resolve with universal
5352 -- type, in case preference rule must be applied.
5354 Resolve (N, Universal_Integer);
5356 elsif Etype (N) = T
5357 and then B_Typ /= Universal_Fixed
5358 then
5359 -- Not a mixed-mode operation, resolve with context
5361 Resolve (N, B_Typ);
5363 elsif Etype (N) = Any_Fixed then
5365 -- N may itself be a mixed-mode operation, so use context type
5367 Resolve (N, B_Typ);
5369 elsif Is_Fixed_Point_Type (T)
5370 and then B_Typ = Universal_Fixed
5371 and then Is_Overloaded (N)
5372 then
5373 -- Must be (fixed * fixed) operation, operand must have one
5374 -- compatible interpretation.
5376 Resolve (N, Any_Fixed);
5378 elsif Is_Fixed_Point_Type (B_Typ)
5379 and then (T = Universal_Real or else Is_Fixed_Point_Type (T))
5380 and then Is_Overloaded (N)
5381 then
5382 -- C * F(X) in a fixed context, where C is a real literal or a
5383 -- fixed-point expression. F must have either a fixed type
5384 -- interpretation or an integer interpretation, but not both.
5386 Get_First_Interp (N, Index, It);
5387 while Present (It.Typ) loop
5388 if Base_Type (It.Typ) = Base_Type (Standard_Integer) then
5389 if Analyzed (N) then
5390 Error_Msg_N ("ambiguous operand in fixed operation", N);
5391 else
5392 Resolve (N, Standard_Integer);
5393 end if;
5395 elsif Is_Fixed_Point_Type (It.Typ) then
5396 if Analyzed (N) then
5397 Error_Msg_N ("ambiguous operand in fixed operation", N);
5398 else
5399 Resolve (N, It.Typ);
5400 end if;
5401 end if;
5403 Get_Next_Interp (Index, It);
5404 end loop;
5406 -- Reanalyze the literal with the fixed type of the context. If
5407 -- context is Universal_Fixed, we are within a conversion, leave
5408 -- the literal as a universal real because there is no usable
5409 -- fixed type, and the target of the conversion plays no role in
5410 -- the resolution.
5412 declare
5413 Op2 : Node_Id;
5414 T2 : Entity_Id;
5416 begin
5417 if N = L then
5418 Op2 := R;
5419 else
5420 Op2 := L;
5421 end if;
5423 if B_Typ = Universal_Fixed
5424 and then Nkind (Op2) = N_Real_Literal
5425 then
5426 T2 := Universal_Real;
5427 else
5428 T2 := B_Typ;
5429 end if;
5431 Set_Analyzed (Op2, False);
5432 Resolve (Op2, T2);
5433 end;
5435 -- A universal real conditional expression can appear in a fixed-type
5436 -- context and must be resolved with that context to facilitate the
5437 -- code generation to the backend.
5439 elsif Nkind_In (N, N_Case_Expression, N_If_Expression)
5440 and then Etype (N) = Universal_Real
5441 and then Is_Fixed_Point_Type (B_Typ)
5442 then
5443 Resolve (N, B_Typ);
5445 else
5446 Resolve (N);
5447 end if;
5448 end Set_Mixed_Mode_Operand;
5450 ----------------------
5451 -- Set_Operand_Type --
5452 ----------------------
5454 procedure Set_Operand_Type (N : Node_Id) is
5455 begin
5456 if Etype (N) = Universal_Integer
5457 or else Etype (N) = Universal_Real
5458 then
5459 Set_Etype (N, T);
5460 end if;
5461 end Set_Operand_Type;
5463 -- Start of processing for Resolve_Arithmetic_Op
5465 begin
5466 if Comes_From_Source (N)
5467 and then Ekind (Entity (N)) = E_Function
5468 and then Is_Imported (Entity (N))
5469 and then Is_Intrinsic_Subprogram (Entity (N))
5470 then
5471 Resolve_Intrinsic_Operator (N, Typ);
5472 return;
5474 -- Special-case for mixed-mode universal expressions or fixed point type
5475 -- operation: each argument is resolved separately. The same treatment
5476 -- is required if one of the operands of a fixed point operation is
5477 -- universal real, since in this case we don't do a conversion to a
5478 -- specific fixed-point type (instead the expander handles the case).
5480 -- Set the type of the node to its universal interpretation because
5481 -- legality checks on an exponentiation operand need the context.
5483 elsif (B_Typ = Universal_Integer or else B_Typ = Universal_Real)
5484 and then Present (Universal_Interpretation (L))
5485 and then Present (Universal_Interpretation (R))
5486 then
5487 Set_Etype (N, B_Typ);
5488 Resolve (L, Universal_Interpretation (L));
5489 Resolve (R, Universal_Interpretation (R));
5491 elsif (B_Typ = Universal_Real
5492 or else Etype (N) = Universal_Fixed
5493 or else (Etype (N) = Any_Fixed
5494 and then Is_Fixed_Point_Type (B_Typ))
5495 or else (Is_Fixed_Point_Type (B_Typ)
5496 and then (Is_Integer_Or_Universal (L)
5497 or else
5498 Is_Integer_Or_Universal (R))))
5499 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5500 then
5501 if TL = Universal_Integer or else TR = Universal_Integer then
5502 Check_For_Visible_Operator (N, B_Typ);
5503 end if;
5505 -- If context is a fixed type and one operand is integer, the other
5506 -- is resolved with the type of the context.
5508 if Is_Fixed_Point_Type (B_Typ)
5509 and then (Base_Type (TL) = Base_Type (Standard_Integer)
5510 or else TL = Universal_Integer)
5511 then
5512 Resolve (R, B_Typ);
5513 Resolve (L, TL);
5515 elsif Is_Fixed_Point_Type (B_Typ)
5516 and then (Base_Type (TR) = Base_Type (Standard_Integer)
5517 or else TR = Universal_Integer)
5518 then
5519 Resolve (L, B_Typ);
5520 Resolve (R, TR);
5522 -- If both operands are universal and the context is a floating
5523 -- point type, the operands are resolved to the type of the context.
5525 elsif Is_Floating_Point_Type (B_Typ) then
5526 Resolve (L, B_Typ);
5527 Resolve (R, B_Typ);
5529 else
5530 Set_Mixed_Mode_Operand (L, TR);
5531 Set_Mixed_Mode_Operand (R, TL);
5532 end if;
5534 -- Check the rule in RM05-4.5.5(19.1/2) disallowing universal_fixed
5535 -- multiplying operators from being used when the expected type is
5536 -- also universal_fixed. Note that B_Typ will be Universal_Fixed in
5537 -- some cases where the expected type is actually Any_Real;
5538 -- Expected_Type_Is_Any_Real takes care of that case.
5540 if Etype (N) = Universal_Fixed
5541 or else Etype (N) = Any_Fixed
5542 then
5543 if B_Typ = Universal_Fixed
5544 and then not Expected_Type_Is_Any_Real (N)
5545 and then not Nkind_In (Parent (N), N_Type_Conversion,
5546 N_Unchecked_Type_Conversion)
5547 then
5548 Error_Msg_N ("type cannot be determined from context!", N);
5549 Error_Msg_N ("\explicit conversion to result type required", N);
5551 Set_Etype (L, Any_Type);
5552 Set_Etype (R, Any_Type);
5554 else
5555 if Ada_Version = Ada_83
5556 and then Etype (N) = Universal_Fixed
5557 and then not
5558 Nkind_In (Parent (N), N_Type_Conversion,
5559 N_Unchecked_Type_Conversion)
5560 then
5561 Error_Msg_N
5562 ("(Ada 83) fixed-point operation needs explicit "
5563 & "conversion", N);
5564 end if;
5566 -- The expected type is "any real type" in contexts like
5568 -- type T is delta <universal_fixed-expression> ...
5570 -- in which case we need to set the type to Universal_Real
5571 -- so that static expression evaluation will work properly.
5573 if Expected_Type_Is_Any_Real (N) then
5574 Set_Etype (N, Universal_Real);
5575 else
5576 Set_Etype (N, B_Typ);
5577 end if;
5578 end if;
5580 elsif Is_Fixed_Point_Type (B_Typ)
5581 and then (Is_Integer_Or_Universal (L)
5582 or else Nkind (L) = N_Real_Literal
5583 or else Nkind (R) = N_Real_Literal
5584 or else Is_Integer_Or_Universal (R))
5585 then
5586 Set_Etype (N, B_Typ);
5588 elsif Etype (N) = Any_Fixed then
5590 -- If no previous errors, this is only possible if one operand is
5591 -- overloaded and the context is universal. Resolve as such.
5593 Set_Etype (N, B_Typ);
5594 end if;
5596 else
5597 if (TL = Universal_Integer or else TL = Universal_Real)
5598 and then
5599 (TR = Universal_Integer or else TR = Universal_Real)
5600 then
5601 Check_For_Visible_Operator (N, B_Typ);
5602 end if;
5604 -- If the context is Universal_Fixed and the operands are also
5605 -- universal fixed, this is an error, unless there is only one
5606 -- applicable fixed_point type (usually Duration).
5608 if B_Typ = Universal_Fixed and then Etype (L) = Universal_Fixed then
5609 T := Unique_Fixed_Point_Type (N);
5611 if T = Any_Type then
5612 Set_Etype (N, T);
5613 return;
5614 else
5615 Resolve (L, T);
5616 Resolve (R, T);
5617 end if;
5619 else
5620 Resolve (L, B_Typ);
5621 Resolve (R, B_Typ);
5622 end if;
5624 -- If one of the arguments was resolved to a non-universal type.
5625 -- label the result of the operation itself with the same type.
5626 -- Do the same for the universal argument, if any.
5628 T := Intersect_Types (L, R);
5629 Set_Etype (N, Base_Type (T));
5630 Set_Operand_Type (L);
5631 Set_Operand_Type (R);
5632 end if;
5634 Generate_Operator_Reference (N, Typ);
5635 Analyze_Dimension (N);
5636 Eval_Arithmetic_Op (N);
5638 -- In SPARK, a multiplication or division with operands of fixed point
5639 -- types must be qualified or explicitly converted to identify the
5640 -- result type.
5642 if (Is_Fixed_Point_Type (Etype (L))
5643 or else Is_Fixed_Point_Type (Etype (R)))
5644 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5645 and then
5646 not Nkind_In (Parent (N), N_Qualified_Expression, N_Type_Conversion)
5647 then
5648 Check_SPARK_05_Restriction
5649 ("operation should be qualified or explicitly converted", N);
5650 end if;
5652 -- Set overflow and division checking bit
5654 if Nkind (N) in N_Op then
5655 if not Overflow_Checks_Suppressed (Etype (N)) then
5656 Enable_Overflow_Check (N);
5657 end if;
5659 -- Give warning if explicit division by zero
5661 if Nkind_In (N, N_Op_Divide, N_Op_Rem, N_Op_Mod)
5662 and then not Division_Checks_Suppressed (Etype (N))
5663 then
5664 Rop := Right_Opnd (N);
5666 if Compile_Time_Known_Value (Rop)
5667 and then ((Is_Integer_Type (Etype (Rop))
5668 and then Expr_Value (Rop) = Uint_0)
5669 or else
5670 (Is_Real_Type (Etype (Rop))
5671 and then Expr_Value_R (Rop) = Ureal_0))
5672 then
5673 -- Specialize the warning message according to the operation.
5674 -- When SPARK_Mode is On, force a warning instead of an error
5675 -- in that case, as this likely corresponds to deactivated
5676 -- code. The following warnings are for the case
5678 case Nkind (N) is
5679 when N_Op_Divide =>
5681 -- For division, we have two cases, for float division
5682 -- of an unconstrained float type, on a machine where
5683 -- Machine_Overflows is false, we don't get an exception
5684 -- at run-time, but rather an infinity or Nan. The Nan
5685 -- case is pretty obscure, so just warn about infinities.
5687 if Is_Floating_Point_Type (Typ)
5688 and then not Is_Constrained (Typ)
5689 and then not Machine_Overflows_On_Target
5690 then
5691 Error_Msg_N
5692 ("float division by zero, may generate "
5693 & "'+'/'- infinity??", Right_Opnd (N));
5695 -- For all other cases, we get a Constraint_Error
5697 else
5698 Apply_Compile_Time_Constraint_Error
5699 (N, "division by zero??", CE_Divide_By_Zero,
5700 Loc => Sloc (Right_Opnd (N)),
5701 Warn => SPARK_Mode = On);
5702 end if;
5704 when N_Op_Rem =>
5705 Apply_Compile_Time_Constraint_Error
5706 (N, "rem with zero divisor??", CE_Divide_By_Zero,
5707 Loc => Sloc (Right_Opnd (N)),
5708 Warn => SPARK_Mode = On);
5710 when N_Op_Mod =>
5711 Apply_Compile_Time_Constraint_Error
5712 (N, "mod with zero divisor??", CE_Divide_By_Zero,
5713 Loc => Sloc (Right_Opnd (N)),
5714 Warn => SPARK_Mode = On);
5716 -- Division by zero can only happen with division, rem,
5717 -- and mod operations.
5719 when others =>
5720 raise Program_Error;
5721 end case;
5723 -- In GNATprove mode, we enable the division check so that
5724 -- GNATprove will issue a message if it cannot be proved.
5726 if GNATprove_Mode then
5727 Activate_Division_Check (N);
5728 end if;
5730 -- Otherwise just set the flag to check at run time
5732 else
5733 Activate_Division_Check (N);
5734 end if;
5735 end if;
5737 -- If Restriction No_Implicit_Conditionals is active, then it is
5738 -- violated if either operand can be negative for mod, or for rem
5739 -- if both operands can be negative.
5741 if Restriction_Check_Required (No_Implicit_Conditionals)
5742 and then Nkind_In (N, N_Op_Rem, N_Op_Mod)
5743 then
5744 declare
5745 Lo : Uint;
5746 Hi : Uint;
5747 OK : Boolean;
5749 LNeg : Boolean;
5750 RNeg : Boolean;
5751 -- Set if corresponding operand might be negative
5753 begin
5754 Determine_Range
5755 (Left_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5756 LNeg := (not OK) or else Lo < 0;
5758 Determine_Range
5759 (Right_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5760 RNeg := (not OK) or else Lo < 0;
5762 -- Check if we will be generating conditionals. There are two
5763 -- cases where that can happen, first for REM, the only case
5764 -- is largest negative integer mod -1, where the division can
5765 -- overflow, but we still have to give the right result. The
5766 -- front end generates a test for this annoying case. Here we
5767 -- just test if both operands can be negative (that's what the
5768 -- expander does, so we match its logic here).
5770 -- The second case is mod where either operand can be negative.
5771 -- In this case, the back end has to generate additional tests.
5773 if (Nkind (N) = N_Op_Rem and then (LNeg and RNeg))
5774 or else
5775 (Nkind (N) = N_Op_Mod and then (LNeg or RNeg))
5776 then
5777 Check_Restriction (No_Implicit_Conditionals, N);
5778 end if;
5779 end;
5780 end if;
5781 end if;
5783 Check_Unset_Reference (L);
5784 Check_Unset_Reference (R);
5785 end Resolve_Arithmetic_Op;
5787 ------------------
5788 -- Resolve_Call --
5789 ------------------
5791 procedure Resolve_Call (N : Node_Id; Typ : Entity_Id) is
5792 function Same_Or_Aliased_Subprograms
5793 (S : Entity_Id;
5794 E : Entity_Id) return Boolean;
5795 -- Returns True if the subprogram entity S is the same as E or else
5796 -- S is an alias of E.
5798 ---------------------------------
5799 -- Same_Or_Aliased_Subprograms --
5800 ---------------------------------
5802 function Same_Or_Aliased_Subprograms
5803 (S : Entity_Id;
5804 E : Entity_Id) return Boolean
5806 Subp_Alias : constant Entity_Id := Alias (S);
5807 begin
5808 return S = E or else (Present (Subp_Alias) and then Subp_Alias = E);
5809 end Same_Or_Aliased_Subprograms;
5811 -- Local variables
5813 Loc : constant Source_Ptr := Sloc (N);
5814 Subp : constant Node_Id := Name (N);
5815 Body_Id : Entity_Id;
5816 I : Interp_Index;
5817 It : Interp;
5818 Nam : Entity_Id;
5819 Nam_Decl : Node_Id;
5820 Nam_UA : Entity_Id;
5821 Norm_OK : Boolean;
5822 Rtype : Entity_Id;
5823 Scop : Entity_Id;
5825 -- Start of processing for Resolve_Call
5827 begin
5828 -- Preserve relevant elaboration-related attributes of the context which
5829 -- are no longer available or very expensive to recompute once analysis,
5830 -- resolution, and expansion are over.
5832 Mark_Elaboration_Attributes
5833 (N_Id => N,
5834 Checks => True,
5835 Modes => True);
5837 -- The context imposes a unique interpretation with type Typ on a
5838 -- procedure or function call. Find the entity of the subprogram that
5839 -- yields the expected type, and propagate the corresponding formal
5840 -- constraints on the actuals. The caller has established that an
5841 -- interpretation exists, and emitted an error if not unique.
5843 -- First deal with the case of a call to an access-to-subprogram,
5844 -- dereference made explicit in Analyze_Call.
5846 if Ekind (Etype (Subp)) = E_Subprogram_Type then
5847 if not Is_Overloaded (Subp) then
5848 Nam := Etype (Subp);
5850 else
5851 -- Find the interpretation whose type (a subprogram type) has a
5852 -- return type that is compatible with the context. Analysis of
5853 -- the node has established that one exists.
5855 Nam := Empty;
5857 Get_First_Interp (Subp, I, It);
5858 while Present (It.Typ) loop
5859 if Covers (Typ, Etype (It.Typ)) then
5860 Nam := It.Typ;
5861 exit;
5862 end if;
5864 Get_Next_Interp (I, It);
5865 end loop;
5867 if No (Nam) then
5868 raise Program_Error;
5869 end if;
5870 end if;
5872 -- If the prefix is not an entity, then resolve it
5874 if not Is_Entity_Name (Subp) then
5875 Resolve (Subp, Nam);
5876 end if;
5878 -- For an indirect call, we always invalidate checks, since we do not
5879 -- know whether the subprogram is local or global. Yes we could do
5880 -- better here, e.g. by knowing that there are no local subprograms,
5881 -- but it does not seem worth the effort. Similarly, we kill all
5882 -- knowledge of current constant values.
5884 Kill_Current_Values;
5886 -- If this is a procedure call which is really an entry call, do
5887 -- the conversion of the procedure call to an entry call. Protected
5888 -- operations use the same circuitry because the name in the call
5889 -- can be an arbitrary expression with special resolution rules.
5891 elsif Nkind_In (Subp, N_Selected_Component, N_Indexed_Component)
5892 or else (Is_Entity_Name (Subp)
5893 and then Ekind_In (Entity (Subp), E_Entry, E_Entry_Family))
5894 then
5895 Resolve_Entry_Call (N, Typ);
5897 -- Annotate the tree by creating a call marker in case the original
5898 -- call is transformed by expansion. The call marker is automatically
5899 -- saved for later examination by the ABE Processing phase.
5901 Build_Call_Marker (N);
5903 -- Kill checks and constant values, as above for indirect case
5904 -- Who knows what happens when another task is activated?
5906 Kill_Current_Values;
5907 return;
5909 -- Normal subprogram call with name established in Resolve
5911 elsif not (Is_Type (Entity (Subp))) then
5912 Nam := Entity (Subp);
5913 Set_Entity_With_Checks (Subp, Nam);
5915 -- Otherwise we must have the case of an overloaded call
5917 else
5918 pragma Assert (Is_Overloaded (Subp));
5920 -- Initialize Nam to prevent warning (we know it will be assigned
5921 -- in the loop below, but the compiler does not know that).
5923 Nam := Empty;
5925 Get_First_Interp (Subp, I, It);
5926 while Present (It.Typ) loop
5927 if Covers (Typ, It.Typ) then
5928 Nam := It.Nam;
5929 Set_Entity_With_Checks (Subp, Nam);
5930 exit;
5931 end if;
5933 Get_Next_Interp (I, It);
5934 end loop;
5935 end if;
5937 if Is_Access_Subprogram_Type (Base_Type (Etype (Nam)))
5938 and then not Is_Access_Subprogram_Type (Base_Type (Typ))
5939 and then Nkind (Subp) /= N_Explicit_Dereference
5940 and then Present (Parameter_Associations (N))
5941 then
5942 -- The prefix is a parameterless function call that returns an access
5943 -- to subprogram. If parameters are present in the current call, add
5944 -- add an explicit dereference. We use the base type here because
5945 -- within an instance these may be subtypes.
5947 -- The dereference is added either in Analyze_Call or here. Should
5948 -- be consolidated ???
5950 Set_Is_Overloaded (Subp, False);
5951 Set_Etype (Subp, Etype (Nam));
5952 Insert_Explicit_Dereference (Subp);
5953 Nam := Designated_Type (Etype (Nam));
5954 Resolve (Subp, Nam);
5955 end if;
5957 -- Check that a call to Current_Task does not occur in an entry body
5959 if Is_RTE (Nam, RE_Current_Task) then
5960 declare
5961 P : Node_Id;
5963 begin
5964 P := N;
5965 loop
5966 P := Parent (P);
5968 -- Exclude calls that occur within the default of a formal
5969 -- parameter of the entry, since those are evaluated outside
5970 -- of the body.
5972 exit when No (P) or else Nkind (P) = N_Parameter_Specification;
5974 if Nkind (P) = N_Entry_Body
5975 or else (Nkind (P) = N_Subprogram_Body
5976 and then Is_Entry_Barrier_Function (P))
5977 then
5978 Rtype := Etype (N);
5979 Error_Msg_Warn := SPARK_Mode /= On;
5980 Error_Msg_NE
5981 ("& should not be used in entry body (RM C.7(17))<<",
5982 N, Nam);
5983 Error_Msg_NE ("\Program_Error [<<", N, Nam);
5984 Rewrite (N,
5985 Make_Raise_Program_Error (Loc,
5986 Reason => PE_Current_Task_In_Entry_Body));
5987 Set_Etype (N, Rtype);
5988 return;
5989 end if;
5990 end loop;
5991 end;
5992 end if;
5994 -- Check that a procedure call does not occur in the context of the
5995 -- entry call statement of a conditional or timed entry call. Note that
5996 -- the case of a call to a subprogram renaming of an entry will also be
5997 -- rejected. The test for N not being an N_Entry_Call_Statement is
5998 -- defensive, covering the possibility that the processing of entry
5999 -- calls might reach this point due to later modifications of the code
6000 -- above.
6002 if Nkind (Parent (N)) = N_Entry_Call_Alternative
6003 and then Nkind (N) /= N_Entry_Call_Statement
6004 and then Entry_Call_Statement (Parent (N)) = N
6005 then
6006 if Ada_Version < Ada_2005 then
6007 Error_Msg_N ("entry call required in select statement", N);
6009 -- Ada 2005 (AI-345): If a procedure_call_statement is used
6010 -- for a procedure_or_entry_call, the procedure_name or
6011 -- procedure_prefix of the procedure_call_statement shall denote
6012 -- an entry renamed by a procedure, or (a view of) a primitive
6013 -- subprogram of a limited interface whose first parameter is
6014 -- a controlling parameter.
6016 elsif Nkind (N) = N_Procedure_Call_Statement
6017 and then not Is_Renamed_Entry (Nam)
6018 and then not Is_Controlling_Limited_Procedure (Nam)
6019 then
6020 Error_Msg_N
6021 ("entry call or dispatching primitive of interface required", N);
6022 end if;
6023 end if;
6025 -- If the SPARK_05 restriction is active, we are not allowed
6026 -- to have a call to a subprogram before we see its completion.
6028 if not Has_Completion (Nam)
6029 and then Restriction_Check_Required (SPARK_05)
6031 -- Don't flag strange internal calls
6033 and then Comes_From_Source (N)
6034 and then Comes_From_Source (Nam)
6036 -- Only flag calls in extended main source
6038 and then In_Extended_Main_Source_Unit (Nam)
6039 and then In_Extended_Main_Source_Unit (N)
6041 -- Exclude enumeration literals from this processing
6043 and then Ekind (Nam) /= E_Enumeration_Literal
6044 then
6045 Check_SPARK_05_Restriction
6046 ("call to subprogram cannot appear before its body", N);
6047 end if;
6049 -- Check that this is not a call to a protected procedure or entry from
6050 -- within a protected function.
6052 Check_Internal_Protected_Use (N, Nam);
6054 -- Freeze the subprogram name if not in a spec-expression. Note that
6055 -- we freeze procedure calls as well as function calls. Procedure calls
6056 -- are not frozen according to the rules (RM 13.14(14)) because it is
6057 -- impossible to have a procedure call to a non-frozen procedure in
6058 -- pure Ada, but in the code that we generate in the expander, this
6059 -- rule needs extending because we can generate procedure calls that
6060 -- need freezing.
6062 -- In Ada 2012, expression functions may be called within pre/post
6063 -- conditions of subsequent functions or expression functions. Such
6064 -- calls do not freeze when they appear within generated bodies,
6065 -- (including the body of another expression function) which would
6066 -- place the freeze node in the wrong scope. An expression function
6067 -- is frozen in the usual fashion, by the appearance of a real body,
6068 -- or at the end of a declarative part.
6070 if Is_Entity_Name (Subp)
6071 and then not In_Spec_Expression
6072 and then not Is_Expression_Function_Or_Completion (Current_Scope)
6073 and then
6074 (not Is_Expression_Function_Or_Completion (Entity (Subp))
6075 or else Scope (Entity (Subp)) = Current_Scope)
6076 then
6077 Freeze_Expression (Subp);
6078 end if;
6080 -- For a predefined operator, the type of the result is the type imposed
6081 -- by context, except for a predefined operation on universal fixed.
6082 -- Otherwise The type of the call is the type returned by the subprogram
6083 -- being called.
6085 if Is_Predefined_Op (Nam) then
6086 if Etype (N) /= Universal_Fixed then
6087 Set_Etype (N, Typ);
6088 end if;
6090 -- If the subprogram returns an array type, and the context requires the
6091 -- component type of that array type, the node is really an indexing of
6092 -- the parameterless call. Resolve as such. A pathological case occurs
6093 -- when the type of the component is an access to the array type. In
6094 -- this case the call is truly ambiguous. If the call is to an intrinsic
6095 -- subprogram, it can't be an indexed component. This check is necessary
6096 -- because if it's Unchecked_Conversion, and we have "type T_Ptr is
6097 -- access T;" and "type T is array (...) of T_Ptr;" (i.e. an array of
6098 -- pointers to the same array), the compiler gets confused and does an
6099 -- infinite recursion.
6101 elsif (Needs_No_Actuals (Nam) or else Needs_One_Actual (Nam))
6102 and then
6103 ((Is_Array_Type (Etype (Nam))
6104 and then Covers (Typ, Component_Type (Etype (Nam))))
6105 or else
6106 (Is_Access_Type (Etype (Nam))
6107 and then Is_Array_Type (Designated_Type (Etype (Nam)))
6108 and then
6109 Covers (Typ, Component_Type (Designated_Type (Etype (Nam))))
6110 and then not Is_Intrinsic_Subprogram (Entity (Subp))))
6111 then
6112 declare
6113 Index_Node : Node_Id;
6114 New_Subp : Node_Id;
6115 Ret_Type : constant Entity_Id := Etype (Nam);
6117 begin
6118 if Is_Access_Type (Ret_Type)
6119 and then Ret_Type = Component_Type (Designated_Type (Ret_Type))
6120 then
6121 Error_Msg_N
6122 ("cannot disambiguate function call and indexing", N);
6123 else
6124 New_Subp := Relocate_Node (Subp);
6126 -- The called entity may be an explicit dereference, in which
6127 -- case there is no entity to set.
6129 if Nkind (New_Subp) /= N_Explicit_Dereference then
6130 Set_Entity (Subp, Nam);
6131 end if;
6133 if (Is_Array_Type (Ret_Type)
6134 and then Component_Type (Ret_Type) /= Any_Type)
6135 or else
6136 (Is_Access_Type (Ret_Type)
6137 and then
6138 Component_Type (Designated_Type (Ret_Type)) /= Any_Type)
6139 then
6140 if Needs_No_Actuals (Nam) then
6142 -- Indexed call to a parameterless function
6144 Index_Node :=
6145 Make_Indexed_Component (Loc,
6146 Prefix =>
6147 Make_Function_Call (Loc, Name => New_Subp),
6148 Expressions => Parameter_Associations (N));
6149 else
6150 -- An Ada 2005 prefixed call to a primitive operation
6151 -- whose first parameter is the prefix. This prefix was
6152 -- prepended to the parameter list, which is actually a
6153 -- list of indexes. Remove the prefix in order to build
6154 -- the proper indexed component.
6156 Index_Node :=
6157 Make_Indexed_Component (Loc,
6158 Prefix =>
6159 Make_Function_Call (Loc,
6160 Name => New_Subp,
6161 Parameter_Associations =>
6162 New_List
6163 (Remove_Head (Parameter_Associations (N)))),
6164 Expressions => Parameter_Associations (N));
6165 end if;
6167 -- Preserve the parenthesis count of the node
6169 Set_Paren_Count (Index_Node, Paren_Count (N));
6171 -- Since we are correcting a node classification error made
6172 -- by the parser, we call Replace rather than Rewrite.
6174 Replace (N, Index_Node);
6176 Set_Etype (Prefix (N), Ret_Type);
6177 Set_Etype (N, Typ);
6178 Resolve_Indexed_Component (N, Typ);
6180 -- Annotate the tree by creating a call marker in case
6181 -- the original call is transformed by expansion. The call
6182 -- marker is automatically saved for later examination by
6183 -- the ABE Processing phase.
6185 Build_Call_Marker (Prefix (N));
6186 end if;
6187 end if;
6189 return;
6190 end;
6192 else
6193 -- If the called function is not declared in the main unit and it
6194 -- returns the limited view of type then use the available view (as
6195 -- is done in Try_Object_Operation) to prevent back-end confusion;
6196 -- for the function entity itself. The call must appear in a context
6197 -- where the nonlimited view is available. If the function entity is
6198 -- in the extended main unit then no action is needed, because the
6199 -- back end handles this case. In either case the type of the call
6200 -- is the nonlimited view.
6202 if From_Limited_With (Etype (Nam))
6203 and then Present (Available_View (Etype (Nam)))
6204 then
6205 Set_Etype (N, Available_View (Etype (Nam)));
6207 if not In_Extended_Main_Code_Unit (Nam) then
6208 Set_Etype (Nam, Available_View (Etype (Nam)));
6209 end if;
6211 else
6212 Set_Etype (N, Etype (Nam));
6213 end if;
6214 end if;
6216 -- In the case where the call is to an overloaded subprogram, Analyze
6217 -- calls Normalize_Actuals once per overloaded subprogram. Therefore in
6218 -- such a case Normalize_Actuals needs to be called once more to order
6219 -- the actuals correctly. Otherwise the call will have the ordering
6220 -- given by the last overloaded subprogram whether this is the correct
6221 -- one being called or not.
6223 if Is_Overloaded (Subp) then
6224 Normalize_Actuals (N, Nam, False, Norm_OK);
6225 pragma Assert (Norm_OK);
6226 end if;
6228 -- In any case, call is fully resolved now. Reset Overload flag, to
6229 -- prevent subsequent overload resolution if node is analyzed again
6231 Set_Is_Overloaded (Subp, False);
6232 Set_Is_Overloaded (N, False);
6234 -- A Ghost entity must appear in a specific context
6236 if Is_Ghost_Entity (Nam) and then Comes_From_Source (N) then
6237 Check_Ghost_Context (Nam, N);
6238 end if;
6240 -- If we are calling the current subprogram from immediately within its
6241 -- body, then that is the case where we can sometimes detect cases of
6242 -- infinite recursion statically. Do not try this in case restriction
6243 -- No_Recursion is in effect anyway, and do it only for source calls.
6245 if Comes_From_Source (N) then
6246 Scop := Current_Scope;
6248 -- Check violation of SPARK_05 restriction which does not permit
6249 -- a subprogram body to contain a call to the subprogram directly.
6251 if Restriction_Check_Required (SPARK_05)
6252 and then Same_Or_Aliased_Subprograms (Nam, Scop)
6253 then
6254 Check_SPARK_05_Restriction
6255 ("subprogram may not contain direct call to itself", N);
6256 end if;
6258 -- Issue warning for possible infinite recursion in the absence
6259 -- of the No_Recursion restriction.
6261 if Same_Or_Aliased_Subprograms (Nam, Scop)
6262 and then not Restriction_Active (No_Recursion)
6263 and then Check_Infinite_Recursion (N)
6264 then
6265 -- Here we detected and flagged an infinite recursion, so we do
6266 -- not need to test the case below for further warnings. Also we
6267 -- are all done if we now have a raise SE node.
6269 if Nkind (N) = N_Raise_Storage_Error then
6270 return;
6271 end if;
6273 -- If call is to immediately containing subprogram, then check for
6274 -- the case of a possible run-time detectable infinite recursion.
6276 else
6277 Scope_Loop : while Scop /= Standard_Standard loop
6278 if Same_Or_Aliased_Subprograms (Nam, Scop) then
6280 -- Although in general case, recursion is not statically
6281 -- checkable, the case of calling an immediately containing
6282 -- subprogram is easy to catch.
6284 Check_Restriction (No_Recursion, N);
6286 -- If the recursive call is to a parameterless subprogram,
6287 -- then even if we can't statically detect infinite
6288 -- recursion, this is pretty suspicious, and we output a
6289 -- warning. Furthermore, we will try later to detect some
6290 -- cases here at run time by expanding checking code (see
6291 -- Detect_Infinite_Recursion in package Exp_Ch6).
6293 -- If the recursive call is within a handler, do not emit a
6294 -- warning, because this is a common idiom: loop until input
6295 -- is correct, catch illegal input in handler and restart.
6297 if No (First_Formal (Nam))
6298 and then Etype (Nam) = Standard_Void_Type
6299 and then not Error_Posted (N)
6300 and then Nkind (Parent (N)) /= N_Exception_Handler
6301 then
6302 -- For the case of a procedure call. We give the message
6303 -- only if the call is the first statement in a sequence
6304 -- of statements, or if all previous statements are
6305 -- simple assignments. This is simply a heuristic to
6306 -- decrease false positives, without losing too many good
6307 -- warnings. The idea is that these previous statements
6308 -- may affect global variables the procedure depends on.
6309 -- We also exclude raise statements, that may arise from
6310 -- constraint checks and are probably unrelated to the
6311 -- intended control flow.
6313 if Nkind (N) = N_Procedure_Call_Statement
6314 and then Is_List_Member (N)
6315 then
6316 declare
6317 P : Node_Id;
6318 begin
6319 P := Prev (N);
6320 while Present (P) loop
6321 if not Nkind_In (P, N_Assignment_Statement,
6322 N_Raise_Constraint_Error)
6323 then
6324 exit Scope_Loop;
6325 end if;
6327 Prev (P);
6328 end loop;
6329 end;
6330 end if;
6332 -- Do not give warning if we are in a conditional context
6334 declare
6335 K : constant Node_Kind := Nkind (Parent (N));
6336 begin
6337 if (K = N_Loop_Statement
6338 and then Present (Iteration_Scheme (Parent (N))))
6339 or else K = N_If_Statement
6340 or else K = N_Elsif_Part
6341 or else K = N_Case_Statement_Alternative
6342 then
6343 exit Scope_Loop;
6344 end if;
6345 end;
6347 -- Here warning is to be issued
6349 Set_Has_Recursive_Call (Nam);
6350 Error_Msg_Warn := SPARK_Mode /= On;
6351 Error_Msg_N ("possible infinite recursion<<!", N);
6352 Error_Msg_N ("\Storage_Error ]<<!", N);
6353 end if;
6355 exit Scope_Loop;
6356 end if;
6358 Scop := Scope (Scop);
6359 end loop Scope_Loop;
6360 end if;
6361 end if;
6363 -- Check obsolescent reference to Ada.Characters.Handling subprogram
6365 Check_Obsolescent_2005_Entity (Nam, Subp);
6367 -- If subprogram name is a predefined operator, it was given in
6368 -- functional notation. Replace call node with operator node, so
6369 -- that actuals can be resolved appropriately.
6371 if Is_Predefined_Op (Nam) or else Ekind (Nam) = E_Operator then
6372 Make_Call_Into_Operator (N, Typ, Entity (Name (N)));
6373 return;
6375 elsif Present (Alias (Nam))
6376 and then Is_Predefined_Op (Alias (Nam))
6377 then
6378 Resolve_Actuals (N, Nam);
6379 Make_Call_Into_Operator (N, Typ, Alias (Nam));
6380 return;
6381 end if;
6383 -- Create a transient scope if the resulting type requires it
6385 -- There are several notable exceptions:
6387 -- a) In init procs, the transient scope overhead is not needed, and is
6388 -- even incorrect when the call is a nested initialization call for a
6389 -- component whose expansion may generate adjust calls. However, if the
6390 -- call is some other procedure call within an initialization procedure
6391 -- (for example a call to Create_Task in the init_proc of the task
6392 -- run-time record) a transient scope must be created around this call.
6394 -- b) Enumeration literal pseudo-calls need no transient scope
6396 -- c) Intrinsic subprograms (Unchecked_Conversion and source info
6397 -- functions) do not use the secondary stack even though the return
6398 -- type may be unconstrained.
6400 -- d) Calls to a build-in-place function, since such functions may
6401 -- allocate their result directly in a target object, and cases where
6402 -- the result does get allocated in the secondary stack are checked for
6403 -- within the specialized Exp_Ch6 procedures for expanding those
6404 -- build-in-place calls.
6406 -- e) Calls to inlinable expression functions do not use the secondary
6407 -- stack (since the call will be replaced by its returned object).
6409 -- f) If the subprogram is marked Inline_Always, then even if it returns
6410 -- an unconstrained type the call does not require use of the secondary
6411 -- stack. However, inlining will only take place if the body to inline
6412 -- is already present. It may not be available if e.g. the subprogram is
6413 -- declared in a child instance.
6415 -- If this is an initialization call for a type whose construction
6416 -- uses the secondary stack, and it is not a nested call to initialize
6417 -- a component, we do need to create a transient scope for it. We
6418 -- check for this by traversing the type in Check_Initialization_Call.
6420 if Is_Inlined (Nam)
6421 and then Has_Pragma_Inline (Nam)
6422 and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
6423 and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
6424 then
6425 null;
6427 elsif Ekind (Nam) = E_Enumeration_Literal
6428 or else Is_Build_In_Place_Function (Nam)
6429 or else Is_Intrinsic_Subprogram (Nam)
6430 or else Is_Inlinable_Expression_Function (Nam)
6431 then
6432 null;
6434 elsif Expander_Active
6435 and then Is_Type (Etype (Nam))
6436 and then Requires_Transient_Scope (Etype (Nam))
6437 and then
6438 (not Within_Init_Proc
6439 or else
6440 (not Is_Init_Proc (Nam) and then Ekind (Nam) /= E_Function))
6441 then
6442 Establish_Transient_Scope (N, Sec_Stack => True);
6444 -- If the call appears within the bounds of a loop, it will
6445 -- be rewritten and reanalyzed, nothing left to do here.
6447 if Nkind (N) /= N_Function_Call then
6448 return;
6449 end if;
6451 elsif Is_Init_Proc (Nam)
6452 and then not Within_Init_Proc
6453 then
6454 Check_Initialization_Call (N, Nam);
6455 end if;
6457 -- A protected function cannot be called within the definition of the
6458 -- enclosing protected type, unless it is part of a pre/postcondition
6459 -- on another protected operation. This may appear in the entry wrapper
6460 -- created for an entry with preconditions.
6462 if Is_Protected_Type (Scope (Nam))
6463 and then In_Open_Scopes (Scope (Nam))
6464 and then not Has_Completion (Scope (Nam))
6465 and then not In_Spec_Expression
6466 and then not Is_Entry_Wrapper (Current_Scope)
6467 then
6468 Error_Msg_NE
6469 ("& cannot be called before end of protected definition", N, Nam);
6470 end if;
6472 -- Propagate interpretation to actuals, and add default expressions
6473 -- where needed.
6475 if Present (First_Formal (Nam)) then
6476 Resolve_Actuals (N, Nam);
6478 -- Overloaded literals are rewritten as function calls, for purpose of
6479 -- resolution. After resolution, we can replace the call with the
6480 -- literal itself.
6482 elsif Ekind (Nam) = E_Enumeration_Literal then
6483 Copy_Node (Subp, N);
6484 Resolve_Entity_Name (N, Typ);
6486 -- Avoid validation, since it is a static function call
6488 Generate_Reference (Nam, Subp);
6489 return;
6490 end if;
6492 -- If the subprogram is not global, then kill all saved values and
6493 -- checks. This is a bit conservative, since in many cases we could do
6494 -- better, but it is not worth the effort. Similarly, we kill constant
6495 -- values. However we do not need to do this for internal entities
6496 -- (unless they are inherited user-defined subprograms), since they
6497 -- are not in the business of molesting local values.
6499 -- If the flag Suppress_Value_Tracking_On_Calls is set, then we also
6500 -- kill all checks and values for calls to global subprograms. This
6501 -- takes care of the case where an access to a local subprogram is
6502 -- taken, and could be passed directly or indirectly and then called
6503 -- from almost any context.
6505 -- Note: we do not do this step till after resolving the actuals. That
6506 -- way we still take advantage of the current value information while
6507 -- scanning the actuals.
6509 -- We suppress killing values if we are processing the nodes associated
6510 -- with N_Freeze_Entity nodes. Otherwise the declaration of a tagged
6511 -- type kills all the values as part of analyzing the code that
6512 -- initializes the dispatch tables.
6514 if Inside_Freezing_Actions = 0
6515 and then (not Is_Library_Level_Entity (Nam)
6516 or else Suppress_Value_Tracking_On_Call
6517 (Nearest_Dynamic_Scope (Current_Scope)))
6518 and then (Comes_From_Source (Nam)
6519 or else (Present (Alias (Nam))
6520 and then Comes_From_Source (Alias (Nam))))
6521 then
6522 Kill_Current_Values;
6523 end if;
6525 -- If we are warning about unread OUT parameters, this is the place to
6526 -- set Last_Assignment for OUT and IN OUT parameters. We have to do this
6527 -- after the above call to Kill_Current_Values (since that call clears
6528 -- the Last_Assignment field of all local variables).
6530 if (Warn_On_Modified_Unread or Warn_On_All_Unread_Out_Parameters)
6531 and then Comes_From_Source (N)
6532 and then In_Extended_Main_Source_Unit (N)
6533 then
6534 declare
6535 F : Entity_Id;
6536 A : Node_Id;
6538 begin
6539 F := First_Formal (Nam);
6540 A := First_Actual (N);
6541 while Present (F) and then Present (A) loop
6542 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
6543 and then Warn_On_Modified_As_Out_Parameter (F)
6544 and then Is_Entity_Name (A)
6545 and then Present (Entity (A))
6546 and then Comes_From_Source (N)
6547 and then Safe_To_Capture_Value (N, Entity (A))
6548 then
6549 Set_Last_Assignment (Entity (A), A);
6550 end if;
6552 Next_Formal (F);
6553 Next_Actual (A);
6554 end loop;
6555 end;
6556 end if;
6558 -- If the subprogram is a primitive operation, check whether or not
6559 -- it is a correct dispatching call.
6561 if Is_Overloadable (Nam)
6562 and then Is_Dispatching_Operation (Nam)
6563 then
6564 Check_Dispatching_Call (N);
6566 elsif Ekind (Nam) /= E_Subprogram_Type
6567 and then Is_Abstract_Subprogram (Nam)
6568 and then not In_Instance
6569 then
6570 Error_Msg_NE ("cannot call abstract subprogram &!", N, Nam);
6571 end if;
6573 -- If this is a dispatching call, generate the appropriate reference,
6574 -- for better source navigation in GPS.
6576 if Is_Overloadable (Nam)
6577 and then Present (Controlling_Argument (N))
6578 then
6579 Generate_Reference (Nam, Subp, 'R');
6581 -- Normal case, not a dispatching call: generate a call reference
6583 else
6584 Generate_Reference (Nam, Subp, 's');
6585 end if;
6587 if Is_Intrinsic_Subprogram (Nam) then
6588 Check_Intrinsic_Call (N);
6589 end if;
6591 -- Check for violation of restriction No_Specific_Termination_Handlers
6592 -- and warn on a potentially blocking call to Abort_Task.
6594 if Restriction_Check_Required (No_Specific_Termination_Handlers)
6595 and then (Is_RTE (Nam, RE_Set_Specific_Handler)
6596 or else
6597 Is_RTE (Nam, RE_Specific_Handler))
6598 then
6599 Check_Restriction (No_Specific_Termination_Handlers, N);
6601 elsif Is_RTE (Nam, RE_Abort_Task) then
6602 Check_Potentially_Blocking_Operation (N);
6603 end if;
6605 -- A call to Ada.Real_Time.Timing_Events.Set_Handler to set a relative
6606 -- timing event violates restriction No_Relative_Delay (AI-0211). We
6607 -- need to check the second argument to determine whether it is an
6608 -- absolute or relative timing event.
6610 if Restriction_Check_Required (No_Relative_Delay)
6611 and then Is_RTE (Nam, RE_Set_Handler)
6612 and then Is_RTE (Etype (Next_Actual (First_Actual (N))), RE_Time_Span)
6613 then
6614 Check_Restriction (No_Relative_Delay, N);
6615 end if;
6617 -- Issue an error for a call to an eliminated subprogram. This routine
6618 -- will not perform the check if the call appears within a default
6619 -- expression.
6621 Check_For_Eliminated_Subprogram (Subp, Nam);
6623 -- In formal mode, the primitive operations of a tagged type or type
6624 -- extension do not include functions that return the tagged type.
6626 if Nkind (N) = N_Function_Call
6627 and then Is_Tagged_Type (Etype (N))
6628 and then Is_Entity_Name (Name (N))
6629 and then Is_Inherited_Operation_For_Type (Entity (Name (N)), Etype (N))
6630 then
6631 Check_SPARK_05_Restriction ("function not inherited", N);
6632 end if;
6634 -- Implement rule in 12.5.1 (23.3/2): In an instance, if the actual is
6635 -- class-wide and the call dispatches on result in a context that does
6636 -- not provide a tag, the call raises Program_Error.
6638 if Nkind (N) = N_Function_Call
6639 and then In_Instance
6640 and then Is_Generic_Actual_Type (Typ)
6641 and then Is_Class_Wide_Type (Typ)
6642 and then Has_Controlling_Result (Nam)
6643 and then Nkind (Parent (N)) = N_Object_Declaration
6644 then
6645 -- Verify that none of the formals are controlling
6647 declare
6648 Call_OK : Boolean := False;
6649 F : Entity_Id;
6651 begin
6652 F := First_Formal (Nam);
6653 while Present (F) loop
6654 if Is_Controlling_Formal (F) then
6655 Call_OK := True;
6656 exit;
6657 end if;
6659 Next_Formal (F);
6660 end loop;
6662 if not Call_OK then
6663 Error_Msg_Warn := SPARK_Mode /= On;
6664 Error_Msg_N ("!cannot determine tag of result<<", N);
6665 Error_Msg_N ("\Program_Error [<<!", N);
6666 Insert_Action (N,
6667 Make_Raise_Program_Error (Sloc (N),
6668 Reason => PE_Explicit_Raise));
6669 end if;
6670 end;
6671 end if;
6673 -- Check for calling a function with OUT or IN OUT parameter when the
6674 -- calling context (us right now) is not Ada 2012, so does not allow
6675 -- OUT or IN OUT parameters in function calls. Functions declared in
6676 -- a predefined unit are OK, as they may be called indirectly from a
6677 -- user-declared instantiation.
6679 if Ada_Version < Ada_2012
6680 and then Ekind (Nam) = E_Function
6681 and then Has_Out_Or_In_Out_Parameter (Nam)
6682 and then not In_Predefined_Unit (Nam)
6683 then
6684 Error_Msg_NE ("& has at least one OUT or `IN OUT` parameter", N, Nam);
6685 Error_Msg_N ("\call to this function only allowed in Ada 2012", N);
6686 end if;
6688 -- Check the dimensions of the actuals in the call. For function calls,
6689 -- propagate the dimensions from the returned type to N.
6691 Analyze_Dimension_Call (N, Nam);
6693 -- All done, evaluate call and deal with elaboration issues
6695 Eval_Call (N);
6697 -- Annotate the tree by creating a call marker in case the original call
6698 -- is transformed by expansion. The call marker is automatically saved
6699 -- for later examination by the ABE Processing phase.
6701 Build_Call_Marker (N);
6703 -- In GNATprove mode, expansion is disabled, but we want to inline some
6704 -- subprograms to facilitate formal verification. Indirect calls through
6705 -- a subprogram type or within a generic cannot be inlined. Inlining is
6706 -- performed only for calls subject to SPARK_Mode on.
6708 if GNATprove_Mode
6709 and then SPARK_Mode = On
6710 and then Is_Overloadable (Nam)
6711 and then not Inside_A_Generic
6712 then
6713 Nam_UA := Ultimate_Alias (Nam);
6714 Nam_Decl := Unit_Declaration_Node (Nam_UA);
6716 if Nkind (Nam_Decl) = N_Subprogram_Declaration then
6717 Body_Id := Corresponding_Body (Nam_Decl);
6719 -- Nothing to do if the subprogram is not eligible for inlining in
6720 -- GNATprove mode, or inlining is disabled with switch -gnatdm
6722 if not Is_Inlined_Always (Nam_UA)
6723 or else not Can_Be_Inlined_In_GNATprove_Mode (Nam_UA, Body_Id)
6724 or else Debug_Flag_M
6725 then
6726 null;
6728 -- Calls cannot be inlined inside assertions, as GNATprove treats
6729 -- assertions as logic expressions. Only issue a message when the
6730 -- body has been seen, otherwise this leads to spurious messages
6731 -- on expression functions.
6733 elsif In_Assertion_Expr /= 0 then
6734 if Present (Body_Id) then
6735 Cannot_Inline
6736 ("cannot inline & (in assertion expression)?", N, Nam_UA);
6737 end if;
6739 -- Calls cannot be inlined inside default expressions
6741 elsif In_Default_Expr then
6742 Cannot_Inline
6743 ("cannot inline & (in default expression)?", N, Nam_UA);
6745 -- Inlining should not be performed during pre-analysis
6747 elsif Full_Analysis then
6749 -- Do not inline calls inside expression functions, as this
6750 -- would prevent interpreting them as logical formulas in
6751 -- GNATprove. Only issue a message when the body has been seen,
6752 -- otherwise this leads to spurious messages on callees that
6753 -- are themselves expression functions.
6755 if Present (Current_Subprogram)
6756 and then Is_Expression_Function_Or_Completion
6757 (Current_Subprogram)
6758 then
6759 if Present (Body_Id)
6760 and then Present (Body_To_Inline (Nam_Decl))
6761 then
6762 Cannot_Inline
6763 ("cannot inline & (inside expression function)?",
6764 N, Nam_UA);
6765 end if;
6767 -- With the one-pass inlining technique, a call cannot be
6768 -- inlined if the corresponding body has not been seen yet.
6770 elsif No (Body_Id) then
6771 Cannot_Inline
6772 ("cannot inline & (body not seen yet)?", N, Nam_UA);
6774 -- Nothing to do if there is no body to inline, indicating that
6775 -- the subprogram is not suitable for inlining in GNATprove
6776 -- mode.
6778 elsif No (Body_To_Inline (Nam_Decl)) then
6779 null;
6781 -- Calls cannot be inlined inside potentially unevaluated
6782 -- expressions, as this would create complex actions inside
6783 -- expressions, that are not handled by GNATprove.
6785 elsif Is_Potentially_Unevaluated (N) then
6786 Cannot_Inline
6787 ("cannot inline & (in potentially unevaluated context)?",
6788 N, Nam_UA);
6790 -- Do not inline calls which would possibly lead to missing a
6791 -- type conversion check on an input parameter.
6793 elsif not Call_Can_Be_Inlined_In_GNATprove_Mode (N, Nam) then
6794 Cannot_Inline
6795 ("cannot inline & (possible check on input parameters)?",
6796 N, Nam_UA);
6798 -- Otherwise, inline the call
6800 else
6801 Expand_Inlined_Call (N, Nam_UA, Nam);
6802 end if;
6803 end if;
6804 end if;
6805 end if;
6807 Mark_Use_Clauses (Subp);
6809 Warn_On_Overlapping_Actuals (Nam, N);
6810 end Resolve_Call;
6812 -----------------------------
6813 -- Resolve_Case_Expression --
6814 -----------------------------
6816 procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id) is
6817 Alt : Node_Id;
6818 Alt_Expr : Node_Id;
6819 Alt_Typ : Entity_Id;
6820 Is_Dyn : Boolean;
6822 begin
6823 Alt := First (Alternatives (N));
6824 while Present (Alt) loop
6825 Alt_Expr := Expression (Alt);
6827 if Error_Posted (Alt_Expr) then
6828 return;
6829 end if;
6831 Resolve (Alt_Expr, Typ);
6832 Alt_Typ := Etype (Alt_Expr);
6834 -- When the expression is of a scalar subtype different from the
6835 -- result subtype, then insert a conversion to ensure the generation
6836 -- of a constraint check.
6838 if Is_Scalar_Type (Alt_Typ) and then Alt_Typ /= Typ then
6839 Rewrite (Alt_Expr, Convert_To (Typ, Alt_Expr));
6840 Analyze_And_Resolve (Alt_Expr, Typ);
6841 end if;
6843 Next (Alt);
6844 end loop;
6846 -- Apply RM 4.5.7 (17/3): whether the expression is statically or
6847 -- dynamically tagged must be known statically.
6849 if Is_Tagged_Type (Typ) and then not Is_Class_Wide_Type (Typ) then
6850 Alt := First (Alternatives (N));
6851 Is_Dyn := Is_Dynamically_Tagged (Expression (Alt));
6853 while Present (Alt) loop
6854 if Is_Dynamically_Tagged (Expression (Alt)) /= Is_Dyn then
6855 Error_Msg_N
6856 ("all or none of the dependent expressions can be "
6857 & "dynamically tagged", N);
6858 end if;
6860 Next (Alt);
6861 end loop;
6862 end if;
6864 Set_Etype (N, Typ);
6865 Eval_Case_Expression (N);
6866 Analyze_Dimension (N);
6867 end Resolve_Case_Expression;
6869 -------------------------------
6870 -- Resolve_Character_Literal --
6871 -------------------------------
6873 procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id) is
6874 B_Typ : constant Entity_Id := Base_Type (Typ);
6875 C : Entity_Id;
6877 begin
6878 -- Verify that the character does belong to the type of the context
6880 Set_Etype (N, B_Typ);
6881 Eval_Character_Literal (N);
6883 -- Wide_Wide_Character literals must always be defined, since the set
6884 -- of wide wide character literals is complete, i.e. if a character
6885 -- literal is accepted by the parser, then it is OK for wide wide
6886 -- character (out of range character literals are rejected).
6888 if Root_Type (B_Typ) = Standard_Wide_Wide_Character then
6889 return;
6891 -- Always accept character literal for type Any_Character, which
6892 -- occurs in error situations and in comparisons of literals, both
6893 -- of which should accept all literals.
6895 elsif B_Typ = Any_Character then
6896 return;
6898 -- For Standard.Character or a type derived from it, check that the
6899 -- literal is in range.
6901 elsif Root_Type (B_Typ) = Standard_Character then
6902 if In_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6903 return;
6904 end if;
6906 -- For Standard.Wide_Character or a type derived from it, check that the
6907 -- literal is in range.
6909 elsif Root_Type (B_Typ) = Standard_Wide_Character then
6910 if In_Wide_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6911 return;
6912 end if;
6914 -- If the entity is already set, this has already been resolved in a
6915 -- generic context, or comes from expansion. Nothing else to do.
6917 elsif Present (Entity (N)) then
6918 return;
6920 -- Otherwise we have a user defined character type, and we can use the
6921 -- standard visibility mechanisms to locate the referenced entity.
6923 else
6924 C := Current_Entity (N);
6925 while Present (C) loop
6926 if Etype (C) = B_Typ then
6927 Set_Entity_With_Checks (N, C);
6928 Generate_Reference (C, N);
6929 return;
6930 end if;
6932 C := Homonym (C);
6933 end loop;
6934 end if;
6936 -- If we fall through, then the literal does not match any of the
6937 -- entries of the enumeration type. This isn't just a constraint error
6938 -- situation, it is an illegality (see RM 4.2).
6940 Error_Msg_NE
6941 ("character not defined for }", N, First_Subtype (B_Typ));
6942 end Resolve_Character_Literal;
6944 ---------------------------
6945 -- Resolve_Comparison_Op --
6946 ---------------------------
6948 -- Context requires a boolean type, and plays no role in resolution.
6949 -- Processing identical to that for equality operators. The result type is
6950 -- the base type, which matters when pathological subtypes of booleans with
6951 -- limited ranges are used.
6953 procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id) is
6954 L : constant Node_Id := Left_Opnd (N);
6955 R : constant Node_Id := Right_Opnd (N);
6956 T : Entity_Id;
6958 begin
6959 -- If this is an intrinsic operation which is not predefined, use the
6960 -- types of its declared arguments to resolve the possibly overloaded
6961 -- operands. Otherwise the operands are unambiguous and specify the
6962 -- expected type.
6964 if Scope (Entity (N)) /= Standard_Standard then
6965 T := Etype (First_Entity (Entity (N)));
6967 else
6968 T := Find_Unique_Type (L, R);
6970 if T = Any_Fixed then
6971 T := Unique_Fixed_Point_Type (L);
6972 end if;
6973 end if;
6975 Set_Etype (N, Base_Type (Typ));
6976 Generate_Reference (T, N, ' ');
6978 -- Skip remaining processing if already set to Any_Type
6980 if T = Any_Type then
6981 return;
6982 end if;
6984 -- Deal with other error cases
6986 if T = Any_String or else
6987 T = Any_Composite or else
6988 T = Any_Character
6989 then
6990 if T = Any_Character then
6991 Ambiguous_Character (L);
6992 else
6993 Error_Msg_N ("ambiguous operands for comparison", N);
6994 end if;
6996 Set_Etype (N, Any_Type);
6997 return;
6998 end if;
7000 -- Resolve the operands if types OK
7002 Resolve (L, T);
7003 Resolve (R, T);
7004 Check_Unset_Reference (L);
7005 Check_Unset_Reference (R);
7006 Generate_Operator_Reference (N, T);
7007 Check_Low_Bound_Tested (N);
7009 -- In SPARK, ordering operators <, <=, >, >= are not defined for Boolean
7010 -- types or array types except String.
7012 if Is_Boolean_Type (T) then
7013 Check_SPARK_05_Restriction
7014 ("comparison is not defined on Boolean type", N);
7016 elsif Is_Array_Type (T)
7017 and then Base_Type (T) /= Standard_String
7018 then
7019 Check_SPARK_05_Restriction
7020 ("comparison is not defined on array types other than String", N);
7021 end if;
7023 -- Check comparison on unordered enumeration
7025 if Bad_Unordered_Enumeration_Reference (N, Etype (L)) then
7026 Error_Msg_Sloc := Sloc (Etype (L));
7027 Error_Msg_NE
7028 ("comparison on unordered enumeration type& declared#?U?",
7029 N, Etype (L));
7030 end if;
7032 Analyze_Dimension (N);
7034 -- Evaluate the relation (note we do this after the above check since
7035 -- this Eval call may change N to True/False. Skip this evaluation
7036 -- inside assertions, in order to keep assertions as written by users
7037 -- for tools that rely on these, e.g. GNATprove for loop invariants.
7038 -- Except evaluation is still performed even inside assertions for
7039 -- comparisons between values of universal type, which are useless
7040 -- for static analysis tools, and not supported even by GNATprove.
7042 if In_Assertion_Expr = 0
7043 or else (Is_Universal_Numeric_Type (Etype (L))
7044 and then
7045 Is_Universal_Numeric_Type (Etype (R)))
7046 then
7047 Eval_Relational_Op (N);
7048 end if;
7049 end Resolve_Comparison_Op;
7051 -----------------------------------------
7052 -- Resolve_Discrete_Subtype_Indication --
7053 -----------------------------------------
7055 procedure Resolve_Discrete_Subtype_Indication
7056 (N : Node_Id;
7057 Typ : Entity_Id)
7059 R : Node_Id;
7060 S : Entity_Id;
7062 begin
7063 Analyze (Subtype_Mark (N));
7064 S := Entity (Subtype_Mark (N));
7066 if Nkind (Constraint (N)) /= N_Range_Constraint then
7067 Error_Msg_N ("expect range constraint for discrete type", N);
7068 Set_Etype (N, Any_Type);
7070 else
7071 R := Range_Expression (Constraint (N));
7073 if R = Error then
7074 return;
7075 end if;
7077 Analyze (R);
7079 if Base_Type (S) /= Base_Type (Typ) then
7080 Error_Msg_NE
7081 ("expect subtype of }", N, First_Subtype (Typ));
7083 -- Rewrite the constraint as a range of Typ
7084 -- to allow compilation to proceed further.
7086 Set_Etype (N, Typ);
7087 Rewrite (Low_Bound (R),
7088 Make_Attribute_Reference (Sloc (Low_Bound (R)),
7089 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
7090 Attribute_Name => Name_First));
7091 Rewrite (High_Bound (R),
7092 Make_Attribute_Reference (Sloc (High_Bound (R)),
7093 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
7094 Attribute_Name => Name_First));
7096 else
7097 Resolve (R, Typ);
7098 Set_Etype (N, Etype (R));
7100 -- Additionally, we must check that the bounds are compatible
7101 -- with the given subtype, which might be different from the
7102 -- type of the context.
7104 Apply_Range_Check (R, S);
7106 -- ??? If the above check statically detects a Constraint_Error
7107 -- it replaces the offending bound(s) of the range R with a
7108 -- Constraint_Error node. When the itype which uses these bounds
7109 -- is frozen the resulting call to Duplicate_Subexpr generates
7110 -- a new temporary for the bounds.
7112 -- Unfortunately there are other itypes that are also made depend
7113 -- on these bounds, so when Duplicate_Subexpr is called they get
7114 -- a forward reference to the newly created temporaries and Gigi
7115 -- aborts on such forward references. This is probably sign of a
7116 -- more fundamental problem somewhere else in either the order of
7117 -- itype freezing or the way certain itypes are constructed.
7119 -- To get around this problem we call Remove_Side_Effects right
7120 -- away if either bounds of R are a Constraint_Error.
7122 declare
7123 L : constant Node_Id := Low_Bound (R);
7124 H : constant Node_Id := High_Bound (R);
7126 begin
7127 if Nkind (L) = N_Raise_Constraint_Error then
7128 Remove_Side_Effects (L);
7129 end if;
7131 if Nkind (H) = N_Raise_Constraint_Error then
7132 Remove_Side_Effects (H);
7133 end if;
7134 end;
7136 Check_Unset_Reference (Low_Bound (R));
7137 Check_Unset_Reference (High_Bound (R));
7138 end if;
7139 end if;
7140 end Resolve_Discrete_Subtype_Indication;
7142 -------------------------
7143 -- Resolve_Entity_Name --
7144 -------------------------
7146 -- Used to resolve identifiers and expanded names
7148 procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id) is
7149 function Is_Assignment_Or_Object_Expression
7150 (Context : Node_Id;
7151 Expr : Node_Id) return Boolean;
7152 -- Determine whether node Context denotes an assignment statement or an
7153 -- object declaration whose expression is node Expr.
7155 ----------------------------------------
7156 -- Is_Assignment_Or_Object_Expression --
7157 ----------------------------------------
7159 function Is_Assignment_Or_Object_Expression
7160 (Context : Node_Id;
7161 Expr : Node_Id) return Boolean
7163 begin
7164 if Nkind_In (Context, N_Assignment_Statement,
7165 N_Object_Declaration)
7166 and then Expression (Context) = Expr
7167 then
7168 return True;
7170 -- Check whether a construct that yields a name is the expression of
7171 -- an assignment statement or an object declaration.
7173 elsif (Nkind_In (Context, N_Attribute_Reference,
7174 N_Explicit_Dereference,
7175 N_Indexed_Component,
7176 N_Selected_Component,
7177 N_Slice)
7178 and then Prefix (Context) = Expr)
7179 or else
7180 (Nkind_In (Context, N_Type_Conversion,
7181 N_Unchecked_Type_Conversion)
7182 and then Expression (Context) = Expr)
7183 then
7184 return
7185 Is_Assignment_Or_Object_Expression
7186 (Context => Parent (Context),
7187 Expr => Context);
7189 -- Otherwise the context is not an assignment statement or an object
7190 -- declaration.
7192 else
7193 return False;
7194 end if;
7195 end Is_Assignment_Or_Object_Expression;
7197 -- Local variables
7199 E : constant Entity_Id := Entity (N);
7200 Par : Node_Id;
7202 -- Start of processing for Resolve_Entity_Name
7204 begin
7205 -- If garbage from errors, set to Any_Type and return
7207 if No (E) and then Total_Errors_Detected /= 0 then
7208 Set_Etype (N, Any_Type);
7209 return;
7210 end if;
7212 -- Replace named numbers by corresponding literals. Note that this is
7213 -- the one case where Resolve_Entity_Name must reset the Etype, since
7214 -- it is currently marked as universal.
7216 if Ekind (E) = E_Named_Integer then
7217 Set_Etype (N, Typ);
7218 Eval_Named_Integer (N);
7220 elsif Ekind (E) = E_Named_Real then
7221 Set_Etype (N, Typ);
7222 Eval_Named_Real (N);
7224 -- For enumeration literals, we need to make sure that a proper style
7225 -- check is done, since such literals are overloaded, and thus we did
7226 -- not do a style check during the first phase of analysis.
7228 elsif Ekind (E) = E_Enumeration_Literal then
7229 Set_Entity_With_Checks (N, E);
7230 Eval_Entity_Name (N);
7232 -- Case of (sub)type name appearing in a context where an expression
7233 -- is expected. This is legal if occurrence is a current instance.
7234 -- See RM 8.6 (17/3).
7236 elsif Is_Type (E) then
7237 if Is_Current_Instance (N) then
7238 null;
7240 -- Any other use is an error
7242 else
7243 Error_Msg_N
7244 ("invalid use of subtype mark in expression or call", N);
7245 end if;
7247 -- Check discriminant use if entity is discriminant in current scope,
7248 -- i.e. discriminant of record or concurrent type currently being
7249 -- analyzed. Uses in corresponding body are unrestricted.
7251 elsif Ekind (E) = E_Discriminant
7252 and then Scope (E) = Current_Scope
7253 and then not Has_Completion (Current_Scope)
7254 then
7255 Check_Discriminant_Use (N);
7257 -- A parameterless generic function cannot appear in a context that
7258 -- requires resolution.
7260 elsif Ekind (E) = E_Generic_Function then
7261 Error_Msg_N ("illegal use of generic function", N);
7263 -- In Ada 83 an OUT parameter cannot be read, but attributes of
7264 -- array types (i.e. bounds and length) are legal.
7266 elsif Ekind (E) = E_Out_Parameter
7267 and then (Nkind (Parent (N)) /= N_Attribute_Reference
7268 or else Is_Scalar_Type (Etype (E)))
7270 and then (Nkind (Parent (N)) in N_Op
7271 or else Nkind (Parent (N)) = N_Explicit_Dereference
7272 or else Is_Assignment_Or_Object_Expression
7273 (Context => Parent (N),
7274 Expr => N))
7275 then
7276 if Ada_Version = Ada_83 then
7277 Error_Msg_N ("(Ada 83) illegal reading of out parameter", N);
7278 end if;
7280 -- In all other cases, just do the possible static evaluation
7282 else
7283 -- A deferred constant that appears in an expression must have a
7284 -- completion, unless it has been removed by in-place expansion of
7285 -- an aggregate. A constant that is a renaming does not need
7286 -- initialization.
7288 if Ekind (E) = E_Constant
7289 and then Comes_From_Source (E)
7290 and then No (Constant_Value (E))
7291 and then Is_Frozen (Etype (E))
7292 and then not In_Spec_Expression
7293 and then not Is_Imported (E)
7294 and then Nkind (Parent (E)) /= N_Object_Renaming_Declaration
7295 then
7296 if No_Initialization (Parent (E))
7297 or else (Present (Full_View (E))
7298 and then No_Initialization (Parent (Full_View (E))))
7299 then
7300 null;
7301 else
7302 Error_Msg_N
7303 ("deferred constant is frozen before completion", N);
7304 end if;
7305 end if;
7307 Eval_Entity_Name (N);
7308 end if;
7310 Par := Parent (N);
7312 -- When the entity appears in a parameter association, retrieve the
7313 -- related subprogram call.
7315 if Nkind (Par) = N_Parameter_Association then
7316 Par := Parent (Par);
7317 end if;
7319 if Comes_From_Source (N) then
7321 -- The following checks are only relevant when SPARK_Mode is on as
7322 -- they are not standard Ada legality rules.
7324 if SPARK_Mode = On then
7326 -- An effectively volatile object subject to enabled properties
7327 -- Async_Writers or Effective_Reads must appear in non-interfering
7328 -- context (SPARK RM 7.1.3(12)).
7330 if Is_Object (E)
7331 and then Is_Effectively_Volatile (E)
7332 and then (Async_Writers_Enabled (E)
7333 or else Effective_Reads_Enabled (E))
7334 and then not Is_OK_Volatile_Context (Par, N)
7335 then
7336 SPARK_Msg_N
7337 ("volatile object cannot appear in this context "
7338 & "(SPARK RM 7.1.3(12))", N);
7339 end if;
7341 -- The variable may eventually become a constituent of a single
7342 -- protected/task type. Record the reference now and verify its
7343 -- legality when analyzing the contract of the variable
7344 -- (SPARK RM 9.3).
7346 if Ekind (E) = E_Variable then
7347 Record_Possible_Part_Of_Reference (E, N);
7348 end if;
7349 end if;
7351 -- A Ghost entity must appear in a specific context
7353 if Is_Ghost_Entity (E) then
7354 Check_Ghost_Context (E, N);
7355 end if;
7356 end if;
7358 Mark_Use_Clauses (E);
7359 end Resolve_Entity_Name;
7361 -------------------
7362 -- Resolve_Entry --
7363 -------------------
7365 procedure Resolve_Entry (Entry_Name : Node_Id) is
7366 Loc : constant Source_Ptr := Sloc (Entry_Name);
7367 Nam : Entity_Id;
7368 New_N : Node_Id;
7369 S : Entity_Id;
7370 Tsk : Entity_Id;
7371 E_Name : Node_Id;
7372 Index : Node_Id;
7374 function Actual_Index_Type (E : Entity_Id) return Entity_Id;
7375 -- If the bounds of the entry family being called depend on task
7376 -- discriminants, build a new index subtype where a discriminant is
7377 -- replaced with the value of the discriminant of the target task.
7378 -- The target task is the prefix of the entry name in the call.
7380 -----------------------
7381 -- Actual_Index_Type --
7382 -----------------------
7384 function Actual_Index_Type (E : Entity_Id) return Entity_Id is
7385 Typ : constant Entity_Id := Entry_Index_Type (E);
7386 Tsk : constant Entity_Id := Scope (E);
7387 Lo : constant Node_Id := Type_Low_Bound (Typ);
7388 Hi : constant Node_Id := Type_High_Bound (Typ);
7389 New_T : Entity_Id;
7391 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id;
7392 -- If the bound is given by a discriminant, replace with a reference
7393 -- to the discriminant of the same name in the target task. If the
7394 -- entry name is the target of a requeue statement and the entry is
7395 -- in the current protected object, the bound to be used is the
7396 -- discriminal of the object (see Apply_Range_Checks for details of
7397 -- the transformation).
7399 -----------------------------
7400 -- Actual_Discriminant_Ref --
7401 -----------------------------
7403 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id is
7404 Typ : constant Entity_Id := Etype (Bound);
7405 Ref : Node_Id;
7407 begin
7408 Remove_Side_Effects (Bound);
7410 if not Is_Entity_Name (Bound)
7411 or else Ekind (Entity (Bound)) /= E_Discriminant
7412 then
7413 return Bound;
7415 elsif Is_Protected_Type (Tsk)
7416 and then In_Open_Scopes (Tsk)
7417 and then Nkind (Parent (Entry_Name)) = N_Requeue_Statement
7418 then
7419 -- Note: here Bound denotes a discriminant of the corresponding
7420 -- record type tskV, whose discriminal is a formal of the
7421 -- init-proc tskVIP. What we want is the body discriminal,
7422 -- which is associated to the discriminant of the original
7423 -- concurrent type tsk.
7425 return New_Occurrence_Of
7426 (Find_Body_Discriminal (Entity (Bound)), Loc);
7428 else
7429 Ref :=
7430 Make_Selected_Component (Loc,
7431 Prefix => New_Copy_Tree (Prefix (Prefix (Entry_Name))),
7432 Selector_Name => New_Occurrence_Of (Entity (Bound), Loc));
7433 Analyze (Ref);
7434 Resolve (Ref, Typ);
7435 return Ref;
7436 end if;
7437 end Actual_Discriminant_Ref;
7439 -- Start of processing for Actual_Index_Type
7441 begin
7442 if not Has_Discriminants (Tsk)
7443 or else (not Is_Entity_Name (Lo) and then not Is_Entity_Name (Hi))
7444 then
7445 return Entry_Index_Type (E);
7447 else
7448 New_T := Create_Itype (Ekind (Typ), Parent (Entry_Name));
7449 Set_Etype (New_T, Base_Type (Typ));
7450 Set_Size_Info (New_T, Typ);
7451 Set_RM_Size (New_T, RM_Size (Typ));
7452 Set_Scalar_Range (New_T,
7453 Make_Range (Sloc (Entry_Name),
7454 Low_Bound => Actual_Discriminant_Ref (Lo),
7455 High_Bound => Actual_Discriminant_Ref (Hi)));
7457 return New_T;
7458 end if;
7459 end Actual_Index_Type;
7461 -- Start of processing for Resolve_Entry
7463 begin
7464 -- Find name of entry being called, and resolve prefix of name with its
7465 -- own type. The prefix can be overloaded, and the name and signature of
7466 -- the entry must be taken into account.
7468 if Nkind (Entry_Name) = N_Indexed_Component then
7470 -- Case of dealing with entry family within the current tasks
7472 E_Name := Prefix (Entry_Name);
7474 else
7475 E_Name := Entry_Name;
7476 end if;
7478 if Is_Entity_Name (E_Name) then
7480 -- Entry call to an entry (or entry family) in the current task. This
7481 -- is legal even though the task will deadlock. Rewrite as call to
7482 -- current task.
7484 -- This can also be a call to an entry in an enclosing task. If this
7485 -- is a single task, we have to retrieve its name, because the scope
7486 -- of the entry is the task type, not the object. If the enclosing
7487 -- task is a task type, the identity of the task is given by its own
7488 -- self variable.
7490 -- Finally this can be a requeue on an entry of the same task or
7491 -- protected object.
7493 S := Scope (Entity (E_Name));
7495 for J in reverse 0 .. Scope_Stack.Last loop
7496 if Is_Task_Type (Scope_Stack.Table (J).Entity)
7497 and then not Comes_From_Source (S)
7498 then
7499 -- S is an enclosing task or protected object. The concurrent
7500 -- declaration has been converted into a type declaration, and
7501 -- the object itself has an object declaration that follows
7502 -- the type in the same declarative part.
7504 Tsk := Next_Entity (S);
7505 while Etype (Tsk) /= S loop
7506 Next_Entity (Tsk);
7507 end loop;
7509 S := Tsk;
7510 exit;
7512 elsif S = Scope_Stack.Table (J).Entity then
7514 -- Call to current task. Will be transformed into call to Self
7516 exit;
7518 end if;
7519 end loop;
7521 New_N :=
7522 Make_Selected_Component (Loc,
7523 Prefix => New_Occurrence_Of (S, Loc),
7524 Selector_Name =>
7525 New_Occurrence_Of (Entity (E_Name), Loc));
7526 Rewrite (E_Name, New_N);
7527 Analyze (E_Name);
7529 elsif Nkind (Entry_Name) = N_Selected_Component
7530 and then Is_Overloaded (Prefix (Entry_Name))
7531 then
7532 -- Use the entry name (which must be unique at this point) to find
7533 -- the prefix that returns the corresponding task/protected type.
7535 declare
7536 Pref : constant Node_Id := Prefix (Entry_Name);
7537 Ent : constant Entity_Id := Entity (Selector_Name (Entry_Name));
7538 I : Interp_Index;
7539 It : Interp;
7541 begin
7542 Get_First_Interp (Pref, I, It);
7543 while Present (It.Typ) loop
7544 if Scope (Ent) = It.Typ then
7545 Set_Etype (Pref, It.Typ);
7546 exit;
7547 end if;
7549 Get_Next_Interp (I, It);
7550 end loop;
7551 end;
7552 end if;
7554 if Nkind (Entry_Name) = N_Selected_Component then
7555 Resolve (Prefix (Entry_Name));
7557 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7558 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7559 Resolve (Prefix (Prefix (Entry_Name)));
7560 Index := First (Expressions (Entry_Name));
7561 Resolve (Index, Entry_Index_Type (Nam));
7563 -- Generate a reference for the index when it denotes an entity
7565 if Is_Entity_Name (Index) then
7566 Generate_Reference (Entity (Index), Nam);
7567 end if;
7569 -- Up to this point the expression could have been the actual in a
7570 -- simple entry call, and be given by a named association.
7572 if Nkind (Index) = N_Parameter_Association then
7573 Error_Msg_N ("expect expression for entry index", Index);
7574 else
7575 Apply_Range_Check (Index, Actual_Index_Type (Nam));
7576 end if;
7577 end if;
7578 end Resolve_Entry;
7580 ------------------------
7581 -- Resolve_Entry_Call --
7582 ------------------------
7584 procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id) is
7585 Entry_Name : constant Node_Id := Name (N);
7586 Loc : constant Source_Ptr := Sloc (Entry_Name);
7588 Nam : Entity_Id;
7589 Norm_OK : Boolean;
7590 Obj : Node_Id;
7591 Was_Over : Boolean;
7593 begin
7594 -- We kill all checks here, because it does not seem worth the effort to
7595 -- do anything better, an entry call is a big operation.
7597 Kill_All_Checks;
7599 -- Processing of the name is similar for entry calls and protected
7600 -- operation calls. Once the entity is determined, we can complete
7601 -- the resolution of the actuals.
7603 -- The selector may be overloaded, in the case of a protected object
7604 -- with overloaded functions. The type of the context is used for
7605 -- resolution.
7607 if Nkind (Entry_Name) = N_Selected_Component
7608 and then Is_Overloaded (Selector_Name (Entry_Name))
7609 and then Typ /= Standard_Void_Type
7610 then
7611 declare
7612 I : Interp_Index;
7613 It : Interp;
7615 begin
7616 Get_First_Interp (Selector_Name (Entry_Name), I, It);
7617 while Present (It.Typ) loop
7618 if Covers (Typ, It.Typ) then
7619 Set_Entity (Selector_Name (Entry_Name), It.Nam);
7620 Set_Etype (Entry_Name, It.Typ);
7622 Generate_Reference (It.Typ, N, ' ');
7623 end if;
7625 Get_Next_Interp (I, It);
7626 end loop;
7627 end;
7628 end if;
7630 Resolve_Entry (Entry_Name);
7632 if Nkind (Entry_Name) = N_Selected_Component then
7634 -- Simple entry or protected operation call
7636 Nam := Entity (Selector_Name (Entry_Name));
7637 Obj := Prefix (Entry_Name);
7639 if Is_Subprogram (Nam) then
7640 Check_For_Eliminated_Subprogram (Entry_Name, Nam);
7641 end if;
7643 Was_Over := Is_Overloaded (Selector_Name (Entry_Name));
7645 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7647 -- Call to member of entry family
7649 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7650 Obj := Prefix (Prefix (Entry_Name));
7651 Was_Over := Is_Overloaded (Selector_Name (Prefix (Entry_Name)));
7652 end if;
7654 -- We cannot in general check the maximum depth of protected entry calls
7655 -- at compile time. But we can tell that any protected entry call at all
7656 -- violates a specified nesting depth of zero.
7658 if Is_Protected_Type (Scope (Nam)) then
7659 Check_Restriction (Max_Entry_Queue_Length, N);
7660 end if;
7662 -- Use context type to disambiguate a protected function that can be
7663 -- called without actuals and that returns an array type, and where the
7664 -- argument list may be an indexing of the returned value.
7666 if Ekind (Nam) = E_Function
7667 and then Needs_No_Actuals (Nam)
7668 and then Present (Parameter_Associations (N))
7669 and then
7670 ((Is_Array_Type (Etype (Nam))
7671 and then Covers (Typ, Component_Type (Etype (Nam))))
7673 or else (Is_Access_Type (Etype (Nam))
7674 and then Is_Array_Type (Designated_Type (Etype (Nam)))
7675 and then
7676 Covers
7677 (Typ,
7678 Component_Type (Designated_Type (Etype (Nam))))))
7679 then
7680 declare
7681 Index_Node : Node_Id;
7683 begin
7684 Index_Node :=
7685 Make_Indexed_Component (Loc,
7686 Prefix =>
7687 Make_Function_Call (Loc, Name => Relocate_Node (Entry_Name)),
7688 Expressions => Parameter_Associations (N));
7690 -- Since we are correcting a node classification error made by the
7691 -- parser, we call Replace rather than Rewrite.
7693 Replace (N, Index_Node);
7694 Set_Etype (Prefix (N), Etype (Nam));
7695 Set_Etype (N, Typ);
7696 Resolve_Indexed_Component (N, Typ);
7697 return;
7698 end;
7699 end if;
7701 if Ekind_In (Nam, E_Entry, E_Entry_Family)
7702 and then Present (Contract_Wrapper (Nam))
7703 and then Current_Scope /= Contract_Wrapper (Nam)
7704 then
7705 -- Note the entity being called before rewriting the call, so that
7706 -- it appears used at this point.
7708 Generate_Reference (Nam, Entry_Name, 'r');
7710 -- Rewrite as call to the precondition wrapper, adding the task
7711 -- object to the list of actuals. If the call is to a member of an
7712 -- entry family, include the index as well.
7714 declare
7715 New_Call : Node_Id;
7716 New_Actuals : List_Id;
7718 begin
7719 New_Actuals := New_List (Obj);
7721 if Nkind (Entry_Name) = N_Indexed_Component then
7722 Append_To (New_Actuals,
7723 New_Copy_Tree (First (Expressions (Entry_Name))));
7724 end if;
7726 Append_List (Parameter_Associations (N), New_Actuals);
7727 New_Call :=
7728 Make_Procedure_Call_Statement (Loc,
7729 Name =>
7730 New_Occurrence_Of (Contract_Wrapper (Nam), Loc),
7731 Parameter_Associations => New_Actuals);
7732 Rewrite (N, New_Call);
7734 -- Preanalyze and resolve new call. Current procedure is called
7735 -- from Resolve_Call, after which expansion will take place.
7737 Preanalyze_And_Resolve (N);
7738 return;
7739 end;
7740 end if;
7742 -- The operation name may have been overloaded. Order the actuals
7743 -- according to the formals of the resolved entity, and set the return
7744 -- type to that of the operation.
7746 if Was_Over then
7747 Normalize_Actuals (N, Nam, False, Norm_OK);
7748 pragma Assert (Norm_OK);
7749 Set_Etype (N, Etype (Nam));
7751 -- Reset the Is_Overloaded flag, since resolution is now completed
7753 -- Simple entry call
7755 if Nkind (Entry_Name) = N_Selected_Component then
7756 Set_Is_Overloaded (Selector_Name (Entry_Name), False);
7758 -- Call to a member of an entry family
7760 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7761 Set_Is_Overloaded (Selector_Name (Prefix (Entry_Name)), False);
7762 end if;
7763 end if;
7765 Resolve_Actuals (N, Nam);
7766 Check_Internal_Protected_Use (N, Nam);
7768 -- Create a call reference to the entry
7770 Generate_Reference (Nam, Entry_Name, 's');
7772 if Ekind_In (Nam, E_Entry, E_Entry_Family) then
7773 Check_Potentially_Blocking_Operation (N);
7774 end if;
7776 -- Verify that a procedure call cannot masquerade as an entry
7777 -- call where an entry call is expected.
7779 if Ekind (Nam) = E_Procedure then
7780 if Nkind (Parent (N)) = N_Entry_Call_Alternative
7781 and then N = Entry_Call_Statement (Parent (N))
7782 then
7783 Error_Msg_N ("entry call required in select statement", N);
7785 elsif Nkind (Parent (N)) = N_Triggering_Alternative
7786 and then N = Triggering_Statement (Parent (N))
7787 then
7788 Error_Msg_N ("triggering statement cannot be procedure call", N);
7790 elsif Ekind (Scope (Nam)) = E_Task_Type
7791 and then not In_Open_Scopes (Scope (Nam))
7792 then
7793 Error_Msg_N ("task has no entry with this name", Entry_Name);
7794 end if;
7795 end if;
7797 -- After resolution, entry calls and protected procedure calls are
7798 -- changed into entry calls, for expansion. The structure of the node
7799 -- does not change, so it can safely be done in place. Protected
7800 -- function calls must keep their structure because they are
7801 -- subexpressions.
7803 if Ekind (Nam) /= E_Function then
7805 -- A protected operation that is not a function may modify the
7806 -- corresponding object, and cannot apply to a constant. If this
7807 -- is an internal call, the prefix is the type itself.
7809 if Is_Protected_Type (Scope (Nam))
7810 and then not Is_Variable (Obj)
7811 and then (not Is_Entity_Name (Obj)
7812 or else not Is_Type (Entity (Obj)))
7813 then
7814 Error_Msg_N
7815 ("prefix of protected procedure or entry call must be variable",
7816 Entry_Name);
7817 end if;
7819 declare
7820 Entry_Call : Node_Id;
7822 begin
7823 Entry_Call :=
7824 Make_Entry_Call_Statement (Loc,
7825 Name => Entry_Name,
7826 Parameter_Associations => Parameter_Associations (N));
7828 -- Inherit relevant attributes from the original call
7830 Set_First_Named_Actual
7831 (Entry_Call, First_Named_Actual (N));
7833 Set_Is_Elaboration_Checks_OK_Node
7834 (Entry_Call, Is_Elaboration_Checks_OK_Node (N));
7836 Set_Is_SPARK_Mode_On_Node
7837 (Entry_Call, Is_SPARK_Mode_On_Node (N));
7839 Rewrite (N, Entry_Call);
7840 Set_Analyzed (N, True);
7841 end;
7843 -- Protected functions can return on the secondary stack, in which
7844 -- case we must trigger the transient scope mechanism.
7846 elsif Expander_Active
7847 and then Requires_Transient_Scope (Etype (Nam))
7848 then
7849 Establish_Transient_Scope (N, Sec_Stack => True);
7850 end if;
7851 end Resolve_Entry_Call;
7853 -------------------------
7854 -- Resolve_Equality_Op --
7855 -------------------------
7857 -- Both arguments must have the same type, and the boolean context does
7858 -- not participate in the resolution. The first pass verifies that the
7859 -- interpretation is not ambiguous, and the type of the left argument is
7860 -- correctly set, or is Any_Type in case of ambiguity. If both arguments
7861 -- are strings or aggregates, allocators, or Null, they are ambiguous even
7862 -- though they carry a single (universal) type. Diagnose this case here.
7864 procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id) is
7865 L : constant Node_Id := Left_Opnd (N);
7866 R : constant Node_Id := Right_Opnd (N);
7867 T : Entity_Id := Find_Unique_Type (L, R);
7869 procedure Check_If_Expression (Cond : Node_Id);
7870 -- The resolution rule for if expressions requires that each such must
7871 -- have a unique type. This means that if several dependent expressions
7872 -- are of a non-null anonymous access type, and the context does not
7873 -- impose an expected type (as can be the case in an equality operation)
7874 -- the expression must be rejected.
7876 procedure Explain_Redundancy (N : Node_Id);
7877 -- Attempt to explain the nature of a redundant comparison with True. If
7878 -- the expression N is too complex, this routine issues a general error
7879 -- message.
7881 function Find_Unique_Access_Type return Entity_Id;
7882 -- In the case of allocators and access attributes, the context must
7883 -- provide an indication of the specific access type to be used. If
7884 -- one operand is of such a "generic" access type, check whether there
7885 -- is a specific visible access type that has the same designated type.
7886 -- This is semantically dubious, and of no interest to any real code,
7887 -- but c48008a makes it all worthwhile.
7889 -------------------------
7890 -- Check_If_Expression --
7891 -------------------------
7893 procedure Check_If_Expression (Cond : Node_Id) is
7894 Then_Expr : Node_Id;
7895 Else_Expr : Node_Id;
7897 begin
7898 if Nkind (Cond) = N_If_Expression then
7899 Then_Expr := Next (First (Expressions (Cond)));
7900 Else_Expr := Next (Then_Expr);
7902 if Nkind (Then_Expr) /= N_Null
7903 and then Nkind (Else_Expr) /= N_Null
7904 then
7905 Error_Msg_N ("cannot determine type of if expression", Cond);
7906 end if;
7907 end if;
7908 end Check_If_Expression;
7910 ------------------------
7911 -- Explain_Redundancy --
7912 ------------------------
7914 procedure Explain_Redundancy (N : Node_Id) is
7915 Error : Name_Id;
7916 Val : Node_Id;
7917 Val_Id : Entity_Id;
7919 begin
7920 Val := N;
7922 -- Strip the operand down to an entity
7924 loop
7925 if Nkind (Val) = N_Selected_Component then
7926 Val := Selector_Name (Val);
7927 else
7928 exit;
7929 end if;
7930 end loop;
7932 -- The construct denotes an entity
7934 if Is_Entity_Name (Val) and then Present (Entity (Val)) then
7935 Val_Id := Entity (Val);
7937 -- Do not generate an error message when the comparison is done
7938 -- against the enumeration literal Standard.True.
7940 if Ekind (Val_Id) /= E_Enumeration_Literal then
7942 -- Build a customized error message
7944 Name_Len := 0;
7945 Add_Str_To_Name_Buffer ("?r?");
7947 if Ekind (Val_Id) = E_Component then
7948 Add_Str_To_Name_Buffer ("component ");
7950 elsif Ekind (Val_Id) = E_Constant then
7951 Add_Str_To_Name_Buffer ("constant ");
7953 elsif Ekind (Val_Id) = E_Discriminant then
7954 Add_Str_To_Name_Buffer ("discriminant ");
7956 elsif Is_Formal (Val_Id) then
7957 Add_Str_To_Name_Buffer ("parameter ");
7959 elsif Ekind (Val_Id) = E_Variable then
7960 Add_Str_To_Name_Buffer ("variable ");
7961 end if;
7963 Add_Str_To_Name_Buffer ("& is always True!");
7964 Error := Name_Find;
7966 Error_Msg_NE (Get_Name_String (Error), Val, Val_Id);
7967 end if;
7969 -- The construct is too complex to disect, issue a general message
7971 else
7972 Error_Msg_N ("?r?expression is always True!", Val);
7973 end if;
7974 end Explain_Redundancy;
7976 -----------------------------
7977 -- Find_Unique_Access_Type --
7978 -----------------------------
7980 function Find_Unique_Access_Type return Entity_Id is
7981 Acc : Entity_Id;
7982 E : Entity_Id;
7983 S : Entity_Id;
7985 begin
7986 if Ekind_In (Etype (R), E_Allocator_Type,
7987 E_Access_Attribute_Type)
7988 then
7989 Acc := Designated_Type (Etype (R));
7991 elsif Ekind_In (Etype (L), E_Allocator_Type,
7992 E_Access_Attribute_Type)
7993 then
7994 Acc := Designated_Type (Etype (L));
7995 else
7996 return Empty;
7997 end if;
7999 S := Current_Scope;
8000 while S /= Standard_Standard loop
8001 E := First_Entity (S);
8002 while Present (E) loop
8003 if Is_Type (E)
8004 and then Is_Access_Type (E)
8005 and then Ekind (E) /= E_Allocator_Type
8006 and then Designated_Type (E) = Base_Type (Acc)
8007 then
8008 return E;
8009 end if;
8011 Next_Entity (E);
8012 end loop;
8014 S := Scope (S);
8015 end loop;
8017 return Empty;
8018 end Find_Unique_Access_Type;
8020 -- Start of processing for Resolve_Equality_Op
8022 begin
8023 Set_Etype (N, Base_Type (Typ));
8024 Generate_Reference (T, N, ' ');
8026 if T = Any_Fixed then
8027 T := Unique_Fixed_Point_Type (L);
8028 end if;
8030 if T /= Any_Type then
8031 if T = Any_String or else
8032 T = Any_Composite or else
8033 T = Any_Character
8034 then
8035 if T = Any_Character then
8036 Ambiguous_Character (L);
8037 else
8038 Error_Msg_N ("ambiguous operands for equality", N);
8039 end if;
8041 Set_Etype (N, Any_Type);
8042 return;
8044 elsif T = Any_Access
8045 or else Ekind_In (T, E_Allocator_Type, E_Access_Attribute_Type)
8046 then
8047 T := Find_Unique_Access_Type;
8049 if No (T) then
8050 Error_Msg_N ("ambiguous operands for equality", N);
8051 Set_Etype (N, Any_Type);
8052 return;
8053 end if;
8055 -- If expressions must have a single type, and if the context does
8056 -- not impose one the dependent expressions cannot be anonymous
8057 -- access types.
8059 -- Why no similar processing for case expressions???
8061 elsif Ada_Version >= Ada_2012
8062 and then Ekind_In (Etype (L), E_Anonymous_Access_Type,
8063 E_Anonymous_Access_Subprogram_Type)
8064 and then Ekind_In (Etype (R), E_Anonymous_Access_Type,
8065 E_Anonymous_Access_Subprogram_Type)
8066 then
8067 Check_If_Expression (L);
8068 Check_If_Expression (R);
8069 end if;
8071 Resolve (L, T);
8072 Resolve (R, T);
8074 -- In SPARK, equality operators = and /= for array types other than
8075 -- String are only defined when, for each index position, the
8076 -- operands have equal static bounds.
8078 if Is_Array_Type (T) then
8080 -- Protect call to Matching_Static_Array_Bounds to avoid costly
8081 -- operation if not needed.
8083 if Restriction_Check_Required (SPARK_05)
8084 and then Base_Type (T) /= Standard_String
8085 and then Base_Type (Etype (L)) = Base_Type (Etype (R))
8086 and then Etype (L) /= Any_Composite -- or else L in error
8087 and then Etype (R) /= Any_Composite -- or else R in error
8088 and then not Matching_Static_Array_Bounds (Etype (L), Etype (R))
8089 then
8090 Check_SPARK_05_Restriction
8091 ("array types should have matching static bounds", N);
8092 end if;
8093 end if;
8095 -- If the unique type is a class-wide type then it will be expanded
8096 -- into a dispatching call to the predefined primitive. Therefore we
8097 -- check here for potential violation of such restriction.
8099 if Is_Class_Wide_Type (T) then
8100 Check_Restriction (No_Dispatching_Calls, N);
8101 end if;
8103 -- Only warn for redundant equality comparison to True for objects
8104 -- (e.g. "X = True") and operations (e.g. "(X < Y) = True"). For
8105 -- other expressions, it may be a matter of preference to write
8106 -- "Expr = True" or "Expr".
8108 if Warn_On_Redundant_Constructs
8109 and then Comes_From_Source (N)
8110 and then Comes_From_Source (R)
8111 and then Is_Entity_Name (R)
8112 and then Entity (R) = Standard_True
8113 and then
8114 ((Is_Entity_Name (L) and then Is_Object (Entity (L)))
8115 or else
8116 Nkind (L) in N_Op)
8117 then
8118 Error_Msg_N -- CODEFIX
8119 ("?r?comparison with True is redundant!", N);
8120 Explain_Redundancy (Original_Node (R));
8121 end if;
8123 Check_Unset_Reference (L);
8124 Check_Unset_Reference (R);
8125 Generate_Operator_Reference (N, T);
8126 Check_Low_Bound_Tested (N);
8128 -- If this is an inequality, it may be the implicit inequality
8129 -- created for a user-defined operation, in which case the corres-
8130 -- ponding equality operation is not intrinsic, and the operation
8131 -- cannot be constant-folded. Else fold.
8133 if Nkind (N) = N_Op_Eq
8134 or else Comes_From_Source (Entity (N))
8135 or else Ekind (Entity (N)) = E_Operator
8136 or else Is_Intrinsic_Subprogram
8137 (Corresponding_Equality (Entity (N)))
8138 then
8139 Analyze_Dimension (N);
8140 Eval_Relational_Op (N);
8142 elsif Nkind (N) = N_Op_Ne
8143 and then Is_Abstract_Subprogram (Entity (N))
8144 then
8145 Error_Msg_NE ("cannot call abstract subprogram &!", N, Entity (N));
8146 end if;
8148 -- Ada 2005: If one operand is an anonymous access type, convert the
8149 -- other operand to it, to ensure that the underlying types match in
8150 -- the back-end. Same for access_to_subprogram, and the conversion
8151 -- verifies that the types are subtype conformant.
8153 -- We apply the same conversion in the case one of the operands is a
8154 -- private subtype of the type of the other.
8156 -- Why the Expander_Active test here ???
8158 if Expander_Active
8159 and then
8160 (Ekind_In (T, E_Anonymous_Access_Type,
8161 E_Anonymous_Access_Subprogram_Type)
8162 or else Is_Private_Type (T))
8163 then
8164 if Etype (L) /= T then
8165 Rewrite (L,
8166 Make_Unchecked_Type_Conversion (Sloc (L),
8167 Subtype_Mark => New_Occurrence_Of (T, Sloc (L)),
8168 Expression => Relocate_Node (L)));
8169 Analyze_And_Resolve (L, T);
8170 end if;
8172 if (Etype (R)) /= T then
8173 Rewrite (R,
8174 Make_Unchecked_Type_Conversion (Sloc (R),
8175 Subtype_Mark => New_Occurrence_Of (Etype (L), Sloc (R)),
8176 Expression => Relocate_Node (R)));
8177 Analyze_And_Resolve (R, T);
8178 end if;
8179 end if;
8180 end if;
8181 end Resolve_Equality_Op;
8183 ----------------------------------
8184 -- Resolve_Explicit_Dereference --
8185 ----------------------------------
8187 procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id) is
8188 Loc : constant Source_Ptr := Sloc (N);
8189 New_N : Node_Id;
8190 P : constant Node_Id := Prefix (N);
8192 P_Typ : Entity_Id;
8193 -- The candidate prefix type, if overloaded
8195 I : Interp_Index;
8196 It : Interp;
8198 begin
8199 Check_Fully_Declared_Prefix (Typ, P);
8200 P_Typ := Empty;
8202 -- A useful optimization: check whether the dereference denotes an
8203 -- element of a container, and if so rewrite it as a call to the
8204 -- corresponding Element function.
8206 -- Disabled for now, on advice of ARG. A more restricted form of the
8207 -- predicate might be acceptable ???
8209 -- if Is_Container_Element (N) then
8210 -- return;
8211 -- end if;
8213 if Is_Overloaded (P) then
8215 -- Use the context type to select the prefix that has the correct
8216 -- designated type. Keep the first match, which will be the inner-
8217 -- most.
8219 Get_First_Interp (P, I, It);
8221 while Present (It.Typ) loop
8222 if Is_Access_Type (It.Typ)
8223 and then Covers (Typ, Designated_Type (It.Typ))
8224 then
8225 if No (P_Typ) then
8226 P_Typ := It.Typ;
8227 end if;
8229 -- Remove access types that do not match, but preserve access
8230 -- to subprogram interpretations, in case a further dereference
8231 -- is needed (see below).
8233 elsif Ekind (It.Typ) /= E_Access_Subprogram_Type then
8234 Remove_Interp (I);
8235 end if;
8237 Get_Next_Interp (I, It);
8238 end loop;
8240 if Present (P_Typ) then
8241 Resolve (P, P_Typ);
8242 Set_Etype (N, Designated_Type (P_Typ));
8244 else
8245 -- If no interpretation covers the designated type of the prefix,
8246 -- this is the pathological case where not all implementations of
8247 -- the prefix allow the interpretation of the node as a call. Now
8248 -- that the expected type is known, Remove other interpretations
8249 -- from prefix, rewrite it as a call, and resolve again, so that
8250 -- the proper call node is generated.
8252 Get_First_Interp (P, I, It);
8253 while Present (It.Typ) loop
8254 if Ekind (It.Typ) /= E_Access_Subprogram_Type then
8255 Remove_Interp (I);
8256 end if;
8258 Get_Next_Interp (I, It);
8259 end loop;
8261 New_N :=
8262 Make_Function_Call (Loc,
8263 Name =>
8264 Make_Explicit_Dereference (Loc,
8265 Prefix => P),
8266 Parameter_Associations => New_List);
8268 Save_Interps (N, New_N);
8269 Rewrite (N, New_N);
8270 Analyze_And_Resolve (N, Typ);
8271 return;
8272 end if;
8274 -- If not overloaded, resolve P with its own type
8276 else
8277 Resolve (P);
8278 end if;
8280 -- If the prefix might be null, add an access check
8282 if Is_Access_Type (Etype (P))
8283 and then not Can_Never_Be_Null (Etype (P))
8284 then
8285 Apply_Access_Check (N);
8286 end if;
8288 -- If the designated type is a packed unconstrained array type, and the
8289 -- explicit dereference is not in the context of an attribute reference,
8290 -- then we must compute and set the actual subtype, since it is needed
8291 -- by Gigi. The reason we exclude the attribute case is that this is
8292 -- handled fine by Gigi, and in fact we use such attributes to build the
8293 -- actual subtype. We also exclude generated code (which builds actual
8294 -- subtypes directly if they are needed).
8296 if Is_Array_Type (Etype (N))
8297 and then Is_Packed (Etype (N))
8298 and then not Is_Constrained (Etype (N))
8299 and then Nkind (Parent (N)) /= N_Attribute_Reference
8300 and then Comes_From_Source (N)
8301 then
8302 Set_Etype (N, Get_Actual_Subtype (N));
8303 end if;
8305 Analyze_Dimension (N);
8307 -- Note: No Eval processing is required for an explicit dereference,
8308 -- because such a name can never be static.
8310 end Resolve_Explicit_Dereference;
8312 -------------------------------------
8313 -- Resolve_Expression_With_Actions --
8314 -------------------------------------
8316 procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id) is
8317 begin
8318 Set_Etype (N, Typ);
8320 -- If N has no actions, and its expression has been constant folded,
8321 -- then rewrite N as just its expression. Note, we can't do this in
8322 -- the general case of Is_Empty_List (Actions (N)) as this would cause
8323 -- Expression (N) to be expanded again.
8325 if Is_Empty_List (Actions (N))
8326 and then Compile_Time_Known_Value (Expression (N))
8327 then
8328 Rewrite (N, Expression (N));
8329 end if;
8330 end Resolve_Expression_With_Actions;
8332 ----------------------------------
8333 -- Resolve_Generalized_Indexing --
8334 ----------------------------------
8336 procedure Resolve_Generalized_Indexing (N : Node_Id; Typ : Entity_Id) is
8337 Indexing : constant Node_Id := Generalized_Indexing (N);
8338 Call : Node_Id;
8339 Indexes : List_Id;
8340 Pref : Node_Id;
8342 begin
8343 -- In ASIS mode, propagate the information about the indexes back to
8344 -- to the original indexing node. The generalized indexing is either
8345 -- a function call, or a dereference of one. The actuals include the
8346 -- prefix of the original node, which is the container expression.
8348 if ASIS_Mode then
8349 Resolve (Indexing, Typ);
8350 Set_Etype (N, Etype (Indexing));
8351 Set_Is_Overloaded (N, False);
8353 Call := Indexing;
8354 while Nkind_In (Call, N_Explicit_Dereference, N_Selected_Component)
8355 loop
8356 Call := Prefix (Call);
8357 end loop;
8359 if Nkind (Call) = N_Function_Call then
8360 Indexes := New_Copy_List (Parameter_Associations (Call));
8361 Pref := Remove_Head (Indexes);
8362 Set_Expressions (N, Indexes);
8364 -- If expression is to be reanalyzed, reset Generalized_Indexing
8365 -- to recreate call node, as is the case when the expression is
8366 -- part of an expression function.
8368 if In_Spec_Expression then
8369 Set_Generalized_Indexing (N, Empty);
8370 end if;
8372 Set_Prefix (N, Pref);
8373 end if;
8375 else
8376 Rewrite (N, Indexing);
8377 Resolve (N, Typ);
8378 end if;
8379 end Resolve_Generalized_Indexing;
8381 ---------------------------
8382 -- Resolve_If_Expression --
8383 ---------------------------
8385 procedure Resolve_If_Expression (N : Node_Id; Typ : Entity_Id) is
8386 Condition : constant Node_Id := First (Expressions (N));
8387 Then_Expr : Node_Id;
8388 Else_Expr : Node_Id;
8389 Else_Typ : Entity_Id;
8390 Then_Typ : Entity_Id;
8392 begin
8393 -- Defend against malformed expressions
8395 if No (Condition) then
8396 return;
8397 end if;
8399 Then_Expr := Next (Condition);
8401 if No (Then_Expr) then
8402 return;
8403 end if;
8405 Else_Expr := Next (Then_Expr);
8407 Resolve (Condition, Any_Boolean);
8408 Resolve (Then_Expr, Typ);
8409 Then_Typ := Etype (Then_Expr);
8411 -- When the "then" expression is of a scalar subtype different from the
8412 -- result subtype, then insert a conversion to ensure the generation of
8413 -- a constraint check. The same is done for the else part below, again
8414 -- comparing subtypes rather than base types.
8416 if Is_Scalar_Type (Then_Typ) and then Then_Typ /= Typ then
8417 Rewrite (Then_Expr, Convert_To (Typ, Then_Expr));
8418 Analyze_And_Resolve (Then_Expr, Typ);
8419 end if;
8421 -- If ELSE expression present, just resolve using the determined type
8422 -- If type is universal, resolve to any member of the class.
8424 if Present (Else_Expr) then
8425 if Typ = Universal_Integer then
8426 Resolve (Else_Expr, Any_Integer);
8428 elsif Typ = Universal_Real then
8429 Resolve (Else_Expr, Any_Real);
8431 else
8432 Resolve (Else_Expr, Typ);
8433 end if;
8435 Else_Typ := Etype (Else_Expr);
8437 if Is_Scalar_Type (Else_Typ) and then Else_Typ /= Typ then
8438 Rewrite (Else_Expr, Convert_To (Typ, Else_Expr));
8439 Analyze_And_Resolve (Else_Expr, Typ);
8441 -- Apply RM 4.5.7 (17/3): whether the expression is statically or
8442 -- dynamically tagged must be known statically.
8444 elsif Is_Tagged_Type (Typ) and then not Is_Class_Wide_Type (Typ) then
8445 if Is_Dynamically_Tagged (Then_Expr) /=
8446 Is_Dynamically_Tagged (Else_Expr)
8447 then
8448 Error_Msg_N ("all or none of the dependent expressions "
8449 & "can be dynamically tagged", N);
8450 end if;
8451 end if;
8453 -- If no ELSE expression is present, root type must be Standard.Boolean
8454 -- and we provide a Standard.True result converted to the appropriate
8455 -- Boolean type (in case it is a derived boolean type).
8457 elsif Root_Type (Typ) = Standard_Boolean then
8458 Else_Expr :=
8459 Convert_To (Typ, New_Occurrence_Of (Standard_True, Sloc (N)));
8460 Analyze_And_Resolve (Else_Expr, Typ);
8461 Append_To (Expressions (N), Else_Expr);
8463 else
8464 Error_Msg_N ("can only omit ELSE expression in Boolean case", N);
8465 Append_To (Expressions (N), Error);
8466 end if;
8468 Set_Etype (N, Typ);
8470 if not Error_Posted (N) then
8471 Eval_If_Expression (N);
8472 end if;
8474 Analyze_Dimension (N);
8475 end Resolve_If_Expression;
8477 -------------------------------
8478 -- Resolve_Indexed_Component --
8479 -------------------------------
8481 procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id) is
8482 Name : constant Node_Id := Prefix (N);
8483 Expr : Node_Id;
8484 Array_Type : Entity_Id := Empty; -- to prevent junk warning
8485 Index : Node_Id;
8487 begin
8488 if Present (Generalized_Indexing (N)) then
8489 Resolve_Generalized_Indexing (N, Typ);
8490 return;
8491 end if;
8493 if Is_Overloaded (Name) then
8495 -- Use the context type to select the prefix that yields the correct
8496 -- component type.
8498 declare
8499 I : Interp_Index;
8500 It : Interp;
8501 I1 : Interp_Index := 0;
8502 P : constant Node_Id := Prefix (N);
8503 Found : Boolean := False;
8505 begin
8506 Get_First_Interp (P, I, It);
8507 while Present (It.Typ) loop
8508 if (Is_Array_Type (It.Typ)
8509 and then Covers (Typ, Component_Type (It.Typ)))
8510 or else (Is_Access_Type (It.Typ)
8511 and then Is_Array_Type (Designated_Type (It.Typ))
8512 and then
8513 Covers
8514 (Typ,
8515 Component_Type (Designated_Type (It.Typ))))
8516 then
8517 if Found then
8518 It := Disambiguate (P, I1, I, Any_Type);
8520 if It = No_Interp then
8521 Error_Msg_N ("ambiguous prefix for indexing", N);
8522 Set_Etype (N, Typ);
8523 return;
8525 else
8526 Found := True;
8527 Array_Type := It.Typ;
8528 I1 := I;
8529 end if;
8531 else
8532 Found := True;
8533 Array_Type := It.Typ;
8534 I1 := I;
8535 end if;
8536 end if;
8538 Get_Next_Interp (I, It);
8539 end loop;
8540 end;
8542 else
8543 Array_Type := Etype (Name);
8544 end if;
8546 Resolve (Name, Array_Type);
8547 Array_Type := Get_Actual_Subtype_If_Available (Name);
8549 -- If prefix is access type, dereference to get real array type.
8550 -- Note: we do not apply an access check because the expander always
8551 -- introduces an explicit dereference, and the check will happen there.
8553 if Is_Access_Type (Array_Type) then
8554 Array_Type := Designated_Type (Array_Type);
8555 end if;
8557 -- If name was overloaded, set component type correctly now
8558 -- If a misplaced call to an entry family (which has no index types)
8559 -- return. Error will be diagnosed from calling context.
8561 if Is_Array_Type (Array_Type) then
8562 Set_Etype (N, Component_Type (Array_Type));
8563 else
8564 return;
8565 end if;
8567 Index := First_Index (Array_Type);
8568 Expr := First (Expressions (N));
8570 -- The prefix may have resolved to a string literal, in which case its
8571 -- etype has a special representation. This is only possible currently
8572 -- if the prefix is a static concatenation, written in functional
8573 -- notation.
8575 if Ekind (Array_Type) = E_String_Literal_Subtype then
8576 Resolve (Expr, Standard_Positive);
8578 else
8579 while Present (Index) and Present (Expr) loop
8580 Resolve (Expr, Etype (Index));
8581 Check_Unset_Reference (Expr);
8583 if Is_Scalar_Type (Etype (Expr)) then
8584 Apply_Scalar_Range_Check (Expr, Etype (Index));
8585 else
8586 Apply_Range_Check (Expr, Get_Actual_Subtype (Index));
8587 end if;
8589 Next_Index (Index);
8590 Next (Expr);
8591 end loop;
8592 end if;
8594 Analyze_Dimension (N);
8596 -- Do not generate the warning on suspicious index if we are analyzing
8597 -- package Ada.Tags; otherwise we will report the warning with the
8598 -- Prims_Ptr field of the dispatch table.
8600 if Scope (Etype (Prefix (N))) = Standard_Standard
8601 or else not
8602 Is_RTU (Cunit_Entity (Get_Source_Unit (Etype (Prefix (N)))),
8603 Ada_Tags)
8604 then
8605 Warn_On_Suspicious_Index (Name, First (Expressions (N)));
8606 Eval_Indexed_Component (N);
8607 end if;
8609 -- If the array type is atomic, and the component is not atomic, then
8610 -- this is worth a warning, since we have a situation where the access
8611 -- to the component may cause extra read/writes of the atomic array
8612 -- object, or partial word accesses, which could be unexpected.
8614 if Nkind (N) = N_Indexed_Component
8615 and then Is_Atomic_Ref_With_Address (N)
8616 and then not (Has_Atomic_Components (Array_Type)
8617 or else (Is_Entity_Name (Prefix (N))
8618 and then Has_Atomic_Components
8619 (Entity (Prefix (N)))))
8620 and then not Is_Atomic (Component_Type (Array_Type))
8621 then
8622 Error_Msg_N
8623 ("??access to non-atomic component of atomic array", Prefix (N));
8624 Error_Msg_N
8625 ("??\may cause unexpected accesses to atomic object", Prefix (N));
8626 end if;
8627 end Resolve_Indexed_Component;
8629 -----------------------------
8630 -- Resolve_Integer_Literal --
8631 -----------------------------
8633 procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id) is
8634 begin
8635 Set_Etype (N, Typ);
8636 Eval_Integer_Literal (N);
8637 end Resolve_Integer_Literal;
8639 --------------------------------
8640 -- Resolve_Intrinsic_Operator --
8641 --------------------------------
8643 procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id) is
8644 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8645 Op : Entity_Id;
8646 Arg1 : Node_Id;
8647 Arg2 : Node_Id;
8649 function Convert_Operand (Opnd : Node_Id) return Node_Id;
8650 -- If the operand is a literal, it cannot be the expression in a
8651 -- conversion. Use a qualified expression instead.
8653 ---------------------
8654 -- Convert_Operand --
8655 ---------------------
8657 function Convert_Operand (Opnd : Node_Id) return Node_Id is
8658 Loc : constant Source_Ptr := Sloc (Opnd);
8659 Res : Node_Id;
8661 begin
8662 if Nkind_In (Opnd, N_Integer_Literal, N_Real_Literal) then
8663 Res :=
8664 Make_Qualified_Expression (Loc,
8665 Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
8666 Expression => Relocate_Node (Opnd));
8667 Analyze (Res);
8669 else
8670 Res := Unchecked_Convert_To (Btyp, Opnd);
8671 end if;
8673 return Res;
8674 end Convert_Operand;
8676 -- Start of processing for Resolve_Intrinsic_Operator
8678 begin
8679 -- We must preserve the original entity in a generic setting, so that
8680 -- the legality of the operation can be verified in an instance.
8682 if not Expander_Active then
8683 return;
8684 end if;
8686 Op := Entity (N);
8687 while Scope (Op) /= Standard_Standard loop
8688 Op := Homonym (Op);
8689 pragma Assert (Present (Op));
8690 end loop;
8692 Set_Entity (N, Op);
8693 Set_Is_Overloaded (N, False);
8695 -- If the result or operand types are private, rewrite with unchecked
8696 -- conversions on the operands and the result, to expose the proper
8697 -- underlying numeric type.
8699 if Is_Private_Type (Typ)
8700 or else Is_Private_Type (Etype (Left_Opnd (N)))
8701 or else Is_Private_Type (Etype (Right_Opnd (N)))
8702 then
8703 Arg1 := Convert_Operand (Left_Opnd (N));
8705 if Nkind (N) = N_Op_Expon then
8706 Arg2 := Unchecked_Convert_To (Standard_Integer, Right_Opnd (N));
8707 else
8708 Arg2 := Convert_Operand (Right_Opnd (N));
8709 end if;
8711 if Nkind (Arg1) = N_Type_Conversion then
8712 Save_Interps (Left_Opnd (N), Expression (Arg1));
8713 end if;
8715 if Nkind (Arg2) = N_Type_Conversion then
8716 Save_Interps (Right_Opnd (N), Expression (Arg2));
8717 end if;
8719 Set_Left_Opnd (N, Arg1);
8720 Set_Right_Opnd (N, Arg2);
8722 Set_Etype (N, Btyp);
8723 Rewrite (N, Unchecked_Convert_To (Typ, N));
8724 Resolve (N, Typ);
8726 elsif Typ /= Etype (Left_Opnd (N))
8727 or else Typ /= Etype (Right_Opnd (N))
8728 then
8729 -- Add explicit conversion where needed, and save interpretations in
8730 -- case operands are overloaded.
8732 Arg1 := Convert_To (Typ, Left_Opnd (N));
8733 Arg2 := Convert_To (Typ, Right_Opnd (N));
8735 if Nkind (Arg1) = N_Type_Conversion then
8736 Save_Interps (Left_Opnd (N), Expression (Arg1));
8737 else
8738 Save_Interps (Left_Opnd (N), Arg1);
8739 end if;
8741 if Nkind (Arg2) = N_Type_Conversion then
8742 Save_Interps (Right_Opnd (N), Expression (Arg2));
8743 else
8744 Save_Interps (Right_Opnd (N), Arg2);
8745 end if;
8747 Rewrite (Left_Opnd (N), Arg1);
8748 Rewrite (Right_Opnd (N), Arg2);
8749 Analyze (Arg1);
8750 Analyze (Arg2);
8751 Resolve_Arithmetic_Op (N, Typ);
8753 else
8754 Resolve_Arithmetic_Op (N, Typ);
8755 end if;
8756 end Resolve_Intrinsic_Operator;
8758 --------------------------------------
8759 -- Resolve_Intrinsic_Unary_Operator --
8760 --------------------------------------
8762 procedure Resolve_Intrinsic_Unary_Operator
8763 (N : Node_Id;
8764 Typ : Entity_Id)
8766 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8767 Op : Entity_Id;
8768 Arg2 : Node_Id;
8770 begin
8771 Op := Entity (N);
8772 while Scope (Op) /= Standard_Standard loop
8773 Op := Homonym (Op);
8774 pragma Assert (Present (Op));
8775 end loop;
8777 Set_Entity (N, Op);
8779 if Is_Private_Type (Typ) then
8780 Arg2 := Unchecked_Convert_To (Btyp, Right_Opnd (N));
8781 Save_Interps (Right_Opnd (N), Expression (Arg2));
8783 Set_Right_Opnd (N, Arg2);
8785 Set_Etype (N, Btyp);
8786 Rewrite (N, Unchecked_Convert_To (Typ, N));
8787 Resolve (N, Typ);
8789 else
8790 Resolve_Unary_Op (N, Typ);
8791 end if;
8792 end Resolve_Intrinsic_Unary_Operator;
8794 ------------------------
8795 -- Resolve_Logical_Op --
8796 ------------------------
8798 procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id) is
8799 B_Typ : Entity_Id;
8801 begin
8802 Check_No_Direct_Boolean_Operators (N);
8804 -- Predefined operations on scalar types yield the base type. On the
8805 -- other hand, logical operations on arrays yield the type of the
8806 -- arguments (and the context).
8808 if Is_Array_Type (Typ) then
8809 B_Typ := Typ;
8810 else
8811 B_Typ := Base_Type (Typ);
8812 end if;
8814 -- The following test is required because the operands of the operation
8815 -- may be literals, in which case the resulting type appears to be
8816 -- compatible with a signed integer type, when in fact it is compatible
8817 -- only with modular types. If the context itself is universal, the
8818 -- operation is illegal.
8820 if not Valid_Boolean_Arg (Typ) then
8821 Error_Msg_N ("invalid context for logical operation", N);
8822 Set_Etype (N, Any_Type);
8823 return;
8825 elsif Typ = Any_Modular then
8826 Error_Msg_N
8827 ("no modular type available in this context", N);
8828 Set_Etype (N, Any_Type);
8829 return;
8831 elsif Is_Modular_Integer_Type (Typ)
8832 and then Etype (Left_Opnd (N)) = Universal_Integer
8833 and then Etype (Right_Opnd (N)) = Universal_Integer
8834 then
8835 Check_For_Visible_Operator (N, B_Typ);
8836 end if;
8838 -- Replace AND by AND THEN, or OR by OR ELSE, if Short_Circuit_And_Or
8839 -- is active and the result type is standard Boolean (do not mess with
8840 -- ops that return a nonstandard Boolean type, because something strange
8841 -- is going on).
8843 -- Note: you might expect this replacement to be done during expansion,
8844 -- but that doesn't work, because when the pragma Short_Circuit_And_Or
8845 -- is used, no part of the right operand of an "and" or "or" operator
8846 -- should be executed if the left operand would short-circuit the
8847 -- evaluation of the corresponding "and then" or "or else". If we left
8848 -- the replacement to expansion time, then run-time checks associated
8849 -- with such operands would be evaluated unconditionally, due to being
8850 -- before the condition prior to the rewriting as short-circuit forms
8851 -- during expansion.
8853 if Short_Circuit_And_Or
8854 and then B_Typ = Standard_Boolean
8855 and then Nkind_In (N, N_Op_And, N_Op_Or)
8856 then
8857 -- Mark the corresponding putative SCO operator as truly a logical
8858 -- (and short-circuit) operator.
8860 if Generate_SCO and then Comes_From_Source (N) then
8861 Set_SCO_Logical_Operator (N);
8862 end if;
8864 if Nkind (N) = N_Op_And then
8865 Rewrite (N,
8866 Make_And_Then (Sloc (N),
8867 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8868 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8869 Analyze_And_Resolve (N, B_Typ);
8871 -- Case of OR changed to OR ELSE
8873 else
8874 Rewrite (N,
8875 Make_Or_Else (Sloc (N),
8876 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8877 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8878 Analyze_And_Resolve (N, B_Typ);
8879 end if;
8881 -- Return now, since analysis of the rewritten ops will take care of
8882 -- other reference bookkeeping and expression folding.
8884 return;
8885 end if;
8887 Resolve (Left_Opnd (N), B_Typ);
8888 Resolve (Right_Opnd (N), B_Typ);
8890 Check_Unset_Reference (Left_Opnd (N));
8891 Check_Unset_Reference (Right_Opnd (N));
8893 Set_Etype (N, B_Typ);
8894 Generate_Operator_Reference (N, B_Typ);
8895 Eval_Logical_Op (N);
8897 -- In SPARK, logical operations AND, OR and XOR for arrays are defined
8898 -- only when both operands have same static lower and higher bounds. Of
8899 -- course the types have to match, so only check if operands are
8900 -- compatible and the node itself has no errors.
8902 if Is_Array_Type (B_Typ)
8903 and then Nkind (N) in N_Binary_Op
8904 then
8905 declare
8906 Left_Typ : constant Node_Id := Etype (Left_Opnd (N));
8907 Right_Typ : constant Node_Id := Etype (Right_Opnd (N));
8909 begin
8910 -- Protect call to Matching_Static_Array_Bounds to avoid costly
8911 -- operation if not needed.
8913 if Restriction_Check_Required (SPARK_05)
8914 and then Base_Type (Left_Typ) = Base_Type (Right_Typ)
8915 and then Left_Typ /= Any_Composite -- or Left_Opnd in error
8916 and then Right_Typ /= Any_Composite -- or Right_Opnd in error
8917 and then not Matching_Static_Array_Bounds (Left_Typ, Right_Typ)
8918 then
8919 Check_SPARK_05_Restriction
8920 ("array types should have matching static bounds", N);
8921 end if;
8922 end;
8923 end if;
8924 end Resolve_Logical_Op;
8926 ---------------------------
8927 -- Resolve_Membership_Op --
8928 ---------------------------
8930 -- The context can only be a boolean type, and does not determine the
8931 -- arguments. Arguments should be unambiguous, but the preference rule for
8932 -- universal types applies.
8934 procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id) is
8935 pragma Warnings (Off, Typ);
8937 L : constant Node_Id := Left_Opnd (N);
8938 R : constant Node_Id := Right_Opnd (N);
8939 T : Entity_Id;
8941 procedure Resolve_Set_Membership;
8942 -- Analysis has determined a unique type for the left operand. Use it to
8943 -- resolve the disjuncts.
8945 ----------------------------
8946 -- Resolve_Set_Membership --
8947 ----------------------------
8949 procedure Resolve_Set_Membership is
8950 Alt : Node_Id;
8951 Ltyp : Entity_Id;
8953 begin
8954 -- If the left operand is overloaded, find type compatible with not
8955 -- overloaded alternative of the right operand.
8957 if Is_Overloaded (L) then
8958 Ltyp := Empty;
8959 Alt := First (Alternatives (N));
8960 while Present (Alt) loop
8961 if not Is_Overloaded (Alt) then
8962 Ltyp := Intersect_Types (L, Alt);
8963 exit;
8964 else
8965 Next (Alt);
8966 end if;
8967 end loop;
8969 -- Unclear how to resolve expression if all alternatives are also
8970 -- overloaded.
8972 if No (Ltyp) then
8973 Error_Msg_N ("ambiguous expression", N);
8974 end if;
8976 else
8977 Ltyp := Etype (L);
8978 end if;
8980 Resolve (L, Ltyp);
8982 Alt := First (Alternatives (N));
8983 while Present (Alt) loop
8985 -- Alternative is an expression, a range
8986 -- or a subtype mark.
8988 if not Is_Entity_Name (Alt)
8989 or else not Is_Type (Entity (Alt))
8990 then
8991 Resolve (Alt, Ltyp);
8992 end if;
8994 Next (Alt);
8995 end loop;
8997 -- Check for duplicates for discrete case
8999 if Is_Discrete_Type (Ltyp) then
9000 declare
9001 type Ent is record
9002 Alt : Node_Id;
9003 Val : Uint;
9004 end record;
9006 Alts : array (0 .. List_Length (Alternatives (N))) of Ent;
9007 Nalts : Nat;
9009 begin
9010 -- Loop checking duplicates. This is quadratic, but giant sets
9011 -- are unlikely in this context so it's a reasonable choice.
9013 Nalts := 0;
9014 Alt := First (Alternatives (N));
9015 while Present (Alt) loop
9016 if Is_OK_Static_Expression (Alt)
9017 and then (Nkind_In (Alt, N_Integer_Literal,
9018 N_Character_Literal)
9019 or else Nkind (Alt) in N_Has_Entity)
9020 then
9021 Nalts := Nalts + 1;
9022 Alts (Nalts) := (Alt, Expr_Value (Alt));
9024 for J in 1 .. Nalts - 1 loop
9025 if Alts (J).Val = Alts (Nalts).Val then
9026 Error_Msg_Sloc := Sloc (Alts (J).Alt);
9027 Error_Msg_N ("duplicate of value given#??", Alt);
9028 end if;
9029 end loop;
9030 end if;
9032 Alt := Next (Alt);
9033 end loop;
9034 end;
9035 end if;
9036 end Resolve_Set_Membership;
9038 -- Start of processing for Resolve_Membership_Op
9040 begin
9041 if L = Error or else R = Error then
9042 return;
9043 end if;
9045 if Present (Alternatives (N)) then
9046 Resolve_Set_Membership;
9047 goto SM_Exit;
9049 elsif not Is_Overloaded (R)
9050 and then
9051 (Etype (R) = Universal_Integer
9052 or else
9053 Etype (R) = Universal_Real)
9054 and then Is_Overloaded (L)
9055 then
9056 T := Etype (R);
9058 -- Ada 2005 (AI-251): Support the following case:
9060 -- type I is interface;
9061 -- type T is tagged ...
9063 -- function Test (O : I'Class) is
9064 -- begin
9065 -- return O in T'Class.
9066 -- end Test;
9068 -- In this case we have nothing else to do. The membership test will be
9069 -- done at run time.
9071 elsif Ada_Version >= Ada_2005
9072 and then Is_Class_Wide_Type (Etype (L))
9073 and then Is_Interface (Etype (L))
9074 and then Is_Class_Wide_Type (Etype (R))
9075 and then not Is_Interface (Etype (R))
9076 then
9077 return;
9078 else
9079 T := Intersect_Types (L, R);
9080 end if;
9082 -- If mixed-mode operations are present and operands are all literal,
9083 -- the only interpretation involves Duration, which is probably not
9084 -- the intention of the programmer.
9086 if T = Any_Fixed then
9087 T := Unique_Fixed_Point_Type (N);
9089 if T = Any_Type then
9090 return;
9091 end if;
9092 end if;
9094 Resolve (L, T);
9095 Check_Unset_Reference (L);
9097 if Nkind (R) = N_Range
9098 and then not Is_Scalar_Type (T)
9099 then
9100 Error_Msg_N ("scalar type required for range", R);
9101 end if;
9103 if Is_Entity_Name (R) then
9104 Freeze_Expression (R);
9105 else
9106 Resolve (R, T);
9107 Check_Unset_Reference (R);
9108 end if;
9110 -- Here after resolving membership operation
9112 <<SM_Exit>>
9114 Eval_Membership_Op (N);
9115 end Resolve_Membership_Op;
9117 ------------------
9118 -- Resolve_Null --
9119 ------------------
9121 procedure Resolve_Null (N : Node_Id; Typ : Entity_Id) is
9122 Loc : constant Source_Ptr := Sloc (N);
9124 begin
9125 -- Handle restriction against anonymous null access values This
9126 -- restriction can be turned off using -gnatdj.
9128 -- Ada 2005 (AI-231): Remove restriction
9130 if Ada_Version < Ada_2005
9131 and then not Debug_Flag_J
9132 and then Ekind (Typ) = E_Anonymous_Access_Type
9133 and then Comes_From_Source (N)
9134 then
9135 -- In the common case of a call which uses an explicitly null value
9136 -- for an access parameter, give specialized error message.
9138 if Nkind (Parent (N)) in N_Subprogram_Call then
9139 Error_Msg_N
9140 ("null is not allowed as argument for an access parameter", N);
9142 -- Standard message for all other cases (are there any?)
9144 else
9145 Error_Msg_N
9146 ("null cannot be of an anonymous access type", N);
9147 end if;
9148 end if;
9150 -- Ada 2005 (AI-231): Generate the null-excluding check in case of
9151 -- assignment to a null-excluding object
9153 if Ada_Version >= Ada_2005
9154 and then Can_Never_Be_Null (Typ)
9155 and then Nkind (Parent (N)) = N_Assignment_Statement
9156 then
9157 if not Inside_Init_Proc then
9158 Insert_Action
9159 (Compile_Time_Constraint_Error (N,
9160 "(Ada 2005) null not allowed in null-excluding objects??"),
9161 Make_Raise_Constraint_Error (Loc,
9162 Reason => CE_Access_Check_Failed));
9163 else
9164 Insert_Action (N,
9165 Make_Raise_Constraint_Error (Loc,
9166 Reason => CE_Access_Check_Failed));
9167 end if;
9168 end if;
9170 -- In a distributed context, null for a remote access to subprogram may
9171 -- need to be replaced with a special record aggregate. In this case,
9172 -- return after having done the transformation.
9174 if (Ekind (Typ) = E_Record_Type
9175 or else Is_Remote_Access_To_Subprogram_Type (Typ))
9176 and then Remote_AST_Null_Value (N, Typ)
9177 then
9178 return;
9179 end if;
9181 -- The null literal takes its type from the context
9183 Set_Etype (N, Typ);
9184 end Resolve_Null;
9186 -----------------------
9187 -- Resolve_Op_Concat --
9188 -----------------------
9190 procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id) is
9192 -- We wish to avoid deep recursion, because concatenations are often
9193 -- deeply nested, as in A&B&...&Z. Therefore, we walk down the left
9194 -- operands nonrecursively until we find something that is not a simple
9195 -- concatenation (A in this case). We resolve that, and then walk back
9196 -- up the tree following Parent pointers, calling Resolve_Op_Concat_Rest
9197 -- to do the rest of the work at each level. The Parent pointers allow
9198 -- us to avoid recursion, and thus avoid running out of memory. See also
9199 -- Sem_Ch4.Analyze_Concatenation, where a similar approach is used.
9201 NN : Node_Id := N;
9202 Op1 : Node_Id;
9204 begin
9205 -- The following code is equivalent to:
9207 -- Resolve_Op_Concat_First (NN, Typ);
9208 -- Resolve_Op_Concat_Arg (N, ...);
9209 -- Resolve_Op_Concat_Rest (N, Typ);
9211 -- where the Resolve_Op_Concat_Arg call recurses back here if the left
9212 -- operand is a concatenation.
9214 -- Walk down left operands
9216 loop
9217 Resolve_Op_Concat_First (NN, Typ);
9218 Op1 := Left_Opnd (NN);
9219 exit when not (Nkind (Op1) = N_Op_Concat
9220 and then not Is_Array_Type (Component_Type (Typ))
9221 and then Entity (Op1) = Entity (NN));
9222 NN := Op1;
9223 end loop;
9225 -- Now (given the above example) NN is A&B and Op1 is A
9227 -- First resolve Op1 ...
9229 Resolve_Op_Concat_Arg (NN, Op1, Typ, Is_Component_Left_Opnd (NN));
9231 -- ... then walk NN back up until we reach N (where we started), calling
9232 -- Resolve_Op_Concat_Rest along the way.
9234 loop
9235 Resolve_Op_Concat_Rest (NN, Typ);
9236 exit when NN = N;
9237 NN := Parent (NN);
9238 end loop;
9240 if Base_Type (Etype (N)) /= Standard_String then
9241 Check_SPARK_05_Restriction
9242 ("result of concatenation should have type String", N);
9243 end if;
9244 end Resolve_Op_Concat;
9246 ---------------------------
9247 -- Resolve_Op_Concat_Arg --
9248 ---------------------------
9250 procedure Resolve_Op_Concat_Arg
9251 (N : Node_Id;
9252 Arg : Node_Id;
9253 Typ : Entity_Id;
9254 Is_Comp : Boolean)
9256 Btyp : constant Entity_Id := Base_Type (Typ);
9257 Ctyp : constant Entity_Id := Component_Type (Typ);
9259 begin
9260 if In_Instance then
9261 if Is_Comp
9262 or else (not Is_Overloaded (Arg)
9263 and then Etype (Arg) /= Any_Composite
9264 and then Covers (Ctyp, Etype (Arg)))
9265 then
9266 Resolve (Arg, Ctyp);
9267 else
9268 Resolve (Arg, Btyp);
9269 end if;
9271 -- If both Array & Array and Array & Component are visible, there is a
9272 -- potential ambiguity that must be reported.
9274 elsif Has_Compatible_Type (Arg, Ctyp) then
9275 if Nkind (Arg) = N_Aggregate
9276 and then Is_Composite_Type (Ctyp)
9277 then
9278 if Is_Private_Type (Ctyp) then
9279 Resolve (Arg, Btyp);
9281 -- If the operation is user-defined and not overloaded use its
9282 -- profile. The operation may be a renaming, in which case it has
9283 -- been rewritten, and we want the original profile.
9285 elsif not Is_Overloaded (N)
9286 and then Comes_From_Source (Entity (Original_Node (N)))
9287 and then Ekind (Entity (Original_Node (N))) = E_Function
9288 then
9289 Resolve (Arg,
9290 Etype
9291 (Next_Formal (First_Formal (Entity (Original_Node (N))))));
9292 return;
9294 -- Otherwise an aggregate may match both the array type and the
9295 -- component type.
9297 else
9298 Error_Msg_N ("ambiguous aggregate must be qualified", Arg);
9299 Set_Etype (Arg, Any_Type);
9300 end if;
9302 else
9303 if Is_Overloaded (Arg)
9304 and then Has_Compatible_Type (Arg, Typ)
9305 and then Etype (Arg) /= Any_Type
9306 then
9307 declare
9308 I : Interp_Index;
9309 It : Interp;
9310 Func : Entity_Id;
9312 begin
9313 Get_First_Interp (Arg, I, It);
9314 Func := It.Nam;
9315 Get_Next_Interp (I, It);
9317 -- Special-case the error message when the overloading is
9318 -- caused by a function that yields an array and can be
9319 -- called without parameters.
9321 if It.Nam = Func then
9322 Error_Msg_Sloc := Sloc (Func);
9323 Error_Msg_N ("ambiguous call to function#", Arg);
9324 Error_Msg_NE
9325 ("\\interpretation as call yields&", Arg, Typ);
9326 Error_Msg_NE
9327 ("\\interpretation as indexing of call yields&",
9328 Arg, Component_Type (Typ));
9330 else
9331 Error_Msg_N ("ambiguous operand for concatenation!", Arg);
9333 Get_First_Interp (Arg, I, It);
9334 while Present (It.Nam) loop
9335 Error_Msg_Sloc := Sloc (It.Nam);
9337 if Base_Type (It.Typ) = Btyp
9338 or else
9339 Base_Type (It.Typ) = Base_Type (Ctyp)
9340 then
9341 Error_Msg_N -- CODEFIX
9342 ("\\possible interpretation#", Arg);
9343 end if;
9345 Get_Next_Interp (I, It);
9346 end loop;
9347 end if;
9348 end;
9349 end if;
9351 Resolve (Arg, Component_Type (Typ));
9353 if Nkind (Arg) = N_String_Literal then
9354 Set_Etype (Arg, Component_Type (Typ));
9355 end if;
9357 if Arg = Left_Opnd (N) then
9358 Set_Is_Component_Left_Opnd (N);
9359 else
9360 Set_Is_Component_Right_Opnd (N);
9361 end if;
9362 end if;
9364 else
9365 Resolve (Arg, Btyp);
9366 end if;
9368 -- Concatenation is restricted in SPARK: each operand must be either a
9369 -- string literal, the name of a string constant, a static character or
9370 -- string expression, or another concatenation. Arg cannot be a
9371 -- concatenation here as callers of Resolve_Op_Concat_Arg call it
9372 -- separately on each final operand, past concatenation operations.
9374 if Is_Character_Type (Etype (Arg)) then
9375 if not Is_OK_Static_Expression (Arg) then
9376 Check_SPARK_05_Restriction
9377 ("character operand for concatenation should be static", Arg);
9378 end if;
9380 elsif Is_String_Type (Etype (Arg)) then
9381 if not (Nkind_In (Arg, N_Identifier, N_Expanded_Name)
9382 and then Is_Constant_Object (Entity (Arg)))
9383 and then not Is_OK_Static_Expression (Arg)
9384 then
9385 Check_SPARK_05_Restriction
9386 ("string operand for concatenation should be static", Arg);
9387 end if;
9389 -- Do not issue error on an operand that is neither a character nor a
9390 -- string, as the error is issued in Resolve_Op_Concat.
9392 else
9393 null;
9394 end if;
9396 Check_Unset_Reference (Arg);
9397 end Resolve_Op_Concat_Arg;
9399 -----------------------------
9400 -- Resolve_Op_Concat_First --
9401 -----------------------------
9403 procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id) is
9404 Btyp : constant Entity_Id := Base_Type (Typ);
9405 Op1 : constant Node_Id := Left_Opnd (N);
9406 Op2 : constant Node_Id := Right_Opnd (N);
9408 begin
9409 -- The parser folds an enormous sequence of concatenations of string
9410 -- literals into "" & "...", where the Is_Folded_In_Parser flag is set
9411 -- in the right operand. If the expression resolves to a predefined "&"
9412 -- operator, all is well. Otherwise, the parser's folding is wrong, so
9413 -- we give an error. See P_Simple_Expression in Par.Ch4.
9415 if Nkind (Op2) = N_String_Literal
9416 and then Is_Folded_In_Parser (Op2)
9417 and then Ekind (Entity (N)) = E_Function
9418 then
9419 pragma Assert (Nkind (Op1) = N_String_Literal -- should be ""
9420 and then String_Length (Strval (Op1)) = 0);
9421 Error_Msg_N ("too many user-defined concatenations", N);
9422 return;
9423 end if;
9425 Set_Etype (N, Btyp);
9427 if Is_Limited_Composite (Btyp) then
9428 Error_Msg_N ("concatenation not available for limited array", N);
9429 Explain_Limited_Type (Btyp, N);
9430 end if;
9431 end Resolve_Op_Concat_First;
9433 ----------------------------
9434 -- Resolve_Op_Concat_Rest --
9435 ----------------------------
9437 procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id) is
9438 Op1 : constant Node_Id := Left_Opnd (N);
9439 Op2 : constant Node_Id := Right_Opnd (N);
9441 begin
9442 Resolve_Op_Concat_Arg (N, Op2, Typ, Is_Component_Right_Opnd (N));
9444 Generate_Operator_Reference (N, Typ);
9446 if Is_String_Type (Typ) then
9447 Eval_Concatenation (N);
9448 end if;
9450 -- If this is not a static concatenation, but the result is a string
9451 -- type (and not an array of strings) ensure that static string operands
9452 -- have their subtypes properly constructed.
9454 if Nkind (N) /= N_String_Literal
9455 and then Is_Character_Type (Component_Type (Typ))
9456 then
9457 Set_String_Literal_Subtype (Op1, Typ);
9458 Set_String_Literal_Subtype (Op2, Typ);
9459 end if;
9460 end Resolve_Op_Concat_Rest;
9462 ----------------------
9463 -- Resolve_Op_Expon --
9464 ----------------------
9466 procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id) is
9467 B_Typ : constant Entity_Id := Base_Type (Typ);
9469 begin
9470 -- Catch attempts to do fixed-point exponentiation with universal
9471 -- operands, which is a case where the illegality is not caught during
9472 -- normal operator analysis. This is not done in preanalysis mode
9473 -- since the tree is not fully decorated during preanalysis.
9475 if Full_Analysis then
9476 if Is_Fixed_Point_Type (Typ) and then Comes_From_Source (N) then
9477 Error_Msg_N ("exponentiation not available for fixed point", N);
9478 return;
9480 elsif Nkind (Parent (N)) in N_Op
9481 and then Present (Etype (Parent (N)))
9482 and then Is_Fixed_Point_Type (Etype (Parent (N)))
9483 and then Etype (N) = Universal_Real
9484 and then Comes_From_Source (N)
9485 then
9486 Error_Msg_N ("exponentiation not available for fixed point", N);
9487 return;
9488 end if;
9489 end if;
9491 if Comes_From_Source (N)
9492 and then Ekind (Entity (N)) = E_Function
9493 and then Is_Imported (Entity (N))
9494 and then Is_Intrinsic_Subprogram (Entity (N))
9495 then
9496 Resolve_Intrinsic_Operator (N, Typ);
9497 return;
9498 end if;
9500 if Etype (Left_Opnd (N)) = Universal_Integer
9501 or else Etype (Left_Opnd (N)) = Universal_Real
9502 then
9503 Check_For_Visible_Operator (N, B_Typ);
9504 end if;
9506 -- We do the resolution using the base type, because intermediate values
9507 -- in expressions are always of the base type, not a subtype of it.
9509 Resolve (Left_Opnd (N), B_Typ);
9510 Resolve (Right_Opnd (N), Standard_Integer);
9512 -- For integer types, right argument must be in Natural range
9514 if Is_Integer_Type (Typ) then
9515 Apply_Scalar_Range_Check (Right_Opnd (N), Standard_Natural);
9516 end if;
9518 Check_Unset_Reference (Left_Opnd (N));
9519 Check_Unset_Reference (Right_Opnd (N));
9521 Set_Etype (N, B_Typ);
9522 Generate_Operator_Reference (N, B_Typ);
9524 Analyze_Dimension (N);
9526 if Ada_Version >= Ada_2012 and then Has_Dimension_System (B_Typ) then
9527 -- Evaluate the exponentiation operator for dimensioned type
9529 Eval_Op_Expon_For_Dimensioned_Type (N, B_Typ);
9530 else
9531 Eval_Op_Expon (N);
9532 end if;
9534 -- Set overflow checking bit. Much cleverer code needed here eventually
9535 -- and perhaps the Resolve routines should be separated for the various
9536 -- arithmetic operations, since they will need different processing. ???
9538 if Nkind (N) in N_Op then
9539 if not Overflow_Checks_Suppressed (Etype (N)) then
9540 Enable_Overflow_Check (N);
9541 end if;
9542 end if;
9543 end Resolve_Op_Expon;
9545 --------------------
9546 -- Resolve_Op_Not --
9547 --------------------
9549 procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id) is
9550 B_Typ : Entity_Id;
9552 function Parent_Is_Boolean return Boolean;
9553 -- This function determines if the parent node is a boolean operator or
9554 -- operation (comparison op, membership test, or short circuit form) and
9555 -- the not in question is the left operand of this operation. Note that
9556 -- if the not is in parens, then false is returned.
9558 -----------------------
9559 -- Parent_Is_Boolean --
9560 -----------------------
9562 function Parent_Is_Boolean return Boolean is
9563 begin
9564 if Paren_Count (N) /= 0 then
9565 return False;
9567 else
9568 case Nkind (Parent (N)) is
9569 when N_And_Then
9570 | N_In
9571 | N_Not_In
9572 | N_Op_And
9573 | N_Op_Eq
9574 | N_Op_Ge
9575 | N_Op_Gt
9576 | N_Op_Le
9577 | N_Op_Lt
9578 | N_Op_Ne
9579 | N_Op_Or
9580 | N_Op_Xor
9581 | N_Or_Else
9583 return Left_Opnd (Parent (N)) = N;
9585 when others =>
9586 return False;
9587 end case;
9588 end if;
9589 end Parent_Is_Boolean;
9591 -- Start of processing for Resolve_Op_Not
9593 begin
9594 -- Predefined operations on scalar types yield the base type. On the
9595 -- other hand, logical operations on arrays yield the type of the
9596 -- arguments (and the context).
9598 if Is_Array_Type (Typ) then
9599 B_Typ := Typ;
9600 else
9601 B_Typ := Base_Type (Typ);
9602 end if;
9604 -- Straightforward case of incorrect arguments
9606 if not Valid_Boolean_Arg (Typ) then
9607 Error_Msg_N ("invalid operand type for operator&", N);
9608 Set_Etype (N, Any_Type);
9609 return;
9611 -- Special case of probable missing parens
9613 elsif Typ = Universal_Integer or else Typ = Any_Modular then
9614 if Parent_Is_Boolean then
9615 Error_Msg_N
9616 ("operand of not must be enclosed in parentheses",
9617 Right_Opnd (N));
9618 else
9619 Error_Msg_N
9620 ("no modular type available in this context", N);
9621 end if;
9623 Set_Etype (N, Any_Type);
9624 return;
9626 -- OK resolution of NOT
9628 else
9629 -- Warn if non-boolean types involved. This is a case like not a < b
9630 -- where a and b are modular, where we will get (not a) < b and most
9631 -- likely not (a < b) was intended.
9633 if Warn_On_Questionable_Missing_Parens
9634 and then not Is_Boolean_Type (Typ)
9635 and then Parent_Is_Boolean
9636 then
9637 Error_Msg_N ("?q?not expression should be parenthesized here!", N);
9638 end if;
9640 -- Warn on double negation if checking redundant constructs
9642 if Warn_On_Redundant_Constructs
9643 and then Comes_From_Source (N)
9644 and then Comes_From_Source (Right_Opnd (N))
9645 and then Root_Type (Typ) = Standard_Boolean
9646 and then Nkind (Right_Opnd (N)) = N_Op_Not
9647 then
9648 Error_Msg_N ("redundant double negation?r?", N);
9649 end if;
9651 -- Complete resolution and evaluation of NOT
9653 Resolve (Right_Opnd (N), B_Typ);
9654 Check_Unset_Reference (Right_Opnd (N));
9655 Set_Etype (N, B_Typ);
9656 Generate_Operator_Reference (N, B_Typ);
9657 Eval_Op_Not (N);
9658 end if;
9659 end Resolve_Op_Not;
9661 -----------------------------
9662 -- Resolve_Operator_Symbol --
9663 -----------------------------
9665 -- Nothing to be done, all resolved already
9667 procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id) is
9668 pragma Warnings (Off, N);
9669 pragma Warnings (Off, Typ);
9671 begin
9672 null;
9673 end Resolve_Operator_Symbol;
9675 ----------------------------------
9676 -- Resolve_Qualified_Expression --
9677 ----------------------------------
9679 procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id) is
9680 pragma Warnings (Off, Typ);
9682 Target_Typ : constant Entity_Id := Entity (Subtype_Mark (N));
9683 Expr : constant Node_Id := Expression (N);
9685 begin
9686 Resolve (Expr, Target_Typ);
9688 -- Protect call to Matching_Static_Array_Bounds to avoid costly
9689 -- operation if not needed.
9691 if Restriction_Check_Required (SPARK_05)
9692 and then Is_Array_Type (Target_Typ)
9693 and then Is_Array_Type (Etype (Expr))
9694 and then Etype (Expr) /= Any_Composite -- or else Expr in error
9695 and then not Matching_Static_Array_Bounds (Target_Typ, Etype (Expr))
9696 then
9697 Check_SPARK_05_Restriction
9698 ("array types should have matching static bounds", N);
9699 end if;
9701 -- A qualified expression requires an exact match of the type, class-
9702 -- wide matching is not allowed. However, if the qualifying type is
9703 -- specific and the expression has a class-wide type, it may still be
9704 -- okay, since it can be the result of the expansion of a call to a
9705 -- dispatching function, so we also have to check class-wideness of the
9706 -- type of the expression's original node.
9708 if (Is_Class_Wide_Type (Target_Typ)
9709 or else
9710 (Is_Class_Wide_Type (Etype (Expr))
9711 and then Is_Class_Wide_Type (Etype (Original_Node (Expr)))))
9712 and then Base_Type (Etype (Expr)) /= Base_Type (Target_Typ)
9713 then
9714 Wrong_Type (Expr, Target_Typ);
9715 end if;
9717 -- If the target type is unconstrained, then we reset the type of the
9718 -- result from the type of the expression. For other cases, the actual
9719 -- subtype of the expression is the target type.
9721 if Is_Composite_Type (Target_Typ)
9722 and then not Is_Constrained (Target_Typ)
9723 then
9724 Set_Etype (N, Etype (Expr));
9725 end if;
9727 Analyze_Dimension (N);
9728 Eval_Qualified_Expression (N);
9730 -- If we still have a qualified expression after the static evaluation,
9731 -- then apply a scalar range check if needed. The reason that we do this
9732 -- after the Eval call is that otherwise, the application of the range
9733 -- check may convert an illegal static expression and result in warning
9734 -- rather than giving an error (e.g Integer'(Integer'Last + 1)).
9736 if Nkind (N) = N_Qualified_Expression and then Is_Scalar_Type (Typ) then
9737 Apply_Scalar_Range_Check (Expr, Typ);
9738 end if;
9740 -- Finally, check whether a predicate applies to the target type. This
9741 -- comes from AI12-0100. As for type conversions, check the enclosing
9742 -- context to prevent an infinite expansion.
9744 if Has_Predicates (Target_Typ) then
9745 if Nkind (Parent (N)) = N_Function_Call
9746 and then Present (Name (Parent (N)))
9747 and then (Is_Predicate_Function (Entity (Name (Parent (N))))
9748 or else
9749 Is_Predicate_Function_M (Entity (Name (Parent (N)))))
9750 then
9751 null;
9753 -- In the case of a qualified expression in an allocator, the check
9754 -- is applied when expanding the allocator, so avoid redundant check.
9756 elsif Nkind (N) = N_Qualified_Expression
9757 and then Nkind (Parent (N)) /= N_Allocator
9758 then
9759 Apply_Predicate_Check (N, Target_Typ);
9760 end if;
9761 end if;
9762 end Resolve_Qualified_Expression;
9764 ------------------------------
9765 -- Resolve_Raise_Expression --
9766 ------------------------------
9768 procedure Resolve_Raise_Expression (N : Node_Id; Typ : Entity_Id) is
9769 begin
9770 if Typ = Raise_Type then
9771 Error_Msg_N ("cannot find unique type for raise expression", N);
9772 Set_Etype (N, Any_Type);
9773 else
9774 Set_Etype (N, Typ);
9775 end if;
9776 end Resolve_Raise_Expression;
9778 -------------------
9779 -- Resolve_Range --
9780 -------------------
9782 procedure Resolve_Range (N : Node_Id; Typ : Entity_Id) is
9783 L : constant Node_Id := Low_Bound (N);
9784 H : constant Node_Id := High_Bound (N);
9786 function First_Last_Ref return Boolean;
9787 -- Returns True if N is of the form X'First .. X'Last where X is the
9788 -- same entity for both attributes.
9790 --------------------
9791 -- First_Last_Ref --
9792 --------------------
9794 function First_Last_Ref return Boolean is
9795 Lorig : constant Node_Id := Original_Node (L);
9796 Horig : constant Node_Id := Original_Node (H);
9798 begin
9799 if Nkind (Lorig) = N_Attribute_Reference
9800 and then Nkind (Horig) = N_Attribute_Reference
9801 and then Attribute_Name (Lorig) = Name_First
9802 and then Attribute_Name (Horig) = Name_Last
9803 then
9804 declare
9805 PL : constant Node_Id := Prefix (Lorig);
9806 PH : constant Node_Id := Prefix (Horig);
9807 begin
9808 if Is_Entity_Name (PL)
9809 and then Is_Entity_Name (PH)
9810 and then Entity (PL) = Entity (PH)
9811 then
9812 return True;
9813 end if;
9814 end;
9815 end if;
9817 return False;
9818 end First_Last_Ref;
9820 -- Start of processing for Resolve_Range
9822 begin
9823 Set_Etype (N, Typ);
9825 -- The lower bound should be in Typ. The higher bound can be in Typ's
9826 -- base type if the range is null. It may still be invalid if it is
9827 -- higher than the lower bound. This is checked later in the context in
9828 -- which the range appears.
9830 Resolve (L, Typ);
9831 Resolve (H, Base_Type (Typ));
9833 -- Check for inappropriate range on unordered enumeration type
9835 if Bad_Unordered_Enumeration_Reference (N, Typ)
9837 -- Exclude X'First .. X'Last if X is the same entity for both
9839 and then not First_Last_Ref
9840 then
9841 Error_Msg_Sloc := Sloc (Typ);
9842 Error_Msg_NE
9843 ("subrange of unordered enumeration type& declared#?U?", N, Typ);
9844 end if;
9846 Check_Unset_Reference (L);
9847 Check_Unset_Reference (H);
9849 -- We have to check the bounds for being within the base range as
9850 -- required for a non-static context. Normally this is automatic and
9851 -- done as part of evaluating expressions, but the N_Range node is an
9852 -- exception, since in GNAT we consider this node to be a subexpression,
9853 -- even though in Ada it is not. The circuit in Sem_Eval could check for
9854 -- this, but that would put the test on the main evaluation path for
9855 -- expressions.
9857 Check_Non_Static_Context (L);
9858 Check_Non_Static_Context (H);
9860 -- Check for an ambiguous range over character literals. This will
9861 -- happen with a membership test involving only literals.
9863 if Typ = Any_Character then
9864 Ambiguous_Character (L);
9865 Set_Etype (N, Any_Type);
9866 return;
9867 end if;
9869 -- If bounds are static, constant-fold them, so size computations are
9870 -- identical between front-end and back-end. Do not perform this
9871 -- transformation while analyzing generic units, as type information
9872 -- would be lost when reanalyzing the constant node in the instance.
9874 if Is_Discrete_Type (Typ) and then Expander_Active then
9875 if Is_OK_Static_Expression (L) then
9876 Fold_Uint (L, Expr_Value (L), Is_OK_Static_Expression (L));
9877 end if;
9879 if Is_OK_Static_Expression (H) then
9880 Fold_Uint (H, Expr_Value (H), Is_OK_Static_Expression (H));
9881 end if;
9882 end if;
9883 end Resolve_Range;
9885 --------------------------
9886 -- Resolve_Real_Literal --
9887 --------------------------
9889 procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id) is
9890 Actual_Typ : constant Entity_Id := Etype (N);
9892 begin
9893 -- Special processing for fixed-point literals to make sure that the
9894 -- value is an exact multiple of small where this is required. We skip
9895 -- this for the universal real case, and also for generic types.
9897 if Is_Fixed_Point_Type (Typ)
9898 and then Typ /= Universal_Fixed
9899 and then Typ /= Any_Fixed
9900 and then not Is_Generic_Type (Typ)
9901 then
9902 declare
9903 Val : constant Ureal := Realval (N);
9904 Cintr : constant Ureal := Val / Small_Value (Typ);
9905 Cint : constant Uint := UR_Trunc (Cintr);
9906 Den : constant Uint := Norm_Den (Cintr);
9907 Stat : Boolean;
9909 begin
9910 -- Case of literal is not an exact multiple of the Small
9912 if Den /= 1 then
9914 -- For a source program literal for a decimal fixed-point type,
9915 -- this is statically illegal (RM 4.9(36)).
9917 if Is_Decimal_Fixed_Point_Type (Typ)
9918 and then Actual_Typ = Universal_Real
9919 and then Comes_From_Source (N)
9920 then
9921 Error_Msg_N ("value has extraneous low order digits", N);
9922 end if;
9924 -- Generate a warning if literal from source
9926 if Is_OK_Static_Expression (N)
9927 and then Warn_On_Bad_Fixed_Value
9928 then
9929 Error_Msg_N
9930 ("?b?static fixed-point value is not a multiple of Small!",
9932 end if;
9934 -- Replace literal by a value that is the exact representation
9935 -- of a value of the type, i.e. a multiple of the small value,
9936 -- by truncation, since Machine_Rounds is false for all GNAT
9937 -- fixed-point types (RM 4.9(38)).
9939 Stat := Is_OK_Static_Expression (N);
9940 Rewrite (N,
9941 Make_Real_Literal (Sloc (N),
9942 Realval => Small_Value (Typ) * Cint));
9944 Set_Is_Static_Expression (N, Stat);
9945 end if;
9947 -- In all cases, set the corresponding integer field
9949 Set_Corresponding_Integer_Value (N, Cint);
9950 end;
9951 end if;
9953 -- Now replace the actual type by the expected type as usual
9955 Set_Etype (N, Typ);
9956 Eval_Real_Literal (N);
9957 end Resolve_Real_Literal;
9959 -----------------------
9960 -- Resolve_Reference --
9961 -----------------------
9963 procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id) is
9964 P : constant Node_Id := Prefix (N);
9966 begin
9967 -- Replace general access with specific type
9969 if Ekind (Etype (N)) = E_Allocator_Type then
9970 Set_Etype (N, Base_Type (Typ));
9971 end if;
9973 Resolve (P, Designated_Type (Etype (N)));
9975 -- If we are taking the reference of a volatile entity, then treat it as
9976 -- a potential modification of this entity. This is too conservative,
9977 -- but necessary because remove side effects can cause transformations
9978 -- of normal assignments into reference sequences that otherwise fail to
9979 -- notice the modification.
9981 if Is_Entity_Name (P) and then Treat_As_Volatile (Entity (P)) then
9982 Note_Possible_Modification (P, Sure => False);
9983 end if;
9984 end Resolve_Reference;
9986 --------------------------------
9987 -- Resolve_Selected_Component --
9988 --------------------------------
9990 procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id) is
9991 Comp : Entity_Id;
9992 Comp1 : Entity_Id := Empty; -- prevent junk warning
9993 P : constant Node_Id := Prefix (N);
9994 S : constant Node_Id := Selector_Name (N);
9995 T : Entity_Id := Etype (P);
9996 I : Interp_Index;
9997 I1 : Interp_Index := 0; -- prevent junk warning
9998 It : Interp;
9999 It1 : Interp;
10000 Found : Boolean;
10002 function Init_Component return Boolean;
10003 -- Check whether this is the initialization of a component within an
10004 -- init proc (by assignment or call to another init proc). If true,
10005 -- there is no need for a discriminant check.
10007 --------------------
10008 -- Init_Component --
10009 --------------------
10011 function Init_Component return Boolean is
10012 begin
10013 return Inside_Init_Proc
10014 and then Nkind (Prefix (N)) = N_Identifier
10015 and then Chars (Prefix (N)) = Name_uInit
10016 and then Nkind (Parent (Parent (N))) = N_Case_Statement_Alternative;
10017 end Init_Component;
10019 -- Start of processing for Resolve_Selected_Component
10021 begin
10022 if Is_Overloaded (P) then
10024 -- Use the context type to select the prefix that has a selector
10025 -- of the correct name and type.
10027 Found := False;
10028 Get_First_Interp (P, I, It);
10030 Search : while Present (It.Typ) loop
10031 if Is_Access_Type (It.Typ) then
10032 T := Designated_Type (It.Typ);
10033 else
10034 T := It.Typ;
10035 end if;
10037 -- Locate selected component. For a private prefix the selector
10038 -- can denote a discriminant.
10040 if Is_Record_Type (T) or else Is_Private_Type (T) then
10042 -- The visible components of a class-wide type are those of
10043 -- the root type.
10045 if Is_Class_Wide_Type (T) then
10046 T := Etype (T);
10047 end if;
10049 Comp := First_Entity (T);
10050 while Present (Comp) loop
10051 if Chars (Comp) = Chars (S)
10052 and then Covers (Typ, Etype (Comp))
10053 then
10054 if not Found then
10055 Found := True;
10056 I1 := I;
10057 It1 := It;
10058 Comp1 := Comp;
10060 else
10061 It := Disambiguate (P, I1, I, Any_Type);
10063 if It = No_Interp then
10064 Error_Msg_N
10065 ("ambiguous prefix for selected component", N);
10066 Set_Etype (N, Typ);
10067 return;
10069 else
10070 It1 := It;
10072 -- There may be an implicit dereference. Retrieve
10073 -- designated record type.
10075 if Is_Access_Type (It1.Typ) then
10076 T := Designated_Type (It1.Typ);
10077 else
10078 T := It1.Typ;
10079 end if;
10081 if Scope (Comp1) /= T then
10083 -- Resolution chooses the new interpretation.
10084 -- Find the component with the right name.
10086 Comp1 := First_Entity (T);
10087 while Present (Comp1)
10088 and then Chars (Comp1) /= Chars (S)
10089 loop
10090 Comp1 := Next_Entity (Comp1);
10091 end loop;
10092 end if;
10094 exit Search;
10095 end if;
10096 end if;
10097 end if;
10099 Comp := Next_Entity (Comp);
10100 end loop;
10101 end if;
10103 Get_Next_Interp (I, It);
10104 end loop Search;
10106 -- There must be a legal interpretation at this point
10108 pragma Assert (Found);
10109 Resolve (P, It1.Typ);
10110 Set_Etype (N, Typ);
10111 Set_Entity_With_Checks (S, Comp1);
10113 else
10114 -- Resolve prefix with its type
10116 Resolve (P, T);
10117 end if;
10119 -- Generate cross-reference. We needed to wait until full overloading
10120 -- resolution was complete to do this, since otherwise we can't tell if
10121 -- we are an lvalue or not.
10123 if May_Be_Lvalue (N) then
10124 Generate_Reference (Entity (S), S, 'm');
10125 else
10126 Generate_Reference (Entity (S), S, 'r');
10127 end if;
10129 -- If prefix is an access type, the node will be transformed into an
10130 -- explicit dereference during expansion. The type of the node is the
10131 -- designated type of that of the prefix.
10133 if Is_Access_Type (Etype (P)) then
10134 T := Designated_Type (Etype (P));
10135 Check_Fully_Declared_Prefix (T, P);
10136 else
10137 T := Etype (P);
10138 end if;
10140 -- Set flag for expander if discriminant check required on a component
10141 -- appearing within a variant.
10143 if Has_Discriminants (T)
10144 and then Ekind (Entity (S)) = E_Component
10145 and then Present (Original_Record_Component (Entity (S)))
10146 and then Ekind (Original_Record_Component (Entity (S))) = E_Component
10147 and then
10148 Is_Declared_Within_Variant (Original_Record_Component (Entity (S)))
10149 and then not Discriminant_Checks_Suppressed (T)
10150 and then not Init_Component
10151 then
10152 Set_Do_Discriminant_Check (N);
10153 end if;
10155 if Ekind (Entity (S)) = E_Void then
10156 Error_Msg_N ("premature use of component", S);
10157 end if;
10159 -- If the prefix is a record conversion, this may be a renamed
10160 -- discriminant whose bounds differ from those of the original
10161 -- one, so we must ensure that a range check is performed.
10163 if Nkind (P) = N_Type_Conversion
10164 and then Ekind (Entity (S)) = E_Discriminant
10165 and then Is_Discrete_Type (Typ)
10166 then
10167 Set_Etype (N, Base_Type (Typ));
10168 end if;
10170 -- Note: No Eval processing is required, because the prefix is of a
10171 -- record type, or protected type, and neither can possibly be static.
10173 -- If the record type is atomic, and the component is non-atomic, then
10174 -- this is worth a warning, since we have a situation where the access
10175 -- to the component may cause extra read/writes of the atomic array
10176 -- object, or partial word accesses, both of which may be unexpected.
10178 if Nkind (N) = N_Selected_Component
10179 and then Is_Atomic_Ref_With_Address (N)
10180 and then not Is_Atomic (Entity (S))
10181 and then not Is_Atomic (Etype (Entity (S)))
10182 then
10183 Error_Msg_N
10184 ("??access to non-atomic component of atomic record",
10185 Prefix (N));
10186 Error_Msg_N
10187 ("\??may cause unexpected accesses to atomic object",
10188 Prefix (N));
10189 end if;
10191 Analyze_Dimension (N);
10192 end Resolve_Selected_Component;
10194 -------------------
10195 -- Resolve_Shift --
10196 -------------------
10198 procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id) is
10199 B_Typ : constant Entity_Id := Base_Type (Typ);
10200 L : constant Node_Id := Left_Opnd (N);
10201 R : constant Node_Id := Right_Opnd (N);
10203 begin
10204 -- We do the resolution using the base type, because intermediate values
10205 -- in expressions always are of the base type, not a subtype of it.
10207 Resolve (L, B_Typ);
10208 Resolve (R, Standard_Natural);
10210 Check_Unset_Reference (L);
10211 Check_Unset_Reference (R);
10213 Set_Etype (N, B_Typ);
10214 Generate_Operator_Reference (N, B_Typ);
10215 Eval_Shift (N);
10216 end Resolve_Shift;
10218 ---------------------------
10219 -- Resolve_Short_Circuit --
10220 ---------------------------
10222 procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id) is
10223 B_Typ : constant Entity_Id := Base_Type (Typ);
10224 L : constant Node_Id := Left_Opnd (N);
10225 R : constant Node_Id := Right_Opnd (N);
10227 begin
10228 -- Ensure all actions associated with the left operand (e.g.
10229 -- finalization of transient objects) are fully evaluated locally within
10230 -- an expression with actions. This is particularly helpful for coverage
10231 -- analysis. However this should not happen in generics or if option
10232 -- Minimize_Expression_With_Actions is set.
10234 if Expander_Active and not Minimize_Expression_With_Actions then
10235 declare
10236 Reloc_L : constant Node_Id := Relocate_Node (L);
10237 begin
10238 Save_Interps (Old_N => L, New_N => Reloc_L);
10240 Rewrite (L,
10241 Make_Expression_With_Actions (Sloc (L),
10242 Actions => New_List,
10243 Expression => Reloc_L));
10245 -- Set Comes_From_Source on L to preserve warnings for unset
10246 -- reference.
10248 Set_Comes_From_Source (L, Comes_From_Source (Reloc_L));
10249 end;
10250 end if;
10252 Resolve (L, B_Typ);
10253 Resolve (R, B_Typ);
10255 -- Check for issuing warning for always False assert/check, this happens
10256 -- when assertions are turned off, in which case the pragma Assert/Check
10257 -- was transformed into:
10259 -- if False and then <condition> then ...
10261 -- and we detect this pattern
10263 if Warn_On_Assertion_Failure
10264 and then Is_Entity_Name (R)
10265 and then Entity (R) = Standard_False
10266 and then Nkind (Parent (N)) = N_If_Statement
10267 and then Nkind (N) = N_And_Then
10268 and then Is_Entity_Name (L)
10269 and then Entity (L) = Standard_False
10270 then
10271 declare
10272 Orig : constant Node_Id := Original_Node (Parent (N));
10274 begin
10275 -- Special handling of Asssert pragma
10277 if Nkind (Orig) = N_Pragma
10278 and then Pragma_Name (Orig) = Name_Assert
10279 then
10280 declare
10281 Expr : constant Node_Id :=
10282 Original_Node
10283 (Expression
10284 (First (Pragma_Argument_Associations (Orig))));
10286 begin
10287 -- Don't warn if original condition is explicit False,
10288 -- since obviously the failure is expected in this case.
10290 if Is_Entity_Name (Expr)
10291 and then Entity (Expr) = Standard_False
10292 then
10293 null;
10295 -- Issue warning. We do not want the deletion of the
10296 -- IF/AND-THEN to take this message with it. We achieve this
10297 -- by making sure that the expanded code points to the Sloc
10298 -- of the expression, not the original pragma.
10300 else
10301 -- Note: Use Error_Msg_F here rather than Error_Msg_N.
10302 -- The source location of the expression is not usually
10303 -- the best choice here. For example, it gets located on
10304 -- the last AND keyword in a chain of boolean expressiond
10305 -- AND'ed together. It is best to put the message on the
10306 -- first character of the assertion, which is the effect
10307 -- of the First_Node call here.
10309 Error_Msg_F
10310 ("?A?assertion would fail at run time!",
10311 Expression
10312 (First (Pragma_Argument_Associations (Orig))));
10313 end if;
10314 end;
10316 -- Similar processing for Check pragma
10318 elsif Nkind (Orig) = N_Pragma
10319 and then Pragma_Name (Orig) = Name_Check
10320 then
10321 -- Don't want to warn if original condition is explicit False
10323 declare
10324 Expr : constant Node_Id :=
10325 Original_Node
10326 (Expression
10327 (Next (First (Pragma_Argument_Associations (Orig)))));
10328 begin
10329 if Is_Entity_Name (Expr)
10330 and then Entity (Expr) = Standard_False
10331 then
10332 null;
10334 -- Post warning
10336 else
10337 -- Again use Error_Msg_F rather than Error_Msg_N, see
10338 -- comment above for an explanation of why we do this.
10340 Error_Msg_F
10341 ("?A?check would fail at run time!",
10342 Expression
10343 (Last (Pragma_Argument_Associations (Orig))));
10344 end if;
10345 end;
10346 end if;
10347 end;
10348 end if;
10350 -- Continue with processing of short circuit
10352 Check_Unset_Reference (L);
10353 Check_Unset_Reference (R);
10355 Set_Etype (N, B_Typ);
10356 Eval_Short_Circuit (N);
10357 end Resolve_Short_Circuit;
10359 -------------------
10360 -- Resolve_Slice --
10361 -------------------
10363 procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id) is
10364 Drange : constant Node_Id := Discrete_Range (N);
10365 Name : constant Node_Id := Prefix (N);
10366 Array_Type : Entity_Id := Empty;
10367 Dexpr : Node_Id := Empty;
10368 Index_Type : Entity_Id;
10370 begin
10371 if Is_Overloaded (Name) then
10373 -- Use the context type to select the prefix that yields the correct
10374 -- array type.
10376 declare
10377 I : Interp_Index;
10378 I1 : Interp_Index := 0;
10379 It : Interp;
10380 P : constant Node_Id := Prefix (N);
10381 Found : Boolean := False;
10383 begin
10384 Get_First_Interp (P, I, It);
10385 while Present (It.Typ) loop
10386 if (Is_Array_Type (It.Typ)
10387 and then Covers (Typ, It.Typ))
10388 or else (Is_Access_Type (It.Typ)
10389 and then Is_Array_Type (Designated_Type (It.Typ))
10390 and then Covers (Typ, Designated_Type (It.Typ)))
10391 then
10392 if Found then
10393 It := Disambiguate (P, I1, I, Any_Type);
10395 if It = No_Interp then
10396 Error_Msg_N ("ambiguous prefix for slicing", N);
10397 Set_Etype (N, Typ);
10398 return;
10399 else
10400 Found := True;
10401 Array_Type := It.Typ;
10402 I1 := I;
10403 end if;
10404 else
10405 Found := True;
10406 Array_Type := It.Typ;
10407 I1 := I;
10408 end if;
10409 end if;
10411 Get_Next_Interp (I, It);
10412 end loop;
10413 end;
10415 else
10416 Array_Type := Etype (Name);
10417 end if;
10419 Resolve (Name, Array_Type);
10421 if Is_Access_Type (Array_Type) then
10422 Apply_Access_Check (N);
10423 Array_Type := Designated_Type (Array_Type);
10425 -- If the prefix is an access to an unconstrained array, we must use
10426 -- the actual subtype of the object to perform the index checks. The
10427 -- object denoted by the prefix is implicit in the node, so we build
10428 -- an explicit representation for it in order to compute the actual
10429 -- subtype.
10431 if not Is_Constrained (Array_Type) then
10432 Remove_Side_Effects (Prefix (N));
10434 declare
10435 Obj : constant Node_Id :=
10436 Make_Explicit_Dereference (Sloc (N),
10437 Prefix => New_Copy_Tree (Prefix (N)));
10438 begin
10439 Set_Etype (Obj, Array_Type);
10440 Set_Parent (Obj, Parent (N));
10441 Array_Type := Get_Actual_Subtype (Obj);
10442 end;
10443 end if;
10445 elsif Is_Entity_Name (Name)
10446 or else Nkind (Name) = N_Explicit_Dereference
10447 or else (Nkind (Name) = N_Function_Call
10448 and then not Is_Constrained (Etype (Name)))
10449 then
10450 Array_Type := Get_Actual_Subtype (Name);
10452 -- If the name is a selected component that depends on discriminants,
10453 -- build an actual subtype for it. This can happen only when the name
10454 -- itself is overloaded; otherwise the actual subtype is created when
10455 -- the selected component is analyzed.
10457 elsif Nkind (Name) = N_Selected_Component
10458 and then Full_Analysis
10459 and then Depends_On_Discriminant (First_Index (Array_Type))
10460 then
10461 declare
10462 Act_Decl : constant Node_Id :=
10463 Build_Actual_Subtype_Of_Component (Array_Type, Name);
10464 begin
10465 Insert_Action (N, Act_Decl);
10466 Array_Type := Defining_Identifier (Act_Decl);
10467 end;
10469 -- Maybe this should just be "else", instead of checking for the
10470 -- specific case of slice??? This is needed for the case where the
10471 -- prefix is an Image attribute, which gets expanded to a slice, and so
10472 -- has a constrained subtype which we want to use for the slice range
10473 -- check applied below (the range check won't get done if the
10474 -- unconstrained subtype of the 'Image is used).
10476 elsif Nkind (Name) = N_Slice then
10477 Array_Type := Etype (Name);
10478 end if;
10480 -- Obtain the type of the array index
10482 if Ekind (Array_Type) = E_String_Literal_Subtype then
10483 Index_Type := Etype (String_Literal_Low_Bound (Array_Type));
10484 else
10485 Index_Type := Etype (First_Index (Array_Type));
10486 end if;
10488 -- If name was overloaded, set slice type correctly now
10490 Set_Etype (N, Array_Type);
10492 -- Handle the generation of a range check that compares the array index
10493 -- against the discrete_range. The check is not applied to internally
10494 -- built nodes associated with the expansion of dispatch tables. Check
10495 -- that Ada.Tags has already been loaded to avoid extra dependencies on
10496 -- the unit.
10498 if Tagged_Type_Expansion
10499 and then RTU_Loaded (Ada_Tags)
10500 and then Nkind (Prefix (N)) = N_Selected_Component
10501 and then Present (Entity (Selector_Name (Prefix (N))))
10502 and then Entity (Selector_Name (Prefix (N))) =
10503 RTE_Record_Component (RE_Prims_Ptr)
10504 then
10505 null;
10507 -- The discrete_range is specified by a subtype indication. Create a
10508 -- shallow copy and inherit the type, parent and source location from
10509 -- the discrete_range. This ensures that the range check is inserted
10510 -- relative to the slice and that the runtime exception points to the
10511 -- proper construct.
10513 elsif Is_Entity_Name (Drange) then
10514 Dexpr := New_Copy (Scalar_Range (Entity (Drange)));
10516 Set_Etype (Dexpr, Etype (Drange));
10517 Set_Parent (Dexpr, Parent (Drange));
10518 Set_Sloc (Dexpr, Sloc (Drange));
10520 -- The discrete_range is a regular range. Resolve the bounds and remove
10521 -- their side effects.
10523 else
10524 Resolve (Drange, Base_Type (Index_Type));
10526 if Nkind (Drange) = N_Range then
10527 Force_Evaluation (Low_Bound (Drange));
10528 Force_Evaluation (High_Bound (Drange));
10530 Dexpr := Drange;
10531 end if;
10532 end if;
10534 if Present (Dexpr) then
10535 Apply_Range_Check (Dexpr, Index_Type);
10536 end if;
10538 Set_Slice_Subtype (N);
10540 -- Check bad use of type with predicates
10542 declare
10543 Subt : Entity_Id;
10545 begin
10546 if Nkind (Drange) = N_Subtype_Indication
10547 and then Has_Predicates (Entity (Subtype_Mark (Drange)))
10548 then
10549 Subt := Entity (Subtype_Mark (Drange));
10550 else
10551 Subt := Etype (Drange);
10552 end if;
10554 if Has_Predicates (Subt) then
10555 Bad_Predicated_Subtype_Use
10556 ("subtype& has predicate, not allowed in slice", Drange, Subt);
10557 end if;
10558 end;
10560 -- Otherwise here is where we check suspicious indexes
10562 if Nkind (Drange) = N_Range then
10563 Warn_On_Suspicious_Index (Name, Low_Bound (Drange));
10564 Warn_On_Suspicious_Index (Name, High_Bound (Drange));
10565 end if;
10567 Analyze_Dimension (N);
10568 Eval_Slice (N);
10569 end Resolve_Slice;
10571 ----------------------------
10572 -- Resolve_String_Literal --
10573 ----------------------------
10575 procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id) is
10576 C_Typ : constant Entity_Id := Component_Type (Typ);
10577 R_Typ : constant Entity_Id := Root_Type (C_Typ);
10578 Loc : constant Source_Ptr := Sloc (N);
10579 Str : constant String_Id := Strval (N);
10580 Strlen : constant Nat := String_Length (Str);
10581 Subtype_Id : Entity_Id;
10582 Need_Check : Boolean;
10584 begin
10585 -- For a string appearing in a concatenation, defer creation of the
10586 -- string_literal_subtype until the end of the resolution of the
10587 -- concatenation, because the literal may be constant-folded away. This
10588 -- is a useful optimization for long concatenation expressions.
10590 -- If the string is an aggregate built for a single character (which
10591 -- happens in a non-static context) or a is null string to which special
10592 -- checks may apply, we build the subtype. Wide strings must also get a
10593 -- string subtype if they come from a one character aggregate. Strings
10594 -- generated by attributes might be static, but it is often hard to
10595 -- determine whether the enclosing context is static, so we generate
10596 -- subtypes for them as well, thus losing some rarer optimizations ???
10597 -- Same for strings that come from a static conversion.
10599 Need_Check :=
10600 (Strlen = 0 and then Typ /= Standard_String)
10601 or else Nkind (Parent (N)) /= N_Op_Concat
10602 or else (N /= Left_Opnd (Parent (N))
10603 and then N /= Right_Opnd (Parent (N)))
10604 or else ((Typ = Standard_Wide_String
10605 or else Typ = Standard_Wide_Wide_String)
10606 and then Nkind (Original_Node (N)) /= N_String_Literal);
10608 -- If the resolving type is itself a string literal subtype, we can just
10609 -- reuse it, since there is no point in creating another.
10611 if Ekind (Typ) = E_String_Literal_Subtype then
10612 Subtype_Id := Typ;
10614 elsif Nkind (Parent (N)) = N_Op_Concat
10615 and then not Need_Check
10616 and then not Nkind_In (Original_Node (N), N_Character_Literal,
10617 N_Attribute_Reference,
10618 N_Qualified_Expression,
10619 N_Type_Conversion)
10620 then
10621 Subtype_Id := Typ;
10623 -- Do not generate a string literal subtype for the default expression
10624 -- of a formal parameter in GNATprove mode. This is because the string
10625 -- subtype is associated with the freezing actions of the subprogram,
10626 -- however freezing is disabled in GNATprove mode and as a result the
10627 -- subtype is unavailable.
10629 elsif GNATprove_Mode
10630 and then Nkind (Parent (N)) = N_Parameter_Specification
10631 then
10632 Subtype_Id := Typ;
10634 -- Otherwise we must create a string literal subtype. Note that the
10635 -- whole idea of string literal subtypes is simply to avoid the need
10636 -- for building a full fledged array subtype for each literal.
10638 else
10639 Set_String_Literal_Subtype (N, Typ);
10640 Subtype_Id := Etype (N);
10641 end if;
10643 if Nkind (Parent (N)) /= N_Op_Concat
10644 or else Need_Check
10645 then
10646 Set_Etype (N, Subtype_Id);
10647 Eval_String_Literal (N);
10648 end if;
10650 if Is_Limited_Composite (Typ)
10651 or else Is_Private_Composite (Typ)
10652 then
10653 Error_Msg_N ("string literal not available for private array", N);
10654 Set_Etype (N, Any_Type);
10655 return;
10656 end if;
10658 -- The validity of a null string has been checked in the call to
10659 -- Eval_String_Literal.
10661 if Strlen = 0 then
10662 return;
10664 -- Always accept string literal with component type Any_Character, which
10665 -- occurs in error situations and in comparisons of literals, both of
10666 -- which should accept all literals.
10668 elsif R_Typ = Any_Character then
10669 return;
10671 -- If the type is bit-packed, then we always transform the string
10672 -- literal into a full fledged aggregate.
10674 elsif Is_Bit_Packed_Array (Typ) then
10675 null;
10677 -- Deal with cases of Wide_Wide_String, Wide_String, and String
10679 else
10680 -- For Standard.Wide_Wide_String, or any other type whose component
10681 -- type is Standard.Wide_Wide_Character, we know that all the
10682 -- characters in the string must be acceptable, since the parser
10683 -- accepted the characters as valid character literals.
10685 if R_Typ = Standard_Wide_Wide_Character then
10686 null;
10688 -- For the case of Standard.String, or any other type whose component
10689 -- type is Standard.Character, we must make sure that there are no
10690 -- wide characters in the string, i.e. that it is entirely composed
10691 -- of characters in range of type Character.
10693 -- If the string literal is the result of a static concatenation, the
10694 -- test has already been performed on the components, and need not be
10695 -- repeated.
10697 elsif R_Typ = Standard_Character
10698 and then Nkind (Original_Node (N)) /= N_Op_Concat
10699 then
10700 for J in 1 .. Strlen loop
10701 if not In_Character_Range (Get_String_Char (Str, J)) then
10703 -- If we are out of range, post error. This is one of the
10704 -- very few places that we place the flag in the middle of
10705 -- a token, right under the offending wide character. Not
10706 -- quite clear if this is right wrt wide character encoding
10707 -- sequences, but it's only an error message.
10709 Error_Msg
10710 ("literal out of range of type Standard.Character",
10711 Source_Ptr (Int (Loc) + J));
10712 return;
10713 end if;
10714 end loop;
10716 -- For the case of Standard.Wide_String, or any other type whose
10717 -- component type is Standard.Wide_Character, we must make sure that
10718 -- there are no wide characters in the string, i.e. that it is
10719 -- entirely composed of characters in range of type Wide_Character.
10721 -- If the string literal is the result of a static concatenation,
10722 -- the test has already been performed on the components, and need
10723 -- not be repeated.
10725 elsif R_Typ = Standard_Wide_Character
10726 and then Nkind (Original_Node (N)) /= N_Op_Concat
10727 then
10728 for J in 1 .. Strlen loop
10729 if not In_Wide_Character_Range (Get_String_Char (Str, J)) then
10731 -- If we are out of range, post error. This is one of the
10732 -- very few places that we place the flag in the middle of
10733 -- a token, right under the offending wide character.
10735 -- This is not quite right, because characters in general
10736 -- will take more than one character position ???
10738 Error_Msg
10739 ("literal out of range of type Standard.Wide_Character",
10740 Source_Ptr (Int (Loc) + J));
10741 return;
10742 end if;
10743 end loop;
10745 -- If the root type is not a standard character, then we will convert
10746 -- the string into an aggregate and will let the aggregate code do
10747 -- the checking. Standard Wide_Wide_Character is also OK here.
10749 else
10750 null;
10751 end if;
10753 -- See if the component type of the array corresponding to the string
10754 -- has compile time known bounds. If yes we can directly check
10755 -- whether the evaluation of the string will raise constraint error.
10756 -- Otherwise we need to transform the string literal into the
10757 -- corresponding character aggregate and let the aggregate code do
10758 -- the checking.
10760 if Is_Standard_Character_Type (R_Typ) then
10762 -- Check for the case of full range, where we are definitely OK
10764 if Component_Type (Typ) = Base_Type (Component_Type (Typ)) then
10765 return;
10766 end if;
10768 -- Here the range is not the complete base type range, so check
10770 declare
10771 Comp_Typ_Lo : constant Node_Id :=
10772 Type_Low_Bound (Component_Type (Typ));
10773 Comp_Typ_Hi : constant Node_Id :=
10774 Type_High_Bound (Component_Type (Typ));
10776 Char_Val : Uint;
10778 begin
10779 if Compile_Time_Known_Value (Comp_Typ_Lo)
10780 and then Compile_Time_Known_Value (Comp_Typ_Hi)
10781 then
10782 for J in 1 .. Strlen loop
10783 Char_Val := UI_From_Int (Int (Get_String_Char (Str, J)));
10785 if Char_Val < Expr_Value (Comp_Typ_Lo)
10786 or else Char_Val > Expr_Value (Comp_Typ_Hi)
10787 then
10788 Apply_Compile_Time_Constraint_Error
10789 (N, "character out of range??",
10790 CE_Range_Check_Failed,
10791 Loc => Source_Ptr (Int (Loc) + J));
10792 end if;
10793 end loop;
10795 return;
10796 end if;
10797 end;
10798 end if;
10799 end if;
10801 -- If we got here we meed to transform the string literal into the
10802 -- equivalent qualified positional array aggregate. This is rather
10803 -- heavy artillery for this situation, but it is hard work to avoid.
10805 declare
10806 Lits : constant List_Id := New_List;
10807 P : Source_Ptr := Loc + 1;
10808 C : Char_Code;
10810 begin
10811 -- Build the character literals, we give them source locations that
10812 -- correspond to the string positions, which is a bit tricky given
10813 -- the possible presence of wide character escape sequences.
10815 for J in 1 .. Strlen loop
10816 C := Get_String_Char (Str, J);
10817 Set_Character_Literal_Name (C);
10819 Append_To (Lits,
10820 Make_Character_Literal (P,
10821 Chars => Name_Find,
10822 Char_Literal_Value => UI_From_CC (C)));
10824 if In_Character_Range (C) then
10825 P := P + 1;
10827 -- Should we have a call to Skip_Wide here ???
10829 -- ??? else
10830 -- Skip_Wide (P);
10832 end if;
10833 end loop;
10835 Rewrite (N,
10836 Make_Qualified_Expression (Loc,
10837 Subtype_Mark => New_Occurrence_Of (Typ, Loc),
10838 Expression =>
10839 Make_Aggregate (Loc, Expressions => Lits)));
10841 Analyze_And_Resolve (N, Typ);
10842 end;
10843 end Resolve_String_Literal;
10845 -------------------------
10846 -- Resolve_Target_Name --
10847 -------------------------
10849 procedure Resolve_Target_Name (N : Node_Id; Typ : Entity_Id) is
10850 begin
10851 Set_Etype (N, Typ);
10852 end Resolve_Target_Name;
10854 -----------------------------
10855 -- Resolve_Type_Conversion --
10856 -----------------------------
10858 procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id) is
10859 Conv_OK : constant Boolean := Conversion_OK (N);
10860 Operand : constant Node_Id := Expression (N);
10861 Operand_Typ : constant Entity_Id := Etype (Operand);
10862 Target_Typ : constant Entity_Id := Etype (N);
10863 Rop : Node_Id;
10864 Orig_N : Node_Id;
10865 Orig_T : Node_Id;
10867 Test_Redundant : Boolean := Warn_On_Redundant_Constructs;
10868 -- Set to False to suppress cases where we want to suppress the test
10869 -- for redundancy to avoid possible false positives on this warning.
10871 begin
10872 if not Conv_OK
10873 and then not Valid_Conversion (N, Target_Typ, Operand)
10874 then
10875 return;
10876 end if;
10878 -- If the Operand Etype is Universal_Fixed, then the conversion is
10879 -- never redundant. We need this check because by the time we have
10880 -- finished the rather complex transformation, the conversion looks
10881 -- redundant when it is not.
10883 if Operand_Typ = Universal_Fixed then
10884 Test_Redundant := False;
10886 -- If the operand is marked as Any_Fixed, then special processing is
10887 -- required. This is also a case where we suppress the test for a
10888 -- redundant conversion, since most certainly it is not redundant.
10890 elsif Operand_Typ = Any_Fixed then
10891 Test_Redundant := False;
10893 -- Mixed-mode operation involving a literal. Context must be a fixed
10894 -- type which is applied to the literal subsequently.
10896 -- Multiplication and division involving two fixed type operands must
10897 -- yield a universal real because the result is computed in arbitrary
10898 -- precision.
10900 if Is_Fixed_Point_Type (Typ)
10901 and then Nkind_In (Operand, N_Op_Divide, N_Op_Multiply)
10902 and then Etype (Left_Opnd (Operand)) = Any_Fixed
10903 and then Etype (Right_Opnd (Operand)) = Any_Fixed
10904 then
10905 Set_Etype (Operand, Universal_Real);
10907 elsif Is_Numeric_Type (Typ)
10908 and then Nkind_In (Operand, N_Op_Multiply, N_Op_Divide)
10909 and then (Etype (Right_Opnd (Operand)) = Universal_Real
10910 or else
10911 Etype (Left_Opnd (Operand)) = Universal_Real)
10912 then
10913 -- Return if expression is ambiguous
10915 if Unique_Fixed_Point_Type (N) = Any_Type then
10916 return;
10918 -- If nothing else, the available fixed type is Duration
10920 else
10921 Set_Etype (Operand, Standard_Duration);
10922 end if;
10924 -- Resolve the real operand with largest available precision
10926 if Etype (Right_Opnd (Operand)) = Universal_Real then
10927 Rop := New_Copy_Tree (Right_Opnd (Operand));
10928 else
10929 Rop := New_Copy_Tree (Left_Opnd (Operand));
10930 end if;
10932 Resolve (Rop, Universal_Real);
10934 -- If the operand is a literal (it could be a non-static and
10935 -- illegal exponentiation) check whether the use of Duration
10936 -- is potentially inaccurate.
10938 if Nkind (Rop) = N_Real_Literal
10939 and then Realval (Rop) /= Ureal_0
10940 and then abs (Realval (Rop)) < Delta_Value (Standard_Duration)
10941 then
10942 Error_Msg_N
10943 ("??universal real operand can only "
10944 & "be interpreted as Duration!", Rop);
10945 Error_Msg_N
10946 ("\??precision will be lost in the conversion!", Rop);
10947 end if;
10949 elsif Is_Numeric_Type (Typ)
10950 and then Nkind (Operand) in N_Op
10951 and then Unique_Fixed_Point_Type (N) /= Any_Type
10952 then
10953 Set_Etype (Operand, Standard_Duration);
10955 else
10956 Error_Msg_N ("invalid context for mixed mode operation", N);
10957 Set_Etype (Operand, Any_Type);
10958 return;
10959 end if;
10960 end if;
10962 Resolve (Operand);
10964 -- In SPARK, a type conversion between array types should be restricted
10965 -- to types which have matching static bounds.
10967 -- Protect call to Matching_Static_Array_Bounds to avoid costly
10968 -- operation if not needed.
10970 if Restriction_Check_Required (SPARK_05)
10971 and then Is_Array_Type (Target_Typ)
10972 and then Is_Array_Type (Operand_Typ)
10973 and then Operand_Typ /= Any_Composite -- or else Operand in error
10974 and then not Matching_Static_Array_Bounds (Target_Typ, Operand_Typ)
10975 then
10976 Check_SPARK_05_Restriction
10977 ("array types should have matching static bounds", N);
10978 end if;
10980 -- In formal mode, the operand of an ancestor type conversion must be an
10981 -- object (not an expression).
10983 if Is_Tagged_Type (Target_Typ)
10984 and then not Is_Class_Wide_Type (Target_Typ)
10985 and then Is_Tagged_Type (Operand_Typ)
10986 and then not Is_Class_Wide_Type (Operand_Typ)
10987 and then Is_Ancestor (Target_Typ, Operand_Typ)
10988 and then not Is_SPARK_05_Object_Reference (Operand)
10989 then
10990 Check_SPARK_05_Restriction ("object required", Operand);
10991 end if;
10993 Analyze_Dimension (N);
10995 -- Note: we do the Eval_Type_Conversion call before applying the
10996 -- required checks for a subtype conversion. This is important, since
10997 -- both are prepared under certain circumstances to change the type
10998 -- conversion to a constraint error node, but in the case of
10999 -- Eval_Type_Conversion this may reflect an illegality in the static
11000 -- case, and we would miss the illegality (getting only a warning
11001 -- message), if we applied the type conversion checks first.
11003 Eval_Type_Conversion (N);
11005 -- Even when evaluation is not possible, we may be able to simplify the
11006 -- conversion or its expression. This needs to be done before applying
11007 -- checks, since otherwise the checks may use the original expression
11008 -- and defeat the simplifications. This is specifically the case for
11009 -- elimination of the floating-point Truncation attribute in
11010 -- float-to-int conversions.
11012 Simplify_Type_Conversion (N);
11014 -- If after evaluation we still have a type conversion, then we may need
11015 -- to apply checks required for a subtype conversion.
11017 -- Skip these type conversion checks if universal fixed operands
11018 -- operands involved, since range checks are handled separately for
11019 -- these cases (in the appropriate Expand routines in unit Exp_Fixd).
11021 if Nkind (N) = N_Type_Conversion
11022 and then not Is_Generic_Type (Root_Type (Target_Typ))
11023 and then Target_Typ /= Universal_Fixed
11024 and then Operand_Typ /= Universal_Fixed
11025 then
11026 Apply_Type_Conversion_Checks (N);
11027 end if;
11029 -- Issue warning for conversion of simple object to its own type. We
11030 -- have to test the original nodes, since they may have been rewritten
11031 -- by various optimizations.
11033 Orig_N := Original_Node (N);
11035 -- Here we test for a redundant conversion if the warning mode is
11036 -- active (and was not locally reset), and we have a type conversion
11037 -- from source not appearing in a generic instance.
11039 if Test_Redundant
11040 and then Nkind (Orig_N) = N_Type_Conversion
11041 and then Comes_From_Source (Orig_N)
11042 and then not In_Instance
11043 then
11044 Orig_N := Original_Node (Expression (Orig_N));
11045 Orig_T := Target_Typ;
11047 -- If the node is part of a larger expression, the Target_Type
11048 -- may not be the original type of the node if the context is a
11049 -- condition. Recover original type to see if conversion is needed.
11051 if Is_Boolean_Type (Orig_T)
11052 and then Nkind (Parent (N)) in N_Op
11053 then
11054 Orig_T := Etype (Parent (N));
11055 end if;
11057 -- If we have an entity name, then give the warning if the entity
11058 -- is the right type, or if it is a loop parameter covered by the
11059 -- original type (that's needed because loop parameters have an
11060 -- odd subtype coming from the bounds).
11062 if (Is_Entity_Name (Orig_N)
11063 and then
11064 (Etype (Entity (Orig_N)) = Orig_T
11065 or else
11066 (Ekind (Entity (Orig_N)) = E_Loop_Parameter
11067 and then Covers (Orig_T, Etype (Entity (Orig_N))))))
11069 -- If not an entity, then type of expression must match
11071 or else Etype (Orig_N) = Orig_T
11072 then
11073 -- One more check, do not give warning if the analyzed conversion
11074 -- has an expression with non-static bounds, and the bounds of the
11075 -- target are static. This avoids junk warnings in cases where the
11076 -- conversion is necessary to establish staticness, for example in
11077 -- a case statement.
11079 if not Is_OK_Static_Subtype (Operand_Typ)
11080 and then Is_OK_Static_Subtype (Target_Typ)
11081 then
11082 null;
11084 -- Finally, if this type conversion occurs in a context requiring
11085 -- a prefix, and the expression is a qualified expression then the
11086 -- type conversion is not redundant, since a qualified expression
11087 -- is not a prefix, whereas a type conversion is. For example, "X
11088 -- := T'(Funx(...)).Y;" is illegal because a selected component
11089 -- requires a prefix, but a type conversion makes it legal: "X :=
11090 -- T(T'(Funx(...))).Y;"
11092 -- In Ada 2012, a qualified expression is a name, so this idiom is
11093 -- no longer needed, but we still suppress the warning because it
11094 -- seems unfriendly for warnings to pop up when you switch to the
11095 -- newer language version.
11097 elsif Nkind (Orig_N) = N_Qualified_Expression
11098 and then Nkind_In (Parent (N), N_Attribute_Reference,
11099 N_Indexed_Component,
11100 N_Selected_Component,
11101 N_Slice,
11102 N_Explicit_Dereference)
11103 then
11104 null;
11106 -- Never warn on conversion to Long_Long_Integer'Base since
11107 -- that is most likely an artifact of the extended overflow
11108 -- checking and comes from complex expanded code.
11110 elsif Orig_T = Base_Type (Standard_Long_Long_Integer) then
11111 null;
11113 -- Here we give the redundant conversion warning. If it is an
11114 -- entity, give the name of the entity in the message. If not,
11115 -- just mention the expression.
11117 -- Shoudn't we test Warn_On_Redundant_Constructs here ???
11119 else
11120 if Is_Entity_Name (Orig_N) then
11121 Error_Msg_Node_2 := Orig_T;
11122 Error_Msg_NE -- CODEFIX
11123 ("??redundant conversion, & is of type &!",
11124 N, Entity (Orig_N));
11125 else
11126 Error_Msg_NE
11127 ("??redundant conversion, expression is of type&!",
11128 N, Orig_T);
11129 end if;
11130 end if;
11131 end if;
11132 end if;
11134 -- Ada 2005 (AI-251): Handle class-wide interface type conversions.
11135 -- No need to perform any interface conversion if the type of the
11136 -- expression coincides with the target type.
11138 if Ada_Version >= Ada_2005
11139 and then Expander_Active
11140 and then Operand_Typ /= Target_Typ
11141 then
11142 declare
11143 Opnd : Entity_Id := Operand_Typ;
11144 Target : Entity_Id := Target_Typ;
11146 begin
11147 -- If the type of the operand is a limited view, use nonlimited
11148 -- view when available. If it is a class-wide type, recover the
11149 -- class-wide type of the nonlimited view.
11151 if From_Limited_With (Opnd)
11152 and then Has_Non_Limited_View (Opnd)
11153 then
11154 Opnd := Non_Limited_View (Opnd);
11155 Set_Etype (Expression (N), Opnd);
11156 end if;
11158 if Is_Access_Type (Opnd) then
11159 Opnd := Designated_Type (Opnd);
11160 end if;
11162 if Is_Access_Type (Target_Typ) then
11163 Target := Designated_Type (Target);
11164 end if;
11166 if Opnd = Target then
11167 null;
11169 -- Conversion from interface type
11171 elsif Is_Interface (Opnd) then
11173 -- Ada 2005 (AI-217): Handle entities from limited views
11175 if From_Limited_With (Opnd) then
11176 Error_Msg_Qual_Level := 99;
11177 Error_Msg_NE -- CODEFIX
11178 ("missing WITH clause on package &", N,
11179 Cunit_Entity (Get_Source_Unit (Base_Type (Opnd))));
11180 Error_Msg_N
11181 ("type conversions require visibility of the full view",
11184 elsif From_Limited_With (Target)
11185 and then not
11186 (Is_Access_Type (Target_Typ)
11187 and then Present (Non_Limited_View (Etype (Target))))
11188 then
11189 Error_Msg_Qual_Level := 99;
11190 Error_Msg_NE -- CODEFIX
11191 ("missing WITH clause on package &", N,
11192 Cunit_Entity (Get_Source_Unit (Base_Type (Target))));
11193 Error_Msg_N
11194 ("type conversions require visibility of the full view",
11197 else
11198 Expand_Interface_Conversion (N);
11199 end if;
11201 -- Conversion to interface type
11203 elsif Is_Interface (Target) then
11205 -- Handle subtypes
11207 if Ekind_In (Opnd, E_Protected_Subtype, E_Task_Subtype) then
11208 Opnd := Etype (Opnd);
11209 end if;
11211 if Is_Class_Wide_Type (Opnd)
11212 or else Interface_Present_In_Ancestor
11213 (Typ => Opnd,
11214 Iface => Target)
11215 then
11216 Expand_Interface_Conversion (N);
11217 else
11218 Error_Msg_Name_1 := Chars (Etype (Target));
11219 Error_Msg_Name_2 := Chars (Opnd);
11220 Error_Msg_N
11221 ("wrong interface conversion (% is not a progenitor "
11222 & "of %)", N);
11223 end if;
11224 end if;
11225 end;
11226 end if;
11228 -- Ada 2012: once the type conversion is resolved, check whether the
11229 -- operand statisfies the static predicate of the target type.
11231 if Has_Predicates (Target_Typ) then
11232 Check_Expression_Against_Static_Predicate (N, Target_Typ);
11233 end if;
11235 -- If at this stage we have a real to integer conversion, make sure that
11236 -- the Do_Range_Check flag is set, because such conversions in general
11237 -- need a range check. We only need this if expansion is off.
11238 -- In GNATprove mode, we only do that when converting from fixed-point
11239 -- (as floating-point to integer conversions are now handled in
11240 -- GNATprove mode).
11242 if Nkind (N) = N_Type_Conversion
11243 and then not Expander_Active
11244 and then Is_Integer_Type (Target_Typ)
11245 and then (Is_Fixed_Point_Type (Operand_Typ)
11246 or else (not GNATprove_Mode
11247 and then Is_Floating_Point_Type (Operand_Typ)))
11248 then
11249 Set_Do_Range_Check (Operand);
11250 end if;
11252 -- Generating C code a type conversion of an access to constrained
11253 -- array type to access to unconstrained array type involves building
11254 -- a fat pointer which in general cannot be generated on the fly. We
11255 -- remove side effects in order to store the result of the conversion
11256 -- into a temporary.
11258 if Modify_Tree_For_C
11259 and then Nkind (N) = N_Type_Conversion
11260 and then Nkind (Parent (N)) /= N_Object_Declaration
11261 and then Is_Access_Type (Etype (N))
11262 and then Is_Array_Type (Designated_Type (Etype (N)))
11263 and then not Is_Constrained (Designated_Type (Etype (N)))
11264 and then Is_Constrained (Designated_Type (Etype (Expression (N))))
11265 then
11266 Remove_Side_Effects (N);
11267 end if;
11268 end Resolve_Type_Conversion;
11270 ----------------------
11271 -- Resolve_Unary_Op --
11272 ----------------------
11274 procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id) is
11275 B_Typ : constant Entity_Id := Base_Type (Typ);
11276 R : constant Node_Id := Right_Opnd (N);
11277 OK : Boolean;
11278 Lo : Uint;
11279 Hi : Uint;
11281 begin
11282 if Is_Modular_Integer_Type (Typ) and then Nkind (N) /= N_Op_Not then
11283 Error_Msg_Name_1 := Chars (Typ);
11284 Check_SPARK_05_Restriction
11285 ("unary operator not defined for modular type%", N);
11286 end if;
11288 -- Deal with intrinsic unary operators
11290 if Comes_From_Source (N)
11291 and then Ekind (Entity (N)) = E_Function
11292 and then Is_Imported (Entity (N))
11293 and then Is_Intrinsic_Subprogram (Entity (N))
11294 then
11295 Resolve_Intrinsic_Unary_Operator (N, Typ);
11296 return;
11297 end if;
11299 -- Deal with universal cases
11301 if Etype (R) = Universal_Integer
11302 or else
11303 Etype (R) = Universal_Real
11304 then
11305 Check_For_Visible_Operator (N, B_Typ);
11306 end if;
11308 Set_Etype (N, B_Typ);
11309 Resolve (R, B_Typ);
11311 -- Generate warning for expressions like abs (x mod 2)
11313 if Warn_On_Redundant_Constructs
11314 and then Nkind (N) = N_Op_Abs
11315 then
11316 Determine_Range (Right_Opnd (N), OK, Lo, Hi);
11318 if OK and then Hi >= Lo and then Lo >= 0 then
11319 Error_Msg_N -- CODEFIX
11320 ("?r?abs applied to known non-negative value has no effect", N);
11321 end if;
11322 end if;
11324 -- Deal with reference generation
11326 Check_Unset_Reference (R);
11327 Generate_Operator_Reference (N, B_Typ);
11328 Analyze_Dimension (N);
11329 Eval_Unary_Op (N);
11331 -- Set overflow checking bit. Much cleverer code needed here eventually
11332 -- and perhaps the Resolve routines should be separated for the various
11333 -- arithmetic operations, since they will need different processing ???
11335 if Nkind (N) in N_Op then
11336 if not Overflow_Checks_Suppressed (Etype (N)) then
11337 Enable_Overflow_Check (N);
11338 end if;
11339 end if;
11341 -- Generate warning for expressions like -5 mod 3 for integers. No need
11342 -- to worry in the floating-point case, since parens do not affect the
11343 -- result so there is no point in giving in a warning.
11345 declare
11346 Norig : constant Node_Id := Original_Node (N);
11347 Rorig : Node_Id;
11348 Val : Uint;
11349 HB : Uint;
11350 LB : Uint;
11351 Lval : Uint;
11352 Opnd : Node_Id;
11354 begin
11355 if Warn_On_Questionable_Missing_Parens
11356 and then Comes_From_Source (Norig)
11357 and then Is_Integer_Type (Typ)
11358 and then Nkind (Norig) = N_Op_Minus
11359 then
11360 Rorig := Original_Node (Right_Opnd (Norig));
11362 -- We are looking for cases where the right operand is not
11363 -- parenthesized, and is a binary operator, multiply, divide, or
11364 -- mod. These are the cases where the grouping can affect results.
11366 if Paren_Count (Rorig) = 0
11367 and then Nkind_In (Rorig, N_Op_Mod, N_Op_Multiply, N_Op_Divide)
11368 then
11369 -- For mod, we always give the warning, since the value is
11370 -- affected by the parenthesization (e.g. (-5) mod 315 /=
11371 -- -(5 mod 315)). But for the other cases, the only concern is
11372 -- overflow, e.g. for the case of 8 big signed (-(2 * 64)
11373 -- overflows, but (-2) * 64 does not). So we try to give the
11374 -- message only when overflow is possible.
11376 if Nkind (Rorig) /= N_Op_Mod
11377 and then Compile_Time_Known_Value (R)
11378 then
11379 Val := Expr_Value (R);
11381 if Compile_Time_Known_Value (Type_High_Bound (Typ)) then
11382 HB := Expr_Value (Type_High_Bound (Typ));
11383 else
11384 HB := Expr_Value (Type_High_Bound (Base_Type (Typ)));
11385 end if;
11387 if Compile_Time_Known_Value (Type_Low_Bound (Typ)) then
11388 LB := Expr_Value (Type_Low_Bound (Typ));
11389 else
11390 LB := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
11391 end if;
11393 -- Note that the test below is deliberately excluding the
11394 -- largest negative number, since that is a potentially
11395 -- troublesome case (e.g. -2 * x, where the result is the
11396 -- largest negative integer has an overflow with 2 * x).
11398 if Val > LB and then Val <= HB then
11399 return;
11400 end if;
11401 end if;
11403 -- For the multiplication case, the only case we have to worry
11404 -- about is when (-a)*b is exactly the largest negative number
11405 -- so that -(a*b) can cause overflow. This can only happen if
11406 -- a is a power of 2, and more generally if any operand is a
11407 -- constant that is not a power of 2, then the parentheses
11408 -- cannot affect whether overflow occurs. We only bother to
11409 -- test the left most operand
11411 -- Loop looking at left operands for one that has known value
11413 Opnd := Rorig;
11414 Opnd_Loop : while Nkind (Opnd) = N_Op_Multiply loop
11415 if Compile_Time_Known_Value (Left_Opnd (Opnd)) then
11416 Lval := UI_Abs (Expr_Value (Left_Opnd (Opnd)));
11418 -- Operand value of 0 or 1 skips warning
11420 if Lval <= 1 then
11421 return;
11423 -- Otherwise check power of 2, if power of 2, warn, if
11424 -- anything else, skip warning.
11426 else
11427 while Lval /= 2 loop
11428 if Lval mod 2 = 1 then
11429 return;
11430 else
11431 Lval := Lval / 2;
11432 end if;
11433 end loop;
11435 exit Opnd_Loop;
11436 end if;
11437 end if;
11439 -- Keep looking at left operands
11441 Opnd := Left_Opnd (Opnd);
11442 end loop Opnd_Loop;
11444 -- For rem or "/" we can only have a problematic situation
11445 -- if the divisor has a value of minus one or one. Otherwise
11446 -- overflow is impossible (divisor > 1) or we have a case of
11447 -- division by zero in any case.
11449 if Nkind_In (Rorig, N_Op_Divide, N_Op_Rem)
11450 and then Compile_Time_Known_Value (Right_Opnd (Rorig))
11451 and then UI_Abs (Expr_Value (Right_Opnd (Rorig))) /= 1
11452 then
11453 return;
11454 end if;
11456 -- If we fall through warning should be issued
11458 -- Shouldn't we test Warn_On_Questionable_Missing_Parens ???
11460 Error_Msg_N
11461 ("??unary minus expression should be parenthesized here!", N);
11462 end if;
11463 end if;
11464 end;
11465 end Resolve_Unary_Op;
11467 ----------------------------------
11468 -- Resolve_Unchecked_Expression --
11469 ----------------------------------
11471 procedure Resolve_Unchecked_Expression
11472 (N : Node_Id;
11473 Typ : Entity_Id)
11475 begin
11476 Resolve (Expression (N), Typ, Suppress => All_Checks);
11477 Set_Etype (N, Typ);
11478 end Resolve_Unchecked_Expression;
11480 ---------------------------------------
11481 -- Resolve_Unchecked_Type_Conversion --
11482 ---------------------------------------
11484 procedure Resolve_Unchecked_Type_Conversion
11485 (N : Node_Id;
11486 Typ : Entity_Id)
11488 pragma Warnings (Off, Typ);
11490 Operand : constant Node_Id := Expression (N);
11491 Opnd_Type : constant Entity_Id := Etype (Operand);
11493 begin
11494 -- Resolve operand using its own type
11496 Resolve (Operand, Opnd_Type);
11498 -- In an inlined context, the unchecked conversion may be applied
11499 -- to a literal, in which case its type is the type of the context.
11500 -- (In other contexts conversions cannot apply to literals).
11502 if In_Inlined_Body
11503 and then (Opnd_Type = Any_Character or else
11504 Opnd_Type = Any_Integer or else
11505 Opnd_Type = Any_Real)
11506 then
11507 Set_Etype (Operand, Typ);
11508 end if;
11510 Analyze_Dimension (N);
11511 Eval_Unchecked_Conversion (N);
11512 end Resolve_Unchecked_Type_Conversion;
11514 ------------------------------
11515 -- Rewrite_Operator_As_Call --
11516 ------------------------------
11518 procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id) is
11519 Loc : constant Source_Ptr := Sloc (N);
11520 Actuals : constant List_Id := New_List;
11521 New_N : Node_Id;
11523 begin
11524 if Nkind (N) in N_Binary_Op then
11525 Append (Left_Opnd (N), Actuals);
11526 end if;
11528 Append (Right_Opnd (N), Actuals);
11530 New_N :=
11531 Make_Function_Call (Sloc => Loc,
11532 Name => New_Occurrence_Of (Nam, Loc),
11533 Parameter_Associations => Actuals);
11535 Preserve_Comes_From_Source (New_N, N);
11536 Preserve_Comes_From_Source (Name (New_N), N);
11537 Rewrite (N, New_N);
11538 Set_Etype (N, Etype (Nam));
11539 end Rewrite_Operator_As_Call;
11541 ------------------------------
11542 -- Rewrite_Renamed_Operator --
11543 ------------------------------
11545 procedure Rewrite_Renamed_Operator
11546 (N : Node_Id;
11547 Op : Entity_Id;
11548 Typ : Entity_Id)
11550 Nam : constant Name_Id := Chars (Op);
11551 Is_Binary : constant Boolean := Nkind (N) in N_Binary_Op;
11552 Op_Node : Node_Id;
11554 begin
11555 -- Do not perform this transformation within a pre/postcondition,
11556 -- because the expression will be reanalyzed, and the transformation
11557 -- might affect the visibility of the operator, e.g. in an instance.
11558 -- Note that fully analyzed and expanded pre/postconditions appear as
11559 -- pragma Check equivalents.
11561 if In_Pre_Post_Condition (N) then
11562 return;
11563 end if;
11565 -- Likewise when an expression function is being preanalyzed, since the
11566 -- expression will be reanalyzed as part of the generated body.
11568 if In_Spec_Expression then
11569 declare
11570 S : constant Entity_Id := Current_Scope_No_Loops;
11571 begin
11572 if Ekind (S) = E_Function
11573 and then Nkind (Original_Node (Unit_Declaration_Node (S))) =
11574 N_Expression_Function
11575 then
11576 return;
11577 end if;
11578 end;
11579 end if;
11581 -- Rewrite the operator node using the real operator, not its renaming.
11582 -- Exclude user-defined intrinsic operations of the same name, which are
11583 -- treated separately and rewritten as calls.
11585 if Ekind (Op) /= E_Function or else Chars (N) /= Nam then
11586 Op_Node := New_Node (Operator_Kind (Nam, Is_Binary), Sloc (N));
11587 Set_Chars (Op_Node, Nam);
11588 Set_Etype (Op_Node, Etype (N));
11589 Set_Entity (Op_Node, Op);
11590 Set_Right_Opnd (Op_Node, Right_Opnd (N));
11592 -- Indicate that both the original entity and its renaming are
11593 -- referenced at this point.
11595 Generate_Reference (Entity (N), N);
11596 Generate_Reference (Op, N);
11598 if Is_Binary then
11599 Set_Left_Opnd (Op_Node, Left_Opnd (N));
11600 end if;
11602 Rewrite (N, Op_Node);
11604 -- If the context type is private, add the appropriate conversions so
11605 -- that the operator is applied to the full view. This is done in the
11606 -- routines that resolve intrinsic operators.
11608 if Is_Intrinsic_Subprogram (Op) and then Is_Private_Type (Typ) then
11609 case Nkind (N) is
11610 when N_Op_Add
11611 | N_Op_Divide
11612 | N_Op_Expon
11613 | N_Op_Mod
11614 | N_Op_Multiply
11615 | N_Op_Rem
11616 | N_Op_Subtract
11618 Resolve_Intrinsic_Operator (N, Typ);
11620 when N_Op_Abs
11621 | N_Op_Minus
11622 | N_Op_Plus
11624 Resolve_Intrinsic_Unary_Operator (N, Typ);
11626 when others =>
11627 Resolve (N, Typ);
11628 end case;
11629 end if;
11631 elsif Ekind (Op) = E_Function and then Is_Intrinsic_Subprogram (Op) then
11633 -- Operator renames a user-defined operator of the same name. Use the
11634 -- original operator in the node, which is the one Gigi knows about.
11636 Set_Entity (N, Op);
11637 Set_Is_Overloaded (N, False);
11638 end if;
11639 end Rewrite_Renamed_Operator;
11641 -----------------------
11642 -- Set_Slice_Subtype --
11643 -----------------------
11645 -- Build an implicit subtype declaration to represent the type delivered by
11646 -- the slice. This is an abbreviated version of an array subtype. We define
11647 -- an index subtype for the slice, using either the subtype name or the
11648 -- discrete range of the slice. To be consistent with index usage elsewhere
11649 -- we create a list header to hold the single index. This list is not
11650 -- otherwise attached to the syntax tree.
11652 procedure Set_Slice_Subtype (N : Node_Id) is
11653 Loc : constant Source_Ptr := Sloc (N);
11654 Index_List : constant List_Id := New_List;
11655 Index : Node_Id;
11656 Index_Subtype : Entity_Id;
11657 Index_Type : Entity_Id;
11658 Slice_Subtype : Entity_Id;
11659 Drange : constant Node_Id := Discrete_Range (N);
11661 begin
11662 Index_Type := Base_Type (Etype (Drange));
11664 if Is_Entity_Name (Drange) then
11665 Index_Subtype := Entity (Drange);
11667 else
11668 -- We force the evaluation of a range. This is definitely needed in
11669 -- the renamed case, and seems safer to do unconditionally. Note in
11670 -- any case that since we will create and insert an Itype referring
11671 -- to this range, we must make sure any side effect removal actions
11672 -- are inserted before the Itype definition.
11674 if Nkind (Drange) = N_Range then
11675 Force_Evaluation (Low_Bound (Drange));
11676 Force_Evaluation (High_Bound (Drange));
11678 -- If the discrete range is given by a subtype indication, the
11679 -- type of the slice is the base of the subtype mark.
11681 elsif Nkind (Drange) = N_Subtype_Indication then
11682 declare
11683 R : constant Node_Id := Range_Expression (Constraint (Drange));
11684 begin
11685 Index_Type := Base_Type (Entity (Subtype_Mark (Drange)));
11686 Force_Evaluation (Low_Bound (R));
11687 Force_Evaluation (High_Bound (R));
11688 end;
11689 end if;
11691 Index_Subtype := Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11693 -- Take a new copy of Drange (where bounds have been rewritten to
11694 -- reference side-effect-free names). Using a separate tree ensures
11695 -- that further expansion (e.g. while rewriting a slice assignment
11696 -- into a FOR loop) does not attempt to remove side effects on the
11697 -- bounds again (which would cause the bounds in the index subtype
11698 -- definition to refer to temporaries before they are defined) (the
11699 -- reason is that some names are considered side effect free here
11700 -- for the subtype, but not in the context of a loop iteration
11701 -- scheme).
11703 Set_Scalar_Range (Index_Subtype, New_Copy_Tree (Drange));
11704 Set_Parent (Scalar_Range (Index_Subtype), Index_Subtype);
11705 Set_Etype (Index_Subtype, Index_Type);
11706 Set_Size_Info (Index_Subtype, Index_Type);
11707 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11708 end if;
11710 Slice_Subtype := Create_Itype (E_Array_Subtype, N);
11712 Index := New_Occurrence_Of (Index_Subtype, Loc);
11713 Set_Etype (Index, Index_Subtype);
11714 Append (Index, Index_List);
11716 Set_First_Index (Slice_Subtype, Index);
11717 Set_Etype (Slice_Subtype, Base_Type (Etype (N)));
11718 Set_Is_Constrained (Slice_Subtype, True);
11720 Check_Compile_Time_Size (Slice_Subtype);
11722 -- The Etype of the existing Slice node is reset to this slice subtype.
11723 -- Its bounds are obtained from its first index.
11725 Set_Etype (N, Slice_Subtype);
11727 -- For bit-packed slice subtypes, freeze immediately (except in the case
11728 -- of being in a "spec expression" where we never freeze when we first
11729 -- see the expression).
11731 if Is_Bit_Packed_Array (Slice_Subtype) and not In_Spec_Expression then
11732 Freeze_Itype (Slice_Subtype, N);
11734 -- For all other cases insert an itype reference in the slice's actions
11735 -- so that the itype is frozen at the proper place in the tree (i.e. at
11736 -- the point where actions for the slice are analyzed). Note that this
11737 -- is different from freezing the itype immediately, which might be
11738 -- premature (e.g. if the slice is within a transient scope). This needs
11739 -- to be done only if expansion is enabled.
11741 elsif Expander_Active then
11742 Ensure_Defined (Typ => Slice_Subtype, N => N);
11743 end if;
11744 end Set_Slice_Subtype;
11746 --------------------------------
11747 -- Set_String_Literal_Subtype --
11748 --------------------------------
11750 procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id) is
11751 Loc : constant Source_Ptr := Sloc (N);
11752 Low_Bound : constant Node_Id :=
11753 Type_Low_Bound (Etype (First_Index (Typ)));
11754 Subtype_Id : Entity_Id;
11756 begin
11757 if Nkind (N) /= N_String_Literal then
11758 return;
11759 end if;
11761 Subtype_Id := Create_Itype (E_String_Literal_Subtype, N);
11762 Set_String_Literal_Length (Subtype_Id, UI_From_Int
11763 (String_Length (Strval (N))));
11764 Set_Etype (Subtype_Id, Base_Type (Typ));
11765 Set_Is_Constrained (Subtype_Id);
11766 Set_Etype (N, Subtype_Id);
11768 -- The low bound is set from the low bound of the corresponding index
11769 -- type. Note that we do not store the high bound in the string literal
11770 -- subtype, but it can be deduced if necessary from the length and the
11771 -- low bound.
11773 if Is_OK_Static_Expression (Low_Bound) then
11774 Set_String_Literal_Low_Bound (Subtype_Id, Low_Bound);
11776 -- If the lower bound is not static we create a range for the string
11777 -- literal, using the index type and the known length of the literal.
11778 -- The index type is not necessarily Positive, so the upper bound is
11779 -- computed as T'Val (T'Pos (Low_Bound) + L - 1).
11781 else
11782 declare
11783 Index_List : constant List_Id := New_List;
11784 Index_Type : constant Entity_Id := Etype (First_Index (Typ));
11785 High_Bound : constant Node_Id :=
11786 Make_Attribute_Reference (Loc,
11787 Attribute_Name => Name_Val,
11788 Prefix =>
11789 New_Occurrence_Of (Index_Type, Loc),
11790 Expressions => New_List (
11791 Make_Op_Add (Loc,
11792 Left_Opnd =>
11793 Make_Attribute_Reference (Loc,
11794 Attribute_Name => Name_Pos,
11795 Prefix =>
11796 New_Occurrence_Of (Index_Type, Loc),
11797 Expressions =>
11798 New_List (New_Copy_Tree (Low_Bound))),
11799 Right_Opnd =>
11800 Make_Integer_Literal (Loc,
11801 String_Length (Strval (N)) - 1))));
11803 Array_Subtype : Entity_Id;
11804 Drange : Node_Id;
11805 Index : Node_Id;
11806 Index_Subtype : Entity_Id;
11808 begin
11809 if Is_Integer_Type (Index_Type) then
11810 Set_String_Literal_Low_Bound
11811 (Subtype_Id, Make_Integer_Literal (Loc, 1));
11813 else
11814 -- If the index type is an enumeration type, build bounds
11815 -- expression with attributes.
11817 Set_String_Literal_Low_Bound
11818 (Subtype_Id,
11819 Make_Attribute_Reference (Loc,
11820 Attribute_Name => Name_First,
11821 Prefix =>
11822 New_Occurrence_Of (Base_Type (Index_Type), Loc)));
11823 Set_Etype (String_Literal_Low_Bound (Subtype_Id), Index_Type);
11824 end if;
11826 Analyze_And_Resolve (String_Literal_Low_Bound (Subtype_Id));
11828 -- Build bona fide subtype for the string, and wrap it in an
11829 -- unchecked conversion, because the backend expects the
11830 -- String_Literal_Subtype to have a static lower bound.
11832 Index_Subtype :=
11833 Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11834 Drange := Make_Range (Loc, New_Copy_Tree (Low_Bound), High_Bound);
11835 Set_Scalar_Range (Index_Subtype, Drange);
11836 Set_Parent (Drange, N);
11837 Analyze_And_Resolve (Drange, Index_Type);
11839 -- In the context, the Index_Type may already have a constraint,
11840 -- so use common base type on string subtype. The base type may
11841 -- be used when generating attributes of the string, for example
11842 -- in the context of a slice assignment.
11844 Set_Etype (Index_Subtype, Base_Type (Index_Type));
11845 Set_Size_Info (Index_Subtype, Index_Type);
11846 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11848 Array_Subtype := Create_Itype (E_Array_Subtype, N);
11850 Index := New_Occurrence_Of (Index_Subtype, Loc);
11851 Set_Etype (Index, Index_Subtype);
11852 Append (Index, Index_List);
11854 Set_First_Index (Array_Subtype, Index);
11855 Set_Etype (Array_Subtype, Base_Type (Typ));
11856 Set_Is_Constrained (Array_Subtype, True);
11858 Rewrite (N,
11859 Make_Unchecked_Type_Conversion (Loc,
11860 Subtype_Mark => New_Occurrence_Of (Array_Subtype, Loc),
11861 Expression => Relocate_Node (N)));
11862 Set_Etype (N, Array_Subtype);
11863 end;
11864 end if;
11865 end Set_String_Literal_Subtype;
11867 ------------------------------
11868 -- Simplify_Type_Conversion --
11869 ------------------------------
11871 procedure Simplify_Type_Conversion (N : Node_Id) is
11872 begin
11873 if Nkind (N) = N_Type_Conversion then
11874 declare
11875 Operand : constant Node_Id := Expression (N);
11876 Target_Typ : constant Entity_Id := Etype (N);
11877 Opnd_Typ : constant Entity_Id := Etype (Operand);
11879 begin
11880 -- Special processing if the conversion is the expression of a
11881 -- Rounding or Truncation attribute reference. In this case we
11882 -- replace:
11884 -- ityp (ftyp'Rounding (x)) or ityp (ftyp'Truncation (x))
11886 -- by
11888 -- ityp (x)
11890 -- with the Float_Truncate flag set to False or True respectively,
11891 -- which is more efficient.
11893 if Is_Floating_Point_Type (Opnd_Typ)
11894 and then
11895 (Is_Integer_Type (Target_Typ)
11896 or else (Is_Fixed_Point_Type (Target_Typ)
11897 and then Conversion_OK (N)))
11898 and then Nkind (Operand) = N_Attribute_Reference
11899 and then Nam_In (Attribute_Name (Operand), Name_Rounding,
11900 Name_Truncation)
11901 then
11902 declare
11903 Truncate : constant Boolean :=
11904 Attribute_Name (Operand) = Name_Truncation;
11905 begin
11906 Rewrite (Operand,
11907 Relocate_Node (First (Expressions (Operand))));
11908 Set_Float_Truncate (N, Truncate);
11909 end;
11910 end if;
11911 end;
11912 end if;
11913 end Simplify_Type_Conversion;
11915 -----------------------------
11916 -- Unique_Fixed_Point_Type --
11917 -----------------------------
11919 function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id is
11920 procedure Fixed_Point_Error (T1 : Entity_Id; T2 : Entity_Id);
11921 -- Give error messages for true ambiguity. Messages are posted on node
11922 -- N, and entities T1, T2 are the possible interpretations.
11924 -----------------------
11925 -- Fixed_Point_Error --
11926 -----------------------
11928 procedure Fixed_Point_Error (T1 : Entity_Id; T2 : Entity_Id) is
11929 begin
11930 Error_Msg_N ("ambiguous universal_fixed_expression", N);
11931 Error_Msg_NE ("\\possible interpretation as}", N, T1);
11932 Error_Msg_NE ("\\possible interpretation as}", N, T2);
11933 end Fixed_Point_Error;
11935 -- Local variables
11937 ErrN : Node_Id;
11938 Item : Node_Id;
11939 Scop : Entity_Id;
11940 T1 : Entity_Id;
11941 T2 : Entity_Id;
11943 -- Start of processing for Unique_Fixed_Point_Type
11945 begin
11946 -- The operations on Duration are visible, so Duration is always a
11947 -- possible interpretation.
11949 T1 := Standard_Duration;
11951 -- Look for fixed-point types in enclosing scopes
11953 Scop := Current_Scope;
11954 while Scop /= Standard_Standard loop
11955 T2 := First_Entity (Scop);
11956 while Present (T2) loop
11957 if Is_Fixed_Point_Type (T2)
11958 and then Current_Entity (T2) = T2
11959 and then Scope (Base_Type (T2)) = Scop
11960 then
11961 if Present (T1) then
11962 Fixed_Point_Error (T1, T2);
11963 return Any_Type;
11964 else
11965 T1 := T2;
11966 end if;
11967 end if;
11969 Next_Entity (T2);
11970 end loop;
11972 Scop := Scope (Scop);
11973 end loop;
11975 -- Look for visible fixed type declarations in the context
11977 Item := First (Context_Items (Cunit (Current_Sem_Unit)));
11978 while Present (Item) loop
11979 if Nkind (Item) = N_With_Clause then
11980 Scop := Entity (Name (Item));
11981 T2 := First_Entity (Scop);
11982 while Present (T2) loop
11983 if Is_Fixed_Point_Type (T2)
11984 and then Scope (Base_Type (T2)) = Scop
11985 and then (Is_Potentially_Use_Visible (T2) or else In_Use (T2))
11986 then
11987 if Present (T1) then
11988 Fixed_Point_Error (T1, T2);
11989 return Any_Type;
11990 else
11991 T1 := T2;
11992 end if;
11993 end if;
11995 Next_Entity (T2);
11996 end loop;
11997 end if;
11999 Next (Item);
12000 end loop;
12002 if Nkind (N) = N_Real_Literal then
12003 Error_Msg_NE ("??real literal interpreted as }!", N, T1);
12005 else
12006 -- When the context is a type conversion, issue the warning on the
12007 -- expression of the conversion because it is the actual operation.
12009 if Nkind_In (N, N_Type_Conversion, N_Unchecked_Type_Conversion) then
12010 ErrN := Expression (N);
12011 else
12012 ErrN := N;
12013 end if;
12015 Error_Msg_NE
12016 ("??universal_fixed expression interpreted as }!", ErrN, T1);
12017 end if;
12019 return T1;
12020 end Unique_Fixed_Point_Type;
12022 ----------------------
12023 -- Valid_Conversion --
12024 ----------------------
12026 function Valid_Conversion
12027 (N : Node_Id;
12028 Target : Entity_Id;
12029 Operand : Node_Id;
12030 Report_Errs : Boolean := True) return Boolean
12032 Target_Type : constant Entity_Id := Base_Type (Target);
12033 Opnd_Type : Entity_Id := Etype (Operand);
12034 Inc_Ancestor : Entity_Id;
12036 function Conversion_Check
12037 (Valid : Boolean;
12038 Msg : String) return Boolean;
12039 -- Little routine to post Msg if Valid is False, returns Valid value
12041 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id);
12042 -- If Report_Errs, then calls Errout.Error_Msg_N with its arguments
12044 procedure Conversion_Error_NE
12045 (Msg : String;
12046 N : Node_Or_Entity_Id;
12047 E : Node_Or_Entity_Id);
12048 -- If Report_Errs, then calls Errout.Error_Msg_NE with its arguments
12050 function In_Instance_Code return Boolean;
12051 -- Return True if expression is within an instance but is not in one of
12052 -- the actuals of the instantiation. Type conversions within an instance
12053 -- are not rechecked because type visbility may lead to spurious errors,
12054 -- but conversions in an actual for a formal object must be checked.
12056 function Valid_Tagged_Conversion
12057 (Target_Type : Entity_Id;
12058 Opnd_Type : Entity_Id) return Boolean;
12059 -- Specifically test for validity of tagged conversions
12061 function Valid_Array_Conversion return Boolean;
12062 -- Check index and component conformance, and accessibility levels if
12063 -- the component types are anonymous access types (Ada 2005).
12065 ----------------------
12066 -- Conversion_Check --
12067 ----------------------
12069 function Conversion_Check
12070 (Valid : Boolean;
12071 Msg : String) return Boolean
12073 begin
12074 if not Valid
12076 -- A generic unit has already been analyzed and we have verified
12077 -- that a particular conversion is OK in that context. Since the
12078 -- instance is reanalyzed without relying on the relationships
12079 -- established during the analysis of the generic, it is possible
12080 -- to end up with inconsistent views of private types. Do not emit
12081 -- the error message in such cases. The rest of the machinery in
12082 -- Valid_Conversion still ensures the proper compatibility of
12083 -- target and operand types.
12085 and then not In_Instance_Code
12086 then
12087 Conversion_Error_N (Msg, Operand);
12088 end if;
12090 return Valid;
12091 end Conversion_Check;
12093 ------------------------
12094 -- Conversion_Error_N --
12095 ------------------------
12097 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id) is
12098 begin
12099 if Report_Errs then
12100 Error_Msg_N (Msg, N);
12101 end if;
12102 end Conversion_Error_N;
12104 -------------------------
12105 -- Conversion_Error_NE --
12106 -------------------------
12108 procedure Conversion_Error_NE
12109 (Msg : String;
12110 N : Node_Or_Entity_Id;
12111 E : Node_Or_Entity_Id)
12113 begin
12114 if Report_Errs then
12115 Error_Msg_NE (Msg, N, E);
12116 end if;
12117 end Conversion_Error_NE;
12119 ----------------------
12120 -- In_Instance_Code --
12121 ----------------------
12123 function In_Instance_Code return Boolean is
12124 Par : Node_Id;
12126 begin
12127 if not In_Instance then
12128 return False;
12130 else
12131 Par := Parent (N);
12132 while Present (Par) loop
12134 -- The expression is part of an actual object if it appears in
12135 -- the generated object declaration in the instance.
12137 if Nkind (Par) = N_Object_Declaration
12138 and then Present (Corresponding_Generic_Association (Par))
12139 then
12140 return False;
12142 else
12143 exit when
12144 Nkind (Par) in N_Statement_Other_Than_Procedure_Call
12145 or else Nkind (Par) in N_Subprogram_Call
12146 or else Nkind (Par) in N_Declaration;
12147 end if;
12149 Par := Parent (Par);
12150 end loop;
12152 -- Otherwise the expression appears within the instantiated unit
12154 return True;
12155 end if;
12156 end In_Instance_Code;
12158 ----------------------------
12159 -- Valid_Array_Conversion --
12160 ----------------------------
12162 function Valid_Array_Conversion return Boolean is
12163 Opnd_Comp_Type : constant Entity_Id := Component_Type (Opnd_Type);
12164 Opnd_Comp_Base : constant Entity_Id := Base_Type (Opnd_Comp_Type);
12166 Opnd_Index : Node_Id;
12167 Opnd_Index_Type : Entity_Id;
12169 Target_Comp_Type : constant Entity_Id :=
12170 Component_Type (Target_Type);
12171 Target_Comp_Base : constant Entity_Id :=
12172 Base_Type (Target_Comp_Type);
12174 Target_Index : Node_Id;
12175 Target_Index_Type : Entity_Id;
12177 begin
12178 -- Error if wrong number of dimensions
12181 Number_Dimensions (Target_Type) /= Number_Dimensions (Opnd_Type)
12182 then
12183 Conversion_Error_N
12184 ("incompatible number of dimensions for conversion", Operand);
12185 return False;
12187 -- Number of dimensions matches
12189 else
12190 -- Loop through indexes of the two arrays
12192 Target_Index := First_Index (Target_Type);
12193 Opnd_Index := First_Index (Opnd_Type);
12194 while Present (Target_Index) and then Present (Opnd_Index) loop
12195 Target_Index_Type := Etype (Target_Index);
12196 Opnd_Index_Type := Etype (Opnd_Index);
12198 -- Error if index types are incompatible
12200 if not (Is_Integer_Type (Target_Index_Type)
12201 and then Is_Integer_Type (Opnd_Index_Type))
12202 and then (Root_Type (Target_Index_Type)
12203 /= Root_Type (Opnd_Index_Type))
12204 then
12205 Conversion_Error_N
12206 ("incompatible index types for array conversion",
12207 Operand);
12208 return False;
12209 end if;
12211 Next_Index (Target_Index);
12212 Next_Index (Opnd_Index);
12213 end loop;
12215 -- If component types have same base type, all set
12217 if Target_Comp_Base = Opnd_Comp_Base then
12218 null;
12220 -- Here if base types of components are not the same. The only
12221 -- time this is allowed is if we have anonymous access types.
12223 -- The conversion of arrays of anonymous access types can lead
12224 -- to dangling pointers. AI-392 formalizes the accessibility
12225 -- checks that must be applied to such conversions to prevent
12226 -- out-of-scope references.
12228 elsif Ekind_In
12229 (Target_Comp_Base, E_Anonymous_Access_Type,
12230 E_Anonymous_Access_Subprogram_Type)
12231 and then Ekind (Opnd_Comp_Base) = Ekind (Target_Comp_Base)
12232 and then
12233 Subtypes_Statically_Match (Target_Comp_Type, Opnd_Comp_Type)
12234 then
12235 if Type_Access_Level (Target_Type) <
12236 Deepest_Type_Access_Level (Opnd_Type)
12237 then
12238 if In_Instance_Body then
12239 Error_Msg_Warn := SPARK_Mode /= On;
12240 Conversion_Error_N
12241 ("source array type has deeper accessibility "
12242 & "level than target<<", Operand);
12243 Conversion_Error_N ("\Program_Error [<<", Operand);
12244 Rewrite (N,
12245 Make_Raise_Program_Error (Sloc (N),
12246 Reason => PE_Accessibility_Check_Failed));
12247 Set_Etype (N, Target_Type);
12248 return False;
12250 -- Conversion not allowed because of accessibility levels
12252 else
12253 Conversion_Error_N
12254 ("source array type has deeper accessibility "
12255 & "level than target", Operand);
12256 return False;
12257 end if;
12259 else
12260 null;
12261 end if;
12263 -- All other cases where component base types do not match
12265 else
12266 Conversion_Error_N
12267 ("incompatible component types for array conversion",
12268 Operand);
12269 return False;
12270 end if;
12272 -- Check that component subtypes statically match. For numeric
12273 -- types this means that both must be either constrained or
12274 -- unconstrained. For enumeration types the bounds must match.
12275 -- All of this is checked in Subtypes_Statically_Match.
12277 if not Subtypes_Statically_Match
12278 (Target_Comp_Type, Opnd_Comp_Type)
12279 then
12280 Conversion_Error_N
12281 ("component subtypes must statically match", Operand);
12282 return False;
12283 end if;
12284 end if;
12286 return True;
12287 end Valid_Array_Conversion;
12289 -----------------------------
12290 -- Valid_Tagged_Conversion --
12291 -----------------------------
12293 function Valid_Tagged_Conversion
12294 (Target_Type : Entity_Id;
12295 Opnd_Type : Entity_Id) return Boolean
12297 begin
12298 -- Upward conversions are allowed (RM 4.6(22))
12300 if Covers (Target_Type, Opnd_Type)
12301 or else Is_Ancestor (Target_Type, Opnd_Type)
12302 then
12303 return True;
12305 -- Downward conversion are allowed if the operand is class-wide
12306 -- (RM 4.6(23)).
12308 elsif Is_Class_Wide_Type (Opnd_Type)
12309 and then Covers (Opnd_Type, Target_Type)
12310 then
12311 return True;
12313 elsif Covers (Opnd_Type, Target_Type)
12314 or else Is_Ancestor (Opnd_Type, Target_Type)
12315 then
12316 return
12317 Conversion_Check (False,
12318 "downward conversion of tagged objects not allowed");
12320 -- Ada 2005 (AI-251): The conversion to/from interface types is
12321 -- always valid. The types involved may be class-wide (sub)types.
12323 elsif Is_Interface (Etype (Base_Type (Target_Type)))
12324 or else Is_Interface (Etype (Base_Type (Opnd_Type)))
12325 then
12326 return True;
12328 -- If the operand is a class-wide type obtained through a limited_
12329 -- with clause, and the context includes the nonlimited view, use
12330 -- it to determine whether the conversion is legal.
12332 elsif Is_Class_Wide_Type (Opnd_Type)
12333 and then From_Limited_With (Opnd_Type)
12334 and then Present (Non_Limited_View (Etype (Opnd_Type)))
12335 and then Is_Interface (Non_Limited_View (Etype (Opnd_Type)))
12336 then
12337 return True;
12339 elsif Is_Access_Type (Opnd_Type)
12340 and then Is_Interface (Directly_Designated_Type (Opnd_Type))
12341 then
12342 return True;
12344 else
12345 Conversion_Error_NE
12346 ("invalid tagged conversion, not compatible with}",
12347 N, First_Subtype (Opnd_Type));
12348 return False;
12349 end if;
12350 end Valid_Tagged_Conversion;
12352 -- Start of processing for Valid_Conversion
12354 begin
12355 Check_Parameterless_Call (Operand);
12357 if Is_Overloaded (Operand) then
12358 declare
12359 I : Interp_Index;
12360 I1 : Interp_Index;
12361 It : Interp;
12362 It1 : Interp;
12363 N1 : Entity_Id;
12364 T1 : Entity_Id;
12366 begin
12367 -- Remove procedure calls, which syntactically cannot appear in
12368 -- this context, but which cannot be removed by type checking,
12369 -- because the context does not impose a type.
12371 -- The node may be labelled overloaded, but still contain only one
12372 -- interpretation because others were discarded earlier. If this
12373 -- is the case, retain the single interpretation if legal.
12375 Get_First_Interp (Operand, I, It);
12376 Opnd_Type := It.Typ;
12377 Get_Next_Interp (I, It);
12379 if Present (It.Typ)
12380 and then Opnd_Type /= Standard_Void_Type
12381 then
12382 -- More than one candidate interpretation is available
12384 Get_First_Interp (Operand, I, It);
12385 while Present (It.Typ) loop
12386 if It.Typ = Standard_Void_Type then
12387 Remove_Interp (I);
12388 end if;
12390 -- When compiling for a system where Address is of a visible
12391 -- integer type, spurious ambiguities can be produced when
12392 -- arithmetic operations have a literal operand and return
12393 -- System.Address or a descendant of it. These ambiguities
12394 -- are usually resolved by the context, but for conversions
12395 -- there is no context type and the removal of the spurious
12396 -- operations must be done explicitly here.
12398 if not Address_Is_Private
12399 and then Is_Descendant_Of_Address (It.Typ)
12400 then
12401 Remove_Interp (I);
12402 end if;
12404 Get_Next_Interp (I, It);
12405 end loop;
12406 end if;
12408 Get_First_Interp (Operand, I, It);
12409 I1 := I;
12410 It1 := It;
12412 if No (It.Typ) then
12413 Conversion_Error_N ("illegal operand in conversion", Operand);
12414 return False;
12415 end if;
12417 Get_Next_Interp (I, It);
12419 if Present (It.Typ) then
12420 N1 := It1.Nam;
12421 T1 := It1.Typ;
12422 It1 := Disambiguate (Operand, I1, I, Any_Type);
12424 if It1 = No_Interp then
12425 Conversion_Error_N
12426 ("ambiguous operand in conversion", Operand);
12428 -- If the interpretation involves a standard operator, use
12429 -- the location of the type, which may be user-defined.
12431 if Sloc (It.Nam) = Standard_Location then
12432 Error_Msg_Sloc := Sloc (It.Typ);
12433 else
12434 Error_Msg_Sloc := Sloc (It.Nam);
12435 end if;
12437 Conversion_Error_N -- CODEFIX
12438 ("\\possible interpretation#!", Operand);
12440 if Sloc (N1) = Standard_Location then
12441 Error_Msg_Sloc := Sloc (T1);
12442 else
12443 Error_Msg_Sloc := Sloc (N1);
12444 end if;
12446 Conversion_Error_N -- CODEFIX
12447 ("\\possible interpretation#!", Operand);
12449 return False;
12450 end if;
12451 end if;
12453 Set_Etype (Operand, It1.Typ);
12454 Opnd_Type := It1.Typ;
12455 end;
12456 end if;
12458 -- Deal with conversion of integer type to address if the pragma
12459 -- Allow_Integer_Address is in effect. We convert the conversion to
12460 -- an unchecked conversion in this case and we are all done.
12462 if Address_Integer_Convert_OK (Opnd_Type, Target_Type) then
12463 Rewrite (N, Unchecked_Convert_To (Target_Type, Expression (N)));
12464 Analyze_And_Resolve (N, Target_Type);
12465 return True;
12466 end if;
12468 -- If we are within a child unit, check whether the type of the
12469 -- expression has an ancestor in a parent unit, in which case it
12470 -- belongs to its derivation class even if the ancestor is private.
12471 -- See RM 7.3.1 (5.2/3).
12473 Inc_Ancestor := Get_Incomplete_View_Of_Ancestor (Opnd_Type);
12475 -- Numeric types
12477 if Is_Numeric_Type (Target_Type) then
12479 -- A universal fixed expression can be converted to any numeric type
12481 if Opnd_Type = Universal_Fixed then
12482 return True;
12484 -- Also no need to check when in an instance or inlined body, because
12485 -- the legality has been established when the template was analyzed.
12486 -- Furthermore, numeric conversions may occur where only a private
12487 -- view of the operand type is visible at the instantiation point.
12488 -- This results in a spurious error if we check that the operand type
12489 -- is a numeric type.
12491 -- Note: in a previous version of this unit, the following tests were
12492 -- applied only for generated code (Comes_From_Source set to False),
12493 -- but in fact the test is required for source code as well, since
12494 -- this situation can arise in source code.
12496 elsif In_Instance_Code or else In_Inlined_Body then
12497 return True;
12499 -- Otherwise we need the conversion check
12501 else
12502 return Conversion_Check
12503 (Is_Numeric_Type (Opnd_Type)
12504 or else
12505 (Present (Inc_Ancestor)
12506 and then Is_Numeric_Type (Inc_Ancestor)),
12507 "illegal operand for numeric conversion");
12508 end if;
12510 -- Array types
12512 elsif Is_Array_Type (Target_Type) then
12513 if not Is_Array_Type (Opnd_Type)
12514 or else Opnd_Type = Any_Composite
12515 or else Opnd_Type = Any_String
12516 then
12517 Conversion_Error_N
12518 ("illegal operand for array conversion", Operand);
12519 return False;
12521 else
12522 return Valid_Array_Conversion;
12523 end if;
12525 -- Ada 2005 (AI-251): Internally generated conversions of access to
12526 -- interface types added to force the displacement of the pointer to
12527 -- reference the corresponding dispatch table.
12529 elsif not Comes_From_Source (N)
12530 and then Is_Access_Type (Target_Type)
12531 and then Is_Interface (Designated_Type (Target_Type))
12532 then
12533 return True;
12535 -- Ada 2005 (AI-251): Anonymous access types where target references an
12536 -- interface type.
12538 elsif Is_Access_Type (Opnd_Type)
12539 and then Ekind_In (Target_Type, E_General_Access_Type,
12540 E_Anonymous_Access_Type)
12541 and then Is_Interface (Directly_Designated_Type (Target_Type))
12542 then
12543 -- Check the static accessibility rule of 4.6(17). Note that the
12544 -- check is not enforced when within an instance body, since the
12545 -- RM requires such cases to be caught at run time.
12547 -- If the operand is a rewriting of an allocator no check is needed
12548 -- because there are no accessibility issues.
12550 if Nkind (Original_Node (N)) = N_Allocator then
12551 null;
12553 elsif Ekind (Target_Type) /= E_Anonymous_Access_Type then
12554 if Type_Access_Level (Opnd_Type) >
12555 Deepest_Type_Access_Level (Target_Type)
12556 then
12557 -- In an instance, this is a run-time check, but one we know
12558 -- will fail, so generate an appropriate warning. The raise
12559 -- will be generated by Expand_N_Type_Conversion.
12561 if In_Instance_Body then
12562 Error_Msg_Warn := SPARK_Mode /= On;
12563 Conversion_Error_N
12564 ("cannot convert local pointer to non-local access type<<",
12565 Operand);
12566 Conversion_Error_N ("\Program_Error [<<", Operand);
12568 else
12569 Conversion_Error_N
12570 ("cannot convert local pointer to non-local access type",
12571 Operand);
12572 return False;
12573 end if;
12575 -- Special accessibility checks are needed in the case of access
12576 -- discriminants declared for a limited type.
12578 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12579 and then not Is_Local_Anonymous_Access (Opnd_Type)
12580 then
12581 -- When the operand is a selected access discriminant the check
12582 -- needs to be made against the level of the object denoted by
12583 -- the prefix of the selected name (Object_Access_Level handles
12584 -- checking the prefix of the operand for this case).
12586 if Nkind (Operand) = N_Selected_Component
12587 and then Object_Access_Level (Operand) >
12588 Deepest_Type_Access_Level (Target_Type)
12589 then
12590 -- In an instance, this is a run-time check, but one we know
12591 -- will fail, so generate an appropriate warning. The raise
12592 -- will be generated by Expand_N_Type_Conversion.
12594 if In_Instance_Body then
12595 Error_Msg_Warn := SPARK_Mode /= On;
12596 Conversion_Error_N
12597 ("cannot convert access discriminant to non-local "
12598 & "access type<<", Operand);
12599 Conversion_Error_N ("\Program_Error [<<", Operand);
12601 -- Real error if not in instance body
12603 else
12604 Conversion_Error_N
12605 ("cannot convert access discriminant to non-local "
12606 & "access type", Operand);
12607 return False;
12608 end if;
12609 end if;
12611 -- The case of a reference to an access discriminant from
12612 -- within a limited type declaration (which will appear as
12613 -- a discriminal) is always illegal because the level of the
12614 -- discriminant is considered to be deeper than any (nameable)
12615 -- access type.
12617 if Is_Entity_Name (Operand)
12618 and then not Is_Local_Anonymous_Access (Opnd_Type)
12619 and then
12620 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12621 and then Present (Discriminal_Link (Entity (Operand)))
12622 then
12623 Conversion_Error_N
12624 ("discriminant has deeper accessibility level than target",
12625 Operand);
12626 return False;
12627 end if;
12628 end if;
12629 end if;
12631 return True;
12633 -- General and anonymous access types
12635 elsif Ekind_In (Target_Type, E_General_Access_Type,
12636 E_Anonymous_Access_Type)
12637 and then
12638 Conversion_Check
12639 (Is_Access_Type (Opnd_Type)
12640 and then not
12641 Ekind_In (Opnd_Type, E_Access_Subprogram_Type,
12642 E_Access_Protected_Subprogram_Type),
12643 "must be an access-to-object type")
12644 then
12645 if Is_Access_Constant (Opnd_Type)
12646 and then not Is_Access_Constant (Target_Type)
12647 then
12648 Conversion_Error_N
12649 ("access-to-constant operand type not allowed", Operand);
12650 return False;
12651 end if;
12653 -- Check the static accessibility rule of 4.6(17). Note that the
12654 -- check is not enforced when within an instance body, since the RM
12655 -- requires such cases to be caught at run time.
12657 if Ekind (Target_Type) /= E_Anonymous_Access_Type
12658 or else Is_Local_Anonymous_Access (Target_Type)
12659 or else Nkind (Associated_Node_For_Itype (Target_Type)) =
12660 N_Object_Declaration
12661 then
12662 -- Ada 2012 (AI05-0149): Perform legality checking on implicit
12663 -- conversions from an anonymous access type to a named general
12664 -- access type. Such conversions are not allowed in the case of
12665 -- access parameters and stand-alone objects of an anonymous
12666 -- access type. The implicit conversion case is recognized by
12667 -- testing that Comes_From_Source is False and that it's been
12668 -- rewritten. The Comes_From_Source test isn't sufficient because
12669 -- nodes in inlined calls to predefined library routines can have
12670 -- Comes_From_Source set to False. (Is there a better way to test
12671 -- for implicit conversions???)
12673 if Ada_Version >= Ada_2012
12674 and then not Comes_From_Source (N)
12675 and then N /= Original_Node (N)
12676 and then Ekind (Target_Type) = E_General_Access_Type
12677 and then Ekind (Opnd_Type) = E_Anonymous_Access_Type
12678 then
12679 if Is_Itype (Opnd_Type) then
12681 -- Implicit conversions aren't allowed for objects of an
12682 -- anonymous access type, since such objects have nonstatic
12683 -- levels in Ada 2012.
12685 if Nkind (Associated_Node_For_Itype (Opnd_Type)) =
12686 N_Object_Declaration
12687 then
12688 Conversion_Error_N
12689 ("implicit conversion of stand-alone anonymous "
12690 & "access object not allowed", Operand);
12691 return False;
12693 -- Implicit conversions aren't allowed for anonymous access
12694 -- parameters. The "not Is_Local_Anonymous_Access_Type" test
12695 -- is done to exclude anonymous access results.
12697 elsif not Is_Local_Anonymous_Access (Opnd_Type)
12698 and then Nkind_In (Associated_Node_For_Itype (Opnd_Type),
12699 N_Function_Specification,
12700 N_Procedure_Specification)
12701 then
12702 Conversion_Error_N
12703 ("implicit conversion of anonymous access formal "
12704 & "not allowed", Operand);
12705 return False;
12707 -- This is a case where there's an enclosing object whose
12708 -- to which the "statically deeper than" relationship does
12709 -- not apply (such as an access discriminant selected from
12710 -- a dereference of an access parameter).
12712 elsif Object_Access_Level (Operand)
12713 = Scope_Depth (Standard_Standard)
12714 then
12715 Conversion_Error_N
12716 ("implicit conversion of anonymous access value "
12717 & "not allowed", Operand);
12718 return False;
12720 -- In other cases, the level of the operand's type must be
12721 -- statically less deep than that of the target type, else
12722 -- implicit conversion is disallowed (by RM12-8.6(27.1/3)).
12724 elsif Type_Access_Level (Opnd_Type) >
12725 Deepest_Type_Access_Level (Target_Type)
12726 then
12727 Conversion_Error_N
12728 ("implicit conversion of anonymous access value "
12729 & "violates accessibility", Operand);
12730 return False;
12731 end if;
12732 end if;
12734 elsif Type_Access_Level (Opnd_Type) >
12735 Deepest_Type_Access_Level (Target_Type)
12736 then
12737 -- In an instance, this is a run-time check, but one we know
12738 -- will fail, so generate an appropriate warning. The raise
12739 -- will be generated by Expand_N_Type_Conversion.
12741 if In_Instance_Body then
12742 Error_Msg_Warn := SPARK_Mode /= On;
12743 Conversion_Error_N
12744 ("cannot convert local pointer to non-local access type<<",
12745 Operand);
12746 Conversion_Error_N ("\Program_Error [<<", Operand);
12748 -- If not in an instance body, this is a real error
12750 else
12751 -- Avoid generation of spurious error message
12753 if not Error_Posted (N) then
12754 Conversion_Error_N
12755 ("cannot convert local pointer to non-local access type",
12756 Operand);
12757 end if;
12759 return False;
12760 end if;
12762 -- Special accessibility checks are needed in the case of access
12763 -- discriminants declared for a limited type.
12765 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12766 and then not Is_Local_Anonymous_Access (Opnd_Type)
12767 then
12768 -- When the operand is a selected access discriminant the check
12769 -- needs to be made against the level of the object denoted by
12770 -- the prefix of the selected name (Object_Access_Level handles
12771 -- checking the prefix of the operand for this case).
12773 if Nkind (Operand) = N_Selected_Component
12774 and then Object_Access_Level (Operand) >
12775 Deepest_Type_Access_Level (Target_Type)
12776 then
12777 -- In an instance, this is a run-time check, but one we know
12778 -- will fail, so generate an appropriate warning. The raise
12779 -- will be generated by Expand_N_Type_Conversion.
12781 if In_Instance_Body then
12782 Error_Msg_Warn := SPARK_Mode /= On;
12783 Conversion_Error_N
12784 ("cannot convert access discriminant to non-local "
12785 & "access type<<", Operand);
12786 Conversion_Error_N ("\Program_Error [<<", Operand);
12788 -- If not in an instance body, this is a real error
12790 else
12791 Conversion_Error_N
12792 ("cannot convert access discriminant to non-local "
12793 & "access type", Operand);
12794 return False;
12795 end if;
12796 end if;
12798 -- The case of a reference to an access discriminant from
12799 -- within a limited type declaration (which will appear as
12800 -- a discriminal) is always illegal because the level of the
12801 -- discriminant is considered to be deeper than any (nameable)
12802 -- access type.
12804 if Is_Entity_Name (Operand)
12805 and then
12806 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12807 and then Present (Discriminal_Link (Entity (Operand)))
12808 then
12809 Conversion_Error_N
12810 ("discriminant has deeper accessibility level than target",
12811 Operand);
12812 return False;
12813 end if;
12814 end if;
12815 end if;
12817 -- In the presence of limited_with clauses we have to use nonlimited
12818 -- views, if available.
12820 Check_Limited : declare
12821 function Full_Designated_Type (T : Entity_Id) return Entity_Id;
12822 -- Helper function to handle limited views
12824 --------------------------
12825 -- Full_Designated_Type --
12826 --------------------------
12828 function Full_Designated_Type (T : Entity_Id) return Entity_Id is
12829 Desig : constant Entity_Id := Designated_Type (T);
12831 begin
12832 -- Handle the limited view of a type
12834 if From_Limited_With (Desig)
12835 and then Has_Non_Limited_View (Desig)
12836 then
12837 return Available_View (Desig);
12838 else
12839 return Desig;
12840 end if;
12841 end Full_Designated_Type;
12843 -- Local Declarations
12845 Target : constant Entity_Id := Full_Designated_Type (Target_Type);
12846 Opnd : constant Entity_Id := Full_Designated_Type (Opnd_Type);
12848 Same_Base : constant Boolean :=
12849 Base_Type (Target) = Base_Type (Opnd);
12851 -- Start of processing for Check_Limited
12853 begin
12854 if Is_Tagged_Type (Target) then
12855 return Valid_Tagged_Conversion (Target, Opnd);
12857 else
12858 if not Same_Base then
12859 Conversion_Error_NE
12860 ("target designated type not compatible with }",
12861 N, Base_Type (Opnd));
12862 return False;
12864 -- Ada 2005 AI-384: legality rule is symmetric in both
12865 -- designated types. The conversion is legal (with possible
12866 -- constraint check) if either designated type is
12867 -- unconstrained.
12869 elsif Subtypes_Statically_Match (Target, Opnd)
12870 or else
12871 (Has_Discriminants (Target)
12872 and then
12873 (not Is_Constrained (Opnd)
12874 or else not Is_Constrained (Target)))
12875 then
12876 -- Special case, if Value_Size has been used to make the
12877 -- sizes different, the conversion is not allowed even
12878 -- though the subtypes statically match.
12880 if Known_Static_RM_Size (Target)
12881 and then Known_Static_RM_Size (Opnd)
12882 and then RM_Size (Target) /= RM_Size (Opnd)
12883 then
12884 Conversion_Error_NE
12885 ("target designated subtype not compatible with }",
12886 N, Opnd);
12887 Conversion_Error_NE
12888 ("\because sizes of the two designated subtypes differ",
12889 N, Opnd);
12890 return False;
12892 -- Normal case where conversion is allowed
12894 else
12895 return True;
12896 end if;
12898 else
12899 Error_Msg_NE
12900 ("target designated subtype not compatible with }",
12901 N, Opnd);
12902 return False;
12903 end if;
12904 end if;
12905 end Check_Limited;
12907 -- Access to subprogram types. If the operand is an access parameter,
12908 -- the type has a deeper accessibility that any master, and cannot be
12909 -- assigned. We must make an exception if the conversion is part of an
12910 -- assignment and the target is the return object of an extended return
12911 -- statement, because in that case the accessibility check takes place
12912 -- after the return.
12914 elsif Is_Access_Subprogram_Type (Target_Type)
12916 -- Note: this test of Opnd_Type is there to prevent entering this
12917 -- branch in the case of a remote access to subprogram type, which
12918 -- is internally represented as an E_Record_Type.
12920 and then Is_Access_Type (Opnd_Type)
12921 then
12922 if Ekind (Base_Type (Opnd_Type)) = E_Anonymous_Access_Subprogram_Type
12923 and then Is_Entity_Name (Operand)
12924 and then Ekind (Entity (Operand)) = E_In_Parameter
12925 and then
12926 (Nkind (Parent (N)) /= N_Assignment_Statement
12927 or else not Is_Entity_Name (Name (Parent (N)))
12928 or else not Is_Return_Object (Entity (Name (Parent (N)))))
12929 then
12930 Conversion_Error_N
12931 ("illegal attempt to store anonymous access to subprogram",
12932 Operand);
12933 Conversion_Error_N
12934 ("\value has deeper accessibility than any master "
12935 & "(RM 3.10.2 (13))",
12936 Operand);
12938 Error_Msg_NE
12939 ("\use named access type for& instead of access parameter",
12940 Operand, Entity (Operand));
12941 end if;
12943 -- Check that the designated types are subtype conformant
12945 Check_Subtype_Conformant (New_Id => Designated_Type (Target_Type),
12946 Old_Id => Designated_Type (Opnd_Type),
12947 Err_Loc => N);
12949 -- Check the static accessibility rule of 4.6(20)
12951 if Type_Access_Level (Opnd_Type) >
12952 Deepest_Type_Access_Level (Target_Type)
12953 then
12954 Conversion_Error_N
12955 ("operand type has deeper accessibility level than target",
12956 Operand);
12958 -- Check that if the operand type is declared in a generic body,
12959 -- then the target type must be declared within that same body
12960 -- (enforces last sentence of 4.6(20)).
12962 elsif Present (Enclosing_Generic_Body (Opnd_Type)) then
12963 declare
12964 O_Gen : constant Node_Id :=
12965 Enclosing_Generic_Body (Opnd_Type);
12967 T_Gen : Node_Id;
12969 begin
12970 T_Gen := Enclosing_Generic_Body (Target_Type);
12971 while Present (T_Gen) and then T_Gen /= O_Gen loop
12972 T_Gen := Enclosing_Generic_Body (T_Gen);
12973 end loop;
12975 if T_Gen /= O_Gen then
12976 Conversion_Error_N
12977 ("target type must be declared in same generic body "
12978 & "as operand type", N);
12979 end if;
12980 end;
12981 end if;
12983 return True;
12985 -- Remote access to subprogram types
12987 elsif Is_Remote_Access_To_Subprogram_Type (Target_Type)
12988 and then Is_Remote_Access_To_Subprogram_Type (Opnd_Type)
12989 then
12990 -- It is valid to convert from one RAS type to another provided
12991 -- that their specification statically match.
12993 -- Note: at this point, remote access to subprogram types have been
12994 -- expanded to their E_Record_Type representation, and we need to
12995 -- go back to the original access type definition using the
12996 -- Corresponding_Remote_Type attribute in order to check that the
12997 -- designated profiles match.
12999 pragma Assert (Ekind (Target_Type) = E_Record_Type);
13000 pragma Assert (Ekind (Opnd_Type) = E_Record_Type);
13002 Check_Subtype_Conformant
13003 (New_Id =>
13004 Designated_Type (Corresponding_Remote_Type (Target_Type)),
13005 Old_Id =>
13006 Designated_Type (Corresponding_Remote_Type (Opnd_Type)),
13007 Err_Loc =>
13009 return True;
13011 -- If it was legal in the generic, it's legal in the instance
13013 elsif In_Instance_Body then
13014 return True;
13016 -- If both are tagged types, check legality of view conversions
13018 elsif Is_Tagged_Type (Target_Type)
13019 and then
13020 Is_Tagged_Type (Opnd_Type)
13021 then
13022 return Valid_Tagged_Conversion (Target_Type, Opnd_Type);
13024 -- Types derived from the same root type are convertible
13026 elsif Root_Type (Target_Type) = Root_Type (Opnd_Type) then
13027 return True;
13029 -- In an instance or an inlined body, there may be inconsistent views of
13030 -- the same type, or of types derived from a common root.
13032 elsif (In_Instance or In_Inlined_Body)
13033 and then
13034 Root_Type (Underlying_Type (Target_Type)) =
13035 Root_Type (Underlying_Type (Opnd_Type))
13036 then
13037 return True;
13039 -- Special check for common access type error case
13041 elsif Ekind (Target_Type) = E_Access_Type
13042 and then Is_Access_Type (Opnd_Type)
13043 then
13044 Conversion_Error_N ("target type must be general access type!", N);
13045 Conversion_Error_NE -- CODEFIX
13046 ("add ALL to }!", N, Target_Type);
13047 return False;
13049 -- Here we have a real conversion error
13051 else
13052 Conversion_Error_NE
13053 ("invalid conversion, not compatible with }", N, Opnd_Type);
13054 return False;
13055 end if;
13056 end Valid_Conversion;
13058 end Sem_Res;