PR target/82524
[official-gcc.git] / gcc / ada / sem_res.adb
blob68c1a0892a64c0f04cb2ca12970d0d5571144fb1
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 Chars (N) in Error_Name_Or_No_Name
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;
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 Scope (Opnd_Type) = System_Aux_Id
1527 then
1528 null;
1530 else
1531 -- Could we use Wrong_Type here??? (this would require setting
1532 -- Etype (N) to the actual type found where Typ was expected).
1534 Error_Msg_NE ("expect }", N, Typ);
1535 end if;
1536 end if;
1537 end if;
1539 Set_Chars (Op_Node, Op_Name);
1541 if not Is_Private_Type (Etype (N)) then
1542 Set_Etype (Op_Node, Base_Type (Etype (N)));
1543 else
1544 Set_Etype (Op_Node, Etype (N));
1545 end if;
1547 -- If this is a call to a function that renames a predefined equality,
1548 -- the renaming declaration provides a type that must be used to
1549 -- resolve the operands. This must be done now because resolution of
1550 -- the equality node will not resolve any remaining ambiguity, and it
1551 -- assumes that the first operand is not overloaded.
1553 if Nam_In (Op_Name, Name_Op_Eq, Name_Op_Ne)
1554 and then Ekind (Func) = E_Function
1555 and then Is_Overloaded (Act1)
1556 then
1557 Resolve (Act1, Base_Type (Etype (First_Formal (Func))));
1558 Resolve (Act2, Base_Type (Etype (First_Formal (Func))));
1559 end if;
1561 Set_Entity (Op_Node, Op_Id);
1562 Generate_Reference (Op_Id, N, ' ');
1564 -- Do rewrite setting Comes_From_Source on the result if the original
1565 -- call came from source. Although it is not strictly the case that the
1566 -- operator as such comes from the source, logically it corresponds
1567 -- exactly to the function call in the source, so it should be marked
1568 -- this way (e.g. to make sure that validity checks work fine).
1570 declare
1571 CS : constant Boolean := Comes_From_Source (N);
1572 begin
1573 Rewrite (N, Op_Node);
1574 Set_Comes_From_Source (N, CS);
1575 end;
1577 -- If this is an arithmetic operator and the result type is private,
1578 -- the operands and the result must be wrapped in conversion to
1579 -- expose the underlying numeric type and expand the proper checks,
1580 -- e.g. on division.
1582 if Is_Private_Type (Typ) then
1583 case Nkind (N) is
1584 when N_Op_Add
1585 | N_Op_Divide
1586 | N_Op_Expon
1587 | N_Op_Mod
1588 | N_Op_Multiply
1589 | N_Op_Rem
1590 | N_Op_Subtract
1592 Resolve_Intrinsic_Operator (N, Typ);
1594 when N_Op_Abs
1595 | N_Op_Minus
1596 | N_Op_Plus
1598 Resolve_Intrinsic_Unary_Operator (N, Typ);
1600 when others =>
1601 Resolve (N, Typ);
1602 end case;
1603 else
1604 Resolve (N, Typ);
1605 end if;
1607 -- If in ASIS_Mode, propagate operand types to original actuals of
1608 -- function call, which would otherwise not be fully resolved. If
1609 -- the call has already been constant-folded, nothing to do. We
1610 -- relocate the operand nodes rather than copy them, to preserve
1611 -- original_node pointers, given that the operands themselves may
1612 -- have been rewritten. If the call was itself a rewriting of an
1613 -- operator node, nothing to do.
1615 if ASIS_Mode
1616 and then Nkind (N) in N_Op
1617 and then Nkind (Original_Node (N)) = N_Function_Call
1618 then
1619 declare
1620 L : Node_Id;
1621 R : constant Node_Id := Right_Opnd (N);
1623 Old_First : constant Node_Id :=
1624 First (Parameter_Associations (Original_Node (N)));
1625 Old_Sec : Node_Id;
1627 begin
1628 if Is_Binary then
1629 L := Left_Opnd (N);
1630 Old_Sec := Next (Old_First);
1632 -- If the original call has named associations, replace the
1633 -- explicit actual parameter in the association with the proper
1634 -- resolved operand.
1636 if Nkind (Old_First) = N_Parameter_Association then
1637 if Chars (Selector_Name (Old_First)) =
1638 Chars (First_Entity (Op_Id))
1639 then
1640 Rewrite (Explicit_Actual_Parameter (Old_First),
1641 Relocate_Node (L));
1642 else
1643 Rewrite (Explicit_Actual_Parameter (Old_First),
1644 Relocate_Node (R));
1645 end if;
1647 else
1648 Rewrite (Old_First, Relocate_Node (L));
1649 end if;
1651 if Nkind (Old_Sec) = N_Parameter_Association then
1652 if Chars (Selector_Name (Old_Sec)) =
1653 Chars (First_Entity (Op_Id))
1654 then
1655 Rewrite (Explicit_Actual_Parameter (Old_Sec),
1656 Relocate_Node (L));
1657 else
1658 Rewrite (Explicit_Actual_Parameter (Old_Sec),
1659 Relocate_Node (R));
1660 end if;
1662 else
1663 Rewrite (Old_Sec, Relocate_Node (R));
1664 end if;
1666 else
1667 if Nkind (Old_First) = N_Parameter_Association then
1668 Rewrite (Explicit_Actual_Parameter (Old_First),
1669 Relocate_Node (R));
1670 else
1671 Rewrite (Old_First, Relocate_Node (R));
1672 end if;
1673 end if;
1674 end;
1676 Set_Parent (Original_Node (N), Parent (N));
1677 end if;
1678 end Make_Call_Into_Operator;
1680 -------------------
1681 -- Operator_Kind --
1682 -------------------
1684 function Operator_Kind
1685 (Op_Name : Name_Id;
1686 Is_Binary : Boolean) return Node_Kind
1688 Kind : Node_Kind;
1690 begin
1691 -- Use CASE statement or array???
1693 if Is_Binary then
1694 if Op_Name = Name_Op_And then
1695 Kind := N_Op_And;
1696 elsif Op_Name = Name_Op_Or then
1697 Kind := N_Op_Or;
1698 elsif Op_Name = Name_Op_Xor then
1699 Kind := N_Op_Xor;
1700 elsif Op_Name = Name_Op_Eq then
1701 Kind := N_Op_Eq;
1702 elsif Op_Name = Name_Op_Ne then
1703 Kind := N_Op_Ne;
1704 elsif Op_Name = Name_Op_Lt then
1705 Kind := N_Op_Lt;
1706 elsif Op_Name = Name_Op_Le then
1707 Kind := N_Op_Le;
1708 elsif Op_Name = Name_Op_Gt then
1709 Kind := N_Op_Gt;
1710 elsif Op_Name = Name_Op_Ge then
1711 Kind := N_Op_Ge;
1712 elsif Op_Name = Name_Op_Add then
1713 Kind := N_Op_Add;
1714 elsif Op_Name = Name_Op_Subtract then
1715 Kind := N_Op_Subtract;
1716 elsif Op_Name = Name_Op_Concat then
1717 Kind := N_Op_Concat;
1718 elsif Op_Name = Name_Op_Multiply then
1719 Kind := N_Op_Multiply;
1720 elsif Op_Name = Name_Op_Divide then
1721 Kind := N_Op_Divide;
1722 elsif Op_Name = Name_Op_Mod then
1723 Kind := N_Op_Mod;
1724 elsif Op_Name = Name_Op_Rem then
1725 Kind := N_Op_Rem;
1726 elsif Op_Name = Name_Op_Expon then
1727 Kind := N_Op_Expon;
1728 else
1729 raise Program_Error;
1730 end if;
1732 -- Unary operators
1734 else
1735 if Op_Name = Name_Op_Add then
1736 Kind := N_Op_Plus;
1737 elsif Op_Name = Name_Op_Subtract then
1738 Kind := N_Op_Minus;
1739 elsif Op_Name = Name_Op_Abs then
1740 Kind := N_Op_Abs;
1741 elsif Op_Name = Name_Op_Not then
1742 Kind := N_Op_Not;
1743 else
1744 raise Program_Error;
1745 end if;
1746 end if;
1748 return Kind;
1749 end Operator_Kind;
1751 ----------------------------
1752 -- Preanalyze_And_Resolve --
1753 ----------------------------
1755 procedure Preanalyze_And_Resolve (N : Node_Id; T : Entity_Id) is
1756 Save_Full_Analysis : constant Boolean := Full_Analysis;
1758 begin
1759 Full_Analysis := False;
1760 Expander_Mode_Save_And_Set (False);
1762 -- Normally, we suppress all checks for this preanalysis. There is no
1763 -- point in processing them now, since they will be applied properly
1764 -- and in the proper location when the default expressions reanalyzed
1765 -- and reexpanded later on. We will also have more information at that
1766 -- point for possible suppression of individual checks.
1768 -- However, in SPARK mode, most expansion is suppressed, and this
1769 -- later reanalysis and reexpansion may not occur. SPARK mode does
1770 -- require the setting of checking flags for proof purposes, so we
1771 -- do the SPARK preanalysis without suppressing checks.
1773 -- This special handling for SPARK mode is required for example in the
1774 -- case of Ada 2012 constructs such as quantified expressions, which are
1775 -- expanded in two separate steps.
1777 if GNATprove_Mode then
1778 Analyze_And_Resolve (N, T);
1779 else
1780 Analyze_And_Resolve (N, T, Suppress => All_Checks);
1781 end if;
1783 Expander_Mode_Restore;
1784 Full_Analysis := Save_Full_Analysis;
1785 end Preanalyze_And_Resolve;
1787 -- Version without context type
1789 procedure Preanalyze_And_Resolve (N : Node_Id) is
1790 Save_Full_Analysis : constant Boolean := Full_Analysis;
1792 begin
1793 Full_Analysis := False;
1794 Expander_Mode_Save_And_Set (False);
1796 Analyze (N);
1797 Resolve (N, Etype (N), Suppress => All_Checks);
1799 Expander_Mode_Restore;
1800 Full_Analysis := Save_Full_Analysis;
1801 end Preanalyze_And_Resolve;
1803 ----------------------------------
1804 -- Replace_Actual_Discriminants --
1805 ----------------------------------
1807 procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id) is
1808 Loc : constant Source_Ptr := Sloc (N);
1809 Tsk : Node_Id := Empty;
1811 function Process_Discr (Nod : Node_Id) return Traverse_Result;
1812 -- Comment needed???
1814 -------------------
1815 -- Process_Discr --
1816 -------------------
1818 function Process_Discr (Nod : Node_Id) return Traverse_Result is
1819 Ent : Entity_Id;
1821 begin
1822 if Nkind (Nod) = N_Identifier then
1823 Ent := Entity (Nod);
1825 if Present (Ent)
1826 and then Ekind (Ent) = E_Discriminant
1827 then
1828 Rewrite (Nod,
1829 Make_Selected_Component (Loc,
1830 Prefix => New_Copy_Tree (Tsk, New_Sloc => Loc),
1831 Selector_Name => Make_Identifier (Loc, Chars (Ent))));
1833 Set_Etype (Nod, Etype (Ent));
1834 end if;
1836 end if;
1838 return OK;
1839 end Process_Discr;
1841 procedure Replace_Discrs is new Traverse_Proc (Process_Discr);
1843 -- Start of processing for Replace_Actual_Discriminants
1845 begin
1846 if Expander_Active then
1847 null;
1849 -- Allow the replacement of concurrent discriminants in GNATprove even
1850 -- though this is a light expansion activity. Note that generic units
1851 -- are not modified.
1853 elsif GNATprove_Mode and not Inside_A_Generic then
1854 null;
1856 else
1857 return;
1858 end if;
1860 if Nkind (Name (N)) = N_Selected_Component then
1861 Tsk := Prefix (Name (N));
1863 elsif Nkind (Name (N)) = N_Indexed_Component then
1864 Tsk := Prefix (Prefix (Name (N)));
1865 end if;
1867 if Present (Tsk) then
1868 Replace_Discrs (Default);
1869 end if;
1870 end Replace_Actual_Discriminants;
1872 -------------
1873 -- Resolve --
1874 -------------
1876 procedure Resolve (N : Node_Id; Typ : Entity_Id) is
1877 Ambiguous : Boolean := False;
1878 Ctx_Type : Entity_Id := Typ;
1879 Expr_Type : Entity_Id := Empty; -- prevent junk warning
1880 Err_Type : Entity_Id := Empty;
1881 Found : Boolean := False;
1882 From_Lib : Boolean;
1883 I : Interp_Index;
1884 I1 : Interp_Index := 0; -- prevent junk warning
1885 It : Interp;
1886 It1 : Interp;
1887 Seen : Entity_Id := Empty; -- prevent junk warning
1889 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean;
1890 -- Determine whether a node comes from a predefined library unit or
1891 -- Standard.
1893 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id);
1894 -- Try and fix up a literal so that it matches its expected type. New
1895 -- literals are manufactured if necessary to avoid cascaded errors.
1897 procedure Report_Ambiguous_Argument;
1898 -- Additional diagnostics when an ambiguous call has an ambiguous
1899 -- argument (typically a controlling actual).
1901 procedure Resolution_Failed;
1902 -- Called when attempt at resolving current expression fails
1904 ------------------------------------
1905 -- Comes_From_Predefined_Lib_Unit --
1906 -------------------------------------
1908 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean is
1909 begin
1910 return
1911 Sloc (Nod) = Standard_Location or else In_Predefined_Unit (Nod);
1912 end Comes_From_Predefined_Lib_Unit;
1914 --------------------
1915 -- Patch_Up_Value --
1916 --------------------
1918 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id) is
1919 begin
1920 if Nkind (N) = N_Integer_Literal and then Is_Real_Type (Typ) then
1921 Rewrite (N,
1922 Make_Real_Literal (Sloc (N),
1923 Realval => UR_From_Uint (Intval (N))));
1924 Set_Etype (N, Universal_Real);
1925 Set_Is_Static_Expression (N);
1927 elsif Nkind (N) = N_Real_Literal and then Is_Integer_Type (Typ) then
1928 Rewrite (N,
1929 Make_Integer_Literal (Sloc (N),
1930 Intval => UR_To_Uint (Realval (N))));
1931 Set_Etype (N, Universal_Integer);
1932 Set_Is_Static_Expression (N);
1934 elsif Nkind (N) = N_String_Literal
1935 and then Is_Character_Type (Typ)
1936 then
1937 Set_Character_Literal_Name (Char_Code (Character'Pos ('A')));
1938 Rewrite (N,
1939 Make_Character_Literal (Sloc (N),
1940 Chars => Name_Find,
1941 Char_Literal_Value =>
1942 UI_From_Int (Character'Pos ('A'))));
1943 Set_Etype (N, Any_Character);
1944 Set_Is_Static_Expression (N);
1946 elsif Nkind (N) /= N_String_Literal and then Is_String_Type (Typ) then
1947 Rewrite (N,
1948 Make_String_Literal (Sloc (N),
1949 Strval => End_String));
1951 elsif Nkind (N) = N_Range then
1952 Patch_Up_Value (Low_Bound (N), Typ);
1953 Patch_Up_Value (High_Bound (N), Typ);
1954 end if;
1955 end Patch_Up_Value;
1957 -------------------------------
1958 -- Report_Ambiguous_Argument --
1959 -------------------------------
1961 procedure Report_Ambiguous_Argument is
1962 Arg : constant Node_Id := First (Parameter_Associations (N));
1963 I : Interp_Index;
1964 It : Interp;
1966 begin
1967 if Nkind (Arg) = N_Function_Call
1968 and then Is_Entity_Name (Name (Arg))
1969 and then Is_Overloaded (Name (Arg))
1970 then
1971 Error_Msg_NE ("ambiguous call to&", Arg, Name (Arg));
1973 -- Could use comments on what is going on here???
1975 Get_First_Interp (Name (Arg), I, It);
1976 while Present (It.Nam) loop
1977 Error_Msg_Sloc := Sloc (It.Nam);
1979 if Nkind (Parent (It.Nam)) = N_Full_Type_Declaration then
1980 Error_Msg_N ("interpretation (inherited) #!", Arg);
1981 else
1982 Error_Msg_N ("interpretation #!", Arg);
1983 end if;
1985 Get_Next_Interp (I, It);
1986 end loop;
1987 end if;
1988 end Report_Ambiguous_Argument;
1990 -----------------------
1991 -- Resolution_Failed --
1992 -----------------------
1994 procedure Resolution_Failed is
1995 begin
1996 Patch_Up_Value (N, Typ);
1998 -- Set the type to the desired one to minimize cascaded errors. Note
1999 -- that this is an approximation and does not work in all cases.
2001 Set_Etype (N, Typ);
2003 Debug_A_Exit ("resolving ", N, " (done, resolution failed)");
2004 Set_Is_Overloaded (N, False);
2006 -- The caller will return without calling the expander, so we need
2007 -- to set the analyzed flag. Note that it is fine to set Analyzed
2008 -- to True even if we are in the middle of a shallow analysis,
2009 -- (see the spec of sem for more details) since this is an error
2010 -- situation anyway, and there is no point in repeating the
2011 -- analysis later (indeed it won't work to repeat it later, since
2012 -- we haven't got a clear resolution of which entity is being
2013 -- referenced.)
2015 Set_Analyzed (N, True);
2016 return;
2017 end Resolution_Failed;
2019 -- Start of processing for Resolve
2021 begin
2022 if N = Error then
2023 return;
2024 end if;
2026 -- Access attribute on remote subprogram cannot be used for a non-remote
2027 -- access-to-subprogram type.
2029 if Nkind (N) = N_Attribute_Reference
2030 and then Nam_In (Attribute_Name (N), Name_Access,
2031 Name_Unrestricted_Access,
2032 Name_Unchecked_Access)
2033 and then Comes_From_Source (N)
2034 and then Is_Entity_Name (Prefix (N))
2035 and then Is_Subprogram (Entity (Prefix (N)))
2036 and then Is_Remote_Call_Interface (Entity (Prefix (N)))
2037 and then not Is_Remote_Access_To_Subprogram_Type (Typ)
2038 then
2039 Error_Msg_N
2040 ("prefix must statically denote a non-remote subprogram", N);
2041 end if;
2043 From_Lib := Comes_From_Predefined_Lib_Unit (N);
2045 -- If the context is a Remote_Access_To_Subprogram, access attributes
2046 -- must be resolved with the corresponding fat pointer. There is no need
2047 -- to check for the attribute name since the return type of an
2048 -- attribute is never a remote type.
2050 if Nkind (N) = N_Attribute_Reference
2051 and then Comes_From_Source (N)
2052 and then (Is_Remote_Call_Interface (Typ) or else Is_Remote_Types (Typ))
2053 then
2054 declare
2055 Attr : constant Attribute_Id :=
2056 Get_Attribute_Id (Attribute_Name (N));
2057 Pref : constant Node_Id := Prefix (N);
2058 Decl : Node_Id;
2059 Spec : Node_Id;
2060 Is_Remote : Boolean := True;
2062 begin
2063 -- Check that Typ is a remote access-to-subprogram type
2065 if Is_Remote_Access_To_Subprogram_Type (Typ) then
2067 -- Prefix (N) must statically denote a remote subprogram
2068 -- declared in a package specification.
2070 if Attr = Attribute_Access or else
2071 Attr = Attribute_Unchecked_Access or else
2072 Attr = Attribute_Unrestricted_Access
2073 then
2074 Decl := Unit_Declaration_Node (Entity (Pref));
2076 if Nkind (Decl) = N_Subprogram_Body then
2077 Spec := Corresponding_Spec (Decl);
2079 if Present (Spec) then
2080 Decl := Unit_Declaration_Node (Spec);
2081 end if;
2082 end if;
2084 Spec := Parent (Decl);
2086 if not Is_Entity_Name (Prefix (N))
2087 or else Nkind (Spec) /= N_Package_Specification
2088 or else
2089 not Is_Remote_Call_Interface (Defining_Entity (Spec))
2090 then
2091 Is_Remote := False;
2092 Error_Msg_N
2093 ("prefix must statically denote a remote subprogram ",
2095 end if;
2097 -- If we are generating code in distributed mode, perform
2098 -- semantic checks against corresponding remote entities.
2100 if Expander_Active
2101 and then Get_PCS_Name /= Name_No_DSA
2102 then
2103 Check_Subtype_Conformant
2104 (New_Id => Entity (Prefix (N)),
2105 Old_Id => Designated_Type
2106 (Corresponding_Remote_Type (Typ)),
2107 Err_Loc => N);
2109 if Is_Remote then
2110 Process_Remote_AST_Attribute (N, Typ);
2111 end if;
2112 end if;
2113 end if;
2114 end if;
2115 end;
2116 end if;
2118 Debug_A_Entry ("resolving ", N);
2120 if Debug_Flag_V then
2121 Write_Overloads (N);
2122 end if;
2124 if Comes_From_Source (N) then
2125 if Is_Fixed_Point_Type (Typ) then
2126 Check_Restriction (No_Fixed_Point, N);
2128 elsif Is_Floating_Point_Type (Typ)
2129 and then Typ /= Universal_Real
2130 and then Typ /= Any_Real
2131 then
2132 Check_Restriction (No_Floating_Point, N);
2133 end if;
2134 end if;
2136 -- Return if already analyzed
2138 if Analyzed (N) then
2139 Debug_A_Exit ("resolving ", N, " (done, already analyzed)");
2140 Analyze_Dimension (N);
2141 return;
2143 -- Any case of Any_Type as the Etype value means that we had a
2144 -- previous error.
2146 elsif Etype (N) = Any_Type then
2147 Debug_A_Exit ("resolving ", N, " (done, Etype = Any_Type)");
2148 return;
2149 end if;
2151 Check_Parameterless_Call (N);
2153 -- The resolution of an Expression_With_Actions is determined by
2154 -- its Expression.
2156 if Nkind (N) = N_Expression_With_Actions then
2157 Resolve (Expression (N), Typ);
2159 Found := True;
2160 Expr_Type := Etype (Expression (N));
2162 -- If not overloaded, then we know the type, and all that needs doing
2163 -- is to check that this type is compatible with the context.
2165 elsif not Is_Overloaded (N) then
2166 Found := Covers (Typ, Etype (N));
2167 Expr_Type := Etype (N);
2169 -- In the overloaded case, we must select the interpretation that
2170 -- is compatible with the context (i.e. the type passed to Resolve)
2172 else
2173 -- Loop through possible interpretations
2175 Get_First_Interp (N, I, It);
2176 Interp_Loop : while Present (It.Typ) loop
2177 if Debug_Flag_V then
2178 Write_Str ("Interp: ");
2179 Write_Interp (It);
2180 end if;
2182 -- We are only interested in interpretations that are compatible
2183 -- with the expected type, any other interpretations are ignored.
2185 if not Covers (Typ, It.Typ) then
2186 if Debug_Flag_V then
2187 Write_Str (" interpretation incompatible with context");
2188 Write_Eol;
2189 end if;
2191 else
2192 -- Skip the current interpretation if it is disabled by an
2193 -- abstract operator. This action is performed only when the
2194 -- type against which we are resolving is the same as the
2195 -- type of the interpretation.
2197 if Ada_Version >= Ada_2005
2198 and then It.Typ = Typ
2199 and then Typ /= Universal_Integer
2200 and then Typ /= Universal_Real
2201 and then Present (It.Abstract_Op)
2202 then
2203 if Debug_Flag_V then
2204 Write_Line ("Skip.");
2205 end if;
2207 goto Continue;
2208 end if;
2210 -- First matching interpretation
2212 if not Found then
2213 Found := True;
2214 I1 := I;
2215 Seen := It.Nam;
2216 Expr_Type := It.Typ;
2218 -- Matching interpretation that is not the first, maybe an
2219 -- error, but there are some cases where preference rules are
2220 -- used to choose between the two possibilities. These and
2221 -- some more obscure cases are handled in Disambiguate.
2223 else
2224 -- If the current statement is part of a predefined library
2225 -- unit, then all interpretations which come from user level
2226 -- packages should not be considered. Check previous and
2227 -- current one.
2229 if From_Lib then
2230 if not Comes_From_Predefined_Lib_Unit (It.Nam) then
2231 goto Continue;
2233 elsif not Comes_From_Predefined_Lib_Unit (Seen) then
2235 -- Previous interpretation must be discarded
2237 I1 := I;
2238 Seen := It.Nam;
2239 Expr_Type := It.Typ;
2240 Set_Entity (N, Seen);
2241 goto Continue;
2242 end if;
2243 end if;
2245 -- Otherwise apply further disambiguation steps
2247 Error_Msg_Sloc := Sloc (Seen);
2248 It1 := Disambiguate (N, I1, I, Typ);
2250 -- Disambiguation has succeeded. Skip the remaining
2251 -- interpretations.
2253 if It1 /= No_Interp then
2254 Seen := It1.Nam;
2255 Expr_Type := It1.Typ;
2257 while Present (It.Typ) loop
2258 Get_Next_Interp (I, It);
2259 end loop;
2261 else
2262 -- Before we issue an ambiguity complaint, check for the
2263 -- case of a subprogram call where at least one of the
2264 -- arguments is Any_Type, and if so suppress the message,
2265 -- since it is a cascaded error. This can also happen for
2266 -- a generalized indexing operation.
2268 if Nkind (N) in N_Subprogram_Call
2269 or else (Nkind (N) = N_Indexed_Component
2270 and then Present (Generalized_Indexing (N)))
2271 then
2272 declare
2273 A : Node_Id;
2274 E : Node_Id;
2276 begin
2277 if Nkind (N) = N_Indexed_Component then
2278 Rewrite (N, Generalized_Indexing (N));
2279 end if;
2281 A := First_Actual (N);
2282 while Present (A) loop
2283 E := A;
2285 if Nkind (E) = N_Parameter_Association then
2286 E := Explicit_Actual_Parameter (E);
2287 end if;
2289 if Etype (E) = Any_Type then
2290 if Debug_Flag_V then
2291 Write_Str ("Any_Type in call");
2292 Write_Eol;
2293 end if;
2295 exit Interp_Loop;
2296 end if;
2298 Next_Actual (A);
2299 end loop;
2300 end;
2302 elsif Nkind (N) in N_Binary_Op
2303 and then (Etype (Left_Opnd (N)) = Any_Type
2304 or else Etype (Right_Opnd (N)) = Any_Type)
2305 then
2306 exit Interp_Loop;
2308 elsif Nkind (N) in N_Unary_Op
2309 and then Etype (Right_Opnd (N)) = Any_Type
2310 then
2311 exit Interp_Loop;
2312 end if;
2314 -- Not that special case, so issue message using the flag
2315 -- Ambiguous to control printing of the header message
2316 -- only at the start of an ambiguous set.
2318 if not Ambiguous then
2319 if Nkind (N) = N_Function_Call
2320 and then Nkind (Name (N)) = N_Explicit_Dereference
2321 then
2322 Error_Msg_N
2323 ("ambiguous expression (cannot resolve indirect "
2324 & "call)!", N);
2325 else
2326 Error_Msg_NE -- CODEFIX
2327 ("ambiguous expression (cannot resolve&)!",
2328 N, It.Nam);
2329 end if;
2331 Ambiguous := True;
2333 if Nkind (Parent (Seen)) = N_Full_Type_Declaration then
2334 Error_Msg_N
2335 ("\\possible interpretation (inherited)#!", N);
2336 else
2337 Error_Msg_N -- CODEFIX
2338 ("\\possible interpretation#!", N);
2339 end if;
2341 if Nkind (N) in N_Subprogram_Call
2342 and then Present (Parameter_Associations (N))
2343 then
2344 Report_Ambiguous_Argument;
2345 end if;
2346 end if;
2348 Error_Msg_Sloc := Sloc (It.Nam);
2350 -- By default, the error message refers to the candidate
2351 -- interpretation. But if it is a predefined operator, it
2352 -- is implicitly declared at the declaration of the type
2353 -- of the operand. Recover the sloc of that declaration
2354 -- for the error message.
2356 if Nkind (N) in N_Op
2357 and then Scope (It.Nam) = Standard_Standard
2358 and then not Is_Overloaded (Right_Opnd (N))
2359 and then Scope (Base_Type (Etype (Right_Opnd (N)))) /=
2360 Standard_Standard
2361 then
2362 Err_Type := First_Subtype (Etype (Right_Opnd (N)));
2364 if Comes_From_Source (Err_Type)
2365 and then Present (Parent (Err_Type))
2366 then
2367 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2368 end if;
2370 elsif Nkind (N) in N_Binary_Op
2371 and then Scope (It.Nam) = Standard_Standard
2372 and then not Is_Overloaded (Left_Opnd (N))
2373 and then Scope (Base_Type (Etype (Left_Opnd (N)))) /=
2374 Standard_Standard
2375 then
2376 Err_Type := First_Subtype (Etype (Left_Opnd (N)));
2378 if Comes_From_Source (Err_Type)
2379 and then Present (Parent (Err_Type))
2380 then
2381 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2382 end if;
2384 -- If this is an indirect call, use the subprogram_type
2385 -- in the message, to have a meaningful location. Also
2386 -- indicate if this is an inherited operation, created
2387 -- by a type declaration.
2389 elsif Nkind (N) = N_Function_Call
2390 and then Nkind (Name (N)) = N_Explicit_Dereference
2391 and then Is_Type (It.Nam)
2392 then
2393 Err_Type := It.Nam;
2394 Error_Msg_Sloc :=
2395 Sloc (Associated_Node_For_Itype (Err_Type));
2396 else
2397 Err_Type := Empty;
2398 end if;
2400 if Nkind (N) in N_Op
2401 and then Scope (It.Nam) = Standard_Standard
2402 and then Present (Err_Type)
2403 then
2404 -- Special-case the message for universal_fixed
2405 -- operators, which are not declared with the type
2406 -- of the operand, but appear forever in Standard.
2408 if It.Typ = Universal_Fixed
2409 and then Scope (It.Nam) = Standard_Standard
2410 then
2411 Error_Msg_N
2412 ("\\possible interpretation as universal_fixed "
2413 & "operation (RM 4.5.5 (19))", N);
2414 else
2415 Error_Msg_N
2416 ("\\possible interpretation (predefined)#!", N);
2417 end if;
2419 elsif
2420 Nkind (Parent (It.Nam)) = N_Full_Type_Declaration
2421 then
2422 Error_Msg_N
2423 ("\\possible interpretation (inherited)#!", N);
2424 else
2425 Error_Msg_N -- CODEFIX
2426 ("\\possible interpretation#!", N);
2427 end if;
2429 end if;
2430 end if;
2432 -- We have a matching interpretation, Expr_Type is the type
2433 -- from this interpretation, and Seen is the entity.
2435 -- For an operator, just set the entity name. The type will be
2436 -- set by the specific operator resolution routine.
2438 if Nkind (N) in N_Op then
2439 Set_Entity (N, Seen);
2440 Generate_Reference (Seen, N);
2442 elsif Nkind (N) = N_Case_Expression then
2443 Set_Etype (N, Expr_Type);
2445 elsif Nkind (N) = N_Character_Literal then
2446 Set_Etype (N, Expr_Type);
2448 elsif Nkind (N) = N_If_Expression then
2449 Set_Etype (N, Expr_Type);
2451 -- AI05-0139-2: Expression is overloaded because type has
2452 -- implicit dereference. If type matches context, no implicit
2453 -- dereference is involved.
2455 elsif Has_Implicit_Dereference (Expr_Type) then
2456 Set_Etype (N, Expr_Type);
2457 Set_Is_Overloaded (N, False);
2458 exit Interp_Loop;
2460 elsif Is_Overloaded (N)
2461 and then Present (It.Nam)
2462 and then Ekind (It.Nam) = E_Discriminant
2463 and then Has_Implicit_Dereference (It.Nam)
2464 then
2465 -- If the node is a general indexing, the dereference is
2466 -- is inserted when resolving the rewritten form, else
2467 -- insert it now.
2469 if Nkind (N) /= N_Indexed_Component
2470 or else No (Generalized_Indexing (N))
2471 then
2472 Build_Explicit_Dereference (N, It.Nam);
2473 end if;
2475 -- For an explicit dereference, attribute reference, range,
2476 -- short-circuit form (which is not an operator node), or call
2477 -- with a name that is an explicit dereference, there is
2478 -- nothing to be done at this point.
2480 elsif Nkind_In (N, N_Attribute_Reference,
2481 N_And_Then,
2482 N_Explicit_Dereference,
2483 N_Identifier,
2484 N_Indexed_Component,
2485 N_Or_Else,
2486 N_Range,
2487 N_Selected_Component,
2488 N_Slice)
2489 or else Nkind (Name (N)) = N_Explicit_Dereference
2490 then
2491 null;
2493 -- For procedure or function calls, set the type of the name,
2494 -- and also the entity pointer for the prefix.
2496 elsif Nkind (N) in N_Subprogram_Call
2497 and then Is_Entity_Name (Name (N))
2498 then
2499 Set_Etype (Name (N), Expr_Type);
2500 Set_Entity (Name (N), Seen);
2501 Generate_Reference (Seen, Name (N));
2503 elsif Nkind (N) = N_Function_Call
2504 and then Nkind (Name (N)) = N_Selected_Component
2505 then
2506 Set_Etype (Name (N), Expr_Type);
2507 Set_Entity (Selector_Name (Name (N)), Seen);
2508 Generate_Reference (Seen, Selector_Name (Name (N)));
2510 -- For all other cases, just set the type of the Name
2512 else
2513 Set_Etype (Name (N), Expr_Type);
2514 end if;
2516 end if;
2518 <<Continue>>
2520 -- Move to next interpretation
2522 exit Interp_Loop when No (It.Typ);
2524 Get_Next_Interp (I, It);
2525 end loop Interp_Loop;
2526 end if;
2528 -- At this stage Found indicates whether or not an acceptable
2529 -- interpretation exists. If not, then we have an error, except that if
2530 -- the context is Any_Type as a result of some other error, then we
2531 -- suppress the error report.
2533 if not Found then
2534 if Typ /= Any_Type then
2536 -- If type we are looking for is Void, then this is the procedure
2537 -- call case, and the error is simply that what we gave is not a
2538 -- procedure name (we think of procedure calls as expressions with
2539 -- types internally, but the user doesn't think of them this way).
2541 if Typ = Standard_Void_Type then
2543 -- Special case message if function used as a procedure
2545 if Nkind (N) = N_Procedure_Call_Statement
2546 and then Is_Entity_Name (Name (N))
2547 and then Ekind (Entity (Name (N))) = E_Function
2548 then
2549 Error_Msg_NE
2550 ("cannot use call to function & as a statement",
2551 Name (N), Entity (Name (N)));
2552 Error_Msg_N
2553 ("\return value of a function call cannot be ignored",
2554 Name (N));
2556 -- Otherwise give general message (not clear what cases this
2557 -- covers, but no harm in providing for them).
2559 else
2560 Error_Msg_N ("expect procedure name in procedure call", N);
2561 end if;
2563 Found := True;
2565 -- Otherwise we do have a subexpression with the wrong type
2567 -- Check for the case of an allocator which uses an access type
2568 -- instead of the designated type. This is a common error and we
2569 -- specialize the message, posting an error on the operand of the
2570 -- allocator, complaining that we expected the designated type of
2571 -- the allocator.
2573 elsif Nkind (N) = N_Allocator
2574 and then Is_Access_Type (Typ)
2575 and then Is_Access_Type (Etype (N))
2576 and then Designated_Type (Etype (N)) = Typ
2577 then
2578 Wrong_Type (Expression (N), Designated_Type (Typ));
2579 Found := True;
2581 -- Check for view mismatch on Null in instances, for which the
2582 -- view-swapping mechanism has no identifier.
2584 elsif (In_Instance or else In_Inlined_Body)
2585 and then (Nkind (N) = N_Null)
2586 and then Is_Private_Type (Typ)
2587 and then Is_Access_Type (Full_View (Typ))
2588 then
2589 Resolve (N, Full_View (Typ));
2590 Set_Etype (N, Typ);
2591 return;
2593 -- Check for an aggregate. Sometimes we can get bogus aggregates
2594 -- from misuse of parentheses, and we are about to complain about
2595 -- the aggregate without even looking inside it.
2597 -- Instead, if we have an aggregate of type Any_Composite, then
2598 -- analyze and resolve the component fields, and then only issue
2599 -- another message if we get no errors doing this (otherwise
2600 -- assume that the errors in the aggregate caused the problem).
2602 elsif Nkind (N) = N_Aggregate
2603 and then Etype (N) = Any_Composite
2604 then
2605 -- Disable expansion in any case. If there is a type mismatch
2606 -- it may be fatal to try to expand the aggregate. The flag
2607 -- would otherwise be set to false when the error is posted.
2609 Expander_Active := False;
2611 declare
2612 procedure Check_Aggr (Aggr : Node_Id);
2613 -- Check one aggregate, and set Found to True if we have a
2614 -- definite error in any of its elements
2616 procedure Check_Elmt (Aelmt : Node_Id);
2617 -- Check one element of aggregate and set Found to True if
2618 -- we definitely have an error in the element.
2620 ----------------
2621 -- Check_Aggr --
2622 ----------------
2624 procedure Check_Aggr (Aggr : Node_Id) is
2625 Elmt : Node_Id;
2627 begin
2628 if Present (Expressions (Aggr)) then
2629 Elmt := First (Expressions (Aggr));
2630 while Present (Elmt) loop
2631 Check_Elmt (Elmt);
2632 Next (Elmt);
2633 end loop;
2634 end if;
2636 if Present (Component_Associations (Aggr)) then
2637 Elmt := First (Component_Associations (Aggr));
2638 while Present (Elmt) loop
2640 -- If this is a default-initialized component, then
2641 -- there is nothing to check. The box will be
2642 -- replaced by the appropriate call during late
2643 -- expansion.
2645 if Nkind (Elmt) /= N_Iterated_Component_Association
2646 and then not Box_Present (Elmt)
2647 then
2648 Check_Elmt (Expression (Elmt));
2649 end if;
2651 Next (Elmt);
2652 end loop;
2653 end if;
2654 end Check_Aggr;
2656 ----------------
2657 -- Check_Elmt --
2658 ----------------
2660 procedure Check_Elmt (Aelmt : Node_Id) is
2661 begin
2662 -- If we have a nested aggregate, go inside it (to
2663 -- attempt a naked analyze-resolve of the aggregate can
2664 -- cause undesirable cascaded errors). Do not resolve
2665 -- expression if it needs a type from context, as for
2666 -- integer * fixed expression.
2668 if Nkind (Aelmt) = N_Aggregate then
2669 Check_Aggr (Aelmt);
2671 else
2672 Analyze (Aelmt);
2674 if not Is_Overloaded (Aelmt)
2675 and then Etype (Aelmt) /= Any_Fixed
2676 then
2677 Resolve (Aelmt);
2678 end if;
2680 if Etype (Aelmt) = Any_Type then
2681 Found := True;
2682 end if;
2683 end if;
2684 end Check_Elmt;
2686 begin
2687 Check_Aggr (N);
2688 end;
2689 end if;
2691 -- Looks like we have a type error, but check for special case
2692 -- of Address wanted, integer found, with the configuration pragma
2693 -- Allow_Integer_Address active. If we have this case, introduce
2694 -- an unchecked conversion to allow the integer expression to be
2695 -- treated as an Address. The reverse case of integer wanted,
2696 -- Address found, is treated in an analogous manner.
2698 if Address_Integer_Convert_OK (Typ, Etype (N)) then
2699 Rewrite (N, Unchecked_Convert_To (Typ, Relocate_Node (N)));
2700 Analyze_And_Resolve (N, Typ);
2701 return;
2703 -- Under relaxed RM semantics silently replace occurrences of null
2704 -- by System.Address_Null.
2706 elsif Null_To_Null_Address_Convert_OK (N, Typ) then
2707 Replace_Null_By_Null_Address (N);
2708 Analyze_And_Resolve (N, Typ);
2709 return;
2710 end if;
2712 -- That special Allow_Integer_Address check did not apply, so we
2713 -- have a real type error. If an error message was issued already,
2714 -- Found got reset to True, so if it's still False, issue standard
2715 -- Wrong_Type message.
2717 if not Found then
2718 if Is_Overloaded (N) and then Nkind (N) = N_Function_Call then
2719 declare
2720 Subp_Name : Node_Id;
2722 begin
2723 if Is_Entity_Name (Name (N)) then
2724 Subp_Name := Name (N);
2726 elsif Nkind (Name (N)) = N_Selected_Component then
2728 -- Protected operation: retrieve operation name
2730 Subp_Name := Selector_Name (Name (N));
2732 else
2733 raise Program_Error;
2734 end if;
2736 Error_Msg_Node_2 := Typ;
2737 Error_Msg_NE
2738 ("no visible interpretation of& matches expected type&",
2739 N, Subp_Name);
2740 end;
2742 if All_Errors_Mode then
2743 declare
2744 Index : Interp_Index;
2745 It : Interp;
2747 begin
2748 Error_Msg_N ("\\possible interpretations:", N);
2750 Get_First_Interp (Name (N), Index, It);
2751 while Present (It.Nam) loop
2752 Error_Msg_Sloc := Sloc (It.Nam);
2753 Error_Msg_Node_2 := It.Nam;
2754 Error_Msg_NE
2755 ("\\ type& for & declared#", N, It.Typ);
2756 Get_Next_Interp (Index, It);
2757 end loop;
2758 end;
2760 else
2761 Error_Msg_N ("\use -gnatf for details", N);
2762 end if;
2764 else
2765 Wrong_Type (N, Typ);
2766 end if;
2767 end if;
2768 end if;
2770 Resolution_Failed;
2771 return;
2773 -- Test if we have more than one interpretation for the context
2775 elsif Ambiguous then
2776 Resolution_Failed;
2777 return;
2779 -- Only one intepretation
2781 else
2782 -- In Ada 2005, if we have something like "X : T := 2 + 2;", where
2783 -- the "+" on T is abstract, and the operands are of universal type,
2784 -- the above code will have (incorrectly) resolved the "+" to the
2785 -- universal one in Standard. Therefore check for this case and give
2786 -- an error. We can't do this earlier, because it would cause legal
2787 -- cases to get errors (when some other type has an abstract "+").
2789 if Ada_Version >= Ada_2005
2790 and then Nkind (N) in N_Op
2791 and then Is_Overloaded (N)
2792 and then Is_Universal_Numeric_Type (Etype (Entity (N)))
2793 then
2794 Get_First_Interp (N, I, It);
2795 while Present (It.Typ) loop
2796 if Present (It.Abstract_Op) and then
2797 Etype (It.Abstract_Op) = Typ
2798 then
2799 Error_Msg_NE
2800 ("cannot call abstract subprogram &!", N, It.Abstract_Op);
2801 return;
2802 end if;
2804 Get_Next_Interp (I, It);
2805 end loop;
2806 end if;
2808 -- Here we have an acceptable interpretation for the context
2810 -- Propagate type information and normalize tree for various
2811 -- predefined operations. If the context only imposes a class of
2812 -- types, rather than a specific type, propagate the actual type
2813 -- downward.
2815 if Typ = Any_Integer or else
2816 Typ = Any_Boolean or else
2817 Typ = Any_Modular or else
2818 Typ = Any_Real or else
2819 Typ = Any_Discrete
2820 then
2821 Ctx_Type := Expr_Type;
2823 -- Any_Fixed is legal in a real context only if a specific fixed-
2824 -- point type is imposed. If Norman Cohen can be confused by this,
2825 -- it deserves a separate message.
2827 if Typ = Any_Real
2828 and then Expr_Type = Any_Fixed
2829 then
2830 Error_Msg_N ("illegal context for mixed mode operation", N);
2831 Set_Etype (N, Universal_Real);
2832 Ctx_Type := Universal_Real;
2833 end if;
2834 end if;
2836 -- A user-defined operator is transformed into a function call at
2837 -- this point, so that further processing knows that operators are
2838 -- really operators (i.e. are predefined operators). User-defined
2839 -- operators that are intrinsic are just renamings of the predefined
2840 -- ones, and need not be turned into calls either, but if they rename
2841 -- a different operator, we must transform the node accordingly.
2842 -- Instantiations of Unchecked_Conversion are intrinsic but are
2843 -- treated as functions, even if given an operator designator.
2845 if Nkind (N) in N_Op
2846 and then Present (Entity (N))
2847 and then Ekind (Entity (N)) /= E_Operator
2848 then
2849 if not Is_Predefined_Op (Entity (N)) then
2850 Rewrite_Operator_As_Call (N, Entity (N));
2852 elsif Present (Alias (Entity (N)))
2853 and then
2854 Nkind (Parent (Parent (Entity (N)))) =
2855 N_Subprogram_Renaming_Declaration
2856 then
2857 Rewrite_Renamed_Operator (N, Alias (Entity (N)), Typ);
2859 -- If the node is rewritten, it will be fully resolved in
2860 -- Rewrite_Renamed_Operator.
2862 if Analyzed (N) then
2863 return;
2864 end if;
2865 end if;
2866 end if;
2868 case N_Subexpr'(Nkind (N)) is
2869 when N_Aggregate =>
2870 Resolve_Aggregate (N, Ctx_Type);
2872 when N_Allocator =>
2873 Resolve_Allocator (N, Ctx_Type);
2875 when N_Short_Circuit =>
2876 Resolve_Short_Circuit (N, Ctx_Type);
2878 when N_Attribute_Reference =>
2879 Resolve_Attribute (N, Ctx_Type);
2881 when N_Case_Expression =>
2882 Resolve_Case_Expression (N, Ctx_Type);
2884 when N_Character_Literal =>
2885 Resolve_Character_Literal (N, Ctx_Type);
2887 when N_Delta_Aggregate =>
2888 Resolve_Delta_Aggregate (N, Ctx_Type);
2890 when N_Expanded_Name =>
2891 Resolve_Entity_Name (N, Ctx_Type);
2893 when N_Explicit_Dereference =>
2894 Resolve_Explicit_Dereference (N, Ctx_Type);
2896 when N_Expression_With_Actions =>
2897 Resolve_Expression_With_Actions (N, Ctx_Type);
2899 when N_Extension_Aggregate =>
2900 Resolve_Extension_Aggregate (N, Ctx_Type);
2902 when N_Function_Call =>
2903 Resolve_Call (N, Ctx_Type);
2905 when N_Identifier =>
2906 Resolve_Entity_Name (N, Ctx_Type);
2908 when N_If_Expression =>
2909 Resolve_If_Expression (N, Ctx_Type);
2911 when N_Indexed_Component =>
2912 Resolve_Indexed_Component (N, Ctx_Type);
2914 when N_Integer_Literal =>
2915 Resolve_Integer_Literal (N, Ctx_Type);
2917 when N_Membership_Test =>
2918 Resolve_Membership_Op (N, Ctx_Type);
2920 when N_Null =>
2921 Resolve_Null (N, Ctx_Type);
2923 when N_Op_And
2924 | N_Op_Or
2925 | N_Op_Xor
2927 Resolve_Logical_Op (N, Ctx_Type);
2929 when N_Op_Eq
2930 | N_Op_Ne
2932 Resolve_Equality_Op (N, Ctx_Type);
2934 when N_Op_Ge
2935 | N_Op_Gt
2936 | N_Op_Le
2937 | N_Op_Lt
2939 Resolve_Comparison_Op (N, Ctx_Type);
2941 when N_Op_Not =>
2942 Resolve_Op_Not (N, Ctx_Type);
2944 when N_Op_Add
2945 | N_Op_Divide
2946 | N_Op_Mod
2947 | N_Op_Multiply
2948 | N_Op_Rem
2949 | N_Op_Subtract
2951 Resolve_Arithmetic_Op (N, Ctx_Type);
2953 when N_Op_Concat =>
2954 Resolve_Op_Concat (N, Ctx_Type);
2956 when N_Op_Expon =>
2957 Resolve_Op_Expon (N, Ctx_Type);
2959 when N_Op_Abs
2960 | N_Op_Minus
2961 | N_Op_Plus
2963 Resolve_Unary_Op (N, Ctx_Type);
2965 when N_Op_Shift =>
2966 Resolve_Shift (N, Ctx_Type);
2968 when N_Procedure_Call_Statement =>
2969 Resolve_Call (N, Ctx_Type);
2971 when N_Operator_Symbol =>
2972 Resolve_Operator_Symbol (N, Ctx_Type);
2974 when N_Qualified_Expression =>
2975 Resolve_Qualified_Expression (N, Ctx_Type);
2977 -- Why is the following null, needs a comment ???
2979 when N_Quantified_Expression =>
2980 null;
2982 when N_Raise_Expression =>
2983 Resolve_Raise_Expression (N, Ctx_Type);
2985 when N_Raise_xxx_Error =>
2986 Set_Etype (N, Ctx_Type);
2988 when N_Range =>
2989 Resolve_Range (N, Ctx_Type);
2991 when N_Real_Literal =>
2992 Resolve_Real_Literal (N, Ctx_Type);
2994 when N_Reference =>
2995 Resolve_Reference (N, Ctx_Type);
2997 when N_Selected_Component =>
2998 Resolve_Selected_Component (N, Ctx_Type);
3000 when N_Slice =>
3001 Resolve_Slice (N, Ctx_Type);
3003 when N_String_Literal =>
3004 Resolve_String_Literal (N, Ctx_Type);
3006 when N_Target_Name =>
3007 Resolve_Target_Name (N, Ctx_Type);
3009 when N_Type_Conversion =>
3010 Resolve_Type_Conversion (N, Ctx_Type);
3012 when N_Unchecked_Expression =>
3013 Resolve_Unchecked_Expression (N, Ctx_Type);
3015 when N_Unchecked_Type_Conversion =>
3016 Resolve_Unchecked_Type_Conversion (N, Ctx_Type);
3017 end case;
3019 -- Mark relevant use-type and use-package clauses as effective using
3020 -- the original node because constant folding may have occured and
3021 -- removed references that need to be examined.
3023 if Nkind (Original_Node (N)) in N_Op then
3024 Mark_Use_Clauses (Original_Node (N));
3025 end if;
3027 -- Ada 2012 (AI05-0149): Apply an (implicit) conversion to an
3028 -- expression of an anonymous access type that occurs in the context
3029 -- of a named general access type, except when the expression is that
3030 -- of a membership test. This ensures proper legality checking in
3031 -- terms of allowed conversions (expressions that would be illegal to
3032 -- convert implicitly are allowed in membership tests).
3034 if Ada_Version >= Ada_2012
3035 and then Ekind (Ctx_Type) = E_General_Access_Type
3036 and then Ekind (Etype (N)) = E_Anonymous_Access_Type
3037 and then Nkind (Parent (N)) not in N_Membership_Test
3038 then
3039 Rewrite (N, Convert_To (Ctx_Type, Relocate_Node (N)));
3040 Analyze_And_Resolve (N, Ctx_Type);
3041 end if;
3043 -- If the subexpression was replaced by a non-subexpression, then
3044 -- all we do is to expand it. The only legitimate case we know of
3045 -- is converting procedure call statement to entry call statements,
3046 -- but there may be others, so we are making this test general.
3048 if Nkind (N) not in N_Subexpr then
3049 Debug_A_Exit ("resolving ", N, " (done)");
3050 Expand (N);
3051 return;
3052 end if;
3054 -- The expression is definitely NOT overloaded at this point, so
3055 -- we reset the Is_Overloaded flag to avoid any confusion when
3056 -- reanalyzing the node.
3058 Set_Is_Overloaded (N, False);
3060 -- Freeze expression type, entity if it is a name, and designated
3061 -- type if it is an allocator (RM 13.14(10,11,13)).
3063 -- Now that the resolution of the type of the node is complete, and
3064 -- we did not detect an error, we can expand this node. We skip the
3065 -- expand call if we are in a default expression, see section
3066 -- "Handling of Default Expressions" in Sem spec.
3068 Debug_A_Exit ("resolving ", N, " (done)");
3070 -- We unconditionally freeze the expression, even if we are in
3071 -- default expression mode (the Freeze_Expression routine tests this
3072 -- flag and only freezes static types if it is set).
3074 -- Ada 2012 (AI05-177): The declaration of an expression function
3075 -- does not cause freezing, but we never reach here in that case.
3076 -- Here we are resolving the corresponding expanded body, so we do
3077 -- need to perform normal freezing.
3079 -- As elsewhere we do not emit freeze node within a generic. We make
3080 -- an exception for entities that are expressions, only to detect
3081 -- misuses of deferred constants and preserve the output of various
3082 -- tests.
3084 if not Inside_A_Generic or else Is_Entity_Name (N) then
3085 Freeze_Expression (N);
3086 end if;
3088 -- Now we can do the expansion
3090 Expand (N);
3091 end if;
3092 end Resolve;
3094 -------------
3095 -- Resolve --
3096 -------------
3098 -- Version with check(s) suppressed
3100 procedure Resolve (N : Node_Id; Typ : Entity_Id; Suppress : Check_Id) is
3101 begin
3102 if Suppress = All_Checks then
3103 declare
3104 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
3105 begin
3106 Scope_Suppress.Suppress := (others => True);
3107 Resolve (N, Typ);
3108 Scope_Suppress.Suppress := Sva;
3109 end;
3111 else
3112 declare
3113 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
3114 begin
3115 Scope_Suppress.Suppress (Suppress) := True;
3116 Resolve (N, Typ);
3117 Scope_Suppress.Suppress (Suppress) := Svg;
3118 end;
3119 end if;
3120 end Resolve;
3122 -------------
3123 -- Resolve --
3124 -------------
3126 -- Version with implicit type
3128 procedure Resolve (N : Node_Id) is
3129 begin
3130 Resolve (N, Etype (N));
3131 end Resolve;
3133 ---------------------
3134 -- Resolve_Actuals --
3135 ---------------------
3137 procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id) is
3138 Loc : constant Source_Ptr := Sloc (N);
3139 A : Node_Id;
3140 A_Id : Entity_Id;
3141 A_Typ : Entity_Id;
3142 F : Entity_Id;
3143 F_Typ : Entity_Id;
3144 Prev : Node_Id := Empty;
3145 Orig_A : Node_Id;
3146 Real_F : Entity_Id;
3148 Real_Subp : Entity_Id;
3149 -- If the subprogram being called is an inherited operation for
3150 -- a formal derived type in an instance, Real_Subp is the subprogram
3151 -- that will be called. It may have different formal names than the
3152 -- operation of the formal in the generic, so after actual is resolved
3153 -- the name of the actual in a named association must carry the name
3154 -- of the actual of the subprogram being called.
3156 procedure Check_Aliased_Parameter;
3157 -- Check rules on aliased parameters and related accessibility rules
3158 -- in (RM 3.10.2 (10.2-10.4)).
3160 procedure Check_Argument_Order;
3161 -- Performs a check for the case where the actuals are all simple
3162 -- identifiers that correspond to the formal names, but in the wrong
3163 -- order, which is considered suspicious and cause for a warning.
3165 procedure Check_Prefixed_Call;
3166 -- If the original node is an overloaded call in prefix notation,
3167 -- insert an 'Access or a dereference as needed over the first actual.
3168 -- Try_Object_Operation has already verified that there is a valid
3169 -- interpretation, but the form of the actual can only be determined
3170 -- once the primitive operation is identified.
3172 procedure Flag_Effectively_Volatile_Objects (Expr : Node_Id);
3173 -- Emit an error concerning the illegal usage of an effectively volatile
3174 -- object in interfering context (SPARK RM 7.13(12)).
3176 procedure Insert_Default;
3177 -- If the actual is missing in a call, insert in the actuals list
3178 -- an instance of the default expression. The insertion is always
3179 -- a named association.
3181 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean;
3182 -- Check whether T1 and T2, or their full views, are derived from a
3183 -- common type. Used to enforce the restrictions on array conversions
3184 -- of AI95-00246.
3186 function Static_Concatenation (N : Node_Id) return Boolean;
3187 -- Predicate to determine whether an actual that is a concatenation
3188 -- will be evaluated statically and does not need a transient scope.
3189 -- This must be determined before the actual is resolved and expanded
3190 -- because if needed the transient scope must be introduced earlier.
3192 -----------------------------
3193 -- Check_Aliased_Parameter --
3194 -----------------------------
3196 procedure Check_Aliased_Parameter is
3197 Nominal_Subt : Entity_Id;
3199 begin
3200 if Is_Aliased (F) then
3201 if Is_Tagged_Type (A_Typ) then
3202 null;
3204 elsif Is_Aliased_View (A) then
3205 if Is_Constr_Subt_For_U_Nominal (A_Typ) then
3206 Nominal_Subt := Base_Type (A_Typ);
3207 else
3208 Nominal_Subt := A_Typ;
3209 end if;
3211 if Subtypes_Statically_Match (F_Typ, Nominal_Subt) then
3212 null;
3214 -- In a generic body assume the worst for generic formals:
3215 -- they can have a constrained partial view (AI05-041).
3217 elsif Has_Discriminants (F_Typ)
3218 and then not Is_Constrained (F_Typ)
3219 and then not Has_Constrained_Partial_View (F_Typ)
3220 and then not Is_Generic_Type (F_Typ)
3221 then
3222 null;
3224 else
3225 Error_Msg_NE ("untagged actual does not match "
3226 & "aliased formal&", A, F);
3227 end if;
3229 else
3230 Error_Msg_NE ("actual for aliased formal& must be "
3231 & "aliased object", A, F);
3232 end if;
3234 if Ekind (Nam) = E_Procedure then
3235 null;
3237 elsif Ekind (Etype (Nam)) = E_Anonymous_Access_Type then
3238 if Nkind (Parent (N)) = N_Type_Conversion
3239 and then Type_Access_Level (Etype (Parent (N))) <
3240 Object_Access_Level (A)
3241 then
3242 Error_Msg_N ("aliased actual has wrong accessibility", A);
3243 end if;
3245 elsif Nkind (Parent (N)) = N_Qualified_Expression
3246 and then Nkind (Parent (Parent (N))) = N_Allocator
3247 and then Type_Access_Level (Etype (Parent (Parent (N)))) <
3248 Object_Access_Level (A)
3249 then
3250 Error_Msg_N
3251 ("aliased actual in allocator has wrong accessibility", A);
3252 end if;
3253 end if;
3254 end Check_Aliased_Parameter;
3256 --------------------------
3257 -- Check_Argument_Order --
3258 --------------------------
3260 procedure Check_Argument_Order is
3261 begin
3262 -- Nothing to do if no parameters, or original node is neither a
3263 -- function call nor a procedure call statement (happens in the
3264 -- operator-transformed-to-function call case), or the call does
3265 -- not come from source, or this warning is off.
3267 if not Warn_On_Parameter_Order
3268 or else No (Parameter_Associations (N))
3269 or else Nkind (Original_Node (N)) not in N_Subprogram_Call
3270 or else not Comes_From_Source (N)
3271 then
3272 return;
3273 end if;
3275 declare
3276 Nargs : constant Nat := List_Length (Parameter_Associations (N));
3278 begin
3279 -- Nothing to do if only one parameter
3281 if Nargs < 2 then
3282 return;
3283 end if;
3285 -- Here if at least two arguments
3287 declare
3288 Actuals : array (1 .. Nargs) of Node_Id;
3289 Actual : Node_Id;
3290 Formal : Node_Id;
3292 Wrong_Order : Boolean := False;
3293 -- Set True if an out of order case is found
3295 begin
3296 -- Collect identifier names of actuals, fail if any actual is
3297 -- not a simple identifier, and record max length of name.
3299 Actual := First (Parameter_Associations (N));
3300 for J in Actuals'Range loop
3301 if Nkind (Actual) /= N_Identifier then
3302 return;
3303 else
3304 Actuals (J) := Actual;
3305 Next (Actual);
3306 end if;
3307 end loop;
3309 -- If we got this far, all actuals are identifiers and the list
3310 -- of their names is stored in the Actuals array.
3312 Formal := First_Formal (Nam);
3313 for J in Actuals'Range loop
3315 -- If we ran out of formals, that's odd, probably an error
3316 -- which will be detected elsewhere, but abandon the search.
3318 if No (Formal) then
3319 return;
3320 end if;
3322 -- If name matches and is in order OK
3324 if Chars (Formal) = Chars (Actuals (J)) then
3325 null;
3327 else
3328 -- If no match, see if it is elsewhere in list and if so
3329 -- flag potential wrong order if type is compatible.
3331 for K in Actuals'Range loop
3332 if Chars (Formal) = Chars (Actuals (K))
3333 and then
3334 Has_Compatible_Type (Actuals (K), Etype (Formal))
3335 then
3336 Wrong_Order := True;
3337 goto Continue;
3338 end if;
3339 end loop;
3341 -- No match
3343 return;
3344 end if;
3346 <<Continue>> Next_Formal (Formal);
3347 end loop;
3349 -- If Formals left over, also probably an error, skip warning
3351 if Present (Formal) then
3352 return;
3353 end if;
3355 -- Here we give the warning if something was out of order
3357 if Wrong_Order then
3358 Error_Msg_N
3359 ("?P?actuals for this call may be in wrong order", N);
3360 end if;
3361 end;
3362 end;
3363 end Check_Argument_Order;
3365 -------------------------
3366 -- Check_Prefixed_Call --
3367 -------------------------
3369 procedure Check_Prefixed_Call is
3370 Act : constant Node_Id := First_Actual (N);
3371 A_Type : constant Entity_Id := Etype (Act);
3372 F_Type : constant Entity_Id := Etype (First_Formal (Nam));
3373 Orig : constant Node_Id := Original_Node (N);
3374 New_A : Node_Id;
3376 begin
3377 -- Check whether the call is a prefixed call, with or without
3378 -- additional actuals.
3380 if Nkind (Orig) = N_Selected_Component
3381 or else
3382 (Nkind (Orig) = N_Indexed_Component
3383 and then Nkind (Prefix (Orig)) = N_Selected_Component
3384 and then Is_Entity_Name (Prefix (Prefix (Orig)))
3385 and then Is_Entity_Name (Act)
3386 and then Chars (Act) = Chars (Prefix (Prefix (Orig))))
3387 then
3388 if Is_Access_Type (A_Type)
3389 and then not Is_Access_Type (F_Type)
3390 then
3391 -- Introduce dereference on object in prefix
3393 New_A :=
3394 Make_Explicit_Dereference (Sloc (Act),
3395 Prefix => Relocate_Node (Act));
3396 Rewrite (Act, New_A);
3397 Analyze (Act);
3399 elsif Is_Access_Type (F_Type)
3400 and then not Is_Access_Type (A_Type)
3401 then
3402 -- Introduce an implicit 'Access in prefix
3404 if not Is_Aliased_View (Act) then
3405 Error_Msg_NE
3406 ("object in prefixed call to& must be aliased "
3407 & "(RM 4.1.3 (13 1/2))",
3408 Prefix (Act), Nam);
3409 end if;
3411 Rewrite (Act,
3412 Make_Attribute_Reference (Loc,
3413 Attribute_Name => Name_Access,
3414 Prefix => Relocate_Node (Act)));
3415 end if;
3417 Analyze (Act);
3418 end if;
3419 end Check_Prefixed_Call;
3421 ---------------------------------------
3422 -- Flag_Effectively_Volatile_Objects --
3423 ---------------------------------------
3425 procedure Flag_Effectively_Volatile_Objects (Expr : Node_Id) is
3426 function Flag_Object (N : Node_Id) return Traverse_Result;
3427 -- Determine whether arbitrary node N denotes an effectively volatile
3428 -- object and if it does, emit an error.
3430 -----------------
3431 -- Flag_Object --
3432 -----------------
3434 function Flag_Object (N : Node_Id) return Traverse_Result is
3435 Id : Entity_Id;
3437 begin
3438 -- Do not consider nested function calls because they have already
3439 -- been processed during their own resolution.
3441 if Nkind (N) = N_Function_Call then
3442 return Skip;
3444 elsif Is_Entity_Name (N) and then Present (Entity (N)) then
3445 Id := Entity (N);
3447 if Is_Object (Id)
3448 and then Is_Effectively_Volatile (Id)
3449 and then (Async_Writers_Enabled (Id)
3450 or else Effective_Reads_Enabled (Id))
3451 then
3452 Error_Msg_N
3453 ("volatile object cannot appear in this context (SPARK "
3454 & "RM 7.1.3(11))", N);
3455 return Skip;
3456 end if;
3457 end if;
3459 return OK;
3460 end Flag_Object;
3462 procedure Flag_Objects is new Traverse_Proc (Flag_Object);
3464 -- Start of processing for Flag_Effectively_Volatile_Objects
3466 begin
3467 Flag_Objects (Expr);
3468 end Flag_Effectively_Volatile_Objects;
3470 --------------------
3471 -- Insert_Default --
3472 --------------------
3474 procedure Insert_Default is
3475 Actval : Node_Id;
3476 Assoc : Node_Id;
3478 begin
3479 -- Missing argument in call, nothing to insert
3481 if No (Default_Value (F)) then
3482 return;
3484 else
3485 -- Note that we do a full New_Copy_Tree, so that any associated
3486 -- Itypes are properly copied. This may not be needed any more,
3487 -- but it does no harm as a safety measure. Defaults of a generic
3488 -- formal may be out of bounds of the corresponding actual (see
3489 -- cc1311b) and an additional check may be required.
3491 Actval :=
3492 New_Copy_Tree
3493 (Default_Value (F),
3494 New_Scope => Current_Scope,
3495 New_Sloc => Loc);
3497 -- Propagate dimension information, if any.
3499 Copy_Dimensions (Default_Value (F), Actval);
3501 if Is_Concurrent_Type (Scope (Nam))
3502 and then Has_Discriminants (Scope (Nam))
3503 then
3504 Replace_Actual_Discriminants (N, Actval);
3505 end if;
3507 if Is_Overloadable (Nam)
3508 and then Present (Alias (Nam))
3509 then
3510 if Base_Type (Etype (F)) /= Base_Type (Etype (Actval))
3511 and then not Is_Tagged_Type (Etype (F))
3512 then
3513 -- If default is a real literal, do not introduce a
3514 -- conversion whose effect may depend on the run-time
3515 -- size of universal real.
3517 if Nkind (Actval) = N_Real_Literal then
3518 Set_Etype (Actval, Base_Type (Etype (F)));
3519 else
3520 Actval := Unchecked_Convert_To (Etype (F), Actval);
3521 end if;
3522 end if;
3524 if Is_Scalar_Type (Etype (F)) then
3525 Enable_Range_Check (Actval);
3526 end if;
3528 Set_Parent (Actval, N);
3530 -- Resolve aggregates with their base type, to avoid scope
3531 -- anomalies: the subtype was first built in the subprogram
3532 -- declaration, and the current call may be nested.
3534 if Nkind (Actval) = N_Aggregate then
3535 Analyze_And_Resolve (Actval, Etype (F));
3536 else
3537 Analyze_And_Resolve (Actval, Etype (Actval));
3538 end if;
3540 else
3541 Set_Parent (Actval, N);
3543 -- See note above concerning aggregates
3545 if Nkind (Actval) = N_Aggregate
3546 and then Has_Discriminants (Etype (Actval))
3547 then
3548 Analyze_And_Resolve (Actval, Base_Type (Etype (Actval)));
3550 -- Resolve entities with their own type, which may differ from
3551 -- the type of a reference in a generic context (the view
3552 -- swapping mechanism did not anticipate the re-analysis of
3553 -- default values in calls).
3555 elsif Is_Entity_Name (Actval) then
3556 Analyze_And_Resolve (Actval, Etype (Entity (Actval)));
3558 else
3559 Analyze_And_Resolve (Actval, Etype (Actval));
3560 end if;
3561 end if;
3563 -- If default is a tag indeterminate function call, propagate tag
3564 -- to obtain proper dispatching.
3566 if Is_Controlling_Formal (F)
3567 and then Nkind (Default_Value (F)) = N_Function_Call
3568 then
3569 Set_Is_Controlling_Actual (Actval);
3570 end if;
3571 end if;
3573 -- If the default expression raises constraint error, then just
3574 -- silently replace it with an N_Raise_Constraint_Error node, since
3575 -- we already gave the warning on the subprogram spec. If node is
3576 -- already a Raise_Constraint_Error leave as is, to prevent loops in
3577 -- the warnings removal machinery.
3579 if Raises_Constraint_Error (Actval)
3580 and then Nkind (Actval) /= N_Raise_Constraint_Error
3581 then
3582 Rewrite (Actval,
3583 Make_Raise_Constraint_Error (Loc,
3584 Reason => CE_Range_Check_Failed));
3586 Set_Raises_Constraint_Error (Actval);
3587 Set_Etype (Actval, Etype (F));
3588 end if;
3590 Assoc :=
3591 Make_Parameter_Association (Loc,
3592 Explicit_Actual_Parameter => Actval,
3593 Selector_Name => Make_Identifier (Loc, Chars (F)));
3595 -- Case of insertion is first named actual
3597 if No (Prev)
3598 or else Nkind (Parent (Prev)) /= N_Parameter_Association
3599 then
3600 Set_Next_Named_Actual (Assoc, First_Named_Actual (N));
3601 Set_First_Named_Actual (N, Actval);
3603 if No (Prev) then
3604 if No (Parameter_Associations (N)) then
3605 Set_Parameter_Associations (N, New_List (Assoc));
3606 else
3607 Append (Assoc, Parameter_Associations (N));
3608 end if;
3610 else
3611 Insert_After (Prev, Assoc);
3612 end if;
3614 -- Case of insertion is not first named actual
3616 else
3617 Set_Next_Named_Actual
3618 (Assoc, Next_Named_Actual (Parent (Prev)));
3619 Set_Next_Named_Actual (Parent (Prev), Actval);
3620 Append (Assoc, Parameter_Associations (N));
3621 end if;
3623 Mark_Rewrite_Insertion (Assoc);
3624 Mark_Rewrite_Insertion (Actval);
3626 Prev := Actval;
3627 end Insert_Default;
3629 -------------------
3630 -- Same_Ancestor --
3631 -------------------
3633 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean is
3634 FT1 : Entity_Id := T1;
3635 FT2 : Entity_Id := T2;
3637 begin
3638 if Is_Private_Type (T1)
3639 and then Present (Full_View (T1))
3640 then
3641 FT1 := Full_View (T1);
3642 end if;
3644 if Is_Private_Type (T2)
3645 and then Present (Full_View (T2))
3646 then
3647 FT2 := Full_View (T2);
3648 end if;
3650 return Root_Type (Base_Type (FT1)) = Root_Type (Base_Type (FT2));
3651 end Same_Ancestor;
3653 --------------------------
3654 -- Static_Concatenation --
3655 --------------------------
3657 function Static_Concatenation (N : Node_Id) return Boolean is
3658 begin
3659 case Nkind (N) is
3660 when N_String_Literal =>
3661 return True;
3663 when N_Op_Concat =>
3665 -- Concatenation is static when both operands are static and
3666 -- the concatenation operator is a predefined one.
3668 return Scope (Entity (N)) = Standard_Standard
3669 and then
3670 Static_Concatenation (Left_Opnd (N))
3671 and then
3672 Static_Concatenation (Right_Opnd (N));
3674 when others =>
3675 if Is_Entity_Name (N) then
3676 declare
3677 Ent : constant Entity_Id := Entity (N);
3678 begin
3679 return Ekind (Ent) = E_Constant
3680 and then Present (Constant_Value (Ent))
3681 and then
3682 Is_OK_Static_Expression (Constant_Value (Ent));
3683 end;
3685 else
3686 return False;
3687 end if;
3688 end case;
3689 end Static_Concatenation;
3691 -- Start of processing for Resolve_Actuals
3693 begin
3694 Check_Argument_Order;
3696 if Is_Overloadable (Nam)
3697 and then Is_Inherited_Operation (Nam)
3698 and then In_Instance
3699 and then Present (Alias (Nam))
3700 and then Present (Overridden_Operation (Alias (Nam)))
3701 then
3702 Real_Subp := Alias (Nam);
3703 else
3704 Real_Subp := Empty;
3705 end if;
3707 if Present (First_Actual (N)) then
3708 Check_Prefixed_Call;
3709 end if;
3711 A := First_Actual (N);
3712 F := First_Formal (Nam);
3714 if Present (Real_Subp) then
3715 Real_F := First_Formal (Real_Subp);
3716 end if;
3718 while Present (F) loop
3719 if No (A) and then Needs_No_Actuals (Nam) then
3720 null;
3722 -- If we have an error in any actual or formal, indicated by a type
3723 -- of Any_Type, then abandon resolution attempt, and set result type
3724 -- to Any_Type. Skip this if the actual is a Raise_Expression, whose
3725 -- type is imposed from context.
3727 elsif (Present (A) and then Etype (A) = Any_Type)
3728 or else Etype (F) = Any_Type
3729 then
3730 if Nkind (A) /= N_Raise_Expression then
3731 Set_Etype (N, Any_Type);
3732 return;
3733 end if;
3734 end if;
3736 -- Case where actual is present
3738 -- If the actual is an entity, generate a reference to it now. We
3739 -- do this before the actual is resolved, because a formal of some
3740 -- protected subprogram, or a task discriminant, will be rewritten
3741 -- during expansion, and the source entity reference may be lost.
3743 if Present (A)
3744 and then Is_Entity_Name (A)
3745 and then Comes_From_Source (A)
3746 then
3747 Orig_A := Entity (A);
3749 if Present (Orig_A) then
3750 if Is_Formal (Orig_A)
3751 and then Ekind (F) /= E_In_Parameter
3752 then
3753 Generate_Reference (Orig_A, A, 'm');
3755 elsif not Is_Overloaded (A) then
3756 if Ekind (F) /= E_Out_Parameter then
3757 Generate_Reference (Orig_A, A);
3759 -- RM 6.4.1(12): For an out parameter that is passed by
3760 -- copy, the formal parameter object is created, and:
3762 -- * For an access type, the formal parameter is initialized
3763 -- from the value of the actual, without checking that the
3764 -- value satisfies any constraint, any predicate, or any
3765 -- exclusion of the null value.
3767 -- * For a scalar type that has the Default_Value aspect
3768 -- specified, the formal parameter is initialized from the
3769 -- value of the actual, without checking that the value
3770 -- satisfies any constraint or any predicate.
3771 -- I do not understand why this case is included??? this is
3772 -- not a case where an OUT parameter is treated as IN OUT.
3774 -- * For a composite type with discriminants or that has
3775 -- implicit initial values for any subcomponents, the
3776 -- behavior is as for an in out parameter passed by copy.
3778 -- Hence for these cases we generate the read reference now
3779 -- (the write reference will be generated later by
3780 -- Note_Possible_Modification).
3782 elsif Is_By_Copy_Type (Etype (F))
3783 and then
3784 (Is_Access_Type (Etype (F))
3785 or else
3786 (Is_Scalar_Type (Etype (F))
3787 and then
3788 Present (Default_Aspect_Value (Etype (F))))
3789 or else
3790 (Is_Composite_Type (Etype (F))
3791 and then (Has_Discriminants (Etype (F))
3792 or else Is_Partially_Initialized_Type
3793 (Etype (F)))))
3794 then
3795 Generate_Reference (Orig_A, A);
3796 end if;
3797 end if;
3798 end if;
3799 end if;
3801 if Present (A)
3802 and then (Nkind (Parent (A)) /= N_Parameter_Association
3803 or else Chars (Selector_Name (Parent (A))) = Chars (F))
3804 then
3805 -- If style checking mode on, check match of formal name
3807 if Style_Check then
3808 if Nkind (Parent (A)) = N_Parameter_Association then
3809 Check_Identifier (Selector_Name (Parent (A)), F);
3810 end if;
3811 end if;
3813 -- If the formal is Out or In_Out, do not resolve and expand the
3814 -- conversion, because it is subsequently expanded into explicit
3815 -- temporaries and assignments. However, the object of the
3816 -- conversion can be resolved. An exception is the case of tagged
3817 -- type conversion with a class-wide actual. In that case we want
3818 -- the tag check to occur and no temporary will be needed (no
3819 -- representation change can occur) and the parameter is passed by
3820 -- reference, so we go ahead and resolve the type conversion.
3821 -- Another exception is the case of reference to component or
3822 -- subcomponent of a bit-packed array, in which case we want to
3823 -- defer expansion to the point the in and out assignments are
3824 -- performed.
3826 if Ekind (F) /= E_In_Parameter
3827 and then Nkind (A) = N_Type_Conversion
3828 and then not Is_Class_Wide_Type (Etype (Expression (A)))
3829 then
3830 if Ekind (F) = E_In_Out_Parameter
3831 and then Is_Array_Type (Etype (F))
3832 then
3833 -- In a view conversion, the conversion must be legal in
3834 -- both directions, and thus both component types must be
3835 -- aliased, or neither (4.6 (8)).
3837 -- The extra rule in 4.6 (24.9.2) seems unduly restrictive:
3838 -- the privacy requirement should not apply to generic
3839 -- types, and should be checked in an instance. ARG query
3840 -- is in order ???
3842 if Has_Aliased_Components (Etype (Expression (A))) /=
3843 Has_Aliased_Components (Etype (F))
3844 then
3845 Error_Msg_N
3846 ("both component types in a view conversion must be"
3847 & " aliased, or neither", A);
3849 -- Comment here??? what set of cases???
3851 elsif
3852 not Same_Ancestor (Etype (F), Etype (Expression (A)))
3853 then
3854 -- Check view conv between unrelated by ref array types
3856 if Is_By_Reference_Type (Etype (F))
3857 or else Is_By_Reference_Type (Etype (Expression (A)))
3858 then
3859 Error_Msg_N
3860 ("view conversion between unrelated by reference "
3861 & "array types not allowed (\'A'I-00246)", A);
3863 -- In Ada 2005 mode, check view conversion component
3864 -- type cannot be private, tagged, or volatile. Note
3865 -- that we only apply this to source conversions. The
3866 -- generated code can contain conversions which are
3867 -- not subject to this test, and we cannot extract the
3868 -- component type in such cases since it is not present.
3870 elsif Comes_From_Source (A)
3871 and then Ada_Version >= Ada_2005
3872 then
3873 declare
3874 Comp_Type : constant Entity_Id :=
3875 Component_Type
3876 (Etype (Expression (A)));
3877 begin
3878 if (Is_Private_Type (Comp_Type)
3879 and then not Is_Generic_Type (Comp_Type))
3880 or else Is_Tagged_Type (Comp_Type)
3881 or else Is_Volatile (Comp_Type)
3882 then
3883 Error_Msg_N
3884 ("component type of a view conversion cannot"
3885 & " be private, tagged, or volatile"
3886 & " (RM 4.6 (24))",
3887 Expression (A));
3888 end if;
3889 end;
3890 end if;
3891 end if;
3892 end if;
3894 -- Resolve expression if conversion is all OK
3896 if (Conversion_OK (A)
3897 or else Valid_Conversion (A, Etype (A), Expression (A)))
3898 and then not Is_Ref_To_Bit_Packed_Array (Expression (A))
3899 then
3900 Resolve (Expression (A));
3901 end if;
3903 -- If the actual is a function call that returns a limited
3904 -- unconstrained object that needs finalization, create a
3905 -- transient scope for it, so that it can receive the proper
3906 -- finalization list.
3908 elsif Nkind (A) = N_Function_Call
3909 and then Is_Limited_Record (Etype (F))
3910 and then not Is_Constrained (Etype (F))
3911 and then Expander_Active
3912 and then (Is_Controlled (Etype (F)) or else Has_Task (Etype (F)))
3913 then
3914 Establish_Transient_Scope (A, Sec_Stack => False);
3915 Resolve (A, Etype (F));
3917 -- A small optimization: if one of the actuals is a concatenation
3918 -- create a block around a procedure call to recover stack space.
3919 -- This alleviates stack usage when several procedure calls in
3920 -- the same statement list use concatenation. We do not perform
3921 -- this wrapping for code statements, where the argument is a
3922 -- static string, and we want to preserve warnings involving
3923 -- sequences of such statements.
3925 elsif Nkind (A) = N_Op_Concat
3926 and then Nkind (N) = N_Procedure_Call_Statement
3927 and then Expander_Active
3928 and then
3929 not (Is_Intrinsic_Subprogram (Nam)
3930 and then Chars (Nam) = Name_Asm)
3931 and then not Static_Concatenation (A)
3932 then
3933 Establish_Transient_Scope (A, Sec_Stack => False);
3934 Resolve (A, Etype (F));
3936 else
3937 if Nkind (A) = N_Type_Conversion
3938 and then Is_Array_Type (Etype (F))
3939 and then not Same_Ancestor (Etype (F), Etype (Expression (A)))
3940 and then
3941 (Is_Limited_Type (Etype (F))
3942 or else Is_Limited_Type (Etype (Expression (A))))
3943 then
3944 Error_Msg_N
3945 ("conversion between unrelated limited array types "
3946 & "not allowed ('A'I-00246)", A);
3948 if Is_Limited_Type (Etype (F)) then
3949 Explain_Limited_Type (Etype (F), A);
3950 end if;
3952 if Is_Limited_Type (Etype (Expression (A))) then
3953 Explain_Limited_Type (Etype (Expression (A)), A);
3954 end if;
3955 end if;
3957 -- (Ada 2005: AI-251): If the actual is an allocator whose
3958 -- directly designated type is a class-wide interface, we build
3959 -- an anonymous access type to use it as the type of the
3960 -- allocator. Later, when the subprogram call is expanded, if
3961 -- the interface has a secondary dispatch table the expander
3962 -- will add a type conversion to force the correct displacement
3963 -- of the pointer.
3965 if Nkind (A) = N_Allocator then
3966 declare
3967 DDT : constant Entity_Id :=
3968 Directly_Designated_Type (Base_Type (Etype (F)));
3970 New_Itype : Entity_Id;
3972 begin
3973 if Is_Class_Wide_Type (DDT)
3974 and then Is_Interface (DDT)
3975 then
3976 New_Itype := Create_Itype (E_Anonymous_Access_Type, A);
3977 Set_Etype (New_Itype, Etype (A));
3978 Set_Directly_Designated_Type
3979 (New_Itype, Directly_Designated_Type (Etype (A)));
3980 Set_Etype (A, New_Itype);
3981 end if;
3983 -- Ada 2005, AI-162:If the actual is an allocator, the
3984 -- innermost enclosing statement is the master of the
3985 -- created object. This needs to be done with expansion
3986 -- enabled only, otherwise the transient scope will not
3987 -- be removed in the expansion of the wrapped construct.
3989 if (Is_Controlled (DDT) or else Has_Task (DDT))
3990 and then Expander_Active
3991 then
3992 Establish_Transient_Scope (A, Sec_Stack => False);
3993 end if;
3994 end;
3996 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
3997 Check_Restriction (No_Access_Parameter_Allocators, A);
3998 end if;
3999 end if;
4001 -- (Ada 2005): The call may be to a primitive operation of a
4002 -- tagged synchronized type, declared outside of the type. In
4003 -- this case the controlling actual must be converted to its
4004 -- corresponding record type, which is the formal type. The
4005 -- actual may be a subtype, either because of a constraint or
4006 -- because it is a generic actual, so use base type to locate
4007 -- concurrent type.
4009 F_Typ := Base_Type (Etype (F));
4011 if Is_Tagged_Type (F_Typ)
4012 and then (Is_Concurrent_Type (F_Typ)
4013 or else Is_Concurrent_Record_Type (F_Typ))
4014 then
4015 -- If the actual is overloaded, look for an interpretation
4016 -- that has a synchronized type.
4018 if not Is_Overloaded (A) then
4019 A_Typ := Base_Type (Etype (A));
4021 else
4022 declare
4023 Index : Interp_Index;
4024 It : Interp;
4026 begin
4027 Get_First_Interp (A, Index, It);
4028 while Present (It.Typ) loop
4029 if Is_Concurrent_Type (It.Typ)
4030 or else Is_Concurrent_Record_Type (It.Typ)
4031 then
4032 A_Typ := Base_Type (It.Typ);
4033 exit;
4034 end if;
4036 Get_Next_Interp (Index, It);
4037 end loop;
4038 end;
4039 end if;
4041 declare
4042 Full_A_Typ : Entity_Id;
4044 begin
4045 if Present (Full_View (A_Typ)) then
4046 Full_A_Typ := Base_Type (Full_View (A_Typ));
4047 else
4048 Full_A_Typ := A_Typ;
4049 end if;
4051 -- Tagged synchronized type (case 1): the actual is a
4052 -- concurrent type.
4054 if Is_Concurrent_Type (A_Typ)
4055 and then Corresponding_Record_Type (A_Typ) = F_Typ
4056 then
4057 Rewrite (A,
4058 Unchecked_Convert_To
4059 (Corresponding_Record_Type (A_Typ), A));
4060 Resolve (A, Etype (F));
4062 -- Tagged synchronized type (case 2): the formal is a
4063 -- concurrent type.
4065 elsif Ekind (Full_A_Typ) = E_Record_Type
4066 and then Present
4067 (Corresponding_Concurrent_Type (Full_A_Typ))
4068 and then Is_Concurrent_Type (F_Typ)
4069 and then Present (Corresponding_Record_Type (F_Typ))
4070 and then Full_A_Typ = Corresponding_Record_Type (F_Typ)
4071 then
4072 Resolve (A, Corresponding_Record_Type (F_Typ));
4074 -- Common case
4076 else
4077 Resolve (A, Etype (F));
4078 end if;
4079 end;
4081 -- Not a synchronized operation
4083 else
4084 Resolve (A, Etype (F));
4085 end if;
4086 end if;
4088 A_Typ := Etype (A);
4089 F_Typ := Etype (F);
4091 -- An actual cannot be an untagged formal incomplete type
4093 if Ekind (A_Typ) = E_Incomplete_Type
4094 and then not Is_Tagged_Type (A_Typ)
4095 and then Is_Generic_Type (A_Typ)
4096 then
4097 Error_Msg_N
4098 ("invalid use of untagged formal incomplete type", A);
4099 end if;
4101 if Comes_From_Source (Original_Node (N))
4102 and then Nkind_In (Original_Node (N), N_Function_Call,
4103 N_Procedure_Call_Statement)
4104 then
4105 -- In formal mode, check that actual parameters matching
4106 -- formals of tagged types are objects (or ancestor type
4107 -- conversions of objects), not general expressions.
4109 if Is_Actual_Tagged_Parameter (A) then
4110 if Is_SPARK_05_Object_Reference (A) then
4111 null;
4113 elsif Nkind (A) = N_Type_Conversion then
4114 declare
4115 Operand : constant Node_Id := Expression (A);
4116 Operand_Typ : constant Entity_Id := Etype (Operand);
4117 Target_Typ : constant Entity_Id := A_Typ;
4119 begin
4120 if not Is_SPARK_05_Object_Reference (Operand) then
4121 Check_SPARK_05_Restriction
4122 ("object required", Operand);
4124 -- In formal mode, the only view conversions are those
4125 -- involving ancestor conversion of an extended type.
4127 elsif not
4128 (Is_Tagged_Type (Target_Typ)
4129 and then not Is_Class_Wide_Type (Target_Typ)
4130 and then Is_Tagged_Type (Operand_Typ)
4131 and then not Is_Class_Wide_Type (Operand_Typ)
4132 and then Is_Ancestor (Target_Typ, Operand_Typ))
4133 then
4134 if Ekind_In
4135 (F, E_Out_Parameter, E_In_Out_Parameter)
4136 then
4137 Check_SPARK_05_Restriction
4138 ("ancestor conversion is the only permitted "
4139 & "view conversion", A);
4140 else
4141 Check_SPARK_05_Restriction
4142 ("ancestor conversion required", A);
4143 end if;
4145 else
4146 null;
4147 end if;
4148 end;
4150 else
4151 Check_SPARK_05_Restriction ("object required", A);
4152 end if;
4154 -- In formal mode, the only view conversions are those
4155 -- involving ancestor conversion of an extended type.
4157 elsif Nkind (A) = N_Type_Conversion
4158 and then Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
4159 then
4160 Check_SPARK_05_Restriction
4161 ("ancestor conversion is the only permitted view "
4162 & "conversion", A);
4163 end if;
4164 end if;
4166 -- has warnings suppressed, then we reset Never_Set_In_Source for
4167 -- the calling entity. The reason for this is to catch cases like
4168 -- GNAT.Spitbol.Patterns.Vstring_Var where the called subprogram
4169 -- uses trickery to modify an IN parameter.
4171 if Ekind (F) = E_In_Parameter
4172 and then Is_Entity_Name (A)
4173 and then Present (Entity (A))
4174 and then Ekind (Entity (A)) = E_Variable
4175 and then Has_Warnings_Off (F_Typ)
4176 then
4177 Set_Never_Set_In_Source (Entity (A), False);
4178 end if;
4180 -- Perform error checks for IN and IN OUT parameters
4182 if Ekind (F) /= E_Out_Parameter then
4184 -- Check unset reference. For scalar parameters, it is clearly
4185 -- wrong to pass an uninitialized value as either an IN or
4186 -- IN-OUT parameter. For composites, it is also clearly an
4187 -- error to pass a completely uninitialized value as an IN
4188 -- parameter, but the case of IN OUT is trickier. We prefer
4189 -- not to give a warning here. For example, suppose there is
4190 -- a routine that sets some component of a record to False.
4191 -- It is perfectly reasonable to make this IN-OUT and allow
4192 -- either initialized or uninitialized records to be passed
4193 -- in this case.
4195 -- For partially initialized composite values, we also avoid
4196 -- warnings, since it is quite likely that we are passing a
4197 -- partially initialized value and only the initialized fields
4198 -- will in fact be read in the subprogram.
4200 if Is_Scalar_Type (A_Typ)
4201 or else (Ekind (F) = E_In_Parameter
4202 and then not Is_Partially_Initialized_Type (A_Typ))
4203 then
4204 Check_Unset_Reference (A);
4205 end if;
4207 -- In Ada 83 we cannot pass an OUT parameter as an IN or IN OUT
4208 -- actual to a nested call, since this constitutes a reading of
4209 -- the parameter, which is not allowed.
4211 if Ada_Version = Ada_83
4212 and then Is_Entity_Name (A)
4213 and then Ekind (Entity (A)) = E_Out_Parameter
4214 then
4215 Error_Msg_N ("(Ada 83) illegal reading of out parameter", A);
4216 end if;
4217 end if;
4219 -- In -gnatd.q mode, forget that a given array is constant when
4220 -- it is passed as an IN parameter to a foreign-convention
4221 -- subprogram. This is in case the subprogram evilly modifies the
4222 -- object. Of course, correct code would use IN OUT.
4224 if Debug_Flag_Dot_Q
4225 and then Ekind (F) = E_In_Parameter
4226 and then Has_Foreign_Convention (Nam)
4227 and then Is_Array_Type (F_Typ)
4228 and then Nkind (A) in N_Has_Entity
4229 and then Present (Entity (A))
4230 then
4231 Set_Is_True_Constant (Entity (A), False);
4232 end if;
4234 -- Case of OUT or IN OUT parameter
4236 if Ekind (F) /= E_In_Parameter then
4238 -- For an Out parameter, check for useless assignment. Note
4239 -- that we can't set Last_Assignment this early, because we may
4240 -- kill current values in Resolve_Call, and that call would
4241 -- clobber the Last_Assignment field.
4243 -- Note: call Warn_On_Useless_Assignment before doing the check
4244 -- below for Is_OK_Variable_For_Out_Formal so that the setting
4245 -- of Referenced_As_LHS/Referenced_As_Out_Formal properly
4246 -- reflects the last assignment, not this one.
4248 if Ekind (F) = E_Out_Parameter then
4249 if Warn_On_Modified_As_Out_Parameter (F)
4250 and then Is_Entity_Name (A)
4251 and then Present (Entity (A))
4252 and then Comes_From_Source (N)
4253 then
4254 Warn_On_Useless_Assignment (Entity (A), A);
4255 end if;
4256 end if;
4258 -- Validate the form of the actual. Note that the call to
4259 -- Is_OK_Variable_For_Out_Formal generates the required
4260 -- reference in this case.
4262 -- A call to an initialization procedure for an aggregate
4263 -- component may initialize a nested component of a constant
4264 -- designated object. In this context the object is variable.
4266 if not Is_OK_Variable_For_Out_Formal (A)
4267 and then not Is_Init_Proc (Nam)
4268 then
4269 Error_Msg_NE ("actual for& must be a variable", A, F);
4271 if Is_Subprogram (Current_Scope) then
4272 if Is_Invariant_Procedure (Current_Scope)
4273 or else Is_Partial_Invariant_Procedure (Current_Scope)
4274 then
4275 Error_Msg_N
4276 ("function used in invariant cannot modify its "
4277 & "argument", F);
4279 elsif Is_Predicate_Function (Current_Scope) then
4280 Error_Msg_N
4281 ("function used in predicate cannot modify its "
4282 & "argument", F);
4283 end if;
4284 end if;
4285 end if;
4287 -- What's the following about???
4289 if Is_Entity_Name (A) then
4290 Kill_Checks (Entity (A));
4291 else
4292 Kill_All_Checks;
4293 end if;
4294 end if;
4296 if Etype (A) = Any_Type then
4297 Set_Etype (N, Any_Type);
4298 return;
4299 end if;
4301 -- Apply appropriate constraint/predicate checks for IN [OUT] case
4303 if Ekind_In (F, E_In_Parameter, E_In_Out_Parameter) then
4305 -- Apply predicate tests except in certain special cases. Note
4306 -- that it might be more consistent to apply these only when
4307 -- expansion is active (in Exp_Ch6.Expand_Actuals), as we do
4308 -- for the outbound predicate tests ??? In any case indicate
4309 -- the function being called, for better warnings if the call
4310 -- leads to an infinite recursion.
4312 if Predicate_Tests_On_Arguments (Nam) then
4313 Apply_Predicate_Check (A, F_Typ, Nam);
4314 end if;
4316 -- Apply required constraint checks
4318 -- Gigi looks at the check flag and uses the appropriate types.
4319 -- For now since one flag is used there is an optimization
4320 -- which might not be done in the IN OUT case since Gigi does
4321 -- not do any analysis. More thought required about this ???
4323 -- In fact is this comment obsolete??? doesn't the expander now
4324 -- generate all these tests anyway???
4326 if Is_Scalar_Type (Etype (A)) then
4327 Apply_Scalar_Range_Check (A, F_Typ);
4329 elsif Is_Array_Type (Etype (A)) then
4330 Apply_Length_Check (A, F_Typ);
4332 elsif Is_Record_Type (F_Typ)
4333 and then Has_Discriminants (F_Typ)
4334 and then Is_Constrained (F_Typ)
4335 and then (not Is_Derived_Type (F_Typ)
4336 or else Comes_From_Source (Nam))
4337 then
4338 Apply_Discriminant_Check (A, F_Typ);
4340 -- For view conversions of a discriminated object, apply
4341 -- check to object itself, the conversion alreay has the
4342 -- proper type.
4344 if Nkind (A) = N_Type_Conversion
4345 and then Is_Constrained (Etype (Expression (A)))
4346 then
4347 Apply_Discriminant_Check (Expression (A), F_Typ);
4348 end if;
4350 elsif Is_Access_Type (F_Typ)
4351 and then Is_Array_Type (Designated_Type (F_Typ))
4352 and then Is_Constrained (Designated_Type (F_Typ))
4353 then
4354 Apply_Length_Check (A, F_Typ);
4356 elsif Is_Access_Type (F_Typ)
4357 and then Has_Discriminants (Designated_Type (F_Typ))
4358 and then Is_Constrained (Designated_Type (F_Typ))
4359 then
4360 Apply_Discriminant_Check (A, F_Typ);
4362 else
4363 Apply_Range_Check (A, F_Typ);
4364 end if;
4366 -- Ada 2005 (AI-231): Note that the controlling parameter case
4367 -- already existed in Ada 95, which is partially checked
4368 -- elsewhere (see Checks), and we don't want the warning
4369 -- message to differ.
4371 if Is_Access_Type (F_Typ)
4372 and then Can_Never_Be_Null (F_Typ)
4373 and then Known_Null (A)
4374 then
4375 if Is_Controlling_Formal (F) then
4376 Apply_Compile_Time_Constraint_Error
4377 (N => A,
4378 Msg => "null value not allowed here??",
4379 Reason => CE_Access_Check_Failed);
4381 elsif Ada_Version >= Ada_2005 then
4382 Apply_Compile_Time_Constraint_Error
4383 (N => A,
4384 Msg => "(Ada 2005) null not allowed in "
4385 & "null-excluding formal??",
4386 Reason => CE_Null_Not_Allowed);
4387 end if;
4388 end if;
4389 end if;
4391 -- Checks for OUT parameters and IN OUT parameters
4393 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter) then
4395 -- If there is a type conversion, make sure the return value
4396 -- meets the constraints of the variable before the conversion.
4398 if Nkind (A) = N_Type_Conversion then
4399 if Is_Scalar_Type (A_Typ) then
4400 Apply_Scalar_Range_Check
4401 (Expression (A), Etype (Expression (A)), A_Typ);
4403 -- In addition, the returned value of the parameter must
4404 -- satisfy the bounds of the object type (see comment
4405 -- below).
4407 Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
4409 else
4410 Apply_Range_Check
4411 (Expression (A), Etype (Expression (A)), A_Typ);
4412 end if;
4414 -- If no conversion, apply scalar range checks and length check
4415 -- based on the subtype of the actual (NOT that of the formal).
4416 -- This indicates that the check takes place on return from the
4417 -- call. During expansion the required constraint checks are
4418 -- inserted. In GNATprove mode, in the absence of expansion,
4419 -- the flag indicates that the returned value is valid.
4421 else
4422 if Is_Scalar_Type (F_Typ) then
4423 Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
4425 elsif Is_Array_Type (F_Typ)
4426 and then Ekind (F) = E_Out_Parameter
4427 then
4428 Apply_Length_Check (A, F_Typ);
4429 else
4430 Apply_Range_Check (A, A_Typ, F_Typ);
4431 end if;
4432 end if;
4434 -- Note: we do not apply the predicate checks for the case of
4435 -- OUT and IN OUT parameters. They are instead applied in the
4436 -- Expand_Actuals routine in Exp_Ch6.
4437 end if;
4439 -- An actual associated with an access parameter is implicitly
4440 -- converted to the anonymous access type of the formal and must
4441 -- satisfy the legality checks for access conversions.
4443 if Ekind (F_Typ) = E_Anonymous_Access_Type then
4444 if not Valid_Conversion (A, F_Typ, A) then
4445 Error_Msg_N
4446 ("invalid implicit conversion for access parameter", A);
4447 end if;
4449 -- If the actual is an access selected component of a variable,
4450 -- the call may modify its designated object. It is reasonable
4451 -- to treat this as a potential modification of the enclosing
4452 -- record, to prevent spurious warnings that it should be
4453 -- declared as a constant, because intuitively programmers
4454 -- regard the designated subcomponent as part of the record.
4456 if Nkind (A) = N_Selected_Component
4457 and then Is_Entity_Name (Prefix (A))
4458 and then not Is_Constant_Object (Entity (Prefix (A)))
4459 then
4460 Note_Possible_Modification (A, Sure => False);
4461 end if;
4462 end if;
4464 -- Check bad case of atomic/volatile argument (RM C.6(12))
4466 if Is_By_Reference_Type (Etype (F))
4467 and then Comes_From_Source (N)
4468 then
4469 if Is_Atomic_Object (A)
4470 and then not Is_Atomic (Etype (F))
4471 then
4472 Error_Msg_NE
4473 ("cannot pass atomic argument to non-atomic formal&",
4474 A, F);
4476 elsif Is_Volatile_Object (A)
4477 and then not Is_Volatile (Etype (F))
4478 then
4479 Error_Msg_NE
4480 ("cannot pass volatile argument to non-volatile formal&",
4481 A, F);
4482 end if;
4483 end if;
4485 -- Check that subprograms don't have improper controlling
4486 -- arguments (RM 3.9.2 (9)).
4488 -- A primitive operation may have an access parameter of an
4489 -- incomplete tagged type, but a dispatching call is illegal
4490 -- if the type is still incomplete.
4492 if Is_Controlling_Formal (F) then
4493 Set_Is_Controlling_Actual (A);
4495 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
4496 declare
4497 Desig : constant Entity_Id := Designated_Type (Etype (F));
4498 begin
4499 if Ekind (Desig) = E_Incomplete_Type
4500 and then No (Full_View (Desig))
4501 and then No (Non_Limited_View (Desig))
4502 then
4503 Error_Msg_NE
4504 ("premature use of incomplete type& "
4505 & "in dispatching call", A, Desig);
4506 end if;
4507 end;
4508 end if;
4510 elsif Nkind (A) = N_Explicit_Dereference then
4511 Validate_Remote_Access_To_Class_Wide_Type (A);
4512 end if;
4514 -- Apply legality rule 3.9.2 (9/1)
4516 if (Is_Class_Wide_Type (A_Typ) or else Is_Dynamically_Tagged (A))
4517 and then not Is_Class_Wide_Type (F_Typ)
4518 and then not Is_Controlling_Formal (F)
4519 and then not In_Instance
4520 then
4521 Error_Msg_N ("class-wide argument not allowed here!", A);
4523 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4524 Error_Msg_Node_2 := F_Typ;
4525 Error_Msg_NE
4526 ("& is not a dispatching operation of &!", A, Nam);
4527 end if;
4529 -- Apply the checks described in 3.10.2(27): if the context is a
4530 -- specific access-to-object, the actual cannot be class-wide.
4531 -- Use base type to exclude access_to_subprogram cases.
4533 elsif Is_Access_Type (A_Typ)
4534 and then Is_Access_Type (F_Typ)
4535 and then not Is_Access_Subprogram_Type (Base_Type (F_Typ))
4536 and then (Is_Class_Wide_Type (Designated_Type (A_Typ))
4537 or else (Nkind (A) = N_Attribute_Reference
4538 and then
4539 Is_Class_Wide_Type (Etype (Prefix (A)))))
4540 and then not Is_Class_Wide_Type (Designated_Type (F_Typ))
4541 and then not Is_Controlling_Formal (F)
4543 -- Disable these checks for call to imported C++ subprograms
4545 and then not
4546 (Is_Entity_Name (Name (N))
4547 and then Is_Imported (Entity (Name (N)))
4548 and then Convention (Entity (Name (N))) = Convention_CPP)
4549 then
4550 Error_Msg_N
4551 ("access to class-wide argument not allowed here!", A);
4553 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4554 Error_Msg_Node_2 := Designated_Type (F_Typ);
4555 Error_Msg_NE
4556 ("& is not a dispatching operation of &!", A, Nam);
4557 end if;
4558 end if;
4560 Check_Aliased_Parameter;
4562 Eval_Actual (A);
4564 -- If it is a named association, treat the selector_name as a
4565 -- proper identifier, and mark the corresponding entity.
4567 if Nkind (Parent (A)) = N_Parameter_Association
4569 -- Ignore reference in SPARK mode, as it refers to an entity not
4570 -- in scope at the point of reference, so the reference should
4571 -- be ignored for computing effects of subprograms.
4573 and then not GNATprove_Mode
4574 then
4575 -- If subprogram is overridden, use name of formal that
4576 -- is being called.
4578 if Present (Real_Subp) then
4579 Set_Entity (Selector_Name (Parent (A)), Real_F);
4580 Set_Etype (Selector_Name (Parent (A)), Etype (Real_F));
4582 else
4583 Set_Entity (Selector_Name (Parent (A)), F);
4584 Generate_Reference (F, Selector_Name (Parent (A)));
4585 Set_Etype (Selector_Name (Parent (A)), F_Typ);
4586 Generate_Reference (F_Typ, N, ' ');
4587 end if;
4588 end if;
4590 Prev := A;
4592 if Ekind (F) /= E_Out_Parameter then
4593 Check_Unset_Reference (A);
4594 end if;
4596 -- The following checks are only relevant when SPARK_Mode is on as
4597 -- they are not standard Ada legality rule. Internally generated
4598 -- temporaries are ignored.
4600 if SPARK_Mode = On and then Comes_From_Source (A) then
4602 -- An effectively volatile object may act as an actual when the
4603 -- corresponding formal is of a non-scalar effectively volatile
4604 -- type (SPARK RM 7.1.3(11)).
4606 if not Is_Scalar_Type (Etype (F))
4607 and then Is_Effectively_Volatile (Etype (F))
4608 then
4609 null;
4611 -- An effectively volatile object may act as an actual in a
4612 -- call to an instance of Unchecked_Conversion.
4613 -- (SPARK RM 7.1.3(11)).
4615 elsif Is_Unchecked_Conversion_Instance (Nam) then
4616 null;
4618 -- The actual denotes an object
4620 elsif Is_Effectively_Volatile_Object (A) then
4621 Error_Msg_N
4622 ("volatile object cannot act as actual in a call (SPARK "
4623 & "RM 7.1.3(11))", A);
4625 -- Otherwise the actual denotes an expression. Inspect the
4626 -- expression and flag each effectively volatile object with
4627 -- enabled property Async_Writers or Effective_Reads as illegal
4628 -- because it apprears within an interfering context. Note that
4629 -- this is usually done in Resolve_Entity_Name, but when the
4630 -- effectively volatile object appears as an actual in a call,
4631 -- the call must be resolved first.
4633 else
4634 Flag_Effectively_Volatile_Objects (A);
4635 end if;
4637 -- An effectively volatile variable cannot act as an actual
4638 -- parameter in a procedure call when the variable has enabled
4639 -- property Effective_Reads and the corresponding formal is of
4640 -- mode IN (SPARK RM 7.1.3(10)).
4642 if Ekind (Nam) = E_Procedure
4643 and then Ekind (F) = E_In_Parameter
4644 and then Is_Entity_Name (A)
4645 then
4646 A_Id := Entity (A);
4648 if Ekind (A_Id) = E_Variable
4649 and then Is_Effectively_Volatile (Etype (A_Id))
4650 and then Effective_Reads_Enabled (A_Id)
4651 then
4652 Error_Msg_NE
4653 ("effectively volatile variable & cannot appear as "
4654 & "actual in procedure call", A, A_Id);
4656 Error_Msg_Name_1 := Name_Effective_Reads;
4657 Error_Msg_N ("\\variable has enabled property %", A);
4658 Error_Msg_N ("\\corresponding formal has mode IN", A);
4659 end if;
4660 end if;
4661 end if;
4663 -- A formal parameter of a specific tagged type whose related
4664 -- subprogram is subject to pragma Extensions_Visible with value
4665 -- "False" cannot act as an actual in a subprogram with value
4666 -- "True" (SPARK RM 6.1.7(3)).
4668 if Is_EVF_Expression (A)
4669 and then Extensions_Visible_Status (Nam) =
4670 Extensions_Visible_True
4671 then
4672 Error_Msg_N
4673 ("formal parameter cannot act as actual parameter when "
4674 & "Extensions_Visible is False", A);
4675 Error_Msg_NE
4676 ("\subprogram & has Extensions_Visible True", A, Nam);
4677 end if;
4679 -- The actual parameter of a Ghost subprogram whose formal is of
4680 -- mode IN OUT or OUT must be a Ghost variable (SPARK RM 6.9(12)).
4682 if Comes_From_Source (Nam)
4683 and then Is_Ghost_Entity (Nam)
4684 and then Ekind_In (F, E_In_Out_Parameter, E_Out_Parameter)
4685 and then Is_Entity_Name (A)
4686 and then Present (Entity (A))
4687 and then not Is_Ghost_Entity (Entity (A))
4688 then
4689 Error_Msg_NE
4690 ("non-ghost variable & cannot appear as actual in call to "
4691 & "ghost procedure", A, Entity (A));
4693 if Ekind (F) = E_In_Out_Parameter then
4694 Error_Msg_N ("\corresponding formal has mode `IN OUT`", A);
4695 else
4696 Error_Msg_N ("\corresponding formal has mode OUT", A);
4697 end if;
4698 end if;
4700 Next_Actual (A);
4702 -- Case where actual is not present
4704 else
4705 Insert_Default;
4706 end if;
4708 Next_Formal (F);
4710 if Present (Real_Subp) then
4711 Next_Formal (Real_F);
4712 end if;
4713 end loop;
4714 end Resolve_Actuals;
4716 -----------------------
4717 -- Resolve_Allocator --
4718 -----------------------
4720 procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id) is
4721 Desig_T : constant Entity_Id := Designated_Type (Typ);
4722 E : constant Node_Id := Expression (N);
4723 Subtyp : Entity_Id;
4724 Discrim : Entity_Id;
4725 Constr : Node_Id;
4726 Aggr : Node_Id;
4727 Assoc : Node_Id := Empty;
4728 Disc_Exp : Node_Id;
4730 procedure Check_Allocator_Discrim_Accessibility
4731 (Disc_Exp : Node_Id;
4732 Alloc_Typ : Entity_Id);
4733 -- Check that accessibility level associated with an access discriminant
4734 -- initialized in an allocator by the expression Disc_Exp is not deeper
4735 -- than the level of the allocator type Alloc_Typ. An error message is
4736 -- issued if this condition is violated. Specialized checks are done for
4737 -- the cases of a constraint expression which is an access attribute or
4738 -- an access discriminant.
4740 function In_Dispatching_Context return Boolean;
4741 -- If the allocator is an actual in a call, it is allowed to be class-
4742 -- wide when the context is not because it is a controlling actual.
4744 -------------------------------------------
4745 -- Check_Allocator_Discrim_Accessibility --
4746 -------------------------------------------
4748 procedure Check_Allocator_Discrim_Accessibility
4749 (Disc_Exp : Node_Id;
4750 Alloc_Typ : Entity_Id)
4752 begin
4753 if Type_Access_Level (Etype (Disc_Exp)) >
4754 Deepest_Type_Access_Level (Alloc_Typ)
4755 then
4756 Error_Msg_N
4757 ("operand type has deeper level than allocator type", Disc_Exp);
4759 -- When the expression is an Access attribute the level of the prefix
4760 -- object must not be deeper than that of the allocator's type.
4762 elsif Nkind (Disc_Exp) = N_Attribute_Reference
4763 and then Get_Attribute_Id (Attribute_Name (Disc_Exp)) =
4764 Attribute_Access
4765 and then Object_Access_Level (Prefix (Disc_Exp)) >
4766 Deepest_Type_Access_Level (Alloc_Typ)
4767 then
4768 Error_Msg_N
4769 ("prefix of attribute has deeper level than allocator type",
4770 Disc_Exp);
4772 -- When the expression is an access discriminant the check is against
4773 -- the level of the prefix object.
4775 elsif Ekind (Etype (Disc_Exp)) = E_Anonymous_Access_Type
4776 and then Nkind (Disc_Exp) = N_Selected_Component
4777 and then Object_Access_Level (Prefix (Disc_Exp)) >
4778 Deepest_Type_Access_Level (Alloc_Typ)
4779 then
4780 Error_Msg_N
4781 ("access discriminant has deeper level than allocator type",
4782 Disc_Exp);
4784 -- All other cases are legal
4786 else
4787 null;
4788 end if;
4789 end Check_Allocator_Discrim_Accessibility;
4791 ----------------------------
4792 -- In_Dispatching_Context --
4793 ----------------------------
4795 function In_Dispatching_Context return Boolean is
4796 Par : constant Node_Id := Parent (N);
4798 begin
4799 return Nkind (Par) in N_Subprogram_Call
4800 and then Is_Entity_Name (Name (Par))
4801 and then Is_Dispatching_Operation (Entity (Name (Par)));
4802 end In_Dispatching_Context;
4804 -- Start of processing for Resolve_Allocator
4806 begin
4807 -- Replace general access with specific type
4809 if Ekind (Etype (N)) = E_Allocator_Type then
4810 Set_Etype (N, Base_Type (Typ));
4811 end if;
4813 if Is_Abstract_Type (Typ) then
4814 Error_Msg_N ("type of allocator cannot be abstract", N);
4815 end if;
4817 -- For qualified expression, resolve the expression using the given
4818 -- subtype (nothing to do for type mark, subtype indication)
4820 if Nkind (E) = N_Qualified_Expression then
4821 if Is_Class_Wide_Type (Etype (E))
4822 and then not Is_Class_Wide_Type (Desig_T)
4823 and then not In_Dispatching_Context
4824 then
4825 Error_Msg_N
4826 ("class-wide allocator not allowed for this access type", N);
4827 end if;
4829 Resolve (Expression (E), Etype (E));
4830 Check_Non_Static_Context (Expression (E));
4831 Check_Unset_Reference (Expression (E));
4833 -- Allocators generated by the build-in-place expansion mechanism
4834 -- are explicitly marked as coming from source but do not need to be
4835 -- checked for limited initialization. To exclude this case, ensure
4836 -- that the parent of the allocator is a source node.
4837 -- The return statement constructed for an Expression_Function does
4838 -- not come from source but requires a limited check.
4840 if Is_Limited_Type (Etype (E))
4841 and then Comes_From_Source (N)
4842 and then
4843 (Comes_From_Source (Parent (N))
4844 or else
4845 (Ekind (Current_Scope) = E_Function
4846 and then Nkind
4847 (Original_Node (Unit_Declaration_Node (Current_Scope)))
4848 = N_Expression_Function))
4849 and then not In_Instance_Body
4850 then
4851 if not OK_For_Limited_Init (Etype (E), Expression (E)) then
4852 if Nkind (Parent (N)) = N_Assignment_Statement then
4853 Error_Msg_N
4854 ("illegal expression for initialized allocator of a "
4855 & "limited type (RM 7.5 (2.7/2))", N);
4856 else
4857 Error_Msg_N
4858 ("initialization not allowed for limited types", N);
4859 end if;
4861 Explain_Limited_Type (Etype (E), N);
4862 end if;
4863 end if;
4865 -- A qualified expression requires an exact match of the type. Class-
4866 -- wide matching is not allowed.
4868 if (Is_Class_Wide_Type (Etype (Expression (E)))
4869 or else Is_Class_Wide_Type (Etype (E)))
4870 and then Base_Type (Etype (Expression (E))) /= Base_Type (Etype (E))
4871 then
4872 Wrong_Type (Expression (E), Etype (E));
4873 end if;
4875 -- Calls to build-in-place functions are not currently supported in
4876 -- allocators for access types associated with a simple storage pool.
4877 -- Supporting such allocators may require passing additional implicit
4878 -- parameters to build-in-place functions (or a significant revision
4879 -- of the current b-i-p implementation to unify the handling for
4880 -- multiple kinds of storage pools). ???
4882 if Is_Limited_View (Desig_T)
4883 and then Nkind (Expression (E)) = N_Function_Call
4884 then
4885 declare
4886 Pool : constant Entity_Id :=
4887 Associated_Storage_Pool (Root_Type (Typ));
4888 begin
4889 if Present (Pool)
4890 and then
4891 Present (Get_Rep_Pragma
4892 (Etype (Pool), Name_Simple_Storage_Pool_Type))
4893 then
4894 Error_Msg_N
4895 ("limited function calls not yet supported in simple "
4896 & "storage pool allocators", Expression (E));
4897 end if;
4898 end;
4899 end if;
4901 -- A special accessibility check is needed for allocators that
4902 -- constrain access discriminants. The level of the type of the
4903 -- expression used to constrain an access discriminant cannot be
4904 -- deeper than the type of the allocator (in contrast to access
4905 -- parameters, where the level of the actual can be arbitrary).
4907 -- We can't use Valid_Conversion to perform this check because in
4908 -- general the type of the allocator is unrelated to the type of
4909 -- the access discriminant.
4911 if Ekind (Typ) /= E_Anonymous_Access_Type
4912 or else Is_Local_Anonymous_Access (Typ)
4913 then
4914 Subtyp := Entity (Subtype_Mark (E));
4916 Aggr := Original_Node (Expression (E));
4918 if Has_Discriminants (Subtyp)
4919 and then Nkind_In (Aggr, N_Aggregate, N_Extension_Aggregate)
4920 then
4921 Discrim := First_Discriminant (Base_Type (Subtyp));
4923 -- Get the first component expression of the aggregate
4925 if Present (Expressions (Aggr)) then
4926 Disc_Exp := First (Expressions (Aggr));
4928 elsif Present (Component_Associations (Aggr)) then
4929 Assoc := First (Component_Associations (Aggr));
4931 if Present (Assoc) then
4932 Disc_Exp := Expression (Assoc);
4933 else
4934 Disc_Exp := Empty;
4935 end if;
4937 else
4938 Disc_Exp := Empty;
4939 end if;
4941 while Present (Discrim) and then Present (Disc_Exp) loop
4942 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4943 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4944 end if;
4946 Next_Discriminant (Discrim);
4948 if Present (Discrim) then
4949 if Present (Assoc) then
4950 Next (Assoc);
4951 Disc_Exp := Expression (Assoc);
4953 elsif Present (Next (Disc_Exp)) then
4954 Next (Disc_Exp);
4956 else
4957 Assoc := First (Component_Associations (Aggr));
4959 if Present (Assoc) then
4960 Disc_Exp := Expression (Assoc);
4961 else
4962 Disc_Exp := Empty;
4963 end if;
4964 end if;
4965 end if;
4966 end loop;
4967 end if;
4968 end if;
4970 -- For a subtype mark or subtype indication, freeze the subtype
4972 else
4973 Freeze_Expression (E);
4975 if Is_Access_Constant (Typ) and then not No_Initialization (N) then
4976 Error_Msg_N
4977 ("initialization required for access-to-constant allocator", N);
4978 end if;
4980 -- A special accessibility check is needed for allocators that
4981 -- constrain access discriminants. The level of the type of the
4982 -- expression used to constrain an access discriminant cannot be
4983 -- deeper than the type of the allocator (in contrast to access
4984 -- parameters, where the level of the actual can be arbitrary).
4985 -- We can't use Valid_Conversion to perform this check because
4986 -- in general the type of the allocator is unrelated to the type
4987 -- of the access discriminant.
4989 if Nkind (Original_Node (E)) = N_Subtype_Indication
4990 and then (Ekind (Typ) /= E_Anonymous_Access_Type
4991 or else Is_Local_Anonymous_Access (Typ))
4992 then
4993 Subtyp := Entity (Subtype_Mark (Original_Node (E)));
4995 if Has_Discriminants (Subtyp) then
4996 Discrim := First_Discriminant (Base_Type (Subtyp));
4997 Constr := First (Constraints (Constraint (Original_Node (E))));
4998 while Present (Discrim) and then Present (Constr) loop
4999 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
5000 if Nkind (Constr) = N_Discriminant_Association then
5001 Disc_Exp := Original_Node (Expression (Constr));
5002 else
5003 Disc_Exp := Original_Node (Constr);
5004 end if;
5006 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
5007 end if;
5009 Next_Discriminant (Discrim);
5010 Next (Constr);
5011 end loop;
5012 end if;
5013 end if;
5014 end if;
5016 -- Ada 2005 (AI-344): A class-wide allocator requires an accessibility
5017 -- check that the level of the type of the created object is not deeper
5018 -- than the level of the allocator's access type, since extensions can
5019 -- now occur at deeper levels than their ancestor types. This is a
5020 -- static accessibility level check; a run-time check is also needed in
5021 -- the case of an initialized allocator with a class-wide argument (see
5022 -- Expand_Allocator_Expression).
5024 if Ada_Version >= Ada_2005
5025 and then Is_Class_Wide_Type (Desig_T)
5026 then
5027 declare
5028 Exp_Typ : Entity_Id;
5030 begin
5031 if Nkind (E) = N_Qualified_Expression then
5032 Exp_Typ := Etype (E);
5033 elsif Nkind (E) = N_Subtype_Indication then
5034 Exp_Typ := Entity (Subtype_Mark (Original_Node (E)));
5035 else
5036 Exp_Typ := Entity (E);
5037 end if;
5039 if Type_Access_Level (Exp_Typ) >
5040 Deepest_Type_Access_Level (Typ)
5041 then
5042 if In_Instance_Body then
5043 Error_Msg_Warn := SPARK_Mode /= On;
5044 Error_Msg_N
5045 ("type in allocator has deeper level than "
5046 & "designated class-wide type<<", E);
5047 Error_Msg_N ("\Program_Error [<<", E);
5048 Rewrite (N,
5049 Make_Raise_Program_Error (Sloc (N),
5050 Reason => PE_Accessibility_Check_Failed));
5051 Set_Etype (N, Typ);
5053 -- Do not apply Ada 2005 accessibility checks on a class-wide
5054 -- allocator if the type given in the allocator is a formal
5055 -- type. A run-time check will be performed in the instance.
5057 elsif not Is_Generic_Type (Exp_Typ) then
5058 Error_Msg_N ("type in allocator has deeper level than "
5059 & "designated class-wide type", E);
5060 end if;
5061 end if;
5062 end;
5063 end if;
5065 -- Check for allocation from an empty storage pool
5067 if No_Pool_Assigned (Typ) then
5068 Error_Msg_N ("allocation from empty storage pool!", N);
5070 -- If the context is an unchecked conversion, as may happen within an
5071 -- inlined subprogram, the allocator is being resolved with its own
5072 -- anonymous type. In that case, if the target type has a specific
5073 -- storage pool, it must be inherited explicitly by the allocator type.
5075 elsif Nkind (Parent (N)) = N_Unchecked_Type_Conversion
5076 and then No (Associated_Storage_Pool (Typ))
5077 then
5078 Set_Associated_Storage_Pool
5079 (Typ, Associated_Storage_Pool (Etype (Parent (N))));
5080 end if;
5082 if Ekind (Etype (N)) = E_Anonymous_Access_Type then
5083 Check_Restriction (No_Anonymous_Allocators, N);
5084 end if;
5086 -- Check that an allocator with task parts isn't for a nested access
5087 -- type when restriction No_Task_Hierarchy applies.
5089 if not Is_Library_Level_Entity (Base_Type (Typ))
5090 and then Has_Task (Base_Type (Desig_T))
5091 then
5092 Check_Restriction (No_Task_Hierarchy, N);
5093 end if;
5095 -- An illegal allocator may be rewritten as a raise Program_Error
5096 -- statement.
5098 if Nkind (N) = N_Allocator then
5100 -- An anonymous access discriminant is the definition of a
5101 -- coextension.
5103 if Ekind (Typ) = E_Anonymous_Access_Type
5104 and then Nkind (Associated_Node_For_Itype (Typ)) =
5105 N_Discriminant_Specification
5106 then
5107 declare
5108 Discr : constant Entity_Id :=
5109 Defining_Identifier (Associated_Node_For_Itype (Typ));
5111 begin
5112 Check_Restriction (No_Coextensions, N);
5114 -- Ada 2012 AI05-0052: If the designated type of the allocator
5115 -- is limited, then the allocator shall not be used to define
5116 -- the value of an access discriminant unless the discriminated
5117 -- type is immutably limited.
5119 if Ada_Version >= Ada_2012
5120 and then Is_Limited_Type (Desig_T)
5121 and then not Is_Limited_View (Scope (Discr))
5122 then
5123 Error_Msg_N
5124 ("only immutably limited types can have anonymous "
5125 & "access discriminants designating a limited type", N);
5126 end if;
5127 end;
5129 -- Avoid marking an allocator as a dynamic coextension if it is
5130 -- within a static construct.
5132 if not Is_Static_Coextension (N) then
5133 Set_Is_Dynamic_Coextension (N);
5134 end if;
5136 -- Cleanup for potential static coextensions
5138 else
5139 Set_Is_Dynamic_Coextension (N, False);
5140 Set_Is_Static_Coextension (N, False);
5141 end if;
5142 end if;
5144 -- Report a simple error: if the designated object is a local task,
5145 -- its body has not been seen yet, and its activation will fail an
5146 -- elaboration check.
5148 if Is_Task_Type (Desig_T)
5149 and then Scope (Base_Type (Desig_T)) = Current_Scope
5150 and then Is_Compilation_Unit (Current_Scope)
5151 and then Ekind (Current_Scope) = E_Package
5152 and then not In_Package_Body (Current_Scope)
5153 then
5154 Error_Msg_Warn := SPARK_Mode /= On;
5155 Error_Msg_N ("cannot activate task before body seen<<", N);
5156 Error_Msg_N ("\Program_Error [<<", N);
5157 end if;
5159 -- Ada 2012 (AI05-0111-3): Detect an attempt to allocate a task or a
5160 -- type with a task component on a subpool. This action must raise
5161 -- Program_Error at runtime.
5163 if Ada_Version >= Ada_2012
5164 and then Nkind (N) = N_Allocator
5165 and then Present (Subpool_Handle_Name (N))
5166 and then Has_Task (Desig_T)
5167 then
5168 Error_Msg_Warn := SPARK_Mode /= On;
5169 Error_Msg_N ("cannot allocate task on subpool<<", N);
5170 Error_Msg_N ("\Program_Error [<<", N);
5172 Rewrite (N,
5173 Make_Raise_Program_Error (Sloc (N),
5174 Reason => PE_Explicit_Raise));
5175 Set_Etype (N, Typ);
5176 end if;
5177 end Resolve_Allocator;
5179 ---------------------------
5180 -- Resolve_Arithmetic_Op --
5181 ---------------------------
5183 -- Used for resolving all arithmetic operators except exponentiation
5185 procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id) is
5186 L : constant Node_Id := Left_Opnd (N);
5187 R : constant Node_Id := Right_Opnd (N);
5188 TL : constant Entity_Id := Base_Type (Etype (L));
5189 TR : constant Entity_Id := Base_Type (Etype (R));
5190 T : Entity_Id;
5191 Rop : Node_Id;
5193 B_Typ : constant Entity_Id := Base_Type (Typ);
5194 -- We do the resolution using the base type, because intermediate values
5195 -- in expressions always are of the base type, not a subtype of it.
5197 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean;
5198 -- Returns True if N is in a context that expects "any real type"
5200 function Is_Integer_Or_Universal (N : Node_Id) return Boolean;
5201 -- Return True iff given type is Integer or universal real/integer
5203 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id);
5204 -- Choose type of integer literal in fixed-point operation to conform
5205 -- to available fixed-point type. T is the type of the other operand,
5206 -- which is needed to determine the expected type of N.
5208 procedure Set_Operand_Type (N : Node_Id);
5209 -- Set operand type to T if universal
5211 -------------------------------
5212 -- Expected_Type_Is_Any_Real --
5213 -------------------------------
5215 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean is
5216 begin
5217 -- N is the expression after "delta" in a fixed_point_definition;
5218 -- see RM-3.5.9(6):
5220 return Nkind_In (Parent (N), N_Ordinary_Fixed_Point_Definition,
5221 N_Decimal_Fixed_Point_Definition,
5223 -- N is one of the bounds in a real_range_specification;
5224 -- see RM-3.5.7(5):
5226 N_Real_Range_Specification,
5228 -- N is the expression of a delta_constraint;
5229 -- see RM-J.3(3):
5231 N_Delta_Constraint);
5232 end Expected_Type_Is_Any_Real;
5234 -----------------------------
5235 -- Is_Integer_Or_Universal --
5236 -----------------------------
5238 function Is_Integer_Or_Universal (N : Node_Id) return Boolean is
5239 T : Entity_Id;
5240 Index : Interp_Index;
5241 It : Interp;
5243 begin
5244 if not Is_Overloaded (N) then
5245 T := Etype (N);
5246 return Base_Type (T) = Base_Type (Standard_Integer)
5247 or else T = Universal_Integer
5248 or else T = Universal_Real;
5249 else
5250 Get_First_Interp (N, Index, It);
5251 while Present (It.Typ) loop
5252 if Base_Type (It.Typ) = Base_Type (Standard_Integer)
5253 or else It.Typ = Universal_Integer
5254 or else It.Typ = Universal_Real
5255 then
5256 return True;
5257 end if;
5259 Get_Next_Interp (Index, It);
5260 end loop;
5261 end if;
5263 return False;
5264 end Is_Integer_Or_Universal;
5266 ----------------------------
5267 -- Set_Mixed_Mode_Operand --
5268 ----------------------------
5270 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id) is
5271 Index : Interp_Index;
5272 It : Interp;
5274 begin
5275 if Universal_Interpretation (N) = Universal_Integer then
5277 -- A universal integer literal is resolved as standard integer
5278 -- except in the case of a fixed-point result, where we leave it
5279 -- as universal (to be handled by Exp_Fixd later on)
5281 if Is_Fixed_Point_Type (T) then
5282 Resolve (N, Universal_Integer);
5283 else
5284 Resolve (N, Standard_Integer);
5285 end if;
5287 elsif Universal_Interpretation (N) = Universal_Real
5288 and then (T = Base_Type (Standard_Integer)
5289 or else T = Universal_Integer
5290 or else T = Universal_Real)
5291 then
5292 -- A universal real can appear in a fixed-type context. We resolve
5293 -- the literal with that context, even though this might raise an
5294 -- exception prematurely (the other operand may be zero).
5296 Resolve (N, B_Typ);
5298 elsif Etype (N) = Base_Type (Standard_Integer)
5299 and then T = Universal_Real
5300 and then Is_Overloaded (N)
5301 then
5302 -- Integer arg in mixed-mode operation. Resolve with universal
5303 -- type, in case preference rule must be applied.
5305 Resolve (N, Universal_Integer);
5307 elsif Etype (N) = T
5308 and then B_Typ /= Universal_Fixed
5309 then
5310 -- Not a mixed-mode operation, resolve with context
5312 Resolve (N, B_Typ);
5314 elsif Etype (N) = Any_Fixed then
5316 -- N may itself be a mixed-mode operation, so use context type
5318 Resolve (N, B_Typ);
5320 elsif Is_Fixed_Point_Type (T)
5321 and then B_Typ = Universal_Fixed
5322 and then Is_Overloaded (N)
5323 then
5324 -- Must be (fixed * fixed) operation, operand must have one
5325 -- compatible interpretation.
5327 Resolve (N, Any_Fixed);
5329 elsif Is_Fixed_Point_Type (B_Typ)
5330 and then (T = Universal_Real or else Is_Fixed_Point_Type (T))
5331 and then Is_Overloaded (N)
5332 then
5333 -- C * F(X) in a fixed context, where C is a real literal or a
5334 -- fixed-point expression. F must have either a fixed type
5335 -- interpretation or an integer interpretation, but not both.
5337 Get_First_Interp (N, Index, It);
5338 while Present (It.Typ) loop
5339 if Base_Type (It.Typ) = Base_Type (Standard_Integer) then
5340 if Analyzed (N) then
5341 Error_Msg_N ("ambiguous operand in fixed operation", N);
5342 else
5343 Resolve (N, Standard_Integer);
5344 end if;
5346 elsif Is_Fixed_Point_Type (It.Typ) then
5347 if Analyzed (N) then
5348 Error_Msg_N ("ambiguous operand in fixed operation", N);
5349 else
5350 Resolve (N, It.Typ);
5351 end if;
5352 end if;
5354 Get_Next_Interp (Index, It);
5355 end loop;
5357 -- Reanalyze the literal with the fixed type of the context. If
5358 -- context is Universal_Fixed, we are within a conversion, leave
5359 -- the literal as a universal real because there is no usable
5360 -- fixed type, and the target of the conversion plays no role in
5361 -- the resolution.
5363 declare
5364 Op2 : Node_Id;
5365 T2 : Entity_Id;
5367 begin
5368 if N = L then
5369 Op2 := R;
5370 else
5371 Op2 := L;
5372 end if;
5374 if B_Typ = Universal_Fixed
5375 and then Nkind (Op2) = N_Real_Literal
5376 then
5377 T2 := Universal_Real;
5378 else
5379 T2 := B_Typ;
5380 end if;
5382 Set_Analyzed (Op2, False);
5383 Resolve (Op2, T2);
5384 end;
5386 -- A universal real conditional expression can appear in a fixed-type
5387 -- context and must be resolved with that context to facilitate the
5388 -- code generation to the backend.
5390 elsif Nkind_In (N, N_Case_Expression, N_If_Expression)
5391 and then Etype (N) = Universal_Real
5392 and then Is_Fixed_Point_Type (B_Typ)
5393 then
5394 Resolve (N, B_Typ);
5396 else
5397 Resolve (N);
5398 end if;
5399 end Set_Mixed_Mode_Operand;
5401 ----------------------
5402 -- Set_Operand_Type --
5403 ----------------------
5405 procedure Set_Operand_Type (N : Node_Id) is
5406 begin
5407 if Etype (N) = Universal_Integer
5408 or else Etype (N) = Universal_Real
5409 then
5410 Set_Etype (N, T);
5411 end if;
5412 end Set_Operand_Type;
5414 -- Start of processing for Resolve_Arithmetic_Op
5416 begin
5417 if Comes_From_Source (N)
5418 and then Ekind (Entity (N)) = E_Function
5419 and then Is_Imported (Entity (N))
5420 and then Is_Intrinsic_Subprogram (Entity (N))
5421 then
5422 Resolve_Intrinsic_Operator (N, Typ);
5423 return;
5425 -- Special-case for mixed-mode universal expressions or fixed point type
5426 -- operation: each argument is resolved separately. The same treatment
5427 -- is required if one of the operands of a fixed point operation is
5428 -- universal real, since in this case we don't do a conversion to a
5429 -- specific fixed-point type (instead the expander handles the case).
5431 -- Set the type of the node to its universal interpretation because
5432 -- legality checks on an exponentiation operand need the context.
5434 elsif (B_Typ = Universal_Integer or else B_Typ = Universal_Real)
5435 and then Present (Universal_Interpretation (L))
5436 and then Present (Universal_Interpretation (R))
5437 then
5438 Set_Etype (N, B_Typ);
5439 Resolve (L, Universal_Interpretation (L));
5440 Resolve (R, Universal_Interpretation (R));
5442 elsif (B_Typ = Universal_Real
5443 or else Etype (N) = Universal_Fixed
5444 or else (Etype (N) = Any_Fixed
5445 and then Is_Fixed_Point_Type (B_Typ))
5446 or else (Is_Fixed_Point_Type (B_Typ)
5447 and then (Is_Integer_Or_Universal (L)
5448 or else
5449 Is_Integer_Or_Universal (R))))
5450 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5451 then
5452 if TL = Universal_Integer or else TR = Universal_Integer then
5453 Check_For_Visible_Operator (N, B_Typ);
5454 end if;
5456 -- If context is a fixed type and one operand is integer, the other
5457 -- is resolved with the type of the context.
5459 if Is_Fixed_Point_Type (B_Typ)
5460 and then (Base_Type (TL) = Base_Type (Standard_Integer)
5461 or else TL = Universal_Integer)
5462 then
5463 Resolve (R, B_Typ);
5464 Resolve (L, TL);
5466 elsif Is_Fixed_Point_Type (B_Typ)
5467 and then (Base_Type (TR) = Base_Type (Standard_Integer)
5468 or else TR = Universal_Integer)
5469 then
5470 Resolve (L, B_Typ);
5471 Resolve (R, TR);
5473 -- If both operands are universal and the context is a floating
5474 -- point type, the operands are resolved to the type of the context.
5476 elsif Is_Floating_Point_Type (B_Typ) then
5477 Resolve (L, B_Typ);
5478 Resolve (R, B_Typ);
5480 else
5481 Set_Mixed_Mode_Operand (L, TR);
5482 Set_Mixed_Mode_Operand (R, TL);
5483 end if;
5485 -- Check the rule in RM05-4.5.5(19.1/2) disallowing universal_fixed
5486 -- multiplying operators from being used when the expected type is
5487 -- also universal_fixed. Note that B_Typ will be Universal_Fixed in
5488 -- some cases where the expected type is actually Any_Real;
5489 -- Expected_Type_Is_Any_Real takes care of that case.
5491 if Etype (N) = Universal_Fixed
5492 or else Etype (N) = Any_Fixed
5493 then
5494 if B_Typ = Universal_Fixed
5495 and then not Expected_Type_Is_Any_Real (N)
5496 and then not Nkind_In (Parent (N), N_Type_Conversion,
5497 N_Unchecked_Type_Conversion)
5498 then
5499 Error_Msg_N ("type cannot be determined from context!", N);
5500 Error_Msg_N ("\explicit conversion to result type required", N);
5502 Set_Etype (L, Any_Type);
5503 Set_Etype (R, Any_Type);
5505 else
5506 if Ada_Version = Ada_83
5507 and then Etype (N) = Universal_Fixed
5508 and then not
5509 Nkind_In (Parent (N), N_Type_Conversion,
5510 N_Unchecked_Type_Conversion)
5511 then
5512 Error_Msg_N
5513 ("(Ada 83) fixed-point operation needs explicit "
5514 & "conversion", N);
5515 end if;
5517 -- The expected type is "any real type" in contexts like
5519 -- type T is delta <universal_fixed-expression> ...
5521 -- in which case we need to set the type to Universal_Real
5522 -- so that static expression evaluation will work properly.
5524 if Expected_Type_Is_Any_Real (N) then
5525 Set_Etype (N, Universal_Real);
5526 else
5527 Set_Etype (N, B_Typ);
5528 end if;
5529 end if;
5531 elsif Is_Fixed_Point_Type (B_Typ)
5532 and then (Is_Integer_Or_Universal (L)
5533 or else Nkind (L) = N_Real_Literal
5534 or else Nkind (R) = N_Real_Literal
5535 or else Is_Integer_Or_Universal (R))
5536 then
5537 Set_Etype (N, B_Typ);
5539 elsif Etype (N) = Any_Fixed then
5541 -- If no previous errors, this is only possible if one operand is
5542 -- overloaded and the context is universal. Resolve as such.
5544 Set_Etype (N, B_Typ);
5545 end if;
5547 else
5548 if (TL = Universal_Integer or else TL = Universal_Real)
5549 and then
5550 (TR = Universal_Integer or else TR = Universal_Real)
5551 then
5552 Check_For_Visible_Operator (N, B_Typ);
5553 end if;
5555 -- If the context is Universal_Fixed and the operands are also
5556 -- universal fixed, this is an error, unless there is only one
5557 -- applicable fixed_point type (usually Duration).
5559 if B_Typ = Universal_Fixed and then Etype (L) = Universal_Fixed then
5560 T := Unique_Fixed_Point_Type (N);
5562 if T = Any_Type then
5563 Set_Etype (N, T);
5564 return;
5565 else
5566 Resolve (L, T);
5567 Resolve (R, T);
5568 end if;
5570 else
5571 Resolve (L, B_Typ);
5572 Resolve (R, B_Typ);
5573 end if;
5575 -- If one of the arguments was resolved to a non-universal type.
5576 -- label the result of the operation itself with the same type.
5577 -- Do the same for the universal argument, if any.
5579 T := Intersect_Types (L, R);
5580 Set_Etype (N, Base_Type (T));
5581 Set_Operand_Type (L);
5582 Set_Operand_Type (R);
5583 end if;
5585 Generate_Operator_Reference (N, Typ);
5586 Analyze_Dimension (N);
5587 Eval_Arithmetic_Op (N);
5589 -- In SPARK, a multiplication or division with operands of fixed point
5590 -- types must be qualified or explicitly converted to identify the
5591 -- result type.
5593 if (Is_Fixed_Point_Type (Etype (L))
5594 or else Is_Fixed_Point_Type (Etype (R)))
5595 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5596 and then
5597 not Nkind_In (Parent (N), N_Qualified_Expression, N_Type_Conversion)
5598 then
5599 Check_SPARK_05_Restriction
5600 ("operation should be qualified or explicitly converted", N);
5601 end if;
5603 -- Set overflow and division checking bit
5605 if Nkind (N) in N_Op then
5606 if not Overflow_Checks_Suppressed (Etype (N)) then
5607 Enable_Overflow_Check (N);
5608 end if;
5610 -- Give warning if explicit division by zero
5612 if Nkind_In (N, N_Op_Divide, N_Op_Rem, N_Op_Mod)
5613 and then not Division_Checks_Suppressed (Etype (N))
5614 then
5615 Rop := Right_Opnd (N);
5617 if Compile_Time_Known_Value (Rop)
5618 and then ((Is_Integer_Type (Etype (Rop))
5619 and then Expr_Value (Rop) = Uint_0)
5620 or else
5621 (Is_Real_Type (Etype (Rop))
5622 and then Expr_Value_R (Rop) = Ureal_0))
5623 then
5624 -- Specialize the warning message according to the operation.
5625 -- When SPARK_Mode is On, force a warning instead of an error
5626 -- in that case, as this likely corresponds to deactivated
5627 -- code. The following warnings are for the case
5629 case Nkind (N) is
5630 when N_Op_Divide =>
5632 -- For division, we have two cases, for float division
5633 -- of an unconstrained float type, on a machine where
5634 -- Machine_Overflows is false, we don't get an exception
5635 -- at run-time, but rather an infinity or Nan. The Nan
5636 -- case is pretty obscure, so just warn about infinities.
5638 if Is_Floating_Point_Type (Typ)
5639 and then not Is_Constrained (Typ)
5640 and then not Machine_Overflows_On_Target
5641 then
5642 Error_Msg_N
5643 ("float division by zero, may generate "
5644 & "'+'/'- infinity??", Right_Opnd (N));
5646 -- For all other cases, we get a Constraint_Error
5648 else
5649 Apply_Compile_Time_Constraint_Error
5650 (N, "division by zero??", CE_Divide_By_Zero,
5651 Loc => Sloc (Right_Opnd (N)),
5652 Warn => SPARK_Mode = On);
5653 end if;
5655 when N_Op_Rem =>
5656 Apply_Compile_Time_Constraint_Error
5657 (N, "rem with zero divisor??", CE_Divide_By_Zero,
5658 Loc => Sloc (Right_Opnd (N)),
5659 Warn => SPARK_Mode = On);
5661 when N_Op_Mod =>
5662 Apply_Compile_Time_Constraint_Error
5663 (N, "mod with zero divisor??", CE_Divide_By_Zero,
5664 Loc => Sloc (Right_Opnd (N)),
5665 Warn => SPARK_Mode = On);
5667 -- Division by zero can only happen with division, rem,
5668 -- and mod operations.
5670 when others =>
5671 raise Program_Error;
5672 end case;
5674 -- In GNATprove mode, we enable the division check so that
5675 -- GNATprove will issue a message if it cannot be proved.
5677 if GNATprove_Mode then
5678 Activate_Division_Check (N);
5679 end if;
5681 -- Otherwise just set the flag to check at run time
5683 else
5684 Activate_Division_Check (N);
5685 end if;
5686 end if;
5688 -- If Restriction No_Implicit_Conditionals is active, then it is
5689 -- violated if either operand can be negative for mod, or for rem
5690 -- if both operands can be negative.
5692 if Restriction_Check_Required (No_Implicit_Conditionals)
5693 and then Nkind_In (N, N_Op_Rem, N_Op_Mod)
5694 then
5695 declare
5696 Lo : Uint;
5697 Hi : Uint;
5698 OK : Boolean;
5700 LNeg : Boolean;
5701 RNeg : Boolean;
5702 -- Set if corresponding operand might be negative
5704 begin
5705 Determine_Range
5706 (Left_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5707 LNeg := (not OK) or else Lo < 0;
5709 Determine_Range
5710 (Right_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5711 RNeg := (not OK) or else Lo < 0;
5713 -- Check if we will be generating conditionals. There are two
5714 -- cases where that can happen, first for REM, the only case
5715 -- is largest negative integer mod -1, where the division can
5716 -- overflow, but we still have to give the right result. The
5717 -- front end generates a test for this annoying case. Here we
5718 -- just test if both operands can be negative (that's what the
5719 -- expander does, so we match its logic here).
5721 -- The second case is mod where either operand can be negative.
5722 -- In this case, the back end has to generate additional tests.
5724 if (Nkind (N) = N_Op_Rem and then (LNeg and RNeg))
5725 or else
5726 (Nkind (N) = N_Op_Mod and then (LNeg or RNeg))
5727 then
5728 Check_Restriction (No_Implicit_Conditionals, N);
5729 end if;
5730 end;
5731 end if;
5732 end if;
5734 Check_Unset_Reference (L);
5735 Check_Unset_Reference (R);
5736 end Resolve_Arithmetic_Op;
5738 ------------------
5739 -- Resolve_Call --
5740 ------------------
5742 procedure Resolve_Call (N : Node_Id; Typ : Entity_Id) is
5743 function Same_Or_Aliased_Subprograms
5744 (S : Entity_Id;
5745 E : Entity_Id) return Boolean;
5746 -- Returns True if the subprogram entity S is the same as E or else
5747 -- S is an alias of E.
5749 ---------------------------------
5750 -- Same_Or_Aliased_Subprograms --
5751 ---------------------------------
5753 function Same_Or_Aliased_Subprograms
5754 (S : Entity_Id;
5755 E : Entity_Id) return Boolean
5757 Subp_Alias : constant Entity_Id := Alias (S);
5758 begin
5759 return S = E or else (Present (Subp_Alias) and then Subp_Alias = E);
5760 end Same_Or_Aliased_Subprograms;
5762 -- Local variables
5764 Loc : constant Source_Ptr := Sloc (N);
5765 Subp : constant Node_Id := Name (N);
5766 Body_Id : Entity_Id;
5767 I : Interp_Index;
5768 It : Interp;
5769 Nam : Entity_Id;
5770 Nam_Decl : Node_Id;
5771 Nam_UA : Entity_Id;
5772 Norm_OK : Boolean;
5773 Rtype : Entity_Id;
5774 Scop : Entity_Id;
5776 -- Start of processing for Resolve_Call
5778 begin
5779 -- Preserve relevant elaboration-related attributes of the context which
5780 -- are no longer available or very expensive to recompute once analysis,
5781 -- resolution, and expansion are over.
5783 Mark_Elaboration_Attributes
5784 (N_Id => N,
5785 Checks => True,
5786 Modes => True);
5788 -- The context imposes a unique interpretation with type Typ on a
5789 -- procedure or function call. Find the entity of the subprogram that
5790 -- yields the expected type, and propagate the corresponding formal
5791 -- constraints on the actuals. The caller has established that an
5792 -- interpretation exists, and emitted an error if not unique.
5794 -- First deal with the case of a call to an access-to-subprogram,
5795 -- dereference made explicit in Analyze_Call.
5797 if Ekind (Etype (Subp)) = E_Subprogram_Type then
5798 if not Is_Overloaded (Subp) then
5799 Nam := Etype (Subp);
5801 else
5802 -- Find the interpretation whose type (a subprogram type) has a
5803 -- return type that is compatible with the context. Analysis of
5804 -- the node has established that one exists.
5806 Nam := Empty;
5808 Get_First_Interp (Subp, I, It);
5809 while Present (It.Typ) loop
5810 if Covers (Typ, Etype (It.Typ)) then
5811 Nam := It.Typ;
5812 exit;
5813 end if;
5815 Get_Next_Interp (I, It);
5816 end loop;
5818 if No (Nam) then
5819 raise Program_Error;
5820 end if;
5821 end if;
5823 -- If the prefix is not an entity, then resolve it
5825 if not Is_Entity_Name (Subp) then
5826 Resolve (Subp, Nam);
5827 end if;
5829 -- For an indirect call, we always invalidate checks, since we do not
5830 -- know whether the subprogram is local or global. Yes we could do
5831 -- better here, e.g. by knowing that there are no local subprograms,
5832 -- but it does not seem worth the effort. Similarly, we kill all
5833 -- knowledge of current constant values.
5835 Kill_Current_Values;
5837 -- If this is a procedure call which is really an entry call, do
5838 -- the conversion of the procedure call to an entry call. Protected
5839 -- operations use the same circuitry because the name in the call
5840 -- can be an arbitrary expression with special resolution rules.
5842 elsif Nkind_In (Subp, N_Selected_Component, N_Indexed_Component)
5843 or else (Is_Entity_Name (Subp)
5844 and then Ekind_In (Entity (Subp), E_Entry, E_Entry_Family))
5845 then
5846 Resolve_Entry_Call (N, Typ);
5848 -- Annotate the tree by creating a call marker in case the original
5849 -- call is transformed by expansion. The call marker is automatically
5850 -- saved for later examination by the ABE Processing phase.
5852 Build_Call_Marker (N);
5854 -- Kill checks and constant values, as above for indirect case
5855 -- Who knows what happens when another task is activated?
5857 Kill_Current_Values;
5858 return;
5860 -- Normal subprogram call with name established in Resolve
5862 elsif not (Is_Type (Entity (Subp))) then
5863 Nam := Entity (Subp);
5864 Set_Entity_With_Checks (Subp, Nam);
5866 -- Otherwise we must have the case of an overloaded call
5868 else
5869 pragma Assert (Is_Overloaded (Subp));
5871 -- Initialize Nam to prevent warning (we know it will be assigned
5872 -- in the loop below, but the compiler does not know that).
5874 Nam := Empty;
5876 Get_First_Interp (Subp, I, It);
5877 while Present (It.Typ) loop
5878 if Covers (Typ, It.Typ) then
5879 Nam := It.Nam;
5880 Set_Entity_With_Checks (Subp, Nam);
5881 exit;
5882 end if;
5884 Get_Next_Interp (I, It);
5885 end loop;
5886 end if;
5888 if Is_Access_Subprogram_Type (Base_Type (Etype (Nam)))
5889 and then not Is_Access_Subprogram_Type (Base_Type (Typ))
5890 and then Nkind (Subp) /= N_Explicit_Dereference
5891 and then Present (Parameter_Associations (N))
5892 then
5893 -- The prefix is a parameterless function call that returns an access
5894 -- to subprogram. If parameters are present in the current call, add
5895 -- add an explicit dereference. We use the base type here because
5896 -- within an instance these may be subtypes.
5898 -- The dereference is added either in Analyze_Call or here. Should
5899 -- be consolidated ???
5901 Set_Is_Overloaded (Subp, False);
5902 Set_Etype (Subp, Etype (Nam));
5903 Insert_Explicit_Dereference (Subp);
5904 Nam := Designated_Type (Etype (Nam));
5905 Resolve (Subp, Nam);
5906 end if;
5908 -- Check that a call to Current_Task does not occur in an entry body
5910 if Is_RTE (Nam, RE_Current_Task) then
5911 declare
5912 P : Node_Id;
5914 begin
5915 P := N;
5916 loop
5917 P := Parent (P);
5919 -- Exclude calls that occur within the default of a formal
5920 -- parameter of the entry, since those are evaluated outside
5921 -- of the body.
5923 exit when No (P) or else Nkind (P) = N_Parameter_Specification;
5925 if Nkind (P) = N_Entry_Body
5926 or else (Nkind (P) = N_Subprogram_Body
5927 and then Is_Entry_Barrier_Function (P))
5928 then
5929 Rtype := Etype (N);
5930 Error_Msg_Warn := SPARK_Mode /= On;
5931 Error_Msg_NE
5932 ("& should not be used in entry body (RM C.7(17))<<",
5933 N, Nam);
5934 Error_Msg_NE ("\Program_Error [<<", N, Nam);
5935 Rewrite (N,
5936 Make_Raise_Program_Error (Loc,
5937 Reason => PE_Current_Task_In_Entry_Body));
5938 Set_Etype (N, Rtype);
5939 return;
5940 end if;
5941 end loop;
5942 end;
5943 end if;
5945 -- Check that a procedure call does not occur in the context of the
5946 -- entry call statement of a conditional or timed entry call. Note that
5947 -- the case of a call to a subprogram renaming of an entry will also be
5948 -- rejected. The test for N not being an N_Entry_Call_Statement is
5949 -- defensive, covering the possibility that the processing of entry
5950 -- calls might reach this point due to later modifications of the code
5951 -- above.
5953 if Nkind (Parent (N)) = N_Entry_Call_Alternative
5954 and then Nkind (N) /= N_Entry_Call_Statement
5955 and then Entry_Call_Statement (Parent (N)) = N
5956 then
5957 if Ada_Version < Ada_2005 then
5958 Error_Msg_N ("entry call required in select statement", N);
5960 -- Ada 2005 (AI-345): If a procedure_call_statement is used
5961 -- for a procedure_or_entry_call, the procedure_name or
5962 -- procedure_prefix of the procedure_call_statement shall denote
5963 -- an entry renamed by a procedure, or (a view of) a primitive
5964 -- subprogram of a limited interface whose first parameter is
5965 -- a controlling parameter.
5967 elsif Nkind (N) = N_Procedure_Call_Statement
5968 and then not Is_Renamed_Entry (Nam)
5969 and then not Is_Controlling_Limited_Procedure (Nam)
5970 then
5971 Error_Msg_N
5972 ("entry call or dispatching primitive of interface required", N);
5973 end if;
5974 end if;
5976 -- If the SPARK_05 restriction is active, we are not allowed
5977 -- to have a call to a subprogram before we see its completion.
5979 if not Has_Completion (Nam)
5980 and then Restriction_Check_Required (SPARK_05)
5982 -- Don't flag strange internal calls
5984 and then Comes_From_Source (N)
5985 and then Comes_From_Source (Nam)
5987 -- Only flag calls in extended main source
5989 and then In_Extended_Main_Source_Unit (Nam)
5990 and then In_Extended_Main_Source_Unit (N)
5992 -- Exclude enumeration literals from this processing
5994 and then Ekind (Nam) /= E_Enumeration_Literal
5995 then
5996 Check_SPARK_05_Restriction
5997 ("call to subprogram cannot appear before its body", N);
5998 end if;
6000 -- Check that this is not a call to a protected procedure or entry from
6001 -- within a protected function.
6003 Check_Internal_Protected_Use (N, Nam);
6005 -- Freeze the subprogram name if not in a spec-expression. Note that
6006 -- we freeze procedure calls as well as function calls. Procedure calls
6007 -- are not frozen according to the rules (RM 13.14(14)) because it is
6008 -- impossible to have a procedure call to a non-frozen procedure in
6009 -- pure Ada, but in the code that we generate in the expander, this
6010 -- rule needs extending because we can generate procedure calls that
6011 -- need freezing.
6013 -- In Ada 2012, expression functions may be called within pre/post
6014 -- conditions of subsequent functions or expression functions. Such
6015 -- calls do not freeze when they appear within generated bodies,
6016 -- (including the body of another expression function) which would
6017 -- place the freeze node in the wrong scope. An expression function
6018 -- is frozen in the usual fashion, by the appearance of a real body,
6019 -- or at the end of a declarative part.
6021 if Is_Entity_Name (Subp)
6022 and then not In_Spec_Expression
6023 and then not Is_Expression_Function_Or_Completion (Current_Scope)
6024 and then
6025 (not Is_Expression_Function_Or_Completion (Entity (Subp))
6026 or else Scope (Entity (Subp)) = Current_Scope)
6027 then
6028 Freeze_Expression (Subp);
6029 end if;
6031 -- For a predefined operator, the type of the result is the type imposed
6032 -- by context, except for a predefined operation on universal fixed.
6033 -- Otherwise The type of the call is the type returned by the subprogram
6034 -- being called.
6036 if Is_Predefined_Op (Nam) then
6037 if Etype (N) /= Universal_Fixed then
6038 Set_Etype (N, Typ);
6039 end if;
6041 -- If the subprogram returns an array type, and the context requires the
6042 -- component type of that array type, the node is really an indexing of
6043 -- the parameterless call. Resolve as such. A pathological case occurs
6044 -- when the type of the component is an access to the array type. In
6045 -- this case the call is truly ambiguous. If the call is to an intrinsic
6046 -- subprogram, it can't be an indexed component. This check is necessary
6047 -- because if it's Unchecked_Conversion, and we have "type T_Ptr is
6048 -- access T;" and "type T is array (...) of T_Ptr;" (i.e. an array of
6049 -- pointers to the same array), the compiler gets confused and does an
6050 -- infinite recursion.
6052 elsif (Needs_No_Actuals (Nam) or else Needs_One_Actual (Nam))
6053 and then
6054 ((Is_Array_Type (Etype (Nam))
6055 and then Covers (Typ, Component_Type (Etype (Nam))))
6056 or else
6057 (Is_Access_Type (Etype (Nam))
6058 and then Is_Array_Type (Designated_Type (Etype (Nam)))
6059 and then
6060 Covers (Typ, Component_Type (Designated_Type (Etype (Nam))))
6061 and then not Is_Intrinsic_Subprogram (Entity (Subp))))
6062 then
6063 declare
6064 Index_Node : Node_Id;
6065 New_Subp : Node_Id;
6066 Ret_Type : constant Entity_Id := Etype (Nam);
6068 begin
6069 if Is_Access_Type (Ret_Type)
6070 and then Ret_Type = Component_Type (Designated_Type (Ret_Type))
6071 then
6072 Error_Msg_N
6073 ("cannot disambiguate function call and indexing", N);
6074 else
6075 New_Subp := Relocate_Node (Subp);
6077 -- The called entity may be an explicit dereference, in which
6078 -- case there is no entity to set.
6080 if Nkind (New_Subp) /= N_Explicit_Dereference then
6081 Set_Entity (Subp, Nam);
6082 end if;
6084 if (Is_Array_Type (Ret_Type)
6085 and then Component_Type (Ret_Type) /= Any_Type)
6086 or else
6087 (Is_Access_Type (Ret_Type)
6088 and then
6089 Component_Type (Designated_Type (Ret_Type)) /= Any_Type)
6090 then
6091 if Needs_No_Actuals (Nam) then
6093 -- Indexed call to a parameterless function
6095 Index_Node :=
6096 Make_Indexed_Component (Loc,
6097 Prefix =>
6098 Make_Function_Call (Loc, Name => New_Subp),
6099 Expressions => Parameter_Associations (N));
6100 else
6101 -- An Ada 2005 prefixed call to a primitive operation
6102 -- whose first parameter is the prefix. This prefix was
6103 -- prepended to the parameter list, which is actually a
6104 -- list of indexes. Remove the prefix in order to build
6105 -- the proper indexed component.
6107 Index_Node :=
6108 Make_Indexed_Component (Loc,
6109 Prefix =>
6110 Make_Function_Call (Loc,
6111 Name => New_Subp,
6112 Parameter_Associations =>
6113 New_List
6114 (Remove_Head (Parameter_Associations (N)))),
6115 Expressions => Parameter_Associations (N));
6116 end if;
6118 -- Preserve the parenthesis count of the node
6120 Set_Paren_Count (Index_Node, Paren_Count (N));
6122 -- Since we are correcting a node classification error made
6123 -- by the parser, we call Replace rather than Rewrite.
6125 Replace (N, Index_Node);
6127 Set_Etype (Prefix (N), Ret_Type);
6128 Set_Etype (N, Typ);
6129 Resolve_Indexed_Component (N, Typ);
6131 -- Annotate the tree by creating a call marker in case
6132 -- the original call is transformed by expansion. The call
6133 -- marker is automatically saved for later examination by
6134 -- the ABE Processing phase.
6136 Build_Call_Marker (Prefix (N));
6137 end if;
6138 end if;
6140 return;
6141 end;
6143 else
6144 -- If the called function is not declared in the main unit and it
6145 -- returns the limited view of type then use the available view (as
6146 -- is done in Try_Object_Operation) to prevent back-end confusion;
6147 -- for the function entity itself. The call must appear in a context
6148 -- where the nonlimited view is available. If the function entity is
6149 -- in the extended main unit then no action is needed, because the
6150 -- back end handles this case. In either case the type of the call
6151 -- is the nonlimited view.
6153 if From_Limited_With (Etype (Nam))
6154 and then Present (Available_View (Etype (Nam)))
6155 then
6156 Set_Etype (N, Available_View (Etype (Nam)));
6158 if not In_Extended_Main_Code_Unit (Nam) then
6159 Set_Etype (Nam, Available_View (Etype (Nam)));
6160 end if;
6162 else
6163 Set_Etype (N, Etype (Nam));
6164 end if;
6165 end if;
6167 -- In the case where the call is to an overloaded subprogram, Analyze
6168 -- calls Normalize_Actuals once per overloaded subprogram. Therefore in
6169 -- such a case Normalize_Actuals needs to be called once more to order
6170 -- the actuals correctly. Otherwise the call will have the ordering
6171 -- given by the last overloaded subprogram whether this is the correct
6172 -- one being called or not.
6174 if Is_Overloaded (Subp) then
6175 Normalize_Actuals (N, Nam, False, Norm_OK);
6176 pragma Assert (Norm_OK);
6177 end if;
6179 -- In any case, call is fully resolved now. Reset Overload flag, to
6180 -- prevent subsequent overload resolution if node is analyzed again
6182 Set_Is_Overloaded (Subp, False);
6183 Set_Is_Overloaded (N, False);
6185 -- A Ghost entity must appear in a specific context
6187 if Is_Ghost_Entity (Nam) and then Comes_From_Source (N) then
6188 Check_Ghost_Context (Nam, N);
6189 end if;
6191 -- If we are calling the current subprogram from immediately within its
6192 -- body, then that is the case where we can sometimes detect cases of
6193 -- infinite recursion statically. Do not try this in case restriction
6194 -- No_Recursion is in effect anyway, and do it only for source calls.
6196 if Comes_From_Source (N) then
6197 Scop := Current_Scope;
6199 -- Check violation of SPARK_05 restriction which does not permit
6200 -- a subprogram body to contain a call to the subprogram directly.
6202 if Restriction_Check_Required (SPARK_05)
6203 and then Same_Or_Aliased_Subprograms (Nam, Scop)
6204 then
6205 Check_SPARK_05_Restriction
6206 ("subprogram may not contain direct call to itself", N);
6207 end if;
6209 -- Issue warning for possible infinite recursion in the absence
6210 -- of the No_Recursion restriction.
6212 if Same_Or_Aliased_Subprograms (Nam, Scop)
6213 and then not Restriction_Active (No_Recursion)
6214 and then Check_Infinite_Recursion (N)
6215 then
6216 -- Here we detected and flagged an infinite recursion, so we do
6217 -- not need to test the case below for further warnings. Also we
6218 -- are all done if we now have a raise SE node.
6220 if Nkind (N) = N_Raise_Storage_Error then
6221 return;
6222 end if;
6224 -- If call is to immediately containing subprogram, then check for
6225 -- the case of a possible run-time detectable infinite recursion.
6227 else
6228 Scope_Loop : while Scop /= Standard_Standard loop
6229 if Same_Or_Aliased_Subprograms (Nam, Scop) then
6231 -- Although in general case, recursion is not statically
6232 -- checkable, the case of calling an immediately containing
6233 -- subprogram is easy to catch.
6235 Check_Restriction (No_Recursion, N);
6237 -- If the recursive call is to a parameterless subprogram,
6238 -- then even if we can't statically detect infinite
6239 -- recursion, this is pretty suspicious, and we output a
6240 -- warning. Furthermore, we will try later to detect some
6241 -- cases here at run time by expanding checking code (see
6242 -- Detect_Infinite_Recursion in package Exp_Ch6).
6244 -- If the recursive call is within a handler, do not emit a
6245 -- warning, because this is a common idiom: loop until input
6246 -- is correct, catch illegal input in handler and restart.
6248 if No (First_Formal (Nam))
6249 and then Etype (Nam) = Standard_Void_Type
6250 and then not Error_Posted (N)
6251 and then Nkind (Parent (N)) /= N_Exception_Handler
6252 then
6253 -- For the case of a procedure call. We give the message
6254 -- only if the call is the first statement in a sequence
6255 -- of statements, or if all previous statements are
6256 -- simple assignments. This is simply a heuristic to
6257 -- decrease false positives, without losing too many good
6258 -- warnings. The idea is that these previous statements
6259 -- may affect global variables the procedure depends on.
6260 -- We also exclude raise statements, that may arise from
6261 -- constraint checks and are probably unrelated to the
6262 -- intended control flow.
6264 if Nkind (N) = N_Procedure_Call_Statement
6265 and then Is_List_Member (N)
6266 then
6267 declare
6268 P : Node_Id;
6269 begin
6270 P := Prev (N);
6271 while Present (P) loop
6272 if not Nkind_In (P, N_Assignment_Statement,
6273 N_Raise_Constraint_Error)
6274 then
6275 exit Scope_Loop;
6276 end if;
6278 Prev (P);
6279 end loop;
6280 end;
6281 end if;
6283 -- Do not give warning if we are in a conditional context
6285 declare
6286 K : constant Node_Kind := Nkind (Parent (N));
6287 begin
6288 if (K = N_Loop_Statement
6289 and then Present (Iteration_Scheme (Parent (N))))
6290 or else K = N_If_Statement
6291 or else K = N_Elsif_Part
6292 or else K = N_Case_Statement_Alternative
6293 then
6294 exit Scope_Loop;
6295 end if;
6296 end;
6298 -- Here warning is to be issued
6300 Set_Has_Recursive_Call (Nam);
6301 Error_Msg_Warn := SPARK_Mode /= On;
6302 Error_Msg_N ("possible infinite recursion<<!", N);
6303 Error_Msg_N ("\Storage_Error ]<<!", N);
6304 end if;
6306 exit Scope_Loop;
6307 end if;
6309 Scop := Scope (Scop);
6310 end loop Scope_Loop;
6311 end if;
6312 end if;
6314 -- Check obsolescent reference to Ada.Characters.Handling subprogram
6316 Check_Obsolescent_2005_Entity (Nam, Subp);
6318 -- If subprogram name is a predefined operator, it was given in
6319 -- functional notation. Replace call node with operator node, so
6320 -- that actuals can be resolved appropriately.
6322 if Is_Predefined_Op (Nam) or else Ekind (Nam) = E_Operator then
6323 Make_Call_Into_Operator (N, Typ, Entity (Name (N)));
6324 return;
6326 elsif Present (Alias (Nam))
6327 and then Is_Predefined_Op (Alias (Nam))
6328 then
6329 Resolve_Actuals (N, Nam);
6330 Make_Call_Into_Operator (N, Typ, Alias (Nam));
6331 return;
6332 end if;
6334 -- Create a transient scope if the resulting type requires it
6336 -- There are several notable exceptions:
6338 -- a) In init procs, the transient scope overhead is not needed, and is
6339 -- even incorrect when the call is a nested initialization call for a
6340 -- component whose expansion may generate adjust calls. However, if the
6341 -- call is some other procedure call within an initialization procedure
6342 -- (for example a call to Create_Task in the init_proc of the task
6343 -- run-time record) a transient scope must be created around this call.
6345 -- b) Enumeration literal pseudo-calls need no transient scope
6347 -- c) Intrinsic subprograms (Unchecked_Conversion and source info
6348 -- functions) do not use the secondary stack even though the return
6349 -- type may be unconstrained.
6351 -- d) Calls to a build-in-place function, since such functions may
6352 -- allocate their result directly in a target object, and cases where
6353 -- the result does get allocated in the secondary stack are checked for
6354 -- within the specialized Exp_Ch6 procedures for expanding those
6355 -- build-in-place calls.
6357 -- e) Calls to inlinable expression functions do not use the secondary
6358 -- stack (since the call will be replaced by its returned object).
6360 -- f) If the subprogram is marked Inline_Always, then even if it returns
6361 -- an unconstrained type the call does not require use of the secondary
6362 -- stack. However, inlining will only take place if the body to inline
6363 -- is already present. It may not be available if e.g. the subprogram is
6364 -- declared in a child instance.
6366 -- If this is an initialization call for a type whose construction
6367 -- uses the secondary stack, and it is not a nested call to initialize
6368 -- a component, we do need to create a transient scope for it. We
6369 -- check for this by traversing the type in Check_Initialization_Call.
6371 if Is_Inlined (Nam)
6372 and then Has_Pragma_Inline (Nam)
6373 and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
6374 and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
6375 then
6376 null;
6378 elsif Ekind (Nam) = E_Enumeration_Literal
6379 or else Is_Build_In_Place_Function (Nam)
6380 or else Is_Intrinsic_Subprogram (Nam)
6381 or else Is_Inlinable_Expression_Function (Nam)
6382 then
6383 null;
6385 elsif Expander_Active
6386 and then Is_Type (Etype (Nam))
6387 and then Requires_Transient_Scope (Etype (Nam))
6388 and then
6389 (not Within_Init_Proc
6390 or else
6391 (not Is_Init_Proc (Nam) and then Ekind (Nam) /= E_Function))
6392 then
6393 Establish_Transient_Scope (N, Sec_Stack => True);
6395 -- If the call appears within the bounds of a loop, it will
6396 -- be rewritten and reanalyzed, nothing left to do here.
6398 if Nkind (N) /= N_Function_Call then
6399 return;
6400 end if;
6402 elsif Is_Init_Proc (Nam)
6403 and then not Within_Init_Proc
6404 then
6405 Check_Initialization_Call (N, Nam);
6406 end if;
6408 -- A protected function cannot be called within the definition of the
6409 -- enclosing protected type, unless it is part of a pre/postcondition
6410 -- on another protected operation. This may appear in the entry wrapper
6411 -- created for an entry with preconditions.
6413 if Is_Protected_Type (Scope (Nam))
6414 and then In_Open_Scopes (Scope (Nam))
6415 and then not Has_Completion (Scope (Nam))
6416 and then not In_Spec_Expression
6417 and then not Is_Entry_Wrapper (Current_Scope)
6418 then
6419 Error_Msg_NE
6420 ("& cannot be called before end of protected definition", N, Nam);
6421 end if;
6423 -- Propagate interpretation to actuals, and add default expressions
6424 -- where needed.
6426 if Present (First_Formal (Nam)) then
6427 Resolve_Actuals (N, Nam);
6429 -- Overloaded literals are rewritten as function calls, for purpose of
6430 -- resolution. After resolution, we can replace the call with the
6431 -- literal itself.
6433 elsif Ekind (Nam) = E_Enumeration_Literal then
6434 Copy_Node (Subp, N);
6435 Resolve_Entity_Name (N, Typ);
6437 -- Avoid validation, since it is a static function call
6439 Generate_Reference (Nam, Subp);
6440 return;
6441 end if;
6443 -- If the subprogram is not global, then kill all saved values and
6444 -- checks. This is a bit conservative, since in many cases we could do
6445 -- better, but it is not worth the effort. Similarly, we kill constant
6446 -- values. However we do not need to do this for internal entities
6447 -- (unless they are inherited user-defined subprograms), since they
6448 -- are not in the business of molesting local values.
6450 -- If the flag Suppress_Value_Tracking_On_Calls is set, then we also
6451 -- kill all checks and values for calls to global subprograms. This
6452 -- takes care of the case where an access to a local subprogram is
6453 -- taken, and could be passed directly or indirectly and then called
6454 -- from almost any context.
6456 -- Note: we do not do this step till after resolving the actuals. That
6457 -- way we still take advantage of the current value information while
6458 -- scanning the actuals.
6460 -- We suppress killing values if we are processing the nodes associated
6461 -- with N_Freeze_Entity nodes. Otherwise the declaration of a tagged
6462 -- type kills all the values as part of analyzing the code that
6463 -- initializes the dispatch tables.
6465 if Inside_Freezing_Actions = 0
6466 and then (not Is_Library_Level_Entity (Nam)
6467 or else Suppress_Value_Tracking_On_Call
6468 (Nearest_Dynamic_Scope (Current_Scope)))
6469 and then (Comes_From_Source (Nam)
6470 or else (Present (Alias (Nam))
6471 and then Comes_From_Source (Alias (Nam))))
6472 then
6473 Kill_Current_Values;
6474 end if;
6476 -- If we are warning about unread OUT parameters, this is the place to
6477 -- set Last_Assignment for OUT and IN OUT parameters. We have to do this
6478 -- after the above call to Kill_Current_Values (since that call clears
6479 -- the Last_Assignment field of all local variables).
6481 if (Warn_On_Modified_Unread or Warn_On_All_Unread_Out_Parameters)
6482 and then Comes_From_Source (N)
6483 and then In_Extended_Main_Source_Unit (N)
6484 then
6485 declare
6486 F : Entity_Id;
6487 A : Node_Id;
6489 begin
6490 F := First_Formal (Nam);
6491 A := First_Actual (N);
6492 while Present (F) and then Present (A) loop
6493 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
6494 and then Warn_On_Modified_As_Out_Parameter (F)
6495 and then Is_Entity_Name (A)
6496 and then Present (Entity (A))
6497 and then Comes_From_Source (N)
6498 and then Safe_To_Capture_Value (N, Entity (A))
6499 then
6500 Set_Last_Assignment (Entity (A), A);
6501 end if;
6503 Next_Formal (F);
6504 Next_Actual (A);
6505 end loop;
6506 end;
6507 end if;
6509 -- If the subprogram is a primitive operation, check whether or not
6510 -- it is a correct dispatching call.
6512 if Is_Overloadable (Nam)
6513 and then Is_Dispatching_Operation (Nam)
6514 then
6515 Check_Dispatching_Call (N);
6517 elsif Ekind (Nam) /= E_Subprogram_Type
6518 and then Is_Abstract_Subprogram (Nam)
6519 and then not In_Instance
6520 then
6521 Error_Msg_NE ("cannot call abstract subprogram &!", N, Nam);
6522 end if;
6524 -- If this is a dispatching call, generate the appropriate reference,
6525 -- for better source navigation in GPS.
6527 if Is_Overloadable (Nam)
6528 and then Present (Controlling_Argument (N))
6529 then
6530 Generate_Reference (Nam, Subp, 'R');
6532 -- Normal case, not a dispatching call: generate a call reference
6534 else
6535 Generate_Reference (Nam, Subp, 's');
6536 end if;
6538 if Is_Intrinsic_Subprogram (Nam) then
6539 Check_Intrinsic_Call (N);
6540 end if;
6542 -- Check for violation of restriction No_Specific_Termination_Handlers
6543 -- and warn on a potentially blocking call to Abort_Task.
6545 if Restriction_Check_Required (No_Specific_Termination_Handlers)
6546 and then (Is_RTE (Nam, RE_Set_Specific_Handler)
6547 or else
6548 Is_RTE (Nam, RE_Specific_Handler))
6549 then
6550 Check_Restriction (No_Specific_Termination_Handlers, N);
6552 elsif Is_RTE (Nam, RE_Abort_Task) then
6553 Check_Potentially_Blocking_Operation (N);
6554 end if;
6556 -- A call to Ada.Real_Time.Timing_Events.Set_Handler to set a relative
6557 -- timing event violates restriction No_Relative_Delay (AI-0211). We
6558 -- need to check the second argument to determine whether it is an
6559 -- absolute or relative timing event.
6561 if Restriction_Check_Required (No_Relative_Delay)
6562 and then Is_RTE (Nam, RE_Set_Handler)
6563 and then Is_RTE (Etype (Next_Actual (First_Actual (N))), RE_Time_Span)
6564 then
6565 Check_Restriction (No_Relative_Delay, N);
6566 end if;
6568 -- Issue an error for a call to an eliminated subprogram. This routine
6569 -- will not perform the check if the call appears within a default
6570 -- expression.
6572 Check_For_Eliminated_Subprogram (Subp, Nam);
6574 -- In formal mode, the primitive operations of a tagged type or type
6575 -- extension do not include functions that return the tagged type.
6577 if Nkind (N) = N_Function_Call
6578 and then Is_Tagged_Type (Etype (N))
6579 and then Is_Entity_Name (Name (N))
6580 and then Is_Inherited_Operation_For_Type (Entity (Name (N)), Etype (N))
6581 then
6582 Check_SPARK_05_Restriction ("function not inherited", N);
6583 end if;
6585 -- Implement rule in 12.5.1 (23.3/2): In an instance, if the actual is
6586 -- class-wide and the call dispatches on result in a context that does
6587 -- not provide a tag, the call raises Program_Error.
6589 if Nkind (N) = N_Function_Call
6590 and then In_Instance
6591 and then Is_Generic_Actual_Type (Typ)
6592 and then Is_Class_Wide_Type (Typ)
6593 and then Has_Controlling_Result (Nam)
6594 and then Nkind (Parent (N)) = N_Object_Declaration
6595 then
6596 -- Verify that none of the formals are controlling
6598 declare
6599 Call_OK : Boolean := False;
6600 F : Entity_Id;
6602 begin
6603 F := First_Formal (Nam);
6604 while Present (F) loop
6605 if Is_Controlling_Formal (F) then
6606 Call_OK := True;
6607 exit;
6608 end if;
6610 Next_Formal (F);
6611 end loop;
6613 if not Call_OK then
6614 Error_Msg_Warn := SPARK_Mode /= On;
6615 Error_Msg_N ("!cannot determine tag of result<<", N);
6616 Error_Msg_N ("\Program_Error [<<!", N);
6617 Insert_Action (N,
6618 Make_Raise_Program_Error (Sloc (N),
6619 Reason => PE_Explicit_Raise));
6620 end if;
6621 end;
6622 end if;
6624 -- Check for calling a function with OUT or IN OUT parameter when the
6625 -- calling context (us right now) is not Ada 2012, so does not allow
6626 -- OUT or IN OUT parameters in function calls. Functions declared in
6627 -- a predefined unit are OK, as they may be called indirectly from a
6628 -- user-declared instantiation.
6630 if Ada_Version < Ada_2012
6631 and then Ekind (Nam) = E_Function
6632 and then Has_Out_Or_In_Out_Parameter (Nam)
6633 and then not In_Predefined_Unit (Nam)
6634 then
6635 Error_Msg_NE ("& has at least one OUT or `IN OUT` parameter", N, Nam);
6636 Error_Msg_N ("\call to this function only allowed in Ada 2012", N);
6637 end if;
6639 -- Check the dimensions of the actuals in the call. For function calls,
6640 -- propagate the dimensions from the returned type to N.
6642 Analyze_Dimension_Call (N, Nam);
6644 -- All done, evaluate call and deal with elaboration issues
6646 Eval_Call (N);
6648 -- Annotate the tree by creating a call marker in case the original call
6649 -- is transformed by expansion. The call marker is automatically saved
6650 -- for later examination by the ABE Processing phase.
6652 Build_Call_Marker (N);
6654 -- In GNATprove mode, expansion is disabled, but we want to inline some
6655 -- subprograms to facilitate formal verification. Indirect calls through
6656 -- a subprogram type or within a generic cannot be inlined. Inlining is
6657 -- performed only for calls subject to SPARK_Mode on.
6659 if GNATprove_Mode
6660 and then SPARK_Mode = On
6661 and then Is_Overloadable (Nam)
6662 and then not Inside_A_Generic
6663 then
6664 Nam_UA := Ultimate_Alias (Nam);
6665 Nam_Decl := Unit_Declaration_Node (Nam_UA);
6667 if Nkind (Nam_Decl) = N_Subprogram_Declaration then
6668 Body_Id := Corresponding_Body (Nam_Decl);
6670 -- Nothing to do if the subprogram is not eligible for inlining in
6671 -- GNATprove mode, or inlining is disabled with switch -gnatdm
6673 if not Is_Inlined_Always (Nam_UA)
6674 or else not Can_Be_Inlined_In_GNATprove_Mode (Nam_UA, Body_Id)
6675 or else Debug_Flag_M
6676 then
6677 null;
6679 -- Calls cannot be inlined inside assertions, as GNATprove treats
6680 -- assertions as logic expressions. Only issue a message when the
6681 -- body has been seen, otherwise this leads to spurious messages
6682 -- on expression functions.
6684 elsif In_Assertion_Expr /= 0 then
6685 if Present (Body_Id) then
6686 Cannot_Inline
6687 ("cannot inline & (in assertion expression)?", N, Nam_UA);
6688 end if;
6690 -- Calls cannot be inlined inside default expressions
6692 elsif In_Default_Expr then
6693 Cannot_Inline
6694 ("cannot inline & (in default expression)?", N, Nam_UA);
6696 -- Inlining should not be performed during pre-analysis
6698 elsif Full_Analysis then
6700 -- Do not inline calls inside expression functions, as this
6701 -- would prevent interpreting them as logical formulas in
6702 -- GNATprove. Only issue a message when the body has been seen,
6703 -- otherwise this leads to spurious messages on callees that
6704 -- are themselves expression functions.
6706 if Present (Current_Subprogram)
6707 and then Is_Expression_Function_Or_Completion
6708 (Current_Subprogram)
6709 then
6710 if Present (Body_Id)
6711 and then Present (Body_To_Inline (Nam_Decl))
6712 then
6713 Cannot_Inline
6714 ("cannot inline & (inside expression function)?",
6715 N, Nam_UA);
6716 end if;
6718 -- With the one-pass inlining technique, a call cannot be
6719 -- inlined if the corresponding body has not been seen yet.
6721 elsif No (Body_Id) then
6722 Cannot_Inline
6723 ("cannot inline & (body not seen yet)?", N, Nam_UA);
6725 -- Nothing to do if there is no body to inline, indicating that
6726 -- the subprogram is not suitable for inlining in GNATprove
6727 -- mode.
6729 elsif No (Body_To_Inline (Nam_Decl)) then
6730 null;
6732 -- Calls cannot be inlined inside potentially unevaluated
6733 -- expressions, as this would create complex actions inside
6734 -- expressions, that are not handled by GNATprove.
6736 elsif Is_Potentially_Unevaluated (N) then
6737 Cannot_Inline
6738 ("cannot inline & (in potentially unevaluated context)?",
6739 N, Nam_UA);
6741 -- Do not inline calls which would possibly lead to missing a
6742 -- type conversion check on an input parameter.
6744 elsif not Call_Can_Be_Inlined_In_GNATprove_Mode (N, Nam) then
6745 Cannot_Inline
6746 ("cannot inline & (possible check on input parameters)?",
6747 N, Nam_UA);
6749 -- Otherwise, inline the call
6751 else
6752 Expand_Inlined_Call (N, Nam_UA, Nam);
6753 end if;
6754 end if;
6755 end if;
6756 end if;
6758 Mark_Use_Clauses (Subp);
6760 Warn_On_Overlapping_Actuals (Nam, N);
6761 end Resolve_Call;
6763 -----------------------------
6764 -- Resolve_Case_Expression --
6765 -----------------------------
6767 procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id) is
6768 Alt : Node_Id;
6769 Alt_Expr : Node_Id;
6770 Alt_Typ : Entity_Id;
6771 Is_Dyn : Boolean;
6773 begin
6774 Alt := First (Alternatives (N));
6775 while Present (Alt) loop
6776 Alt_Expr := Expression (Alt);
6778 if Error_Posted (Alt_Expr) then
6779 return;
6780 end if;
6782 Resolve (Alt_Expr, Typ);
6783 Alt_Typ := Etype (Alt_Expr);
6785 -- When the expression is of a scalar subtype different from the
6786 -- result subtype, then insert a conversion to ensure the generation
6787 -- of a constraint check.
6789 if Is_Scalar_Type (Alt_Typ) and then Alt_Typ /= Typ then
6790 Rewrite (Alt_Expr, Convert_To (Typ, Alt_Expr));
6791 Analyze_And_Resolve (Alt_Expr, Typ);
6792 end if;
6794 Next (Alt);
6795 end loop;
6797 -- Apply RM 4.5.7 (17/3): whether the expression is statically or
6798 -- dynamically tagged must be known statically.
6800 if Is_Tagged_Type (Typ) and then not Is_Class_Wide_Type (Typ) then
6801 Alt := First (Alternatives (N));
6802 Is_Dyn := Is_Dynamically_Tagged (Expression (Alt));
6804 while Present (Alt) loop
6805 if Is_Dynamically_Tagged (Expression (Alt)) /= Is_Dyn then
6806 Error_Msg_N
6807 ("all or none of the dependent expressions can be "
6808 & "dynamically tagged", N);
6809 end if;
6811 Next (Alt);
6812 end loop;
6813 end if;
6815 Set_Etype (N, Typ);
6816 Eval_Case_Expression (N);
6817 Analyze_Dimension (N);
6818 end Resolve_Case_Expression;
6820 -------------------------------
6821 -- Resolve_Character_Literal --
6822 -------------------------------
6824 procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id) is
6825 B_Typ : constant Entity_Id := Base_Type (Typ);
6826 C : Entity_Id;
6828 begin
6829 -- Verify that the character does belong to the type of the context
6831 Set_Etype (N, B_Typ);
6832 Eval_Character_Literal (N);
6834 -- Wide_Wide_Character literals must always be defined, since the set
6835 -- of wide wide character literals is complete, i.e. if a character
6836 -- literal is accepted by the parser, then it is OK for wide wide
6837 -- character (out of range character literals are rejected).
6839 if Root_Type (B_Typ) = Standard_Wide_Wide_Character then
6840 return;
6842 -- Always accept character literal for type Any_Character, which
6843 -- occurs in error situations and in comparisons of literals, both
6844 -- of which should accept all literals.
6846 elsif B_Typ = Any_Character then
6847 return;
6849 -- For Standard.Character or a type derived from it, check that the
6850 -- literal is in range.
6852 elsif Root_Type (B_Typ) = Standard_Character then
6853 if In_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6854 return;
6855 end if;
6857 -- For Standard.Wide_Character or a type derived from it, check that the
6858 -- literal is in range.
6860 elsif Root_Type (B_Typ) = Standard_Wide_Character then
6861 if In_Wide_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6862 return;
6863 end if;
6865 -- If the entity is already set, this has already been resolved in a
6866 -- generic context, or comes from expansion. Nothing else to do.
6868 elsif Present (Entity (N)) then
6869 return;
6871 -- Otherwise we have a user defined character type, and we can use the
6872 -- standard visibility mechanisms to locate the referenced entity.
6874 else
6875 C := Current_Entity (N);
6876 while Present (C) loop
6877 if Etype (C) = B_Typ then
6878 Set_Entity_With_Checks (N, C);
6879 Generate_Reference (C, N);
6880 return;
6881 end if;
6883 C := Homonym (C);
6884 end loop;
6885 end if;
6887 -- If we fall through, then the literal does not match any of the
6888 -- entries of the enumeration type. This isn't just a constraint error
6889 -- situation, it is an illegality (see RM 4.2).
6891 Error_Msg_NE
6892 ("character not defined for }", N, First_Subtype (B_Typ));
6893 end Resolve_Character_Literal;
6895 ---------------------------
6896 -- Resolve_Comparison_Op --
6897 ---------------------------
6899 -- Context requires a boolean type, and plays no role in resolution.
6900 -- Processing identical to that for equality operators. The result type is
6901 -- the base type, which matters when pathological subtypes of booleans with
6902 -- limited ranges are used.
6904 procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id) is
6905 L : constant Node_Id := Left_Opnd (N);
6906 R : constant Node_Id := Right_Opnd (N);
6907 T : Entity_Id;
6909 begin
6910 -- If this is an intrinsic operation which is not predefined, use the
6911 -- types of its declared arguments to resolve the possibly overloaded
6912 -- operands. Otherwise the operands are unambiguous and specify the
6913 -- expected type.
6915 if Scope (Entity (N)) /= Standard_Standard then
6916 T := Etype (First_Entity (Entity (N)));
6918 else
6919 T := Find_Unique_Type (L, R);
6921 if T = Any_Fixed then
6922 T := Unique_Fixed_Point_Type (L);
6923 end if;
6924 end if;
6926 Set_Etype (N, Base_Type (Typ));
6927 Generate_Reference (T, N, ' ');
6929 -- Skip remaining processing if already set to Any_Type
6931 if T = Any_Type then
6932 return;
6933 end if;
6935 -- Deal with other error cases
6937 if T = Any_String or else
6938 T = Any_Composite or else
6939 T = Any_Character
6940 then
6941 if T = Any_Character then
6942 Ambiguous_Character (L);
6943 else
6944 Error_Msg_N ("ambiguous operands for comparison", N);
6945 end if;
6947 Set_Etype (N, Any_Type);
6948 return;
6949 end if;
6951 -- Resolve the operands if types OK
6953 Resolve (L, T);
6954 Resolve (R, T);
6955 Check_Unset_Reference (L);
6956 Check_Unset_Reference (R);
6957 Generate_Operator_Reference (N, T);
6958 Check_Low_Bound_Tested (N);
6960 -- In SPARK, ordering operators <, <=, >, >= are not defined for Boolean
6961 -- types or array types except String.
6963 if Is_Boolean_Type (T) then
6964 Check_SPARK_05_Restriction
6965 ("comparison is not defined on Boolean type", N);
6967 elsif Is_Array_Type (T)
6968 and then Base_Type (T) /= Standard_String
6969 then
6970 Check_SPARK_05_Restriction
6971 ("comparison is not defined on array types other than String", N);
6972 end if;
6974 -- Check comparison on unordered enumeration
6976 if Bad_Unordered_Enumeration_Reference (N, Etype (L)) then
6977 Error_Msg_Sloc := Sloc (Etype (L));
6978 Error_Msg_NE
6979 ("comparison on unordered enumeration type& declared#?U?",
6980 N, Etype (L));
6981 end if;
6983 Analyze_Dimension (N);
6985 -- Evaluate the relation (note we do this after the above check since
6986 -- this Eval call may change N to True/False. Skip this evaluation
6987 -- inside assertions, in order to keep assertions as written by users
6988 -- for tools that rely on these, e.g. GNATprove for loop invariants.
6989 -- Except evaluation is still performed even inside assertions for
6990 -- comparisons between values of universal type, which are useless
6991 -- for static analysis tools, and not supported even by GNATprove.
6993 if In_Assertion_Expr = 0
6994 or else (Is_Universal_Numeric_Type (Etype (L))
6995 and then
6996 Is_Universal_Numeric_Type (Etype (R)))
6997 then
6998 Eval_Relational_Op (N);
6999 end if;
7000 end Resolve_Comparison_Op;
7002 -----------------------------------------
7003 -- Resolve_Discrete_Subtype_Indication --
7004 -----------------------------------------
7006 procedure Resolve_Discrete_Subtype_Indication
7007 (N : Node_Id;
7008 Typ : Entity_Id)
7010 R : Node_Id;
7011 S : Entity_Id;
7013 begin
7014 Analyze (Subtype_Mark (N));
7015 S := Entity (Subtype_Mark (N));
7017 if Nkind (Constraint (N)) /= N_Range_Constraint then
7018 Error_Msg_N ("expect range constraint for discrete type", N);
7019 Set_Etype (N, Any_Type);
7021 else
7022 R := Range_Expression (Constraint (N));
7024 if R = Error then
7025 return;
7026 end if;
7028 Analyze (R);
7030 if Base_Type (S) /= Base_Type (Typ) then
7031 Error_Msg_NE
7032 ("expect subtype of }", N, First_Subtype (Typ));
7034 -- Rewrite the constraint as a range of Typ
7035 -- to allow compilation to proceed further.
7037 Set_Etype (N, Typ);
7038 Rewrite (Low_Bound (R),
7039 Make_Attribute_Reference (Sloc (Low_Bound (R)),
7040 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
7041 Attribute_Name => Name_First));
7042 Rewrite (High_Bound (R),
7043 Make_Attribute_Reference (Sloc (High_Bound (R)),
7044 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
7045 Attribute_Name => Name_First));
7047 else
7048 Resolve (R, Typ);
7049 Set_Etype (N, Etype (R));
7051 -- Additionally, we must check that the bounds are compatible
7052 -- with the given subtype, which might be different from the
7053 -- type of the context.
7055 Apply_Range_Check (R, S);
7057 -- ??? If the above check statically detects a Constraint_Error
7058 -- it replaces the offending bound(s) of the range R with a
7059 -- Constraint_Error node. When the itype which uses these bounds
7060 -- is frozen the resulting call to Duplicate_Subexpr generates
7061 -- a new temporary for the bounds.
7063 -- Unfortunately there are other itypes that are also made depend
7064 -- on these bounds, so when Duplicate_Subexpr is called they get
7065 -- a forward reference to the newly created temporaries and Gigi
7066 -- aborts on such forward references. This is probably sign of a
7067 -- more fundamental problem somewhere else in either the order of
7068 -- itype freezing or the way certain itypes are constructed.
7070 -- To get around this problem we call Remove_Side_Effects right
7071 -- away if either bounds of R are a Constraint_Error.
7073 declare
7074 L : constant Node_Id := Low_Bound (R);
7075 H : constant Node_Id := High_Bound (R);
7077 begin
7078 if Nkind (L) = N_Raise_Constraint_Error then
7079 Remove_Side_Effects (L);
7080 end if;
7082 if Nkind (H) = N_Raise_Constraint_Error then
7083 Remove_Side_Effects (H);
7084 end if;
7085 end;
7087 Check_Unset_Reference (Low_Bound (R));
7088 Check_Unset_Reference (High_Bound (R));
7089 end if;
7090 end if;
7091 end Resolve_Discrete_Subtype_Indication;
7093 -------------------------
7094 -- Resolve_Entity_Name --
7095 -------------------------
7097 -- Used to resolve identifiers and expanded names
7099 procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id) is
7100 function Is_Assignment_Or_Object_Expression
7101 (Context : Node_Id;
7102 Expr : Node_Id) return Boolean;
7103 -- Determine whether node Context denotes an assignment statement or an
7104 -- object declaration whose expression is node Expr.
7106 ----------------------------------------
7107 -- Is_Assignment_Or_Object_Expression --
7108 ----------------------------------------
7110 function Is_Assignment_Or_Object_Expression
7111 (Context : Node_Id;
7112 Expr : Node_Id) return Boolean
7114 begin
7115 if Nkind_In (Context, N_Assignment_Statement,
7116 N_Object_Declaration)
7117 and then Expression (Context) = Expr
7118 then
7119 return True;
7121 -- Check whether a construct that yields a name is the expression of
7122 -- an assignment statement or an object declaration.
7124 elsif (Nkind_In (Context, N_Attribute_Reference,
7125 N_Explicit_Dereference,
7126 N_Indexed_Component,
7127 N_Selected_Component,
7128 N_Slice)
7129 and then Prefix (Context) = Expr)
7130 or else
7131 (Nkind_In (Context, N_Type_Conversion,
7132 N_Unchecked_Type_Conversion)
7133 and then Expression (Context) = Expr)
7134 then
7135 return
7136 Is_Assignment_Or_Object_Expression
7137 (Context => Parent (Context),
7138 Expr => Context);
7140 -- Otherwise the context is not an assignment statement or an object
7141 -- declaration.
7143 else
7144 return False;
7145 end if;
7146 end Is_Assignment_Or_Object_Expression;
7148 -- Local variables
7150 E : constant Entity_Id := Entity (N);
7151 Par : Node_Id;
7153 -- Start of processing for Resolve_Entity_Name
7155 begin
7156 -- If garbage from errors, set to Any_Type and return
7158 if No (E) and then Total_Errors_Detected /= 0 then
7159 Set_Etype (N, Any_Type);
7160 return;
7161 end if;
7163 -- Replace named numbers by corresponding literals. Note that this is
7164 -- the one case where Resolve_Entity_Name must reset the Etype, since
7165 -- it is currently marked as universal.
7167 if Ekind (E) = E_Named_Integer then
7168 Set_Etype (N, Typ);
7169 Eval_Named_Integer (N);
7171 elsif Ekind (E) = E_Named_Real then
7172 Set_Etype (N, Typ);
7173 Eval_Named_Real (N);
7175 -- For enumeration literals, we need to make sure that a proper style
7176 -- check is done, since such literals are overloaded, and thus we did
7177 -- not do a style check during the first phase of analysis.
7179 elsif Ekind (E) = E_Enumeration_Literal then
7180 Set_Entity_With_Checks (N, E);
7181 Eval_Entity_Name (N);
7183 -- Case of (sub)type name appearing in a context where an expression
7184 -- is expected. This is legal if occurrence is a current instance.
7185 -- See RM 8.6 (17/3).
7187 elsif Is_Type (E) then
7188 if Is_Current_Instance (N) then
7189 null;
7191 -- Any other use is an error
7193 else
7194 Error_Msg_N
7195 ("invalid use of subtype mark in expression or call", N);
7196 end if;
7198 -- Check discriminant use if entity is discriminant in current scope,
7199 -- i.e. discriminant of record or concurrent type currently being
7200 -- analyzed. Uses in corresponding body are unrestricted.
7202 elsif Ekind (E) = E_Discriminant
7203 and then Scope (E) = Current_Scope
7204 and then not Has_Completion (Current_Scope)
7205 then
7206 Check_Discriminant_Use (N);
7208 -- A parameterless generic function cannot appear in a context that
7209 -- requires resolution.
7211 elsif Ekind (E) = E_Generic_Function then
7212 Error_Msg_N ("illegal use of generic function", N);
7214 -- In Ada 83 an OUT parameter cannot be read
7216 elsif Ekind (E) = E_Out_Parameter
7217 and then (Nkind (Parent (N)) in N_Op
7218 or else Nkind (Parent (N)) = N_Explicit_Dereference
7219 or else Is_Assignment_Or_Object_Expression
7220 (Context => Parent (N),
7221 Expr => N))
7222 then
7223 if Ada_Version = Ada_83 then
7224 Error_Msg_N ("(Ada 83) illegal reading of out parameter", N);
7225 end if;
7227 -- In all other cases, just do the possible static evaluation
7229 else
7230 -- A deferred constant that appears in an expression must have a
7231 -- completion, unless it has been removed by in-place expansion of
7232 -- an aggregate. A constant that is a renaming does not need
7233 -- initialization.
7235 if Ekind (E) = E_Constant
7236 and then Comes_From_Source (E)
7237 and then No (Constant_Value (E))
7238 and then Is_Frozen (Etype (E))
7239 and then not In_Spec_Expression
7240 and then not Is_Imported (E)
7241 and then Nkind (Parent (E)) /= N_Object_Renaming_Declaration
7242 then
7243 if No_Initialization (Parent (E))
7244 or else (Present (Full_View (E))
7245 and then No_Initialization (Parent (Full_View (E))))
7246 then
7247 null;
7248 else
7249 Error_Msg_N
7250 ("deferred constant is frozen before completion", N);
7251 end if;
7252 end if;
7254 Eval_Entity_Name (N);
7255 end if;
7257 Par := Parent (N);
7259 -- When the entity appears in a parameter association, retrieve the
7260 -- related subprogram call.
7262 if Nkind (Par) = N_Parameter_Association then
7263 Par := Parent (Par);
7264 end if;
7266 if Comes_From_Source (N) then
7268 -- The following checks are only relevant when SPARK_Mode is on as
7269 -- they are not standard Ada legality rules.
7271 if SPARK_Mode = On then
7273 -- An effectively volatile object subject to enabled properties
7274 -- Async_Writers or Effective_Reads must appear in non-interfering
7275 -- context (SPARK RM 7.1.3(12)).
7277 if Is_Object (E)
7278 and then Is_Effectively_Volatile (E)
7279 and then (Async_Writers_Enabled (E)
7280 or else Effective_Reads_Enabled (E))
7281 and then not Is_OK_Volatile_Context (Par, N)
7282 then
7283 SPARK_Msg_N
7284 ("volatile object cannot appear in this context "
7285 & "(SPARK RM 7.1.3(12))", N);
7286 end if;
7288 -- The variable may eventually become a constituent of a single
7289 -- protected/task type. Record the reference now and verify its
7290 -- legality when analyzing the contract of the variable
7291 -- (SPARK RM 9.3).
7293 if Ekind (E) = E_Variable then
7294 Record_Possible_Part_Of_Reference (E, N);
7295 end if;
7296 end if;
7298 -- A Ghost entity must appear in a specific context
7300 if Is_Ghost_Entity (E) then
7301 Check_Ghost_Context (E, N);
7302 end if;
7303 end if;
7305 Mark_Use_Clauses (E);
7306 end Resolve_Entity_Name;
7308 -------------------
7309 -- Resolve_Entry --
7310 -------------------
7312 procedure Resolve_Entry (Entry_Name : Node_Id) is
7313 Loc : constant Source_Ptr := Sloc (Entry_Name);
7314 Nam : Entity_Id;
7315 New_N : Node_Id;
7316 S : Entity_Id;
7317 Tsk : Entity_Id;
7318 E_Name : Node_Id;
7319 Index : Node_Id;
7321 function Actual_Index_Type (E : Entity_Id) return Entity_Id;
7322 -- If the bounds of the entry family being called depend on task
7323 -- discriminants, build a new index subtype where a discriminant is
7324 -- replaced with the value of the discriminant of the target task.
7325 -- The target task is the prefix of the entry name in the call.
7327 -----------------------
7328 -- Actual_Index_Type --
7329 -----------------------
7331 function Actual_Index_Type (E : Entity_Id) return Entity_Id is
7332 Typ : constant Entity_Id := Entry_Index_Type (E);
7333 Tsk : constant Entity_Id := Scope (E);
7334 Lo : constant Node_Id := Type_Low_Bound (Typ);
7335 Hi : constant Node_Id := Type_High_Bound (Typ);
7336 New_T : Entity_Id;
7338 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id;
7339 -- If the bound is given by a discriminant, replace with a reference
7340 -- to the discriminant of the same name in the target task. If the
7341 -- entry name is the target of a requeue statement and the entry is
7342 -- in the current protected object, the bound to be used is the
7343 -- discriminal of the object (see Apply_Range_Checks for details of
7344 -- the transformation).
7346 -----------------------------
7347 -- Actual_Discriminant_Ref --
7348 -----------------------------
7350 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id is
7351 Typ : constant Entity_Id := Etype (Bound);
7352 Ref : Node_Id;
7354 begin
7355 Remove_Side_Effects (Bound);
7357 if not Is_Entity_Name (Bound)
7358 or else Ekind (Entity (Bound)) /= E_Discriminant
7359 then
7360 return Bound;
7362 elsif Is_Protected_Type (Tsk)
7363 and then In_Open_Scopes (Tsk)
7364 and then Nkind (Parent (Entry_Name)) = N_Requeue_Statement
7365 then
7366 -- Note: here Bound denotes a discriminant of the corresponding
7367 -- record type tskV, whose discriminal is a formal of the
7368 -- init-proc tskVIP. What we want is the body discriminal,
7369 -- which is associated to the discriminant of the original
7370 -- concurrent type tsk.
7372 return New_Occurrence_Of
7373 (Find_Body_Discriminal (Entity (Bound)), Loc);
7375 else
7376 Ref :=
7377 Make_Selected_Component (Loc,
7378 Prefix => New_Copy_Tree (Prefix (Prefix (Entry_Name))),
7379 Selector_Name => New_Occurrence_Of (Entity (Bound), Loc));
7380 Analyze (Ref);
7381 Resolve (Ref, Typ);
7382 return Ref;
7383 end if;
7384 end Actual_Discriminant_Ref;
7386 -- Start of processing for Actual_Index_Type
7388 begin
7389 if not Has_Discriminants (Tsk)
7390 or else (not Is_Entity_Name (Lo) and then not Is_Entity_Name (Hi))
7391 then
7392 return Entry_Index_Type (E);
7394 else
7395 New_T := Create_Itype (Ekind (Typ), Parent (Entry_Name));
7396 Set_Etype (New_T, Base_Type (Typ));
7397 Set_Size_Info (New_T, Typ);
7398 Set_RM_Size (New_T, RM_Size (Typ));
7399 Set_Scalar_Range (New_T,
7400 Make_Range (Sloc (Entry_Name),
7401 Low_Bound => Actual_Discriminant_Ref (Lo),
7402 High_Bound => Actual_Discriminant_Ref (Hi)));
7404 return New_T;
7405 end if;
7406 end Actual_Index_Type;
7408 -- Start of processing for Resolve_Entry
7410 begin
7411 -- Find name of entry being called, and resolve prefix of name with its
7412 -- own type. The prefix can be overloaded, and the name and signature of
7413 -- the entry must be taken into account.
7415 if Nkind (Entry_Name) = N_Indexed_Component then
7417 -- Case of dealing with entry family within the current tasks
7419 E_Name := Prefix (Entry_Name);
7421 else
7422 E_Name := Entry_Name;
7423 end if;
7425 if Is_Entity_Name (E_Name) then
7427 -- Entry call to an entry (or entry family) in the current task. This
7428 -- is legal even though the task will deadlock. Rewrite as call to
7429 -- current task.
7431 -- This can also be a call to an entry in an enclosing task. If this
7432 -- is a single task, we have to retrieve its name, because the scope
7433 -- of the entry is the task type, not the object. If the enclosing
7434 -- task is a task type, the identity of the task is given by its own
7435 -- self variable.
7437 -- Finally this can be a requeue on an entry of the same task or
7438 -- protected object.
7440 S := Scope (Entity (E_Name));
7442 for J in reverse 0 .. Scope_Stack.Last loop
7443 if Is_Task_Type (Scope_Stack.Table (J).Entity)
7444 and then not Comes_From_Source (S)
7445 then
7446 -- S is an enclosing task or protected object. The concurrent
7447 -- declaration has been converted into a type declaration, and
7448 -- the object itself has an object declaration that follows
7449 -- the type in the same declarative part.
7451 Tsk := Next_Entity (S);
7452 while Etype (Tsk) /= S loop
7453 Next_Entity (Tsk);
7454 end loop;
7456 S := Tsk;
7457 exit;
7459 elsif S = Scope_Stack.Table (J).Entity then
7461 -- Call to current task. Will be transformed into call to Self
7463 exit;
7465 end if;
7466 end loop;
7468 New_N :=
7469 Make_Selected_Component (Loc,
7470 Prefix => New_Occurrence_Of (S, Loc),
7471 Selector_Name =>
7472 New_Occurrence_Of (Entity (E_Name), Loc));
7473 Rewrite (E_Name, New_N);
7474 Analyze (E_Name);
7476 elsif Nkind (Entry_Name) = N_Selected_Component
7477 and then Is_Overloaded (Prefix (Entry_Name))
7478 then
7479 -- Use the entry name (which must be unique at this point) to find
7480 -- the prefix that returns the corresponding task/protected type.
7482 declare
7483 Pref : constant Node_Id := Prefix (Entry_Name);
7484 Ent : constant Entity_Id := Entity (Selector_Name (Entry_Name));
7485 I : Interp_Index;
7486 It : Interp;
7488 begin
7489 Get_First_Interp (Pref, I, It);
7490 while Present (It.Typ) loop
7491 if Scope (Ent) = It.Typ then
7492 Set_Etype (Pref, It.Typ);
7493 exit;
7494 end if;
7496 Get_Next_Interp (I, It);
7497 end loop;
7498 end;
7499 end if;
7501 if Nkind (Entry_Name) = N_Selected_Component then
7502 Resolve (Prefix (Entry_Name));
7504 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7505 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7506 Resolve (Prefix (Prefix (Entry_Name)));
7507 Index := First (Expressions (Entry_Name));
7508 Resolve (Index, Entry_Index_Type (Nam));
7510 -- Generate a reference for the index when it denotes an entity
7512 if Is_Entity_Name (Index) then
7513 Generate_Reference (Entity (Index), Nam);
7514 end if;
7516 -- Up to this point the expression could have been the actual in a
7517 -- simple entry call, and be given by a named association.
7519 if Nkind (Index) = N_Parameter_Association then
7520 Error_Msg_N ("expect expression for entry index", Index);
7521 else
7522 Apply_Range_Check (Index, Actual_Index_Type (Nam));
7523 end if;
7524 end if;
7525 end Resolve_Entry;
7527 ------------------------
7528 -- Resolve_Entry_Call --
7529 ------------------------
7531 procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id) is
7532 Entry_Name : constant Node_Id := Name (N);
7533 Loc : constant Source_Ptr := Sloc (Entry_Name);
7535 Nam : Entity_Id;
7536 Norm_OK : Boolean;
7537 Obj : Node_Id;
7538 Was_Over : Boolean;
7540 begin
7541 -- We kill all checks here, because it does not seem worth the effort to
7542 -- do anything better, an entry call is a big operation.
7544 Kill_All_Checks;
7546 -- Processing of the name is similar for entry calls and protected
7547 -- operation calls. Once the entity is determined, we can complete
7548 -- the resolution of the actuals.
7550 -- The selector may be overloaded, in the case of a protected object
7551 -- with overloaded functions. The type of the context is used for
7552 -- resolution.
7554 if Nkind (Entry_Name) = N_Selected_Component
7555 and then Is_Overloaded (Selector_Name (Entry_Name))
7556 and then Typ /= Standard_Void_Type
7557 then
7558 declare
7559 I : Interp_Index;
7560 It : Interp;
7562 begin
7563 Get_First_Interp (Selector_Name (Entry_Name), I, It);
7564 while Present (It.Typ) loop
7565 if Covers (Typ, It.Typ) then
7566 Set_Entity (Selector_Name (Entry_Name), It.Nam);
7567 Set_Etype (Entry_Name, It.Typ);
7569 Generate_Reference (It.Typ, N, ' ');
7570 end if;
7572 Get_Next_Interp (I, It);
7573 end loop;
7574 end;
7575 end if;
7577 Resolve_Entry (Entry_Name);
7579 if Nkind (Entry_Name) = N_Selected_Component then
7581 -- Simple entry or protected operation call
7583 Nam := Entity (Selector_Name (Entry_Name));
7584 Obj := Prefix (Entry_Name);
7586 if Is_Subprogram (Nam) then
7587 Check_For_Eliminated_Subprogram (Entry_Name, Nam);
7588 end if;
7590 Was_Over := Is_Overloaded (Selector_Name (Entry_Name));
7592 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7594 -- Call to member of entry family
7596 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7597 Obj := Prefix (Prefix (Entry_Name));
7598 Was_Over := Is_Overloaded (Selector_Name (Prefix (Entry_Name)));
7599 end if;
7601 -- We cannot in general check the maximum depth of protected entry calls
7602 -- at compile time. But we can tell that any protected entry call at all
7603 -- violates a specified nesting depth of zero.
7605 if Is_Protected_Type (Scope (Nam)) then
7606 Check_Restriction (Max_Entry_Queue_Length, N);
7607 end if;
7609 -- Use context type to disambiguate a protected function that can be
7610 -- called without actuals and that returns an array type, and where the
7611 -- argument list may be an indexing of the returned value.
7613 if Ekind (Nam) = E_Function
7614 and then Needs_No_Actuals (Nam)
7615 and then Present (Parameter_Associations (N))
7616 and then
7617 ((Is_Array_Type (Etype (Nam))
7618 and then Covers (Typ, Component_Type (Etype (Nam))))
7620 or else (Is_Access_Type (Etype (Nam))
7621 and then Is_Array_Type (Designated_Type (Etype (Nam)))
7622 and then
7623 Covers
7624 (Typ,
7625 Component_Type (Designated_Type (Etype (Nam))))))
7626 then
7627 declare
7628 Index_Node : Node_Id;
7630 begin
7631 Index_Node :=
7632 Make_Indexed_Component (Loc,
7633 Prefix =>
7634 Make_Function_Call (Loc, Name => Relocate_Node (Entry_Name)),
7635 Expressions => Parameter_Associations (N));
7637 -- Since we are correcting a node classification error made by the
7638 -- parser, we call Replace rather than Rewrite.
7640 Replace (N, Index_Node);
7641 Set_Etype (Prefix (N), Etype (Nam));
7642 Set_Etype (N, Typ);
7643 Resolve_Indexed_Component (N, Typ);
7644 return;
7645 end;
7646 end if;
7648 if Ekind_In (Nam, E_Entry, E_Entry_Family)
7649 and then Present (Contract_Wrapper (Nam))
7650 and then Current_Scope /= Contract_Wrapper (Nam)
7651 then
7652 -- Note the entity being called before rewriting the call, so that
7653 -- it appears used at this point.
7655 Generate_Reference (Nam, Entry_Name, 'r');
7657 -- Rewrite as call to the precondition wrapper, adding the task
7658 -- object to the list of actuals. If the call is to a member of an
7659 -- entry family, include the index as well.
7661 declare
7662 New_Call : Node_Id;
7663 New_Actuals : List_Id;
7665 begin
7666 New_Actuals := New_List (Obj);
7668 if Nkind (Entry_Name) = N_Indexed_Component then
7669 Append_To (New_Actuals,
7670 New_Copy_Tree (First (Expressions (Entry_Name))));
7671 end if;
7673 Append_List (Parameter_Associations (N), New_Actuals);
7674 New_Call :=
7675 Make_Procedure_Call_Statement (Loc,
7676 Name =>
7677 New_Occurrence_Of (Contract_Wrapper (Nam), Loc),
7678 Parameter_Associations => New_Actuals);
7679 Rewrite (N, New_Call);
7681 -- Preanalyze and resolve new call. Current procedure is called
7682 -- from Resolve_Call, after which expansion will take place.
7684 Preanalyze_And_Resolve (N);
7685 return;
7686 end;
7687 end if;
7689 -- The operation name may have been overloaded. Order the actuals
7690 -- according to the formals of the resolved entity, and set the return
7691 -- type to that of the operation.
7693 if Was_Over then
7694 Normalize_Actuals (N, Nam, False, Norm_OK);
7695 pragma Assert (Norm_OK);
7696 Set_Etype (N, Etype (Nam));
7698 -- Reset the Is_Overloaded flag, since resolution is now completed
7700 -- Simple entry call
7702 if Nkind (Entry_Name) = N_Selected_Component then
7703 Set_Is_Overloaded (Selector_Name (Entry_Name), False);
7705 -- Call to a member of an entry family
7707 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7708 Set_Is_Overloaded (Selector_Name (Prefix (Entry_Name)), False);
7709 end if;
7710 end if;
7712 Resolve_Actuals (N, Nam);
7713 Check_Internal_Protected_Use (N, Nam);
7715 -- Create a call reference to the entry
7717 Generate_Reference (Nam, Entry_Name, 's');
7719 if Ekind_In (Nam, E_Entry, E_Entry_Family) then
7720 Check_Potentially_Blocking_Operation (N);
7721 end if;
7723 -- Verify that a procedure call cannot masquerade as an entry
7724 -- call where an entry call is expected.
7726 if Ekind (Nam) = E_Procedure then
7727 if Nkind (Parent (N)) = N_Entry_Call_Alternative
7728 and then N = Entry_Call_Statement (Parent (N))
7729 then
7730 Error_Msg_N ("entry call required in select statement", N);
7732 elsif Nkind (Parent (N)) = N_Triggering_Alternative
7733 and then N = Triggering_Statement (Parent (N))
7734 then
7735 Error_Msg_N ("triggering statement cannot be procedure call", N);
7737 elsif Ekind (Scope (Nam)) = E_Task_Type
7738 and then not In_Open_Scopes (Scope (Nam))
7739 then
7740 Error_Msg_N ("task has no entry with this name", Entry_Name);
7741 end if;
7742 end if;
7744 -- After resolution, entry calls and protected procedure calls are
7745 -- changed into entry calls, for expansion. The structure of the node
7746 -- does not change, so it can safely be done in place. Protected
7747 -- function calls must keep their structure because they are
7748 -- subexpressions.
7750 if Ekind (Nam) /= E_Function then
7752 -- A protected operation that is not a function may modify the
7753 -- corresponding object, and cannot apply to a constant. If this
7754 -- is an internal call, the prefix is the type itself.
7756 if Is_Protected_Type (Scope (Nam))
7757 and then not Is_Variable (Obj)
7758 and then (not Is_Entity_Name (Obj)
7759 or else not Is_Type (Entity (Obj)))
7760 then
7761 Error_Msg_N
7762 ("prefix of protected procedure or entry call must be variable",
7763 Entry_Name);
7764 end if;
7766 declare
7767 Entry_Call : Node_Id;
7769 begin
7770 Entry_Call :=
7771 Make_Entry_Call_Statement (Loc,
7772 Name => Entry_Name,
7773 Parameter_Associations => Parameter_Associations (N));
7775 -- Inherit relevant attributes from the original call
7777 Set_First_Named_Actual
7778 (Entry_Call, First_Named_Actual (N));
7780 Set_Is_Elaboration_Checks_OK_Node
7781 (Entry_Call, Is_Elaboration_Checks_OK_Node (N));
7783 Set_Is_SPARK_Mode_On_Node
7784 (Entry_Call, Is_SPARK_Mode_On_Node (N));
7786 Rewrite (N, Entry_Call);
7787 Set_Analyzed (N, True);
7788 end;
7790 -- Protected functions can return on the secondary stack, in which
7791 -- case we must trigger the transient scope mechanism.
7793 elsif Expander_Active
7794 and then Requires_Transient_Scope (Etype (Nam))
7795 then
7796 Establish_Transient_Scope (N, Sec_Stack => True);
7797 end if;
7798 end Resolve_Entry_Call;
7800 -------------------------
7801 -- Resolve_Equality_Op --
7802 -------------------------
7804 -- Both arguments must have the same type, and the boolean context does
7805 -- not participate in the resolution. The first pass verifies that the
7806 -- interpretation is not ambiguous, and the type of the left argument is
7807 -- correctly set, or is Any_Type in case of ambiguity. If both arguments
7808 -- are strings or aggregates, allocators, or Null, they are ambiguous even
7809 -- though they carry a single (universal) type. Diagnose this case here.
7811 procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id) is
7812 L : constant Node_Id := Left_Opnd (N);
7813 R : constant Node_Id := Right_Opnd (N);
7814 T : Entity_Id := Find_Unique_Type (L, R);
7816 procedure Check_If_Expression (Cond : Node_Id);
7817 -- The resolution rule for if expressions requires that each such must
7818 -- have a unique type. This means that if several dependent expressions
7819 -- are of a non-null anonymous access type, and the context does not
7820 -- impose an expected type (as can be the case in an equality operation)
7821 -- the expression must be rejected.
7823 procedure Explain_Redundancy (N : Node_Id);
7824 -- Attempt to explain the nature of a redundant comparison with True. If
7825 -- the expression N is too complex, this routine issues a general error
7826 -- message.
7828 function Find_Unique_Access_Type return Entity_Id;
7829 -- In the case of allocators and access attributes, the context must
7830 -- provide an indication of the specific access type to be used. If
7831 -- one operand is of such a "generic" access type, check whether there
7832 -- is a specific visible access type that has the same designated type.
7833 -- This is semantically dubious, and of no interest to any real code,
7834 -- but c48008a makes it all worthwhile.
7836 -------------------------
7837 -- Check_If_Expression --
7838 -------------------------
7840 procedure Check_If_Expression (Cond : Node_Id) is
7841 Then_Expr : Node_Id;
7842 Else_Expr : Node_Id;
7844 begin
7845 if Nkind (Cond) = N_If_Expression then
7846 Then_Expr := Next (First (Expressions (Cond)));
7847 Else_Expr := Next (Then_Expr);
7849 if Nkind (Then_Expr) /= N_Null
7850 and then Nkind (Else_Expr) /= N_Null
7851 then
7852 Error_Msg_N ("cannot determine type of if expression", Cond);
7853 end if;
7854 end if;
7855 end Check_If_Expression;
7857 ------------------------
7858 -- Explain_Redundancy --
7859 ------------------------
7861 procedure Explain_Redundancy (N : Node_Id) is
7862 Error : Name_Id;
7863 Val : Node_Id;
7864 Val_Id : Entity_Id;
7866 begin
7867 Val := N;
7869 -- Strip the operand down to an entity
7871 loop
7872 if Nkind (Val) = N_Selected_Component then
7873 Val := Selector_Name (Val);
7874 else
7875 exit;
7876 end if;
7877 end loop;
7879 -- The construct denotes an entity
7881 if Is_Entity_Name (Val) and then Present (Entity (Val)) then
7882 Val_Id := Entity (Val);
7884 -- Do not generate an error message when the comparison is done
7885 -- against the enumeration literal Standard.True.
7887 if Ekind (Val_Id) /= E_Enumeration_Literal then
7889 -- Build a customized error message
7891 Name_Len := 0;
7892 Add_Str_To_Name_Buffer ("?r?");
7894 if Ekind (Val_Id) = E_Component then
7895 Add_Str_To_Name_Buffer ("component ");
7897 elsif Ekind (Val_Id) = E_Constant then
7898 Add_Str_To_Name_Buffer ("constant ");
7900 elsif Ekind (Val_Id) = E_Discriminant then
7901 Add_Str_To_Name_Buffer ("discriminant ");
7903 elsif Is_Formal (Val_Id) then
7904 Add_Str_To_Name_Buffer ("parameter ");
7906 elsif Ekind (Val_Id) = E_Variable then
7907 Add_Str_To_Name_Buffer ("variable ");
7908 end if;
7910 Add_Str_To_Name_Buffer ("& is always True!");
7911 Error := Name_Find;
7913 Error_Msg_NE (Get_Name_String (Error), Val, Val_Id);
7914 end if;
7916 -- The construct is too complex to disect, issue a general message
7918 else
7919 Error_Msg_N ("?r?expression is always True!", Val);
7920 end if;
7921 end Explain_Redundancy;
7923 -----------------------------
7924 -- Find_Unique_Access_Type --
7925 -----------------------------
7927 function Find_Unique_Access_Type return Entity_Id is
7928 Acc : Entity_Id;
7929 E : Entity_Id;
7930 S : Entity_Id;
7932 begin
7933 if Ekind_In (Etype (R), E_Allocator_Type,
7934 E_Access_Attribute_Type)
7935 then
7936 Acc := Designated_Type (Etype (R));
7938 elsif Ekind_In (Etype (L), E_Allocator_Type,
7939 E_Access_Attribute_Type)
7940 then
7941 Acc := Designated_Type (Etype (L));
7942 else
7943 return Empty;
7944 end if;
7946 S := Current_Scope;
7947 while S /= Standard_Standard loop
7948 E := First_Entity (S);
7949 while Present (E) loop
7950 if Is_Type (E)
7951 and then Is_Access_Type (E)
7952 and then Ekind (E) /= E_Allocator_Type
7953 and then Designated_Type (E) = Base_Type (Acc)
7954 then
7955 return E;
7956 end if;
7958 Next_Entity (E);
7959 end loop;
7961 S := Scope (S);
7962 end loop;
7964 return Empty;
7965 end Find_Unique_Access_Type;
7967 -- Start of processing for Resolve_Equality_Op
7969 begin
7970 Set_Etype (N, Base_Type (Typ));
7971 Generate_Reference (T, N, ' ');
7973 if T = Any_Fixed then
7974 T := Unique_Fixed_Point_Type (L);
7975 end if;
7977 if T /= Any_Type then
7978 if T = Any_String or else
7979 T = Any_Composite or else
7980 T = Any_Character
7981 then
7982 if T = Any_Character then
7983 Ambiguous_Character (L);
7984 else
7985 Error_Msg_N ("ambiguous operands for equality", N);
7986 end if;
7988 Set_Etype (N, Any_Type);
7989 return;
7991 elsif T = Any_Access
7992 or else Ekind_In (T, E_Allocator_Type, E_Access_Attribute_Type)
7993 then
7994 T := Find_Unique_Access_Type;
7996 if No (T) then
7997 Error_Msg_N ("ambiguous operands for equality", N);
7998 Set_Etype (N, Any_Type);
7999 return;
8000 end if;
8002 -- If expressions must have a single type, and if the context does
8003 -- not impose one the dependent expressions cannot be anonymous
8004 -- access types.
8006 -- Why no similar processing for case expressions???
8008 elsif Ada_Version >= Ada_2012
8009 and then Ekind_In (Etype (L), E_Anonymous_Access_Type,
8010 E_Anonymous_Access_Subprogram_Type)
8011 and then Ekind_In (Etype (R), E_Anonymous_Access_Type,
8012 E_Anonymous_Access_Subprogram_Type)
8013 then
8014 Check_If_Expression (L);
8015 Check_If_Expression (R);
8016 end if;
8018 Resolve (L, T);
8019 Resolve (R, T);
8021 -- In SPARK, equality operators = and /= for array types other than
8022 -- String are only defined when, for each index position, the
8023 -- operands have equal static bounds.
8025 if Is_Array_Type (T) then
8027 -- Protect call to Matching_Static_Array_Bounds to avoid costly
8028 -- operation if not needed.
8030 if Restriction_Check_Required (SPARK_05)
8031 and then Base_Type (T) /= Standard_String
8032 and then Base_Type (Etype (L)) = Base_Type (Etype (R))
8033 and then Etype (L) /= Any_Composite -- or else L in error
8034 and then Etype (R) /= Any_Composite -- or else R in error
8035 and then not Matching_Static_Array_Bounds (Etype (L), Etype (R))
8036 then
8037 Check_SPARK_05_Restriction
8038 ("array types should have matching static bounds", N);
8039 end if;
8040 end if;
8042 -- If the unique type is a class-wide type then it will be expanded
8043 -- into a dispatching call to the predefined primitive. Therefore we
8044 -- check here for potential violation of such restriction.
8046 if Is_Class_Wide_Type (T) then
8047 Check_Restriction (No_Dispatching_Calls, N);
8048 end if;
8050 -- Only warn for redundant equality comparison to True for objects
8051 -- (e.g. "X = True") and operations (e.g. "(X < Y) = True"). For
8052 -- other expressions, it may be a matter of preference to write
8053 -- "Expr = True" or "Expr".
8055 if Warn_On_Redundant_Constructs
8056 and then Comes_From_Source (N)
8057 and then Comes_From_Source (R)
8058 and then Is_Entity_Name (R)
8059 and then Entity (R) = Standard_True
8060 and then
8061 ((Is_Entity_Name (L) and then Is_Object (Entity (L)))
8062 or else
8063 Nkind (L) in N_Op)
8064 then
8065 Error_Msg_N -- CODEFIX
8066 ("?r?comparison with True is redundant!", N);
8067 Explain_Redundancy (Original_Node (R));
8068 end if;
8070 Check_Unset_Reference (L);
8071 Check_Unset_Reference (R);
8072 Generate_Operator_Reference (N, T);
8073 Check_Low_Bound_Tested (N);
8075 -- If this is an inequality, it may be the implicit inequality
8076 -- created for a user-defined operation, in which case the corres-
8077 -- ponding equality operation is not intrinsic, and the operation
8078 -- cannot be constant-folded. Else fold.
8080 if Nkind (N) = N_Op_Eq
8081 or else Comes_From_Source (Entity (N))
8082 or else Ekind (Entity (N)) = E_Operator
8083 or else Is_Intrinsic_Subprogram
8084 (Corresponding_Equality (Entity (N)))
8085 then
8086 Analyze_Dimension (N);
8087 Eval_Relational_Op (N);
8089 elsif Nkind (N) = N_Op_Ne
8090 and then Is_Abstract_Subprogram (Entity (N))
8091 then
8092 Error_Msg_NE ("cannot call abstract subprogram &!", N, Entity (N));
8093 end if;
8095 -- Ada 2005: If one operand is an anonymous access type, convert the
8096 -- other operand to it, to ensure that the underlying types match in
8097 -- the back-end. Same for access_to_subprogram, and the conversion
8098 -- verifies that the types are subtype conformant.
8100 -- We apply the same conversion in the case one of the operands is a
8101 -- private subtype of the type of the other.
8103 -- Why the Expander_Active test here ???
8105 if Expander_Active
8106 and then
8107 (Ekind_In (T, E_Anonymous_Access_Type,
8108 E_Anonymous_Access_Subprogram_Type)
8109 or else Is_Private_Type (T))
8110 then
8111 if Etype (L) /= T then
8112 Rewrite (L,
8113 Make_Unchecked_Type_Conversion (Sloc (L),
8114 Subtype_Mark => New_Occurrence_Of (T, Sloc (L)),
8115 Expression => Relocate_Node (L)));
8116 Analyze_And_Resolve (L, T);
8117 end if;
8119 if (Etype (R)) /= T then
8120 Rewrite (R,
8121 Make_Unchecked_Type_Conversion (Sloc (R),
8122 Subtype_Mark => New_Occurrence_Of (Etype (L), Sloc (R)),
8123 Expression => Relocate_Node (R)));
8124 Analyze_And_Resolve (R, T);
8125 end if;
8126 end if;
8127 end if;
8128 end Resolve_Equality_Op;
8130 ----------------------------------
8131 -- Resolve_Explicit_Dereference --
8132 ----------------------------------
8134 procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id) is
8135 Loc : constant Source_Ptr := Sloc (N);
8136 New_N : Node_Id;
8137 P : constant Node_Id := Prefix (N);
8139 P_Typ : Entity_Id;
8140 -- The candidate prefix type, if overloaded
8142 I : Interp_Index;
8143 It : Interp;
8145 begin
8146 Check_Fully_Declared_Prefix (Typ, P);
8147 P_Typ := Empty;
8149 -- A useful optimization: check whether the dereference denotes an
8150 -- element of a container, and if so rewrite it as a call to the
8151 -- corresponding Element function.
8153 -- Disabled for now, on advice of ARG. A more restricted form of the
8154 -- predicate might be acceptable ???
8156 -- if Is_Container_Element (N) then
8157 -- return;
8158 -- end if;
8160 if Is_Overloaded (P) then
8162 -- Use the context type to select the prefix that has the correct
8163 -- designated type. Keep the first match, which will be the inner-
8164 -- most.
8166 Get_First_Interp (P, I, It);
8168 while Present (It.Typ) loop
8169 if Is_Access_Type (It.Typ)
8170 and then Covers (Typ, Designated_Type (It.Typ))
8171 then
8172 if No (P_Typ) then
8173 P_Typ := It.Typ;
8174 end if;
8176 -- Remove access types that do not match, but preserve access
8177 -- to subprogram interpretations, in case a further dereference
8178 -- is needed (see below).
8180 elsif Ekind (It.Typ) /= E_Access_Subprogram_Type then
8181 Remove_Interp (I);
8182 end if;
8184 Get_Next_Interp (I, It);
8185 end loop;
8187 if Present (P_Typ) then
8188 Resolve (P, P_Typ);
8189 Set_Etype (N, Designated_Type (P_Typ));
8191 else
8192 -- If no interpretation covers the designated type of the prefix,
8193 -- this is the pathological case where not all implementations of
8194 -- the prefix allow the interpretation of the node as a call. Now
8195 -- that the expected type is known, Remove other interpretations
8196 -- from prefix, rewrite it as a call, and resolve again, so that
8197 -- the proper call node is generated.
8199 Get_First_Interp (P, I, It);
8200 while Present (It.Typ) loop
8201 if Ekind (It.Typ) /= E_Access_Subprogram_Type then
8202 Remove_Interp (I);
8203 end if;
8205 Get_Next_Interp (I, It);
8206 end loop;
8208 New_N :=
8209 Make_Function_Call (Loc,
8210 Name =>
8211 Make_Explicit_Dereference (Loc,
8212 Prefix => P),
8213 Parameter_Associations => New_List);
8215 Save_Interps (N, New_N);
8216 Rewrite (N, New_N);
8217 Analyze_And_Resolve (N, Typ);
8218 return;
8219 end if;
8221 -- If not overloaded, resolve P with its own type
8223 else
8224 Resolve (P);
8225 end if;
8227 -- If the prefix might be null, add an access check
8229 if Is_Access_Type (Etype (P))
8230 and then not Can_Never_Be_Null (Etype (P))
8231 then
8232 Apply_Access_Check (N);
8233 end if;
8235 -- If the designated type is a packed unconstrained array type, and the
8236 -- explicit dereference is not in the context of an attribute reference,
8237 -- then we must compute and set the actual subtype, since it is needed
8238 -- by Gigi. The reason we exclude the attribute case is that this is
8239 -- handled fine by Gigi, and in fact we use such attributes to build the
8240 -- actual subtype. We also exclude generated code (which builds actual
8241 -- subtypes directly if they are needed).
8243 if Is_Array_Type (Etype (N))
8244 and then Is_Packed (Etype (N))
8245 and then not Is_Constrained (Etype (N))
8246 and then Nkind (Parent (N)) /= N_Attribute_Reference
8247 and then Comes_From_Source (N)
8248 then
8249 Set_Etype (N, Get_Actual_Subtype (N));
8250 end if;
8252 Analyze_Dimension (N);
8254 -- Note: No Eval processing is required for an explicit dereference,
8255 -- because such a name can never be static.
8257 end Resolve_Explicit_Dereference;
8259 -------------------------------------
8260 -- Resolve_Expression_With_Actions --
8261 -------------------------------------
8263 procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id) is
8264 begin
8265 Set_Etype (N, Typ);
8267 -- If N has no actions, and its expression has been constant folded,
8268 -- then rewrite N as just its expression. Note, we can't do this in
8269 -- the general case of Is_Empty_List (Actions (N)) as this would cause
8270 -- Expression (N) to be expanded again.
8272 if Is_Empty_List (Actions (N))
8273 and then Compile_Time_Known_Value (Expression (N))
8274 then
8275 Rewrite (N, Expression (N));
8276 end if;
8277 end Resolve_Expression_With_Actions;
8279 ----------------------------------
8280 -- Resolve_Generalized_Indexing --
8281 ----------------------------------
8283 procedure Resolve_Generalized_Indexing (N : Node_Id; Typ : Entity_Id) is
8284 Indexing : constant Node_Id := Generalized_Indexing (N);
8285 Call : Node_Id;
8286 Indexes : List_Id;
8287 Pref : Node_Id;
8289 begin
8290 -- In ASIS mode, propagate the information about the indexes back to
8291 -- to the original indexing node. The generalized indexing is either
8292 -- a function call, or a dereference of one. The actuals include the
8293 -- prefix of the original node, which is the container expression.
8295 if ASIS_Mode then
8296 Resolve (Indexing, Typ);
8297 Set_Etype (N, Etype (Indexing));
8298 Set_Is_Overloaded (N, False);
8300 Call := Indexing;
8301 while Nkind_In (Call, N_Explicit_Dereference, N_Selected_Component)
8302 loop
8303 Call := Prefix (Call);
8304 end loop;
8306 if Nkind (Call) = N_Function_Call then
8307 Indexes := New_Copy_List (Parameter_Associations (Call));
8308 Pref := Remove_Head (Indexes);
8309 Set_Expressions (N, Indexes);
8311 -- If expression is to be reanalyzed, reset Generalized_Indexing
8312 -- to recreate call node, as is the case when the expression is
8313 -- part of an expression function.
8315 if In_Spec_Expression then
8316 Set_Generalized_Indexing (N, Empty);
8317 end if;
8319 Set_Prefix (N, Pref);
8320 end if;
8322 else
8323 Rewrite (N, Indexing);
8324 Resolve (N, Typ);
8325 end if;
8326 end Resolve_Generalized_Indexing;
8328 ---------------------------
8329 -- Resolve_If_Expression --
8330 ---------------------------
8332 procedure Resolve_If_Expression (N : Node_Id; Typ : Entity_Id) is
8333 Condition : constant Node_Id := First (Expressions (N));
8334 Then_Expr : Node_Id;
8335 Else_Expr : Node_Id;
8336 Else_Typ : Entity_Id;
8337 Then_Typ : Entity_Id;
8339 begin
8340 -- Defend against malformed expressions
8342 if No (Condition) then
8343 return;
8344 end if;
8346 Then_Expr := Next (Condition);
8348 if No (Then_Expr) then
8349 return;
8350 end if;
8352 Else_Expr := Next (Then_Expr);
8354 Resolve (Condition, Any_Boolean);
8355 Resolve (Then_Expr, Typ);
8356 Then_Typ := Etype (Then_Expr);
8358 -- When the "then" expression is of a scalar subtype different from the
8359 -- result subtype, then insert a conversion to ensure the generation of
8360 -- a constraint check. The same is done for the else part below, again
8361 -- comparing subtypes rather than base types.
8363 if Is_Scalar_Type (Then_Typ) and then Then_Typ /= Typ then
8364 Rewrite (Then_Expr, Convert_To (Typ, Then_Expr));
8365 Analyze_And_Resolve (Then_Expr, Typ);
8366 end if;
8368 -- If ELSE expression present, just resolve using the determined type
8369 -- If type is universal, resolve to any member of the class.
8371 if Present (Else_Expr) then
8372 if Typ = Universal_Integer then
8373 Resolve (Else_Expr, Any_Integer);
8375 elsif Typ = Universal_Real then
8376 Resolve (Else_Expr, Any_Real);
8378 else
8379 Resolve (Else_Expr, Typ);
8380 end if;
8382 Else_Typ := Etype (Else_Expr);
8384 if Is_Scalar_Type (Else_Typ) and then Else_Typ /= Typ then
8385 Rewrite (Else_Expr, Convert_To (Typ, Else_Expr));
8386 Analyze_And_Resolve (Else_Expr, Typ);
8388 -- Apply RM 4.5.7 (17/3): whether the expression is statically or
8389 -- dynamically tagged must be known statically.
8391 elsif Is_Tagged_Type (Typ) and then not Is_Class_Wide_Type (Typ) then
8392 if Is_Dynamically_Tagged (Then_Expr) /=
8393 Is_Dynamically_Tagged (Else_Expr)
8394 then
8395 Error_Msg_N ("all or none of the dependent expressions "
8396 & "can be dynamically tagged", N);
8397 end if;
8398 end if;
8400 -- If no ELSE expression is present, root type must be Standard.Boolean
8401 -- and we provide a Standard.True result converted to the appropriate
8402 -- Boolean type (in case it is a derived boolean type).
8404 elsif Root_Type (Typ) = Standard_Boolean then
8405 Else_Expr :=
8406 Convert_To (Typ, New_Occurrence_Of (Standard_True, Sloc (N)));
8407 Analyze_And_Resolve (Else_Expr, Typ);
8408 Append_To (Expressions (N), Else_Expr);
8410 else
8411 Error_Msg_N ("can only omit ELSE expression in Boolean case", N);
8412 Append_To (Expressions (N), Error);
8413 end if;
8415 Set_Etype (N, Typ);
8417 if not Error_Posted (N) then
8418 Eval_If_Expression (N);
8419 end if;
8421 Analyze_Dimension (N);
8422 end Resolve_If_Expression;
8424 -------------------------------
8425 -- Resolve_Indexed_Component --
8426 -------------------------------
8428 procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id) is
8429 Name : constant Node_Id := Prefix (N);
8430 Expr : Node_Id;
8431 Array_Type : Entity_Id := Empty; -- to prevent junk warning
8432 Index : Node_Id;
8434 begin
8435 if Present (Generalized_Indexing (N)) then
8436 Resolve_Generalized_Indexing (N, Typ);
8437 return;
8438 end if;
8440 if Is_Overloaded (Name) then
8442 -- Use the context type to select the prefix that yields the correct
8443 -- component type.
8445 declare
8446 I : Interp_Index;
8447 It : Interp;
8448 I1 : Interp_Index := 0;
8449 P : constant Node_Id := Prefix (N);
8450 Found : Boolean := False;
8452 begin
8453 Get_First_Interp (P, I, It);
8454 while Present (It.Typ) loop
8455 if (Is_Array_Type (It.Typ)
8456 and then Covers (Typ, Component_Type (It.Typ)))
8457 or else (Is_Access_Type (It.Typ)
8458 and then Is_Array_Type (Designated_Type (It.Typ))
8459 and then
8460 Covers
8461 (Typ,
8462 Component_Type (Designated_Type (It.Typ))))
8463 then
8464 if Found then
8465 It := Disambiguate (P, I1, I, Any_Type);
8467 if It = No_Interp then
8468 Error_Msg_N ("ambiguous prefix for indexing", N);
8469 Set_Etype (N, Typ);
8470 return;
8472 else
8473 Found := True;
8474 Array_Type := It.Typ;
8475 I1 := I;
8476 end if;
8478 else
8479 Found := True;
8480 Array_Type := It.Typ;
8481 I1 := I;
8482 end if;
8483 end if;
8485 Get_Next_Interp (I, It);
8486 end loop;
8487 end;
8489 else
8490 Array_Type := Etype (Name);
8491 end if;
8493 Resolve (Name, Array_Type);
8494 Array_Type := Get_Actual_Subtype_If_Available (Name);
8496 -- If prefix is access type, dereference to get real array type.
8497 -- Note: we do not apply an access check because the expander always
8498 -- introduces an explicit dereference, and the check will happen there.
8500 if Is_Access_Type (Array_Type) then
8501 Array_Type := Designated_Type (Array_Type);
8502 end if;
8504 -- If name was overloaded, set component type correctly now
8505 -- If a misplaced call to an entry family (which has no index types)
8506 -- return. Error will be diagnosed from calling context.
8508 if Is_Array_Type (Array_Type) then
8509 Set_Etype (N, Component_Type (Array_Type));
8510 else
8511 return;
8512 end if;
8514 Index := First_Index (Array_Type);
8515 Expr := First (Expressions (N));
8517 -- The prefix may have resolved to a string literal, in which case its
8518 -- etype has a special representation. This is only possible currently
8519 -- if the prefix is a static concatenation, written in functional
8520 -- notation.
8522 if Ekind (Array_Type) = E_String_Literal_Subtype then
8523 Resolve (Expr, Standard_Positive);
8525 else
8526 while Present (Index) and Present (Expr) loop
8527 Resolve (Expr, Etype (Index));
8528 Check_Unset_Reference (Expr);
8530 if Is_Scalar_Type (Etype (Expr)) then
8531 Apply_Scalar_Range_Check (Expr, Etype (Index));
8532 else
8533 Apply_Range_Check (Expr, Get_Actual_Subtype (Index));
8534 end if;
8536 Next_Index (Index);
8537 Next (Expr);
8538 end loop;
8539 end if;
8541 Analyze_Dimension (N);
8543 -- Do not generate the warning on suspicious index if we are analyzing
8544 -- package Ada.Tags; otherwise we will report the warning with the
8545 -- Prims_Ptr field of the dispatch table.
8547 if Scope (Etype (Prefix (N))) = Standard_Standard
8548 or else not
8549 Is_RTU (Cunit_Entity (Get_Source_Unit (Etype (Prefix (N)))),
8550 Ada_Tags)
8551 then
8552 Warn_On_Suspicious_Index (Name, First (Expressions (N)));
8553 Eval_Indexed_Component (N);
8554 end if;
8556 -- If the array type is atomic, and the component is not atomic, then
8557 -- this is worth a warning, since we have a situation where the access
8558 -- to the component may cause extra read/writes of the atomic array
8559 -- object, or partial word accesses, which could be unexpected.
8561 if Nkind (N) = N_Indexed_Component
8562 and then Is_Atomic_Ref_With_Address (N)
8563 and then not (Has_Atomic_Components (Array_Type)
8564 or else (Is_Entity_Name (Prefix (N))
8565 and then Has_Atomic_Components
8566 (Entity (Prefix (N)))))
8567 and then not Is_Atomic (Component_Type (Array_Type))
8568 then
8569 Error_Msg_N
8570 ("??access to non-atomic component of atomic array", Prefix (N));
8571 Error_Msg_N
8572 ("??\may cause unexpected accesses to atomic object", Prefix (N));
8573 end if;
8574 end Resolve_Indexed_Component;
8576 -----------------------------
8577 -- Resolve_Integer_Literal --
8578 -----------------------------
8580 procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id) is
8581 begin
8582 Set_Etype (N, Typ);
8583 Eval_Integer_Literal (N);
8584 end Resolve_Integer_Literal;
8586 --------------------------------
8587 -- Resolve_Intrinsic_Operator --
8588 --------------------------------
8590 procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id) is
8591 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8592 Op : Entity_Id;
8593 Arg1 : Node_Id;
8594 Arg2 : Node_Id;
8596 function Convert_Operand (Opnd : Node_Id) return Node_Id;
8597 -- If the operand is a literal, it cannot be the expression in a
8598 -- conversion. Use a qualified expression instead.
8600 ---------------------
8601 -- Convert_Operand --
8602 ---------------------
8604 function Convert_Operand (Opnd : Node_Id) return Node_Id is
8605 Loc : constant Source_Ptr := Sloc (Opnd);
8606 Res : Node_Id;
8608 begin
8609 if Nkind_In (Opnd, N_Integer_Literal, N_Real_Literal) then
8610 Res :=
8611 Make_Qualified_Expression (Loc,
8612 Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
8613 Expression => Relocate_Node (Opnd));
8614 Analyze (Res);
8616 else
8617 Res := Unchecked_Convert_To (Btyp, Opnd);
8618 end if;
8620 return Res;
8621 end Convert_Operand;
8623 -- Start of processing for Resolve_Intrinsic_Operator
8625 begin
8626 -- We must preserve the original entity in a generic setting, so that
8627 -- the legality of the operation can be verified in an instance.
8629 if not Expander_Active then
8630 return;
8631 end if;
8633 Op := Entity (N);
8634 while Scope (Op) /= Standard_Standard loop
8635 Op := Homonym (Op);
8636 pragma Assert (Present (Op));
8637 end loop;
8639 Set_Entity (N, Op);
8640 Set_Is_Overloaded (N, False);
8642 -- If the result or operand types are private, rewrite with unchecked
8643 -- conversions on the operands and the result, to expose the proper
8644 -- underlying numeric type.
8646 if Is_Private_Type (Typ)
8647 or else Is_Private_Type (Etype (Left_Opnd (N)))
8648 or else Is_Private_Type (Etype (Right_Opnd (N)))
8649 then
8650 Arg1 := Convert_Operand (Left_Opnd (N));
8652 if Nkind (N) = N_Op_Expon then
8653 Arg2 := Unchecked_Convert_To (Standard_Integer, Right_Opnd (N));
8654 else
8655 Arg2 := Convert_Operand (Right_Opnd (N));
8656 end if;
8658 if Nkind (Arg1) = N_Type_Conversion then
8659 Save_Interps (Left_Opnd (N), Expression (Arg1));
8660 end if;
8662 if Nkind (Arg2) = N_Type_Conversion then
8663 Save_Interps (Right_Opnd (N), Expression (Arg2));
8664 end if;
8666 Set_Left_Opnd (N, Arg1);
8667 Set_Right_Opnd (N, Arg2);
8669 Set_Etype (N, Btyp);
8670 Rewrite (N, Unchecked_Convert_To (Typ, N));
8671 Resolve (N, Typ);
8673 elsif Typ /= Etype (Left_Opnd (N))
8674 or else Typ /= Etype (Right_Opnd (N))
8675 then
8676 -- Add explicit conversion where needed, and save interpretations in
8677 -- case operands are overloaded.
8679 Arg1 := Convert_To (Typ, Left_Opnd (N));
8680 Arg2 := Convert_To (Typ, Right_Opnd (N));
8682 if Nkind (Arg1) = N_Type_Conversion then
8683 Save_Interps (Left_Opnd (N), Expression (Arg1));
8684 else
8685 Save_Interps (Left_Opnd (N), Arg1);
8686 end if;
8688 if Nkind (Arg2) = N_Type_Conversion then
8689 Save_Interps (Right_Opnd (N), Expression (Arg2));
8690 else
8691 Save_Interps (Right_Opnd (N), Arg2);
8692 end if;
8694 Rewrite (Left_Opnd (N), Arg1);
8695 Rewrite (Right_Opnd (N), Arg2);
8696 Analyze (Arg1);
8697 Analyze (Arg2);
8698 Resolve_Arithmetic_Op (N, Typ);
8700 else
8701 Resolve_Arithmetic_Op (N, Typ);
8702 end if;
8703 end Resolve_Intrinsic_Operator;
8705 --------------------------------------
8706 -- Resolve_Intrinsic_Unary_Operator --
8707 --------------------------------------
8709 procedure Resolve_Intrinsic_Unary_Operator
8710 (N : Node_Id;
8711 Typ : Entity_Id)
8713 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8714 Op : Entity_Id;
8715 Arg2 : Node_Id;
8717 begin
8718 Op := Entity (N);
8719 while Scope (Op) /= Standard_Standard loop
8720 Op := Homonym (Op);
8721 pragma Assert (Present (Op));
8722 end loop;
8724 Set_Entity (N, Op);
8726 if Is_Private_Type (Typ) then
8727 Arg2 := Unchecked_Convert_To (Btyp, Right_Opnd (N));
8728 Save_Interps (Right_Opnd (N), Expression (Arg2));
8730 Set_Right_Opnd (N, Arg2);
8732 Set_Etype (N, Btyp);
8733 Rewrite (N, Unchecked_Convert_To (Typ, N));
8734 Resolve (N, Typ);
8736 else
8737 Resolve_Unary_Op (N, Typ);
8738 end if;
8739 end Resolve_Intrinsic_Unary_Operator;
8741 ------------------------
8742 -- Resolve_Logical_Op --
8743 ------------------------
8745 procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id) is
8746 B_Typ : Entity_Id;
8748 begin
8749 Check_No_Direct_Boolean_Operators (N);
8751 -- Predefined operations on scalar types yield the base type. On the
8752 -- other hand, logical operations on arrays yield the type of the
8753 -- arguments (and the context).
8755 if Is_Array_Type (Typ) then
8756 B_Typ := Typ;
8757 else
8758 B_Typ := Base_Type (Typ);
8759 end if;
8761 -- The following test is required because the operands of the operation
8762 -- may be literals, in which case the resulting type appears to be
8763 -- compatible with a signed integer type, when in fact it is compatible
8764 -- only with modular types. If the context itself is universal, the
8765 -- operation is illegal.
8767 if not Valid_Boolean_Arg (Typ) then
8768 Error_Msg_N ("invalid context for logical operation", N);
8769 Set_Etype (N, Any_Type);
8770 return;
8772 elsif Typ = Any_Modular then
8773 Error_Msg_N
8774 ("no modular type available in this context", N);
8775 Set_Etype (N, Any_Type);
8776 return;
8778 elsif Is_Modular_Integer_Type (Typ)
8779 and then Etype (Left_Opnd (N)) = Universal_Integer
8780 and then Etype (Right_Opnd (N)) = Universal_Integer
8781 then
8782 Check_For_Visible_Operator (N, B_Typ);
8783 end if;
8785 -- Replace AND by AND THEN, or OR by OR ELSE, if Short_Circuit_And_Or
8786 -- is active and the result type is standard Boolean (do not mess with
8787 -- ops that return a nonstandard Boolean type, because something strange
8788 -- is going on).
8790 -- Note: you might expect this replacement to be done during expansion,
8791 -- but that doesn't work, because when the pragma Short_Circuit_And_Or
8792 -- is used, no part of the right operand of an "and" or "or" operator
8793 -- should be executed if the left operand would short-circuit the
8794 -- evaluation of the corresponding "and then" or "or else". If we left
8795 -- the replacement to expansion time, then run-time checks associated
8796 -- with such operands would be evaluated unconditionally, due to being
8797 -- before the condition prior to the rewriting as short-circuit forms
8798 -- during expansion.
8800 if Short_Circuit_And_Or
8801 and then B_Typ = Standard_Boolean
8802 and then Nkind_In (N, N_Op_And, N_Op_Or)
8803 then
8804 -- Mark the corresponding putative SCO operator as truly a logical
8805 -- (and short-circuit) operator.
8807 if Generate_SCO and then Comes_From_Source (N) then
8808 Set_SCO_Logical_Operator (N);
8809 end if;
8811 if Nkind (N) = N_Op_And then
8812 Rewrite (N,
8813 Make_And_Then (Sloc (N),
8814 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8815 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8816 Analyze_And_Resolve (N, B_Typ);
8818 -- Case of OR changed to OR ELSE
8820 else
8821 Rewrite (N,
8822 Make_Or_Else (Sloc (N),
8823 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8824 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8825 Analyze_And_Resolve (N, B_Typ);
8826 end if;
8828 -- Return now, since analysis of the rewritten ops will take care of
8829 -- other reference bookkeeping and expression folding.
8831 return;
8832 end if;
8834 Resolve (Left_Opnd (N), B_Typ);
8835 Resolve (Right_Opnd (N), B_Typ);
8837 Check_Unset_Reference (Left_Opnd (N));
8838 Check_Unset_Reference (Right_Opnd (N));
8840 Set_Etype (N, B_Typ);
8841 Generate_Operator_Reference (N, B_Typ);
8842 Eval_Logical_Op (N);
8844 -- In SPARK, logical operations AND, OR and XOR for arrays are defined
8845 -- only when both operands have same static lower and higher bounds. Of
8846 -- course the types have to match, so only check if operands are
8847 -- compatible and the node itself has no errors.
8849 if Is_Array_Type (B_Typ)
8850 and then Nkind (N) in N_Binary_Op
8851 then
8852 declare
8853 Left_Typ : constant Node_Id := Etype (Left_Opnd (N));
8854 Right_Typ : constant Node_Id := Etype (Right_Opnd (N));
8856 begin
8857 -- Protect call to Matching_Static_Array_Bounds to avoid costly
8858 -- operation if not needed.
8860 if Restriction_Check_Required (SPARK_05)
8861 and then Base_Type (Left_Typ) = Base_Type (Right_Typ)
8862 and then Left_Typ /= Any_Composite -- or Left_Opnd in error
8863 and then Right_Typ /= Any_Composite -- or Right_Opnd in error
8864 and then not Matching_Static_Array_Bounds (Left_Typ, Right_Typ)
8865 then
8866 Check_SPARK_05_Restriction
8867 ("array types should have matching static bounds", N);
8868 end if;
8869 end;
8870 end if;
8871 end Resolve_Logical_Op;
8873 ---------------------------
8874 -- Resolve_Membership_Op --
8875 ---------------------------
8877 -- The context can only be a boolean type, and does not determine the
8878 -- arguments. Arguments should be unambiguous, but the preference rule for
8879 -- universal types applies.
8881 procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id) is
8882 pragma Warnings (Off, Typ);
8884 L : constant Node_Id := Left_Opnd (N);
8885 R : constant Node_Id := Right_Opnd (N);
8886 T : Entity_Id;
8888 procedure Resolve_Set_Membership;
8889 -- Analysis has determined a unique type for the left operand. Use it to
8890 -- resolve the disjuncts.
8892 ----------------------------
8893 -- Resolve_Set_Membership --
8894 ----------------------------
8896 procedure Resolve_Set_Membership is
8897 Alt : Node_Id;
8898 Ltyp : Entity_Id;
8900 begin
8901 -- If the left operand is overloaded, find type compatible with not
8902 -- overloaded alternative of the right operand.
8904 if Is_Overloaded (L) then
8905 Ltyp := Empty;
8906 Alt := First (Alternatives (N));
8907 while Present (Alt) loop
8908 if not Is_Overloaded (Alt) then
8909 Ltyp := Intersect_Types (L, Alt);
8910 exit;
8911 else
8912 Next (Alt);
8913 end if;
8914 end loop;
8916 -- Unclear how to resolve expression if all alternatives are also
8917 -- overloaded.
8919 if No (Ltyp) then
8920 Error_Msg_N ("ambiguous expression", N);
8921 end if;
8923 else
8924 Ltyp := Etype (L);
8925 end if;
8927 Resolve (L, Ltyp);
8929 Alt := First (Alternatives (N));
8930 while Present (Alt) loop
8932 -- Alternative is an expression, a range
8933 -- or a subtype mark.
8935 if not Is_Entity_Name (Alt)
8936 or else not Is_Type (Entity (Alt))
8937 then
8938 Resolve (Alt, Ltyp);
8939 end if;
8941 Next (Alt);
8942 end loop;
8944 -- Check for duplicates for discrete case
8946 if Is_Discrete_Type (Ltyp) then
8947 declare
8948 type Ent is record
8949 Alt : Node_Id;
8950 Val : Uint;
8951 end record;
8953 Alts : array (0 .. List_Length (Alternatives (N))) of Ent;
8954 Nalts : Nat;
8956 begin
8957 -- Loop checking duplicates. This is quadratic, but giant sets
8958 -- are unlikely in this context so it's a reasonable choice.
8960 Nalts := 0;
8961 Alt := First (Alternatives (N));
8962 while Present (Alt) loop
8963 if Is_OK_Static_Expression (Alt)
8964 and then (Nkind_In (Alt, N_Integer_Literal,
8965 N_Character_Literal)
8966 or else Nkind (Alt) in N_Has_Entity)
8967 then
8968 Nalts := Nalts + 1;
8969 Alts (Nalts) := (Alt, Expr_Value (Alt));
8971 for J in 1 .. Nalts - 1 loop
8972 if Alts (J).Val = Alts (Nalts).Val then
8973 Error_Msg_Sloc := Sloc (Alts (J).Alt);
8974 Error_Msg_N ("duplicate of value given#??", Alt);
8975 end if;
8976 end loop;
8977 end if;
8979 Alt := Next (Alt);
8980 end loop;
8981 end;
8982 end if;
8983 end Resolve_Set_Membership;
8985 -- Start of processing for Resolve_Membership_Op
8987 begin
8988 if L = Error or else R = Error then
8989 return;
8990 end if;
8992 if Present (Alternatives (N)) then
8993 Resolve_Set_Membership;
8994 goto SM_Exit;
8996 elsif not Is_Overloaded (R)
8997 and then
8998 (Etype (R) = Universal_Integer
8999 or else
9000 Etype (R) = Universal_Real)
9001 and then Is_Overloaded (L)
9002 then
9003 T := Etype (R);
9005 -- Ada 2005 (AI-251): Support the following case:
9007 -- type I is interface;
9008 -- type T is tagged ...
9010 -- function Test (O : I'Class) is
9011 -- begin
9012 -- return O in T'Class.
9013 -- end Test;
9015 -- In this case we have nothing else to do. The membership test will be
9016 -- done at run time.
9018 elsif Ada_Version >= Ada_2005
9019 and then Is_Class_Wide_Type (Etype (L))
9020 and then Is_Interface (Etype (L))
9021 and then Is_Class_Wide_Type (Etype (R))
9022 and then not Is_Interface (Etype (R))
9023 then
9024 return;
9025 else
9026 T := Intersect_Types (L, R);
9027 end if;
9029 -- If mixed-mode operations are present and operands are all literal,
9030 -- the only interpretation involves Duration, which is probably not
9031 -- the intention of the programmer.
9033 if T = Any_Fixed then
9034 T := Unique_Fixed_Point_Type (N);
9036 if T = Any_Type then
9037 return;
9038 end if;
9039 end if;
9041 Resolve (L, T);
9042 Check_Unset_Reference (L);
9044 if Nkind (R) = N_Range
9045 and then not Is_Scalar_Type (T)
9046 then
9047 Error_Msg_N ("scalar type required for range", R);
9048 end if;
9050 if Is_Entity_Name (R) then
9051 Freeze_Expression (R);
9052 else
9053 Resolve (R, T);
9054 Check_Unset_Reference (R);
9055 end if;
9057 -- Here after resolving membership operation
9059 <<SM_Exit>>
9061 Eval_Membership_Op (N);
9062 end Resolve_Membership_Op;
9064 ------------------
9065 -- Resolve_Null --
9066 ------------------
9068 procedure Resolve_Null (N : Node_Id; Typ : Entity_Id) is
9069 Loc : constant Source_Ptr := Sloc (N);
9071 begin
9072 -- Handle restriction against anonymous null access values This
9073 -- restriction can be turned off using -gnatdj.
9075 -- Ada 2005 (AI-231): Remove restriction
9077 if Ada_Version < Ada_2005
9078 and then not Debug_Flag_J
9079 and then Ekind (Typ) = E_Anonymous_Access_Type
9080 and then Comes_From_Source (N)
9081 then
9082 -- In the common case of a call which uses an explicitly null value
9083 -- for an access parameter, give specialized error message.
9085 if Nkind (Parent (N)) in N_Subprogram_Call then
9086 Error_Msg_N
9087 ("null is not allowed as argument for an access parameter", N);
9089 -- Standard message for all other cases (are there any?)
9091 else
9092 Error_Msg_N
9093 ("null cannot be of an anonymous access type", N);
9094 end if;
9095 end if;
9097 -- Ada 2005 (AI-231): Generate the null-excluding check in case of
9098 -- assignment to a null-excluding object
9100 if Ada_Version >= Ada_2005
9101 and then Can_Never_Be_Null (Typ)
9102 and then Nkind (Parent (N)) = N_Assignment_Statement
9103 then
9104 if not Inside_Init_Proc then
9105 Insert_Action
9106 (Compile_Time_Constraint_Error (N,
9107 "(Ada 2005) null not allowed in null-excluding objects??"),
9108 Make_Raise_Constraint_Error (Loc,
9109 Reason => CE_Access_Check_Failed));
9110 else
9111 Insert_Action (N,
9112 Make_Raise_Constraint_Error (Loc,
9113 Reason => CE_Access_Check_Failed));
9114 end if;
9115 end if;
9117 -- In a distributed context, null for a remote access to subprogram may
9118 -- need to be replaced with a special record aggregate. In this case,
9119 -- return after having done the transformation.
9121 if (Ekind (Typ) = E_Record_Type
9122 or else Is_Remote_Access_To_Subprogram_Type (Typ))
9123 and then Remote_AST_Null_Value (N, Typ)
9124 then
9125 return;
9126 end if;
9128 -- The null literal takes its type from the context
9130 Set_Etype (N, Typ);
9131 end Resolve_Null;
9133 -----------------------
9134 -- Resolve_Op_Concat --
9135 -----------------------
9137 procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id) is
9139 -- We wish to avoid deep recursion, because concatenations are often
9140 -- deeply nested, as in A&B&...&Z. Therefore, we walk down the left
9141 -- operands nonrecursively until we find something that is not a simple
9142 -- concatenation (A in this case). We resolve that, and then walk back
9143 -- up the tree following Parent pointers, calling Resolve_Op_Concat_Rest
9144 -- to do the rest of the work at each level. The Parent pointers allow
9145 -- us to avoid recursion, and thus avoid running out of memory. See also
9146 -- Sem_Ch4.Analyze_Concatenation, where a similar approach is used.
9148 NN : Node_Id := N;
9149 Op1 : Node_Id;
9151 begin
9152 -- The following code is equivalent to:
9154 -- Resolve_Op_Concat_First (NN, Typ);
9155 -- Resolve_Op_Concat_Arg (N, ...);
9156 -- Resolve_Op_Concat_Rest (N, Typ);
9158 -- where the Resolve_Op_Concat_Arg call recurses back here if the left
9159 -- operand is a concatenation.
9161 -- Walk down left operands
9163 loop
9164 Resolve_Op_Concat_First (NN, Typ);
9165 Op1 := Left_Opnd (NN);
9166 exit when not (Nkind (Op1) = N_Op_Concat
9167 and then not Is_Array_Type (Component_Type (Typ))
9168 and then Entity (Op1) = Entity (NN));
9169 NN := Op1;
9170 end loop;
9172 -- Now (given the above example) NN is A&B and Op1 is A
9174 -- First resolve Op1 ...
9176 Resolve_Op_Concat_Arg (NN, Op1, Typ, Is_Component_Left_Opnd (NN));
9178 -- ... then walk NN back up until we reach N (where we started), calling
9179 -- Resolve_Op_Concat_Rest along the way.
9181 loop
9182 Resolve_Op_Concat_Rest (NN, Typ);
9183 exit when NN = N;
9184 NN := Parent (NN);
9185 end loop;
9187 if Base_Type (Etype (N)) /= Standard_String then
9188 Check_SPARK_05_Restriction
9189 ("result of concatenation should have type String", N);
9190 end if;
9191 end Resolve_Op_Concat;
9193 ---------------------------
9194 -- Resolve_Op_Concat_Arg --
9195 ---------------------------
9197 procedure Resolve_Op_Concat_Arg
9198 (N : Node_Id;
9199 Arg : Node_Id;
9200 Typ : Entity_Id;
9201 Is_Comp : Boolean)
9203 Btyp : constant Entity_Id := Base_Type (Typ);
9204 Ctyp : constant Entity_Id := Component_Type (Typ);
9206 begin
9207 if In_Instance then
9208 if Is_Comp
9209 or else (not Is_Overloaded (Arg)
9210 and then Etype (Arg) /= Any_Composite
9211 and then Covers (Ctyp, Etype (Arg)))
9212 then
9213 Resolve (Arg, Ctyp);
9214 else
9215 Resolve (Arg, Btyp);
9216 end if;
9218 -- If both Array & Array and Array & Component are visible, there is a
9219 -- potential ambiguity that must be reported.
9221 elsif Has_Compatible_Type (Arg, Ctyp) then
9222 if Nkind (Arg) = N_Aggregate
9223 and then Is_Composite_Type (Ctyp)
9224 then
9225 if Is_Private_Type (Ctyp) then
9226 Resolve (Arg, Btyp);
9228 -- If the operation is user-defined and not overloaded use its
9229 -- profile. The operation may be a renaming, in which case it has
9230 -- been rewritten, and we want the original profile.
9232 elsif not Is_Overloaded (N)
9233 and then Comes_From_Source (Entity (Original_Node (N)))
9234 and then Ekind (Entity (Original_Node (N))) = E_Function
9235 then
9236 Resolve (Arg,
9237 Etype
9238 (Next_Formal (First_Formal (Entity (Original_Node (N))))));
9239 return;
9241 -- Otherwise an aggregate may match both the array type and the
9242 -- component type.
9244 else
9245 Error_Msg_N ("ambiguous aggregate must be qualified", Arg);
9246 Set_Etype (Arg, Any_Type);
9247 end if;
9249 else
9250 if Is_Overloaded (Arg)
9251 and then Has_Compatible_Type (Arg, Typ)
9252 and then Etype (Arg) /= Any_Type
9253 then
9254 declare
9255 I : Interp_Index;
9256 It : Interp;
9257 Func : Entity_Id;
9259 begin
9260 Get_First_Interp (Arg, I, It);
9261 Func := It.Nam;
9262 Get_Next_Interp (I, It);
9264 -- Special-case the error message when the overloading is
9265 -- caused by a function that yields an array and can be
9266 -- called without parameters.
9268 if It.Nam = Func then
9269 Error_Msg_Sloc := Sloc (Func);
9270 Error_Msg_N ("ambiguous call to function#", Arg);
9271 Error_Msg_NE
9272 ("\\interpretation as call yields&", Arg, Typ);
9273 Error_Msg_NE
9274 ("\\interpretation as indexing of call yields&",
9275 Arg, Component_Type (Typ));
9277 else
9278 Error_Msg_N ("ambiguous operand for concatenation!", Arg);
9280 Get_First_Interp (Arg, I, It);
9281 while Present (It.Nam) loop
9282 Error_Msg_Sloc := Sloc (It.Nam);
9284 if Base_Type (It.Typ) = Btyp
9285 or else
9286 Base_Type (It.Typ) = Base_Type (Ctyp)
9287 then
9288 Error_Msg_N -- CODEFIX
9289 ("\\possible interpretation#", Arg);
9290 end if;
9292 Get_Next_Interp (I, It);
9293 end loop;
9294 end if;
9295 end;
9296 end if;
9298 Resolve (Arg, Component_Type (Typ));
9300 if Nkind (Arg) = N_String_Literal then
9301 Set_Etype (Arg, Component_Type (Typ));
9302 end if;
9304 if Arg = Left_Opnd (N) then
9305 Set_Is_Component_Left_Opnd (N);
9306 else
9307 Set_Is_Component_Right_Opnd (N);
9308 end if;
9309 end if;
9311 else
9312 Resolve (Arg, Btyp);
9313 end if;
9315 -- Concatenation is restricted in SPARK: each operand must be either a
9316 -- string literal, the name of a string constant, a static character or
9317 -- string expression, or another concatenation. Arg cannot be a
9318 -- concatenation here as callers of Resolve_Op_Concat_Arg call it
9319 -- separately on each final operand, past concatenation operations.
9321 if Is_Character_Type (Etype (Arg)) then
9322 if not Is_OK_Static_Expression (Arg) then
9323 Check_SPARK_05_Restriction
9324 ("character operand for concatenation should be static", Arg);
9325 end if;
9327 elsif Is_String_Type (Etype (Arg)) then
9328 if not (Nkind_In (Arg, N_Identifier, N_Expanded_Name)
9329 and then Is_Constant_Object (Entity (Arg)))
9330 and then not Is_OK_Static_Expression (Arg)
9331 then
9332 Check_SPARK_05_Restriction
9333 ("string operand for concatenation should be static", Arg);
9334 end if;
9336 -- Do not issue error on an operand that is neither a character nor a
9337 -- string, as the error is issued in Resolve_Op_Concat.
9339 else
9340 null;
9341 end if;
9343 Check_Unset_Reference (Arg);
9344 end Resolve_Op_Concat_Arg;
9346 -----------------------------
9347 -- Resolve_Op_Concat_First --
9348 -----------------------------
9350 procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id) is
9351 Btyp : constant Entity_Id := Base_Type (Typ);
9352 Op1 : constant Node_Id := Left_Opnd (N);
9353 Op2 : constant Node_Id := Right_Opnd (N);
9355 begin
9356 -- The parser folds an enormous sequence of concatenations of string
9357 -- literals into "" & "...", where the Is_Folded_In_Parser flag is set
9358 -- in the right operand. If the expression resolves to a predefined "&"
9359 -- operator, all is well. Otherwise, the parser's folding is wrong, so
9360 -- we give an error. See P_Simple_Expression in Par.Ch4.
9362 if Nkind (Op2) = N_String_Literal
9363 and then Is_Folded_In_Parser (Op2)
9364 and then Ekind (Entity (N)) = E_Function
9365 then
9366 pragma Assert (Nkind (Op1) = N_String_Literal -- should be ""
9367 and then String_Length (Strval (Op1)) = 0);
9368 Error_Msg_N ("too many user-defined concatenations", N);
9369 return;
9370 end if;
9372 Set_Etype (N, Btyp);
9374 if Is_Limited_Composite (Btyp) then
9375 Error_Msg_N ("concatenation not available for limited array", N);
9376 Explain_Limited_Type (Btyp, N);
9377 end if;
9378 end Resolve_Op_Concat_First;
9380 ----------------------------
9381 -- Resolve_Op_Concat_Rest --
9382 ----------------------------
9384 procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id) is
9385 Op1 : constant Node_Id := Left_Opnd (N);
9386 Op2 : constant Node_Id := Right_Opnd (N);
9388 begin
9389 Resolve_Op_Concat_Arg (N, Op2, Typ, Is_Component_Right_Opnd (N));
9391 Generate_Operator_Reference (N, Typ);
9393 if Is_String_Type (Typ) then
9394 Eval_Concatenation (N);
9395 end if;
9397 -- If this is not a static concatenation, but the result is a string
9398 -- type (and not an array of strings) ensure that static string operands
9399 -- have their subtypes properly constructed.
9401 if Nkind (N) /= N_String_Literal
9402 and then Is_Character_Type (Component_Type (Typ))
9403 then
9404 Set_String_Literal_Subtype (Op1, Typ);
9405 Set_String_Literal_Subtype (Op2, Typ);
9406 end if;
9407 end Resolve_Op_Concat_Rest;
9409 ----------------------
9410 -- Resolve_Op_Expon --
9411 ----------------------
9413 procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id) is
9414 B_Typ : constant Entity_Id := Base_Type (Typ);
9416 begin
9417 -- Catch attempts to do fixed-point exponentiation with universal
9418 -- operands, which is a case where the illegality is not caught during
9419 -- normal operator analysis. This is not done in preanalysis mode
9420 -- since the tree is not fully decorated during preanalysis.
9422 if Full_Analysis then
9423 if Is_Fixed_Point_Type (Typ) and then Comes_From_Source (N) then
9424 Error_Msg_N ("exponentiation not available for fixed point", N);
9425 return;
9427 elsif Nkind (Parent (N)) in N_Op
9428 and then Present (Etype (Parent (N)))
9429 and then Is_Fixed_Point_Type (Etype (Parent (N)))
9430 and then Etype (N) = Universal_Real
9431 and then Comes_From_Source (N)
9432 then
9433 Error_Msg_N ("exponentiation not available for fixed point", N);
9434 return;
9435 end if;
9436 end if;
9438 if Comes_From_Source (N)
9439 and then Ekind (Entity (N)) = E_Function
9440 and then Is_Imported (Entity (N))
9441 and then Is_Intrinsic_Subprogram (Entity (N))
9442 then
9443 Resolve_Intrinsic_Operator (N, Typ);
9444 return;
9445 end if;
9447 if Etype (Left_Opnd (N)) = Universal_Integer
9448 or else Etype (Left_Opnd (N)) = Universal_Real
9449 then
9450 Check_For_Visible_Operator (N, B_Typ);
9451 end if;
9453 -- We do the resolution using the base type, because intermediate values
9454 -- in expressions are always of the base type, not a subtype of it.
9456 Resolve (Left_Opnd (N), B_Typ);
9457 Resolve (Right_Opnd (N), Standard_Integer);
9459 -- For integer types, right argument must be in Natural range
9461 if Is_Integer_Type (Typ) then
9462 Apply_Scalar_Range_Check (Right_Opnd (N), Standard_Natural);
9463 end if;
9465 Check_Unset_Reference (Left_Opnd (N));
9466 Check_Unset_Reference (Right_Opnd (N));
9468 Set_Etype (N, B_Typ);
9469 Generate_Operator_Reference (N, B_Typ);
9471 Analyze_Dimension (N);
9473 if Ada_Version >= Ada_2012 and then Has_Dimension_System (B_Typ) then
9474 -- Evaluate the exponentiation operator for dimensioned type
9476 Eval_Op_Expon_For_Dimensioned_Type (N, B_Typ);
9477 else
9478 Eval_Op_Expon (N);
9479 end if;
9481 -- Set overflow checking bit. Much cleverer code needed here eventually
9482 -- and perhaps the Resolve routines should be separated for the various
9483 -- arithmetic operations, since they will need different processing. ???
9485 if Nkind (N) in N_Op then
9486 if not Overflow_Checks_Suppressed (Etype (N)) then
9487 Enable_Overflow_Check (N);
9488 end if;
9489 end if;
9490 end Resolve_Op_Expon;
9492 --------------------
9493 -- Resolve_Op_Not --
9494 --------------------
9496 procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id) is
9497 B_Typ : Entity_Id;
9499 function Parent_Is_Boolean return Boolean;
9500 -- This function determines if the parent node is a boolean operator or
9501 -- operation (comparison op, membership test, or short circuit form) and
9502 -- the not in question is the left operand of this operation. Note that
9503 -- if the not is in parens, then false is returned.
9505 -----------------------
9506 -- Parent_Is_Boolean --
9507 -----------------------
9509 function Parent_Is_Boolean return Boolean is
9510 begin
9511 if Paren_Count (N) /= 0 then
9512 return False;
9514 else
9515 case Nkind (Parent (N)) is
9516 when N_And_Then
9517 | N_In
9518 | N_Not_In
9519 | N_Op_And
9520 | N_Op_Eq
9521 | N_Op_Ge
9522 | N_Op_Gt
9523 | N_Op_Le
9524 | N_Op_Lt
9525 | N_Op_Ne
9526 | N_Op_Or
9527 | N_Op_Xor
9528 | N_Or_Else
9530 return Left_Opnd (Parent (N)) = N;
9532 when others =>
9533 return False;
9534 end case;
9535 end if;
9536 end Parent_Is_Boolean;
9538 -- Start of processing for Resolve_Op_Not
9540 begin
9541 -- Predefined operations on scalar types yield the base type. On the
9542 -- other hand, logical operations on arrays yield the type of the
9543 -- arguments (and the context).
9545 if Is_Array_Type (Typ) then
9546 B_Typ := Typ;
9547 else
9548 B_Typ := Base_Type (Typ);
9549 end if;
9551 -- Straightforward case of incorrect arguments
9553 if not Valid_Boolean_Arg (Typ) then
9554 Error_Msg_N ("invalid operand type for operator&", N);
9555 Set_Etype (N, Any_Type);
9556 return;
9558 -- Special case of probable missing parens
9560 elsif Typ = Universal_Integer or else Typ = Any_Modular then
9561 if Parent_Is_Boolean then
9562 Error_Msg_N
9563 ("operand of not must be enclosed in parentheses",
9564 Right_Opnd (N));
9565 else
9566 Error_Msg_N
9567 ("no modular type available in this context", N);
9568 end if;
9570 Set_Etype (N, Any_Type);
9571 return;
9573 -- OK resolution of NOT
9575 else
9576 -- Warn if non-boolean types involved. This is a case like not a < b
9577 -- where a and b are modular, where we will get (not a) < b and most
9578 -- likely not (a < b) was intended.
9580 if Warn_On_Questionable_Missing_Parens
9581 and then not Is_Boolean_Type (Typ)
9582 and then Parent_Is_Boolean
9583 then
9584 Error_Msg_N ("?q?not expression should be parenthesized here!", N);
9585 end if;
9587 -- Warn on double negation if checking redundant constructs
9589 if Warn_On_Redundant_Constructs
9590 and then Comes_From_Source (N)
9591 and then Comes_From_Source (Right_Opnd (N))
9592 and then Root_Type (Typ) = Standard_Boolean
9593 and then Nkind (Right_Opnd (N)) = N_Op_Not
9594 then
9595 Error_Msg_N ("redundant double negation?r?", N);
9596 end if;
9598 -- Complete resolution and evaluation of NOT
9600 Resolve (Right_Opnd (N), B_Typ);
9601 Check_Unset_Reference (Right_Opnd (N));
9602 Set_Etype (N, B_Typ);
9603 Generate_Operator_Reference (N, B_Typ);
9604 Eval_Op_Not (N);
9605 end if;
9606 end Resolve_Op_Not;
9608 -----------------------------
9609 -- Resolve_Operator_Symbol --
9610 -----------------------------
9612 -- Nothing to be done, all resolved already
9614 procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id) is
9615 pragma Warnings (Off, N);
9616 pragma Warnings (Off, Typ);
9618 begin
9619 null;
9620 end Resolve_Operator_Symbol;
9622 ----------------------------------
9623 -- Resolve_Qualified_Expression --
9624 ----------------------------------
9626 procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id) is
9627 pragma Warnings (Off, Typ);
9629 Target_Typ : constant Entity_Id := Entity (Subtype_Mark (N));
9630 Expr : constant Node_Id := Expression (N);
9632 begin
9633 Resolve (Expr, Target_Typ);
9635 -- Protect call to Matching_Static_Array_Bounds to avoid costly
9636 -- operation if not needed.
9638 if Restriction_Check_Required (SPARK_05)
9639 and then Is_Array_Type (Target_Typ)
9640 and then Is_Array_Type (Etype (Expr))
9641 and then Etype (Expr) /= Any_Composite -- or else Expr in error
9642 and then not Matching_Static_Array_Bounds (Target_Typ, Etype (Expr))
9643 then
9644 Check_SPARK_05_Restriction
9645 ("array types should have matching static bounds", N);
9646 end if;
9648 -- A qualified expression requires an exact match of the type, class-
9649 -- wide matching is not allowed. However, if the qualifying type is
9650 -- specific and the expression has a class-wide type, it may still be
9651 -- okay, since it can be the result of the expansion of a call to a
9652 -- dispatching function, so we also have to check class-wideness of the
9653 -- type of the expression's original node.
9655 if (Is_Class_Wide_Type (Target_Typ)
9656 or else
9657 (Is_Class_Wide_Type (Etype (Expr))
9658 and then Is_Class_Wide_Type (Etype (Original_Node (Expr)))))
9659 and then Base_Type (Etype (Expr)) /= Base_Type (Target_Typ)
9660 then
9661 Wrong_Type (Expr, Target_Typ);
9662 end if;
9664 -- If the target type is unconstrained, then we reset the type of the
9665 -- result from the type of the expression. For other cases, the actual
9666 -- subtype of the expression is the target type.
9668 if Is_Composite_Type (Target_Typ)
9669 and then not Is_Constrained (Target_Typ)
9670 then
9671 Set_Etype (N, Etype (Expr));
9672 end if;
9674 Analyze_Dimension (N);
9675 Eval_Qualified_Expression (N);
9677 -- If we still have a qualified expression after the static evaluation,
9678 -- then apply a scalar range check if needed. The reason that we do this
9679 -- after the Eval call is that otherwise, the application of the range
9680 -- check may convert an illegal static expression and result in warning
9681 -- rather than giving an error (e.g Integer'(Integer'Last + 1)).
9683 if Nkind (N) = N_Qualified_Expression and then Is_Scalar_Type (Typ) then
9684 Apply_Scalar_Range_Check (Expr, Typ);
9685 end if;
9687 -- Finally, check whether a predicate applies to the target type. This
9688 -- comes from AI12-0100. As for type conversions, check the enclosing
9689 -- context to prevent an infinite expansion.
9691 if Has_Predicates (Target_Typ) then
9692 if Nkind (Parent (N)) = N_Function_Call
9693 and then Present (Name (Parent (N)))
9694 and then (Is_Predicate_Function (Entity (Name (Parent (N))))
9695 or else
9696 Is_Predicate_Function_M (Entity (Name (Parent (N)))))
9697 then
9698 null;
9700 -- In the case of a qualified expression in an allocator, the check
9701 -- is applied when expanding the allocator, so avoid redundant check.
9703 elsif Nkind (N) = N_Qualified_Expression
9704 and then Nkind (Parent (N)) /= N_Allocator
9705 then
9706 Apply_Predicate_Check (N, Target_Typ);
9707 end if;
9708 end if;
9709 end Resolve_Qualified_Expression;
9711 ------------------------------
9712 -- Resolve_Raise_Expression --
9713 ------------------------------
9715 procedure Resolve_Raise_Expression (N : Node_Id; Typ : Entity_Id) is
9716 begin
9717 if Typ = Raise_Type then
9718 Error_Msg_N ("cannot find unique type for raise expression", N);
9719 Set_Etype (N, Any_Type);
9720 else
9721 Set_Etype (N, Typ);
9722 end if;
9723 end Resolve_Raise_Expression;
9725 -------------------
9726 -- Resolve_Range --
9727 -------------------
9729 procedure Resolve_Range (N : Node_Id; Typ : Entity_Id) is
9730 L : constant Node_Id := Low_Bound (N);
9731 H : constant Node_Id := High_Bound (N);
9733 function First_Last_Ref return Boolean;
9734 -- Returns True if N is of the form X'First .. X'Last where X is the
9735 -- same entity for both attributes.
9737 --------------------
9738 -- First_Last_Ref --
9739 --------------------
9741 function First_Last_Ref return Boolean is
9742 Lorig : constant Node_Id := Original_Node (L);
9743 Horig : constant Node_Id := Original_Node (H);
9745 begin
9746 if Nkind (Lorig) = N_Attribute_Reference
9747 and then Nkind (Horig) = N_Attribute_Reference
9748 and then Attribute_Name (Lorig) = Name_First
9749 and then Attribute_Name (Horig) = Name_Last
9750 then
9751 declare
9752 PL : constant Node_Id := Prefix (Lorig);
9753 PH : constant Node_Id := Prefix (Horig);
9754 begin
9755 if Is_Entity_Name (PL)
9756 and then Is_Entity_Name (PH)
9757 and then Entity (PL) = Entity (PH)
9758 then
9759 return True;
9760 end if;
9761 end;
9762 end if;
9764 return False;
9765 end First_Last_Ref;
9767 -- Start of processing for Resolve_Range
9769 begin
9770 Set_Etype (N, Typ);
9772 -- The lower bound should be in Typ. The higher bound can be in Typ's
9773 -- base type if the range is null. It may still be invalid if it is
9774 -- higher than the lower bound. This is checked later in the context in
9775 -- which the range appears.
9777 Resolve (L, Typ);
9778 Resolve (H, Base_Type (Typ));
9780 -- Check for inappropriate range on unordered enumeration type
9782 if Bad_Unordered_Enumeration_Reference (N, Typ)
9784 -- Exclude X'First .. X'Last if X is the same entity for both
9786 and then not First_Last_Ref
9787 then
9788 Error_Msg_Sloc := Sloc (Typ);
9789 Error_Msg_NE
9790 ("subrange of unordered enumeration type& declared#?U?", N, Typ);
9791 end if;
9793 Check_Unset_Reference (L);
9794 Check_Unset_Reference (H);
9796 -- We have to check the bounds for being within the base range as
9797 -- required for a non-static context. Normally this is automatic and
9798 -- done as part of evaluating expressions, but the N_Range node is an
9799 -- exception, since in GNAT we consider this node to be a subexpression,
9800 -- even though in Ada it is not. The circuit in Sem_Eval could check for
9801 -- this, but that would put the test on the main evaluation path for
9802 -- expressions.
9804 Check_Non_Static_Context (L);
9805 Check_Non_Static_Context (H);
9807 -- Check for an ambiguous range over character literals. This will
9808 -- happen with a membership test involving only literals.
9810 if Typ = Any_Character then
9811 Ambiguous_Character (L);
9812 Set_Etype (N, Any_Type);
9813 return;
9814 end if;
9816 -- If bounds are static, constant-fold them, so size computations are
9817 -- identical between front-end and back-end. Do not perform this
9818 -- transformation while analyzing generic units, as type information
9819 -- would be lost when reanalyzing the constant node in the instance.
9821 if Is_Discrete_Type (Typ) and then Expander_Active then
9822 if Is_OK_Static_Expression (L) then
9823 Fold_Uint (L, Expr_Value (L), Is_OK_Static_Expression (L));
9824 end if;
9826 if Is_OK_Static_Expression (H) then
9827 Fold_Uint (H, Expr_Value (H), Is_OK_Static_Expression (H));
9828 end if;
9829 end if;
9830 end Resolve_Range;
9832 --------------------------
9833 -- Resolve_Real_Literal --
9834 --------------------------
9836 procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id) is
9837 Actual_Typ : constant Entity_Id := Etype (N);
9839 begin
9840 -- Special processing for fixed-point literals to make sure that the
9841 -- value is an exact multiple of small where this is required. We skip
9842 -- this for the universal real case, and also for generic types.
9844 if Is_Fixed_Point_Type (Typ)
9845 and then Typ /= Universal_Fixed
9846 and then Typ /= Any_Fixed
9847 and then not Is_Generic_Type (Typ)
9848 then
9849 declare
9850 Val : constant Ureal := Realval (N);
9851 Cintr : constant Ureal := Val / Small_Value (Typ);
9852 Cint : constant Uint := UR_Trunc (Cintr);
9853 Den : constant Uint := Norm_Den (Cintr);
9854 Stat : Boolean;
9856 begin
9857 -- Case of literal is not an exact multiple of the Small
9859 if Den /= 1 then
9861 -- For a source program literal for a decimal fixed-point type,
9862 -- this is statically illegal (RM 4.9(36)).
9864 if Is_Decimal_Fixed_Point_Type (Typ)
9865 and then Actual_Typ = Universal_Real
9866 and then Comes_From_Source (N)
9867 then
9868 Error_Msg_N ("value has extraneous low order digits", N);
9869 end if;
9871 -- Generate a warning if literal from source
9873 if Is_OK_Static_Expression (N)
9874 and then Warn_On_Bad_Fixed_Value
9875 then
9876 Error_Msg_N
9877 ("?b?static fixed-point value is not a multiple of Small!",
9879 end if;
9881 -- Replace literal by a value that is the exact representation
9882 -- of a value of the type, i.e. a multiple of the small value,
9883 -- by truncation, since Machine_Rounds is false for all GNAT
9884 -- fixed-point types (RM 4.9(38)).
9886 Stat := Is_OK_Static_Expression (N);
9887 Rewrite (N,
9888 Make_Real_Literal (Sloc (N),
9889 Realval => Small_Value (Typ) * Cint));
9891 Set_Is_Static_Expression (N, Stat);
9892 end if;
9894 -- In all cases, set the corresponding integer field
9896 Set_Corresponding_Integer_Value (N, Cint);
9897 end;
9898 end if;
9900 -- Now replace the actual type by the expected type as usual
9902 Set_Etype (N, Typ);
9903 Eval_Real_Literal (N);
9904 end Resolve_Real_Literal;
9906 -----------------------
9907 -- Resolve_Reference --
9908 -----------------------
9910 procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id) is
9911 P : constant Node_Id := Prefix (N);
9913 begin
9914 -- Replace general access with specific type
9916 if Ekind (Etype (N)) = E_Allocator_Type then
9917 Set_Etype (N, Base_Type (Typ));
9918 end if;
9920 Resolve (P, Designated_Type (Etype (N)));
9922 -- If we are taking the reference of a volatile entity, then treat it as
9923 -- a potential modification of this entity. This is too conservative,
9924 -- but necessary because remove side effects can cause transformations
9925 -- of normal assignments into reference sequences that otherwise fail to
9926 -- notice the modification.
9928 if Is_Entity_Name (P) and then Treat_As_Volatile (Entity (P)) then
9929 Note_Possible_Modification (P, Sure => False);
9930 end if;
9931 end Resolve_Reference;
9933 --------------------------------
9934 -- Resolve_Selected_Component --
9935 --------------------------------
9937 procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id) is
9938 Comp : Entity_Id;
9939 Comp1 : Entity_Id := Empty; -- prevent junk warning
9940 P : constant Node_Id := Prefix (N);
9941 S : constant Node_Id := Selector_Name (N);
9942 T : Entity_Id := Etype (P);
9943 I : Interp_Index;
9944 I1 : Interp_Index := 0; -- prevent junk warning
9945 It : Interp;
9946 It1 : Interp;
9947 Found : Boolean;
9949 function Init_Component return Boolean;
9950 -- Check whether this is the initialization of a component within an
9951 -- init proc (by assignment or call to another init proc). If true,
9952 -- there is no need for a discriminant check.
9954 --------------------
9955 -- Init_Component --
9956 --------------------
9958 function Init_Component return Boolean is
9959 begin
9960 return Inside_Init_Proc
9961 and then Nkind (Prefix (N)) = N_Identifier
9962 and then Chars (Prefix (N)) = Name_uInit
9963 and then Nkind (Parent (Parent (N))) = N_Case_Statement_Alternative;
9964 end Init_Component;
9966 -- Start of processing for Resolve_Selected_Component
9968 begin
9969 if Is_Overloaded (P) then
9971 -- Use the context type to select the prefix that has a selector
9972 -- of the correct name and type.
9974 Found := False;
9975 Get_First_Interp (P, I, It);
9977 Search : while Present (It.Typ) loop
9978 if Is_Access_Type (It.Typ) then
9979 T := Designated_Type (It.Typ);
9980 else
9981 T := It.Typ;
9982 end if;
9984 -- Locate selected component. For a private prefix the selector
9985 -- can denote a discriminant.
9987 if Is_Record_Type (T) or else Is_Private_Type (T) then
9989 -- The visible components of a class-wide type are those of
9990 -- the root type.
9992 if Is_Class_Wide_Type (T) then
9993 T := Etype (T);
9994 end if;
9996 Comp := First_Entity (T);
9997 while Present (Comp) loop
9998 if Chars (Comp) = Chars (S)
9999 and then Covers (Typ, Etype (Comp))
10000 then
10001 if not Found then
10002 Found := True;
10003 I1 := I;
10004 It1 := It;
10005 Comp1 := Comp;
10007 else
10008 It := Disambiguate (P, I1, I, Any_Type);
10010 if It = No_Interp then
10011 Error_Msg_N
10012 ("ambiguous prefix for selected component", N);
10013 Set_Etype (N, Typ);
10014 return;
10016 else
10017 It1 := It;
10019 -- There may be an implicit dereference. Retrieve
10020 -- designated record type.
10022 if Is_Access_Type (It1.Typ) then
10023 T := Designated_Type (It1.Typ);
10024 else
10025 T := It1.Typ;
10026 end if;
10028 if Scope (Comp1) /= T then
10030 -- Resolution chooses the new interpretation.
10031 -- Find the component with the right name.
10033 Comp1 := First_Entity (T);
10034 while Present (Comp1)
10035 and then Chars (Comp1) /= Chars (S)
10036 loop
10037 Comp1 := Next_Entity (Comp1);
10038 end loop;
10039 end if;
10041 exit Search;
10042 end if;
10043 end if;
10044 end if;
10046 Comp := Next_Entity (Comp);
10047 end loop;
10048 end if;
10050 Get_Next_Interp (I, It);
10051 end loop Search;
10053 -- There must be a legal interpretation at this point
10055 pragma Assert (Found);
10056 Resolve (P, It1.Typ);
10057 Set_Etype (N, Typ);
10058 Set_Entity_With_Checks (S, Comp1);
10060 else
10061 -- Resolve prefix with its type
10063 Resolve (P, T);
10064 end if;
10066 -- Generate cross-reference. We needed to wait until full overloading
10067 -- resolution was complete to do this, since otherwise we can't tell if
10068 -- we are an lvalue or not.
10070 if May_Be_Lvalue (N) then
10071 Generate_Reference (Entity (S), S, 'm');
10072 else
10073 Generate_Reference (Entity (S), S, 'r');
10074 end if;
10076 -- If prefix is an access type, the node will be transformed into an
10077 -- explicit dereference during expansion. The type of the node is the
10078 -- designated type of that of the prefix.
10080 if Is_Access_Type (Etype (P)) then
10081 T := Designated_Type (Etype (P));
10082 Check_Fully_Declared_Prefix (T, P);
10083 else
10084 T := Etype (P);
10085 end if;
10087 -- Set flag for expander if discriminant check required on a component
10088 -- appearing within a variant.
10090 if Has_Discriminants (T)
10091 and then Ekind (Entity (S)) = E_Component
10092 and then Present (Original_Record_Component (Entity (S)))
10093 and then Ekind (Original_Record_Component (Entity (S))) = E_Component
10094 and then
10095 Is_Declared_Within_Variant (Original_Record_Component (Entity (S)))
10096 and then not Discriminant_Checks_Suppressed (T)
10097 and then not Init_Component
10098 then
10099 Set_Do_Discriminant_Check (N);
10100 end if;
10102 if Ekind (Entity (S)) = E_Void then
10103 Error_Msg_N ("premature use of component", S);
10104 end if;
10106 -- If the prefix is a record conversion, this may be a renamed
10107 -- discriminant whose bounds differ from those of the original
10108 -- one, so we must ensure that a range check is performed.
10110 if Nkind (P) = N_Type_Conversion
10111 and then Ekind (Entity (S)) = E_Discriminant
10112 and then Is_Discrete_Type (Typ)
10113 then
10114 Set_Etype (N, Base_Type (Typ));
10115 end if;
10117 -- Note: No Eval processing is required, because the prefix is of a
10118 -- record type, or protected type, and neither can possibly be static.
10120 -- If the record type is atomic, and the component is non-atomic, then
10121 -- this is worth a warning, since we have a situation where the access
10122 -- to the component may cause extra read/writes of the atomic array
10123 -- object, or partial word accesses, both of which may be unexpected.
10125 if Nkind (N) = N_Selected_Component
10126 and then Is_Atomic_Ref_With_Address (N)
10127 and then not Is_Atomic (Entity (S))
10128 and then not Is_Atomic (Etype (Entity (S)))
10129 then
10130 Error_Msg_N
10131 ("??access to non-atomic component of atomic record",
10132 Prefix (N));
10133 Error_Msg_N
10134 ("\??may cause unexpected accesses to atomic object",
10135 Prefix (N));
10136 end if;
10138 Analyze_Dimension (N);
10139 end Resolve_Selected_Component;
10141 -------------------
10142 -- Resolve_Shift --
10143 -------------------
10145 procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id) is
10146 B_Typ : constant Entity_Id := Base_Type (Typ);
10147 L : constant Node_Id := Left_Opnd (N);
10148 R : constant Node_Id := Right_Opnd (N);
10150 begin
10151 -- We do the resolution using the base type, because intermediate values
10152 -- in expressions always are of the base type, not a subtype of it.
10154 Resolve (L, B_Typ);
10155 Resolve (R, Standard_Natural);
10157 Check_Unset_Reference (L);
10158 Check_Unset_Reference (R);
10160 Set_Etype (N, B_Typ);
10161 Generate_Operator_Reference (N, B_Typ);
10162 Eval_Shift (N);
10163 end Resolve_Shift;
10165 ---------------------------
10166 -- Resolve_Short_Circuit --
10167 ---------------------------
10169 procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id) is
10170 B_Typ : constant Entity_Id := Base_Type (Typ);
10171 L : constant Node_Id := Left_Opnd (N);
10172 R : constant Node_Id := Right_Opnd (N);
10174 begin
10175 -- Ensure all actions associated with the left operand (e.g.
10176 -- finalization of transient objects) are fully evaluated locally within
10177 -- an expression with actions. This is particularly helpful for coverage
10178 -- analysis. However this should not happen in generics or if option
10179 -- Minimize_Expression_With_Actions is set.
10181 if Expander_Active and not Minimize_Expression_With_Actions then
10182 declare
10183 Reloc_L : constant Node_Id := Relocate_Node (L);
10184 begin
10185 Save_Interps (Old_N => L, New_N => Reloc_L);
10187 Rewrite (L,
10188 Make_Expression_With_Actions (Sloc (L),
10189 Actions => New_List,
10190 Expression => Reloc_L));
10192 -- Set Comes_From_Source on L to preserve warnings for unset
10193 -- reference.
10195 Set_Comes_From_Source (L, Comes_From_Source (Reloc_L));
10196 end;
10197 end if;
10199 Resolve (L, B_Typ);
10200 Resolve (R, B_Typ);
10202 -- Check for issuing warning for always False assert/check, this happens
10203 -- when assertions are turned off, in which case the pragma Assert/Check
10204 -- was transformed into:
10206 -- if False and then <condition> then ...
10208 -- and we detect this pattern
10210 if Warn_On_Assertion_Failure
10211 and then Is_Entity_Name (R)
10212 and then Entity (R) = Standard_False
10213 and then Nkind (Parent (N)) = N_If_Statement
10214 and then Nkind (N) = N_And_Then
10215 and then Is_Entity_Name (L)
10216 and then Entity (L) = Standard_False
10217 then
10218 declare
10219 Orig : constant Node_Id := Original_Node (Parent (N));
10221 begin
10222 -- Special handling of Asssert pragma
10224 if Nkind (Orig) = N_Pragma
10225 and then Pragma_Name (Orig) = Name_Assert
10226 then
10227 declare
10228 Expr : constant Node_Id :=
10229 Original_Node
10230 (Expression
10231 (First (Pragma_Argument_Associations (Orig))));
10233 begin
10234 -- Don't warn if original condition is explicit False,
10235 -- since obviously the failure is expected in this case.
10237 if Is_Entity_Name (Expr)
10238 and then Entity (Expr) = Standard_False
10239 then
10240 null;
10242 -- Issue warning. We do not want the deletion of the
10243 -- IF/AND-THEN to take this message with it. We achieve this
10244 -- by making sure that the expanded code points to the Sloc
10245 -- of the expression, not the original pragma.
10247 else
10248 -- Note: Use Error_Msg_F here rather than Error_Msg_N.
10249 -- The source location of the expression is not usually
10250 -- the best choice here. For example, it gets located on
10251 -- the last AND keyword in a chain of boolean expressiond
10252 -- AND'ed together. It is best to put the message on the
10253 -- first character of the assertion, which is the effect
10254 -- of the First_Node call here.
10256 Error_Msg_F
10257 ("?A?assertion would fail at run time!",
10258 Expression
10259 (First (Pragma_Argument_Associations (Orig))));
10260 end if;
10261 end;
10263 -- Similar processing for Check pragma
10265 elsif Nkind (Orig) = N_Pragma
10266 and then Pragma_Name (Orig) = Name_Check
10267 then
10268 -- Don't want to warn if original condition is explicit False
10270 declare
10271 Expr : constant Node_Id :=
10272 Original_Node
10273 (Expression
10274 (Next (First (Pragma_Argument_Associations (Orig)))));
10275 begin
10276 if Is_Entity_Name (Expr)
10277 and then Entity (Expr) = Standard_False
10278 then
10279 null;
10281 -- Post warning
10283 else
10284 -- Again use Error_Msg_F rather than Error_Msg_N, see
10285 -- comment above for an explanation of why we do this.
10287 Error_Msg_F
10288 ("?A?check would fail at run time!",
10289 Expression
10290 (Last (Pragma_Argument_Associations (Orig))));
10291 end if;
10292 end;
10293 end if;
10294 end;
10295 end if;
10297 -- Continue with processing of short circuit
10299 Check_Unset_Reference (L);
10300 Check_Unset_Reference (R);
10302 Set_Etype (N, B_Typ);
10303 Eval_Short_Circuit (N);
10304 end Resolve_Short_Circuit;
10306 -------------------
10307 -- Resolve_Slice --
10308 -------------------
10310 procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id) is
10311 Drange : constant Node_Id := Discrete_Range (N);
10312 Name : constant Node_Id := Prefix (N);
10313 Array_Type : Entity_Id := Empty;
10314 Dexpr : Node_Id := Empty;
10315 Index_Type : Entity_Id;
10317 begin
10318 if Is_Overloaded (Name) then
10320 -- Use the context type to select the prefix that yields the correct
10321 -- array type.
10323 declare
10324 I : Interp_Index;
10325 I1 : Interp_Index := 0;
10326 It : Interp;
10327 P : constant Node_Id := Prefix (N);
10328 Found : Boolean := False;
10330 begin
10331 Get_First_Interp (P, I, It);
10332 while Present (It.Typ) loop
10333 if (Is_Array_Type (It.Typ)
10334 and then Covers (Typ, It.Typ))
10335 or else (Is_Access_Type (It.Typ)
10336 and then Is_Array_Type (Designated_Type (It.Typ))
10337 and then Covers (Typ, Designated_Type (It.Typ)))
10338 then
10339 if Found then
10340 It := Disambiguate (P, I1, I, Any_Type);
10342 if It = No_Interp then
10343 Error_Msg_N ("ambiguous prefix for slicing", N);
10344 Set_Etype (N, Typ);
10345 return;
10346 else
10347 Found := True;
10348 Array_Type := It.Typ;
10349 I1 := I;
10350 end if;
10351 else
10352 Found := True;
10353 Array_Type := It.Typ;
10354 I1 := I;
10355 end if;
10356 end if;
10358 Get_Next_Interp (I, It);
10359 end loop;
10360 end;
10362 else
10363 Array_Type := Etype (Name);
10364 end if;
10366 Resolve (Name, Array_Type);
10368 if Is_Access_Type (Array_Type) then
10369 Apply_Access_Check (N);
10370 Array_Type := Designated_Type (Array_Type);
10372 -- If the prefix is an access to an unconstrained array, we must use
10373 -- the actual subtype of the object to perform the index checks. The
10374 -- object denoted by the prefix is implicit in the node, so we build
10375 -- an explicit representation for it in order to compute the actual
10376 -- subtype.
10378 if not Is_Constrained (Array_Type) then
10379 Remove_Side_Effects (Prefix (N));
10381 declare
10382 Obj : constant Node_Id :=
10383 Make_Explicit_Dereference (Sloc (N),
10384 Prefix => New_Copy_Tree (Prefix (N)));
10385 begin
10386 Set_Etype (Obj, Array_Type);
10387 Set_Parent (Obj, Parent (N));
10388 Array_Type := Get_Actual_Subtype (Obj);
10389 end;
10390 end if;
10392 elsif Is_Entity_Name (Name)
10393 or else Nkind (Name) = N_Explicit_Dereference
10394 or else (Nkind (Name) = N_Function_Call
10395 and then not Is_Constrained (Etype (Name)))
10396 then
10397 Array_Type := Get_Actual_Subtype (Name);
10399 -- If the name is a selected component that depends on discriminants,
10400 -- build an actual subtype for it. This can happen only when the name
10401 -- itself is overloaded; otherwise the actual subtype is created when
10402 -- the selected component is analyzed.
10404 elsif Nkind (Name) = N_Selected_Component
10405 and then Full_Analysis
10406 and then Depends_On_Discriminant (First_Index (Array_Type))
10407 then
10408 declare
10409 Act_Decl : constant Node_Id :=
10410 Build_Actual_Subtype_Of_Component (Array_Type, Name);
10411 begin
10412 Insert_Action (N, Act_Decl);
10413 Array_Type := Defining_Identifier (Act_Decl);
10414 end;
10416 -- Maybe this should just be "else", instead of checking for the
10417 -- specific case of slice??? This is needed for the case where the
10418 -- prefix is an Image attribute, which gets expanded to a slice, and so
10419 -- has a constrained subtype which we want to use for the slice range
10420 -- check applied below (the range check won't get done if the
10421 -- unconstrained subtype of the 'Image is used).
10423 elsif Nkind (Name) = N_Slice then
10424 Array_Type := Etype (Name);
10425 end if;
10427 -- Obtain the type of the array index
10429 if Ekind (Array_Type) = E_String_Literal_Subtype then
10430 Index_Type := Etype (String_Literal_Low_Bound (Array_Type));
10431 else
10432 Index_Type := Etype (First_Index (Array_Type));
10433 end if;
10435 -- If name was overloaded, set slice type correctly now
10437 Set_Etype (N, Array_Type);
10439 -- Handle the generation of a range check that compares the array index
10440 -- against the discrete_range. The check is not applied to internally
10441 -- built nodes associated with the expansion of dispatch tables. Check
10442 -- that Ada.Tags has already been loaded to avoid extra dependencies on
10443 -- the unit.
10445 if Tagged_Type_Expansion
10446 and then RTU_Loaded (Ada_Tags)
10447 and then Nkind (Prefix (N)) = N_Selected_Component
10448 and then Present (Entity (Selector_Name (Prefix (N))))
10449 and then Entity (Selector_Name (Prefix (N))) =
10450 RTE_Record_Component (RE_Prims_Ptr)
10451 then
10452 null;
10454 -- The discrete_range is specified by a subtype indication. Create a
10455 -- shallow copy and inherit the type, parent and source location from
10456 -- the discrete_range. This ensures that the range check is inserted
10457 -- relative to the slice and that the runtime exception points to the
10458 -- proper construct.
10460 elsif Is_Entity_Name (Drange) then
10461 Dexpr := New_Copy (Scalar_Range (Entity (Drange)));
10463 Set_Etype (Dexpr, Etype (Drange));
10464 Set_Parent (Dexpr, Parent (Drange));
10465 Set_Sloc (Dexpr, Sloc (Drange));
10467 -- The discrete_range is a regular range. Resolve the bounds and remove
10468 -- their side effects.
10470 else
10471 Resolve (Drange, Base_Type (Index_Type));
10473 if Nkind (Drange) = N_Range then
10474 Force_Evaluation (Low_Bound (Drange));
10475 Force_Evaluation (High_Bound (Drange));
10477 Dexpr := Drange;
10478 end if;
10479 end if;
10481 if Present (Dexpr) then
10482 Apply_Range_Check (Dexpr, Index_Type);
10483 end if;
10485 Set_Slice_Subtype (N);
10487 -- Check bad use of type with predicates
10489 declare
10490 Subt : Entity_Id;
10492 begin
10493 if Nkind (Drange) = N_Subtype_Indication
10494 and then Has_Predicates (Entity (Subtype_Mark (Drange)))
10495 then
10496 Subt := Entity (Subtype_Mark (Drange));
10497 else
10498 Subt := Etype (Drange);
10499 end if;
10501 if Has_Predicates (Subt) then
10502 Bad_Predicated_Subtype_Use
10503 ("subtype& has predicate, not allowed in slice", Drange, Subt);
10504 end if;
10505 end;
10507 -- Otherwise here is where we check suspicious indexes
10509 if Nkind (Drange) = N_Range then
10510 Warn_On_Suspicious_Index (Name, Low_Bound (Drange));
10511 Warn_On_Suspicious_Index (Name, High_Bound (Drange));
10512 end if;
10514 Analyze_Dimension (N);
10515 Eval_Slice (N);
10516 end Resolve_Slice;
10518 ----------------------------
10519 -- Resolve_String_Literal --
10520 ----------------------------
10522 procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id) is
10523 C_Typ : constant Entity_Id := Component_Type (Typ);
10524 R_Typ : constant Entity_Id := Root_Type (C_Typ);
10525 Loc : constant Source_Ptr := Sloc (N);
10526 Str : constant String_Id := Strval (N);
10527 Strlen : constant Nat := String_Length (Str);
10528 Subtype_Id : Entity_Id;
10529 Need_Check : Boolean;
10531 begin
10532 -- For a string appearing in a concatenation, defer creation of the
10533 -- string_literal_subtype until the end of the resolution of the
10534 -- concatenation, because the literal may be constant-folded away. This
10535 -- is a useful optimization for long concatenation expressions.
10537 -- If the string is an aggregate built for a single character (which
10538 -- happens in a non-static context) or a is null string to which special
10539 -- checks may apply, we build the subtype. Wide strings must also get a
10540 -- string subtype if they come from a one character aggregate. Strings
10541 -- generated by attributes might be static, but it is often hard to
10542 -- determine whether the enclosing context is static, so we generate
10543 -- subtypes for them as well, thus losing some rarer optimizations ???
10544 -- Same for strings that come from a static conversion.
10546 Need_Check :=
10547 (Strlen = 0 and then Typ /= Standard_String)
10548 or else Nkind (Parent (N)) /= N_Op_Concat
10549 or else (N /= Left_Opnd (Parent (N))
10550 and then N /= Right_Opnd (Parent (N)))
10551 or else ((Typ = Standard_Wide_String
10552 or else Typ = Standard_Wide_Wide_String)
10553 and then Nkind (Original_Node (N)) /= N_String_Literal);
10555 -- If the resolving type is itself a string literal subtype, we can just
10556 -- reuse it, since there is no point in creating another.
10558 if Ekind (Typ) = E_String_Literal_Subtype then
10559 Subtype_Id := Typ;
10561 elsif Nkind (Parent (N)) = N_Op_Concat
10562 and then not Need_Check
10563 and then not Nkind_In (Original_Node (N), N_Character_Literal,
10564 N_Attribute_Reference,
10565 N_Qualified_Expression,
10566 N_Type_Conversion)
10567 then
10568 Subtype_Id := Typ;
10570 -- Do not generate a string literal subtype for the default expression
10571 -- of a formal parameter in GNATprove mode. This is because the string
10572 -- subtype is associated with the freezing actions of the subprogram,
10573 -- however freezing is disabled in GNATprove mode and as a result the
10574 -- subtype is unavailable.
10576 elsif GNATprove_Mode
10577 and then Nkind (Parent (N)) = N_Parameter_Specification
10578 then
10579 Subtype_Id := Typ;
10581 -- Otherwise we must create a string literal subtype. Note that the
10582 -- whole idea of string literal subtypes is simply to avoid the need
10583 -- for building a full fledged array subtype for each literal.
10585 else
10586 Set_String_Literal_Subtype (N, Typ);
10587 Subtype_Id := Etype (N);
10588 end if;
10590 if Nkind (Parent (N)) /= N_Op_Concat
10591 or else Need_Check
10592 then
10593 Set_Etype (N, Subtype_Id);
10594 Eval_String_Literal (N);
10595 end if;
10597 if Is_Limited_Composite (Typ)
10598 or else Is_Private_Composite (Typ)
10599 then
10600 Error_Msg_N ("string literal not available for private array", N);
10601 Set_Etype (N, Any_Type);
10602 return;
10603 end if;
10605 -- The validity of a null string has been checked in the call to
10606 -- Eval_String_Literal.
10608 if Strlen = 0 then
10609 return;
10611 -- Always accept string literal with component type Any_Character, which
10612 -- occurs in error situations and in comparisons of literals, both of
10613 -- which should accept all literals.
10615 elsif R_Typ = Any_Character then
10616 return;
10618 -- If the type is bit-packed, then we always transform the string
10619 -- literal into a full fledged aggregate.
10621 elsif Is_Bit_Packed_Array (Typ) then
10622 null;
10624 -- Deal with cases of Wide_Wide_String, Wide_String, and String
10626 else
10627 -- For Standard.Wide_Wide_String, or any other type whose component
10628 -- type is Standard.Wide_Wide_Character, we know that all the
10629 -- characters in the string must be acceptable, since the parser
10630 -- accepted the characters as valid character literals.
10632 if R_Typ = Standard_Wide_Wide_Character then
10633 null;
10635 -- For the case of Standard.String, or any other type whose component
10636 -- type is Standard.Character, we must make sure that there are no
10637 -- wide characters in the string, i.e. that it is entirely composed
10638 -- of characters in range of type Character.
10640 -- If the string literal is the result of a static concatenation, the
10641 -- test has already been performed on the components, and need not be
10642 -- repeated.
10644 elsif R_Typ = Standard_Character
10645 and then Nkind (Original_Node (N)) /= N_Op_Concat
10646 then
10647 for J in 1 .. Strlen loop
10648 if not In_Character_Range (Get_String_Char (Str, J)) then
10650 -- If we are out of range, post error. This is one of the
10651 -- very few places that we place the flag in the middle of
10652 -- a token, right under the offending wide character. Not
10653 -- quite clear if this is right wrt wide character encoding
10654 -- sequences, but it's only an error message.
10656 Error_Msg
10657 ("literal out of range of type Standard.Character",
10658 Source_Ptr (Int (Loc) + J));
10659 return;
10660 end if;
10661 end loop;
10663 -- For the case of Standard.Wide_String, or any other type whose
10664 -- component type is Standard.Wide_Character, we must make sure that
10665 -- there are no wide characters in the string, i.e. that it is
10666 -- entirely composed of characters in range of type Wide_Character.
10668 -- If the string literal is the result of a static concatenation,
10669 -- the test has already been performed on the components, and need
10670 -- not be repeated.
10672 elsif R_Typ = Standard_Wide_Character
10673 and then Nkind (Original_Node (N)) /= N_Op_Concat
10674 then
10675 for J in 1 .. Strlen loop
10676 if not In_Wide_Character_Range (Get_String_Char (Str, J)) then
10678 -- If we are out of range, post error. This is one of the
10679 -- very few places that we place the flag in the middle of
10680 -- a token, right under the offending wide character.
10682 -- This is not quite right, because characters in general
10683 -- will take more than one character position ???
10685 Error_Msg
10686 ("literal out of range of type Standard.Wide_Character",
10687 Source_Ptr (Int (Loc) + J));
10688 return;
10689 end if;
10690 end loop;
10692 -- If the root type is not a standard character, then we will convert
10693 -- the string into an aggregate and will let the aggregate code do
10694 -- the checking. Standard Wide_Wide_Character is also OK here.
10696 else
10697 null;
10698 end if;
10700 -- See if the component type of the array corresponding to the string
10701 -- has compile time known bounds. If yes we can directly check
10702 -- whether the evaluation of the string will raise constraint error.
10703 -- Otherwise we need to transform the string literal into the
10704 -- corresponding character aggregate and let the aggregate code do
10705 -- the checking.
10707 if Is_Standard_Character_Type (R_Typ) then
10709 -- Check for the case of full range, where we are definitely OK
10711 if Component_Type (Typ) = Base_Type (Component_Type (Typ)) then
10712 return;
10713 end if;
10715 -- Here the range is not the complete base type range, so check
10717 declare
10718 Comp_Typ_Lo : constant Node_Id :=
10719 Type_Low_Bound (Component_Type (Typ));
10720 Comp_Typ_Hi : constant Node_Id :=
10721 Type_High_Bound (Component_Type (Typ));
10723 Char_Val : Uint;
10725 begin
10726 if Compile_Time_Known_Value (Comp_Typ_Lo)
10727 and then Compile_Time_Known_Value (Comp_Typ_Hi)
10728 then
10729 for J in 1 .. Strlen loop
10730 Char_Val := UI_From_Int (Int (Get_String_Char (Str, J)));
10732 if Char_Val < Expr_Value (Comp_Typ_Lo)
10733 or else Char_Val > Expr_Value (Comp_Typ_Hi)
10734 then
10735 Apply_Compile_Time_Constraint_Error
10736 (N, "character out of range??",
10737 CE_Range_Check_Failed,
10738 Loc => Source_Ptr (Int (Loc) + J));
10739 end if;
10740 end loop;
10742 return;
10743 end if;
10744 end;
10745 end if;
10746 end if;
10748 -- If we got here we meed to transform the string literal into the
10749 -- equivalent qualified positional array aggregate. This is rather
10750 -- heavy artillery for this situation, but it is hard work to avoid.
10752 declare
10753 Lits : constant List_Id := New_List;
10754 P : Source_Ptr := Loc + 1;
10755 C : Char_Code;
10757 begin
10758 -- Build the character literals, we give them source locations that
10759 -- correspond to the string positions, which is a bit tricky given
10760 -- the possible presence of wide character escape sequences.
10762 for J in 1 .. Strlen loop
10763 C := Get_String_Char (Str, J);
10764 Set_Character_Literal_Name (C);
10766 Append_To (Lits,
10767 Make_Character_Literal (P,
10768 Chars => Name_Find,
10769 Char_Literal_Value => UI_From_CC (C)));
10771 if In_Character_Range (C) then
10772 P := P + 1;
10774 -- Should we have a call to Skip_Wide here ???
10776 -- ??? else
10777 -- Skip_Wide (P);
10779 end if;
10780 end loop;
10782 Rewrite (N,
10783 Make_Qualified_Expression (Loc,
10784 Subtype_Mark => New_Occurrence_Of (Typ, Loc),
10785 Expression =>
10786 Make_Aggregate (Loc, Expressions => Lits)));
10788 Analyze_And_Resolve (N, Typ);
10789 end;
10790 end Resolve_String_Literal;
10792 -------------------------
10793 -- Resolve_Target_Name --
10794 -------------------------
10796 procedure Resolve_Target_Name (N : Node_Id; Typ : Entity_Id) is
10797 begin
10798 Set_Etype (N, Typ);
10799 end Resolve_Target_Name;
10801 -----------------------------
10802 -- Resolve_Type_Conversion --
10803 -----------------------------
10805 procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id) is
10806 Conv_OK : constant Boolean := Conversion_OK (N);
10807 Operand : constant Node_Id := Expression (N);
10808 Operand_Typ : constant Entity_Id := Etype (Operand);
10809 Target_Typ : constant Entity_Id := Etype (N);
10810 Rop : Node_Id;
10811 Orig_N : Node_Id;
10812 Orig_T : Node_Id;
10814 Test_Redundant : Boolean := Warn_On_Redundant_Constructs;
10815 -- Set to False to suppress cases where we want to suppress the test
10816 -- for redundancy to avoid possible false positives on this warning.
10818 begin
10819 if not Conv_OK
10820 and then not Valid_Conversion (N, Target_Typ, Operand)
10821 then
10822 return;
10823 end if;
10825 -- If the Operand Etype is Universal_Fixed, then the conversion is
10826 -- never redundant. We need this check because by the time we have
10827 -- finished the rather complex transformation, the conversion looks
10828 -- redundant when it is not.
10830 if Operand_Typ = Universal_Fixed then
10831 Test_Redundant := False;
10833 -- If the operand is marked as Any_Fixed, then special processing is
10834 -- required. This is also a case where we suppress the test for a
10835 -- redundant conversion, since most certainly it is not redundant.
10837 elsif Operand_Typ = Any_Fixed then
10838 Test_Redundant := False;
10840 -- Mixed-mode operation involving a literal. Context must be a fixed
10841 -- type which is applied to the literal subsequently.
10843 -- Multiplication and division involving two fixed type operands must
10844 -- yield a universal real because the result is computed in arbitrary
10845 -- precision.
10847 if Is_Fixed_Point_Type (Typ)
10848 and then Nkind_In (Operand, N_Op_Divide, N_Op_Multiply)
10849 and then Etype (Left_Opnd (Operand)) = Any_Fixed
10850 and then Etype (Right_Opnd (Operand)) = Any_Fixed
10851 then
10852 Set_Etype (Operand, Universal_Real);
10854 elsif Is_Numeric_Type (Typ)
10855 and then Nkind_In (Operand, N_Op_Multiply, N_Op_Divide)
10856 and then (Etype (Right_Opnd (Operand)) = Universal_Real
10857 or else
10858 Etype (Left_Opnd (Operand)) = Universal_Real)
10859 then
10860 -- Return if expression is ambiguous
10862 if Unique_Fixed_Point_Type (N) = Any_Type then
10863 return;
10865 -- If nothing else, the available fixed type is Duration
10867 else
10868 Set_Etype (Operand, Standard_Duration);
10869 end if;
10871 -- Resolve the real operand with largest available precision
10873 if Etype (Right_Opnd (Operand)) = Universal_Real then
10874 Rop := New_Copy_Tree (Right_Opnd (Operand));
10875 else
10876 Rop := New_Copy_Tree (Left_Opnd (Operand));
10877 end if;
10879 Resolve (Rop, Universal_Real);
10881 -- If the operand is a literal (it could be a non-static and
10882 -- illegal exponentiation) check whether the use of Duration
10883 -- is potentially inaccurate.
10885 if Nkind (Rop) = N_Real_Literal
10886 and then Realval (Rop) /= Ureal_0
10887 and then abs (Realval (Rop)) < Delta_Value (Standard_Duration)
10888 then
10889 Error_Msg_N
10890 ("??universal real operand can only "
10891 & "be interpreted as Duration!", Rop);
10892 Error_Msg_N
10893 ("\??precision will be lost in the conversion!", Rop);
10894 end if;
10896 elsif Is_Numeric_Type (Typ)
10897 and then Nkind (Operand) in N_Op
10898 and then Unique_Fixed_Point_Type (N) /= Any_Type
10899 then
10900 Set_Etype (Operand, Standard_Duration);
10902 else
10903 Error_Msg_N ("invalid context for mixed mode operation", N);
10904 Set_Etype (Operand, Any_Type);
10905 return;
10906 end if;
10907 end if;
10909 Resolve (Operand);
10911 -- In SPARK, a type conversion between array types should be restricted
10912 -- to types which have matching static bounds.
10914 -- Protect call to Matching_Static_Array_Bounds to avoid costly
10915 -- operation if not needed.
10917 if Restriction_Check_Required (SPARK_05)
10918 and then Is_Array_Type (Target_Typ)
10919 and then Is_Array_Type (Operand_Typ)
10920 and then Operand_Typ /= Any_Composite -- or else Operand in error
10921 and then not Matching_Static_Array_Bounds (Target_Typ, Operand_Typ)
10922 then
10923 Check_SPARK_05_Restriction
10924 ("array types should have matching static bounds", N);
10925 end if;
10927 -- In formal mode, the operand of an ancestor type conversion must be an
10928 -- object (not an expression).
10930 if Is_Tagged_Type (Target_Typ)
10931 and then not Is_Class_Wide_Type (Target_Typ)
10932 and then Is_Tagged_Type (Operand_Typ)
10933 and then not Is_Class_Wide_Type (Operand_Typ)
10934 and then Is_Ancestor (Target_Typ, Operand_Typ)
10935 and then not Is_SPARK_05_Object_Reference (Operand)
10936 then
10937 Check_SPARK_05_Restriction ("object required", Operand);
10938 end if;
10940 Analyze_Dimension (N);
10942 -- Note: we do the Eval_Type_Conversion call before applying the
10943 -- required checks for a subtype conversion. This is important, since
10944 -- both are prepared under certain circumstances to change the type
10945 -- conversion to a constraint error node, but in the case of
10946 -- Eval_Type_Conversion this may reflect an illegality in the static
10947 -- case, and we would miss the illegality (getting only a warning
10948 -- message), if we applied the type conversion checks first.
10950 Eval_Type_Conversion (N);
10952 -- Even when evaluation is not possible, we may be able to simplify the
10953 -- conversion or its expression. This needs to be done before applying
10954 -- checks, since otherwise the checks may use the original expression
10955 -- and defeat the simplifications. This is specifically the case for
10956 -- elimination of the floating-point Truncation attribute in
10957 -- float-to-int conversions.
10959 Simplify_Type_Conversion (N);
10961 -- If after evaluation we still have a type conversion, then we may need
10962 -- to apply checks required for a subtype conversion.
10964 -- Skip these type conversion checks if universal fixed operands
10965 -- operands involved, since range checks are handled separately for
10966 -- these cases (in the appropriate Expand routines in unit Exp_Fixd).
10968 if Nkind (N) = N_Type_Conversion
10969 and then not Is_Generic_Type (Root_Type (Target_Typ))
10970 and then Target_Typ /= Universal_Fixed
10971 and then Operand_Typ /= Universal_Fixed
10972 then
10973 Apply_Type_Conversion_Checks (N);
10974 end if;
10976 -- Issue warning for conversion of simple object to its own type. We
10977 -- have to test the original nodes, since they may have been rewritten
10978 -- by various optimizations.
10980 Orig_N := Original_Node (N);
10982 -- Here we test for a redundant conversion if the warning mode is
10983 -- active (and was not locally reset), and we have a type conversion
10984 -- from source not appearing in a generic instance.
10986 if Test_Redundant
10987 and then Nkind (Orig_N) = N_Type_Conversion
10988 and then Comes_From_Source (Orig_N)
10989 and then not In_Instance
10990 then
10991 Orig_N := Original_Node (Expression (Orig_N));
10992 Orig_T := Target_Typ;
10994 -- If the node is part of a larger expression, the Target_Type
10995 -- may not be the original type of the node if the context is a
10996 -- condition. Recover original type to see if conversion is needed.
10998 if Is_Boolean_Type (Orig_T)
10999 and then Nkind (Parent (N)) in N_Op
11000 then
11001 Orig_T := Etype (Parent (N));
11002 end if;
11004 -- If we have an entity name, then give the warning if the entity
11005 -- is the right type, or if it is a loop parameter covered by the
11006 -- original type (that's needed because loop parameters have an
11007 -- odd subtype coming from the bounds).
11009 if (Is_Entity_Name (Orig_N)
11010 and then
11011 (Etype (Entity (Orig_N)) = Orig_T
11012 or else
11013 (Ekind (Entity (Orig_N)) = E_Loop_Parameter
11014 and then Covers (Orig_T, Etype (Entity (Orig_N))))))
11016 -- If not an entity, then type of expression must match
11018 or else Etype (Orig_N) = Orig_T
11019 then
11020 -- One more check, do not give warning if the analyzed conversion
11021 -- has an expression with non-static bounds, and the bounds of the
11022 -- target are static. This avoids junk warnings in cases where the
11023 -- conversion is necessary to establish staticness, for example in
11024 -- a case statement.
11026 if not Is_OK_Static_Subtype (Operand_Typ)
11027 and then Is_OK_Static_Subtype (Target_Typ)
11028 then
11029 null;
11031 -- Finally, if this type conversion occurs in a context requiring
11032 -- a prefix, and the expression is a qualified expression then the
11033 -- type conversion is not redundant, since a qualified expression
11034 -- is not a prefix, whereas a type conversion is. For example, "X
11035 -- := T'(Funx(...)).Y;" is illegal because a selected component
11036 -- requires a prefix, but a type conversion makes it legal: "X :=
11037 -- T(T'(Funx(...))).Y;"
11039 -- In Ada 2012, a qualified expression is a name, so this idiom is
11040 -- no longer needed, but we still suppress the warning because it
11041 -- seems unfriendly for warnings to pop up when you switch to the
11042 -- newer language version.
11044 elsif Nkind (Orig_N) = N_Qualified_Expression
11045 and then Nkind_In (Parent (N), N_Attribute_Reference,
11046 N_Indexed_Component,
11047 N_Selected_Component,
11048 N_Slice,
11049 N_Explicit_Dereference)
11050 then
11051 null;
11053 -- Never warn on conversion to Long_Long_Integer'Base since
11054 -- that is most likely an artifact of the extended overflow
11055 -- checking and comes from complex expanded code.
11057 elsif Orig_T = Base_Type (Standard_Long_Long_Integer) then
11058 null;
11060 -- Here we give the redundant conversion warning. If it is an
11061 -- entity, give the name of the entity in the message. If not,
11062 -- just mention the expression.
11064 -- Shoudn't we test Warn_On_Redundant_Constructs here ???
11066 else
11067 if Is_Entity_Name (Orig_N) then
11068 Error_Msg_Node_2 := Orig_T;
11069 Error_Msg_NE -- CODEFIX
11070 ("??redundant conversion, & is of type &!",
11071 N, Entity (Orig_N));
11072 else
11073 Error_Msg_NE
11074 ("??redundant conversion, expression is of type&!",
11075 N, Orig_T);
11076 end if;
11077 end if;
11078 end if;
11079 end if;
11081 -- Ada 2005 (AI-251): Handle class-wide interface type conversions.
11082 -- No need to perform any interface conversion if the type of the
11083 -- expression coincides with the target type.
11085 if Ada_Version >= Ada_2005
11086 and then Expander_Active
11087 and then Operand_Typ /= Target_Typ
11088 then
11089 declare
11090 Opnd : Entity_Id := Operand_Typ;
11091 Target : Entity_Id := Target_Typ;
11093 begin
11094 -- If the type of the operand is a limited view, use nonlimited
11095 -- view when available. If it is a class-wide type, recover the
11096 -- class-wide type of the nonlimited view.
11098 if From_Limited_With (Opnd)
11099 and then Has_Non_Limited_View (Opnd)
11100 then
11101 Opnd := Non_Limited_View (Opnd);
11102 Set_Etype (Expression (N), Opnd);
11103 end if;
11105 if Is_Access_Type (Opnd) then
11106 Opnd := Designated_Type (Opnd);
11107 end if;
11109 if Is_Access_Type (Target_Typ) then
11110 Target := Designated_Type (Target);
11111 end if;
11113 if Opnd = Target then
11114 null;
11116 -- Conversion from interface type
11118 elsif Is_Interface (Opnd) then
11120 -- Ada 2005 (AI-217): Handle entities from limited views
11122 if From_Limited_With (Opnd) then
11123 Error_Msg_Qual_Level := 99;
11124 Error_Msg_NE -- CODEFIX
11125 ("missing WITH clause on package &", N,
11126 Cunit_Entity (Get_Source_Unit (Base_Type (Opnd))));
11127 Error_Msg_N
11128 ("type conversions require visibility of the full view",
11131 elsif From_Limited_With (Target)
11132 and then not
11133 (Is_Access_Type (Target_Typ)
11134 and then Present (Non_Limited_View (Etype (Target))))
11135 then
11136 Error_Msg_Qual_Level := 99;
11137 Error_Msg_NE -- CODEFIX
11138 ("missing WITH clause on package &", N,
11139 Cunit_Entity (Get_Source_Unit (Base_Type (Target))));
11140 Error_Msg_N
11141 ("type conversions require visibility of the full view",
11144 else
11145 Expand_Interface_Conversion (N);
11146 end if;
11148 -- Conversion to interface type
11150 elsif Is_Interface (Target) then
11152 -- Handle subtypes
11154 if Ekind_In (Opnd, E_Protected_Subtype, E_Task_Subtype) then
11155 Opnd := Etype (Opnd);
11156 end if;
11158 if Is_Class_Wide_Type (Opnd)
11159 or else Interface_Present_In_Ancestor
11160 (Typ => Opnd,
11161 Iface => Target)
11162 then
11163 Expand_Interface_Conversion (N);
11164 else
11165 Error_Msg_Name_1 := Chars (Etype (Target));
11166 Error_Msg_Name_2 := Chars (Opnd);
11167 Error_Msg_N
11168 ("wrong interface conversion (% is not a progenitor "
11169 & "of %)", N);
11170 end if;
11171 end if;
11172 end;
11173 end if;
11175 -- Ada 2012: once the type conversion is resolved, check whether the
11176 -- operand statisfies the static predicate of the target type.
11178 if Has_Predicates (Target_Typ) then
11179 Check_Expression_Against_Static_Predicate (N, Target_Typ);
11180 end if;
11182 -- If at this stage we have a real to integer conversion, make sure that
11183 -- the Do_Range_Check flag is set, because such conversions in general
11184 -- need a range check. We only need this if expansion is off.
11185 -- In GNATprove mode, we only do that when converting from fixed-point
11186 -- (as floating-point to integer conversions are now handled in
11187 -- GNATprove mode).
11189 if Nkind (N) = N_Type_Conversion
11190 and then not Expander_Active
11191 and then Is_Integer_Type (Target_Typ)
11192 and then (Is_Fixed_Point_Type (Operand_Typ)
11193 or else (not GNATprove_Mode
11194 and then Is_Floating_Point_Type (Operand_Typ)))
11195 then
11196 Set_Do_Range_Check (Operand);
11197 end if;
11199 -- Generating C code a type conversion of an access to constrained
11200 -- array type to access to unconstrained array type involves building
11201 -- a fat pointer which in general cannot be generated on the fly. We
11202 -- remove side effects in order to store the result of the conversion
11203 -- into a temporary.
11205 if Modify_Tree_For_C
11206 and then Nkind (N) = N_Type_Conversion
11207 and then Nkind (Parent (N)) /= N_Object_Declaration
11208 and then Is_Access_Type (Etype (N))
11209 and then Is_Array_Type (Designated_Type (Etype (N)))
11210 and then not Is_Constrained (Designated_Type (Etype (N)))
11211 and then Is_Constrained (Designated_Type (Etype (Expression (N))))
11212 then
11213 Remove_Side_Effects (N);
11214 end if;
11215 end Resolve_Type_Conversion;
11217 ----------------------
11218 -- Resolve_Unary_Op --
11219 ----------------------
11221 procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id) is
11222 B_Typ : constant Entity_Id := Base_Type (Typ);
11223 R : constant Node_Id := Right_Opnd (N);
11224 OK : Boolean;
11225 Lo : Uint;
11226 Hi : Uint;
11228 begin
11229 if Is_Modular_Integer_Type (Typ) and then Nkind (N) /= N_Op_Not then
11230 Error_Msg_Name_1 := Chars (Typ);
11231 Check_SPARK_05_Restriction
11232 ("unary operator not defined for modular type%", N);
11233 end if;
11235 -- Deal with intrinsic unary operators
11237 if Comes_From_Source (N)
11238 and then Ekind (Entity (N)) = E_Function
11239 and then Is_Imported (Entity (N))
11240 and then Is_Intrinsic_Subprogram (Entity (N))
11241 then
11242 Resolve_Intrinsic_Unary_Operator (N, Typ);
11243 return;
11244 end if;
11246 -- Deal with universal cases
11248 if Etype (R) = Universal_Integer
11249 or else
11250 Etype (R) = Universal_Real
11251 then
11252 Check_For_Visible_Operator (N, B_Typ);
11253 end if;
11255 Set_Etype (N, B_Typ);
11256 Resolve (R, B_Typ);
11258 -- Generate warning for expressions like abs (x mod 2)
11260 if Warn_On_Redundant_Constructs
11261 and then Nkind (N) = N_Op_Abs
11262 then
11263 Determine_Range (Right_Opnd (N), OK, Lo, Hi);
11265 if OK and then Hi >= Lo and then Lo >= 0 then
11266 Error_Msg_N -- CODEFIX
11267 ("?r?abs applied to known non-negative value has no effect", N);
11268 end if;
11269 end if;
11271 -- Deal with reference generation
11273 Check_Unset_Reference (R);
11274 Generate_Operator_Reference (N, B_Typ);
11275 Analyze_Dimension (N);
11276 Eval_Unary_Op (N);
11278 -- Set overflow checking bit. Much cleverer code needed here eventually
11279 -- and perhaps the Resolve routines should be separated for the various
11280 -- arithmetic operations, since they will need different processing ???
11282 if Nkind (N) in N_Op then
11283 if not Overflow_Checks_Suppressed (Etype (N)) then
11284 Enable_Overflow_Check (N);
11285 end if;
11286 end if;
11288 -- Generate warning for expressions like -5 mod 3 for integers. No need
11289 -- to worry in the floating-point case, since parens do not affect the
11290 -- result so there is no point in giving in a warning.
11292 declare
11293 Norig : constant Node_Id := Original_Node (N);
11294 Rorig : Node_Id;
11295 Val : Uint;
11296 HB : Uint;
11297 LB : Uint;
11298 Lval : Uint;
11299 Opnd : Node_Id;
11301 begin
11302 if Warn_On_Questionable_Missing_Parens
11303 and then Comes_From_Source (Norig)
11304 and then Is_Integer_Type (Typ)
11305 and then Nkind (Norig) = N_Op_Minus
11306 then
11307 Rorig := Original_Node (Right_Opnd (Norig));
11309 -- We are looking for cases where the right operand is not
11310 -- parenthesized, and is a binary operator, multiply, divide, or
11311 -- mod. These are the cases where the grouping can affect results.
11313 if Paren_Count (Rorig) = 0
11314 and then Nkind_In (Rorig, N_Op_Mod, N_Op_Multiply, N_Op_Divide)
11315 then
11316 -- For mod, we always give the warning, since the value is
11317 -- affected by the parenthesization (e.g. (-5) mod 315 /=
11318 -- -(5 mod 315)). But for the other cases, the only concern is
11319 -- overflow, e.g. for the case of 8 big signed (-(2 * 64)
11320 -- overflows, but (-2) * 64 does not). So we try to give the
11321 -- message only when overflow is possible.
11323 if Nkind (Rorig) /= N_Op_Mod
11324 and then Compile_Time_Known_Value (R)
11325 then
11326 Val := Expr_Value (R);
11328 if Compile_Time_Known_Value (Type_High_Bound (Typ)) then
11329 HB := Expr_Value (Type_High_Bound (Typ));
11330 else
11331 HB := Expr_Value (Type_High_Bound (Base_Type (Typ)));
11332 end if;
11334 if Compile_Time_Known_Value (Type_Low_Bound (Typ)) then
11335 LB := Expr_Value (Type_Low_Bound (Typ));
11336 else
11337 LB := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
11338 end if;
11340 -- Note that the test below is deliberately excluding the
11341 -- largest negative number, since that is a potentially
11342 -- troublesome case (e.g. -2 * x, where the result is the
11343 -- largest negative integer has an overflow with 2 * x).
11345 if Val > LB and then Val <= HB then
11346 return;
11347 end if;
11348 end if;
11350 -- For the multiplication case, the only case we have to worry
11351 -- about is when (-a)*b is exactly the largest negative number
11352 -- so that -(a*b) can cause overflow. This can only happen if
11353 -- a is a power of 2, and more generally if any operand is a
11354 -- constant that is not a power of 2, then the parentheses
11355 -- cannot affect whether overflow occurs. We only bother to
11356 -- test the left most operand
11358 -- Loop looking at left operands for one that has known value
11360 Opnd := Rorig;
11361 Opnd_Loop : while Nkind (Opnd) = N_Op_Multiply loop
11362 if Compile_Time_Known_Value (Left_Opnd (Opnd)) then
11363 Lval := UI_Abs (Expr_Value (Left_Opnd (Opnd)));
11365 -- Operand value of 0 or 1 skips warning
11367 if Lval <= 1 then
11368 return;
11370 -- Otherwise check power of 2, if power of 2, warn, if
11371 -- anything else, skip warning.
11373 else
11374 while Lval /= 2 loop
11375 if Lval mod 2 = 1 then
11376 return;
11377 else
11378 Lval := Lval / 2;
11379 end if;
11380 end loop;
11382 exit Opnd_Loop;
11383 end if;
11384 end if;
11386 -- Keep looking at left operands
11388 Opnd := Left_Opnd (Opnd);
11389 end loop Opnd_Loop;
11391 -- For rem or "/" we can only have a problematic situation
11392 -- if the divisor has a value of minus one or one. Otherwise
11393 -- overflow is impossible (divisor > 1) or we have a case of
11394 -- division by zero in any case.
11396 if Nkind_In (Rorig, N_Op_Divide, N_Op_Rem)
11397 and then Compile_Time_Known_Value (Right_Opnd (Rorig))
11398 and then UI_Abs (Expr_Value (Right_Opnd (Rorig))) /= 1
11399 then
11400 return;
11401 end if;
11403 -- If we fall through warning should be issued
11405 -- Shouldn't we test Warn_On_Questionable_Missing_Parens ???
11407 Error_Msg_N
11408 ("??unary minus expression should be parenthesized here!", N);
11409 end if;
11410 end if;
11411 end;
11412 end Resolve_Unary_Op;
11414 ----------------------------------
11415 -- Resolve_Unchecked_Expression --
11416 ----------------------------------
11418 procedure Resolve_Unchecked_Expression
11419 (N : Node_Id;
11420 Typ : Entity_Id)
11422 begin
11423 Resolve (Expression (N), Typ, Suppress => All_Checks);
11424 Set_Etype (N, Typ);
11425 end Resolve_Unchecked_Expression;
11427 ---------------------------------------
11428 -- Resolve_Unchecked_Type_Conversion --
11429 ---------------------------------------
11431 procedure Resolve_Unchecked_Type_Conversion
11432 (N : Node_Id;
11433 Typ : Entity_Id)
11435 pragma Warnings (Off, Typ);
11437 Operand : constant Node_Id := Expression (N);
11438 Opnd_Type : constant Entity_Id := Etype (Operand);
11440 begin
11441 -- Resolve operand using its own type
11443 Resolve (Operand, Opnd_Type);
11445 -- In an inlined context, the unchecked conversion may be applied
11446 -- to a literal, in which case its type is the type of the context.
11447 -- (In other contexts conversions cannot apply to literals).
11449 if In_Inlined_Body
11450 and then (Opnd_Type = Any_Character or else
11451 Opnd_Type = Any_Integer or else
11452 Opnd_Type = Any_Real)
11453 then
11454 Set_Etype (Operand, Typ);
11455 end if;
11457 Analyze_Dimension (N);
11458 Eval_Unchecked_Conversion (N);
11459 end Resolve_Unchecked_Type_Conversion;
11461 ------------------------------
11462 -- Rewrite_Operator_As_Call --
11463 ------------------------------
11465 procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id) is
11466 Loc : constant Source_Ptr := Sloc (N);
11467 Actuals : constant List_Id := New_List;
11468 New_N : Node_Id;
11470 begin
11471 if Nkind (N) in N_Binary_Op then
11472 Append (Left_Opnd (N), Actuals);
11473 end if;
11475 Append (Right_Opnd (N), Actuals);
11477 New_N :=
11478 Make_Function_Call (Sloc => Loc,
11479 Name => New_Occurrence_Of (Nam, Loc),
11480 Parameter_Associations => Actuals);
11482 Preserve_Comes_From_Source (New_N, N);
11483 Preserve_Comes_From_Source (Name (New_N), N);
11484 Rewrite (N, New_N);
11485 Set_Etype (N, Etype (Nam));
11486 end Rewrite_Operator_As_Call;
11488 ------------------------------
11489 -- Rewrite_Renamed_Operator --
11490 ------------------------------
11492 procedure Rewrite_Renamed_Operator
11493 (N : Node_Id;
11494 Op : Entity_Id;
11495 Typ : Entity_Id)
11497 Nam : constant Name_Id := Chars (Op);
11498 Is_Binary : constant Boolean := Nkind (N) in N_Binary_Op;
11499 Op_Node : Node_Id;
11501 begin
11502 -- Do not perform this transformation within a pre/postcondition,
11503 -- because the expression will be reanalyzed, and the transformation
11504 -- might affect the visibility of the operator, e.g. in an instance.
11505 -- Note that fully analyzed and expanded pre/postconditions appear as
11506 -- pragma Check equivalents.
11508 if In_Pre_Post_Condition (N) then
11509 return;
11510 end if;
11512 -- Likewise when an expression function is being preanalyzed, since the
11513 -- expression will be reanalyzed as part of the generated body.
11515 if In_Spec_Expression then
11516 declare
11517 S : constant Entity_Id := Current_Scope_No_Loops;
11518 begin
11519 if Ekind (S) = E_Function
11520 and then Nkind (Original_Node (Unit_Declaration_Node (S))) =
11521 N_Expression_Function
11522 then
11523 return;
11524 end if;
11525 end;
11526 end if;
11528 -- Rewrite the operator node using the real operator, not its renaming.
11529 -- Exclude user-defined intrinsic operations of the same name, which are
11530 -- treated separately and rewritten as calls.
11532 if Ekind (Op) /= E_Function or else Chars (N) /= Nam then
11533 Op_Node := New_Node (Operator_Kind (Nam, Is_Binary), Sloc (N));
11534 Set_Chars (Op_Node, Nam);
11535 Set_Etype (Op_Node, Etype (N));
11536 Set_Entity (Op_Node, Op);
11537 Set_Right_Opnd (Op_Node, Right_Opnd (N));
11539 -- Indicate that both the original entity and its renaming are
11540 -- referenced at this point.
11542 Generate_Reference (Entity (N), N);
11543 Generate_Reference (Op, N);
11545 if Is_Binary then
11546 Set_Left_Opnd (Op_Node, Left_Opnd (N));
11547 end if;
11549 Rewrite (N, Op_Node);
11551 -- If the context type is private, add the appropriate conversions so
11552 -- that the operator is applied to the full view. This is done in the
11553 -- routines that resolve intrinsic operators.
11555 if Is_Intrinsic_Subprogram (Op) and then Is_Private_Type (Typ) then
11556 case Nkind (N) is
11557 when N_Op_Add
11558 | N_Op_Divide
11559 | N_Op_Expon
11560 | N_Op_Mod
11561 | N_Op_Multiply
11562 | N_Op_Rem
11563 | N_Op_Subtract
11565 Resolve_Intrinsic_Operator (N, Typ);
11567 when N_Op_Abs
11568 | N_Op_Minus
11569 | N_Op_Plus
11571 Resolve_Intrinsic_Unary_Operator (N, Typ);
11573 when others =>
11574 Resolve (N, Typ);
11575 end case;
11576 end if;
11578 elsif Ekind (Op) = E_Function and then Is_Intrinsic_Subprogram (Op) then
11580 -- Operator renames a user-defined operator of the same name. Use the
11581 -- original operator in the node, which is the one Gigi knows about.
11583 Set_Entity (N, Op);
11584 Set_Is_Overloaded (N, False);
11585 end if;
11586 end Rewrite_Renamed_Operator;
11588 -----------------------
11589 -- Set_Slice_Subtype --
11590 -----------------------
11592 -- Build an implicit subtype declaration to represent the type delivered by
11593 -- the slice. This is an abbreviated version of an array subtype. We define
11594 -- an index subtype for the slice, using either the subtype name or the
11595 -- discrete range of the slice. To be consistent with index usage elsewhere
11596 -- we create a list header to hold the single index. This list is not
11597 -- otherwise attached to the syntax tree.
11599 procedure Set_Slice_Subtype (N : Node_Id) is
11600 Loc : constant Source_Ptr := Sloc (N);
11601 Index_List : constant List_Id := New_List;
11602 Index : Node_Id;
11603 Index_Subtype : Entity_Id;
11604 Index_Type : Entity_Id;
11605 Slice_Subtype : Entity_Id;
11606 Drange : constant Node_Id := Discrete_Range (N);
11608 begin
11609 Index_Type := Base_Type (Etype (Drange));
11611 if Is_Entity_Name (Drange) then
11612 Index_Subtype := Entity (Drange);
11614 else
11615 -- We force the evaluation of a range. This is definitely needed in
11616 -- the renamed case, and seems safer to do unconditionally. Note in
11617 -- any case that since we will create and insert an Itype referring
11618 -- to this range, we must make sure any side effect removal actions
11619 -- are inserted before the Itype definition.
11621 if Nkind (Drange) = N_Range then
11622 Force_Evaluation (Low_Bound (Drange));
11623 Force_Evaluation (High_Bound (Drange));
11625 -- If the discrete range is given by a subtype indication, the
11626 -- type of the slice is the base of the subtype mark.
11628 elsif Nkind (Drange) = N_Subtype_Indication then
11629 declare
11630 R : constant Node_Id := Range_Expression (Constraint (Drange));
11631 begin
11632 Index_Type := Base_Type (Entity (Subtype_Mark (Drange)));
11633 Force_Evaluation (Low_Bound (R));
11634 Force_Evaluation (High_Bound (R));
11635 end;
11636 end if;
11638 Index_Subtype := Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11640 -- Take a new copy of Drange (where bounds have been rewritten to
11641 -- reference side-effect-free names). Using a separate tree ensures
11642 -- that further expansion (e.g. while rewriting a slice assignment
11643 -- into a FOR loop) does not attempt to remove side effects on the
11644 -- bounds again (which would cause the bounds in the index subtype
11645 -- definition to refer to temporaries before they are defined) (the
11646 -- reason is that some names are considered side effect free here
11647 -- for the subtype, but not in the context of a loop iteration
11648 -- scheme).
11650 Set_Scalar_Range (Index_Subtype, New_Copy_Tree (Drange));
11651 Set_Parent (Scalar_Range (Index_Subtype), Index_Subtype);
11652 Set_Etype (Index_Subtype, Index_Type);
11653 Set_Size_Info (Index_Subtype, Index_Type);
11654 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11655 end if;
11657 Slice_Subtype := Create_Itype (E_Array_Subtype, N);
11659 Index := New_Occurrence_Of (Index_Subtype, Loc);
11660 Set_Etype (Index, Index_Subtype);
11661 Append (Index, Index_List);
11663 Set_First_Index (Slice_Subtype, Index);
11664 Set_Etype (Slice_Subtype, Base_Type (Etype (N)));
11665 Set_Is_Constrained (Slice_Subtype, True);
11667 Check_Compile_Time_Size (Slice_Subtype);
11669 -- The Etype of the existing Slice node is reset to this slice subtype.
11670 -- Its bounds are obtained from its first index.
11672 Set_Etype (N, Slice_Subtype);
11674 -- For bit-packed slice subtypes, freeze immediately (except in the case
11675 -- of being in a "spec expression" where we never freeze when we first
11676 -- see the expression).
11678 if Is_Bit_Packed_Array (Slice_Subtype) and not In_Spec_Expression then
11679 Freeze_Itype (Slice_Subtype, N);
11681 -- For all other cases insert an itype reference in the slice's actions
11682 -- so that the itype is frozen at the proper place in the tree (i.e. at
11683 -- the point where actions for the slice are analyzed). Note that this
11684 -- is different from freezing the itype immediately, which might be
11685 -- premature (e.g. if the slice is within a transient scope). This needs
11686 -- to be done only if expansion is enabled.
11688 elsif Expander_Active then
11689 Ensure_Defined (Typ => Slice_Subtype, N => N);
11690 end if;
11691 end Set_Slice_Subtype;
11693 --------------------------------
11694 -- Set_String_Literal_Subtype --
11695 --------------------------------
11697 procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id) is
11698 Loc : constant Source_Ptr := Sloc (N);
11699 Low_Bound : constant Node_Id :=
11700 Type_Low_Bound (Etype (First_Index (Typ)));
11701 Subtype_Id : Entity_Id;
11703 begin
11704 if Nkind (N) /= N_String_Literal then
11705 return;
11706 end if;
11708 Subtype_Id := Create_Itype (E_String_Literal_Subtype, N);
11709 Set_String_Literal_Length (Subtype_Id, UI_From_Int
11710 (String_Length (Strval (N))));
11711 Set_Etype (Subtype_Id, Base_Type (Typ));
11712 Set_Is_Constrained (Subtype_Id);
11713 Set_Etype (N, Subtype_Id);
11715 -- The low bound is set from the low bound of the corresponding index
11716 -- type. Note that we do not store the high bound in the string literal
11717 -- subtype, but it can be deduced if necessary from the length and the
11718 -- low bound.
11720 if Is_OK_Static_Expression (Low_Bound) then
11721 Set_String_Literal_Low_Bound (Subtype_Id, Low_Bound);
11723 -- If the lower bound is not static we create a range for the string
11724 -- literal, using the index type and the known length of the literal.
11725 -- The index type is not necessarily Positive, so the upper bound is
11726 -- computed as T'Val (T'Pos (Low_Bound) + L - 1).
11728 else
11729 declare
11730 Index_List : constant List_Id := New_List;
11731 Index_Type : constant Entity_Id := Etype (First_Index (Typ));
11732 High_Bound : constant Node_Id :=
11733 Make_Attribute_Reference (Loc,
11734 Attribute_Name => Name_Val,
11735 Prefix =>
11736 New_Occurrence_Of (Index_Type, Loc),
11737 Expressions => New_List (
11738 Make_Op_Add (Loc,
11739 Left_Opnd =>
11740 Make_Attribute_Reference (Loc,
11741 Attribute_Name => Name_Pos,
11742 Prefix =>
11743 New_Occurrence_Of (Index_Type, Loc),
11744 Expressions =>
11745 New_List (New_Copy_Tree (Low_Bound))),
11746 Right_Opnd =>
11747 Make_Integer_Literal (Loc,
11748 String_Length (Strval (N)) - 1))));
11750 Array_Subtype : Entity_Id;
11751 Drange : Node_Id;
11752 Index : Node_Id;
11753 Index_Subtype : Entity_Id;
11755 begin
11756 if Is_Integer_Type (Index_Type) then
11757 Set_String_Literal_Low_Bound
11758 (Subtype_Id, Make_Integer_Literal (Loc, 1));
11760 else
11761 -- If the index type is an enumeration type, build bounds
11762 -- expression with attributes.
11764 Set_String_Literal_Low_Bound
11765 (Subtype_Id,
11766 Make_Attribute_Reference (Loc,
11767 Attribute_Name => Name_First,
11768 Prefix =>
11769 New_Occurrence_Of (Base_Type (Index_Type), Loc)));
11770 Set_Etype (String_Literal_Low_Bound (Subtype_Id), Index_Type);
11771 end if;
11773 Analyze_And_Resolve (String_Literal_Low_Bound (Subtype_Id));
11775 -- Build bona fide subtype for the string, and wrap it in an
11776 -- unchecked conversion, because the backend expects the
11777 -- String_Literal_Subtype to have a static lower bound.
11779 Index_Subtype :=
11780 Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11781 Drange := Make_Range (Loc, New_Copy_Tree (Low_Bound), High_Bound);
11782 Set_Scalar_Range (Index_Subtype, Drange);
11783 Set_Parent (Drange, N);
11784 Analyze_And_Resolve (Drange, Index_Type);
11786 -- In the context, the Index_Type may already have a constraint,
11787 -- so use common base type on string subtype. The base type may
11788 -- be used when generating attributes of the string, for example
11789 -- in the context of a slice assignment.
11791 Set_Etype (Index_Subtype, Base_Type (Index_Type));
11792 Set_Size_Info (Index_Subtype, Index_Type);
11793 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11795 Array_Subtype := Create_Itype (E_Array_Subtype, N);
11797 Index := New_Occurrence_Of (Index_Subtype, Loc);
11798 Set_Etype (Index, Index_Subtype);
11799 Append (Index, Index_List);
11801 Set_First_Index (Array_Subtype, Index);
11802 Set_Etype (Array_Subtype, Base_Type (Typ));
11803 Set_Is_Constrained (Array_Subtype, True);
11805 Rewrite (N,
11806 Make_Unchecked_Type_Conversion (Loc,
11807 Subtype_Mark => New_Occurrence_Of (Array_Subtype, Loc),
11808 Expression => Relocate_Node (N)));
11809 Set_Etype (N, Array_Subtype);
11810 end;
11811 end if;
11812 end Set_String_Literal_Subtype;
11814 ------------------------------
11815 -- Simplify_Type_Conversion --
11816 ------------------------------
11818 procedure Simplify_Type_Conversion (N : Node_Id) is
11819 begin
11820 if Nkind (N) = N_Type_Conversion then
11821 declare
11822 Operand : constant Node_Id := Expression (N);
11823 Target_Typ : constant Entity_Id := Etype (N);
11824 Opnd_Typ : constant Entity_Id := Etype (Operand);
11826 begin
11827 -- Special processing if the conversion is the expression of a
11828 -- Rounding or Truncation attribute reference. In this case we
11829 -- replace:
11831 -- ityp (ftyp'Rounding (x)) or ityp (ftyp'Truncation (x))
11833 -- by
11835 -- ityp (x)
11837 -- with the Float_Truncate flag set to False or True respectively,
11838 -- which is more efficient.
11840 if Is_Floating_Point_Type (Opnd_Typ)
11841 and then
11842 (Is_Integer_Type (Target_Typ)
11843 or else (Is_Fixed_Point_Type (Target_Typ)
11844 and then Conversion_OK (N)))
11845 and then Nkind (Operand) = N_Attribute_Reference
11846 and then Nam_In (Attribute_Name (Operand), Name_Rounding,
11847 Name_Truncation)
11848 then
11849 declare
11850 Truncate : constant Boolean :=
11851 Attribute_Name (Operand) = Name_Truncation;
11852 begin
11853 Rewrite (Operand,
11854 Relocate_Node (First (Expressions (Operand))));
11855 Set_Float_Truncate (N, Truncate);
11856 end;
11857 end if;
11858 end;
11859 end if;
11860 end Simplify_Type_Conversion;
11862 -----------------------------
11863 -- Unique_Fixed_Point_Type --
11864 -----------------------------
11866 function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id is
11867 procedure Fixed_Point_Error (T1 : Entity_Id; T2 : Entity_Id);
11868 -- Give error messages for true ambiguity. Messages are posted on node
11869 -- N, and entities T1, T2 are the possible interpretations.
11871 -----------------------
11872 -- Fixed_Point_Error --
11873 -----------------------
11875 procedure Fixed_Point_Error (T1 : Entity_Id; T2 : Entity_Id) is
11876 begin
11877 Error_Msg_N ("ambiguous universal_fixed_expression", N);
11878 Error_Msg_NE ("\\possible interpretation as}", N, T1);
11879 Error_Msg_NE ("\\possible interpretation as}", N, T2);
11880 end Fixed_Point_Error;
11882 -- Local variables
11884 ErrN : Node_Id;
11885 Item : Node_Id;
11886 Scop : Entity_Id;
11887 T1 : Entity_Id;
11888 T2 : Entity_Id;
11890 -- Start of processing for Unique_Fixed_Point_Type
11892 begin
11893 -- The operations on Duration are visible, so Duration is always a
11894 -- possible interpretation.
11896 T1 := Standard_Duration;
11898 -- Look for fixed-point types in enclosing scopes
11900 Scop := Current_Scope;
11901 while Scop /= Standard_Standard loop
11902 T2 := First_Entity (Scop);
11903 while Present (T2) loop
11904 if Is_Fixed_Point_Type (T2)
11905 and then Current_Entity (T2) = T2
11906 and then Scope (Base_Type (T2)) = Scop
11907 then
11908 if Present (T1) then
11909 Fixed_Point_Error (T1, T2);
11910 return Any_Type;
11911 else
11912 T1 := T2;
11913 end if;
11914 end if;
11916 Next_Entity (T2);
11917 end loop;
11919 Scop := Scope (Scop);
11920 end loop;
11922 -- Look for visible fixed type declarations in the context
11924 Item := First (Context_Items (Cunit (Current_Sem_Unit)));
11925 while Present (Item) loop
11926 if Nkind (Item) = N_With_Clause then
11927 Scop := Entity (Name (Item));
11928 T2 := First_Entity (Scop);
11929 while Present (T2) loop
11930 if Is_Fixed_Point_Type (T2)
11931 and then Scope (Base_Type (T2)) = Scop
11932 and then (Is_Potentially_Use_Visible (T2) or else In_Use (T2))
11933 then
11934 if Present (T1) then
11935 Fixed_Point_Error (T1, T2);
11936 return Any_Type;
11937 else
11938 T1 := T2;
11939 end if;
11940 end if;
11942 Next_Entity (T2);
11943 end loop;
11944 end if;
11946 Next (Item);
11947 end loop;
11949 if Nkind (N) = N_Real_Literal then
11950 Error_Msg_NE ("??real literal interpreted as }!", N, T1);
11952 else
11953 -- When the context is a type conversion, issue the warning on the
11954 -- expression of the conversion because it is the actual operation.
11956 if Nkind_In (N, N_Type_Conversion, N_Unchecked_Type_Conversion) then
11957 ErrN := Expression (N);
11958 else
11959 ErrN := N;
11960 end if;
11962 Error_Msg_NE
11963 ("??universal_fixed expression interpreted as }!", ErrN, T1);
11964 end if;
11966 return T1;
11967 end Unique_Fixed_Point_Type;
11969 ----------------------
11970 -- Valid_Conversion --
11971 ----------------------
11973 function Valid_Conversion
11974 (N : Node_Id;
11975 Target : Entity_Id;
11976 Operand : Node_Id;
11977 Report_Errs : Boolean := True) return Boolean
11979 Target_Type : constant Entity_Id := Base_Type (Target);
11980 Opnd_Type : Entity_Id := Etype (Operand);
11981 Inc_Ancestor : Entity_Id;
11983 function Conversion_Check
11984 (Valid : Boolean;
11985 Msg : String) return Boolean;
11986 -- Little routine to post Msg if Valid is False, returns Valid value
11988 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id);
11989 -- If Report_Errs, then calls Errout.Error_Msg_N with its arguments
11991 procedure Conversion_Error_NE
11992 (Msg : String;
11993 N : Node_Or_Entity_Id;
11994 E : Node_Or_Entity_Id);
11995 -- If Report_Errs, then calls Errout.Error_Msg_NE with its arguments
11997 function In_Instance_Code return Boolean;
11998 -- Return True if expression is within an instance but is not in one of
11999 -- the actuals of the instantiation. Type conversions within an instance
12000 -- are not rechecked because type visbility may lead to spurious errors,
12001 -- but conversions in an actual for a formal object must be checked.
12003 function Valid_Tagged_Conversion
12004 (Target_Type : Entity_Id;
12005 Opnd_Type : Entity_Id) return Boolean;
12006 -- Specifically test for validity of tagged conversions
12008 function Valid_Array_Conversion return Boolean;
12009 -- Check index and component conformance, and accessibility levels if
12010 -- the component types are anonymous access types (Ada 2005).
12012 ----------------------
12013 -- Conversion_Check --
12014 ----------------------
12016 function Conversion_Check
12017 (Valid : Boolean;
12018 Msg : String) return Boolean
12020 begin
12021 if not Valid
12023 -- A generic unit has already been analyzed and we have verified
12024 -- that a particular conversion is OK in that context. Since the
12025 -- instance is reanalyzed without relying on the relationships
12026 -- established during the analysis of the generic, it is possible
12027 -- to end up with inconsistent views of private types. Do not emit
12028 -- the error message in such cases. The rest of the machinery in
12029 -- Valid_Conversion still ensures the proper compatibility of
12030 -- target and operand types.
12032 and then not In_Instance_Code
12033 then
12034 Conversion_Error_N (Msg, Operand);
12035 end if;
12037 return Valid;
12038 end Conversion_Check;
12040 ------------------------
12041 -- Conversion_Error_N --
12042 ------------------------
12044 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id) is
12045 begin
12046 if Report_Errs then
12047 Error_Msg_N (Msg, N);
12048 end if;
12049 end Conversion_Error_N;
12051 -------------------------
12052 -- Conversion_Error_NE --
12053 -------------------------
12055 procedure Conversion_Error_NE
12056 (Msg : String;
12057 N : Node_Or_Entity_Id;
12058 E : Node_Or_Entity_Id)
12060 begin
12061 if Report_Errs then
12062 Error_Msg_NE (Msg, N, E);
12063 end if;
12064 end Conversion_Error_NE;
12066 ----------------------
12067 -- In_Instance_Code --
12068 ----------------------
12070 function In_Instance_Code return Boolean is
12071 Par : Node_Id;
12073 begin
12074 if not In_Instance then
12075 return False;
12077 else
12078 Par := Parent (N);
12079 while Present (Par) loop
12081 -- The expression is part of an actual object if it appears in
12082 -- the generated object declaration in the instance.
12084 if Nkind (Par) = N_Object_Declaration
12085 and then Present (Corresponding_Generic_Association (Par))
12086 then
12087 return False;
12089 else
12090 exit when
12091 Nkind (Par) in N_Statement_Other_Than_Procedure_Call
12092 or else Nkind (Par) in N_Subprogram_Call
12093 or else Nkind (Par) in N_Declaration;
12094 end if;
12096 Par := Parent (Par);
12097 end loop;
12099 -- Otherwise the expression appears within the instantiated unit
12101 return True;
12102 end if;
12103 end In_Instance_Code;
12105 ----------------------------
12106 -- Valid_Array_Conversion --
12107 ----------------------------
12109 function Valid_Array_Conversion return Boolean is
12110 Opnd_Comp_Type : constant Entity_Id := Component_Type (Opnd_Type);
12111 Opnd_Comp_Base : constant Entity_Id := Base_Type (Opnd_Comp_Type);
12113 Opnd_Index : Node_Id;
12114 Opnd_Index_Type : Entity_Id;
12116 Target_Comp_Type : constant Entity_Id :=
12117 Component_Type (Target_Type);
12118 Target_Comp_Base : constant Entity_Id :=
12119 Base_Type (Target_Comp_Type);
12121 Target_Index : Node_Id;
12122 Target_Index_Type : Entity_Id;
12124 begin
12125 -- Error if wrong number of dimensions
12128 Number_Dimensions (Target_Type) /= Number_Dimensions (Opnd_Type)
12129 then
12130 Conversion_Error_N
12131 ("incompatible number of dimensions for conversion", Operand);
12132 return False;
12134 -- Number of dimensions matches
12136 else
12137 -- Loop through indexes of the two arrays
12139 Target_Index := First_Index (Target_Type);
12140 Opnd_Index := First_Index (Opnd_Type);
12141 while Present (Target_Index) and then Present (Opnd_Index) loop
12142 Target_Index_Type := Etype (Target_Index);
12143 Opnd_Index_Type := Etype (Opnd_Index);
12145 -- Error if index types are incompatible
12147 if not (Is_Integer_Type (Target_Index_Type)
12148 and then Is_Integer_Type (Opnd_Index_Type))
12149 and then (Root_Type (Target_Index_Type)
12150 /= Root_Type (Opnd_Index_Type))
12151 then
12152 Conversion_Error_N
12153 ("incompatible index types for array conversion",
12154 Operand);
12155 return False;
12156 end if;
12158 Next_Index (Target_Index);
12159 Next_Index (Opnd_Index);
12160 end loop;
12162 -- If component types have same base type, all set
12164 if Target_Comp_Base = Opnd_Comp_Base then
12165 null;
12167 -- Here if base types of components are not the same. The only
12168 -- time this is allowed is if we have anonymous access types.
12170 -- The conversion of arrays of anonymous access types can lead
12171 -- to dangling pointers. AI-392 formalizes the accessibility
12172 -- checks that must be applied to such conversions to prevent
12173 -- out-of-scope references.
12175 elsif Ekind_In
12176 (Target_Comp_Base, E_Anonymous_Access_Type,
12177 E_Anonymous_Access_Subprogram_Type)
12178 and then Ekind (Opnd_Comp_Base) = Ekind (Target_Comp_Base)
12179 and then
12180 Subtypes_Statically_Match (Target_Comp_Type, Opnd_Comp_Type)
12181 then
12182 if Type_Access_Level (Target_Type) <
12183 Deepest_Type_Access_Level (Opnd_Type)
12184 then
12185 if In_Instance_Body then
12186 Error_Msg_Warn := SPARK_Mode /= On;
12187 Conversion_Error_N
12188 ("source array type has deeper accessibility "
12189 & "level than target<<", Operand);
12190 Conversion_Error_N ("\Program_Error [<<", Operand);
12191 Rewrite (N,
12192 Make_Raise_Program_Error (Sloc (N),
12193 Reason => PE_Accessibility_Check_Failed));
12194 Set_Etype (N, Target_Type);
12195 return False;
12197 -- Conversion not allowed because of accessibility levels
12199 else
12200 Conversion_Error_N
12201 ("source array type has deeper accessibility "
12202 & "level than target", Operand);
12203 return False;
12204 end if;
12206 else
12207 null;
12208 end if;
12210 -- All other cases where component base types do not match
12212 else
12213 Conversion_Error_N
12214 ("incompatible component types for array conversion",
12215 Operand);
12216 return False;
12217 end if;
12219 -- Check that component subtypes statically match. For numeric
12220 -- types this means that both must be either constrained or
12221 -- unconstrained. For enumeration types the bounds must match.
12222 -- All of this is checked in Subtypes_Statically_Match.
12224 if not Subtypes_Statically_Match
12225 (Target_Comp_Type, Opnd_Comp_Type)
12226 then
12227 Conversion_Error_N
12228 ("component subtypes must statically match", Operand);
12229 return False;
12230 end if;
12231 end if;
12233 return True;
12234 end Valid_Array_Conversion;
12236 -----------------------------
12237 -- Valid_Tagged_Conversion --
12238 -----------------------------
12240 function Valid_Tagged_Conversion
12241 (Target_Type : Entity_Id;
12242 Opnd_Type : Entity_Id) return Boolean
12244 begin
12245 -- Upward conversions are allowed (RM 4.6(22))
12247 if Covers (Target_Type, Opnd_Type)
12248 or else Is_Ancestor (Target_Type, Opnd_Type)
12249 then
12250 return True;
12252 -- Downward conversion are allowed if the operand is class-wide
12253 -- (RM 4.6(23)).
12255 elsif Is_Class_Wide_Type (Opnd_Type)
12256 and then Covers (Opnd_Type, Target_Type)
12257 then
12258 return True;
12260 elsif Covers (Opnd_Type, Target_Type)
12261 or else Is_Ancestor (Opnd_Type, Target_Type)
12262 then
12263 return
12264 Conversion_Check (False,
12265 "downward conversion of tagged objects not allowed");
12267 -- Ada 2005 (AI-251): The conversion to/from interface types is
12268 -- always valid. The types involved may be class-wide (sub)types.
12270 elsif Is_Interface (Etype (Base_Type (Target_Type)))
12271 or else Is_Interface (Etype (Base_Type (Opnd_Type)))
12272 then
12273 return True;
12275 -- If the operand is a class-wide type obtained through a limited_
12276 -- with clause, and the context includes the nonlimited view, use
12277 -- it to determine whether the conversion is legal.
12279 elsif Is_Class_Wide_Type (Opnd_Type)
12280 and then From_Limited_With (Opnd_Type)
12281 and then Present (Non_Limited_View (Etype (Opnd_Type)))
12282 and then Is_Interface (Non_Limited_View (Etype (Opnd_Type)))
12283 then
12284 return True;
12286 elsif Is_Access_Type (Opnd_Type)
12287 and then Is_Interface (Directly_Designated_Type (Opnd_Type))
12288 then
12289 return True;
12291 else
12292 Conversion_Error_NE
12293 ("invalid tagged conversion, not compatible with}",
12294 N, First_Subtype (Opnd_Type));
12295 return False;
12296 end if;
12297 end Valid_Tagged_Conversion;
12299 -- Start of processing for Valid_Conversion
12301 begin
12302 Check_Parameterless_Call (Operand);
12304 if Is_Overloaded (Operand) then
12305 declare
12306 I : Interp_Index;
12307 I1 : Interp_Index;
12308 It : Interp;
12309 It1 : Interp;
12310 N1 : Entity_Id;
12311 T1 : Entity_Id;
12313 begin
12314 -- Remove procedure calls, which syntactically cannot appear in
12315 -- this context, but which cannot be removed by type checking,
12316 -- because the context does not impose a type.
12318 -- The node may be labelled overloaded, but still contain only one
12319 -- interpretation because others were discarded earlier. If this
12320 -- is the case, retain the single interpretation if legal.
12322 Get_First_Interp (Operand, I, It);
12323 Opnd_Type := It.Typ;
12324 Get_Next_Interp (I, It);
12326 if Present (It.Typ)
12327 and then Opnd_Type /= Standard_Void_Type
12328 then
12329 -- More than one candidate interpretation is available
12331 Get_First_Interp (Operand, I, It);
12332 while Present (It.Typ) loop
12333 if It.Typ = Standard_Void_Type then
12334 Remove_Interp (I);
12335 end if;
12337 -- When compiling for a system where Address is of a visible
12338 -- integer type, spurious ambiguities can be produced when
12339 -- arithmetic operations have a literal operand and return
12340 -- System.Address or a descendant of it. These ambiguities
12341 -- are usually resolved by the context, but for conversions
12342 -- there is no context type and the removal of the spurious
12343 -- operations must be done explicitly here.
12345 if not Address_Is_Private
12346 and then Is_Descendant_Of_Address (It.Typ)
12347 then
12348 Remove_Interp (I);
12349 end if;
12351 Get_Next_Interp (I, It);
12352 end loop;
12353 end if;
12355 Get_First_Interp (Operand, I, It);
12356 I1 := I;
12357 It1 := It;
12359 if No (It.Typ) then
12360 Conversion_Error_N ("illegal operand in conversion", Operand);
12361 return False;
12362 end if;
12364 Get_Next_Interp (I, It);
12366 if Present (It.Typ) then
12367 N1 := It1.Nam;
12368 T1 := It1.Typ;
12369 It1 := Disambiguate (Operand, I1, I, Any_Type);
12371 if It1 = No_Interp then
12372 Conversion_Error_N
12373 ("ambiguous operand in conversion", Operand);
12375 -- If the interpretation involves a standard operator, use
12376 -- the location of the type, which may be user-defined.
12378 if Sloc (It.Nam) = Standard_Location then
12379 Error_Msg_Sloc := Sloc (It.Typ);
12380 else
12381 Error_Msg_Sloc := Sloc (It.Nam);
12382 end if;
12384 Conversion_Error_N -- CODEFIX
12385 ("\\possible interpretation#!", Operand);
12387 if Sloc (N1) = Standard_Location then
12388 Error_Msg_Sloc := Sloc (T1);
12389 else
12390 Error_Msg_Sloc := Sloc (N1);
12391 end if;
12393 Conversion_Error_N -- CODEFIX
12394 ("\\possible interpretation#!", Operand);
12396 return False;
12397 end if;
12398 end if;
12400 Set_Etype (Operand, It1.Typ);
12401 Opnd_Type := It1.Typ;
12402 end;
12403 end if;
12405 -- Deal with conversion of integer type to address if the pragma
12406 -- Allow_Integer_Address is in effect. We convert the conversion to
12407 -- an unchecked conversion in this case and we are all done.
12409 if Address_Integer_Convert_OK (Opnd_Type, Target_Type) then
12410 Rewrite (N, Unchecked_Convert_To (Target_Type, Expression (N)));
12411 Analyze_And_Resolve (N, Target_Type);
12412 return True;
12413 end if;
12415 -- If we are within a child unit, check whether the type of the
12416 -- expression has an ancestor in a parent unit, in which case it
12417 -- belongs to its derivation class even if the ancestor is private.
12418 -- See RM 7.3.1 (5.2/3).
12420 Inc_Ancestor := Get_Incomplete_View_Of_Ancestor (Opnd_Type);
12422 -- Numeric types
12424 if Is_Numeric_Type (Target_Type) then
12426 -- A universal fixed expression can be converted to any numeric type
12428 if Opnd_Type = Universal_Fixed then
12429 return True;
12431 -- Also no need to check when in an instance or inlined body, because
12432 -- the legality has been established when the template was analyzed.
12433 -- Furthermore, numeric conversions may occur where only a private
12434 -- view of the operand type is visible at the instantiation point.
12435 -- This results in a spurious error if we check that the operand type
12436 -- is a numeric type.
12438 -- Note: in a previous version of this unit, the following tests were
12439 -- applied only for generated code (Comes_From_Source set to False),
12440 -- but in fact the test is required for source code as well, since
12441 -- this situation can arise in source code.
12443 elsif In_Instance_Code or else In_Inlined_Body then
12444 return True;
12446 -- Otherwise we need the conversion check
12448 else
12449 return Conversion_Check
12450 (Is_Numeric_Type (Opnd_Type)
12451 or else
12452 (Present (Inc_Ancestor)
12453 and then Is_Numeric_Type (Inc_Ancestor)),
12454 "illegal operand for numeric conversion");
12455 end if;
12457 -- Array types
12459 elsif Is_Array_Type (Target_Type) then
12460 if not Is_Array_Type (Opnd_Type)
12461 or else Opnd_Type = Any_Composite
12462 or else Opnd_Type = Any_String
12463 then
12464 Conversion_Error_N
12465 ("illegal operand for array conversion", Operand);
12466 return False;
12468 else
12469 return Valid_Array_Conversion;
12470 end if;
12472 -- Ada 2005 (AI-251): Internally generated conversions of access to
12473 -- interface types added to force the displacement of the pointer to
12474 -- reference the corresponding dispatch table.
12476 elsif not Comes_From_Source (N)
12477 and then Is_Access_Type (Target_Type)
12478 and then Is_Interface (Designated_Type (Target_Type))
12479 then
12480 return True;
12482 -- Ada 2005 (AI-251): Anonymous access types where target references an
12483 -- interface type.
12485 elsif Is_Access_Type (Opnd_Type)
12486 and then Ekind_In (Target_Type, E_General_Access_Type,
12487 E_Anonymous_Access_Type)
12488 and then Is_Interface (Directly_Designated_Type (Target_Type))
12489 then
12490 -- Check the static accessibility rule of 4.6(17). Note that the
12491 -- check is not enforced when within an instance body, since the
12492 -- RM requires such cases to be caught at run time.
12494 -- If the operand is a rewriting of an allocator no check is needed
12495 -- because there are no accessibility issues.
12497 if Nkind (Original_Node (N)) = N_Allocator then
12498 null;
12500 elsif Ekind (Target_Type) /= E_Anonymous_Access_Type then
12501 if Type_Access_Level (Opnd_Type) >
12502 Deepest_Type_Access_Level (Target_Type)
12503 then
12504 -- In an instance, this is a run-time check, but one we know
12505 -- will fail, so generate an appropriate warning. The raise
12506 -- will be generated by Expand_N_Type_Conversion.
12508 if In_Instance_Body then
12509 Error_Msg_Warn := SPARK_Mode /= On;
12510 Conversion_Error_N
12511 ("cannot convert local pointer to non-local access type<<",
12512 Operand);
12513 Conversion_Error_N ("\Program_Error [<<", Operand);
12515 else
12516 Conversion_Error_N
12517 ("cannot convert local pointer to non-local access type",
12518 Operand);
12519 return False;
12520 end if;
12522 -- Special accessibility checks are needed in the case of access
12523 -- discriminants declared for a limited type.
12525 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12526 and then not Is_Local_Anonymous_Access (Opnd_Type)
12527 then
12528 -- When the operand is a selected access discriminant the check
12529 -- needs to be made against the level of the object denoted by
12530 -- the prefix of the selected name (Object_Access_Level handles
12531 -- checking the prefix of the operand for this case).
12533 if Nkind (Operand) = N_Selected_Component
12534 and then Object_Access_Level (Operand) >
12535 Deepest_Type_Access_Level (Target_Type)
12536 then
12537 -- In an instance, this is a run-time check, but one we know
12538 -- will fail, so generate an appropriate warning. The raise
12539 -- will be generated by Expand_N_Type_Conversion.
12541 if In_Instance_Body then
12542 Error_Msg_Warn := SPARK_Mode /= On;
12543 Conversion_Error_N
12544 ("cannot convert access discriminant to non-local "
12545 & "access type<<", Operand);
12546 Conversion_Error_N ("\Program_Error [<<", Operand);
12548 -- Real error if not in instance body
12550 else
12551 Conversion_Error_N
12552 ("cannot convert access discriminant to non-local "
12553 & "access type", Operand);
12554 return False;
12555 end if;
12556 end if;
12558 -- The case of a reference to an access discriminant from
12559 -- within a limited type declaration (which will appear as
12560 -- a discriminal) is always illegal because the level of the
12561 -- discriminant is considered to be deeper than any (nameable)
12562 -- access type.
12564 if Is_Entity_Name (Operand)
12565 and then not Is_Local_Anonymous_Access (Opnd_Type)
12566 and then
12567 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12568 and then Present (Discriminal_Link (Entity (Operand)))
12569 then
12570 Conversion_Error_N
12571 ("discriminant has deeper accessibility level than target",
12572 Operand);
12573 return False;
12574 end if;
12575 end if;
12576 end if;
12578 return True;
12580 -- General and anonymous access types
12582 elsif Ekind_In (Target_Type, E_General_Access_Type,
12583 E_Anonymous_Access_Type)
12584 and then
12585 Conversion_Check
12586 (Is_Access_Type (Opnd_Type)
12587 and then not
12588 Ekind_In (Opnd_Type, E_Access_Subprogram_Type,
12589 E_Access_Protected_Subprogram_Type),
12590 "must be an access-to-object type")
12591 then
12592 if Is_Access_Constant (Opnd_Type)
12593 and then not Is_Access_Constant (Target_Type)
12594 then
12595 Conversion_Error_N
12596 ("access-to-constant operand type not allowed", Operand);
12597 return False;
12598 end if;
12600 -- Check the static accessibility rule of 4.6(17). Note that the
12601 -- check is not enforced when within an instance body, since the RM
12602 -- requires such cases to be caught at run time.
12604 if Ekind (Target_Type) /= E_Anonymous_Access_Type
12605 or else Is_Local_Anonymous_Access (Target_Type)
12606 or else Nkind (Associated_Node_For_Itype (Target_Type)) =
12607 N_Object_Declaration
12608 then
12609 -- Ada 2012 (AI05-0149): Perform legality checking on implicit
12610 -- conversions from an anonymous access type to a named general
12611 -- access type. Such conversions are not allowed in the case of
12612 -- access parameters and stand-alone objects of an anonymous
12613 -- access type. The implicit conversion case is recognized by
12614 -- testing that Comes_From_Source is False and that it's been
12615 -- rewritten. The Comes_From_Source test isn't sufficient because
12616 -- nodes in inlined calls to predefined library routines can have
12617 -- Comes_From_Source set to False. (Is there a better way to test
12618 -- for implicit conversions???)
12620 if Ada_Version >= Ada_2012
12621 and then not Comes_From_Source (N)
12622 and then N /= Original_Node (N)
12623 and then Ekind (Target_Type) = E_General_Access_Type
12624 and then Ekind (Opnd_Type) = E_Anonymous_Access_Type
12625 then
12626 if Is_Itype (Opnd_Type) then
12628 -- Implicit conversions aren't allowed for objects of an
12629 -- anonymous access type, since such objects have nonstatic
12630 -- levels in Ada 2012.
12632 if Nkind (Associated_Node_For_Itype (Opnd_Type)) =
12633 N_Object_Declaration
12634 then
12635 Conversion_Error_N
12636 ("implicit conversion of stand-alone anonymous "
12637 & "access object not allowed", Operand);
12638 return False;
12640 -- Implicit conversions aren't allowed for anonymous access
12641 -- parameters. The "not Is_Local_Anonymous_Access_Type" test
12642 -- is done to exclude anonymous access results.
12644 elsif not Is_Local_Anonymous_Access (Opnd_Type)
12645 and then Nkind_In (Associated_Node_For_Itype (Opnd_Type),
12646 N_Function_Specification,
12647 N_Procedure_Specification)
12648 then
12649 Conversion_Error_N
12650 ("implicit conversion of anonymous access formal "
12651 & "not allowed", Operand);
12652 return False;
12654 -- This is a case where there's an enclosing object whose
12655 -- to which the "statically deeper than" relationship does
12656 -- not apply (such as an access discriminant selected from
12657 -- a dereference of an access parameter).
12659 elsif Object_Access_Level (Operand)
12660 = Scope_Depth (Standard_Standard)
12661 then
12662 Conversion_Error_N
12663 ("implicit conversion of anonymous access value "
12664 & "not allowed", Operand);
12665 return False;
12667 -- In other cases, the level of the operand's type must be
12668 -- statically less deep than that of the target type, else
12669 -- implicit conversion is disallowed (by RM12-8.6(27.1/3)).
12671 elsif Type_Access_Level (Opnd_Type) >
12672 Deepest_Type_Access_Level (Target_Type)
12673 then
12674 Conversion_Error_N
12675 ("implicit conversion of anonymous access value "
12676 & "violates accessibility", Operand);
12677 return False;
12678 end if;
12679 end if;
12681 elsif Type_Access_Level (Opnd_Type) >
12682 Deepest_Type_Access_Level (Target_Type)
12683 then
12684 -- In an instance, this is a run-time check, but one we know
12685 -- will fail, so generate an appropriate warning. The raise
12686 -- will be generated by Expand_N_Type_Conversion.
12688 if In_Instance_Body then
12689 Error_Msg_Warn := SPARK_Mode /= On;
12690 Conversion_Error_N
12691 ("cannot convert local pointer to non-local access type<<",
12692 Operand);
12693 Conversion_Error_N ("\Program_Error [<<", Operand);
12695 -- If not in an instance body, this is a real error
12697 else
12698 -- Avoid generation of spurious error message
12700 if not Error_Posted (N) then
12701 Conversion_Error_N
12702 ("cannot convert local pointer to non-local access type",
12703 Operand);
12704 end if;
12706 return False;
12707 end if;
12709 -- Special accessibility checks are needed in the case of access
12710 -- discriminants declared for a limited type.
12712 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12713 and then not Is_Local_Anonymous_Access (Opnd_Type)
12714 then
12715 -- When the operand is a selected access discriminant the check
12716 -- needs to be made against the level of the object denoted by
12717 -- the prefix of the selected name (Object_Access_Level handles
12718 -- checking the prefix of the operand for this case).
12720 if Nkind (Operand) = N_Selected_Component
12721 and then Object_Access_Level (Operand) >
12722 Deepest_Type_Access_Level (Target_Type)
12723 then
12724 -- In an instance, this is a run-time check, but one we know
12725 -- will fail, so generate an appropriate warning. The raise
12726 -- will be generated by Expand_N_Type_Conversion.
12728 if In_Instance_Body then
12729 Error_Msg_Warn := SPARK_Mode /= On;
12730 Conversion_Error_N
12731 ("cannot convert access discriminant to non-local "
12732 & "access type<<", Operand);
12733 Conversion_Error_N ("\Program_Error [<<", Operand);
12735 -- If not in an instance body, this is a real error
12737 else
12738 Conversion_Error_N
12739 ("cannot convert access discriminant to non-local "
12740 & "access type", Operand);
12741 return False;
12742 end if;
12743 end if;
12745 -- The case of a reference to an access discriminant from
12746 -- within a limited type declaration (which will appear as
12747 -- a discriminal) is always illegal because the level of the
12748 -- discriminant is considered to be deeper than any (nameable)
12749 -- access type.
12751 if Is_Entity_Name (Operand)
12752 and then
12753 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12754 and then Present (Discriminal_Link (Entity (Operand)))
12755 then
12756 Conversion_Error_N
12757 ("discriminant has deeper accessibility level than target",
12758 Operand);
12759 return False;
12760 end if;
12761 end if;
12762 end if;
12764 -- In the presence of limited_with clauses we have to use nonlimited
12765 -- views, if available.
12767 Check_Limited : declare
12768 function Full_Designated_Type (T : Entity_Id) return Entity_Id;
12769 -- Helper function to handle limited views
12771 --------------------------
12772 -- Full_Designated_Type --
12773 --------------------------
12775 function Full_Designated_Type (T : Entity_Id) return Entity_Id is
12776 Desig : constant Entity_Id := Designated_Type (T);
12778 begin
12779 -- Handle the limited view of a type
12781 if From_Limited_With (Desig)
12782 and then Has_Non_Limited_View (Desig)
12783 then
12784 return Available_View (Desig);
12785 else
12786 return Desig;
12787 end if;
12788 end Full_Designated_Type;
12790 -- Local Declarations
12792 Target : constant Entity_Id := Full_Designated_Type (Target_Type);
12793 Opnd : constant Entity_Id := Full_Designated_Type (Opnd_Type);
12795 Same_Base : constant Boolean :=
12796 Base_Type (Target) = Base_Type (Opnd);
12798 -- Start of processing for Check_Limited
12800 begin
12801 if Is_Tagged_Type (Target) then
12802 return Valid_Tagged_Conversion (Target, Opnd);
12804 else
12805 if not Same_Base then
12806 Conversion_Error_NE
12807 ("target designated type not compatible with }",
12808 N, Base_Type (Opnd));
12809 return False;
12811 -- Ada 2005 AI-384: legality rule is symmetric in both
12812 -- designated types. The conversion is legal (with possible
12813 -- constraint check) if either designated type is
12814 -- unconstrained.
12816 elsif Subtypes_Statically_Match (Target, Opnd)
12817 or else
12818 (Has_Discriminants (Target)
12819 and then
12820 (not Is_Constrained (Opnd)
12821 or else not Is_Constrained (Target)))
12822 then
12823 -- Special case, if Value_Size has been used to make the
12824 -- sizes different, the conversion is not allowed even
12825 -- though the subtypes statically match.
12827 if Known_Static_RM_Size (Target)
12828 and then Known_Static_RM_Size (Opnd)
12829 and then RM_Size (Target) /= RM_Size (Opnd)
12830 then
12831 Conversion_Error_NE
12832 ("target designated subtype not compatible with }",
12833 N, Opnd);
12834 Conversion_Error_NE
12835 ("\because sizes of the two designated subtypes differ",
12836 N, Opnd);
12837 return False;
12839 -- Normal case where conversion is allowed
12841 else
12842 return True;
12843 end if;
12845 else
12846 Error_Msg_NE
12847 ("target designated subtype not compatible with }",
12848 N, Opnd);
12849 return False;
12850 end if;
12851 end if;
12852 end Check_Limited;
12854 -- Access to subprogram types. If the operand is an access parameter,
12855 -- the type has a deeper accessibility that any master, and cannot be
12856 -- assigned. We must make an exception if the conversion is part of an
12857 -- assignment and the target is the return object of an extended return
12858 -- statement, because in that case the accessibility check takes place
12859 -- after the return.
12861 elsif Is_Access_Subprogram_Type (Target_Type)
12863 -- Note: this test of Opnd_Type is there to prevent entering this
12864 -- branch in the case of a remote access to subprogram type, which
12865 -- is internally represented as an E_Record_Type.
12867 and then Is_Access_Type (Opnd_Type)
12868 then
12869 if Ekind (Base_Type (Opnd_Type)) = E_Anonymous_Access_Subprogram_Type
12870 and then Is_Entity_Name (Operand)
12871 and then Ekind (Entity (Operand)) = E_In_Parameter
12872 and then
12873 (Nkind (Parent (N)) /= N_Assignment_Statement
12874 or else not Is_Entity_Name (Name (Parent (N)))
12875 or else not Is_Return_Object (Entity (Name (Parent (N)))))
12876 then
12877 Conversion_Error_N
12878 ("illegal attempt to store anonymous access to subprogram",
12879 Operand);
12880 Conversion_Error_N
12881 ("\value has deeper accessibility than any master "
12882 & "(RM 3.10.2 (13))",
12883 Operand);
12885 Error_Msg_NE
12886 ("\use named access type for& instead of access parameter",
12887 Operand, Entity (Operand));
12888 end if;
12890 -- Check that the designated types are subtype conformant
12892 Check_Subtype_Conformant (New_Id => Designated_Type (Target_Type),
12893 Old_Id => Designated_Type (Opnd_Type),
12894 Err_Loc => N);
12896 -- Check the static accessibility rule of 4.6(20)
12898 if Type_Access_Level (Opnd_Type) >
12899 Deepest_Type_Access_Level (Target_Type)
12900 then
12901 Conversion_Error_N
12902 ("operand type has deeper accessibility level than target",
12903 Operand);
12905 -- Check that if the operand type is declared in a generic body,
12906 -- then the target type must be declared within that same body
12907 -- (enforces last sentence of 4.6(20)).
12909 elsif Present (Enclosing_Generic_Body (Opnd_Type)) then
12910 declare
12911 O_Gen : constant Node_Id :=
12912 Enclosing_Generic_Body (Opnd_Type);
12914 T_Gen : Node_Id;
12916 begin
12917 T_Gen := Enclosing_Generic_Body (Target_Type);
12918 while Present (T_Gen) and then T_Gen /= O_Gen loop
12919 T_Gen := Enclosing_Generic_Body (T_Gen);
12920 end loop;
12922 if T_Gen /= O_Gen then
12923 Conversion_Error_N
12924 ("target type must be declared in same generic body "
12925 & "as operand type", N);
12926 end if;
12927 end;
12928 end if;
12930 return True;
12932 -- Remote access to subprogram types
12934 elsif Is_Remote_Access_To_Subprogram_Type (Target_Type)
12935 and then Is_Remote_Access_To_Subprogram_Type (Opnd_Type)
12936 then
12937 -- It is valid to convert from one RAS type to another provided
12938 -- that their specification statically match.
12940 -- Note: at this point, remote access to subprogram types have been
12941 -- expanded to their E_Record_Type representation, and we need to
12942 -- go back to the original access type definition using the
12943 -- Corresponding_Remote_Type attribute in order to check that the
12944 -- designated profiles match.
12946 pragma Assert (Ekind (Target_Type) = E_Record_Type);
12947 pragma Assert (Ekind (Opnd_Type) = E_Record_Type);
12949 Check_Subtype_Conformant
12950 (New_Id =>
12951 Designated_Type (Corresponding_Remote_Type (Target_Type)),
12952 Old_Id =>
12953 Designated_Type (Corresponding_Remote_Type (Opnd_Type)),
12954 Err_Loc =>
12956 return True;
12958 -- If it was legal in the generic, it's legal in the instance
12960 elsif In_Instance_Body then
12961 return True;
12963 -- If both are tagged types, check legality of view conversions
12965 elsif Is_Tagged_Type (Target_Type)
12966 and then
12967 Is_Tagged_Type (Opnd_Type)
12968 then
12969 return Valid_Tagged_Conversion (Target_Type, Opnd_Type);
12971 -- Types derived from the same root type are convertible
12973 elsif Root_Type (Target_Type) = Root_Type (Opnd_Type) then
12974 return True;
12976 -- In an instance or an inlined body, there may be inconsistent views of
12977 -- the same type, or of types derived from a common root.
12979 elsif (In_Instance or In_Inlined_Body)
12980 and then
12981 Root_Type (Underlying_Type (Target_Type)) =
12982 Root_Type (Underlying_Type (Opnd_Type))
12983 then
12984 return True;
12986 -- Special check for common access type error case
12988 elsif Ekind (Target_Type) = E_Access_Type
12989 and then Is_Access_Type (Opnd_Type)
12990 then
12991 Conversion_Error_N ("target type must be general access type!", N);
12992 Conversion_Error_NE -- CODEFIX
12993 ("add ALL to }!", N, Target_Type);
12994 return False;
12996 -- Here we have a real conversion error
12998 else
12999 Conversion_Error_NE
13000 ("invalid conversion, not compatible with }", N, Opnd_Type);
13001 return False;
13002 end if;
13003 end Valid_Conversion;
13005 end Sem_Res;