Make std::vector<bool> meet C++11 allocator requirements.
[official-gcc.git] / gcc / ada / sem_res.adb
blob893e1e15ed8897b518e0f3cb4bbcd9a2ee07d341
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-2014, 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 Fname; use Fname;
39 with Freeze; use Freeze;
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 Restrict; use Restrict;
50 with Rident; use Rident;
51 with Rtsfind; use Rtsfind;
52 with Sem; use Sem;
53 with Sem_Aux; use Sem_Aux;
54 with Sem_Aggr; use Sem_Aggr;
55 with Sem_Attr; use Sem_Attr;
56 with Sem_Cat; use Sem_Cat;
57 with Sem_Ch4; use Sem_Ch4;
58 with Sem_Ch6; use Sem_Ch6;
59 with Sem_Ch8; use Sem_Ch8;
60 with Sem_Ch13; use Sem_Ch13;
61 with Sem_Dim; use Sem_Dim;
62 with Sem_Disp; use Sem_Disp;
63 with Sem_Dist; use Sem_Dist;
64 with Sem_Elim; use Sem_Elim;
65 with Sem_Elab; use Sem_Elab;
66 with Sem_Eval; use Sem_Eval;
67 with Sem_Intr; use Sem_Intr;
68 with Sem_Util; use Sem_Util;
69 with Targparm; use Targparm;
70 with Sem_Type; use Sem_Type;
71 with Sem_Warn; use Sem_Warn;
72 with Sinfo; use Sinfo;
73 with Sinfo.CN; use Sinfo.CN;
74 with Snames; use Snames;
75 with Stand; use Stand;
76 with Stringt; use Stringt;
77 with Style; use Style;
78 with Tbuild; use Tbuild;
79 with Uintp; use Uintp;
80 with Urealp; use Urealp;
82 package body Sem_Res is
84 -----------------------
85 -- Local Subprograms --
86 -----------------------
88 -- Second pass (top-down) type checking and overload resolution procedures
89 -- Typ is the type required by context. These procedures propagate the type
90 -- information recursively to the descendants of N. If the node is not
91 -- overloaded, its Etype is established in the first pass. If overloaded,
92 -- the Resolve routines set the correct type. For arith. operators, the
93 -- Etype is the base type of the context.
95 -- Note that Resolve_Attribute is separated off in Sem_Attr
97 procedure Check_Discriminant_Use (N : Node_Id);
98 -- Enforce the restrictions on the use of discriminants when constraining
99 -- a component of a discriminated type (record or concurrent type).
101 procedure Check_For_Visible_Operator (N : Node_Id; T : Entity_Id);
102 -- Given a node for an operator associated with type T, check that
103 -- the operator is visible. Operators all of whose operands are
104 -- universal must be checked for visibility during resolution
105 -- because their type is not determinable based on their operands.
107 procedure Check_Fully_Declared_Prefix
108 (Typ : Entity_Id;
109 Pref : Node_Id);
110 -- Check that the type of the prefix of a dereference is not incomplete
112 procedure Check_Ghost_Context (Ghost_Id : Entity_Id; Ghost_Ref : Node_Id);
113 -- Determine whether node Ghost_Ref appears within a Ghost-friendly context
114 -- where Ghost entity Ghost_Id can safely reside.
116 function Check_Infinite_Recursion (N : Node_Id) return Boolean;
117 -- Given a call node, N, which is known to occur immediately within the
118 -- subprogram being called, determines whether it is a detectable case of
119 -- an infinite recursion, and if so, outputs appropriate messages. Returns
120 -- True if an infinite recursion is detected, and False otherwise.
122 procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id);
123 -- If the type of the object being initialized uses the secondary stack
124 -- directly or indirectly, create a transient scope for the call to the
125 -- init proc. This is because we do not create transient scopes for the
126 -- initialization of individual components within the init proc itself.
127 -- Could be optimized away perhaps?
129 procedure Check_No_Direct_Boolean_Operators (N : Node_Id);
130 -- N is the node for a logical operator. If the operator is predefined, and
131 -- the root type of the operands is Standard.Boolean, then a check is made
132 -- for restriction No_Direct_Boolean_Operators. This procedure also handles
133 -- the style check for Style_Check_Boolean_And_Or.
135 function Is_Atomic_Ref_With_Address (N : Node_Id) return Boolean;
136 -- N is either an indexed component or a selected component. This function
137 -- returns true if the prefix refers to an object that has an address
138 -- clause (the case in which we may want to issue a warning).
140 function Is_Definite_Access_Type (E : Entity_Id) return Boolean;
141 -- Determine whether E is an access type declared by an access declaration,
142 -- and not an (anonymous) allocator type.
144 function Is_Predefined_Op (Nam : Entity_Id) return Boolean;
145 -- Utility to check whether the entity for an operator is a predefined
146 -- operator, in which case the expression is left as an operator in the
147 -- tree (else it is rewritten into a call). An instance of an intrinsic
148 -- conversion operation may be given an operator name, but is not treated
149 -- like an operator. Note that an operator that is an imported back-end
150 -- builtin has convention Intrinsic, but is expected to be rewritten into
151 -- a call, so such an operator is not treated as predefined by this
152 -- predicate.
154 procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id);
155 -- If a default expression in entry call N depends on the discriminants
156 -- of the task, it must be replaced with a reference to the discriminant
157 -- of the task being called.
159 procedure Resolve_Op_Concat_Arg
160 (N : Node_Id;
161 Arg : Node_Id;
162 Typ : Entity_Id;
163 Is_Comp : Boolean);
164 -- Internal procedure for Resolve_Op_Concat to resolve one operand of
165 -- concatenation operator. The operand is either of the array type or of
166 -- the component type. If the operand is an aggregate, and the component
167 -- type is composite, this is ambiguous if component type has aggregates.
169 procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id);
170 -- Does the first part of the work of Resolve_Op_Concat
172 procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id);
173 -- Does the "rest" of the work of Resolve_Op_Concat, after the left operand
174 -- has been resolved. See Resolve_Op_Concat for details.
176 procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id);
177 procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id);
178 procedure Resolve_Call (N : Node_Id; Typ : Entity_Id);
179 procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id);
180 procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id);
181 procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id);
182 procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id);
183 procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id);
184 procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id);
185 procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id);
186 procedure Resolve_If_Expression (N : Node_Id; Typ : Entity_Id);
187 procedure Resolve_Generalized_Indexing (N : Node_Id; Typ : Entity_Id);
188 procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id);
189 procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id);
190 procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id);
191 procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id);
192 procedure Resolve_Null (N : Node_Id; Typ : Entity_Id);
193 procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id);
194 procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id);
195 procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id);
196 procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id);
197 procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id);
198 procedure Resolve_Raise_Expression (N : Node_Id; Typ : Entity_Id);
199 procedure Resolve_Range (N : Node_Id; Typ : Entity_Id);
200 procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id);
201 procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id);
202 procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id);
203 procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id);
204 procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id);
205 procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id);
206 procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id);
207 procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id);
208 procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id);
209 procedure Resolve_Unchecked_Expression (N : Node_Id; Typ : Entity_Id);
210 procedure Resolve_Unchecked_Type_Conversion (N : Node_Id; Typ : Entity_Id);
212 function Operator_Kind
213 (Op_Name : Name_Id;
214 Is_Binary : Boolean) return Node_Kind;
215 -- Utility to map the name of an operator into the corresponding Node. Used
216 -- by other node rewriting procedures.
218 procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id);
219 -- Resolve actuals of call, and add default expressions for missing ones.
220 -- N is the Node_Id for the subprogram call, and Nam is the entity of the
221 -- called subprogram.
223 procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id);
224 -- Called from Resolve_Call, when the prefix denotes an entry or element
225 -- of entry family. Actuals are resolved as for subprograms, and the node
226 -- is rebuilt as an entry call. Also called for protected operations. Typ
227 -- is the context type, which is used when the operation is a protected
228 -- function with no arguments, and the return value is indexed.
230 procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id);
231 -- A call to a user-defined intrinsic operator is rewritten as a call to
232 -- the corresponding predefined operator, with suitable conversions. Note
233 -- that this applies only for intrinsic operators that denote predefined
234 -- operators, not ones that are intrinsic imports of back-end builtins.
236 procedure Resolve_Intrinsic_Unary_Operator (N : Node_Id; Typ : Entity_Id);
237 -- Ditto, for arithmetic unary operators
239 procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id);
240 -- If an operator node resolves to a call to a user-defined operator,
241 -- rewrite the node as a function call.
243 procedure Make_Call_Into_Operator
244 (N : Node_Id;
245 Typ : Entity_Id;
246 Op_Id : Entity_Id);
247 -- Inverse transformation: if an operator is given in functional notation,
248 -- then after resolving the node, transform into an operator node, so
249 -- that operands are resolved properly. Recall that predefined operators
250 -- do not have a full signature and special resolution rules apply.
252 procedure Rewrite_Renamed_Operator
253 (N : Node_Id;
254 Op : Entity_Id;
255 Typ : Entity_Id);
256 -- An operator can rename another, e.g. in an instantiation. In that
257 -- case, the proper operator node must be constructed and resolved.
259 procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id);
260 -- The String_Literal_Subtype is built for all strings that are not
261 -- operands of a static concatenation operation. If the argument is
262 -- not a N_String_Literal node, then the call has no effect.
264 procedure Set_Slice_Subtype (N : Node_Id);
265 -- Build subtype of array type, with the range specified by the slice
267 procedure Simplify_Type_Conversion (N : Node_Id);
268 -- Called after N has been resolved and evaluated, but before range checks
269 -- have been applied. Currently simplifies a combination of floating-point
270 -- to integer conversion and Rounding or Truncation attribute.
272 function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id;
273 -- A universal_fixed expression in an universal context is unambiguous if
274 -- there is only one applicable fixed point type. Determining whether there
275 -- is only one requires a search over all visible entities, and happens
276 -- only in very pathological cases (see 6115-006).
278 -------------------------
279 -- Ambiguous_Character --
280 -------------------------
282 procedure Ambiguous_Character (C : Node_Id) is
283 E : Entity_Id;
285 begin
286 if Nkind (C) = N_Character_Literal then
287 Error_Msg_N ("ambiguous character literal", C);
289 -- First the ones in Standard
291 Error_Msg_N ("\\possible interpretation: Character!", C);
292 Error_Msg_N ("\\possible interpretation: Wide_Character!", C);
294 -- Include Wide_Wide_Character in Ada 2005 mode
296 if Ada_Version >= Ada_2005 then
297 Error_Msg_N ("\\possible interpretation: Wide_Wide_Character!", C);
298 end if;
300 -- Now any other types that match
302 E := Current_Entity (C);
303 while Present (E) loop
304 Error_Msg_NE ("\\possible interpretation:}!", C, Etype (E));
305 E := Homonym (E);
306 end loop;
307 end if;
308 end Ambiguous_Character;
310 -------------------------
311 -- Analyze_And_Resolve --
312 -------------------------
314 procedure Analyze_And_Resolve (N : Node_Id) is
315 begin
316 Analyze (N);
317 Resolve (N);
318 end Analyze_And_Resolve;
320 procedure Analyze_And_Resolve (N : Node_Id; Typ : Entity_Id) is
321 begin
322 Analyze (N);
323 Resolve (N, Typ);
324 end Analyze_And_Resolve;
326 -- Versions with check(s) suppressed
328 procedure Analyze_And_Resolve
329 (N : Node_Id;
330 Typ : Entity_Id;
331 Suppress : Check_Id)
333 Scop : constant Entity_Id := Current_Scope;
335 begin
336 if Suppress = All_Checks then
337 declare
338 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
339 begin
340 Scope_Suppress.Suppress := (others => True);
341 Analyze_And_Resolve (N, Typ);
342 Scope_Suppress.Suppress := Sva;
343 end;
345 else
346 declare
347 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
348 begin
349 Scope_Suppress.Suppress (Suppress) := True;
350 Analyze_And_Resolve (N, Typ);
351 Scope_Suppress.Suppress (Suppress) := Svg;
352 end;
353 end if;
355 if Current_Scope /= Scop
356 and then Scope_Is_Transient
357 then
358 -- This can only happen if a transient scope was created for an inner
359 -- expression, which will be removed upon completion of the analysis
360 -- of an enclosing construct. The transient scope must have the
361 -- suppress status of the enclosing environment, not of this Analyze
362 -- call.
364 Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
365 Scope_Suppress;
366 end if;
367 end Analyze_And_Resolve;
369 procedure Analyze_And_Resolve
370 (N : Node_Id;
371 Suppress : Check_Id)
373 Scop : constant Entity_Id := Current_Scope;
375 begin
376 if Suppress = All_Checks then
377 declare
378 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
379 begin
380 Scope_Suppress.Suppress := (others => True);
381 Analyze_And_Resolve (N);
382 Scope_Suppress.Suppress := Sva;
383 end;
385 else
386 declare
387 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
388 begin
389 Scope_Suppress.Suppress (Suppress) := True;
390 Analyze_And_Resolve (N);
391 Scope_Suppress.Suppress (Suppress) := Svg;
392 end;
393 end if;
395 if Current_Scope /= Scop and then Scope_Is_Transient then
396 Scope_Stack.Table (Scope_Stack.Last).Save_Scope_Suppress :=
397 Scope_Suppress;
398 end if;
399 end Analyze_And_Resolve;
401 ----------------------------
402 -- Check_Discriminant_Use --
403 ----------------------------
405 procedure Check_Discriminant_Use (N : Node_Id) is
406 PN : constant Node_Id := Parent (N);
407 Disc : constant Entity_Id := Entity (N);
408 P : Node_Id;
409 D : Node_Id;
411 begin
412 -- Any use in a spec-expression is legal
414 if In_Spec_Expression then
415 null;
417 elsif Nkind (PN) = N_Range then
419 -- Discriminant cannot be used to constrain a scalar type
421 P := Parent (PN);
423 if Nkind (P) = N_Range_Constraint
424 and then Nkind (Parent (P)) = N_Subtype_Indication
425 and then Nkind (Parent (Parent (P))) = N_Component_Definition
426 then
427 Error_Msg_N ("discriminant cannot constrain scalar type", N);
429 elsif Nkind (P) = N_Index_Or_Discriminant_Constraint then
431 -- The following check catches the unusual case where a
432 -- discriminant appears within an index constraint that is part of
433 -- a larger expression within a constraint on a component, e.g. "C
434 -- : Int range 1 .. F (new A(1 .. D))". For now we only check case
435 -- of record components, and note that a similar check should also
436 -- apply in the case of discriminant constraints 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_Ghost_Context --
697 -------------------------
699 procedure Check_Ghost_Context (Ghost_Id : Entity_Id; Ghost_Ref : Node_Id) is
700 procedure Check_Ghost_Policy (Id : Entity_Id; Err_N : Node_Id);
701 -- Verify that the Ghost policy at the point of declaration of entity Id
702 -- matches the policy at the point of reference. If this is not the case
703 -- emit an error at Err_N.
705 function Is_OK_Ghost_Context (Context : Node_Id) return Boolean;
706 -- Determine whether node Context denotes a Ghost-friendly context where
707 -- a Ghost entity can safely reside.
709 -------------------------
710 -- Is_OK_Ghost_Context --
711 -------------------------
713 function Is_OK_Ghost_Context (Context : Node_Id) return Boolean is
714 function Is_Ghost_Declaration (Decl : Node_Id) return Boolean;
715 -- Determine whether node Decl is a Ghost declaration or appears
716 -- within a Ghost declaration.
718 --------------------------
719 -- Is_Ghost_Declaration --
720 --------------------------
722 function Is_Ghost_Declaration (Decl : Node_Id) return Boolean is
723 Par : Node_Id;
724 Subp_Decl : Node_Id;
725 Subp_Id : Entity_Id;
727 begin
728 -- Climb the parent chain looking for an object declaration
730 Par := Decl;
731 while Present (Par) loop
732 case Nkind (Par) is
733 when N_Abstract_Subprogram_Declaration |
734 N_Exception_Declaration |
735 N_Exception_Renaming_Declaration |
736 N_Full_Type_Declaration |
737 N_Generic_Function_Renaming_Declaration |
738 N_Generic_Package_Declaration |
739 N_Generic_Package_Renaming_Declaration |
740 N_Generic_Procedure_Renaming_Declaration |
741 N_Generic_Subprogram_Declaration |
742 N_Number_Declaration |
743 N_Object_Declaration |
744 N_Object_Renaming_Declaration |
745 N_Package_Declaration |
746 N_Package_Renaming_Declaration |
747 N_Private_Extension_Declaration |
748 N_Private_Type_Declaration |
749 N_Subprogram_Declaration |
750 N_Subprogram_Renaming_Declaration |
751 N_Subtype_Declaration =>
752 return Is_Subject_To_Ghost (Par);
754 when others =>
755 null;
756 end case;
758 -- Special cases
760 -- A reference to a Ghost entity may appear as the default
761 -- expression of a formal parameter of a subprogram body. This
762 -- context must be treated as suitable because the relation
763 -- between the spec and the body has not been established and
764 -- the body is not marked as Ghost yet. The real check was
765 -- performed on the spec.
767 if Nkind (Par) = N_Parameter_Specification
768 and then Nkind (Parent (Parent (Par))) = N_Subprogram_Body
769 then
770 return True;
772 -- References to Ghost entities may be relocated in internally
773 -- generated bodies.
775 elsif Nkind (Par) = N_Subprogram_Body
776 and then not Comes_From_Source (Par)
777 then
778 Subp_Id := Corresponding_Spec (Par);
780 -- The original context is an expression function that has
781 -- been split into a spec and a body. The context is OK as
782 -- long as the the initial declaration is Ghost.
784 if Present (Subp_Id) then
785 Subp_Decl :=
786 Original_Node (Unit_Declaration_Node (Subp_Id));
788 if Nkind (Subp_Decl) = N_Expression_Function then
789 return Is_Subject_To_Ghost (Subp_Decl);
790 end if;
791 end if;
793 -- Otherwise this is either an internal body or an internal
794 -- completion. Both are OK because the real check was done
795 -- before expansion activities.
797 return True;
798 end if;
800 -- Prevent the search from going too far
802 if Is_Body_Or_Package_Declaration (Par) then
803 return False;
804 end if;
806 Par := Parent (Par);
807 end loop;
809 return False;
810 end Is_Ghost_Declaration;
812 -- Start of processing for Is_OK_Ghost_Context
814 begin
815 -- The Ghost entity appears within an assertion expression
817 if In_Assertion_Expr > 0 then
818 return True;
820 -- The Ghost entity is part of a declaration or its completion
822 elsif Is_Ghost_Declaration (Context) then
823 return True;
825 -- The Ghost entity is referenced within a Ghost statement
827 elsif Is_Ghost_Statement_Or_Pragma (Context) then
828 return True;
830 else
831 return False;
832 end if;
833 end Is_OK_Ghost_Context;
835 ------------------------
836 -- Check_Ghost_Policy --
837 ------------------------
839 procedure Check_Ghost_Policy (Id : Entity_Id; Err_N : Node_Id) is
840 Policy : constant Name_Id := Policy_In_Effect (Name_Ghost);
842 begin
843 -- The Ghost policy in effect a the point of declaration and at the
844 -- point of use must match (SPARK RM 6.9(13)).
846 if Is_Checked_Ghost_Entity (Id) and then Policy = Name_Ignore then
847 Error_Msg_Sloc := Sloc (Err_N);
849 SPARK_Msg_N ("incompatible ghost policies in effect", Err_N);
850 SPARK_Msg_NE ("\& declared with ghost policy Check", Err_N, Id);
851 SPARK_Msg_NE ("\& used # with ghost policy Ignore", Err_N, Id);
853 elsif Is_Ignored_Ghost_Entity (Id) and then Policy = Name_Check then
854 Error_Msg_Sloc := Sloc (Err_N);
856 SPARK_Msg_N ("incompatible ghost policies in effect", Err_N);
857 SPARK_Msg_NE ("\& declared with ghost policy Ignore", Err_N, Id);
858 SPARK_Msg_NE ("\& used # with ghost policy Check", Err_N, Id);
859 end if;
860 end Check_Ghost_Policy;
862 -- Start of processing for Check_Ghost_Context
864 begin
865 -- Once it has been established that the reference to the Ghost entity
866 -- is within a suitable context, ensure that the policy at the point of
867 -- declaration and at the point of use match.
869 if Is_OK_Ghost_Context (Ghost_Ref) then
870 Check_Ghost_Policy (Ghost_Id, Ghost_Ref);
872 -- Otherwise the Ghost entity appears in a non-Ghost context and affects
873 -- its behavior or value.
875 else
876 SPARK_Msg_N
877 ("ghost entity cannot appear in this context (SPARK RM 6.9(12))",
878 Ghost_Ref);
879 end if;
880 end Check_Ghost_Context;
882 ------------------------------
883 -- Check_Infinite_Recursion --
884 ------------------------------
886 function Check_Infinite_Recursion (N : Node_Id) return Boolean is
887 P : Node_Id;
888 C : Node_Id;
890 function Same_Argument_List return Boolean;
891 -- Check whether list of actuals is identical to list of formals of
892 -- called function (which is also the enclosing scope).
894 ------------------------
895 -- Same_Argument_List --
896 ------------------------
898 function Same_Argument_List return Boolean is
899 A : Node_Id;
900 F : Entity_Id;
901 Subp : Entity_Id;
903 begin
904 if not Is_Entity_Name (Name (N)) then
905 return False;
906 else
907 Subp := Entity (Name (N));
908 end if;
910 F := First_Formal (Subp);
911 A := First_Actual (N);
912 while Present (F) and then Present (A) loop
913 if not Is_Entity_Name (A)
914 or else Entity (A) /= F
915 then
916 return False;
917 end if;
919 Next_Actual (A);
920 Next_Formal (F);
921 end loop;
923 return True;
924 end Same_Argument_List;
926 -- Start of processing for Check_Infinite_Recursion
928 begin
929 -- Special case, if this is a procedure call and is a call to the
930 -- current procedure with the same argument list, then this is for
931 -- sure an infinite recursion and we insert a call to raise SE.
933 if Is_List_Member (N)
934 and then List_Length (List_Containing (N)) = 1
935 and then Same_Argument_List
936 then
937 declare
938 P : constant Node_Id := Parent (N);
939 begin
940 if Nkind (P) = N_Handled_Sequence_Of_Statements
941 and then Nkind (Parent (P)) = N_Subprogram_Body
942 and then Is_Empty_List (Declarations (Parent (P)))
943 then
944 Error_Msg_Warn := SPARK_Mode /= On;
945 Error_Msg_N ("!infinite recursion<<", N);
946 Error_Msg_N ("\!Storage_Error [<<", N);
947 Insert_Action (N,
948 Make_Raise_Storage_Error (Sloc (N),
949 Reason => SE_Infinite_Recursion));
950 return True;
951 end if;
952 end;
953 end if;
955 -- If not that special case, search up tree, quitting if we reach a
956 -- construct (e.g. a conditional) that tells us that this is not a
957 -- case for an infinite recursion warning.
959 C := N;
960 loop
961 P := Parent (C);
963 -- If no parent, then we were not inside a subprogram, this can for
964 -- example happen when processing certain pragmas in a spec. Just
965 -- return False in this case.
967 if No (P) then
968 return False;
969 end if;
971 -- Done if we get to subprogram body, this is definitely an infinite
972 -- recursion case if we did not find anything to stop us.
974 exit when Nkind (P) = N_Subprogram_Body;
976 -- If appearing in conditional, result is false
978 if Nkind_In (P, N_Or_Else,
979 N_And_Then,
980 N_Case_Expression,
981 N_Case_Statement,
982 N_If_Expression,
983 N_If_Statement)
984 then
985 return False;
987 elsif Nkind (P) = N_Handled_Sequence_Of_Statements
988 and then C /= First (Statements (P))
989 then
990 -- If the call is the expression of a return statement and the
991 -- actuals are identical to the formals, it's worth a warning.
992 -- However, we skip this if there is an immediately preceding
993 -- raise statement, since the call is never executed.
995 -- Furthermore, this corresponds to a common idiom:
997 -- function F (L : Thing) return Boolean is
998 -- begin
999 -- raise Program_Error;
1000 -- return F (L);
1001 -- end F;
1003 -- for generating a stub function
1005 if Nkind (Parent (N)) = N_Simple_Return_Statement
1006 and then Same_Argument_List
1007 then
1008 exit when not Is_List_Member (Parent (N));
1010 -- OK, return statement is in a statement list, look for raise
1012 declare
1013 Nod : Node_Id;
1015 begin
1016 -- Skip past N_Freeze_Entity nodes generated by expansion
1018 Nod := Prev (Parent (N));
1019 while Present (Nod)
1020 and then Nkind (Nod) = N_Freeze_Entity
1021 loop
1022 Prev (Nod);
1023 end loop;
1025 -- If no raise statement, give warning. We look at the
1026 -- original node, because in the case of "raise ... with
1027 -- ...", the node has been transformed into a call.
1029 exit when Nkind (Original_Node (Nod)) /= N_Raise_Statement
1030 and then
1031 (Nkind (Nod) not in N_Raise_xxx_Error
1032 or else Present (Condition (Nod)));
1033 end;
1034 end if;
1036 return False;
1038 else
1039 C := P;
1040 end if;
1041 end loop;
1043 Error_Msg_Warn := SPARK_Mode /= On;
1044 Error_Msg_N ("!possible infinite recursion<<", N);
1045 Error_Msg_N ("\!??Storage_Error ]<<", N);
1047 return True;
1048 end Check_Infinite_Recursion;
1050 -------------------------------
1051 -- Check_Initialization_Call --
1052 -------------------------------
1054 procedure Check_Initialization_Call (N : Entity_Id; Nam : Entity_Id) is
1055 Typ : constant Entity_Id := Etype (First_Formal (Nam));
1057 function Uses_SS (T : Entity_Id) return Boolean;
1058 -- Check whether the creation of an object of the type will involve
1059 -- use of the secondary stack. If T is a record type, this is true
1060 -- if the expression for some component uses the secondary stack, e.g.
1061 -- through a call to a function that returns an unconstrained value.
1062 -- False if T is controlled, because cleanups occur elsewhere.
1064 -------------
1065 -- Uses_SS --
1066 -------------
1068 function Uses_SS (T : Entity_Id) return Boolean is
1069 Comp : Entity_Id;
1070 Expr : Node_Id;
1071 Full_Type : Entity_Id := Underlying_Type (T);
1073 begin
1074 -- Normally we want to use the underlying type, but if it's not set
1075 -- then continue with T.
1077 if not Present (Full_Type) then
1078 Full_Type := T;
1079 end if;
1081 if Is_Controlled (Full_Type) then
1082 return False;
1084 elsif Is_Array_Type (Full_Type) then
1085 return Uses_SS (Component_Type (Full_Type));
1087 elsif Is_Record_Type (Full_Type) then
1088 Comp := First_Component (Full_Type);
1089 while Present (Comp) loop
1090 if Ekind (Comp) = E_Component
1091 and then Nkind (Parent (Comp)) = N_Component_Declaration
1092 then
1093 -- The expression for a dynamic component may be rewritten
1094 -- as a dereference, so retrieve original node.
1096 Expr := Original_Node (Expression (Parent (Comp)));
1098 -- Return True if the expression is a call to a function
1099 -- (including an attribute function such as Image, or a
1100 -- user-defined operator) with a result that requires a
1101 -- transient scope.
1103 if (Nkind (Expr) = N_Function_Call
1104 or else Nkind (Expr) in N_Op
1105 or else (Nkind (Expr) = N_Attribute_Reference
1106 and then Present (Expressions (Expr))))
1107 and then Requires_Transient_Scope (Etype (Expr))
1108 then
1109 return True;
1111 elsif Uses_SS (Etype (Comp)) then
1112 return True;
1113 end if;
1114 end if;
1116 Next_Component (Comp);
1117 end loop;
1119 return False;
1121 else
1122 return False;
1123 end if;
1124 end Uses_SS;
1126 -- Start of processing for Check_Initialization_Call
1128 begin
1129 -- Establish a transient scope if the type needs it
1131 if Uses_SS (Typ) then
1132 Establish_Transient_Scope (First_Actual (N), Sec_Stack => True);
1133 end if;
1134 end Check_Initialization_Call;
1136 ---------------------------------------
1137 -- Check_No_Direct_Boolean_Operators --
1138 ---------------------------------------
1140 procedure Check_No_Direct_Boolean_Operators (N : Node_Id) is
1141 begin
1142 if Scope (Entity (N)) = Standard_Standard
1143 and then Root_Type (Etype (Left_Opnd (N))) = Standard_Boolean
1144 then
1145 -- Restriction only applies to original source code
1147 if Comes_From_Source (N) then
1148 Check_Restriction (No_Direct_Boolean_Operators, N);
1149 end if;
1150 end if;
1152 -- Do style check (but skip if in instance, error is on template)
1154 if Style_Check then
1155 if not In_Instance then
1156 Check_Boolean_Operator (N);
1157 end if;
1158 end if;
1159 end Check_No_Direct_Boolean_Operators;
1161 ------------------------------
1162 -- Check_Parameterless_Call --
1163 ------------------------------
1165 procedure Check_Parameterless_Call (N : Node_Id) is
1166 Nam : Node_Id;
1168 function Prefix_Is_Access_Subp return Boolean;
1169 -- If the prefix is of an access_to_subprogram type, the node must be
1170 -- rewritten as a call. Ditto if the prefix is overloaded and all its
1171 -- interpretations are access to subprograms.
1173 ---------------------------
1174 -- Prefix_Is_Access_Subp --
1175 ---------------------------
1177 function Prefix_Is_Access_Subp return Boolean is
1178 I : Interp_Index;
1179 It : Interp;
1181 begin
1182 -- If the context is an attribute reference that can apply to
1183 -- functions, this is never a parameterless call (RM 4.1.4(6)).
1185 if Nkind (Parent (N)) = N_Attribute_Reference
1186 and then Nam_In (Attribute_Name (Parent (N)), Name_Address,
1187 Name_Code_Address,
1188 Name_Access)
1189 then
1190 return False;
1191 end if;
1193 if not Is_Overloaded (N) then
1194 return
1195 Ekind (Etype (N)) = E_Subprogram_Type
1196 and then Base_Type (Etype (Etype (N))) /= Standard_Void_Type;
1197 else
1198 Get_First_Interp (N, I, It);
1199 while Present (It.Typ) loop
1200 if Ekind (It.Typ) /= E_Subprogram_Type
1201 or else Base_Type (Etype (It.Typ)) = Standard_Void_Type
1202 then
1203 return False;
1204 end if;
1206 Get_Next_Interp (I, It);
1207 end loop;
1209 return True;
1210 end if;
1211 end Prefix_Is_Access_Subp;
1213 -- Start of processing for Check_Parameterless_Call
1215 begin
1216 -- Defend against junk stuff if errors already detected
1218 if Total_Errors_Detected /= 0 then
1219 if Nkind (N) in N_Has_Etype and then Etype (N) = Any_Type then
1220 return;
1221 elsif Nkind (N) in N_Has_Chars
1222 and then Chars (N) in Error_Name_Or_No_Name
1223 then
1224 return;
1225 end if;
1227 Require_Entity (N);
1228 end if;
1230 -- If the context expects a value, and the name is a procedure, this is
1231 -- most likely a missing 'Access. Don't try to resolve the parameterless
1232 -- call, error will be caught when the outer call is analyzed.
1234 if Is_Entity_Name (N)
1235 and then Ekind (Entity (N)) = E_Procedure
1236 and then not Is_Overloaded (N)
1237 and then
1238 Nkind_In (Parent (N), N_Parameter_Association,
1239 N_Function_Call,
1240 N_Procedure_Call_Statement)
1241 then
1242 return;
1243 end if;
1245 -- Rewrite as call if overloadable entity that is (or could be, in the
1246 -- overloaded case) a function call. If we know for sure that the entity
1247 -- is an enumeration literal, we do not rewrite it.
1249 -- If the entity is the name of an operator, it cannot be a call because
1250 -- operators cannot have default parameters. In this case, this must be
1251 -- a string whose contents coincide with an operator name. Set the kind
1252 -- of the node appropriately.
1254 if (Is_Entity_Name (N)
1255 and then Nkind (N) /= N_Operator_Symbol
1256 and then Is_Overloadable (Entity (N))
1257 and then (Ekind (Entity (N)) /= E_Enumeration_Literal
1258 or else Is_Overloaded (N)))
1260 -- Rewrite as call if it is an explicit dereference of an expression of
1261 -- a subprogram access type, and the subprogram type is not that of a
1262 -- procedure or entry.
1264 or else
1265 (Nkind (N) = N_Explicit_Dereference and then Prefix_Is_Access_Subp)
1267 -- Rewrite as call if it is a selected component which is a function,
1268 -- this is the case of a call to a protected function (which may be
1269 -- overloaded with other protected operations).
1271 or else
1272 (Nkind (N) = N_Selected_Component
1273 and then (Ekind (Entity (Selector_Name (N))) = E_Function
1274 or else
1275 (Ekind_In (Entity (Selector_Name (N)), E_Entry,
1276 E_Procedure)
1277 and then Is_Overloaded (Selector_Name (N)))))
1279 -- If one of the above three conditions is met, rewrite as call. Apply
1280 -- the rewriting only once.
1282 then
1283 if Nkind (Parent (N)) /= N_Function_Call
1284 or else N /= Name (Parent (N))
1285 then
1287 -- This may be a prefixed call that was not fully analyzed, e.g.
1288 -- an actual in an instance.
1290 if Ada_Version >= Ada_2005
1291 and then Nkind (N) = N_Selected_Component
1292 and then Is_Dispatching_Operation (Entity (Selector_Name (N)))
1293 then
1294 Analyze_Selected_Component (N);
1296 if Nkind (N) /= N_Selected_Component then
1297 return;
1298 end if;
1299 end if;
1301 -- The node is the name of the parameterless call. Preserve its
1302 -- descendants, which may be complex expressions.
1304 Nam := Relocate_Node (N);
1306 -- If overloaded, overload set belongs to new copy
1308 Save_Interps (N, Nam);
1310 -- Change node to parameterless function call (note that the
1311 -- Parameter_Associations associations field is left set to Empty,
1312 -- its normal default value since there are no parameters)
1314 Change_Node (N, N_Function_Call);
1315 Set_Name (N, Nam);
1316 Set_Sloc (N, Sloc (Nam));
1317 Analyze_Call (N);
1318 end if;
1320 elsif Nkind (N) = N_Parameter_Association then
1321 Check_Parameterless_Call (Explicit_Actual_Parameter (N));
1323 elsif Nkind (N) = N_Operator_Symbol then
1324 Change_Operator_Symbol_To_String_Literal (N);
1325 Set_Is_Overloaded (N, False);
1326 Set_Etype (N, Any_String);
1327 end if;
1328 end Check_Parameterless_Call;
1330 --------------------------------
1331 -- Is_Atomic_Ref_With_Address --
1332 --------------------------------
1334 function Is_Atomic_Ref_With_Address (N : Node_Id) return Boolean is
1335 Pref : constant Node_Id := Prefix (N);
1337 begin
1338 if not Is_Entity_Name (Pref) then
1339 return False;
1341 else
1342 declare
1343 Pent : constant Entity_Id := Entity (Pref);
1344 Ptyp : constant Entity_Id := Etype (Pent);
1345 begin
1346 return not Is_Access_Type (Ptyp)
1347 and then (Is_Atomic (Ptyp) or else Is_Atomic (Pent))
1348 and then Present (Address_Clause (Pent));
1349 end;
1350 end if;
1351 end Is_Atomic_Ref_With_Address;
1353 -----------------------------
1354 -- Is_Definite_Access_Type --
1355 -----------------------------
1357 function Is_Definite_Access_Type (E : Entity_Id) return Boolean is
1358 Btyp : constant Entity_Id := Base_Type (E);
1359 begin
1360 return Ekind (Btyp) = E_Access_Type
1361 or else (Ekind (Btyp) = E_Access_Subprogram_Type
1362 and then Comes_From_Source (Btyp));
1363 end Is_Definite_Access_Type;
1365 ----------------------
1366 -- Is_Predefined_Op --
1367 ----------------------
1369 function Is_Predefined_Op (Nam : Entity_Id) return Boolean is
1370 begin
1371 -- Predefined operators are intrinsic subprograms
1373 if not Is_Intrinsic_Subprogram (Nam) then
1374 return False;
1375 end if;
1377 -- A call to a back-end builtin is never a predefined operator
1379 if Is_Imported (Nam) and then Present (Interface_Name (Nam)) then
1380 return False;
1381 end if;
1383 return not Is_Generic_Instance (Nam)
1384 and then Chars (Nam) in Any_Operator_Name
1385 and then (No (Alias (Nam)) or else Is_Predefined_Op (Alias (Nam)));
1386 end Is_Predefined_Op;
1388 -----------------------------
1389 -- Make_Call_Into_Operator --
1390 -----------------------------
1392 procedure Make_Call_Into_Operator
1393 (N : Node_Id;
1394 Typ : Entity_Id;
1395 Op_Id : Entity_Id)
1397 Op_Name : constant Name_Id := Chars (Op_Id);
1398 Act1 : Node_Id := First_Actual (N);
1399 Act2 : Node_Id := Next_Actual (Act1);
1400 Error : Boolean := False;
1401 Func : constant Entity_Id := Entity (Name (N));
1402 Is_Binary : constant Boolean := Present (Act2);
1403 Op_Node : Node_Id;
1404 Opnd_Type : Entity_Id;
1405 Orig_Type : Entity_Id := Empty;
1406 Pack : Entity_Id;
1408 type Kind_Test is access function (E : Entity_Id) return Boolean;
1410 function Operand_Type_In_Scope (S : Entity_Id) return Boolean;
1411 -- If the operand is not universal, and the operator is given by an
1412 -- expanded name, verify that the operand has an interpretation with a
1413 -- type defined in the given scope of the operator.
1415 function Type_In_P (Test : Kind_Test) return Entity_Id;
1416 -- Find a type of the given class in package Pack that contains the
1417 -- operator.
1419 ---------------------------
1420 -- Operand_Type_In_Scope --
1421 ---------------------------
1423 function Operand_Type_In_Scope (S : Entity_Id) return Boolean is
1424 Nod : constant Node_Id := Right_Opnd (Op_Node);
1425 I : Interp_Index;
1426 It : Interp;
1428 begin
1429 if not Is_Overloaded (Nod) then
1430 return Scope (Base_Type (Etype (Nod))) = S;
1432 else
1433 Get_First_Interp (Nod, I, It);
1434 while Present (It.Typ) loop
1435 if Scope (Base_Type (It.Typ)) = S then
1436 return True;
1437 end if;
1439 Get_Next_Interp (I, It);
1440 end loop;
1442 return False;
1443 end if;
1444 end Operand_Type_In_Scope;
1446 ---------------
1447 -- Type_In_P --
1448 ---------------
1450 function Type_In_P (Test : Kind_Test) return Entity_Id is
1451 E : Entity_Id;
1453 function In_Decl return Boolean;
1454 -- Verify that node is not part of the type declaration for the
1455 -- candidate type, which would otherwise be invisible.
1457 -------------
1458 -- In_Decl --
1459 -------------
1461 function In_Decl return Boolean is
1462 Decl_Node : constant Node_Id := Parent (E);
1463 N2 : Node_Id;
1465 begin
1466 N2 := N;
1468 if Etype (E) = Any_Type then
1469 return True;
1471 elsif No (Decl_Node) then
1472 return False;
1474 else
1475 while Present (N2)
1476 and then Nkind (N2) /= N_Compilation_Unit
1477 loop
1478 if N2 = Decl_Node then
1479 return True;
1480 else
1481 N2 := Parent (N2);
1482 end if;
1483 end loop;
1485 return False;
1486 end if;
1487 end In_Decl;
1489 -- Start of processing for Type_In_P
1491 begin
1492 -- If the context type is declared in the prefix package, this is the
1493 -- desired base type.
1495 if Scope (Base_Type (Typ)) = Pack and then Test (Typ) then
1496 return Base_Type (Typ);
1498 else
1499 E := First_Entity (Pack);
1500 while Present (E) loop
1501 if Test (E)
1502 and then not In_Decl
1503 then
1504 return E;
1505 end if;
1507 Next_Entity (E);
1508 end loop;
1510 return Empty;
1511 end if;
1512 end Type_In_P;
1514 -- Start of processing for Make_Call_Into_Operator
1516 begin
1517 Op_Node := New_Node (Operator_Kind (Op_Name, Is_Binary), Sloc (N));
1519 -- Binary operator
1521 if Is_Binary then
1522 Set_Left_Opnd (Op_Node, Relocate_Node (Act1));
1523 Set_Right_Opnd (Op_Node, Relocate_Node (Act2));
1524 Save_Interps (Act1, Left_Opnd (Op_Node));
1525 Save_Interps (Act2, Right_Opnd (Op_Node));
1526 Act1 := Left_Opnd (Op_Node);
1527 Act2 := Right_Opnd (Op_Node);
1529 -- Unary operator
1531 else
1532 Set_Right_Opnd (Op_Node, Relocate_Node (Act1));
1533 Save_Interps (Act1, Right_Opnd (Op_Node));
1534 Act1 := Right_Opnd (Op_Node);
1535 end if;
1537 -- If the operator is denoted by an expanded name, and the prefix is
1538 -- not Standard, but the operator is a predefined one whose scope is
1539 -- Standard, then this is an implicit_operator, inserted as an
1540 -- interpretation by the procedure of the same name. This procedure
1541 -- overestimates the presence of implicit operators, because it does
1542 -- not examine the type of the operands. Verify now that the operand
1543 -- type appears in the given scope. If right operand is universal,
1544 -- check the other operand. In the case of concatenation, either
1545 -- argument can be the component type, so check the type of the result.
1546 -- If both arguments are literals, look for a type of the right kind
1547 -- defined in the given scope. This elaborate nonsense is brought to
1548 -- you courtesy of b33302a. The type itself must be frozen, so we must
1549 -- find the type of the proper class in the given scope.
1551 -- A final wrinkle is the multiplication operator for fixed point types,
1552 -- which is defined in Standard only, and not in the scope of the
1553 -- fixed point type itself.
1555 if Nkind (Name (N)) = N_Expanded_Name then
1556 Pack := Entity (Prefix (Name (N)));
1558 -- If this is a package renaming, get renamed entity, which will be
1559 -- the scope of the operands if operaton is type-correct.
1561 if Present (Renamed_Entity (Pack)) then
1562 Pack := Renamed_Entity (Pack);
1563 end if;
1565 -- If the entity being called is defined in the given package, it is
1566 -- a renaming of a predefined operator, and known to be legal.
1568 if Scope (Entity (Name (N))) = Pack
1569 and then Pack /= Standard_Standard
1570 then
1571 null;
1573 -- Visibility does not need to be checked in an instance: if the
1574 -- operator was not visible in the generic it has been diagnosed
1575 -- already, else there is an implicit copy of it in the instance.
1577 elsif In_Instance then
1578 null;
1580 elsif Nam_In (Op_Name, Name_Op_Multiply, Name_Op_Divide)
1581 and then Is_Fixed_Point_Type (Etype (Left_Opnd (Op_Node)))
1582 and then Is_Fixed_Point_Type (Etype (Right_Opnd (Op_Node)))
1583 then
1584 if Pack /= Standard_Standard then
1585 Error := True;
1586 end if;
1588 -- Ada 2005 AI-420: Predefined equality on Universal_Access is
1589 -- available.
1591 elsif Ada_Version >= Ada_2005
1592 and then Nam_In (Op_Name, Name_Op_Eq, Name_Op_Ne)
1593 and then Ekind (Etype (Act1)) = E_Anonymous_Access_Type
1594 then
1595 null;
1597 else
1598 Opnd_Type := Base_Type (Etype (Right_Opnd (Op_Node)));
1600 if Op_Name = Name_Op_Concat then
1601 Opnd_Type := Base_Type (Typ);
1603 elsif (Scope (Opnd_Type) = Standard_Standard
1604 and then Is_Binary)
1605 or else (Nkind (Right_Opnd (Op_Node)) = N_Attribute_Reference
1606 and then Is_Binary
1607 and then not Comes_From_Source (Opnd_Type))
1608 then
1609 Opnd_Type := Base_Type (Etype (Left_Opnd (Op_Node)));
1610 end if;
1612 if Scope (Opnd_Type) = Standard_Standard then
1614 -- Verify that the scope contains a type that corresponds to
1615 -- the given literal. Optimize the case where Pack is Standard.
1617 if Pack /= Standard_Standard then
1619 if Opnd_Type = Universal_Integer then
1620 Orig_Type := Type_In_P (Is_Integer_Type'Access);
1622 elsif Opnd_Type = Universal_Real then
1623 Orig_Type := Type_In_P (Is_Real_Type'Access);
1625 elsif Opnd_Type = Any_String then
1626 Orig_Type := Type_In_P (Is_String_Type'Access);
1628 elsif Opnd_Type = Any_Access then
1629 Orig_Type := Type_In_P (Is_Definite_Access_Type'Access);
1631 elsif Opnd_Type = Any_Composite then
1632 Orig_Type := Type_In_P (Is_Composite_Type'Access);
1634 if Present (Orig_Type) then
1635 if Has_Private_Component (Orig_Type) then
1636 Orig_Type := Empty;
1637 else
1638 Set_Etype (Act1, Orig_Type);
1640 if Is_Binary then
1641 Set_Etype (Act2, Orig_Type);
1642 end if;
1643 end if;
1644 end if;
1646 else
1647 Orig_Type := Empty;
1648 end if;
1650 Error := No (Orig_Type);
1651 end if;
1653 elsif Ekind (Opnd_Type) = E_Allocator_Type
1654 and then No (Type_In_P (Is_Definite_Access_Type'Access))
1655 then
1656 Error := True;
1658 -- If the type is defined elsewhere, and the operator is not
1659 -- defined in the given scope (by a renaming declaration, e.g.)
1660 -- then this is an error as well. If an extension of System is
1661 -- present, and the type may be defined there, Pack must be
1662 -- System itself.
1664 elsif Scope (Opnd_Type) /= Pack
1665 and then Scope (Op_Id) /= Pack
1666 and then (No (System_Aux_Id)
1667 or else Scope (Opnd_Type) /= System_Aux_Id
1668 or else Pack /= Scope (System_Aux_Id))
1669 then
1670 if not Is_Overloaded (Right_Opnd (Op_Node)) then
1671 Error := True;
1672 else
1673 Error := not Operand_Type_In_Scope (Pack);
1674 end if;
1676 elsif Pack = Standard_Standard
1677 and then not Operand_Type_In_Scope (Standard_Standard)
1678 then
1679 Error := True;
1680 end if;
1681 end if;
1683 if Error then
1684 Error_Msg_Node_2 := Pack;
1685 Error_Msg_NE
1686 ("& not declared in&", N, Selector_Name (Name (N)));
1687 Set_Etype (N, Any_Type);
1688 return;
1690 -- Detect a mismatch between the context type and the result type
1691 -- in the named package, which is otherwise not detected if the
1692 -- operands are universal. Check is only needed if source entity is
1693 -- an operator, not a function that renames an operator.
1695 elsif Nkind (Parent (N)) /= N_Type_Conversion
1696 and then Ekind (Entity (Name (N))) = E_Operator
1697 and then Is_Numeric_Type (Typ)
1698 and then not Is_Universal_Numeric_Type (Typ)
1699 and then Scope (Base_Type (Typ)) /= Pack
1700 and then not In_Instance
1701 then
1702 if Is_Fixed_Point_Type (Typ)
1703 and then Nam_In (Op_Name, Name_Op_Multiply, Name_Op_Divide)
1704 then
1705 -- Already checked above
1707 null;
1709 -- Operator may be defined in an extension of System
1711 elsif Present (System_Aux_Id)
1712 and then Scope (Opnd_Type) = System_Aux_Id
1713 then
1714 null;
1716 else
1717 -- Could we use Wrong_Type here??? (this would require setting
1718 -- Etype (N) to the actual type found where Typ was expected).
1720 Error_Msg_NE ("expect }", N, Typ);
1721 end if;
1722 end if;
1723 end if;
1725 Set_Chars (Op_Node, Op_Name);
1727 if not Is_Private_Type (Etype (N)) then
1728 Set_Etype (Op_Node, Base_Type (Etype (N)));
1729 else
1730 Set_Etype (Op_Node, Etype (N));
1731 end if;
1733 -- If this is a call to a function that renames a predefined equality,
1734 -- the renaming declaration provides a type that must be used to
1735 -- resolve the operands. This must be done now because resolution of
1736 -- the equality node will not resolve any remaining ambiguity, and it
1737 -- assumes that the first operand is not overloaded.
1739 if Nam_In (Op_Name, Name_Op_Eq, Name_Op_Ne)
1740 and then Ekind (Func) = E_Function
1741 and then Is_Overloaded (Act1)
1742 then
1743 Resolve (Act1, Base_Type (Etype (First_Formal (Func))));
1744 Resolve (Act2, Base_Type (Etype (First_Formal (Func))));
1745 end if;
1747 Set_Entity (Op_Node, Op_Id);
1748 Generate_Reference (Op_Id, N, ' ');
1750 -- Do rewrite setting Comes_From_Source on the result if the original
1751 -- call came from source. Although it is not strictly the case that the
1752 -- operator as such comes from the source, logically it corresponds
1753 -- exactly to the function call in the source, so it should be marked
1754 -- this way (e.g. to make sure that validity checks work fine).
1756 declare
1757 CS : constant Boolean := Comes_From_Source (N);
1758 begin
1759 Rewrite (N, Op_Node);
1760 Set_Comes_From_Source (N, CS);
1761 end;
1763 -- If this is an arithmetic operator and the result type is private,
1764 -- the operands and the result must be wrapped in conversion to
1765 -- expose the underlying numeric type and expand the proper checks,
1766 -- e.g. on division.
1768 if Is_Private_Type (Typ) then
1769 case Nkind (N) is
1770 when N_Op_Add | N_Op_Subtract | N_Op_Multiply | N_Op_Divide |
1771 N_Op_Expon | N_Op_Mod | N_Op_Rem =>
1772 Resolve_Intrinsic_Operator (N, Typ);
1774 when N_Op_Plus | N_Op_Minus | N_Op_Abs =>
1775 Resolve_Intrinsic_Unary_Operator (N, Typ);
1777 when others =>
1778 Resolve (N, Typ);
1779 end case;
1780 else
1781 Resolve (N, Typ);
1782 end if;
1784 -- If in ASIS_Mode, propagate operand types to original actuals of
1785 -- function call, which would otherwise not be fully resolved. If
1786 -- the call has already been constant-folded, nothing to do. We
1787 -- relocate the operand nodes rather than copy them, to preserve
1788 -- original_node pointers, given that the operands themselves may
1789 -- have been rewritten. If the call was itself a rewriting of an
1790 -- operator node, nothing to do.
1792 if ASIS_Mode
1793 and then Nkind (N) in N_Op
1794 and then Nkind (Original_Node (N)) = N_Function_Call
1795 then
1796 if Is_Binary then
1797 Rewrite (First (Parameter_Associations (Original_Node (N))),
1798 Relocate_Node (Left_Opnd (N)));
1799 Rewrite (Next (First (Parameter_Associations (Original_Node (N)))),
1800 Relocate_Node (Right_Opnd (N)));
1801 else
1802 Rewrite (First (Parameter_Associations (Original_Node (N))),
1803 Relocate_Node (Right_Opnd (N)));
1804 end if;
1806 Set_Parent (Original_Node (N), Parent (N));
1807 end if;
1808 end Make_Call_Into_Operator;
1810 -------------------
1811 -- Operator_Kind --
1812 -------------------
1814 function Operator_Kind
1815 (Op_Name : Name_Id;
1816 Is_Binary : Boolean) return Node_Kind
1818 Kind : Node_Kind;
1820 begin
1821 -- Use CASE statement or array???
1823 if Is_Binary then
1824 if Op_Name = Name_Op_And then
1825 Kind := N_Op_And;
1826 elsif Op_Name = Name_Op_Or then
1827 Kind := N_Op_Or;
1828 elsif Op_Name = Name_Op_Xor then
1829 Kind := N_Op_Xor;
1830 elsif Op_Name = Name_Op_Eq then
1831 Kind := N_Op_Eq;
1832 elsif Op_Name = Name_Op_Ne then
1833 Kind := N_Op_Ne;
1834 elsif Op_Name = Name_Op_Lt then
1835 Kind := N_Op_Lt;
1836 elsif Op_Name = Name_Op_Le then
1837 Kind := N_Op_Le;
1838 elsif Op_Name = Name_Op_Gt then
1839 Kind := N_Op_Gt;
1840 elsif Op_Name = Name_Op_Ge then
1841 Kind := N_Op_Ge;
1842 elsif Op_Name = Name_Op_Add then
1843 Kind := N_Op_Add;
1844 elsif Op_Name = Name_Op_Subtract then
1845 Kind := N_Op_Subtract;
1846 elsif Op_Name = Name_Op_Concat then
1847 Kind := N_Op_Concat;
1848 elsif Op_Name = Name_Op_Multiply then
1849 Kind := N_Op_Multiply;
1850 elsif Op_Name = Name_Op_Divide then
1851 Kind := N_Op_Divide;
1852 elsif Op_Name = Name_Op_Mod then
1853 Kind := N_Op_Mod;
1854 elsif Op_Name = Name_Op_Rem then
1855 Kind := N_Op_Rem;
1856 elsif Op_Name = Name_Op_Expon then
1857 Kind := N_Op_Expon;
1858 else
1859 raise Program_Error;
1860 end if;
1862 -- Unary operators
1864 else
1865 if Op_Name = Name_Op_Add then
1866 Kind := N_Op_Plus;
1867 elsif Op_Name = Name_Op_Subtract then
1868 Kind := N_Op_Minus;
1869 elsif Op_Name = Name_Op_Abs then
1870 Kind := N_Op_Abs;
1871 elsif Op_Name = Name_Op_Not then
1872 Kind := N_Op_Not;
1873 else
1874 raise Program_Error;
1875 end if;
1876 end if;
1878 return Kind;
1879 end Operator_Kind;
1881 ----------------------------
1882 -- Preanalyze_And_Resolve --
1883 ----------------------------
1885 procedure Preanalyze_And_Resolve (N : Node_Id; T : Entity_Id) is
1886 Save_Full_Analysis : constant Boolean := Full_Analysis;
1888 begin
1889 Full_Analysis := False;
1890 Expander_Mode_Save_And_Set (False);
1892 -- Normally, we suppress all checks for this preanalysis. There is no
1893 -- point in processing them now, since they will be applied properly
1894 -- and in the proper location when the default expressions reanalyzed
1895 -- and reexpanded later on. We will also have more information at that
1896 -- point for possible suppression of individual checks.
1898 -- However, in SPARK mode, most expansion is suppressed, and this
1899 -- later reanalysis and reexpansion may not occur. SPARK mode does
1900 -- require the setting of checking flags for proof purposes, so we
1901 -- do the SPARK preanalysis without suppressing checks.
1903 -- This special handling for SPARK mode is required for example in the
1904 -- case of Ada 2012 constructs such as quantified expressions, which are
1905 -- expanded in two separate steps.
1907 if GNATprove_Mode then
1908 Analyze_And_Resolve (N, T);
1909 else
1910 Analyze_And_Resolve (N, T, Suppress => All_Checks);
1911 end if;
1913 Expander_Mode_Restore;
1914 Full_Analysis := Save_Full_Analysis;
1915 end Preanalyze_And_Resolve;
1917 -- Version without context type
1919 procedure Preanalyze_And_Resolve (N : Node_Id) is
1920 Save_Full_Analysis : constant Boolean := Full_Analysis;
1922 begin
1923 Full_Analysis := False;
1924 Expander_Mode_Save_And_Set (False);
1926 Analyze (N);
1927 Resolve (N, Etype (N), Suppress => All_Checks);
1929 Expander_Mode_Restore;
1930 Full_Analysis := Save_Full_Analysis;
1931 end Preanalyze_And_Resolve;
1933 ----------------------------------
1934 -- Replace_Actual_Discriminants --
1935 ----------------------------------
1937 procedure Replace_Actual_Discriminants (N : Node_Id; Default : Node_Id) is
1938 Loc : constant Source_Ptr := Sloc (N);
1939 Tsk : Node_Id := Empty;
1941 function Process_Discr (Nod : Node_Id) return Traverse_Result;
1942 -- Comment needed???
1944 -------------------
1945 -- Process_Discr --
1946 -------------------
1948 function Process_Discr (Nod : Node_Id) return Traverse_Result is
1949 Ent : Entity_Id;
1951 begin
1952 if Nkind (Nod) = N_Identifier then
1953 Ent := Entity (Nod);
1955 if Present (Ent)
1956 and then Ekind (Ent) = E_Discriminant
1957 then
1958 Rewrite (Nod,
1959 Make_Selected_Component (Loc,
1960 Prefix => New_Copy_Tree (Tsk, New_Sloc => Loc),
1961 Selector_Name => Make_Identifier (Loc, Chars (Ent))));
1963 Set_Etype (Nod, Etype (Ent));
1964 end if;
1966 end if;
1968 return OK;
1969 end Process_Discr;
1971 procedure Replace_Discrs is new Traverse_Proc (Process_Discr);
1973 -- Start of processing for Replace_Actual_Discriminants
1975 begin
1976 if not Expander_Active then
1977 return;
1978 end if;
1980 if Nkind (Name (N)) = N_Selected_Component then
1981 Tsk := Prefix (Name (N));
1983 elsif Nkind (Name (N)) = N_Indexed_Component then
1984 Tsk := Prefix (Prefix (Name (N)));
1985 end if;
1987 if No (Tsk) then
1988 return;
1989 else
1990 Replace_Discrs (Default);
1991 end if;
1992 end Replace_Actual_Discriminants;
1994 -------------
1995 -- Resolve --
1996 -------------
1998 procedure Resolve (N : Node_Id; Typ : Entity_Id) is
1999 Ambiguous : Boolean := False;
2000 Ctx_Type : Entity_Id := Typ;
2001 Expr_Type : Entity_Id := Empty; -- prevent junk warning
2002 Err_Type : Entity_Id := Empty;
2003 Found : Boolean := False;
2004 From_Lib : Boolean;
2005 I : Interp_Index;
2006 I1 : Interp_Index := 0; -- prevent junk warning
2007 It : Interp;
2008 It1 : Interp;
2009 Seen : Entity_Id := Empty; -- prevent junk warning
2011 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean;
2012 -- Determine whether a node comes from a predefined library unit or
2013 -- Standard.
2015 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id);
2016 -- Try and fix up a literal so that it matches its expected type. New
2017 -- literals are manufactured if necessary to avoid cascaded errors.
2019 procedure Report_Ambiguous_Argument;
2020 -- Additional diagnostics when an ambiguous call has an ambiguous
2021 -- argument (typically a controlling actual).
2023 procedure Resolution_Failed;
2024 -- Called when attempt at resolving current expression fails
2026 ------------------------------------
2027 -- Comes_From_Predefined_Lib_Unit --
2028 -------------------------------------
2030 function Comes_From_Predefined_Lib_Unit (Nod : Node_Id) return Boolean is
2031 begin
2032 return
2033 Sloc (Nod) = Standard_Location
2034 or else Is_Predefined_File_Name
2035 (Unit_File_Name (Get_Source_Unit (Sloc (Nod))));
2036 end Comes_From_Predefined_Lib_Unit;
2038 --------------------
2039 -- Patch_Up_Value --
2040 --------------------
2042 procedure Patch_Up_Value (N : Node_Id; Typ : Entity_Id) is
2043 begin
2044 if Nkind (N) = N_Integer_Literal and then Is_Real_Type (Typ) then
2045 Rewrite (N,
2046 Make_Real_Literal (Sloc (N),
2047 Realval => UR_From_Uint (Intval (N))));
2048 Set_Etype (N, Universal_Real);
2049 Set_Is_Static_Expression (N);
2051 elsif Nkind (N) = N_Real_Literal and then Is_Integer_Type (Typ) then
2052 Rewrite (N,
2053 Make_Integer_Literal (Sloc (N),
2054 Intval => UR_To_Uint (Realval (N))));
2055 Set_Etype (N, Universal_Integer);
2056 Set_Is_Static_Expression (N);
2058 elsif Nkind (N) = N_String_Literal
2059 and then Is_Character_Type (Typ)
2060 then
2061 Set_Character_Literal_Name (Char_Code (Character'Pos ('A')));
2062 Rewrite (N,
2063 Make_Character_Literal (Sloc (N),
2064 Chars => Name_Find,
2065 Char_Literal_Value =>
2066 UI_From_Int (Character'Pos ('A'))));
2067 Set_Etype (N, Any_Character);
2068 Set_Is_Static_Expression (N);
2070 elsif Nkind (N) /= N_String_Literal and then Is_String_Type (Typ) then
2071 Rewrite (N,
2072 Make_String_Literal (Sloc (N),
2073 Strval => End_String));
2075 elsif Nkind (N) = N_Range then
2076 Patch_Up_Value (Low_Bound (N), Typ);
2077 Patch_Up_Value (High_Bound (N), Typ);
2078 end if;
2079 end Patch_Up_Value;
2081 -------------------------------
2082 -- Report_Ambiguous_Argument --
2083 -------------------------------
2085 procedure Report_Ambiguous_Argument is
2086 Arg : constant Node_Id := First (Parameter_Associations (N));
2087 I : Interp_Index;
2088 It : Interp;
2090 begin
2091 if Nkind (Arg) = N_Function_Call
2092 and then Is_Entity_Name (Name (Arg))
2093 and then Is_Overloaded (Name (Arg))
2094 then
2095 Error_Msg_NE ("ambiguous call to&", Arg, Name (Arg));
2097 -- Could use comments on what is going on here???
2099 Get_First_Interp (Name (Arg), I, It);
2100 while Present (It.Nam) loop
2101 Error_Msg_Sloc := Sloc (It.Nam);
2103 if Nkind (Parent (It.Nam)) = N_Full_Type_Declaration then
2104 Error_Msg_N ("interpretation (inherited) #!", Arg);
2105 else
2106 Error_Msg_N ("interpretation #!", Arg);
2107 end if;
2109 Get_Next_Interp (I, It);
2110 end loop;
2111 end if;
2112 end Report_Ambiguous_Argument;
2114 -----------------------
2115 -- Resolution_Failed --
2116 -----------------------
2118 procedure Resolution_Failed is
2119 begin
2120 Patch_Up_Value (N, Typ);
2121 Set_Etype (N, Typ);
2122 Debug_A_Exit ("resolving ", N, " (done, resolution failed)");
2123 Set_Is_Overloaded (N, False);
2125 -- The caller will return without calling the expander, so we need
2126 -- to set the analyzed flag. Note that it is fine to set Analyzed
2127 -- to True even if we are in the middle of a shallow analysis,
2128 -- (see the spec of sem for more details) since this is an error
2129 -- situation anyway, and there is no point in repeating the
2130 -- analysis later (indeed it won't work to repeat it later, since
2131 -- we haven't got a clear resolution of which entity is being
2132 -- referenced.)
2134 Set_Analyzed (N, True);
2135 return;
2136 end Resolution_Failed;
2138 -- Start of processing for Resolve
2140 begin
2141 if N = Error then
2142 return;
2143 end if;
2145 -- Access attribute on remote subprogram cannot be used for a non-remote
2146 -- access-to-subprogram type.
2148 if Nkind (N) = N_Attribute_Reference
2149 and then Nam_In (Attribute_Name (N), Name_Access,
2150 Name_Unrestricted_Access,
2151 Name_Unchecked_Access)
2152 and then Comes_From_Source (N)
2153 and then Is_Entity_Name (Prefix (N))
2154 and then Is_Subprogram (Entity (Prefix (N)))
2155 and then Is_Remote_Call_Interface (Entity (Prefix (N)))
2156 and then not Is_Remote_Access_To_Subprogram_Type (Typ)
2157 then
2158 Error_Msg_N
2159 ("prefix must statically denote a non-remote subprogram", N);
2160 end if;
2162 From_Lib := Comes_From_Predefined_Lib_Unit (N);
2164 -- If the context is a Remote_Access_To_Subprogram, access attributes
2165 -- must be resolved with the corresponding fat pointer. There is no need
2166 -- to check for the attribute name since the return type of an
2167 -- attribute is never a remote type.
2169 if Nkind (N) = N_Attribute_Reference
2170 and then Comes_From_Source (N)
2171 and then (Is_Remote_Call_Interface (Typ) or else Is_Remote_Types (Typ))
2172 then
2173 declare
2174 Attr : constant Attribute_Id :=
2175 Get_Attribute_Id (Attribute_Name (N));
2176 Pref : constant Node_Id := Prefix (N);
2177 Decl : Node_Id;
2178 Spec : Node_Id;
2179 Is_Remote : Boolean := True;
2181 begin
2182 -- Check that Typ is a remote access-to-subprogram type
2184 if Is_Remote_Access_To_Subprogram_Type (Typ) then
2186 -- Prefix (N) must statically denote a remote subprogram
2187 -- declared in a package specification.
2189 if Attr = Attribute_Access or else
2190 Attr = Attribute_Unchecked_Access or else
2191 Attr = Attribute_Unrestricted_Access
2192 then
2193 Decl := Unit_Declaration_Node (Entity (Pref));
2195 if Nkind (Decl) = N_Subprogram_Body then
2196 Spec := Corresponding_Spec (Decl);
2198 if Present (Spec) then
2199 Decl := Unit_Declaration_Node (Spec);
2200 end if;
2201 end if;
2203 Spec := Parent (Decl);
2205 if not Is_Entity_Name (Prefix (N))
2206 or else Nkind (Spec) /= N_Package_Specification
2207 or else
2208 not Is_Remote_Call_Interface (Defining_Entity (Spec))
2209 then
2210 Is_Remote := False;
2211 Error_Msg_N
2212 ("prefix must statically denote a remote subprogram ",
2214 end if;
2216 -- If we are generating code in distributed mode, perform
2217 -- semantic checks against corresponding remote entities.
2219 if Expander_Active
2220 and then Get_PCS_Name /= Name_No_DSA
2221 then
2222 Check_Subtype_Conformant
2223 (New_Id => Entity (Prefix (N)),
2224 Old_Id => Designated_Type
2225 (Corresponding_Remote_Type (Typ)),
2226 Err_Loc => N);
2228 if Is_Remote then
2229 Process_Remote_AST_Attribute (N, Typ);
2230 end if;
2231 end if;
2232 end if;
2233 end if;
2234 end;
2235 end if;
2237 Debug_A_Entry ("resolving ", N);
2239 if Debug_Flag_V then
2240 Write_Overloads (N);
2241 end if;
2243 if Comes_From_Source (N) then
2244 if Is_Fixed_Point_Type (Typ) then
2245 Check_Restriction (No_Fixed_Point, N);
2247 elsif Is_Floating_Point_Type (Typ)
2248 and then Typ /= Universal_Real
2249 and then Typ /= Any_Real
2250 then
2251 Check_Restriction (No_Floating_Point, N);
2252 end if;
2253 end if;
2255 -- Return if already analyzed
2257 if Analyzed (N) then
2258 Debug_A_Exit ("resolving ", N, " (done, already analyzed)");
2259 Analyze_Dimension (N);
2260 return;
2262 -- Any case of Any_Type as the Etype value means that we had a
2263 -- previous error.
2265 elsif Etype (N) = Any_Type then
2266 Debug_A_Exit ("resolving ", N, " (done, Etype = Any_Type)");
2267 return;
2268 end if;
2270 Check_Parameterless_Call (N);
2272 -- The resolution of an Expression_With_Actions is determined by
2273 -- its Expression.
2275 if Nkind (N) = N_Expression_With_Actions then
2276 Resolve (Expression (N), Typ);
2278 Found := True;
2279 Expr_Type := Etype (Expression (N));
2281 -- If not overloaded, then we know the type, and all that needs doing
2282 -- is to check that this type is compatible with the context.
2284 elsif not Is_Overloaded (N) then
2285 Found := Covers (Typ, Etype (N));
2286 Expr_Type := Etype (N);
2288 -- In the overloaded case, we must select the interpretation that
2289 -- is compatible with the context (i.e. the type passed to Resolve)
2291 else
2292 -- Loop through possible interpretations
2294 Get_First_Interp (N, I, It);
2295 Interp_Loop : while Present (It.Typ) loop
2297 if Debug_Flag_V then
2298 Write_Str ("Interp: ");
2299 Write_Interp (It);
2300 end if;
2302 -- We are only interested in interpretations that are compatible
2303 -- with the expected type, any other interpretations are ignored.
2305 if not Covers (Typ, It.Typ) then
2306 if Debug_Flag_V then
2307 Write_Str (" interpretation incompatible with context");
2308 Write_Eol;
2309 end if;
2311 else
2312 -- Skip the current interpretation if it is disabled by an
2313 -- abstract operator. This action is performed only when the
2314 -- type against which we are resolving is the same as the
2315 -- type of the interpretation.
2317 if Ada_Version >= Ada_2005
2318 and then It.Typ = Typ
2319 and then Typ /= Universal_Integer
2320 and then Typ /= Universal_Real
2321 and then Present (It.Abstract_Op)
2322 then
2323 if Debug_Flag_V then
2324 Write_Line ("Skip.");
2325 end if;
2327 goto Continue;
2328 end if;
2330 -- First matching interpretation
2332 if not Found then
2333 Found := True;
2334 I1 := I;
2335 Seen := It.Nam;
2336 Expr_Type := It.Typ;
2338 -- Matching interpretation that is not the first, maybe an
2339 -- error, but there are some cases where preference rules are
2340 -- used to choose between the two possibilities. These and
2341 -- some more obscure cases are handled in Disambiguate.
2343 else
2344 -- If the current statement is part of a predefined library
2345 -- unit, then all interpretations which come from user level
2346 -- packages should not be considered. Check previous and
2347 -- current one.
2349 if From_Lib then
2350 if not Comes_From_Predefined_Lib_Unit (It.Nam) then
2351 goto Continue;
2353 elsif not Comes_From_Predefined_Lib_Unit (Seen) then
2355 -- Previous interpretation must be discarded
2357 I1 := I;
2358 Seen := It.Nam;
2359 Expr_Type := It.Typ;
2360 Set_Entity (N, Seen);
2361 goto Continue;
2362 end if;
2363 end if;
2365 -- Otherwise apply further disambiguation steps
2367 Error_Msg_Sloc := Sloc (Seen);
2368 It1 := Disambiguate (N, I1, I, Typ);
2370 -- Disambiguation has succeeded. Skip the remaining
2371 -- interpretations.
2373 if It1 /= No_Interp then
2374 Seen := It1.Nam;
2375 Expr_Type := It1.Typ;
2377 while Present (It.Typ) loop
2378 Get_Next_Interp (I, It);
2379 end loop;
2381 else
2382 -- Before we issue an ambiguity complaint, check for
2383 -- the case of a subprogram call where at least one
2384 -- of the arguments is Any_Type, and if so, suppress
2385 -- the message, since it is a cascaded error.
2387 if Nkind (N) in N_Subprogram_Call then
2388 declare
2389 A : Node_Id;
2390 E : Node_Id;
2392 begin
2393 A := First_Actual (N);
2394 while Present (A) loop
2395 E := A;
2397 if Nkind (E) = N_Parameter_Association then
2398 E := Explicit_Actual_Parameter (E);
2399 end if;
2401 if Etype (E) = Any_Type then
2402 if Debug_Flag_V then
2403 Write_Str ("Any_Type in call");
2404 Write_Eol;
2405 end if;
2407 exit Interp_Loop;
2408 end if;
2410 Next_Actual (A);
2411 end loop;
2412 end;
2414 elsif Nkind (N) in N_Binary_Op
2415 and then (Etype (Left_Opnd (N)) = Any_Type
2416 or else Etype (Right_Opnd (N)) = Any_Type)
2417 then
2418 exit Interp_Loop;
2420 elsif Nkind (N) in N_Unary_Op
2421 and then Etype (Right_Opnd (N)) = Any_Type
2422 then
2423 exit Interp_Loop;
2424 end if;
2426 -- Not that special case, so issue message using the
2427 -- flag Ambiguous to control printing of the header
2428 -- message only at the start of an ambiguous set.
2430 if not Ambiguous then
2431 if Nkind (N) = N_Function_Call
2432 and then Nkind (Name (N)) = N_Explicit_Dereference
2433 then
2434 Error_Msg_N
2435 ("ambiguous expression "
2436 & "(cannot resolve indirect call)!", N);
2437 else
2438 Error_Msg_NE -- CODEFIX
2439 ("ambiguous expression (cannot resolve&)!",
2440 N, It.Nam);
2441 end if;
2443 Ambiguous := True;
2445 if Nkind (Parent (Seen)) = N_Full_Type_Declaration then
2446 Error_Msg_N
2447 ("\\possible interpretation (inherited)#!", N);
2448 else
2449 Error_Msg_N -- CODEFIX
2450 ("\\possible interpretation#!", N);
2451 end if;
2453 if Nkind (N) in N_Subprogram_Call
2454 and then Present (Parameter_Associations (N))
2455 then
2456 Report_Ambiguous_Argument;
2457 end if;
2458 end if;
2460 Error_Msg_Sloc := Sloc (It.Nam);
2462 -- By default, the error message refers to the candidate
2463 -- interpretation. But if it is a predefined operator, it
2464 -- is implicitly declared at the declaration of the type
2465 -- of the operand. Recover the sloc of that declaration
2466 -- for the error message.
2468 if Nkind (N) in N_Op
2469 and then Scope (It.Nam) = Standard_Standard
2470 and then not Is_Overloaded (Right_Opnd (N))
2471 and then Scope (Base_Type (Etype (Right_Opnd (N)))) /=
2472 Standard_Standard
2473 then
2474 Err_Type := First_Subtype (Etype (Right_Opnd (N)));
2476 if Comes_From_Source (Err_Type)
2477 and then Present (Parent (Err_Type))
2478 then
2479 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2480 end if;
2482 elsif Nkind (N) in N_Binary_Op
2483 and then Scope (It.Nam) = Standard_Standard
2484 and then not Is_Overloaded (Left_Opnd (N))
2485 and then Scope (Base_Type (Etype (Left_Opnd (N)))) /=
2486 Standard_Standard
2487 then
2488 Err_Type := First_Subtype (Etype (Left_Opnd (N)));
2490 if Comes_From_Source (Err_Type)
2491 and then Present (Parent (Err_Type))
2492 then
2493 Error_Msg_Sloc := Sloc (Parent (Err_Type));
2494 end if;
2496 -- If this is an indirect call, use the subprogram_type
2497 -- in the message, to have a meaningful location. Also
2498 -- indicate if this is an inherited operation, created
2499 -- by a type declaration.
2501 elsif Nkind (N) = N_Function_Call
2502 and then Nkind (Name (N)) = N_Explicit_Dereference
2503 and then Is_Type (It.Nam)
2504 then
2505 Err_Type := It.Nam;
2506 Error_Msg_Sloc :=
2507 Sloc (Associated_Node_For_Itype (Err_Type));
2508 else
2509 Err_Type := Empty;
2510 end if;
2512 if Nkind (N) in N_Op
2513 and then Scope (It.Nam) = Standard_Standard
2514 and then Present (Err_Type)
2515 then
2516 -- Special-case the message for universal_fixed
2517 -- operators, which are not declared with the type
2518 -- of the operand, but appear forever in Standard.
2520 if It.Typ = Universal_Fixed
2521 and then Scope (It.Nam) = Standard_Standard
2522 then
2523 Error_Msg_N
2524 ("\\possible interpretation as universal_fixed "
2525 & "operation (RM 4.5.5 (19))", N);
2526 else
2527 Error_Msg_N
2528 ("\\possible interpretation (predefined)#!", N);
2529 end if;
2531 elsif
2532 Nkind (Parent (It.Nam)) = N_Full_Type_Declaration
2533 then
2534 Error_Msg_N
2535 ("\\possible interpretation (inherited)#!", N);
2536 else
2537 Error_Msg_N -- CODEFIX
2538 ("\\possible interpretation#!", N);
2539 end if;
2541 end if;
2542 end if;
2544 -- We have a matching interpretation, Expr_Type is the type
2545 -- from this interpretation, and Seen is the entity.
2547 -- For an operator, just set the entity name. The type will be
2548 -- set by the specific operator resolution routine.
2550 if Nkind (N) in N_Op then
2551 Set_Entity (N, Seen);
2552 Generate_Reference (Seen, N);
2554 elsif Nkind (N) = N_Case_Expression then
2555 Set_Etype (N, Expr_Type);
2557 elsif Nkind (N) = N_Character_Literal then
2558 Set_Etype (N, Expr_Type);
2560 elsif Nkind (N) = N_If_Expression then
2561 Set_Etype (N, Expr_Type);
2563 -- AI05-0139-2: Expression is overloaded because type has
2564 -- implicit dereference. If type matches context, no implicit
2565 -- dereference is involved.
2567 elsif Has_Implicit_Dereference (Expr_Type) then
2568 Set_Etype (N, Expr_Type);
2569 Set_Is_Overloaded (N, False);
2570 exit Interp_Loop;
2572 elsif Is_Overloaded (N)
2573 and then Present (It.Nam)
2574 and then Ekind (It.Nam) = E_Discriminant
2575 and then Has_Implicit_Dereference (It.Nam)
2576 then
2577 -- If the node is a general indexing, the dereference is
2578 -- is inserted when resolving the rewritten form, else
2579 -- insert it now.
2581 if Nkind (N) /= N_Indexed_Component
2582 or else No (Generalized_Indexing (N))
2583 then
2584 Build_Explicit_Dereference (N, It.Nam);
2585 end if;
2587 -- For an explicit dereference, attribute reference, range,
2588 -- short-circuit form (which is not an operator node), or call
2589 -- with a name that is an explicit dereference, there is
2590 -- nothing to be done at this point.
2592 elsif Nkind_In (N, N_Explicit_Dereference,
2593 N_Attribute_Reference,
2594 N_And_Then,
2595 N_Indexed_Component,
2596 N_Or_Else,
2597 N_Range,
2598 N_Selected_Component,
2599 N_Slice)
2600 or else Nkind (Name (N)) = N_Explicit_Dereference
2601 then
2602 null;
2604 -- For procedure or function calls, set the type of the name,
2605 -- and also the entity pointer for the prefix.
2607 elsif Nkind (N) in N_Subprogram_Call
2608 and then Is_Entity_Name (Name (N))
2609 then
2610 Set_Etype (Name (N), Expr_Type);
2611 Set_Entity (Name (N), Seen);
2612 Generate_Reference (Seen, Name (N));
2614 elsif Nkind (N) = N_Function_Call
2615 and then Nkind (Name (N)) = N_Selected_Component
2616 then
2617 Set_Etype (Name (N), Expr_Type);
2618 Set_Entity (Selector_Name (Name (N)), Seen);
2619 Generate_Reference (Seen, Selector_Name (Name (N)));
2621 -- For all other cases, just set the type of the Name
2623 else
2624 Set_Etype (Name (N), Expr_Type);
2625 end if;
2627 end if;
2629 <<Continue>>
2631 -- Move to next interpretation
2633 exit Interp_Loop when No (It.Typ);
2635 Get_Next_Interp (I, It);
2636 end loop Interp_Loop;
2637 end if;
2639 -- At this stage Found indicates whether or not an acceptable
2640 -- interpretation exists. If not, then we have an error, except that if
2641 -- the context is Any_Type as a result of some other error, then we
2642 -- suppress the error report.
2644 if not Found then
2645 if Typ /= Any_Type then
2647 -- If type we are looking for is Void, then this is the procedure
2648 -- call case, and the error is simply that what we gave is not a
2649 -- procedure name (we think of procedure calls as expressions with
2650 -- types internally, but the user doesn't think of them this way).
2652 if Typ = Standard_Void_Type then
2654 -- Special case message if function used as a procedure
2656 if Nkind (N) = N_Procedure_Call_Statement
2657 and then Is_Entity_Name (Name (N))
2658 and then Ekind (Entity (Name (N))) = E_Function
2659 then
2660 Error_Msg_NE
2661 ("cannot use function & in a procedure call",
2662 Name (N), Entity (Name (N)));
2664 -- Otherwise give general message (not clear what cases this
2665 -- covers, but no harm in providing for them).
2667 else
2668 Error_Msg_N ("expect procedure name in procedure call", N);
2669 end if;
2671 Found := True;
2673 -- Otherwise we do have a subexpression with the wrong type
2675 -- Check for the case of an allocator which uses an access type
2676 -- instead of the designated type. This is a common error and we
2677 -- specialize the message, posting an error on the operand of the
2678 -- allocator, complaining that we expected the designated type of
2679 -- the allocator.
2681 elsif Nkind (N) = N_Allocator
2682 and then Is_Access_Type (Typ)
2683 and then Is_Access_Type (Etype (N))
2684 and then Designated_Type (Etype (N)) = Typ
2685 then
2686 Wrong_Type (Expression (N), Designated_Type (Typ));
2687 Found := True;
2689 -- Check for view mismatch on Null in instances, for which the
2690 -- view-swapping mechanism has no identifier.
2692 elsif (In_Instance or else In_Inlined_Body)
2693 and then (Nkind (N) = N_Null)
2694 and then Is_Private_Type (Typ)
2695 and then Is_Access_Type (Full_View (Typ))
2696 then
2697 Resolve (N, Full_View (Typ));
2698 Set_Etype (N, Typ);
2699 return;
2701 -- Check for an aggregate. Sometimes we can get bogus aggregates
2702 -- from misuse of parentheses, and we are about to complain about
2703 -- the aggregate without even looking inside it.
2705 -- Instead, if we have an aggregate of type Any_Composite, then
2706 -- analyze and resolve the component fields, and then only issue
2707 -- another message if we get no errors doing this (otherwise
2708 -- assume that the errors in the aggregate caused the problem).
2710 elsif Nkind (N) = N_Aggregate
2711 and then Etype (N) = Any_Composite
2712 then
2713 -- Disable expansion in any case. If there is a type mismatch
2714 -- it may be fatal to try to expand the aggregate. The flag
2715 -- would otherwise be set to false when the error is posted.
2717 Expander_Active := False;
2719 declare
2720 procedure Check_Aggr (Aggr : Node_Id);
2721 -- Check one aggregate, and set Found to True if we have a
2722 -- definite error in any of its elements
2724 procedure Check_Elmt (Aelmt : Node_Id);
2725 -- Check one element of aggregate and set Found to True if
2726 -- we definitely have an error in the element.
2728 ----------------
2729 -- Check_Aggr --
2730 ----------------
2732 procedure Check_Aggr (Aggr : Node_Id) is
2733 Elmt : Node_Id;
2735 begin
2736 if Present (Expressions (Aggr)) then
2737 Elmt := First (Expressions (Aggr));
2738 while Present (Elmt) loop
2739 Check_Elmt (Elmt);
2740 Next (Elmt);
2741 end loop;
2742 end if;
2744 if Present (Component_Associations (Aggr)) then
2745 Elmt := First (Component_Associations (Aggr));
2746 while Present (Elmt) loop
2748 -- If this is a default-initialized component, then
2749 -- there is nothing to check. The box will be
2750 -- replaced by the appropriate call during late
2751 -- expansion.
2753 if not Box_Present (Elmt) then
2754 Check_Elmt (Expression (Elmt));
2755 end if;
2757 Next (Elmt);
2758 end loop;
2759 end if;
2760 end Check_Aggr;
2762 ----------------
2763 -- Check_Elmt --
2764 ----------------
2766 procedure Check_Elmt (Aelmt : Node_Id) is
2767 begin
2768 -- If we have a nested aggregate, go inside it (to
2769 -- attempt a naked analyze-resolve of the aggregate can
2770 -- cause undesirable cascaded errors). Do not resolve
2771 -- expression if it needs a type from context, as for
2772 -- integer * fixed expression.
2774 if Nkind (Aelmt) = N_Aggregate then
2775 Check_Aggr (Aelmt);
2777 else
2778 Analyze (Aelmt);
2780 if not Is_Overloaded (Aelmt)
2781 and then Etype (Aelmt) /= Any_Fixed
2782 then
2783 Resolve (Aelmt);
2784 end if;
2786 if Etype (Aelmt) = Any_Type then
2787 Found := True;
2788 end if;
2789 end if;
2790 end Check_Elmt;
2792 begin
2793 Check_Aggr (N);
2794 end;
2795 end if;
2797 -- Looks like we have a type error, but check for special case
2798 -- of Address wanted, integer found, with the configuration pragma
2799 -- Allow_Integer_Address active. If we have this case, introduce
2800 -- an unchecked conversion to allow the integer expression to be
2801 -- treated as an Address. The reverse case of integer wanted,
2802 -- Address found, is treated in an analogous manner.
2804 if Address_Integer_Convert_OK (Typ, Etype (N)) then
2805 Rewrite (N, Unchecked_Convert_To (Typ, Relocate_Node (N)));
2806 Analyze_And_Resolve (N, Typ);
2807 return;
2808 end if;
2810 -- That special Allow_Integer_Address check did not appply, so we
2811 -- have a real type error. If an error message was issued already,
2812 -- Found got reset to True, so if it's still False, issue standard
2813 -- Wrong_Type message.
2815 if not Found then
2816 if Is_Overloaded (N) and then Nkind (N) = N_Function_Call then
2817 declare
2818 Subp_Name : Node_Id;
2820 begin
2821 if Is_Entity_Name (Name (N)) then
2822 Subp_Name := Name (N);
2824 elsif Nkind (Name (N)) = N_Selected_Component then
2826 -- Protected operation: retrieve operation name
2828 Subp_Name := Selector_Name (Name (N));
2830 else
2831 raise Program_Error;
2832 end if;
2834 Error_Msg_Node_2 := Typ;
2835 Error_Msg_NE
2836 ("no visible interpretation of& "
2837 & "matches expected type&", N, Subp_Name);
2838 end;
2840 if All_Errors_Mode then
2841 declare
2842 Index : Interp_Index;
2843 It : Interp;
2845 begin
2846 Error_Msg_N ("\\possible interpretations:", N);
2848 Get_First_Interp (Name (N), Index, It);
2849 while Present (It.Nam) loop
2850 Error_Msg_Sloc := Sloc (It.Nam);
2851 Error_Msg_Node_2 := It.Nam;
2852 Error_Msg_NE
2853 ("\\ type& for & declared#", N, It.Typ);
2854 Get_Next_Interp (Index, It);
2855 end loop;
2856 end;
2858 else
2859 Error_Msg_N ("\use -gnatf for details", N);
2860 end if;
2862 else
2863 Wrong_Type (N, Typ);
2864 end if;
2865 end if;
2866 end if;
2868 Resolution_Failed;
2869 return;
2871 -- Test if we have more than one interpretation for the context
2873 elsif Ambiguous then
2874 Resolution_Failed;
2875 return;
2877 -- Only one intepretation
2879 else
2880 -- In Ada 2005, if we have something like "X : T := 2 + 2;", where
2881 -- the "+" on T is abstract, and the operands are of universal type,
2882 -- the above code will have (incorrectly) resolved the "+" to the
2883 -- universal one in Standard. Therefore check for this case and give
2884 -- an error. We can't do this earlier, because it would cause legal
2885 -- cases to get errors (when some other type has an abstract "+").
2887 if Ada_Version >= Ada_2005
2888 and then Nkind (N) in N_Op
2889 and then Is_Overloaded (N)
2890 and then Is_Universal_Numeric_Type (Etype (Entity (N)))
2891 then
2892 Get_First_Interp (N, I, It);
2893 while Present (It.Typ) loop
2894 if Present (It.Abstract_Op) and then
2895 Etype (It.Abstract_Op) = Typ
2896 then
2897 Error_Msg_NE
2898 ("cannot call abstract subprogram &!", N, It.Abstract_Op);
2899 return;
2900 end if;
2902 Get_Next_Interp (I, It);
2903 end loop;
2904 end if;
2906 -- Here we have an acceptable interpretation for the context
2908 -- Propagate type information and normalize tree for various
2909 -- predefined operations. If the context only imposes a class of
2910 -- types, rather than a specific type, propagate the actual type
2911 -- downward.
2913 if Typ = Any_Integer or else
2914 Typ = Any_Boolean or else
2915 Typ = Any_Modular or else
2916 Typ = Any_Real or else
2917 Typ = Any_Discrete
2918 then
2919 Ctx_Type := Expr_Type;
2921 -- Any_Fixed is legal in a real context only if a specific fixed-
2922 -- point type is imposed. If Norman Cohen can be confused by this,
2923 -- it deserves a separate message.
2925 if Typ = Any_Real
2926 and then Expr_Type = Any_Fixed
2927 then
2928 Error_Msg_N ("illegal context for mixed mode operation", N);
2929 Set_Etype (N, Universal_Real);
2930 Ctx_Type := Universal_Real;
2931 end if;
2932 end if;
2934 -- A user-defined operator is transformed into a function call at
2935 -- this point, so that further processing knows that operators are
2936 -- really operators (i.e. are predefined operators). User-defined
2937 -- operators that are intrinsic are just renamings of the predefined
2938 -- ones, and need not be turned into calls either, but if they rename
2939 -- a different operator, we must transform the node accordingly.
2940 -- Instantiations of Unchecked_Conversion are intrinsic but are
2941 -- treated as functions, even if given an operator designator.
2943 if Nkind (N) in N_Op
2944 and then Present (Entity (N))
2945 and then Ekind (Entity (N)) /= E_Operator
2946 then
2948 if not Is_Predefined_Op (Entity (N)) then
2949 Rewrite_Operator_As_Call (N, Entity (N));
2951 elsif Present (Alias (Entity (N)))
2952 and then
2953 Nkind (Parent (Parent (Entity (N)))) =
2954 N_Subprogram_Renaming_Declaration
2955 then
2956 Rewrite_Renamed_Operator (N, Alias (Entity (N)), Typ);
2958 -- If the node is rewritten, it will be fully resolved in
2959 -- Rewrite_Renamed_Operator.
2961 if Analyzed (N) then
2962 return;
2963 end if;
2964 end if;
2965 end if;
2967 case N_Subexpr'(Nkind (N)) is
2969 when N_Aggregate => Resolve_Aggregate (N, Ctx_Type);
2971 when N_Allocator => Resolve_Allocator (N, Ctx_Type);
2973 when N_Short_Circuit
2974 => Resolve_Short_Circuit (N, Ctx_Type);
2976 when N_Attribute_Reference
2977 => Resolve_Attribute (N, Ctx_Type);
2979 when N_Case_Expression
2980 => Resolve_Case_Expression (N, Ctx_Type);
2982 when N_Character_Literal
2983 => Resolve_Character_Literal (N, Ctx_Type);
2985 when N_Expanded_Name
2986 => Resolve_Entity_Name (N, Ctx_Type);
2988 when N_Explicit_Dereference
2989 => Resolve_Explicit_Dereference (N, Ctx_Type);
2991 when N_Expression_With_Actions
2992 => Resolve_Expression_With_Actions (N, Ctx_Type);
2994 when N_Extension_Aggregate
2995 => Resolve_Extension_Aggregate (N, Ctx_Type);
2997 when N_Function_Call
2998 => Resolve_Call (N, Ctx_Type);
3000 when N_Identifier
3001 => Resolve_Entity_Name (N, Ctx_Type);
3003 when N_If_Expression
3004 => Resolve_If_Expression (N, Ctx_Type);
3006 when N_Indexed_Component
3007 => Resolve_Indexed_Component (N, Ctx_Type);
3009 when N_Integer_Literal
3010 => Resolve_Integer_Literal (N, Ctx_Type);
3012 when N_Membership_Test
3013 => Resolve_Membership_Op (N, Ctx_Type);
3015 when N_Null => Resolve_Null (N, Ctx_Type);
3017 when N_Op_And | N_Op_Or | N_Op_Xor
3018 => Resolve_Logical_Op (N, Ctx_Type);
3020 when N_Op_Eq | N_Op_Ne
3021 => Resolve_Equality_Op (N, Ctx_Type);
3023 when N_Op_Lt | N_Op_Le | N_Op_Gt | N_Op_Ge
3024 => Resolve_Comparison_Op (N, Ctx_Type);
3026 when N_Op_Not => Resolve_Op_Not (N, Ctx_Type);
3028 when N_Op_Add | N_Op_Subtract | N_Op_Multiply |
3029 N_Op_Divide | N_Op_Mod | N_Op_Rem
3031 => Resolve_Arithmetic_Op (N, Ctx_Type);
3033 when N_Op_Concat => Resolve_Op_Concat (N, Ctx_Type);
3035 when N_Op_Expon => Resolve_Op_Expon (N, Ctx_Type);
3037 when N_Op_Plus | N_Op_Minus | N_Op_Abs
3038 => Resolve_Unary_Op (N, Ctx_Type);
3040 when N_Op_Shift => Resolve_Shift (N, Ctx_Type);
3042 when N_Procedure_Call_Statement
3043 => Resolve_Call (N, Ctx_Type);
3045 when N_Operator_Symbol
3046 => Resolve_Operator_Symbol (N, Ctx_Type);
3048 when N_Qualified_Expression
3049 => Resolve_Qualified_Expression (N, Ctx_Type);
3051 -- Why is the following null, needs a comment ???
3053 when N_Quantified_Expression
3054 => null;
3056 when N_Raise_Expression
3057 => Resolve_Raise_Expression (N, Ctx_Type);
3059 when N_Raise_xxx_Error
3060 => Set_Etype (N, Ctx_Type);
3062 when N_Range => Resolve_Range (N, Ctx_Type);
3064 when N_Real_Literal
3065 => Resolve_Real_Literal (N, Ctx_Type);
3067 when N_Reference => Resolve_Reference (N, Ctx_Type);
3069 when N_Selected_Component
3070 => Resolve_Selected_Component (N, Ctx_Type);
3072 when N_Slice => Resolve_Slice (N, Ctx_Type);
3074 when N_String_Literal
3075 => Resolve_String_Literal (N, Ctx_Type);
3077 when N_Type_Conversion
3078 => Resolve_Type_Conversion (N, Ctx_Type);
3080 when N_Unchecked_Expression =>
3081 Resolve_Unchecked_Expression (N, Ctx_Type);
3083 when N_Unchecked_Type_Conversion =>
3084 Resolve_Unchecked_Type_Conversion (N, Ctx_Type);
3085 end case;
3087 -- Ada 2012 (AI05-0149): Apply an (implicit) conversion to an
3088 -- expression of an anonymous access type that occurs in the context
3089 -- of a named general access type, except when the expression is that
3090 -- of a membership test. This ensures proper legality checking in
3091 -- terms of allowed conversions (expressions that would be illegal to
3092 -- convert implicitly are allowed in membership tests).
3094 if Ada_Version >= Ada_2012
3095 and then Ekind (Ctx_Type) = E_General_Access_Type
3096 and then Ekind (Etype (N)) = E_Anonymous_Access_Type
3097 and then Nkind (Parent (N)) not in N_Membership_Test
3098 then
3099 Rewrite (N, Convert_To (Ctx_Type, Relocate_Node (N)));
3100 Analyze_And_Resolve (N, Ctx_Type);
3101 end if;
3103 -- If the subexpression was replaced by a non-subexpression, then
3104 -- all we do is to expand it. The only legitimate case we know of
3105 -- is converting procedure call statement to entry call statements,
3106 -- but there may be others, so we are making this test general.
3108 if Nkind (N) not in N_Subexpr then
3109 Debug_A_Exit ("resolving ", N, " (done)");
3110 Expand (N);
3111 return;
3112 end if;
3114 -- The expression is definitely NOT overloaded at this point, so
3115 -- we reset the Is_Overloaded flag to avoid any confusion when
3116 -- reanalyzing the node.
3118 Set_Is_Overloaded (N, False);
3120 -- Freeze expression type, entity if it is a name, and designated
3121 -- type if it is an allocator (RM 13.14(10,11,13)).
3123 -- Now that the resolution of the type of the node is complete, and
3124 -- we did not detect an error, we can expand this node. We skip the
3125 -- expand call if we are in a default expression, see section
3126 -- "Handling of Default Expressions" in Sem spec.
3128 Debug_A_Exit ("resolving ", N, " (done)");
3130 -- We unconditionally freeze the expression, even if we are in
3131 -- default expression mode (the Freeze_Expression routine tests this
3132 -- flag and only freezes static types if it is set).
3134 -- Ada 2012 (AI05-177): The declaration of an expression function
3135 -- does not cause freezing, but we never reach here in that case.
3136 -- Here we are resolving the corresponding expanded body, so we do
3137 -- need to perform normal freezing.
3139 Freeze_Expression (N);
3141 -- Now we can do the expansion
3143 Expand (N);
3144 end if;
3145 end Resolve;
3147 -------------
3148 -- Resolve --
3149 -------------
3151 -- Version with check(s) suppressed
3153 procedure Resolve (N : Node_Id; Typ : Entity_Id; Suppress : Check_Id) is
3154 begin
3155 if Suppress = All_Checks then
3156 declare
3157 Sva : constant Suppress_Array := Scope_Suppress.Suppress;
3158 begin
3159 Scope_Suppress.Suppress := (others => True);
3160 Resolve (N, Typ);
3161 Scope_Suppress.Suppress := Sva;
3162 end;
3164 else
3165 declare
3166 Svg : constant Boolean := Scope_Suppress.Suppress (Suppress);
3167 begin
3168 Scope_Suppress.Suppress (Suppress) := True;
3169 Resolve (N, Typ);
3170 Scope_Suppress.Suppress (Suppress) := Svg;
3171 end;
3172 end if;
3173 end Resolve;
3175 -------------
3176 -- Resolve --
3177 -------------
3179 -- Version with implicit type
3181 procedure Resolve (N : Node_Id) is
3182 begin
3183 Resolve (N, Etype (N));
3184 end Resolve;
3186 ---------------------
3187 -- Resolve_Actuals --
3188 ---------------------
3190 procedure Resolve_Actuals (N : Node_Id; Nam : Entity_Id) is
3191 Loc : constant Source_Ptr := Sloc (N);
3192 A : Node_Id;
3193 A_Id : Entity_Id;
3194 A_Typ : Entity_Id;
3195 F : Entity_Id;
3196 F_Typ : Entity_Id;
3197 Prev : Node_Id := Empty;
3198 Orig_A : Node_Id;
3200 procedure Check_Aliased_Parameter;
3201 -- Check rules on aliased parameters and related accessibility rules
3202 -- in (RM 3.10.2 (10.2-10.4)).
3204 procedure Check_Argument_Order;
3205 -- Performs a check for the case where the actuals are all simple
3206 -- identifiers that correspond to the formal names, but in the wrong
3207 -- order, which is considered suspicious and cause for a warning.
3209 procedure Check_Prefixed_Call;
3210 -- If the original node is an overloaded call in prefix notation,
3211 -- insert an 'Access or a dereference as needed over the first actual.
3212 -- Try_Object_Operation has already verified that there is a valid
3213 -- interpretation, but the form of the actual can only be determined
3214 -- once the primitive operation is identified.
3216 procedure Insert_Default;
3217 -- If the actual is missing in a call, insert in the actuals list
3218 -- an instance of the default expression. The insertion is always
3219 -- a named association.
3221 procedure Property_Error
3222 (Var : Node_Id;
3223 Var_Id : Entity_Id;
3224 Prop_Nam : Name_Id);
3225 -- Emit an error concerning variable Var with entity Var_Id that has
3226 -- enabled property Prop_Nam when it acts as an actual parameter in a
3227 -- call and the corresponding formal parameter is of mode IN.
3229 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean;
3230 -- Check whether T1 and T2, or their full views, are derived from a
3231 -- common type. Used to enforce the restrictions on array conversions
3232 -- of AI95-00246.
3234 function Static_Concatenation (N : Node_Id) return Boolean;
3235 -- Predicate to determine whether an actual that is a concatenation
3236 -- will be evaluated statically and does not need a transient scope.
3237 -- This must be determined before the actual is resolved and expanded
3238 -- because if needed the transient scope must be introduced earlier.
3240 ------------------------------
3241 -- Check_Aliased_Parameter --
3242 ------------------------------
3244 procedure Check_Aliased_Parameter is
3245 Nominal_Subt : Entity_Id;
3247 begin
3248 if Is_Aliased (F) then
3249 if Is_Tagged_Type (A_Typ) then
3250 null;
3252 elsif Is_Aliased_View (A) then
3253 if Is_Constr_Subt_For_U_Nominal (A_Typ) then
3254 Nominal_Subt := Base_Type (A_Typ);
3255 else
3256 Nominal_Subt := A_Typ;
3257 end if;
3259 if Subtypes_Statically_Match (F_Typ, Nominal_Subt) then
3260 null;
3262 -- In a generic body assume the worst for generic formals:
3263 -- they can have a constrained partial view (AI05-041).
3265 elsif Has_Discriminants (F_Typ)
3266 and then not Is_Constrained (F_Typ)
3267 and then not Has_Constrained_Partial_View (F_Typ)
3268 and then not Is_Generic_Type (F_Typ)
3269 then
3270 null;
3272 else
3273 Error_Msg_NE ("untagged actual does not match "
3274 & "aliased formal&", A, F);
3275 end if;
3277 else
3278 Error_Msg_NE ("actual for aliased formal& must be "
3279 & "aliased object", A, F);
3280 end if;
3282 if Ekind (Nam) = E_Procedure then
3283 null;
3285 elsif Ekind (Etype (Nam)) = E_Anonymous_Access_Type then
3286 if Nkind (Parent (N)) = N_Type_Conversion
3287 and then Type_Access_Level (Etype (Parent (N))) <
3288 Object_Access_Level (A)
3289 then
3290 Error_Msg_N ("aliased actual has wrong accessibility", A);
3291 end if;
3293 elsif Nkind (Parent (N)) = N_Qualified_Expression
3294 and then Nkind (Parent (Parent (N))) = N_Allocator
3295 and then Type_Access_Level (Etype (Parent (Parent (N)))) <
3296 Object_Access_Level (A)
3297 then
3298 Error_Msg_N
3299 ("aliased actual in allocator has wrong accessibility", A);
3300 end if;
3301 end if;
3302 end Check_Aliased_Parameter;
3304 --------------------------
3305 -- Check_Argument_Order --
3306 --------------------------
3308 procedure Check_Argument_Order is
3309 begin
3310 -- Nothing to do if no parameters, or original node is neither a
3311 -- function call nor a procedure call statement (happens in the
3312 -- operator-transformed-to-function call case), or the call does
3313 -- not come from source, or this warning is off.
3315 if not Warn_On_Parameter_Order
3316 or else No (Parameter_Associations (N))
3317 or else Nkind (Original_Node (N)) not in N_Subprogram_Call
3318 or else not Comes_From_Source (N)
3319 then
3320 return;
3321 end if;
3323 declare
3324 Nargs : constant Nat := List_Length (Parameter_Associations (N));
3326 begin
3327 -- Nothing to do if only one parameter
3329 if Nargs < 2 then
3330 return;
3331 end if;
3333 -- Here if at least two arguments
3335 declare
3336 Actuals : array (1 .. Nargs) of Node_Id;
3337 Actual : Node_Id;
3338 Formal : Node_Id;
3340 Wrong_Order : Boolean := False;
3341 -- Set True if an out of order case is found
3343 begin
3344 -- Collect identifier names of actuals, fail if any actual is
3345 -- not a simple identifier, and record max length of name.
3347 Actual := First (Parameter_Associations (N));
3348 for J in Actuals'Range loop
3349 if Nkind (Actual) /= N_Identifier then
3350 return;
3351 else
3352 Actuals (J) := Actual;
3353 Next (Actual);
3354 end if;
3355 end loop;
3357 -- If we got this far, all actuals are identifiers and the list
3358 -- of their names is stored in the Actuals array.
3360 Formal := First_Formal (Nam);
3361 for J in Actuals'Range loop
3363 -- If we ran out of formals, that's odd, probably an error
3364 -- which will be detected elsewhere, but abandon the search.
3366 if No (Formal) then
3367 return;
3368 end if;
3370 -- If name matches and is in order OK
3372 if Chars (Formal) = Chars (Actuals (J)) then
3373 null;
3375 else
3376 -- If no match, see if it is elsewhere in list and if so
3377 -- flag potential wrong order if type is compatible.
3379 for K in Actuals'Range loop
3380 if Chars (Formal) = Chars (Actuals (K))
3381 and then
3382 Has_Compatible_Type (Actuals (K), Etype (Formal))
3383 then
3384 Wrong_Order := True;
3385 goto Continue;
3386 end if;
3387 end loop;
3389 -- No match
3391 return;
3392 end if;
3394 <<Continue>> Next_Formal (Formal);
3395 end loop;
3397 -- If Formals left over, also probably an error, skip warning
3399 if Present (Formal) then
3400 return;
3401 end if;
3403 -- Here we give the warning if something was out of order
3405 if Wrong_Order then
3406 Error_Msg_N
3407 ("?P?actuals for this call may be in wrong order", N);
3408 end if;
3409 end;
3410 end;
3411 end Check_Argument_Order;
3413 -------------------------
3414 -- Check_Prefixed_Call --
3415 -------------------------
3417 procedure Check_Prefixed_Call is
3418 Act : constant Node_Id := First_Actual (N);
3419 A_Type : constant Entity_Id := Etype (Act);
3420 F_Type : constant Entity_Id := Etype (First_Formal (Nam));
3421 Orig : constant Node_Id := Original_Node (N);
3422 New_A : Node_Id;
3424 begin
3425 -- Check whether the call is a prefixed call, with or without
3426 -- additional actuals.
3428 if Nkind (Orig) = N_Selected_Component
3429 or else
3430 (Nkind (Orig) = N_Indexed_Component
3431 and then Nkind (Prefix (Orig)) = N_Selected_Component
3432 and then Is_Entity_Name (Prefix (Prefix (Orig)))
3433 and then Is_Entity_Name (Act)
3434 and then Chars (Act) = Chars (Prefix (Prefix (Orig))))
3435 then
3436 if Is_Access_Type (A_Type)
3437 and then not Is_Access_Type (F_Type)
3438 then
3439 -- Introduce dereference on object in prefix
3441 New_A :=
3442 Make_Explicit_Dereference (Sloc (Act),
3443 Prefix => Relocate_Node (Act));
3444 Rewrite (Act, New_A);
3445 Analyze (Act);
3447 elsif Is_Access_Type (F_Type)
3448 and then not Is_Access_Type (A_Type)
3449 then
3450 -- Introduce an implicit 'Access in prefix
3452 if not Is_Aliased_View (Act) then
3453 Error_Msg_NE
3454 ("object in prefixed call to& must be aliased "
3455 & "(RM 4.1.3 (13 1/2))",
3456 Prefix (Act), Nam);
3457 end if;
3459 Rewrite (Act,
3460 Make_Attribute_Reference (Loc,
3461 Attribute_Name => Name_Access,
3462 Prefix => Relocate_Node (Act)));
3463 end if;
3465 Analyze (Act);
3466 end if;
3467 end Check_Prefixed_Call;
3469 --------------------
3470 -- Insert_Default --
3471 --------------------
3473 procedure Insert_Default is
3474 Actval : Node_Id;
3475 Assoc : Node_Id;
3477 begin
3478 -- Missing argument in call, nothing to insert
3480 if No (Default_Value (F)) then
3481 return;
3483 else
3484 -- Note that we do a full New_Copy_Tree, so that any associated
3485 -- Itypes are properly copied. This may not be needed any more,
3486 -- but it does no harm as a safety measure. Defaults of a generic
3487 -- formal may be out of bounds of the corresponding actual (see
3488 -- cc1311b) and an additional check may be required.
3490 Actval :=
3491 New_Copy_Tree
3492 (Default_Value (F),
3493 New_Scope => Current_Scope,
3494 New_Sloc => Loc);
3496 if Is_Concurrent_Type (Scope (Nam))
3497 and then Has_Discriminants (Scope (Nam))
3498 then
3499 Replace_Actual_Discriminants (N, Actval);
3500 end if;
3502 if Is_Overloadable (Nam)
3503 and then Present (Alias (Nam))
3504 then
3505 if Base_Type (Etype (F)) /= Base_Type (Etype (Actval))
3506 and then not Is_Tagged_Type (Etype (F))
3507 then
3508 -- If default is a real literal, do not introduce a
3509 -- conversion whose effect may depend on the run-time
3510 -- size of universal real.
3512 if Nkind (Actval) = N_Real_Literal then
3513 Set_Etype (Actval, Base_Type (Etype (F)));
3514 else
3515 Actval := Unchecked_Convert_To (Etype (F), Actval);
3516 end if;
3517 end if;
3519 if Is_Scalar_Type (Etype (F)) then
3520 Enable_Range_Check (Actval);
3521 end if;
3523 Set_Parent (Actval, N);
3525 -- Resolve aggregates with their base type, to avoid scope
3526 -- anomalies: the subtype was first built in the subprogram
3527 -- declaration, and the current call may be nested.
3529 if Nkind (Actval) = N_Aggregate then
3530 Analyze_And_Resolve (Actval, Etype (F));
3531 else
3532 Analyze_And_Resolve (Actval, Etype (Actval));
3533 end if;
3535 else
3536 Set_Parent (Actval, N);
3538 -- See note above concerning aggregates
3540 if Nkind (Actval) = N_Aggregate
3541 and then Has_Discriminants (Etype (Actval))
3542 then
3543 Analyze_And_Resolve (Actval, Base_Type (Etype (Actval)));
3545 -- Resolve entities with their own type, which may differ from
3546 -- the type of a reference in a generic context (the view
3547 -- swapping mechanism did not anticipate the re-analysis of
3548 -- default values in calls).
3550 elsif Is_Entity_Name (Actval) then
3551 Analyze_And_Resolve (Actval, Etype (Entity (Actval)));
3553 else
3554 Analyze_And_Resolve (Actval, Etype (Actval));
3555 end if;
3556 end if;
3558 -- If default is a tag indeterminate function call, propagate tag
3559 -- to obtain proper dispatching.
3561 if Is_Controlling_Formal (F)
3562 and then Nkind (Default_Value (F)) = N_Function_Call
3563 then
3564 Set_Is_Controlling_Actual (Actval);
3565 end if;
3567 end if;
3569 -- If the default expression raises constraint error, then just
3570 -- silently replace it with an N_Raise_Constraint_Error node, since
3571 -- we already gave the warning on the subprogram spec. If node is
3572 -- already a Raise_Constraint_Error leave as is, to prevent loops in
3573 -- the warnings removal machinery.
3575 if Raises_Constraint_Error (Actval)
3576 and then Nkind (Actval) /= N_Raise_Constraint_Error
3577 then
3578 Rewrite (Actval,
3579 Make_Raise_Constraint_Error (Loc,
3580 Reason => CE_Range_Check_Failed));
3581 Set_Raises_Constraint_Error (Actval);
3582 Set_Etype (Actval, Etype (F));
3583 end if;
3585 Assoc :=
3586 Make_Parameter_Association (Loc,
3587 Explicit_Actual_Parameter => Actval,
3588 Selector_Name => Make_Identifier (Loc, Chars (F)));
3590 -- Case of insertion is first named actual
3592 if No (Prev) or else
3593 Nkind (Parent (Prev)) /= N_Parameter_Association
3594 then
3595 Set_Next_Named_Actual (Assoc, First_Named_Actual (N));
3596 Set_First_Named_Actual (N, Actval);
3598 if No (Prev) then
3599 if No (Parameter_Associations (N)) then
3600 Set_Parameter_Associations (N, New_List (Assoc));
3601 else
3602 Append (Assoc, Parameter_Associations (N));
3603 end if;
3605 else
3606 Insert_After (Prev, Assoc);
3607 end if;
3609 -- Case of insertion is not first named actual
3611 else
3612 Set_Next_Named_Actual
3613 (Assoc, Next_Named_Actual (Parent (Prev)));
3614 Set_Next_Named_Actual (Parent (Prev), Actval);
3615 Append (Assoc, Parameter_Associations (N));
3616 end if;
3618 Mark_Rewrite_Insertion (Assoc);
3619 Mark_Rewrite_Insertion (Actval);
3621 Prev := Actval;
3622 end Insert_Default;
3624 --------------------
3625 -- Property_Error --
3626 --------------------
3628 procedure Property_Error
3629 (Var : Node_Id;
3630 Var_Id : Entity_Id;
3631 Prop_Nam : Name_Id)
3633 begin
3634 Error_Msg_Name_1 := Prop_Nam;
3635 Error_Msg_NE
3636 ("external variable & with enabled property % cannot appear as "
3637 & "actual in procedure call (SPARK RM 7.1.3(11))", Var, Var_Id);
3638 Error_Msg_N ("\\corresponding formal parameter has mode In", Var);
3639 end Property_Error;
3641 -------------------
3642 -- Same_Ancestor --
3643 -------------------
3645 function Same_Ancestor (T1, T2 : Entity_Id) return Boolean is
3646 FT1 : Entity_Id := T1;
3647 FT2 : Entity_Id := T2;
3649 begin
3650 if Is_Private_Type (T1)
3651 and then Present (Full_View (T1))
3652 then
3653 FT1 := Full_View (T1);
3654 end if;
3656 if Is_Private_Type (T2)
3657 and then Present (Full_View (T2))
3658 then
3659 FT2 := Full_View (T2);
3660 end if;
3662 return Root_Type (Base_Type (FT1)) = Root_Type (Base_Type (FT2));
3663 end Same_Ancestor;
3665 --------------------------
3666 -- Static_Concatenation --
3667 --------------------------
3669 function Static_Concatenation (N : Node_Id) return Boolean is
3670 begin
3671 case Nkind (N) is
3672 when N_String_Literal =>
3673 return True;
3675 when N_Op_Concat =>
3677 -- Concatenation is static when both operands are static and
3678 -- the concatenation operator is a predefined one.
3680 return Scope (Entity (N)) = Standard_Standard
3681 and then
3682 Static_Concatenation (Left_Opnd (N))
3683 and then
3684 Static_Concatenation (Right_Opnd (N));
3686 when others =>
3687 if Is_Entity_Name (N) then
3688 declare
3689 Ent : constant Entity_Id := Entity (N);
3690 begin
3691 return Ekind (Ent) = E_Constant
3692 and then Present (Constant_Value (Ent))
3693 and then
3694 Is_OK_Static_Expression (Constant_Value (Ent));
3695 end;
3697 else
3698 return False;
3699 end if;
3700 end case;
3701 end Static_Concatenation;
3703 -- Start of processing for Resolve_Actuals
3705 begin
3706 Check_Argument_Order;
3707 Check_Function_Writable_Actuals (N);
3709 if Present (First_Actual (N)) then
3710 Check_Prefixed_Call;
3711 end if;
3713 A := First_Actual (N);
3714 F := First_Formal (Nam);
3715 while Present (F) loop
3716 if No (A) and then Needs_No_Actuals (Nam) then
3717 null;
3719 -- If we have an error in any actual or formal, indicated by a type
3720 -- of Any_Type, then abandon resolution attempt, and set result type
3721 -- to Any_Type. Skip this if the actual is a Raise_Expression, whose
3722 -- type is imposed from context.
3724 elsif (Present (A) and then Etype (A) = Any_Type)
3725 or else Etype (F) = Any_Type
3726 then
3727 if Nkind (A) /= N_Raise_Expression then
3728 Set_Etype (N, Any_Type);
3729 return;
3730 end if;
3731 end if;
3733 -- Case where actual is present
3735 -- If the actual is an entity, generate a reference to it now. We
3736 -- do this before the actual is resolved, because a formal of some
3737 -- protected subprogram, or a task discriminant, will be rewritten
3738 -- during expansion, and the source entity reference may be lost.
3740 if Present (A)
3741 and then Is_Entity_Name (A)
3742 and then Comes_From_Source (N)
3743 then
3744 Orig_A := Entity (A);
3746 if Present (Orig_A) then
3747 if Is_Formal (Orig_A)
3748 and then Ekind (F) /= E_In_Parameter
3749 then
3750 Generate_Reference (Orig_A, A, 'm');
3752 elsif not Is_Overloaded (A) then
3753 if Ekind (F) /= E_Out_Parameter then
3754 Generate_Reference (Orig_A, A);
3756 -- RM 6.4.1(12): For an out parameter that is passed by
3757 -- copy, the formal parameter object is created, and:
3759 -- * For an access type, the formal parameter is initialized
3760 -- from the value of the actual, without checking that the
3761 -- value satisfies any constraint, any predicate, or any
3762 -- exclusion of the null value.
3764 -- * For a scalar type that has the Default_Value aspect
3765 -- specified, the formal parameter is initialized from the
3766 -- value of the actual, without checking that the value
3767 -- satisfies any constraint or any predicate.
3768 -- I do not understand why this case is included??? this is
3769 -- not a case where an OUT parameter is treated as IN OUT.
3771 -- * For a composite type with discriminants or that has
3772 -- implicit initial values for any subcomponents, the
3773 -- behavior is as for an in out parameter passed by copy.
3775 -- Hence for these cases we generate the read reference now
3776 -- (the write reference will be generated later by
3777 -- Note_Possible_Modification).
3779 elsif Is_By_Copy_Type (Etype (F))
3780 and then
3781 (Is_Access_Type (Etype (F))
3782 or else
3783 (Is_Scalar_Type (Etype (F))
3784 and then
3785 Present (Default_Aspect_Value (Etype (F))))
3786 or else
3787 (Is_Composite_Type (Etype (F))
3788 and then (Has_Discriminants (Etype (F))
3789 or else Is_Partially_Initialized_Type
3790 (Etype (F)))))
3791 then
3792 Generate_Reference (Orig_A, A);
3793 end if;
3794 end if;
3795 end if;
3796 end if;
3798 if Present (A)
3799 and then (Nkind (Parent (A)) /= N_Parameter_Association
3800 or else Chars (Selector_Name (Parent (A))) = Chars (F))
3801 then
3802 -- If style checking mode on, check match of formal name
3804 if Style_Check then
3805 if Nkind (Parent (A)) = N_Parameter_Association then
3806 Check_Identifier (Selector_Name (Parent (A)), F);
3807 end if;
3808 end if;
3810 -- If the formal is Out or In_Out, do not resolve and expand the
3811 -- conversion, because it is subsequently expanded into explicit
3812 -- temporaries and assignments. However, the object of the
3813 -- conversion can be resolved. An exception is the case of tagged
3814 -- type conversion with a class-wide actual. In that case we want
3815 -- the tag check to occur and no temporary will be needed (no
3816 -- representation change can occur) and the parameter is passed by
3817 -- reference, so we go ahead and resolve the type conversion.
3818 -- Another exception is the case of reference to component or
3819 -- subcomponent of a bit-packed array, in which case we want to
3820 -- defer expansion to the point the in and out assignments are
3821 -- performed.
3823 if Ekind (F) /= E_In_Parameter
3824 and then Nkind (A) = N_Type_Conversion
3825 and then not Is_Class_Wide_Type (Etype (Expression (A)))
3826 then
3827 if Ekind (F) = E_In_Out_Parameter
3828 and then Is_Array_Type (Etype (F))
3829 then
3830 -- In a view conversion, the conversion must be legal in
3831 -- both directions, and thus both component types must be
3832 -- aliased, or neither (4.6 (8)).
3834 -- The extra rule in 4.6 (24.9.2) seems unduly restrictive:
3835 -- the privacy requirement should not apply to generic
3836 -- types, and should be checked in an instance. ARG query
3837 -- is in order ???
3839 if Has_Aliased_Components (Etype (Expression (A))) /=
3840 Has_Aliased_Components (Etype (F))
3841 then
3842 Error_Msg_N
3843 ("both component types in a view conversion must be"
3844 & " aliased, or neither", A);
3846 -- Comment here??? what set of cases???
3848 elsif
3849 not Same_Ancestor (Etype (F), Etype (Expression (A)))
3850 then
3851 -- Check view conv between unrelated by ref array types
3853 if Is_By_Reference_Type (Etype (F))
3854 or else Is_By_Reference_Type (Etype (Expression (A)))
3855 then
3856 Error_Msg_N
3857 ("view conversion between unrelated by reference "
3858 & "array types not allowed (\'A'I-00246)", A);
3860 -- In Ada 2005 mode, check view conversion component
3861 -- type cannot be private, tagged, or volatile. Note
3862 -- that we only apply this to source conversions. The
3863 -- generated code can contain conversions which are
3864 -- not subject to this test, and we cannot extract the
3865 -- component type in such cases since it is not present.
3867 elsif Comes_From_Source (A)
3868 and then Ada_Version >= Ada_2005
3869 then
3870 declare
3871 Comp_Type : constant Entity_Id :=
3872 Component_Type
3873 (Etype (Expression (A)));
3874 begin
3875 if (Is_Private_Type (Comp_Type)
3876 and then not Is_Generic_Type (Comp_Type))
3877 or else Is_Tagged_Type (Comp_Type)
3878 or else Is_Volatile (Comp_Type)
3879 then
3880 Error_Msg_N
3881 ("component type of a view conversion cannot"
3882 & " be private, tagged, or volatile"
3883 & " (RM 4.6 (24))",
3884 Expression (A));
3885 end if;
3886 end;
3887 end if;
3888 end if;
3889 end if;
3891 -- Resolve expression if conversion is all OK
3893 if (Conversion_OK (A)
3894 or else Valid_Conversion (A, Etype (A), Expression (A)))
3895 and then not Is_Ref_To_Bit_Packed_Array (Expression (A))
3896 then
3897 Resolve (Expression (A));
3898 end if;
3900 -- If the actual is a function call that returns a limited
3901 -- unconstrained object that needs finalization, create a
3902 -- transient scope for it, so that it can receive the proper
3903 -- finalization list.
3905 elsif Nkind (A) = N_Function_Call
3906 and then Is_Limited_Record (Etype (F))
3907 and then not Is_Constrained (Etype (F))
3908 and then Expander_Active
3909 and then (Is_Controlled (Etype (F)) or else Has_Task (Etype (F)))
3910 then
3911 Establish_Transient_Scope (A, Sec_Stack => False);
3912 Resolve (A, Etype (F));
3914 -- A small optimization: if one of the actuals is a concatenation
3915 -- create a block around a procedure call to recover stack space.
3916 -- This alleviates stack usage when several procedure calls in
3917 -- the same statement list use concatenation. We do not perform
3918 -- this wrapping for code statements, where the argument is a
3919 -- static string, and we want to preserve warnings involving
3920 -- sequences of such statements.
3922 elsif Nkind (A) = N_Op_Concat
3923 and then Nkind (N) = N_Procedure_Call_Statement
3924 and then Expander_Active
3925 and then
3926 not (Is_Intrinsic_Subprogram (Nam)
3927 and then Chars (Nam) = Name_Asm)
3928 and then not Static_Concatenation (A)
3929 then
3930 Establish_Transient_Scope (A, Sec_Stack => False);
3931 Resolve (A, Etype (F));
3933 else
3934 if Nkind (A) = N_Type_Conversion
3935 and then Is_Array_Type (Etype (F))
3936 and then not Same_Ancestor (Etype (F), Etype (Expression (A)))
3937 and then
3938 (Is_Limited_Type (Etype (F))
3939 or else Is_Limited_Type (Etype (Expression (A))))
3940 then
3941 Error_Msg_N
3942 ("conversion between unrelated limited array types "
3943 & "not allowed ('A'I-00246)", A);
3945 if Is_Limited_Type (Etype (F)) then
3946 Explain_Limited_Type (Etype (F), A);
3947 end if;
3949 if Is_Limited_Type (Etype (Expression (A))) then
3950 Explain_Limited_Type (Etype (Expression (A)), A);
3951 end if;
3952 end if;
3954 -- (Ada 2005: AI-251): If the actual is an allocator whose
3955 -- directly designated type is a class-wide interface, we build
3956 -- an anonymous access type to use it as the type of the
3957 -- allocator. Later, when the subprogram call is expanded, if
3958 -- the interface has a secondary dispatch table the expander
3959 -- will add a type conversion to force the correct displacement
3960 -- of the pointer.
3962 if Nkind (A) = N_Allocator then
3963 declare
3964 DDT : constant Entity_Id :=
3965 Directly_Designated_Type (Base_Type (Etype (F)));
3967 New_Itype : Entity_Id;
3969 begin
3970 if Is_Class_Wide_Type (DDT)
3971 and then Is_Interface (DDT)
3972 then
3973 New_Itype := Create_Itype (E_Anonymous_Access_Type, A);
3974 Set_Etype (New_Itype, Etype (A));
3975 Set_Directly_Designated_Type
3976 (New_Itype, Directly_Designated_Type (Etype (A)));
3977 Set_Etype (A, New_Itype);
3978 end if;
3980 -- Ada 2005, AI-162:If the actual is an allocator, the
3981 -- innermost enclosing statement is the master of the
3982 -- created object. This needs to be done with expansion
3983 -- enabled only, otherwise the transient scope will not
3984 -- be removed in the expansion of the wrapped construct.
3986 if (Is_Controlled (DDT) or else Has_Task (DDT))
3987 and then Expander_Active
3988 then
3989 Establish_Transient_Scope (A, Sec_Stack => False);
3990 end if;
3991 end;
3993 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
3994 Check_Restriction (No_Access_Parameter_Allocators, A);
3995 end if;
3996 end if;
3998 -- (Ada 2005): The call may be to a primitive operation of a
3999 -- tagged synchronized type, declared outside of the type. In
4000 -- this case the controlling actual must be converted to its
4001 -- corresponding record type, which is the formal type. The
4002 -- actual may be a subtype, either because of a constraint or
4003 -- because it is a generic actual, so use base type to locate
4004 -- concurrent type.
4006 F_Typ := Base_Type (Etype (F));
4008 if Is_Tagged_Type (F_Typ)
4009 and then (Is_Concurrent_Type (F_Typ)
4010 or else Is_Concurrent_Record_Type (F_Typ))
4011 then
4012 -- If the actual is overloaded, look for an interpretation
4013 -- that has a synchronized type.
4015 if not Is_Overloaded (A) then
4016 A_Typ := Base_Type (Etype (A));
4018 else
4019 declare
4020 Index : Interp_Index;
4021 It : Interp;
4023 begin
4024 Get_First_Interp (A, Index, It);
4025 while Present (It.Typ) loop
4026 if Is_Concurrent_Type (It.Typ)
4027 or else Is_Concurrent_Record_Type (It.Typ)
4028 then
4029 A_Typ := Base_Type (It.Typ);
4030 exit;
4031 end if;
4033 Get_Next_Interp (Index, It);
4034 end loop;
4035 end;
4036 end if;
4038 declare
4039 Full_A_Typ : Entity_Id;
4041 begin
4042 if Present (Full_View (A_Typ)) then
4043 Full_A_Typ := Base_Type (Full_View (A_Typ));
4044 else
4045 Full_A_Typ := A_Typ;
4046 end if;
4048 -- Tagged synchronized type (case 1): the actual is a
4049 -- concurrent type.
4051 if Is_Concurrent_Type (A_Typ)
4052 and then Corresponding_Record_Type (A_Typ) = F_Typ
4053 then
4054 Rewrite (A,
4055 Unchecked_Convert_To
4056 (Corresponding_Record_Type (A_Typ), A));
4057 Resolve (A, Etype (F));
4059 -- Tagged synchronized type (case 2): the formal is a
4060 -- concurrent type.
4062 elsif Ekind (Full_A_Typ) = E_Record_Type
4063 and then Present
4064 (Corresponding_Concurrent_Type (Full_A_Typ))
4065 and then Is_Concurrent_Type (F_Typ)
4066 and then Present (Corresponding_Record_Type (F_Typ))
4067 and then Full_A_Typ = Corresponding_Record_Type (F_Typ)
4068 then
4069 Resolve (A, Corresponding_Record_Type (F_Typ));
4071 -- Common case
4073 else
4074 Resolve (A, Etype (F));
4075 end if;
4076 end;
4078 -- Not a synchronized operation
4080 else
4081 Resolve (A, Etype (F));
4082 end if;
4083 end if;
4085 A_Typ := Etype (A);
4086 F_Typ := Etype (F);
4088 -- An actual cannot be an untagged formal incomplete type
4090 if Ekind (A_Typ) = E_Incomplete_Type
4091 and then not Is_Tagged_Type (A_Typ)
4092 and then Is_Generic_Type (A_Typ)
4093 then
4094 Error_Msg_N
4095 ("invalid use of untagged formal incomplete type", A);
4096 end if;
4098 if Comes_From_Source (Original_Node (N))
4099 and then Nkind_In (Original_Node (N), N_Function_Call,
4100 N_Procedure_Call_Statement)
4101 then
4102 -- In formal mode, check that actual parameters matching
4103 -- formals of tagged types are objects (or ancestor type
4104 -- conversions of objects), not general expressions.
4106 if Is_Actual_Tagged_Parameter (A) then
4107 if Is_SPARK_05_Object_Reference (A) then
4108 null;
4110 elsif Nkind (A) = N_Type_Conversion then
4111 declare
4112 Operand : constant Node_Id := Expression (A);
4113 Operand_Typ : constant Entity_Id := Etype (Operand);
4114 Target_Typ : constant Entity_Id := A_Typ;
4116 begin
4117 if not Is_SPARK_05_Object_Reference (Operand) then
4118 Check_SPARK_05_Restriction
4119 ("object required", Operand);
4121 -- In formal mode, the only view conversions are those
4122 -- involving ancestor conversion of an extended type.
4124 elsif not
4125 (Is_Tagged_Type (Target_Typ)
4126 and then not Is_Class_Wide_Type (Target_Typ)
4127 and then Is_Tagged_Type (Operand_Typ)
4128 and then not Is_Class_Wide_Type (Operand_Typ)
4129 and then Is_Ancestor (Target_Typ, Operand_Typ))
4130 then
4131 if Ekind_In
4132 (F, E_Out_Parameter, E_In_Out_Parameter)
4133 then
4134 Check_SPARK_05_Restriction
4135 ("ancestor conversion is the only permitted "
4136 & "view conversion", A);
4137 else
4138 Check_SPARK_05_Restriction
4139 ("ancestor conversion required", A);
4140 end if;
4142 else
4143 null;
4144 end if;
4145 end;
4147 else
4148 Check_SPARK_05_Restriction ("object required", A);
4149 end if;
4151 -- In formal mode, the only view conversions are those
4152 -- involving ancestor conversion of an extended type.
4154 elsif Nkind (A) = N_Type_Conversion
4155 and then Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
4156 then
4157 Check_SPARK_05_Restriction
4158 ("ancestor conversion is the only permitted view "
4159 & "conversion", A);
4160 end if;
4161 end if;
4163 -- has warnings suppressed, then we reset Never_Set_In_Source for
4164 -- the calling entity. The reason for this is to catch cases like
4165 -- GNAT.Spitbol.Patterns.Vstring_Var where the called subprogram
4166 -- uses trickery to modify an IN parameter.
4168 if Ekind (F) = E_In_Parameter
4169 and then Is_Entity_Name (A)
4170 and then Present (Entity (A))
4171 and then Ekind (Entity (A)) = E_Variable
4172 and then Has_Warnings_Off (F_Typ)
4173 then
4174 Set_Never_Set_In_Source (Entity (A), False);
4175 end if;
4177 -- Perform error checks for IN and IN OUT parameters
4179 if Ekind (F) /= E_Out_Parameter then
4181 -- Check unset reference. For scalar parameters, it is clearly
4182 -- wrong to pass an uninitialized value as either an IN or
4183 -- IN-OUT parameter. For composites, it is also clearly an
4184 -- error to pass a completely uninitialized value as an IN
4185 -- parameter, but the case of IN OUT is trickier. We prefer
4186 -- not to give a warning here. For example, suppose there is
4187 -- a routine that sets some component of a record to False.
4188 -- It is perfectly reasonable to make this IN-OUT and allow
4189 -- either initialized or uninitialized records to be passed
4190 -- in this case.
4192 -- For partially initialized composite values, we also avoid
4193 -- warnings, since it is quite likely that we are passing a
4194 -- partially initialized value and only the initialized fields
4195 -- will in fact be read in the subprogram.
4197 if Is_Scalar_Type (A_Typ)
4198 or else (Ekind (F) = E_In_Parameter
4199 and then not Is_Partially_Initialized_Type (A_Typ))
4200 then
4201 Check_Unset_Reference (A);
4202 end if;
4204 -- In Ada 83 we cannot pass an OUT parameter as an IN or IN OUT
4205 -- actual to a nested call, since this is case of reading an
4206 -- out parameter, which is not allowed.
4208 if Ada_Version = Ada_83
4209 and then Is_Entity_Name (A)
4210 and then Ekind (Entity (A)) = E_Out_Parameter
4211 then
4212 Error_Msg_N ("(Ada 83) illegal reading of out parameter", A);
4213 end if;
4214 end if;
4216 -- Case of OUT or IN OUT parameter
4218 if Ekind (F) /= E_In_Parameter then
4220 -- For an Out parameter, check for useless assignment. Note
4221 -- that we can't set Last_Assignment this early, because we may
4222 -- kill current values in Resolve_Call, and that call would
4223 -- clobber the Last_Assignment field.
4225 -- Note: call Warn_On_Useless_Assignment before doing the check
4226 -- below for Is_OK_Variable_For_Out_Formal so that the setting
4227 -- of Referenced_As_LHS/Referenced_As_Out_Formal properly
4228 -- reflects the last assignment, not this one.
4230 if Ekind (F) = E_Out_Parameter then
4231 if Warn_On_Modified_As_Out_Parameter (F)
4232 and then Is_Entity_Name (A)
4233 and then Present (Entity (A))
4234 and then Comes_From_Source (N)
4235 then
4236 Warn_On_Useless_Assignment (Entity (A), A);
4237 end if;
4238 end if;
4240 -- Validate the form of the actual. Note that the call to
4241 -- Is_OK_Variable_For_Out_Formal generates the required
4242 -- reference in this case.
4244 -- A call to an initialization procedure for an aggregate
4245 -- component may initialize a nested component of a constant
4246 -- designated object. In this context the object is variable.
4248 if not Is_OK_Variable_For_Out_Formal (A)
4249 and then not Is_Init_Proc (Nam)
4250 then
4251 Error_Msg_NE ("actual for& must be a variable", A, F);
4253 if Is_Subprogram (Current_Scope)
4254 and then
4255 (Is_Invariant_Procedure (Current_Scope)
4256 or else Is_Predicate_Function (Current_Scope))
4257 then
4258 Error_Msg_N
4259 ("function used in predicate cannot "
4260 & "modify its argument", F);
4261 end if;
4262 end if;
4264 -- What's the following about???
4266 if Is_Entity_Name (A) then
4267 Kill_Checks (Entity (A));
4268 else
4269 Kill_All_Checks;
4270 end if;
4271 end if;
4273 if Etype (A) = Any_Type then
4274 Set_Etype (N, Any_Type);
4275 return;
4276 end if;
4278 -- Apply appropriate constraint/predicate checks for IN [OUT] case
4280 if Ekind_In (F, E_In_Parameter, E_In_Out_Parameter) then
4282 -- Apply predicate tests except in certain special cases. Note
4283 -- that it might be more consistent to apply these only when
4284 -- expansion is active (in Exp_Ch6.Expand_Actuals), as we do
4285 -- for the outbound predicate tests ???
4287 if Predicate_Tests_On_Arguments (Nam) then
4288 Apply_Predicate_Check (A, F_Typ);
4289 end if;
4291 -- Apply required constraint checks
4293 -- Gigi looks at the check flag and uses the appropriate types.
4294 -- For now since one flag is used there is an optimization
4295 -- which might not be done in the IN OUT case since Gigi does
4296 -- not do any analysis. More thought required about this ???
4298 -- In fact is this comment obsolete??? doesn't the expander now
4299 -- generate all these tests anyway???
4301 if Is_Scalar_Type (Etype (A)) then
4302 Apply_Scalar_Range_Check (A, F_Typ);
4304 elsif Is_Array_Type (Etype (A)) then
4305 Apply_Length_Check (A, F_Typ);
4307 elsif Is_Record_Type (F_Typ)
4308 and then Has_Discriminants (F_Typ)
4309 and then Is_Constrained (F_Typ)
4310 and then (not Is_Derived_Type (F_Typ)
4311 or else Comes_From_Source (Nam))
4312 then
4313 Apply_Discriminant_Check (A, F_Typ);
4315 -- For view conversions of a discriminated object, apply
4316 -- check to object itself, the conversion alreay has the
4317 -- proper type.
4319 if Nkind (A) = N_Type_Conversion
4320 and then Is_Constrained (Etype (Expression (A)))
4321 then
4322 Apply_Discriminant_Check (Expression (A), F_Typ);
4323 end if;
4325 elsif Is_Access_Type (F_Typ)
4326 and then Is_Array_Type (Designated_Type (F_Typ))
4327 and then Is_Constrained (Designated_Type (F_Typ))
4328 then
4329 Apply_Length_Check (A, F_Typ);
4331 elsif Is_Access_Type (F_Typ)
4332 and then Has_Discriminants (Designated_Type (F_Typ))
4333 and then Is_Constrained (Designated_Type (F_Typ))
4334 then
4335 Apply_Discriminant_Check (A, F_Typ);
4337 else
4338 Apply_Range_Check (A, F_Typ);
4339 end if;
4341 -- Ada 2005 (AI-231): Note that the controlling parameter case
4342 -- already existed in Ada 95, which is partially checked
4343 -- elsewhere (see Checks), and we don't want the warning
4344 -- message to differ.
4346 if Is_Access_Type (F_Typ)
4347 and then Can_Never_Be_Null (F_Typ)
4348 and then Known_Null (A)
4349 then
4350 if Is_Controlling_Formal (F) then
4351 Apply_Compile_Time_Constraint_Error
4352 (N => A,
4353 Msg => "null value not allowed here??",
4354 Reason => CE_Access_Check_Failed);
4356 elsif Ada_Version >= Ada_2005 then
4357 Apply_Compile_Time_Constraint_Error
4358 (N => A,
4359 Msg => "(Ada 2005) null not allowed in "
4360 & "null-excluding formal??",
4361 Reason => CE_Null_Not_Allowed);
4362 end if;
4363 end if;
4364 end if;
4366 -- Checks for OUT parameters and IN OUT parameters
4368 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter) then
4370 -- If there is a type conversion, to make sure the return value
4371 -- meets the constraints of the variable before the conversion.
4373 if Nkind (A) = N_Type_Conversion then
4374 if Is_Scalar_Type (A_Typ) then
4375 Apply_Scalar_Range_Check
4376 (Expression (A), Etype (Expression (A)), A_Typ);
4377 else
4378 Apply_Range_Check
4379 (Expression (A), Etype (Expression (A)), A_Typ);
4380 end if;
4382 -- If no conversion apply scalar range checks and length checks
4383 -- base on the subtype of the actual (NOT that of the formal).
4385 else
4386 if Is_Scalar_Type (F_Typ) then
4387 Apply_Scalar_Range_Check (A, A_Typ, F_Typ);
4388 elsif Is_Array_Type (F_Typ)
4389 and then Ekind (F) = E_Out_Parameter
4390 then
4391 Apply_Length_Check (A, F_Typ);
4392 else
4393 Apply_Range_Check (A, A_Typ, F_Typ);
4394 end if;
4395 end if;
4397 -- Note: we do not apply the predicate checks for the case of
4398 -- OUT and IN OUT parameters. They are instead applied in the
4399 -- Expand_Actuals routine in Exp_Ch6.
4400 end if;
4402 -- An actual associated with an access parameter is implicitly
4403 -- converted to the anonymous access type of the formal and must
4404 -- satisfy the legality checks for access conversions.
4406 if Ekind (F_Typ) = E_Anonymous_Access_Type then
4407 if not Valid_Conversion (A, F_Typ, A) then
4408 Error_Msg_N
4409 ("invalid implicit conversion for access parameter", A);
4410 end if;
4412 -- If the actual is an access selected component of a variable,
4413 -- the call may modify its designated object. It is reasonable
4414 -- to treat this as a potential modification of the enclosing
4415 -- record, to prevent spurious warnings that it should be
4416 -- declared as a constant, because intuitively programmers
4417 -- regard the designated subcomponent as part of the record.
4419 if Nkind (A) = N_Selected_Component
4420 and then Is_Entity_Name (Prefix (A))
4421 and then not Is_Constant_Object (Entity (Prefix (A)))
4422 then
4423 Note_Possible_Modification (A, Sure => False);
4424 end if;
4425 end if;
4427 -- Check bad case of atomic/volatile argument (RM C.6(12))
4429 if Is_By_Reference_Type (Etype (F))
4430 and then Comes_From_Source (N)
4431 then
4432 if Is_Atomic_Object (A)
4433 and then not Is_Atomic (Etype (F))
4434 then
4435 Error_Msg_NE
4436 ("cannot pass atomic argument to non-atomic formal&",
4437 A, F);
4439 elsif Is_Volatile_Object (A)
4440 and then not Is_Volatile (Etype (F))
4441 then
4442 Error_Msg_NE
4443 ("cannot pass volatile argument to non-volatile formal&",
4444 A, F);
4445 end if;
4446 end if;
4448 -- Check that subprograms don't have improper controlling
4449 -- arguments (RM 3.9.2 (9)).
4451 -- A primitive operation may have an access parameter of an
4452 -- incomplete tagged type, but a dispatching call is illegal
4453 -- if the type is still incomplete.
4455 if Is_Controlling_Formal (F) then
4456 Set_Is_Controlling_Actual (A);
4458 if Ekind (Etype (F)) = E_Anonymous_Access_Type then
4459 declare
4460 Desig : constant Entity_Id := Designated_Type (Etype (F));
4461 begin
4462 if Ekind (Desig) = E_Incomplete_Type
4463 and then No (Full_View (Desig))
4464 and then No (Non_Limited_View (Desig))
4465 then
4466 Error_Msg_NE
4467 ("premature use of incomplete type& "
4468 & "in dispatching call", A, Desig);
4469 end if;
4470 end;
4471 end if;
4473 elsif Nkind (A) = N_Explicit_Dereference then
4474 Validate_Remote_Access_To_Class_Wide_Type (A);
4475 end if;
4477 if (Is_Class_Wide_Type (A_Typ) or else Is_Dynamically_Tagged (A))
4478 and then not Is_Class_Wide_Type (F_Typ)
4479 and then not Is_Controlling_Formal (F)
4480 then
4481 Error_Msg_N ("class-wide argument not allowed here!", A);
4483 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4484 Error_Msg_Node_2 := F_Typ;
4485 Error_Msg_NE
4486 ("& is not a dispatching operation of &!", A, Nam);
4487 end if;
4489 -- Apply the checks described in 3.10.2(27): if the context is a
4490 -- specific access-to-object, the actual cannot be class-wide.
4491 -- Use base type to exclude access_to_subprogram cases.
4493 elsif Is_Access_Type (A_Typ)
4494 and then Is_Access_Type (F_Typ)
4495 and then not Is_Access_Subprogram_Type (Base_Type (F_Typ))
4496 and then (Is_Class_Wide_Type (Designated_Type (A_Typ))
4497 or else (Nkind (A) = N_Attribute_Reference
4498 and then
4499 Is_Class_Wide_Type (Etype (Prefix (A)))))
4500 and then not Is_Class_Wide_Type (Designated_Type (F_Typ))
4501 and then not Is_Controlling_Formal (F)
4503 -- Disable these checks for call to imported C++ subprograms
4505 and then not
4506 (Is_Entity_Name (Name (N))
4507 and then Is_Imported (Entity (Name (N)))
4508 and then Convention (Entity (Name (N))) = Convention_CPP)
4509 then
4510 Error_Msg_N
4511 ("access to class-wide argument not allowed here!", A);
4513 if Is_Subprogram (Nam) and then Comes_From_Source (Nam) then
4514 Error_Msg_Node_2 := Designated_Type (F_Typ);
4515 Error_Msg_NE
4516 ("& is not a dispatching operation of &!", A, Nam);
4517 end if;
4518 end if;
4520 Check_Aliased_Parameter;
4522 Eval_Actual (A);
4524 -- If it is a named association, treat the selector_name as a
4525 -- proper identifier, and mark the corresponding entity.
4527 if Nkind (Parent (A)) = N_Parameter_Association
4529 -- Ignore reference in SPARK mode, as it refers to an entity not
4530 -- in scope at the point of reference, so the reference should
4531 -- be ignored for computing effects of subprograms.
4533 and then not GNATprove_Mode
4534 then
4535 Set_Entity (Selector_Name (Parent (A)), F);
4536 Generate_Reference (F, Selector_Name (Parent (A)));
4537 Set_Etype (Selector_Name (Parent (A)), F_Typ);
4538 Generate_Reference (F_Typ, N, ' ');
4539 end if;
4541 Prev := A;
4543 if Ekind (F) /= E_Out_Parameter then
4544 Check_Unset_Reference (A);
4545 end if;
4547 -- The following checks are only relevant when SPARK_Mode is on as
4548 -- they are not standard Ada legality rule. Internally generated
4549 -- temporaries are ignored.
4551 if SPARK_Mode = On
4552 and then Is_Effectively_Volatile_Object (A)
4553 and then Comes_From_Source (A)
4554 then
4555 -- An effectively volatile object may act as an actual
4556 -- parameter when the corresponding formal is of a non-scalar
4557 -- volatile type.
4559 if Is_Volatile (Etype (F))
4560 and then not Is_Scalar_Type (Etype (F))
4561 then
4562 null;
4564 -- An effectively volatile object may act as an actual
4565 -- parameter in a call to an instance of Unchecked_Conversion.
4567 elsif Is_Unchecked_Conversion_Instance (Nam) then
4568 null;
4570 else
4571 Error_Msg_N
4572 ("volatile object cannot act as actual in a call (SPARK "
4573 & "RM 7.1.3(12))", A);
4574 end if;
4576 -- Detect an external variable with an enabled property that
4577 -- does not match the mode of the corresponding formal in a
4578 -- procedure call. Functions are not considered because they
4579 -- cannot have effectively volatile formal parameters in the
4580 -- first place.
4582 if Ekind (Nam) = E_Procedure
4583 and then Is_Entity_Name (A)
4584 and then Present (Entity (A))
4585 and then Ekind (Entity (A)) = E_Variable
4586 then
4587 A_Id := Entity (A);
4589 if Ekind (F) = E_In_Parameter then
4590 if Async_Readers_Enabled (A_Id) then
4591 Property_Error (A, A_Id, Name_Async_Readers);
4592 elsif Effective_Reads_Enabled (A_Id) then
4593 Property_Error (A, A_Id, Name_Effective_Reads);
4594 elsif Effective_Writes_Enabled (A_Id) then
4595 Property_Error (A, A_Id, Name_Effective_Writes);
4596 end if;
4598 elsif Ekind (F) = E_Out_Parameter
4599 and then Async_Writers_Enabled (A_Id)
4600 then
4601 Error_Msg_Name_1 := Name_Async_Writers;
4602 Error_Msg_NE
4603 ("external variable & with enabled property % cannot "
4604 & "appear as actual in procedure call "
4605 & "(SPARK RM 7.1.3(11))", A, A_Id);
4606 Error_Msg_N
4607 ("\\corresponding formal parameter has mode Out", A);
4608 end if;
4609 end if;
4610 end if;
4612 -- A formal parameter of a specific tagged type whose related
4613 -- subprogram is subject to pragma Extensions_Visible with value
4614 -- "False" cannot act as an actual in a subprogram with value
4615 -- "True" (SPARK RM 6.1.7(3)).
4617 if Is_EVF_Expression (A)
4618 and then Extensions_Visible_Status (Nam) =
4619 Extensions_Visible_True
4620 then
4621 Error_Msg_N
4622 ("formal parameter with Extensions_Visible False cannot act "
4623 & "as actual parameter", A);
4624 Error_Msg_NE
4625 ("\subprogram & has Extensions_Visible True", A, Nam);
4626 end if;
4628 Next_Actual (A);
4630 -- Case where actual is not present
4632 else
4633 Insert_Default;
4634 end if;
4636 Next_Formal (F);
4637 end loop;
4638 end Resolve_Actuals;
4640 -----------------------
4641 -- Resolve_Allocator --
4642 -----------------------
4644 procedure Resolve_Allocator (N : Node_Id; Typ : Entity_Id) is
4645 Desig_T : constant Entity_Id := Designated_Type (Typ);
4646 E : constant Node_Id := Expression (N);
4647 Subtyp : Entity_Id;
4648 Discrim : Entity_Id;
4649 Constr : Node_Id;
4650 Aggr : Node_Id;
4651 Assoc : Node_Id := Empty;
4652 Disc_Exp : Node_Id;
4654 procedure Check_Allocator_Discrim_Accessibility
4655 (Disc_Exp : Node_Id;
4656 Alloc_Typ : Entity_Id);
4657 -- Check that accessibility level associated with an access discriminant
4658 -- initialized in an allocator by the expression Disc_Exp is not deeper
4659 -- than the level of the allocator type Alloc_Typ. An error message is
4660 -- issued if this condition is violated. Specialized checks are done for
4661 -- the cases of a constraint expression which is an access attribute or
4662 -- an access discriminant.
4664 function In_Dispatching_Context return Boolean;
4665 -- If the allocator is an actual in a call, it is allowed to be class-
4666 -- wide when the context is not because it is a controlling actual.
4668 -------------------------------------------
4669 -- Check_Allocator_Discrim_Accessibility --
4670 -------------------------------------------
4672 procedure Check_Allocator_Discrim_Accessibility
4673 (Disc_Exp : Node_Id;
4674 Alloc_Typ : Entity_Id)
4676 begin
4677 if Type_Access_Level (Etype (Disc_Exp)) >
4678 Deepest_Type_Access_Level (Alloc_Typ)
4679 then
4680 Error_Msg_N
4681 ("operand type has deeper level than allocator type", Disc_Exp);
4683 -- When the expression is an Access attribute the level of the prefix
4684 -- object must not be deeper than that of the allocator's type.
4686 elsif Nkind (Disc_Exp) = N_Attribute_Reference
4687 and then Get_Attribute_Id (Attribute_Name (Disc_Exp)) =
4688 Attribute_Access
4689 and then Object_Access_Level (Prefix (Disc_Exp)) >
4690 Deepest_Type_Access_Level (Alloc_Typ)
4691 then
4692 Error_Msg_N
4693 ("prefix of attribute has deeper level than allocator type",
4694 Disc_Exp);
4696 -- When the expression is an access discriminant the check is against
4697 -- the level of the prefix object.
4699 elsif Ekind (Etype (Disc_Exp)) = E_Anonymous_Access_Type
4700 and then Nkind (Disc_Exp) = N_Selected_Component
4701 and then Object_Access_Level (Prefix (Disc_Exp)) >
4702 Deepest_Type_Access_Level (Alloc_Typ)
4703 then
4704 Error_Msg_N
4705 ("access discriminant has deeper level than allocator type",
4706 Disc_Exp);
4708 -- All other cases are legal
4710 else
4711 null;
4712 end if;
4713 end Check_Allocator_Discrim_Accessibility;
4715 ----------------------------
4716 -- In_Dispatching_Context --
4717 ----------------------------
4719 function In_Dispatching_Context return Boolean is
4720 Par : constant Node_Id := Parent (N);
4722 begin
4723 return Nkind (Par) in N_Subprogram_Call
4724 and then Is_Entity_Name (Name (Par))
4725 and then Is_Dispatching_Operation (Entity (Name (Par)));
4726 end In_Dispatching_Context;
4728 -- Start of processing for Resolve_Allocator
4730 begin
4731 -- Replace general access with specific type
4733 if Ekind (Etype (N)) = E_Allocator_Type then
4734 Set_Etype (N, Base_Type (Typ));
4735 end if;
4737 if Is_Abstract_Type (Typ) then
4738 Error_Msg_N ("type of allocator cannot be abstract", N);
4739 end if;
4741 -- For qualified expression, resolve the expression using the given
4742 -- subtype (nothing to do for type mark, subtype indication)
4744 if Nkind (E) = N_Qualified_Expression then
4745 if Is_Class_Wide_Type (Etype (E))
4746 and then not Is_Class_Wide_Type (Desig_T)
4747 and then not In_Dispatching_Context
4748 then
4749 Error_Msg_N
4750 ("class-wide allocator not allowed for this access type", N);
4751 end if;
4753 Resolve (Expression (E), Etype (E));
4754 Check_Non_Static_Context (Expression (E));
4755 Check_Unset_Reference (Expression (E));
4757 -- A qualified expression requires an exact match of the type.
4758 -- Class-wide matching is not allowed.
4760 if (Is_Class_Wide_Type (Etype (Expression (E)))
4761 or else Is_Class_Wide_Type (Etype (E)))
4762 and then Base_Type (Etype (Expression (E))) /= Base_Type (Etype (E))
4763 then
4764 Wrong_Type (Expression (E), Etype (E));
4765 end if;
4767 -- Calls to build-in-place functions are not currently supported in
4768 -- allocators for access types associated with a simple storage pool.
4769 -- Supporting such allocators may require passing additional implicit
4770 -- parameters to build-in-place functions (or a significant revision
4771 -- of the current b-i-p implementation to unify the handling for
4772 -- multiple kinds of storage pools). ???
4774 if Is_Limited_View (Desig_T)
4775 and then Nkind (Expression (E)) = N_Function_Call
4776 then
4777 declare
4778 Pool : constant Entity_Id :=
4779 Associated_Storage_Pool (Root_Type (Typ));
4780 begin
4781 if Present (Pool)
4782 and then
4783 Present (Get_Rep_Pragma
4784 (Etype (Pool), Name_Simple_Storage_Pool_Type))
4785 then
4786 Error_Msg_N
4787 ("limited function calls not yet supported in simple "
4788 & "storage pool allocators", Expression (E));
4789 end if;
4790 end;
4791 end if;
4793 -- A special accessibility check is needed for allocators that
4794 -- constrain access discriminants. The level of the type of the
4795 -- expression used to constrain an access discriminant cannot be
4796 -- deeper than the type of the allocator (in contrast to access
4797 -- parameters, where the level of the actual can be arbitrary).
4799 -- We can't use Valid_Conversion to perform this check because in
4800 -- general the type of the allocator is unrelated to the type of
4801 -- the access discriminant.
4803 if Ekind (Typ) /= E_Anonymous_Access_Type
4804 or else Is_Local_Anonymous_Access (Typ)
4805 then
4806 Subtyp := Entity (Subtype_Mark (E));
4808 Aggr := Original_Node (Expression (E));
4810 if Has_Discriminants (Subtyp)
4811 and then Nkind_In (Aggr, N_Aggregate, N_Extension_Aggregate)
4812 then
4813 Discrim := First_Discriminant (Base_Type (Subtyp));
4815 -- Get the first component expression of the aggregate
4817 if Present (Expressions (Aggr)) then
4818 Disc_Exp := First (Expressions (Aggr));
4820 elsif Present (Component_Associations (Aggr)) then
4821 Assoc := First (Component_Associations (Aggr));
4823 if Present (Assoc) then
4824 Disc_Exp := Expression (Assoc);
4825 else
4826 Disc_Exp := Empty;
4827 end if;
4829 else
4830 Disc_Exp := Empty;
4831 end if;
4833 while Present (Discrim) and then Present (Disc_Exp) loop
4834 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4835 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4836 end if;
4838 Next_Discriminant (Discrim);
4840 if Present (Discrim) then
4841 if Present (Assoc) then
4842 Next (Assoc);
4843 Disc_Exp := Expression (Assoc);
4845 elsif Present (Next (Disc_Exp)) then
4846 Next (Disc_Exp);
4848 else
4849 Assoc := First (Component_Associations (Aggr));
4851 if Present (Assoc) then
4852 Disc_Exp := Expression (Assoc);
4853 else
4854 Disc_Exp := Empty;
4855 end if;
4856 end if;
4857 end if;
4858 end loop;
4859 end if;
4860 end if;
4862 -- For a subtype mark or subtype indication, freeze the subtype
4864 else
4865 Freeze_Expression (E);
4867 if Is_Access_Constant (Typ) and then not No_Initialization (N) then
4868 Error_Msg_N
4869 ("initialization required for access-to-constant allocator", N);
4870 end if;
4872 -- A special accessibility check is needed for allocators that
4873 -- constrain access discriminants. The level of the type of the
4874 -- expression used to constrain an access discriminant cannot be
4875 -- deeper than the type of the allocator (in contrast to access
4876 -- parameters, where the level of the actual can be arbitrary).
4877 -- We can't use Valid_Conversion to perform this check because
4878 -- in general the type of the allocator is unrelated to the type
4879 -- of the access discriminant.
4881 if Nkind (Original_Node (E)) = N_Subtype_Indication
4882 and then (Ekind (Typ) /= E_Anonymous_Access_Type
4883 or else Is_Local_Anonymous_Access (Typ))
4884 then
4885 Subtyp := Entity (Subtype_Mark (Original_Node (E)));
4887 if Has_Discriminants (Subtyp) then
4888 Discrim := First_Discriminant (Base_Type (Subtyp));
4889 Constr := First (Constraints (Constraint (Original_Node (E))));
4890 while Present (Discrim) and then Present (Constr) loop
4891 if Ekind (Etype (Discrim)) = E_Anonymous_Access_Type then
4892 if Nkind (Constr) = N_Discriminant_Association then
4893 Disc_Exp := Original_Node (Expression (Constr));
4894 else
4895 Disc_Exp := Original_Node (Constr);
4896 end if;
4898 Check_Allocator_Discrim_Accessibility (Disc_Exp, Typ);
4899 end if;
4901 Next_Discriminant (Discrim);
4902 Next (Constr);
4903 end loop;
4904 end if;
4905 end if;
4906 end if;
4908 -- Ada 2005 (AI-344): A class-wide allocator requires an accessibility
4909 -- check that the level of the type of the created object is not deeper
4910 -- than the level of the allocator's access type, since extensions can
4911 -- now occur at deeper levels than their ancestor types. This is a
4912 -- static accessibility level check; a run-time check is also needed in
4913 -- the case of an initialized allocator with a class-wide argument (see
4914 -- Expand_Allocator_Expression).
4916 if Ada_Version >= Ada_2005
4917 and then Is_Class_Wide_Type (Desig_T)
4918 then
4919 declare
4920 Exp_Typ : Entity_Id;
4922 begin
4923 if Nkind (E) = N_Qualified_Expression then
4924 Exp_Typ := Etype (E);
4925 elsif Nkind (E) = N_Subtype_Indication then
4926 Exp_Typ := Entity (Subtype_Mark (Original_Node (E)));
4927 else
4928 Exp_Typ := Entity (E);
4929 end if;
4931 if Type_Access_Level (Exp_Typ) >
4932 Deepest_Type_Access_Level (Typ)
4933 then
4934 if In_Instance_Body then
4935 Error_Msg_Warn := SPARK_Mode /= On;
4936 Error_Msg_N
4937 ("type in allocator has deeper level than "
4938 & "designated class-wide type<<", E);
4939 Error_Msg_N ("\Program_Error [<<", E);
4940 Rewrite (N,
4941 Make_Raise_Program_Error (Sloc (N),
4942 Reason => PE_Accessibility_Check_Failed));
4943 Set_Etype (N, Typ);
4945 -- Do not apply Ada 2005 accessibility checks on a class-wide
4946 -- allocator if the type given in the allocator is a formal
4947 -- type. A run-time check will be performed in the instance.
4949 elsif not Is_Generic_Type (Exp_Typ) then
4950 Error_Msg_N ("type in allocator has deeper level than "
4951 & "designated class-wide type", E);
4952 end if;
4953 end if;
4954 end;
4955 end if;
4957 -- Check for allocation from an empty storage pool
4959 if No_Pool_Assigned (Typ) then
4960 Error_Msg_N ("allocation from empty storage pool!", N);
4962 -- If the context is an unchecked conversion, as may happen within an
4963 -- inlined subprogram, the allocator is being resolved with its own
4964 -- anonymous type. In that case, if the target type has a specific
4965 -- storage pool, it must be inherited explicitly by the allocator type.
4967 elsif Nkind (Parent (N)) = N_Unchecked_Type_Conversion
4968 and then No (Associated_Storage_Pool (Typ))
4969 then
4970 Set_Associated_Storage_Pool
4971 (Typ, Associated_Storage_Pool (Etype (Parent (N))));
4972 end if;
4974 if Ekind (Etype (N)) = E_Anonymous_Access_Type then
4975 Check_Restriction (No_Anonymous_Allocators, N);
4976 end if;
4978 -- Check that an allocator with task parts isn't for a nested access
4979 -- type when restriction No_Task_Hierarchy applies.
4981 if not Is_Library_Level_Entity (Base_Type (Typ))
4982 and then Has_Task (Base_Type (Desig_T))
4983 then
4984 Check_Restriction (No_Task_Hierarchy, N);
4985 end if;
4987 -- An illegal allocator may be rewritten as a raise Program_Error
4988 -- statement.
4990 if Nkind (N) = N_Allocator then
4992 -- An anonymous access discriminant is the definition of a
4993 -- coextension.
4995 if Ekind (Typ) = E_Anonymous_Access_Type
4996 and then Nkind (Associated_Node_For_Itype (Typ)) =
4997 N_Discriminant_Specification
4998 then
4999 declare
5000 Discr : constant Entity_Id :=
5001 Defining_Identifier (Associated_Node_For_Itype (Typ));
5003 begin
5004 Check_Restriction (No_Coextensions, N);
5006 -- Ada 2012 AI05-0052: If the designated type of the allocator
5007 -- is limited, then the allocator shall not be used to define
5008 -- the value of an access discriminant unless the discriminated
5009 -- type is immutably limited.
5011 if Ada_Version >= Ada_2012
5012 and then Is_Limited_Type (Desig_T)
5013 and then not Is_Limited_View (Scope (Discr))
5014 then
5015 Error_Msg_N
5016 ("only immutably limited types can have anonymous "
5017 & "access discriminants designating a limited type", N);
5018 end if;
5019 end;
5021 -- Avoid marking an allocator as a dynamic coextension if it is
5022 -- within a static construct.
5024 if not Is_Static_Coextension (N) then
5025 Set_Is_Dynamic_Coextension (N);
5026 end if;
5028 -- Cleanup for potential static coextensions
5030 else
5031 Set_Is_Dynamic_Coextension (N, False);
5032 Set_Is_Static_Coextension (N, False);
5033 end if;
5034 end if;
5036 -- Report a simple error: if the designated object is a local task,
5037 -- its body has not been seen yet, and its activation will fail an
5038 -- elaboration check.
5040 if Is_Task_Type (Desig_T)
5041 and then Scope (Base_Type (Desig_T)) = Current_Scope
5042 and then Is_Compilation_Unit (Current_Scope)
5043 and then Ekind (Current_Scope) = E_Package
5044 and then not In_Package_Body (Current_Scope)
5045 then
5046 Error_Msg_Warn := SPARK_Mode /= On;
5047 Error_Msg_N ("cannot activate task before body seen<<", N);
5048 Error_Msg_N ("\Program_Error [<<", N);
5049 end if;
5051 -- Ada 2012 (AI05-0111-3): Detect an attempt to allocate a task or a
5052 -- type with a task component on a subpool. This action must raise
5053 -- Program_Error at runtime.
5055 if Ada_Version >= Ada_2012
5056 and then Nkind (N) = N_Allocator
5057 and then Present (Subpool_Handle_Name (N))
5058 and then Has_Task (Desig_T)
5059 then
5060 Error_Msg_Warn := SPARK_Mode /= On;
5061 Error_Msg_N ("cannot allocate task on subpool<<", N);
5062 Error_Msg_N ("\Program_Error [<<", N);
5064 Rewrite (N,
5065 Make_Raise_Program_Error (Sloc (N),
5066 Reason => PE_Explicit_Raise));
5067 Set_Etype (N, Typ);
5068 end if;
5069 end Resolve_Allocator;
5071 ---------------------------
5072 -- Resolve_Arithmetic_Op --
5073 ---------------------------
5075 -- Used for resolving all arithmetic operators except exponentiation
5077 procedure Resolve_Arithmetic_Op (N : Node_Id; Typ : Entity_Id) is
5078 L : constant Node_Id := Left_Opnd (N);
5079 R : constant Node_Id := Right_Opnd (N);
5080 TL : constant Entity_Id := Base_Type (Etype (L));
5081 TR : constant Entity_Id := Base_Type (Etype (R));
5082 T : Entity_Id;
5083 Rop : Node_Id;
5085 B_Typ : constant Entity_Id := Base_Type (Typ);
5086 -- We do the resolution using the base type, because intermediate values
5087 -- in expressions always are of the base type, not a subtype of it.
5089 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean;
5090 -- Returns True if N is in a context that expects "any real type"
5092 function Is_Integer_Or_Universal (N : Node_Id) return Boolean;
5093 -- Return True iff given type is Integer or universal real/integer
5095 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id);
5096 -- Choose type of integer literal in fixed-point operation to conform
5097 -- to available fixed-point type. T is the type of the other operand,
5098 -- which is needed to determine the expected type of N.
5100 procedure Set_Operand_Type (N : Node_Id);
5101 -- Set operand type to T if universal
5103 -------------------------------
5104 -- Expected_Type_Is_Any_Real --
5105 -------------------------------
5107 function Expected_Type_Is_Any_Real (N : Node_Id) return Boolean is
5108 begin
5109 -- N is the expression after "delta" in a fixed_point_definition;
5110 -- see RM-3.5.9(6):
5112 return Nkind_In (Parent (N), N_Ordinary_Fixed_Point_Definition,
5113 N_Decimal_Fixed_Point_Definition,
5115 -- N is one of the bounds in a real_range_specification;
5116 -- see RM-3.5.7(5):
5118 N_Real_Range_Specification,
5120 -- N is the expression of a delta_constraint;
5121 -- see RM-J.3(3):
5123 N_Delta_Constraint);
5124 end Expected_Type_Is_Any_Real;
5126 -----------------------------
5127 -- Is_Integer_Or_Universal --
5128 -----------------------------
5130 function Is_Integer_Or_Universal (N : Node_Id) return Boolean is
5131 T : Entity_Id;
5132 Index : Interp_Index;
5133 It : Interp;
5135 begin
5136 if not Is_Overloaded (N) then
5137 T := Etype (N);
5138 return Base_Type (T) = Base_Type (Standard_Integer)
5139 or else T = Universal_Integer
5140 or else T = Universal_Real;
5141 else
5142 Get_First_Interp (N, Index, It);
5143 while Present (It.Typ) loop
5144 if Base_Type (It.Typ) = Base_Type (Standard_Integer)
5145 or else It.Typ = Universal_Integer
5146 or else It.Typ = Universal_Real
5147 then
5148 return True;
5149 end if;
5151 Get_Next_Interp (Index, It);
5152 end loop;
5153 end if;
5155 return False;
5156 end Is_Integer_Or_Universal;
5158 ----------------------------
5159 -- Set_Mixed_Mode_Operand --
5160 ----------------------------
5162 procedure Set_Mixed_Mode_Operand (N : Node_Id; T : Entity_Id) is
5163 Index : Interp_Index;
5164 It : Interp;
5166 begin
5167 if Universal_Interpretation (N) = Universal_Integer then
5169 -- A universal integer literal is resolved as standard integer
5170 -- except in the case of a fixed-point result, where we leave it
5171 -- as universal (to be handled by Exp_Fixd later on)
5173 if Is_Fixed_Point_Type (T) then
5174 Resolve (N, Universal_Integer);
5175 else
5176 Resolve (N, Standard_Integer);
5177 end if;
5179 elsif Universal_Interpretation (N) = Universal_Real
5180 and then (T = Base_Type (Standard_Integer)
5181 or else T = Universal_Integer
5182 or else T = Universal_Real)
5183 then
5184 -- A universal real can appear in a fixed-type context. We resolve
5185 -- the literal with that context, even though this might raise an
5186 -- exception prematurely (the other operand may be zero).
5188 Resolve (N, B_Typ);
5190 elsif Etype (N) = Base_Type (Standard_Integer)
5191 and then T = Universal_Real
5192 and then Is_Overloaded (N)
5193 then
5194 -- Integer arg in mixed-mode operation. Resolve with universal
5195 -- type, in case preference rule must be applied.
5197 Resolve (N, Universal_Integer);
5199 elsif Etype (N) = T
5200 and then B_Typ /= Universal_Fixed
5201 then
5202 -- Not a mixed-mode operation, resolve with context
5204 Resolve (N, B_Typ);
5206 elsif Etype (N) = Any_Fixed then
5208 -- N may itself be a mixed-mode operation, so use context type
5210 Resolve (N, B_Typ);
5212 elsif Is_Fixed_Point_Type (T)
5213 and then B_Typ = Universal_Fixed
5214 and then Is_Overloaded (N)
5215 then
5216 -- Must be (fixed * fixed) operation, operand must have one
5217 -- compatible interpretation.
5219 Resolve (N, Any_Fixed);
5221 elsif Is_Fixed_Point_Type (B_Typ)
5222 and then (T = Universal_Real or else Is_Fixed_Point_Type (T))
5223 and then Is_Overloaded (N)
5224 then
5225 -- C * F(X) in a fixed context, where C is a real literal or a
5226 -- fixed-point expression. F must have either a fixed type
5227 -- interpretation or an integer interpretation, but not both.
5229 Get_First_Interp (N, Index, It);
5230 while Present (It.Typ) loop
5231 if Base_Type (It.Typ) = Base_Type (Standard_Integer) then
5232 if Analyzed (N) then
5233 Error_Msg_N ("ambiguous operand in fixed operation", N);
5234 else
5235 Resolve (N, Standard_Integer);
5236 end if;
5238 elsif Is_Fixed_Point_Type (It.Typ) then
5239 if Analyzed (N) then
5240 Error_Msg_N ("ambiguous operand in fixed operation", N);
5241 else
5242 Resolve (N, It.Typ);
5243 end if;
5244 end if;
5246 Get_Next_Interp (Index, It);
5247 end loop;
5249 -- Reanalyze the literal with the fixed type of the context. If
5250 -- context is Universal_Fixed, we are within a conversion, leave
5251 -- the literal as a universal real because there is no usable
5252 -- fixed type, and the target of the conversion plays no role in
5253 -- the resolution.
5255 declare
5256 Op2 : Node_Id;
5257 T2 : Entity_Id;
5259 begin
5260 if N = L then
5261 Op2 := R;
5262 else
5263 Op2 := L;
5264 end if;
5266 if B_Typ = Universal_Fixed
5267 and then Nkind (Op2) = N_Real_Literal
5268 then
5269 T2 := Universal_Real;
5270 else
5271 T2 := B_Typ;
5272 end if;
5274 Set_Analyzed (Op2, False);
5275 Resolve (Op2, T2);
5276 end;
5278 else
5279 Resolve (N);
5280 end if;
5281 end Set_Mixed_Mode_Operand;
5283 ----------------------
5284 -- Set_Operand_Type --
5285 ----------------------
5287 procedure Set_Operand_Type (N : Node_Id) is
5288 begin
5289 if Etype (N) = Universal_Integer
5290 or else Etype (N) = Universal_Real
5291 then
5292 Set_Etype (N, T);
5293 end if;
5294 end Set_Operand_Type;
5296 -- Start of processing for Resolve_Arithmetic_Op
5298 begin
5299 if Comes_From_Source (N)
5300 and then Ekind (Entity (N)) = E_Function
5301 and then Is_Imported (Entity (N))
5302 and then Is_Intrinsic_Subprogram (Entity (N))
5303 then
5304 Resolve_Intrinsic_Operator (N, Typ);
5305 return;
5307 -- Special-case for mixed-mode universal expressions or fixed point type
5308 -- operation: each argument is resolved separately. The same treatment
5309 -- is required if one of the operands of a fixed point operation is
5310 -- universal real, since in this case we don't do a conversion to a
5311 -- specific fixed-point type (instead the expander handles the case).
5313 -- Set the type of the node to its universal interpretation because
5314 -- legality checks on an exponentiation operand need the context.
5316 elsif (B_Typ = Universal_Integer or else B_Typ = Universal_Real)
5317 and then Present (Universal_Interpretation (L))
5318 and then Present (Universal_Interpretation (R))
5319 then
5320 Set_Etype (N, B_Typ);
5321 Resolve (L, Universal_Interpretation (L));
5322 Resolve (R, Universal_Interpretation (R));
5324 elsif (B_Typ = Universal_Real
5325 or else Etype (N) = Universal_Fixed
5326 or else (Etype (N) = Any_Fixed
5327 and then Is_Fixed_Point_Type (B_Typ))
5328 or else (Is_Fixed_Point_Type (B_Typ)
5329 and then (Is_Integer_Or_Universal (L)
5330 or else
5331 Is_Integer_Or_Universal (R))))
5332 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5333 then
5334 if TL = Universal_Integer or else TR = Universal_Integer then
5335 Check_For_Visible_Operator (N, B_Typ);
5336 end if;
5338 -- If context is a fixed type and one operand is integer, the other
5339 -- is resolved with the type of the context.
5341 if Is_Fixed_Point_Type (B_Typ)
5342 and then (Base_Type (TL) = Base_Type (Standard_Integer)
5343 or else TL = Universal_Integer)
5344 then
5345 Resolve (R, B_Typ);
5346 Resolve (L, TL);
5348 elsif Is_Fixed_Point_Type (B_Typ)
5349 and then (Base_Type (TR) = Base_Type (Standard_Integer)
5350 or else TR = Universal_Integer)
5351 then
5352 Resolve (L, B_Typ);
5353 Resolve (R, TR);
5355 else
5356 Set_Mixed_Mode_Operand (L, TR);
5357 Set_Mixed_Mode_Operand (R, TL);
5358 end if;
5360 -- Check the rule in RM05-4.5.5(19.1/2) disallowing universal_fixed
5361 -- multiplying operators from being used when the expected type is
5362 -- also universal_fixed. Note that B_Typ will be Universal_Fixed in
5363 -- some cases where the expected type is actually Any_Real;
5364 -- Expected_Type_Is_Any_Real takes care of that case.
5366 if Etype (N) = Universal_Fixed
5367 or else Etype (N) = Any_Fixed
5368 then
5369 if B_Typ = Universal_Fixed
5370 and then not Expected_Type_Is_Any_Real (N)
5371 and then not Nkind_In (Parent (N), N_Type_Conversion,
5372 N_Unchecked_Type_Conversion)
5373 then
5374 Error_Msg_N ("type cannot be determined from context!", N);
5375 Error_Msg_N ("\explicit conversion to result type required", N);
5377 Set_Etype (L, Any_Type);
5378 Set_Etype (R, Any_Type);
5380 else
5381 if Ada_Version = Ada_83
5382 and then Etype (N) = Universal_Fixed
5383 and then not
5384 Nkind_In (Parent (N), N_Type_Conversion,
5385 N_Unchecked_Type_Conversion)
5386 then
5387 Error_Msg_N
5388 ("(Ada 83) fixed-point operation "
5389 & "needs explicit conversion", N);
5390 end if;
5392 -- The expected type is "any real type" in contexts like
5394 -- type T is delta <universal_fixed-expression> ...
5396 -- in which case we need to set the type to Universal_Real
5397 -- so that static expression evaluation will work properly.
5399 if Expected_Type_Is_Any_Real (N) then
5400 Set_Etype (N, Universal_Real);
5401 else
5402 Set_Etype (N, B_Typ);
5403 end if;
5404 end if;
5406 elsif Is_Fixed_Point_Type (B_Typ)
5407 and then (Is_Integer_Or_Universal (L)
5408 or else Nkind (L) = N_Real_Literal
5409 or else Nkind (R) = N_Real_Literal
5410 or else Is_Integer_Or_Universal (R))
5411 then
5412 Set_Etype (N, B_Typ);
5414 elsif Etype (N) = Any_Fixed then
5416 -- If no previous errors, this is only possible if one operand is
5417 -- overloaded and the context is universal. Resolve as such.
5419 Set_Etype (N, B_Typ);
5420 end if;
5422 else
5423 if (TL = Universal_Integer or else TL = Universal_Real)
5424 and then
5425 (TR = Universal_Integer or else TR = Universal_Real)
5426 then
5427 Check_For_Visible_Operator (N, B_Typ);
5428 end if;
5430 -- If the context is Universal_Fixed and the operands are also
5431 -- universal fixed, this is an error, unless there is only one
5432 -- applicable fixed_point type (usually Duration).
5434 if B_Typ = Universal_Fixed and then Etype (L) = Universal_Fixed then
5435 T := Unique_Fixed_Point_Type (N);
5437 if T = Any_Type then
5438 Set_Etype (N, T);
5439 return;
5440 else
5441 Resolve (L, T);
5442 Resolve (R, T);
5443 end if;
5445 else
5446 Resolve (L, B_Typ);
5447 Resolve (R, B_Typ);
5448 end if;
5450 -- If one of the arguments was resolved to a non-universal type.
5451 -- label the result of the operation itself with the same type.
5452 -- Do the same for the universal argument, if any.
5454 T := Intersect_Types (L, R);
5455 Set_Etype (N, Base_Type (T));
5456 Set_Operand_Type (L);
5457 Set_Operand_Type (R);
5458 end if;
5460 Generate_Operator_Reference (N, Typ);
5461 Analyze_Dimension (N);
5462 Eval_Arithmetic_Op (N);
5464 -- In SPARK, a multiplication or division with operands of fixed point
5465 -- types must be qualified or explicitly converted to identify the
5466 -- result type.
5468 if (Is_Fixed_Point_Type (Etype (L))
5469 or else Is_Fixed_Point_Type (Etype (R)))
5470 and then Nkind_In (N, N_Op_Multiply, N_Op_Divide)
5471 and then
5472 not Nkind_In (Parent (N), N_Qualified_Expression, N_Type_Conversion)
5473 then
5474 Check_SPARK_05_Restriction
5475 ("operation should be qualified or explicitly converted", N);
5476 end if;
5478 -- Set overflow and division checking bit
5480 if Nkind (N) in N_Op then
5481 if not Overflow_Checks_Suppressed (Etype (N)) then
5482 Enable_Overflow_Check (N);
5483 end if;
5485 -- Give warning if explicit division by zero
5487 if Nkind_In (N, N_Op_Divide, N_Op_Rem, N_Op_Mod)
5488 and then not Division_Checks_Suppressed (Etype (N))
5489 then
5490 Rop := Right_Opnd (N);
5492 if Compile_Time_Known_Value (Rop)
5493 and then ((Is_Integer_Type (Etype (Rop))
5494 and then Expr_Value (Rop) = Uint_0)
5495 or else
5496 (Is_Real_Type (Etype (Rop))
5497 and then Expr_Value_R (Rop) = Ureal_0))
5498 then
5499 -- Specialize the warning message according to the operation.
5500 -- The following warnings are for the case
5502 case Nkind (N) is
5503 when N_Op_Divide =>
5505 -- For division, we have two cases, for float division
5506 -- of an unconstrained float type, on a machine where
5507 -- Machine_Overflows is false, we don't get an exception
5508 -- at run-time, but rather an infinity or Nan. The Nan
5509 -- case is pretty obscure, so just warn about infinities.
5511 if Is_Floating_Point_Type (Typ)
5512 and then not Is_Constrained (Typ)
5513 and then not Machine_Overflows_On_Target
5514 then
5515 Error_Msg_N
5516 ("float division by zero, may generate "
5517 & "'+'/'- infinity??", Right_Opnd (N));
5519 -- For all other cases, we get a Constraint_Error
5521 else
5522 Apply_Compile_Time_Constraint_Error
5523 (N, "division by zero??", CE_Divide_By_Zero,
5524 Loc => Sloc (Right_Opnd (N)));
5525 end if;
5527 when N_Op_Rem =>
5528 Apply_Compile_Time_Constraint_Error
5529 (N, "rem with zero divisor??", CE_Divide_By_Zero,
5530 Loc => Sloc (Right_Opnd (N)));
5532 when N_Op_Mod =>
5533 Apply_Compile_Time_Constraint_Error
5534 (N, "mod with zero divisor??", CE_Divide_By_Zero,
5535 Loc => Sloc (Right_Opnd (N)));
5537 -- Division by zero can only happen with division, rem,
5538 -- and mod operations.
5540 when others =>
5541 raise Program_Error;
5542 end case;
5544 -- Otherwise just set the flag to check at run time
5546 else
5547 Activate_Division_Check (N);
5548 end if;
5549 end if;
5551 -- If Restriction No_Implicit_Conditionals is active, then it is
5552 -- violated if either operand can be negative for mod, or for rem
5553 -- if both operands can be negative.
5555 if Restriction_Check_Required (No_Implicit_Conditionals)
5556 and then Nkind_In (N, N_Op_Rem, N_Op_Mod)
5557 then
5558 declare
5559 Lo : Uint;
5560 Hi : Uint;
5561 OK : Boolean;
5563 LNeg : Boolean;
5564 RNeg : Boolean;
5565 -- Set if corresponding operand might be negative
5567 begin
5568 Determine_Range
5569 (Left_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5570 LNeg := (not OK) or else Lo < 0;
5572 Determine_Range
5573 (Right_Opnd (N), OK, Lo, Hi, Assume_Valid => True);
5574 RNeg := (not OK) or else Lo < 0;
5576 -- Check if we will be generating conditionals. There are two
5577 -- cases where that can happen, first for REM, the only case
5578 -- is largest negative integer mod -1, where the division can
5579 -- overflow, but we still have to give the right result. The
5580 -- front end generates a test for this annoying case. Here we
5581 -- just test if both operands can be negative (that's what the
5582 -- expander does, so we match its logic here).
5584 -- The second case is mod where either operand can be negative.
5585 -- In this case, the back end has to generate additional tests.
5587 if (Nkind (N) = N_Op_Rem and then (LNeg and RNeg))
5588 or else
5589 (Nkind (N) = N_Op_Mod and then (LNeg or RNeg))
5590 then
5591 Check_Restriction (No_Implicit_Conditionals, N);
5592 end if;
5593 end;
5594 end if;
5595 end if;
5597 Check_Unset_Reference (L);
5598 Check_Unset_Reference (R);
5599 Check_Function_Writable_Actuals (N);
5600 end Resolve_Arithmetic_Op;
5602 ------------------
5603 -- Resolve_Call --
5604 ------------------
5606 procedure Resolve_Call (N : Node_Id; Typ : Entity_Id) is
5607 function Same_Or_Aliased_Subprograms
5608 (S : Entity_Id;
5609 E : Entity_Id) return Boolean;
5610 -- Returns True if the subprogram entity S is the same as E or else
5611 -- S is an alias of E.
5613 ---------------------------------
5614 -- Same_Or_Aliased_Subprograms --
5615 ---------------------------------
5617 function Same_Or_Aliased_Subprograms
5618 (S : Entity_Id;
5619 E : Entity_Id) return Boolean
5621 Subp_Alias : constant Entity_Id := Alias (S);
5622 begin
5623 return S = E or else (Present (Subp_Alias) and then Subp_Alias = E);
5624 end Same_Or_Aliased_Subprograms;
5626 -- Local variables
5628 Loc : constant Source_Ptr := Sloc (N);
5629 Subp : constant Node_Id := Name (N);
5630 Body_Id : Entity_Id;
5631 I : Interp_Index;
5632 It : Interp;
5633 Nam : Entity_Id;
5634 Nam_Decl : Node_Id;
5635 Nam_UA : Entity_Id;
5636 Norm_OK : Boolean;
5637 Rtype : Entity_Id;
5638 Scop : Entity_Id;
5640 -- Start of processing for Resolve_Call
5642 begin
5643 -- The context imposes a unique interpretation with type Typ on a
5644 -- procedure or function call. Find the entity of the subprogram that
5645 -- yields the expected type, and propagate the corresponding formal
5646 -- constraints on the actuals. The caller has established that an
5647 -- interpretation exists, and emitted an error if not unique.
5649 -- First deal with the case of a call to an access-to-subprogram,
5650 -- dereference made explicit in Analyze_Call.
5652 if Ekind (Etype (Subp)) = E_Subprogram_Type then
5653 if not Is_Overloaded (Subp) then
5654 Nam := Etype (Subp);
5656 else
5657 -- Find the interpretation whose type (a subprogram type) has a
5658 -- return type that is compatible with the context. Analysis of
5659 -- the node has established that one exists.
5661 Nam := Empty;
5663 Get_First_Interp (Subp, I, It);
5664 while Present (It.Typ) loop
5665 if Covers (Typ, Etype (It.Typ)) then
5666 Nam := It.Typ;
5667 exit;
5668 end if;
5670 Get_Next_Interp (I, It);
5671 end loop;
5673 if No (Nam) then
5674 raise Program_Error;
5675 end if;
5676 end if;
5678 -- If the prefix is not an entity, then resolve it
5680 if not Is_Entity_Name (Subp) then
5681 Resolve (Subp, Nam);
5682 end if;
5684 -- For an indirect call, we always invalidate checks, since we do not
5685 -- know whether the subprogram is local or global. Yes we could do
5686 -- better here, e.g. by knowing that there are no local subprograms,
5687 -- but it does not seem worth the effort. Similarly, we kill all
5688 -- knowledge of current constant values.
5690 Kill_Current_Values;
5692 -- If this is a procedure call which is really an entry call, do
5693 -- the conversion of the procedure call to an entry call. Protected
5694 -- operations use the same circuitry because the name in the call
5695 -- can be an arbitrary expression with special resolution rules.
5697 elsif Nkind_In (Subp, N_Selected_Component, N_Indexed_Component)
5698 or else (Is_Entity_Name (Subp)
5699 and then Ekind (Entity (Subp)) = E_Entry)
5700 then
5701 Resolve_Entry_Call (N, Typ);
5702 Check_Elab_Call (N);
5704 -- Kill checks and constant values, as above for indirect case
5705 -- Who knows what happens when another task is activated?
5707 Kill_Current_Values;
5708 return;
5710 -- Normal subprogram call with name established in Resolve
5712 elsif not (Is_Type (Entity (Subp))) then
5713 Nam := Entity (Subp);
5714 Set_Entity_With_Checks (Subp, Nam);
5716 -- Otherwise we must have the case of an overloaded call
5718 else
5719 pragma Assert (Is_Overloaded (Subp));
5721 -- Initialize Nam to prevent warning (we know it will be assigned
5722 -- in the loop below, but the compiler does not know that).
5724 Nam := Empty;
5726 Get_First_Interp (Subp, I, It);
5727 while Present (It.Typ) loop
5728 if Covers (Typ, It.Typ) then
5729 Nam := It.Nam;
5730 Set_Entity_With_Checks (Subp, Nam);
5731 exit;
5732 end if;
5734 Get_Next_Interp (I, It);
5735 end loop;
5736 end if;
5738 if Is_Access_Subprogram_Type (Base_Type (Etype (Nam)))
5739 and then not Is_Access_Subprogram_Type (Base_Type (Typ))
5740 and then Nkind (Subp) /= N_Explicit_Dereference
5741 and then Present (Parameter_Associations (N))
5742 then
5743 -- The prefix is a parameterless function call that returns an access
5744 -- to subprogram. If parameters are present in the current call, add
5745 -- add an explicit dereference. We use the base type here because
5746 -- within an instance these may be subtypes.
5748 -- The dereference is added either in Analyze_Call or here. Should
5749 -- be consolidated ???
5751 Set_Is_Overloaded (Subp, False);
5752 Set_Etype (Subp, Etype (Nam));
5753 Insert_Explicit_Dereference (Subp);
5754 Nam := Designated_Type (Etype (Nam));
5755 Resolve (Subp, Nam);
5756 end if;
5758 -- Check that a call to Current_Task does not occur in an entry body
5760 if Is_RTE (Nam, RE_Current_Task) then
5761 declare
5762 P : Node_Id;
5764 begin
5765 P := N;
5766 loop
5767 P := Parent (P);
5769 -- Exclude calls that occur within the default of a formal
5770 -- parameter of the entry, since those are evaluated outside
5771 -- of the body.
5773 exit when No (P) or else Nkind (P) = N_Parameter_Specification;
5775 if Nkind (P) = N_Entry_Body
5776 or else (Nkind (P) = N_Subprogram_Body
5777 and then Is_Entry_Barrier_Function (P))
5778 then
5779 Rtype := Etype (N);
5780 Error_Msg_Warn := SPARK_Mode /= On;
5781 Error_Msg_NE
5782 ("& should not be used in entry body (RM C.7(17))<<",
5783 N, Nam);
5784 Error_Msg_NE ("\Program_Error [<<", N, Nam);
5785 Rewrite (N,
5786 Make_Raise_Program_Error (Loc,
5787 Reason => PE_Current_Task_In_Entry_Body));
5788 Set_Etype (N, Rtype);
5789 return;
5790 end if;
5791 end loop;
5792 end;
5793 end if;
5795 -- Check that a procedure call does not occur in the context of the
5796 -- entry call statement of a conditional or timed entry call. Note that
5797 -- the case of a call to a subprogram renaming of an entry will also be
5798 -- rejected. The test for N not being an N_Entry_Call_Statement is
5799 -- defensive, covering the possibility that the processing of entry
5800 -- calls might reach this point due to later modifications of the code
5801 -- above.
5803 if Nkind (Parent (N)) = N_Entry_Call_Alternative
5804 and then Nkind (N) /= N_Entry_Call_Statement
5805 and then Entry_Call_Statement (Parent (N)) = N
5806 then
5807 if Ada_Version < Ada_2005 then
5808 Error_Msg_N ("entry call required in select statement", N);
5810 -- Ada 2005 (AI-345): If a procedure_call_statement is used
5811 -- for a procedure_or_entry_call, the procedure_name or
5812 -- procedure_prefix of the procedure_call_statement shall denote
5813 -- an entry renamed by a procedure, or (a view of) a primitive
5814 -- subprogram of a limited interface whose first parameter is
5815 -- a controlling parameter.
5817 elsif Nkind (N) = N_Procedure_Call_Statement
5818 and then not Is_Renamed_Entry (Nam)
5819 and then not Is_Controlling_Limited_Procedure (Nam)
5820 then
5821 Error_Msg_N
5822 ("entry call or dispatching primitive of interface required", N);
5823 end if;
5824 end if;
5826 -- If the SPARK_05 restriction is active, we are not allowed
5827 -- to have a call to a subprogram before we see its completion.
5829 if not Has_Completion (Nam)
5830 and then Restriction_Check_Required (SPARK_05)
5832 -- Don't flag strange internal calls
5834 and then Comes_From_Source (N)
5835 and then Comes_From_Source (Nam)
5837 -- Only flag calls in extended main source
5839 and then In_Extended_Main_Source_Unit (Nam)
5840 and then In_Extended_Main_Source_Unit (N)
5842 -- Exclude enumeration literals from this processing
5844 and then Ekind (Nam) /= E_Enumeration_Literal
5845 then
5846 Check_SPARK_05_Restriction
5847 ("call to subprogram cannot appear before its body", N);
5848 end if;
5850 -- Check that this is not a call to a protected procedure or entry from
5851 -- within a protected function.
5853 Check_Internal_Protected_Use (N, Nam);
5855 -- Freeze the subprogram name if not in a spec-expression. Note that
5856 -- we freeze procedure calls as well as function calls. Procedure calls
5857 -- are not frozen according to the rules (RM 13.14(14)) because it is
5858 -- impossible to have a procedure call to a non-frozen procedure in
5859 -- pure Ada, but in the code that we generate in the expander, this
5860 -- rule needs extending because we can generate procedure calls that
5861 -- need freezing.
5863 -- In Ada 2012, expression functions may be called within pre/post
5864 -- conditions of subsequent functions or expression functions. Such
5865 -- calls do not freeze when they appear within generated bodies,
5866 -- (including the body of another expression function) which would
5867 -- place the freeze node in the wrong scope. An expression function
5868 -- is frozen in the usual fashion, by the appearance of a real body,
5869 -- or at the end of a declarative part.
5871 if Is_Entity_Name (Subp) and then not In_Spec_Expression
5872 and then not Is_Expression_Function (Current_Scope)
5873 and then
5874 (not Is_Expression_Function (Entity (Subp))
5875 or else Scope (Entity (Subp)) = Current_Scope)
5876 then
5877 Freeze_Expression (Subp);
5878 end if;
5880 -- For a predefined operator, the type of the result is the type imposed
5881 -- by context, except for a predefined operation on universal fixed.
5882 -- Otherwise The type of the call is the type returned by the subprogram
5883 -- being called.
5885 if Is_Predefined_Op (Nam) then
5886 if Etype (N) /= Universal_Fixed then
5887 Set_Etype (N, Typ);
5888 end if;
5890 -- If the subprogram returns an array type, and the context requires the
5891 -- component type of that array type, the node is really an indexing of
5892 -- the parameterless call. Resolve as such. A pathological case occurs
5893 -- when the type of the component is an access to the array type. In
5894 -- this case the call is truly ambiguous.
5896 elsif (Needs_No_Actuals (Nam) or else Needs_One_Actual (Nam))
5897 and then
5898 ((Is_Array_Type (Etype (Nam))
5899 and then Covers (Typ, Component_Type (Etype (Nam))))
5900 or else
5901 (Is_Access_Type (Etype (Nam))
5902 and then Is_Array_Type (Designated_Type (Etype (Nam)))
5903 and then
5904 Covers (Typ, Component_Type (Designated_Type (Etype (Nam))))))
5905 then
5906 declare
5907 Index_Node : Node_Id;
5908 New_Subp : Node_Id;
5909 Ret_Type : constant Entity_Id := Etype (Nam);
5911 begin
5912 if Is_Access_Type (Ret_Type)
5913 and then Ret_Type = Component_Type (Designated_Type (Ret_Type))
5914 then
5915 Error_Msg_N
5916 ("cannot disambiguate function call and indexing", N);
5917 else
5918 New_Subp := Relocate_Node (Subp);
5920 -- The called entity may be an explicit dereference, in which
5921 -- case there is no entity to set.
5923 if Nkind (New_Subp) /= N_Explicit_Dereference then
5924 Set_Entity (Subp, Nam);
5925 end if;
5927 if (Is_Array_Type (Ret_Type)
5928 and then Component_Type (Ret_Type) /= Any_Type)
5929 or else
5930 (Is_Access_Type (Ret_Type)
5931 and then
5932 Component_Type (Designated_Type (Ret_Type)) /= Any_Type)
5933 then
5934 if Needs_No_Actuals (Nam) then
5936 -- Indexed call to a parameterless function
5938 Index_Node :=
5939 Make_Indexed_Component (Loc,
5940 Prefix =>
5941 Make_Function_Call (Loc, Name => New_Subp),
5942 Expressions => Parameter_Associations (N));
5943 else
5944 -- An Ada 2005 prefixed call to a primitive operation
5945 -- whose first parameter is the prefix. This prefix was
5946 -- prepended to the parameter list, which is actually a
5947 -- list of indexes. Remove the prefix in order to build
5948 -- the proper indexed component.
5950 Index_Node :=
5951 Make_Indexed_Component (Loc,
5952 Prefix =>
5953 Make_Function_Call (Loc,
5954 Name => New_Subp,
5955 Parameter_Associations =>
5956 New_List
5957 (Remove_Head (Parameter_Associations (N)))),
5958 Expressions => Parameter_Associations (N));
5959 end if;
5961 -- Preserve the parenthesis count of the node
5963 Set_Paren_Count (Index_Node, Paren_Count (N));
5965 -- Since we are correcting a node classification error made
5966 -- by the parser, we call Replace rather than Rewrite.
5968 Replace (N, Index_Node);
5970 Set_Etype (Prefix (N), Ret_Type);
5971 Set_Etype (N, Typ);
5972 Resolve_Indexed_Component (N, Typ);
5973 Check_Elab_Call (Prefix (N));
5974 end if;
5975 end if;
5977 return;
5978 end;
5980 else
5981 Set_Etype (N, Etype (Nam));
5982 end if;
5984 -- In the case where the call is to an overloaded subprogram, Analyze
5985 -- calls Normalize_Actuals once per overloaded subprogram. Therefore in
5986 -- such a case Normalize_Actuals needs to be called once more to order
5987 -- the actuals correctly. Otherwise the call will have the ordering
5988 -- given by the last overloaded subprogram whether this is the correct
5989 -- one being called or not.
5991 if Is_Overloaded (Subp) then
5992 Normalize_Actuals (N, Nam, False, Norm_OK);
5993 pragma Assert (Norm_OK);
5994 end if;
5996 -- In any case, call is fully resolved now. Reset Overload flag, to
5997 -- prevent subsequent overload resolution if node is analyzed again
5999 Set_Is_Overloaded (Subp, False);
6000 Set_Is_Overloaded (N, False);
6002 -- A Ghost entity must appear in a specific context
6004 if Is_Ghost_Entity (Nam) and then Comes_From_Source (N) then
6005 Check_Ghost_Context (Nam, N);
6006 end if;
6008 -- If we are calling the current subprogram from immediately within its
6009 -- body, then that is the case where we can sometimes detect cases of
6010 -- infinite recursion statically. Do not try this in case restriction
6011 -- No_Recursion is in effect anyway, and do it only for source calls.
6013 if Comes_From_Source (N) then
6014 Scop := Current_Scope;
6016 -- Check violation of SPARK_05 restriction which does not permit
6017 -- a subprogram body to contain a call to the subprogram directly.
6019 if Restriction_Check_Required (SPARK_05)
6020 and then Same_Or_Aliased_Subprograms (Nam, Scop)
6021 then
6022 Check_SPARK_05_Restriction
6023 ("subprogram may not contain direct call to itself", N);
6024 end if;
6026 -- Issue warning for possible infinite recursion in the absence
6027 -- of the No_Recursion restriction.
6029 if Same_Or_Aliased_Subprograms (Nam, Scop)
6030 and then not Restriction_Active (No_Recursion)
6031 and then Check_Infinite_Recursion (N)
6032 then
6033 -- Here we detected and flagged an infinite recursion, so we do
6034 -- not need to test the case below for further warnings. Also we
6035 -- are all done if we now have a raise SE node.
6037 if Nkind (N) = N_Raise_Storage_Error then
6038 return;
6039 end if;
6041 -- If call is to immediately containing subprogram, then check for
6042 -- the case of a possible run-time detectable infinite recursion.
6044 else
6045 Scope_Loop : while Scop /= Standard_Standard loop
6046 if Same_Or_Aliased_Subprograms (Nam, Scop) then
6048 -- Although in general case, recursion is not statically
6049 -- checkable, the case of calling an immediately containing
6050 -- subprogram is easy to catch.
6052 Check_Restriction (No_Recursion, N);
6054 -- If the recursive call is to a parameterless subprogram,
6055 -- then even if we can't statically detect infinite
6056 -- recursion, this is pretty suspicious, and we output a
6057 -- warning. Furthermore, we will try later to detect some
6058 -- cases here at run time by expanding checking code (see
6059 -- Detect_Infinite_Recursion in package Exp_Ch6).
6061 -- If the recursive call is within a handler, do not emit a
6062 -- warning, because this is a common idiom: loop until input
6063 -- is correct, catch illegal input in handler and restart.
6065 if No (First_Formal (Nam))
6066 and then Etype (Nam) = Standard_Void_Type
6067 and then not Error_Posted (N)
6068 and then Nkind (Parent (N)) /= N_Exception_Handler
6069 then
6070 -- For the case of a procedure call. We give the message
6071 -- only if the call is the first statement in a sequence
6072 -- of statements, or if all previous statements are
6073 -- simple assignments. This is simply a heuristic to
6074 -- decrease false positives, without losing too many good
6075 -- warnings. The idea is that these previous statements
6076 -- may affect global variables the procedure depends on.
6077 -- We also exclude raise statements, that may arise from
6078 -- constraint checks and are probably unrelated to the
6079 -- intended control flow.
6081 if Nkind (N) = N_Procedure_Call_Statement
6082 and then Is_List_Member (N)
6083 then
6084 declare
6085 P : Node_Id;
6086 begin
6087 P := Prev (N);
6088 while Present (P) loop
6089 if not Nkind_In (P, N_Assignment_Statement,
6090 N_Raise_Constraint_Error)
6091 then
6092 exit Scope_Loop;
6093 end if;
6095 Prev (P);
6096 end loop;
6097 end;
6098 end if;
6100 -- Do not give warning if we are in a conditional context
6102 declare
6103 K : constant Node_Kind := Nkind (Parent (N));
6104 begin
6105 if (K = N_Loop_Statement
6106 and then Present (Iteration_Scheme (Parent (N))))
6107 or else K = N_If_Statement
6108 or else K = N_Elsif_Part
6109 or else K = N_Case_Statement_Alternative
6110 then
6111 exit Scope_Loop;
6112 end if;
6113 end;
6115 -- Here warning is to be issued
6117 Set_Has_Recursive_Call (Nam);
6118 Error_Msg_Warn := SPARK_Mode /= On;
6119 Error_Msg_N ("possible infinite recursion<<!", N);
6120 Error_Msg_N ("\Storage_Error ]<<!", N);
6121 end if;
6123 exit Scope_Loop;
6124 end if;
6126 Scop := Scope (Scop);
6127 end loop Scope_Loop;
6128 end if;
6129 end if;
6131 -- Check obsolescent reference to Ada.Characters.Handling subprogram
6133 Check_Obsolescent_2005_Entity (Nam, Subp);
6135 -- If subprogram name is a predefined operator, it was given in
6136 -- functional notation. Replace call node with operator node, so
6137 -- that actuals can be resolved appropriately.
6139 if Is_Predefined_Op (Nam) or else Ekind (Nam) = E_Operator then
6140 Make_Call_Into_Operator (N, Typ, Entity (Name (N)));
6141 return;
6143 elsif Present (Alias (Nam))
6144 and then Is_Predefined_Op (Alias (Nam))
6145 then
6146 Resolve_Actuals (N, Nam);
6147 Make_Call_Into_Operator (N, Typ, Alias (Nam));
6148 return;
6149 end if;
6151 -- Create a transient scope if the resulting type requires it
6153 -- There are several notable exceptions:
6155 -- a) In init procs, the transient scope overhead is not needed, and is
6156 -- even incorrect when the call is a nested initialization call for a
6157 -- component whose expansion may generate adjust calls. However, if the
6158 -- call is some other procedure call within an initialization procedure
6159 -- (for example a call to Create_Task in the init_proc of the task
6160 -- run-time record) a transient scope must be created around this call.
6162 -- b) Enumeration literal pseudo-calls need no transient scope
6164 -- c) Intrinsic subprograms (Unchecked_Conversion and source info
6165 -- functions) do not use the secondary stack even though the return
6166 -- type may be unconstrained.
6168 -- d) Calls to a build-in-place function, since such functions may
6169 -- allocate their result directly in a target object, and cases where
6170 -- the result does get allocated in the secondary stack are checked for
6171 -- within the specialized Exp_Ch6 procedures for expanding those
6172 -- build-in-place calls.
6174 -- e) If the subprogram is marked Inline_Always, then even if it returns
6175 -- an unconstrained type the call does not require use of the secondary
6176 -- stack. However, inlining will only take place if the body to inline
6177 -- is already present. It may not be available if e.g. the subprogram is
6178 -- declared in a child instance.
6180 -- If this is an initialization call for a type whose construction
6181 -- uses the secondary stack, and it is not a nested call to initialize
6182 -- a component, we do need to create a transient scope for it. We
6183 -- check for this by traversing the type in Check_Initialization_Call.
6185 if Is_Inlined (Nam)
6186 and then Has_Pragma_Inline (Nam)
6187 and then Nkind (Unit_Declaration_Node (Nam)) = N_Subprogram_Declaration
6188 and then Present (Body_To_Inline (Unit_Declaration_Node (Nam)))
6189 then
6190 null;
6192 elsif Ekind (Nam) = E_Enumeration_Literal
6193 or else Is_Build_In_Place_Function (Nam)
6194 or else Is_Intrinsic_Subprogram (Nam)
6195 then
6196 null;
6198 elsif Expander_Active
6199 and then Is_Type (Etype (Nam))
6200 and then Requires_Transient_Scope (Etype (Nam))
6201 and then
6202 (not Within_Init_Proc
6203 or else
6204 (not Is_Init_Proc (Nam) and then Ekind (Nam) /= E_Function))
6205 then
6206 Establish_Transient_Scope (N, Sec_Stack => True);
6208 -- If the call appears within the bounds of a loop, it will
6209 -- be rewritten and reanalyzed, nothing left to do here.
6211 if Nkind (N) /= N_Function_Call then
6212 return;
6213 end if;
6215 elsif Is_Init_Proc (Nam)
6216 and then not Within_Init_Proc
6217 then
6218 Check_Initialization_Call (N, Nam);
6219 end if;
6221 -- A protected function cannot be called within the definition of the
6222 -- enclosing protected type, unless it is part of a pre/postcondition
6223 -- on another protected operation.
6225 if Is_Protected_Type (Scope (Nam))
6226 and then In_Open_Scopes (Scope (Nam))
6227 and then not Has_Completion (Scope (Nam))
6228 and then not In_Spec_Expression
6229 then
6230 Error_Msg_NE
6231 ("& cannot be called before end of protected definition", N, Nam);
6232 end if;
6234 -- Propagate interpretation to actuals, and add default expressions
6235 -- where needed.
6237 if Present (First_Formal (Nam)) then
6238 Resolve_Actuals (N, Nam);
6240 -- Overloaded literals are rewritten as function calls, for purpose of
6241 -- resolution. After resolution, we can replace the call with the
6242 -- literal itself.
6244 elsif Ekind (Nam) = E_Enumeration_Literal then
6245 Copy_Node (Subp, N);
6246 Resolve_Entity_Name (N, Typ);
6248 -- Avoid validation, since it is a static function call
6250 Generate_Reference (Nam, Subp);
6251 return;
6252 end if;
6254 -- If the subprogram is not global, then kill all saved values and
6255 -- checks. This is a bit conservative, since in many cases we could do
6256 -- better, but it is not worth the effort. Similarly, we kill constant
6257 -- values. However we do not need to do this for internal entities
6258 -- (unless they are inherited user-defined subprograms), since they
6259 -- are not in the business of molesting local values.
6261 -- If the flag Suppress_Value_Tracking_On_Calls is set, then we also
6262 -- kill all checks and values for calls to global subprograms. This
6263 -- takes care of the case where an access to a local subprogram is
6264 -- taken, and could be passed directly or indirectly and then called
6265 -- from almost any context.
6267 -- Note: we do not do this step till after resolving the actuals. That
6268 -- way we still take advantage of the current value information while
6269 -- scanning the actuals.
6271 -- We suppress killing values if we are processing the nodes associated
6272 -- with N_Freeze_Entity nodes. Otherwise the declaration of a tagged
6273 -- type kills all the values as part of analyzing the code that
6274 -- initializes the dispatch tables.
6276 if Inside_Freezing_Actions = 0
6277 and then (not Is_Library_Level_Entity (Nam)
6278 or else Suppress_Value_Tracking_On_Call
6279 (Nearest_Dynamic_Scope (Current_Scope)))
6280 and then (Comes_From_Source (Nam)
6281 or else (Present (Alias (Nam))
6282 and then Comes_From_Source (Alias (Nam))))
6283 then
6284 Kill_Current_Values;
6285 end if;
6287 -- If we are warning about unread OUT parameters, this is the place to
6288 -- set Last_Assignment for OUT and IN OUT parameters. We have to do this
6289 -- after the above call to Kill_Current_Values (since that call clears
6290 -- the Last_Assignment field of all local variables).
6292 if (Warn_On_Modified_Unread or Warn_On_All_Unread_Out_Parameters)
6293 and then Comes_From_Source (N)
6294 and then In_Extended_Main_Source_Unit (N)
6295 then
6296 declare
6297 F : Entity_Id;
6298 A : Node_Id;
6300 begin
6301 F := First_Formal (Nam);
6302 A := First_Actual (N);
6303 while Present (F) and then Present (A) loop
6304 if Ekind_In (F, E_Out_Parameter, E_In_Out_Parameter)
6305 and then Warn_On_Modified_As_Out_Parameter (F)
6306 and then Is_Entity_Name (A)
6307 and then Present (Entity (A))
6308 and then Comes_From_Source (N)
6309 and then Safe_To_Capture_Value (N, Entity (A))
6310 then
6311 Set_Last_Assignment (Entity (A), A);
6312 end if;
6314 Next_Formal (F);
6315 Next_Actual (A);
6316 end loop;
6317 end;
6318 end if;
6320 -- If the subprogram is a primitive operation, check whether or not
6321 -- it is a correct dispatching call.
6323 if Is_Overloadable (Nam)
6324 and then Is_Dispatching_Operation (Nam)
6325 then
6326 Check_Dispatching_Call (N);
6328 elsif Ekind (Nam) /= E_Subprogram_Type
6329 and then Is_Abstract_Subprogram (Nam)
6330 and then not In_Instance
6331 then
6332 Error_Msg_NE ("cannot call abstract subprogram &!", N, Nam);
6333 end if;
6335 -- If this is a dispatching call, generate the appropriate reference,
6336 -- for better source navigation in GPS.
6338 if Is_Overloadable (Nam)
6339 and then Present (Controlling_Argument (N))
6340 then
6341 Generate_Reference (Nam, Subp, 'R');
6343 -- Normal case, not a dispatching call: generate a call reference
6345 else
6346 Generate_Reference (Nam, Subp, 's');
6347 end if;
6349 if Is_Intrinsic_Subprogram (Nam) then
6350 Check_Intrinsic_Call (N);
6351 end if;
6353 -- Check for violation of restriction No_Specific_Termination_Handlers
6354 -- and warn on a potentially blocking call to Abort_Task.
6356 if Restriction_Check_Required (No_Specific_Termination_Handlers)
6357 and then (Is_RTE (Nam, RE_Set_Specific_Handler)
6358 or else
6359 Is_RTE (Nam, RE_Specific_Handler))
6360 then
6361 Check_Restriction (No_Specific_Termination_Handlers, N);
6363 elsif Is_RTE (Nam, RE_Abort_Task) then
6364 Check_Potentially_Blocking_Operation (N);
6365 end if;
6367 -- A call to Ada.Real_Time.Timing_Events.Set_Handler to set a relative
6368 -- timing event violates restriction No_Relative_Delay (AI-0211). We
6369 -- need to check the second argument to determine whether it is an
6370 -- absolute or relative timing event.
6372 if Restriction_Check_Required (No_Relative_Delay)
6373 and then Is_RTE (Nam, RE_Set_Handler)
6374 and then Is_RTE (Etype (Next_Actual (First_Actual (N))), RE_Time_Span)
6375 then
6376 Check_Restriction (No_Relative_Delay, N);
6377 end if;
6379 -- Issue an error for a call to an eliminated subprogram. This routine
6380 -- will not perform the check if the call appears within a default
6381 -- expression.
6383 Check_For_Eliminated_Subprogram (Subp, Nam);
6385 -- In formal mode, the primitive operations of a tagged type or type
6386 -- extension do not include functions that return the tagged type.
6388 if Nkind (N) = N_Function_Call
6389 and then Is_Tagged_Type (Etype (N))
6390 and then Is_Entity_Name (Name (N))
6391 and then Is_Inherited_Operation_For_Type (Entity (Name (N)), Etype (N))
6392 then
6393 Check_SPARK_05_Restriction ("function not inherited", N);
6394 end if;
6396 -- Implement rule in 12.5.1 (23.3/2): In an instance, if the actual is
6397 -- class-wide and the call dispatches on result in a context that does
6398 -- not provide a tag, the call raises Program_Error.
6400 if Nkind (N) = N_Function_Call
6401 and then In_Instance
6402 and then Is_Generic_Actual_Type (Typ)
6403 and then Is_Class_Wide_Type (Typ)
6404 and then Has_Controlling_Result (Nam)
6405 and then Nkind (Parent (N)) = N_Object_Declaration
6406 then
6407 -- Verify that none of the formals are controlling
6409 declare
6410 Call_OK : Boolean := False;
6411 F : Entity_Id;
6413 begin
6414 F := First_Formal (Nam);
6415 while Present (F) loop
6416 if Is_Controlling_Formal (F) then
6417 Call_OK := True;
6418 exit;
6419 end if;
6421 Next_Formal (F);
6422 end loop;
6424 if not Call_OK then
6425 Error_Msg_Warn := SPARK_Mode /= On;
6426 Error_Msg_N ("!cannot determine tag of result<<", N);
6427 Error_Msg_N ("\Program_Error [<<!", N);
6428 Insert_Action (N,
6429 Make_Raise_Program_Error (Sloc (N),
6430 Reason => PE_Explicit_Raise));
6431 end if;
6432 end;
6433 end if;
6435 -- Check for calling a function with OUT or IN OUT parameter when the
6436 -- calling context (us right now) is not Ada 2012, so does not allow
6437 -- OUT or IN OUT parameters in function calls.
6439 if Ada_Version < Ada_2012
6440 and then Ekind (Nam) = E_Function
6441 and then Has_Out_Or_In_Out_Parameter (Nam)
6442 then
6443 Error_Msg_NE ("& has at least one OUT or `IN OUT` parameter", N, Nam);
6444 Error_Msg_N ("\call to this function only allowed in Ada 2012", N);
6445 end if;
6447 -- Check the dimensions of the actuals in the call. For function calls,
6448 -- propagate the dimensions from the returned type to N.
6450 Analyze_Dimension_Call (N, Nam);
6452 -- All done, evaluate call and deal with elaboration issues
6454 Eval_Call (N);
6455 Check_Elab_Call (N);
6457 -- In GNATprove mode, expansion is disabled, but we want to inline some
6458 -- subprograms to facilitate formal verification. Indirect calls through
6459 -- a subprogram type or within a generic cannot be inlined. Inlining is
6460 -- performed only for calls subject to SPARK_Mode on.
6462 if GNATprove_Mode
6463 and then SPARK_Mode = On
6464 and then Is_Overloadable (Nam)
6465 and then not Inside_A_Generic
6466 then
6467 Nam_UA := Ultimate_Alias (Nam);
6468 Nam_Decl := Unit_Declaration_Node (Nam_UA);
6470 if Nkind (Nam_Decl) = N_Subprogram_Declaration then
6471 Body_Id := Corresponding_Body (Nam_Decl);
6473 -- Nothing to do if the subprogram is not eligible for inlining in
6474 -- GNATprove mode.
6476 if not Is_Inlined_Always (Nam_UA)
6477 or else not Can_Be_Inlined_In_GNATprove_Mode (Nam_UA, Body_Id)
6478 then
6479 null;
6481 -- Calls cannot be inlined inside assertions, as GNATprove treats
6482 -- assertions as logic expressions.
6484 elsif In_Assertion_Expr /= 0 then
6485 Error_Msg_NE ("?no contextual analysis of &", N, Nam);
6486 Error_Msg_N ("\call appears in assertion expression", N);
6487 Set_Is_Inlined_Always (Nam_UA, False);
6489 -- Calls cannot be inlined inside default expressions
6491 elsif In_Default_Expr then
6492 Error_Msg_NE ("?no contextual analysis of &", N, Nam);
6493 Error_Msg_N ("\call appears in default expression", N);
6494 Set_Is_Inlined_Always (Nam_UA, False);
6496 -- Inlining should not be performed during pre-analysis
6498 elsif Full_Analysis then
6500 -- With the one-pass inlining technique, a call cannot be
6501 -- inlined if the corresponding body has not been seen yet.
6503 if No (Body_Id) then
6504 Error_Msg_NE
6505 ("?no contextual analysis of & (body not seen yet)",
6506 N, Nam);
6507 Set_Is_Inlined_Always (Nam_UA, False);
6509 -- Nothing to do if there is no body to inline, indicating that
6510 -- the subprogram is not suitable for inlining in GNATprove
6511 -- mode.
6513 elsif No (Body_To_Inline (Nam_Decl)) then
6514 null;
6516 -- Calls cannot be inlined inside potentially unevaluated
6517 -- expressions, as this would create complex actions inside
6518 -- expressions, that are not handled by GNATprove.
6520 elsif Is_Potentially_Unevaluated (N) then
6521 Error_Msg_NE ("?no contextual analysis of &", N, Nam);
6522 Error_Msg_N
6523 ("\call appears in potentially unevaluated context", N);
6524 Set_Is_Inlined_Always (Nam_UA, False);
6526 -- Otherwise, inline the call
6528 else
6529 Expand_Inlined_Call (N, Nam_UA, Nam);
6530 end if;
6531 end if;
6532 end if;
6533 end if;
6535 Warn_On_Overlapping_Actuals (Nam, N);
6536 end Resolve_Call;
6538 -----------------------------
6539 -- Resolve_Case_Expression --
6540 -----------------------------
6542 procedure Resolve_Case_Expression (N : Node_Id; Typ : Entity_Id) is
6543 Alt : Node_Id;
6545 begin
6546 Alt := First (Alternatives (N));
6547 while Present (Alt) loop
6548 Resolve (Expression (Alt), Typ);
6549 Next (Alt);
6550 end loop;
6552 Set_Etype (N, Typ);
6553 Eval_Case_Expression (N);
6554 end Resolve_Case_Expression;
6556 -------------------------------
6557 -- Resolve_Character_Literal --
6558 -------------------------------
6560 procedure Resolve_Character_Literal (N : Node_Id; Typ : Entity_Id) is
6561 B_Typ : constant Entity_Id := Base_Type (Typ);
6562 C : Entity_Id;
6564 begin
6565 -- Verify that the character does belong to the type of the context
6567 Set_Etype (N, B_Typ);
6568 Eval_Character_Literal (N);
6570 -- Wide_Wide_Character literals must always be defined, since the set
6571 -- of wide wide character literals is complete, i.e. if a character
6572 -- literal is accepted by the parser, then it is OK for wide wide
6573 -- character (out of range character literals are rejected).
6575 if Root_Type (B_Typ) = Standard_Wide_Wide_Character then
6576 return;
6578 -- Always accept character literal for type Any_Character, which
6579 -- occurs in error situations and in comparisons of literals, both
6580 -- of which should accept all literals.
6582 elsif B_Typ = Any_Character then
6583 return;
6585 -- For Standard.Character or a type derived from it, check that the
6586 -- literal is in range.
6588 elsif Root_Type (B_Typ) = Standard_Character then
6589 if In_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6590 return;
6591 end if;
6593 -- For Standard.Wide_Character or a type derived from it, check that the
6594 -- literal is in range.
6596 elsif Root_Type (B_Typ) = Standard_Wide_Character then
6597 if In_Wide_Character_Range (UI_To_CC (Char_Literal_Value (N))) then
6598 return;
6599 end if;
6601 -- For Standard.Wide_Wide_Character or a type derived from it, we
6602 -- know the literal is in range, since the parser checked.
6604 elsif Root_Type (B_Typ) = Standard_Wide_Wide_Character then
6605 return;
6607 -- If the entity is already set, this has already been resolved in a
6608 -- generic context, or comes from expansion. Nothing else to do.
6610 elsif Present (Entity (N)) then
6611 return;
6613 -- Otherwise we have a user defined character type, and we can use the
6614 -- standard visibility mechanisms to locate the referenced entity.
6616 else
6617 C := Current_Entity (N);
6618 while Present (C) loop
6619 if Etype (C) = B_Typ then
6620 Set_Entity_With_Checks (N, C);
6621 Generate_Reference (C, N);
6622 return;
6623 end if;
6625 C := Homonym (C);
6626 end loop;
6627 end if;
6629 -- If we fall through, then the literal does not match any of the
6630 -- entries of the enumeration type. This isn't just a constraint error
6631 -- situation, it is an illegality (see RM 4.2).
6633 Error_Msg_NE
6634 ("character not defined for }", N, First_Subtype (B_Typ));
6635 end Resolve_Character_Literal;
6637 ---------------------------
6638 -- Resolve_Comparison_Op --
6639 ---------------------------
6641 -- Context requires a boolean type, and plays no role in resolution.
6642 -- Processing identical to that for equality operators. The result type is
6643 -- the base type, which matters when pathological subtypes of booleans with
6644 -- limited ranges are used.
6646 procedure Resolve_Comparison_Op (N : Node_Id; Typ : Entity_Id) is
6647 L : constant Node_Id := Left_Opnd (N);
6648 R : constant Node_Id := Right_Opnd (N);
6649 T : Entity_Id;
6651 begin
6652 -- If this is an intrinsic operation which is not predefined, use the
6653 -- types of its declared arguments to resolve the possibly overloaded
6654 -- operands. Otherwise the operands are unambiguous and specify the
6655 -- expected type.
6657 if Scope (Entity (N)) /= Standard_Standard then
6658 T := Etype (First_Entity (Entity (N)));
6660 else
6661 T := Find_Unique_Type (L, R);
6663 if T = Any_Fixed then
6664 T := Unique_Fixed_Point_Type (L);
6665 end if;
6666 end if;
6668 Set_Etype (N, Base_Type (Typ));
6669 Generate_Reference (T, N, ' ');
6671 -- Skip remaining processing if already set to Any_Type
6673 if T = Any_Type then
6674 return;
6675 end if;
6677 -- Deal with other error cases
6679 if T = Any_String or else
6680 T = Any_Composite or else
6681 T = Any_Character
6682 then
6683 if T = Any_Character then
6684 Ambiguous_Character (L);
6685 else
6686 Error_Msg_N ("ambiguous operands for comparison", N);
6687 end if;
6689 Set_Etype (N, Any_Type);
6690 return;
6691 end if;
6693 -- Resolve the operands if types OK
6695 Resolve (L, T);
6696 Resolve (R, T);
6697 Check_Unset_Reference (L);
6698 Check_Unset_Reference (R);
6699 Generate_Operator_Reference (N, T);
6700 Check_Low_Bound_Tested (N);
6702 -- In SPARK, ordering operators <, <=, >, >= are not defined for Boolean
6703 -- types or array types except String.
6705 if Is_Boolean_Type (T) then
6706 Check_SPARK_05_Restriction
6707 ("comparison is not defined on Boolean type", N);
6709 elsif Is_Array_Type (T)
6710 and then Base_Type (T) /= Standard_String
6711 then
6712 Check_SPARK_05_Restriction
6713 ("comparison is not defined on array types other than String", N);
6714 end if;
6716 -- Check comparison on unordered enumeration
6718 if Bad_Unordered_Enumeration_Reference (N, Etype (L)) then
6719 Error_Msg_Sloc := Sloc (Etype (L));
6720 Error_Msg_NE
6721 ("comparison on unordered enumeration type& declared#?U?",
6722 N, Etype (L));
6723 end if;
6725 -- Evaluate the relation (note we do this after the above check since
6726 -- this Eval call may change N to True/False.
6728 Analyze_Dimension (N);
6729 Eval_Relational_Op (N);
6730 end Resolve_Comparison_Op;
6732 -----------------------------------------
6733 -- Resolve_Discrete_Subtype_Indication --
6734 -----------------------------------------
6736 procedure Resolve_Discrete_Subtype_Indication
6737 (N : Node_Id;
6738 Typ : Entity_Id)
6740 R : Node_Id;
6741 S : Entity_Id;
6743 begin
6744 Analyze (Subtype_Mark (N));
6745 S := Entity (Subtype_Mark (N));
6747 if Nkind (Constraint (N)) /= N_Range_Constraint then
6748 Error_Msg_N ("expect range constraint for discrete type", N);
6749 Set_Etype (N, Any_Type);
6751 else
6752 R := Range_Expression (Constraint (N));
6754 if R = Error then
6755 return;
6756 end if;
6758 Analyze (R);
6760 if Base_Type (S) /= Base_Type (Typ) then
6761 Error_Msg_NE
6762 ("expect subtype of }", N, First_Subtype (Typ));
6764 -- Rewrite the constraint as a range of Typ
6765 -- to allow compilation to proceed further.
6767 Set_Etype (N, Typ);
6768 Rewrite (Low_Bound (R),
6769 Make_Attribute_Reference (Sloc (Low_Bound (R)),
6770 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
6771 Attribute_Name => Name_First));
6772 Rewrite (High_Bound (R),
6773 Make_Attribute_Reference (Sloc (High_Bound (R)),
6774 Prefix => New_Occurrence_Of (Typ, Sloc (R)),
6775 Attribute_Name => Name_First));
6777 else
6778 Resolve (R, Typ);
6779 Set_Etype (N, Etype (R));
6781 -- Additionally, we must check that the bounds are compatible
6782 -- with the given subtype, which might be different from the
6783 -- type of the context.
6785 Apply_Range_Check (R, S);
6787 -- ??? If the above check statically detects a Constraint_Error
6788 -- it replaces the offending bound(s) of the range R with a
6789 -- Constraint_Error node. When the itype which uses these bounds
6790 -- is frozen the resulting call to Duplicate_Subexpr generates
6791 -- a new temporary for the bounds.
6793 -- Unfortunately there are other itypes that are also made depend
6794 -- on these bounds, so when Duplicate_Subexpr is called they get
6795 -- a forward reference to the newly created temporaries and Gigi
6796 -- aborts on such forward references. This is probably sign of a
6797 -- more fundamental problem somewhere else in either the order of
6798 -- itype freezing or the way certain itypes are constructed.
6800 -- To get around this problem we call Remove_Side_Effects right
6801 -- away if either bounds of R are a Constraint_Error.
6803 declare
6804 L : constant Node_Id := Low_Bound (R);
6805 H : constant Node_Id := High_Bound (R);
6807 begin
6808 if Nkind (L) = N_Raise_Constraint_Error then
6809 Remove_Side_Effects (L);
6810 end if;
6812 if Nkind (H) = N_Raise_Constraint_Error then
6813 Remove_Side_Effects (H);
6814 end if;
6815 end;
6817 Check_Unset_Reference (Low_Bound (R));
6818 Check_Unset_Reference (High_Bound (R));
6819 end if;
6820 end if;
6821 end Resolve_Discrete_Subtype_Indication;
6823 -------------------------
6824 -- Resolve_Entity_Name --
6825 -------------------------
6827 -- Used to resolve identifiers and expanded names
6829 procedure Resolve_Entity_Name (N : Node_Id; Typ : Entity_Id) is
6830 function Appears_In_Check (Nod : Node_Id) return Boolean;
6831 -- Denote whether an arbitrary node Nod appears in a check node
6833 function Is_OK_Volatile_Context
6834 (Context : Node_Id;
6835 Obj_Ref : Node_Id) return Boolean;
6836 -- Determine whether node Context denotes a "non-interfering context"
6837 -- (as defined in SPARK RM 7.1.3(13)) where volatile reference Obj_Ref
6838 -- can safely reside.
6840 ----------------------
6841 -- Appears_In_Check --
6842 ----------------------
6844 function Appears_In_Check (Nod : Node_Id) return Boolean is
6845 Par : Node_Id;
6847 begin
6848 -- Climb the parent chain looking for a check node
6850 Par := Nod;
6851 while Present (Par) loop
6852 if Nkind (Par) in N_Raise_xxx_Error then
6853 return True;
6855 -- Prevent the search from going too far
6857 elsif Is_Body_Or_Package_Declaration (Par) then
6858 exit;
6859 end if;
6861 Par := Parent (Par);
6862 end loop;
6864 return False;
6865 end Appears_In_Check;
6867 ----------------------------
6868 -- Is_OK_Volatile_Context --
6869 ----------------------------
6871 function Is_OK_Volatile_Context
6872 (Context : Node_Id;
6873 Obj_Ref : Node_Id) return Boolean
6875 begin
6876 -- The volatile object appears on either side of an assignment
6878 if Nkind (Context) = N_Assignment_Statement then
6879 return True;
6881 -- The volatile object is part of the initialization expression of
6882 -- another object. Ensure that the climb of the parent chain came
6883 -- from the expression side and not from the name side.
6885 elsif Nkind (Context) = N_Object_Declaration
6886 and then Present (Expression (Context))
6887 and then Expression (Context) = Obj_Ref
6888 then
6889 return True;
6891 -- The volatile object appears as an actual parameter in a call to an
6892 -- instance of Unchecked_Conversion whose result is renamed.
6894 elsif Nkind (Context) = N_Function_Call
6895 and then Is_Unchecked_Conversion_Instance (Entity (Name (Context)))
6896 and then Nkind (Parent (Context)) = N_Object_Renaming_Declaration
6897 then
6898 return True;
6900 -- The volatile object appears as the prefix of a name occurring
6901 -- in a non-interfering context.
6903 elsif Nkind_In (Context, N_Attribute_Reference,
6904 N_Indexed_Component,
6905 N_Selected_Component,
6906 N_Slice)
6907 and then Prefix (Context) = Obj_Ref
6908 and then Is_OK_Volatile_Context
6909 (Context => Parent (Context),
6910 Obj_Ref => Context)
6911 then
6912 return True;
6914 -- The volatile object appears as the expression of a type conversion
6915 -- occurring in a non-interfering context.
6917 elsif Nkind_In (Context, N_Type_Conversion,
6918 N_Unchecked_Type_Conversion)
6919 and then Expression (Context) = Obj_Ref
6920 and then Is_OK_Volatile_Context
6921 (Context => Parent (Context),
6922 Obj_Ref => Context)
6923 then
6924 return True;
6926 -- Allow references to volatile objects in various checks. This is
6927 -- not a direct SPARK 2014 requirement.
6929 elsif Appears_In_Check (Context) then
6930 return True;
6932 else
6933 return False;
6934 end if;
6935 end Is_OK_Volatile_Context;
6937 -- Local variables
6939 E : constant Entity_Id := Entity (N);
6940 Par : Node_Id;
6942 -- Start of processing for Resolve_Entity_Name
6944 begin
6945 -- If garbage from errors, set to Any_Type and return
6947 if No (E) and then Total_Errors_Detected /= 0 then
6948 Set_Etype (N, Any_Type);
6949 return;
6950 end if;
6952 -- Replace named numbers by corresponding literals. Note that this is
6953 -- the one case where Resolve_Entity_Name must reset the Etype, since
6954 -- it is currently marked as universal.
6956 if Ekind (E) = E_Named_Integer then
6957 Set_Etype (N, Typ);
6958 Eval_Named_Integer (N);
6960 elsif Ekind (E) = E_Named_Real then
6961 Set_Etype (N, Typ);
6962 Eval_Named_Real (N);
6964 -- For enumeration literals, we need to make sure that a proper style
6965 -- check is done, since such literals are overloaded, and thus we did
6966 -- not do a style check during the first phase of analysis.
6968 elsif Ekind (E) = E_Enumeration_Literal then
6969 Set_Entity_With_Checks (N, E);
6970 Eval_Entity_Name (N);
6972 -- Case of subtype name appearing as an operand in expression
6974 elsif Is_Type (E) then
6976 -- Allow use of subtype if it is a concurrent type where we are
6977 -- currently inside the body. This will eventually be expanded into a
6978 -- call to Self (for tasks) or _object (for protected objects). Any
6979 -- other use of a subtype is invalid.
6981 if Is_Concurrent_Type (E)
6982 and then In_Open_Scopes (E)
6983 then
6984 null;
6986 -- Any other use is an error
6988 else
6989 Error_Msg_N
6990 ("invalid use of subtype mark in expression or call", N);
6991 end if;
6993 -- Check discriminant use if entity is discriminant in current scope,
6994 -- i.e. discriminant of record or concurrent type currently being
6995 -- analyzed. Uses in corresponding body are unrestricted.
6997 elsif Ekind (E) = E_Discriminant
6998 and then Scope (E) = Current_Scope
6999 and then not Has_Completion (Current_Scope)
7000 then
7001 Check_Discriminant_Use (N);
7003 -- A parameterless generic function cannot appear in a context that
7004 -- requires resolution.
7006 elsif Ekind (E) = E_Generic_Function then
7007 Error_Msg_N ("illegal use of generic function", N);
7009 elsif Ekind (E) = E_Out_Parameter
7010 and then Ada_Version = Ada_83
7011 and then (Nkind (Parent (N)) in N_Op
7012 or else (Nkind (Parent (N)) = N_Assignment_Statement
7013 and then N = Expression (Parent (N)))
7014 or else Nkind (Parent (N)) = N_Explicit_Dereference)
7015 then
7016 Error_Msg_N ("(Ada 83) illegal reading of out parameter", N);
7018 -- In all other cases, just do the possible static evaluation
7020 else
7021 -- A deferred constant that appears in an expression must have a
7022 -- completion, unless it has been removed by in-place expansion of
7023 -- an aggregate.
7025 if Ekind (E) = E_Constant
7026 and then Comes_From_Source (E)
7027 and then No (Constant_Value (E))
7028 and then Is_Frozen (Etype (E))
7029 and then not In_Spec_Expression
7030 and then not Is_Imported (E)
7031 then
7032 if No_Initialization (Parent (E))
7033 or else (Present (Full_View (E))
7034 and then No_Initialization (Parent (Full_View (E))))
7035 then
7036 null;
7037 else
7038 Error_Msg_N (
7039 "deferred constant is frozen before completion", N);
7040 end if;
7041 end if;
7043 Eval_Entity_Name (N);
7044 end if;
7046 Par := Parent (N);
7048 -- When the entity appears in a parameter association, retrieve the
7049 -- related subprogram call.
7051 if Nkind (Par) = N_Parameter_Association then
7052 Par := Parent (Par);
7053 end if;
7055 -- The following checks are only relevant when SPARK_Mode is on as they
7056 -- are not standard Ada legality rules.
7058 if SPARK_Mode = On then
7060 -- An effectively volatile object subject to enabled properties
7061 -- Async_Writers or Effective_Reads must appear in a specific
7062 -- context.
7064 if Is_Object (E)
7065 and then Is_Effectively_Volatile (E)
7066 and then
7067 (Async_Writers_Enabled (E) or else Effective_Reads_Enabled (E))
7068 and then Comes_From_Source (N)
7069 then
7070 -- The effectively volatile objects appears in a "non-interfering
7071 -- context" as defined in SPARK RM 7.1.3(13).
7073 if Is_OK_Volatile_Context (Par, N) then
7074 null;
7076 -- Assume that references to effectively volatile objects that
7077 -- appear as actual parameters in a procedure call are always
7078 -- legal. A full legality check is done when the actuals are
7079 -- resolved.
7081 elsif Nkind (Par) = N_Procedure_Call_Statement then
7082 null;
7084 -- Otherwise the context causes a side effect with respect to the
7085 -- effectively volatile object.
7087 else
7088 SPARK_Msg_N
7089 ("volatile object cannot appear in this context "
7090 & "(SPARK RM 7.1.3(13))", N);
7091 end if;
7093 -- A Ghost entity must appear in a specific context
7095 elsif Is_Ghost_Entity (E) and then Comes_From_Source (N) then
7096 Check_Ghost_Context (E, N);
7097 end if;
7098 end if;
7099 end Resolve_Entity_Name;
7101 -------------------
7102 -- Resolve_Entry --
7103 -------------------
7105 procedure Resolve_Entry (Entry_Name : Node_Id) is
7106 Loc : constant Source_Ptr := Sloc (Entry_Name);
7107 Nam : Entity_Id;
7108 New_N : Node_Id;
7109 S : Entity_Id;
7110 Tsk : Entity_Id;
7111 E_Name : Node_Id;
7112 Index : Node_Id;
7114 function Actual_Index_Type (E : Entity_Id) return Entity_Id;
7115 -- If the bounds of the entry family being called depend on task
7116 -- discriminants, build a new index subtype where a discriminant is
7117 -- replaced with the value of the discriminant of the target task.
7118 -- The target task is the prefix of the entry name in the call.
7120 -----------------------
7121 -- Actual_Index_Type --
7122 -----------------------
7124 function Actual_Index_Type (E : Entity_Id) return Entity_Id is
7125 Typ : constant Entity_Id := Entry_Index_Type (E);
7126 Tsk : constant Entity_Id := Scope (E);
7127 Lo : constant Node_Id := Type_Low_Bound (Typ);
7128 Hi : constant Node_Id := Type_High_Bound (Typ);
7129 New_T : Entity_Id;
7131 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id;
7132 -- If the bound is given by a discriminant, replace with a reference
7133 -- to the discriminant of the same name in the target task. If the
7134 -- entry name is the target of a requeue statement and the entry is
7135 -- in the current protected object, the bound to be used is the
7136 -- discriminal of the object (see Apply_Range_Checks for details of
7137 -- the transformation).
7139 -----------------------------
7140 -- Actual_Discriminant_Ref --
7141 -----------------------------
7143 function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id is
7144 Typ : constant Entity_Id := Etype (Bound);
7145 Ref : Node_Id;
7147 begin
7148 Remove_Side_Effects (Bound);
7150 if not Is_Entity_Name (Bound)
7151 or else Ekind (Entity (Bound)) /= E_Discriminant
7152 then
7153 return Bound;
7155 elsif Is_Protected_Type (Tsk)
7156 and then In_Open_Scopes (Tsk)
7157 and then Nkind (Parent (Entry_Name)) = N_Requeue_Statement
7158 then
7159 -- Note: here Bound denotes a discriminant of the corresponding
7160 -- record type tskV, whose discriminal is a formal of the
7161 -- init-proc tskVIP. What we want is the body discriminal,
7162 -- which is associated to the discriminant of the original
7163 -- concurrent type tsk.
7165 return New_Occurrence_Of
7166 (Find_Body_Discriminal (Entity (Bound)), Loc);
7168 else
7169 Ref :=
7170 Make_Selected_Component (Loc,
7171 Prefix => New_Copy_Tree (Prefix (Prefix (Entry_Name))),
7172 Selector_Name => New_Occurrence_Of (Entity (Bound), Loc));
7173 Analyze (Ref);
7174 Resolve (Ref, Typ);
7175 return Ref;
7176 end if;
7177 end Actual_Discriminant_Ref;
7179 -- Start of processing for Actual_Index_Type
7181 begin
7182 if not Has_Discriminants (Tsk)
7183 or else (not Is_Entity_Name (Lo) and then not Is_Entity_Name (Hi))
7184 then
7185 return Entry_Index_Type (E);
7187 else
7188 New_T := Create_Itype (Ekind (Typ), Parent (Entry_Name));
7189 Set_Etype (New_T, Base_Type (Typ));
7190 Set_Size_Info (New_T, Typ);
7191 Set_RM_Size (New_T, RM_Size (Typ));
7192 Set_Scalar_Range (New_T,
7193 Make_Range (Sloc (Entry_Name),
7194 Low_Bound => Actual_Discriminant_Ref (Lo),
7195 High_Bound => Actual_Discriminant_Ref (Hi)));
7197 return New_T;
7198 end if;
7199 end Actual_Index_Type;
7201 -- Start of processing of Resolve_Entry
7203 begin
7204 -- Find name of entry being called, and resolve prefix of name with its
7205 -- own type. The prefix can be overloaded, and the name and signature of
7206 -- the entry must be taken into account.
7208 if Nkind (Entry_Name) = N_Indexed_Component then
7210 -- Case of dealing with entry family within the current tasks
7212 E_Name := Prefix (Entry_Name);
7214 else
7215 E_Name := Entry_Name;
7216 end if;
7218 if Is_Entity_Name (E_Name) then
7220 -- Entry call to an entry (or entry family) in the current task. This
7221 -- is legal even though the task will deadlock. Rewrite as call to
7222 -- current task.
7224 -- This can also be a call to an entry in an enclosing task. If this
7225 -- is a single task, we have to retrieve its name, because the scope
7226 -- of the entry is the task type, not the object. If the enclosing
7227 -- task is a task type, the identity of the task is given by its own
7228 -- self variable.
7230 -- Finally this can be a requeue on an entry of the same task or
7231 -- protected object.
7233 S := Scope (Entity (E_Name));
7235 for J in reverse 0 .. Scope_Stack.Last loop
7236 if Is_Task_Type (Scope_Stack.Table (J).Entity)
7237 and then not Comes_From_Source (S)
7238 then
7239 -- S is an enclosing task or protected object. The concurrent
7240 -- declaration has been converted into a type declaration, and
7241 -- the object itself has an object declaration that follows
7242 -- the type in the same declarative part.
7244 Tsk := Next_Entity (S);
7245 while Etype (Tsk) /= S loop
7246 Next_Entity (Tsk);
7247 end loop;
7249 S := Tsk;
7250 exit;
7252 elsif S = Scope_Stack.Table (J).Entity then
7254 -- Call to current task. Will be transformed into call to Self
7256 exit;
7258 end if;
7259 end loop;
7261 New_N :=
7262 Make_Selected_Component (Loc,
7263 Prefix => New_Occurrence_Of (S, Loc),
7264 Selector_Name =>
7265 New_Occurrence_Of (Entity (E_Name), Loc));
7266 Rewrite (E_Name, New_N);
7267 Analyze (E_Name);
7269 elsif Nkind (Entry_Name) = N_Selected_Component
7270 and then Is_Overloaded (Prefix (Entry_Name))
7271 then
7272 -- Use the entry name (which must be unique at this point) to find
7273 -- the prefix that returns the corresponding task/protected type.
7275 declare
7276 Pref : constant Node_Id := Prefix (Entry_Name);
7277 Ent : constant Entity_Id := Entity (Selector_Name (Entry_Name));
7278 I : Interp_Index;
7279 It : Interp;
7281 begin
7282 Get_First_Interp (Pref, I, It);
7283 while Present (It.Typ) loop
7284 if Scope (Ent) = It.Typ then
7285 Set_Etype (Pref, It.Typ);
7286 exit;
7287 end if;
7289 Get_Next_Interp (I, It);
7290 end loop;
7291 end;
7292 end if;
7294 if Nkind (Entry_Name) = N_Selected_Component then
7295 Resolve (Prefix (Entry_Name));
7297 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7298 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7299 Resolve (Prefix (Prefix (Entry_Name)));
7300 Index := First (Expressions (Entry_Name));
7301 Resolve (Index, Entry_Index_Type (Nam));
7303 -- Up to this point the expression could have been the actual in a
7304 -- simple entry call, and be given by a named association.
7306 if Nkind (Index) = N_Parameter_Association then
7307 Error_Msg_N ("expect expression for entry index", Index);
7308 else
7309 Apply_Range_Check (Index, Actual_Index_Type (Nam));
7310 end if;
7311 end if;
7312 end Resolve_Entry;
7314 ------------------------
7315 -- Resolve_Entry_Call --
7316 ------------------------
7318 procedure Resolve_Entry_Call (N : Node_Id; Typ : Entity_Id) is
7319 Entry_Name : constant Node_Id := Name (N);
7320 Loc : constant Source_Ptr := Sloc (Entry_Name);
7321 Actuals : List_Id;
7322 First_Named : Node_Id;
7323 Nam : Entity_Id;
7324 Norm_OK : Boolean;
7325 Obj : Node_Id;
7326 Was_Over : Boolean;
7328 begin
7329 -- We kill all checks here, because it does not seem worth the effort to
7330 -- do anything better, an entry call is a big operation.
7332 Kill_All_Checks;
7334 -- Processing of the name is similar for entry calls and protected
7335 -- operation calls. Once the entity is determined, we can complete
7336 -- the resolution of the actuals.
7338 -- The selector may be overloaded, in the case of a protected object
7339 -- with overloaded functions. The type of the context is used for
7340 -- resolution.
7342 if Nkind (Entry_Name) = N_Selected_Component
7343 and then Is_Overloaded (Selector_Name (Entry_Name))
7344 and then Typ /= Standard_Void_Type
7345 then
7346 declare
7347 I : Interp_Index;
7348 It : Interp;
7350 begin
7351 Get_First_Interp (Selector_Name (Entry_Name), I, It);
7352 while Present (It.Typ) loop
7353 if Covers (Typ, It.Typ) then
7354 Set_Entity (Selector_Name (Entry_Name), It.Nam);
7355 Set_Etype (Entry_Name, It.Typ);
7357 Generate_Reference (It.Typ, N, ' ');
7358 end if;
7360 Get_Next_Interp (I, It);
7361 end loop;
7362 end;
7363 end if;
7365 Resolve_Entry (Entry_Name);
7367 if Nkind (Entry_Name) = N_Selected_Component then
7369 -- Simple entry call
7371 Nam := Entity (Selector_Name (Entry_Name));
7372 Obj := Prefix (Entry_Name);
7373 Was_Over := Is_Overloaded (Selector_Name (Entry_Name));
7375 else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
7377 -- Call to member of entry family
7379 Nam := Entity (Selector_Name (Prefix (Entry_Name)));
7380 Obj := Prefix (Prefix (Entry_Name));
7381 Was_Over := Is_Overloaded (Selector_Name (Prefix (Entry_Name)));
7382 end if;
7384 -- We cannot in general check the maximum depth of protected entry calls
7385 -- at compile time. But we can tell that any protected entry call at all
7386 -- violates a specified nesting depth of zero.
7388 if Is_Protected_Type (Scope (Nam)) then
7389 Check_Restriction (Max_Entry_Queue_Length, N);
7390 end if;
7392 -- Use context type to disambiguate a protected function that can be
7393 -- called without actuals and that returns an array type, and where the
7394 -- argument list may be an indexing of the returned value.
7396 if Ekind (Nam) = E_Function
7397 and then Needs_No_Actuals (Nam)
7398 and then Present (Parameter_Associations (N))
7399 and then
7400 ((Is_Array_Type (Etype (Nam))
7401 and then Covers (Typ, Component_Type (Etype (Nam))))
7403 or else (Is_Access_Type (Etype (Nam))
7404 and then Is_Array_Type (Designated_Type (Etype (Nam)))
7405 and then
7406 Covers
7407 (Typ,
7408 Component_Type (Designated_Type (Etype (Nam))))))
7409 then
7410 declare
7411 Index_Node : Node_Id;
7413 begin
7414 Index_Node :=
7415 Make_Indexed_Component (Loc,
7416 Prefix =>
7417 Make_Function_Call (Loc, Name => Relocate_Node (Entry_Name)),
7418 Expressions => Parameter_Associations (N));
7420 -- Since we are correcting a node classification error made by the
7421 -- parser, we call Replace rather than Rewrite.
7423 Replace (N, Index_Node);
7424 Set_Etype (Prefix (N), Etype (Nam));
7425 Set_Etype (N, Typ);
7426 Resolve_Indexed_Component (N, Typ);
7427 return;
7428 end;
7429 end if;
7431 if Ekind_In (Nam, E_Entry, E_Entry_Family)
7432 and then Present (PPC_Wrapper (Nam))
7433 and then Current_Scope /= PPC_Wrapper (Nam)
7434 then
7435 -- Rewrite as call to the precondition wrapper, adding the task
7436 -- object to the list of actuals. If the call is to a member of an
7437 -- entry family, include the index as well.
7439 declare
7440 New_Call : Node_Id;
7441 New_Actuals : List_Id;
7443 begin
7444 New_Actuals := New_List (Obj);
7446 if Nkind (Entry_Name) = N_Indexed_Component then
7447 Append_To (New_Actuals,
7448 New_Copy_Tree (First (Expressions (Entry_Name))));
7449 end if;
7451 Append_List (Parameter_Associations (N), New_Actuals);
7452 New_Call :=
7453 Make_Procedure_Call_Statement (Loc,
7454 Name =>
7455 New_Occurrence_Of (PPC_Wrapper (Nam), Loc),
7456 Parameter_Associations => New_Actuals);
7457 Rewrite (N, New_Call);
7459 -- Preanalyze and resolve new call. Current procedure is called
7460 -- from Resolve_Call, after which expansion will take place.
7462 Preanalyze_And_Resolve (N);
7463 return;
7464 end;
7465 end if;
7467 -- The operation name may have been overloaded. Order the actuals
7468 -- according to the formals of the resolved entity, and set the return
7469 -- type to that of the operation.
7471 if Was_Over then
7472 Normalize_Actuals (N, Nam, False, Norm_OK);
7473 pragma Assert (Norm_OK);
7474 Set_Etype (N, Etype (Nam));
7475 end if;
7477 Resolve_Actuals (N, Nam);
7478 Check_Internal_Protected_Use (N, Nam);
7480 -- Create a call reference to the entry
7482 Generate_Reference (Nam, Entry_Name, 's');
7484 if Ekind_In (Nam, E_Entry, E_Entry_Family) then
7485 Check_Potentially_Blocking_Operation (N);
7486 end if;
7488 -- Verify that a procedure call cannot masquerade as an entry
7489 -- call where an entry call is expected.
7491 if Ekind (Nam) = E_Procedure then
7492 if Nkind (Parent (N)) = N_Entry_Call_Alternative
7493 and then N = Entry_Call_Statement (Parent (N))
7494 then
7495 Error_Msg_N ("entry call required in select statement", N);
7497 elsif Nkind (Parent (N)) = N_Triggering_Alternative
7498 and then N = Triggering_Statement (Parent (N))
7499 then
7500 Error_Msg_N ("triggering statement cannot be procedure call", N);
7502 elsif Ekind (Scope (Nam)) = E_Task_Type
7503 and then not In_Open_Scopes (Scope (Nam))
7504 then
7505 Error_Msg_N ("task has no entry with this name", Entry_Name);
7506 end if;
7507 end if;
7509 -- After resolution, entry calls and protected procedure calls are
7510 -- changed into entry calls, for expansion. The structure of the node
7511 -- does not change, so it can safely be done in place. Protected
7512 -- function calls must keep their structure because they are
7513 -- subexpressions.
7515 if Ekind (Nam) /= E_Function then
7517 -- A protected operation that is not a function may modify the
7518 -- corresponding object, and cannot apply to a constant. If this
7519 -- is an internal call, the prefix is the type itself.
7521 if Is_Protected_Type (Scope (Nam))
7522 and then not Is_Variable (Obj)
7523 and then (not Is_Entity_Name (Obj)
7524 or else not Is_Type (Entity (Obj)))
7525 then
7526 Error_Msg_N
7527 ("prefix of protected procedure or entry call must be variable",
7528 Entry_Name);
7529 end if;
7531 Actuals := Parameter_Associations (N);
7532 First_Named := First_Named_Actual (N);
7534 Rewrite (N,
7535 Make_Entry_Call_Statement (Loc,
7536 Name => Entry_Name,
7537 Parameter_Associations => Actuals));
7539 Set_First_Named_Actual (N, First_Named);
7540 Set_Analyzed (N, True);
7542 -- Protected functions can return on the secondary stack, in which
7543 -- case we must trigger the transient scope mechanism.
7545 elsif Expander_Active
7546 and then Requires_Transient_Scope (Etype (Nam))
7547 then
7548 Establish_Transient_Scope (N, Sec_Stack => True);
7549 end if;
7550 end Resolve_Entry_Call;
7552 -------------------------
7553 -- Resolve_Equality_Op --
7554 -------------------------
7556 -- Both arguments must have the same type, and the boolean context does
7557 -- not participate in the resolution. The first pass verifies that the
7558 -- interpretation is not ambiguous, and the type of the left argument is
7559 -- correctly set, or is Any_Type in case of ambiguity. If both arguments
7560 -- are strings or aggregates, allocators, or Null, they are ambiguous even
7561 -- though they carry a single (universal) type. Diagnose this case here.
7563 procedure Resolve_Equality_Op (N : Node_Id; Typ : Entity_Id) is
7564 L : constant Node_Id := Left_Opnd (N);
7565 R : constant Node_Id := Right_Opnd (N);
7566 T : Entity_Id := Find_Unique_Type (L, R);
7568 procedure Check_If_Expression (Cond : Node_Id);
7569 -- The resolution rule for if expressions requires that each such must
7570 -- have a unique type. This means that if several dependent expressions
7571 -- are of a non-null anonymous access type, and the context does not
7572 -- impose an expected type (as can be the case in an equality operation)
7573 -- the expression must be rejected.
7575 procedure Explain_Redundancy (N : Node_Id);
7576 -- Attempt to explain the nature of a redundant comparison with True. If
7577 -- the expression N is too complex, this routine issues a general error
7578 -- message.
7580 function Find_Unique_Access_Type return Entity_Id;
7581 -- In the case of allocators and access attributes, the context must
7582 -- provide an indication of the specific access type to be used. If
7583 -- one operand is of such a "generic" access type, check whether there
7584 -- is a specific visible access type that has the same designated type.
7585 -- This is semantically dubious, and of no interest to any real code,
7586 -- but c48008a makes it all worthwhile.
7588 -------------------------
7589 -- Check_If_Expression --
7590 -------------------------
7592 procedure Check_If_Expression (Cond : Node_Id) is
7593 Then_Expr : Node_Id;
7594 Else_Expr : Node_Id;
7596 begin
7597 if Nkind (Cond) = N_If_Expression then
7598 Then_Expr := Next (First (Expressions (Cond)));
7599 Else_Expr := Next (Then_Expr);
7601 if Nkind (Then_Expr) /= N_Null
7602 and then Nkind (Else_Expr) /= N_Null
7603 then
7604 Error_Msg_N ("cannot determine type of if expression", Cond);
7605 end if;
7606 end if;
7607 end Check_If_Expression;
7609 ------------------------
7610 -- Explain_Redundancy --
7611 ------------------------
7613 procedure Explain_Redundancy (N : Node_Id) is
7614 Error : Name_Id;
7615 Val : Node_Id;
7616 Val_Id : Entity_Id;
7618 begin
7619 Val := N;
7621 -- Strip the operand down to an entity
7623 loop
7624 if Nkind (Val) = N_Selected_Component then
7625 Val := Selector_Name (Val);
7626 else
7627 exit;
7628 end if;
7629 end loop;
7631 -- The construct denotes an entity
7633 if Is_Entity_Name (Val) and then Present (Entity (Val)) then
7634 Val_Id := Entity (Val);
7636 -- Do not generate an error message when the comparison is done
7637 -- against the enumeration literal Standard.True.
7639 if Ekind (Val_Id) /= E_Enumeration_Literal then
7641 -- Build a customized error message
7643 Name_Len := 0;
7644 Add_Str_To_Name_Buffer ("?r?");
7646 if Ekind (Val_Id) = E_Component then
7647 Add_Str_To_Name_Buffer ("component ");
7649 elsif Ekind (Val_Id) = E_Constant then
7650 Add_Str_To_Name_Buffer ("constant ");
7652 elsif Ekind (Val_Id) = E_Discriminant then
7653 Add_Str_To_Name_Buffer ("discriminant ");
7655 elsif Is_Formal (Val_Id) then
7656 Add_Str_To_Name_Buffer ("parameter ");
7658 elsif Ekind (Val_Id) = E_Variable then
7659 Add_Str_To_Name_Buffer ("variable ");
7660 end if;
7662 Add_Str_To_Name_Buffer ("& is always True!");
7663 Error := Name_Find;
7665 Error_Msg_NE (Get_Name_String (Error), Val, Val_Id);
7666 end if;
7668 -- The construct is too complex to disect, issue a general message
7670 else
7671 Error_Msg_N ("?r?expression is always True!", Val);
7672 end if;
7673 end Explain_Redundancy;
7675 -----------------------------
7676 -- Find_Unique_Access_Type --
7677 -----------------------------
7679 function Find_Unique_Access_Type return Entity_Id is
7680 Acc : Entity_Id;
7681 E : Entity_Id;
7682 S : Entity_Id;
7684 begin
7685 if Ekind_In (Etype (R), E_Allocator_Type,
7686 E_Access_Attribute_Type)
7687 then
7688 Acc := Designated_Type (Etype (R));
7690 elsif Ekind_In (Etype (L), E_Allocator_Type,
7691 E_Access_Attribute_Type)
7692 then
7693 Acc := Designated_Type (Etype (L));
7694 else
7695 return Empty;
7696 end if;
7698 S := Current_Scope;
7699 while S /= Standard_Standard loop
7700 E := First_Entity (S);
7701 while Present (E) loop
7702 if Is_Type (E)
7703 and then Is_Access_Type (E)
7704 and then Ekind (E) /= E_Allocator_Type
7705 and then Designated_Type (E) = Base_Type (Acc)
7706 then
7707 return E;
7708 end if;
7710 Next_Entity (E);
7711 end loop;
7713 S := Scope (S);
7714 end loop;
7716 return Empty;
7717 end Find_Unique_Access_Type;
7719 -- Start of processing for Resolve_Equality_Op
7721 begin
7722 Set_Etype (N, Base_Type (Typ));
7723 Generate_Reference (T, N, ' ');
7725 if T = Any_Fixed then
7726 T := Unique_Fixed_Point_Type (L);
7727 end if;
7729 if T /= Any_Type then
7730 if T = Any_String or else
7731 T = Any_Composite or else
7732 T = Any_Character
7733 then
7734 if T = Any_Character then
7735 Ambiguous_Character (L);
7736 else
7737 Error_Msg_N ("ambiguous operands for equality", N);
7738 end if;
7740 Set_Etype (N, Any_Type);
7741 return;
7743 elsif T = Any_Access
7744 or else Ekind_In (T, E_Allocator_Type, E_Access_Attribute_Type)
7745 then
7746 T := Find_Unique_Access_Type;
7748 if No (T) then
7749 Error_Msg_N ("ambiguous operands for equality", N);
7750 Set_Etype (N, Any_Type);
7751 return;
7752 end if;
7754 -- If expressions must have a single type, and if the context does
7755 -- not impose one the dependent expressions cannot be anonymous
7756 -- access types.
7758 -- Why no similar processing for case expressions???
7760 elsif Ada_Version >= Ada_2012
7761 and then Ekind_In (Etype (L), E_Anonymous_Access_Type,
7762 E_Anonymous_Access_Subprogram_Type)
7763 and then Ekind_In (Etype (R), E_Anonymous_Access_Type,
7764 E_Anonymous_Access_Subprogram_Type)
7765 then
7766 Check_If_Expression (L);
7767 Check_If_Expression (R);
7768 end if;
7770 Resolve (L, T);
7771 Resolve (R, T);
7773 -- In SPARK, equality operators = and /= for array types other than
7774 -- String are only defined when, for each index position, the
7775 -- operands have equal static bounds.
7777 if Is_Array_Type (T) then
7779 -- Protect call to Matching_Static_Array_Bounds to avoid costly
7780 -- operation if not needed.
7782 if Restriction_Check_Required (SPARK_05)
7783 and then Base_Type (T) /= Standard_String
7784 and then Base_Type (Etype (L)) = Base_Type (Etype (R))
7785 and then Etype (L) /= Any_Composite -- or else L in error
7786 and then Etype (R) /= Any_Composite -- or else R in error
7787 and then not Matching_Static_Array_Bounds (Etype (L), Etype (R))
7788 then
7789 Check_SPARK_05_Restriction
7790 ("array types should have matching static bounds", N);
7791 end if;
7792 end if;
7794 -- If the unique type is a class-wide type then it will be expanded
7795 -- into a dispatching call to the predefined primitive. Therefore we
7796 -- check here for potential violation of such restriction.
7798 if Is_Class_Wide_Type (T) then
7799 Check_Restriction (No_Dispatching_Calls, N);
7800 end if;
7802 if Warn_On_Redundant_Constructs
7803 and then Comes_From_Source (N)
7804 and then Comes_From_Source (R)
7805 and then Is_Entity_Name (R)
7806 and then Entity (R) = Standard_True
7807 then
7808 Error_Msg_N -- CODEFIX
7809 ("?r?comparison with True is redundant!", N);
7810 Explain_Redundancy (Original_Node (R));
7811 end if;
7813 Check_Unset_Reference (L);
7814 Check_Unset_Reference (R);
7815 Generate_Operator_Reference (N, T);
7816 Check_Low_Bound_Tested (N);
7818 -- If this is an inequality, it may be the implicit inequality
7819 -- created for a user-defined operation, in which case the corres-
7820 -- ponding equality operation is not intrinsic, and the operation
7821 -- cannot be constant-folded. Else fold.
7823 if Nkind (N) = N_Op_Eq
7824 or else Comes_From_Source (Entity (N))
7825 or else Ekind (Entity (N)) = E_Operator
7826 or else Is_Intrinsic_Subprogram
7827 (Corresponding_Equality (Entity (N)))
7828 then
7829 Analyze_Dimension (N);
7830 Eval_Relational_Op (N);
7832 elsif Nkind (N) = N_Op_Ne
7833 and then Is_Abstract_Subprogram (Entity (N))
7834 then
7835 Error_Msg_NE ("cannot call abstract subprogram &!", N, Entity (N));
7836 end if;
7838 -- Ada 2005: If one operand is an anonymous access type, convert the
7839 -- other operand to it, to ensure that the underlying types match in
7840 -- the back-end. Same for access_to_subprogram, and the conversion
7841 -- verifies that the types are subtype conformant.
7843 -- We apply the same conversion in the case one of the operands is a
7844 -- private subtype of the type of the other.
7846 -- Why the Expander_Active test here ???
7848 if Expander_Active
7849 and then
7850 (Ekind_In (T, E_Anonymous_Access_Type,
7851 E_Anonymous_Access_Subprogram_Type)
7852 or else Is_Private_Type (T))
7853 then
7854 if Etype (L) /= T then
7855 Rewrite (L,
7856 Make_Unchecked_Type_Conversion (Sloc (L),
7857 Subtype_Mark => New_Occurrence_Of (T, Sloc (L)),
7858 Expression => Relocate_Node (L)));
7859 Analyze_And_Resolve (L, T);
7860 end if;
7862 if (Etype (R)) /= T then
7863 Rewrite (R,
7864 Make_Unchecked_Type_Conversion (Sloc (R),
7865 Subtype_Mark => New_Occurrence_Of (Etype (L), Sloc (R)),
7866 Expression => Relocate_Node (R)));
7867 Analyze_And_Resolve (R, T);
7868 end if;
7869 end if;
7870 end if;
7871 end Resolve_Equality_Op;
7873 ----------------------------------
7874 -- Resolve_Explicit_Dereference --
7875 ----------------------------------
7877 procedure Resolve_Explicit_Dereference (N : Node_Id; Typ : Entity_Id) is
7878 Loc : constant Source_Ptr := Sloc (N);
7879 New_N : Node_Id;
7880 P : constant Node_Id := Prefix (N);
7882 P_Typ : Entity_Id;
7883 -- The candidate prefix type, if overloaded
7885 I : Interp_Index;
7886 It : Interp;
7888 begin
7889 Check_Fully_Declared_Prefix (Typ, P);
7890 P_Typ := Empty;
7892 -- A useful optimization: check whether the dereference denotes an
7893 -- element of a container, and if so rewrite it as a call to the
7894 -- corresponding Element function.
7896 -- Disabled for now, on advice of ARG. A more restricted form of the
7897 -- predicate might be acceptable ???
7899 -- if Is_Container_Element (N) then
7900 -- return;
7901 -- end if;
7903 if Is_Overloaded (P) then
7905 -- Use the context type to select the prefix that has the correct
7906 -- designated type. Keep the first match, which will be the inner-
7907 -- most.
7909 Get_First_Interp (P, I, It);
7911 while Present (It.Typ) loop
7912 if Is_Access_Type (It.Typ)
7913 and then Covers (Typ, Designated_Type (It.Typ))
7914 then
7915 if No (P_Typ) then
7916 P_Typ := It.Typ;
7917 end if;
7919 -- Remove access types that do not match, but preserve access
7920 -- to subprogram interpretations, in case a further dereference
7921 -- is needed (see below).
7923 elsif Ekind (It.Typ) /= E_Access_Subprogram_Type then
7924 Remove_Interp (I);
7925 end if;
7927 Get_Next_Interp (I, It);
7928 end loop;
7930 if Present (P_Typ) then
7931 Resolve (P, P_Typ);
7932 Set_Etype (N, Designated_Type (P_Typ));
7934 else
7935 -- If no interpretation covers the designated type of the prefix,
7936 -- this is the pathological case where not all implementations of
7937 -- the prefix allow the interpretation of the node as a call. Now
7938 -- that the expected type is known, Remove other interpretations
7939 -- from prefix, rewrite it as a call, and resolve again, so that
7940 -- the proper call node is generated.
7942 Get_First_Interp (P, I, It);
7943 while Present (It.Typ) loop
7944 if Ekind (It.Typ) /= E_Access_Subprogram_Type then
7945 Remove_Interp (I);
7946 end if;
7948 Get_Next_Interp (I, It);
7949 end loop;
7951 New_N :=
7952 Make_Function_Call (Loc,
7953 Name =>
7954 Make_Explicit_Dereference (Loc,
7955 Prefix => P),
7956 Parameter_Associations => New_List);
7958 Save_Interps (N, New_N);
7959 Rewrite (N, New_N);
7960 Analyze_And_Resolve (N, Typ);
7961 return;
7962 end if;
7964 -- If not overloaded, resolve P with its own type
7966 else
7967 Resolve (P);
7968 end if;
7970 if Is_Access_Type (Etype (P)) then
7971 Apply_Access_Check (N);
7972 end if;
7974 -- If the designated type is a packed unconstrained array type, and the
7975 -- explicit dereference is not in the context of an attribute reference,
7976 -- then we must compute and set the actual subtype, since it is needed
7977 -- by Gigi. The reason we exclude the attribute case is that this is
7978 -- handled fine by Gigi, and in fact we use such attributes to build the
7979 -- actual subtype. We also exclude generated code (which builds actual
7980 -- subtypes directly if they are needed).
7982 if Is_Array_Type (Etype (N))
7983 and then Is_Packed (Etype (N))
7984 and then not Is_Constrained (Etype (N))
7985 and then Nkind (Parent (N)) /= N_Attribute_Reference
7986 and then Comes_From_Source (N)
7987 then
7988 Set_Etype (N, Get_Actual_Subtype (N));
7989 end if;
7991 -- Note: No Eval processing is required for an explicit dereference,
7992 -- because such a name can never be static.
7994 end Resolve_Explicit_Dereference;
7996 -------------------------------------
7997 -- Resolve_Expression_With_Actions --
7998 -------------------------------------
8000 procedure Resolve_Expression_With_Actions (N : Node_Id; Typ : Entity_Id) is
8001 begin
8002 Set_Etype (N, Typ);
8004 -- If N has no actions, and its expression has been constant folded,
8005 -- then rewrite N as just its expression. Note, we can't do this in
8006 -- the general case of Is_Empty_List (Actions (N)) as this would cause
8007 -- Expression (N) to be expanded again.
8009 if Is_Empty_List (Actions (N))
8010 and then Compile_Time_Known_Value (Expression (N))
8011 then
8012 Rewrite (N, Expression (N));
8013 end if;
8014 end Resolve_Expression_With_Actions;
8016 ----------------------------------
8017 -- Resolve_Generalized_Indexing --
8018 ----------------------------------
8020 procedure Resolve_Generalized_Indexing (N : Node_Id; Typ : Entity_Id) is
8021 Indexing : constant Node_Id := Generalized_Indexing (N);
8022 Call : Node_Id;
8023 Indices : List_Id;
8024 Pref : Node_Id;
8026 begin
8027 -- In ASIS mode, propagate the information about the indices back to
8028 -- to the original indexing node. The generalized indexing is either
8029 -- a function call, or a dereference of one. The actuals include the
8030 -- prefix of the original node, which is the container expression.
8032 if ASIS_Mode then
8033 Resolve (Indexing, Typ);
8034 Set_Etype (N, Etype (Indexing));
8035 Set_Is_Overloaded (N, False);
8037 Call := Indexing;
8038 while Nkind_In (Call, N_Explicit_Dereference, N_Selected_Component)
8039 loop
8040 Call := Prefix (Call);
8041 end loop;
8043 if Nkind (Call) = N_Function_Call then
8044 Indices := Parameter_Associations (Call);
8045 Pref := Remove_Head (Indices);
8046 Set_Expressions (N, Indices);
8047 Set_Prefix (N, Pref);
8048 end if;
8050 else
8051 Rewrite (N, Indexing);
8052 Resolve (N, Typ);
8053 end if;
8054 end Resolve_Generalized_Indexing;
8056 ---------------------------
8057 -- Resolve_If_Expression --
8058 ---------------------------
8060 procedure Resolve_If_Expression (N : Node_Id; Typ : Entity_Id) is
8061 Condition : constant Node_Id := First (Expressions (N));
8062 Then_Expr : constant Node_Id := Next (Condition);
8063 Else_Expr : Node_Id := Next (Then_Expr);
8064 Else_Typ : Entity_Id;
8065 Then_Typ : Entity_Id;
8067 begin
8068 Resolve (Condition, Any_Boolean);
8069 Resolve (Then_Expr, Typ);
8070 Then_Typ := Etype (Then_Expr);
8072 -- When the "then" expression is of a scalar subtype different from the
8073 -- result subtype, then insert a conversion to ensure the generation of
8074 -- a constraint check. The same is done for the else part below, again
8075 -- comparing subtypes rather than base types.
8077 if Is_Scalar_Type (Then_Typ)
8078 and then Then_Typ /= Typ
8079 then
8080 Rewrite (Then_Expr, Convert_To (Typ, Then_Expr));
8081 Analyze_And_Resolve (Then_Expr, Typ);
8082 end if;
8084 -- If ELSE expression present, just resolve using the determined type
8086 if Present (Else_Expr) then
8087 Resolve (Else_Expr, Typ);
8088 Else_Typ := Etype (Else_Expr);
8090 if Is_Scalar_Type (Else_Typ)
8091 and then Else_Typ /= Typ
8092 then
8093 Rewrite (Else_Expr, Convert_To (Typ, Else_Expr));
8094 Analyze_And_Resolve (Else_Expr, Typ);
8095 end if;
8097 -- If no ELSE expression is present, root type must be Standard.Boolean
8098 -- and we provide a Standard.True result converted to the appropriate
8099 -- Boolean type (in case it is a derived boolean type).
8101 elsif Root_Type (Typ) = Standard_Boolean then
8102 Else_Expr :=
8103 Convert_To (Typ, New_Occurrence_Of (Standard_True, Sloc (N)));
8104 Analyze_And_Resolve (Else_Expr, Typ);
8105 Append_To (Expressions (N), Else_Expr);
8107 else
8108 Error_Msg_N ("can only omit ELSE expression in Boolean case", N);
8109 Append_To (Expressions (N), Error);
8110 end if;
8112 Set_Etype (N, Typ);
8113 Eval_If_Expression (N);
8114 end Resolve_If_Expression;
8116 -------------------------------
8117 -- Resolve_Indexed_Component --
8118 -------------------------------
8120 procedure Resolve_Indexed_Component (N : Node_Id; Typ : Entity_Id) is
8121 Name : constant Node_Id := Prefix (N);
8122 Expr : Node_Id;
8123 Array_Type : Entity_Id := Empty; -- to prevent junk warning
8124 Index : Node_Id;
8126 begin
8127 if Present (Generalized_Indexing (N)) then
8128 Resolve_Generalized_Indexing (N, Typ);
8129 return;
8130 end if;
8132 if Is_Overloaded (Name) then
8134 -- Use the context type to select the prefix that yields the correct
8135 -- component type.
8137 declare
8138 I : Interp_Index;
8139 It : Interp;
8140 I1 : Interp_Index := 0;
8141 P : constant Node_Id := Prefix (N);
8142 Found : Boolean := False;
8144 begin
8145 Get_First_Interp (P, I, It);
8146 while Present (It.Typ) loop
8147 if (Is_Array_Type (It.Typ)
8148 and then Covers (Typ, Component_Type (It.Typ)))
8149 or else (Is_Access_Type (It.Typ)
8150 and then Is_Array_Type (Designated_Type (It.Typ))
8151 and then
8152 Covers
8153 (Typ,
8154 Component_Type (Designated_Type (It.Typ))))
8155 then
8156 if Found then
8157 It := Disambiguate (P, I1, I, Any_Type);
8159 if It = No_Interp then
8160 Error_Msg_N ("ambiguous prefix for indexing", N);
8161 Set_Etype (N, Typ);
8162 return;
8164 else
8165 Found := True;
8166 Array_Type := It.Typ;
8167 I1 := I;
8168 end if;
8170 else
8171 Found := True;
8172 Array_Type := It.Typ;
8173 I1 := I;
8174 end if;
8175 end if;
8177 Get_Next_Interp (I, It);
8178 end loop;
8179 end;
8181 else
8182 Array_Type := Etype (Name);
8183 end if;
8185 Resolve (Name, Array_Type);
8186 Array_Type := Get_Actual_Subtype_If_Available (Name);
8188 -- If prefix is access type, dereference to get real array type.
8189 -- Note: we do not apply an access check because the expander always
8190 -- introduces an explicit dereference, and the check will happen there.
8192 if Is_Access_Type (Array_Type) then
8193 Array_Type := Designated_Type (Array_Type);
8194 end if;
8196 -- If name was overloaded, set component type correctly now
8197 -- If a misplaced call to an entry family (which has no index types)
8198 -- return. Error will be diagnosed from calling context.
8200 if Is_Array_Type (Array_Type) then
8201 Set_Etype (N, Component_Type (Array_Type));
8202 else
8203 return;
8204 end if;
8206 Index := First_Index (Array_Type);
8207 Expr := First (Expressions (N));
8209 -- The prefix may have resolved to a string literal, in which case its
8210 -- etype has a special representation. This is only possible currently
8211 -- if the prefix is a static concatenation, written in functional
8212 -- notation.
8214 if Ekind (Array_Type) = E_String_Literal_Subtype then
8215 Resolve (Expr, Standard_Positive);
8217 else
8218 while Present (Index) and Present (Expr) loop
8219 Resolve (Expr, Etype (Index));
8220 Check_Unset_Reference (Expr);
8222 if Is_Scalar_Type (Etype (Expr)) then
8223 Apply_Scalar_Range_Check (Expr, Etype (Index));
8224 else
8225 Apply_Range_Check (Expr, Get_Actual_Subtype (Index));
8226 end if;
8228 Next_Index (Index);
8229 Next (Expr);
8230 end loop;
8231 end if;
8233 Analyze_Dimension (N);
8235 -- Do not generate the warning on suspicious index if we are analyzing
8236 -- package Ada.Tags; otherwise we will report the warning with the
8237 -- Prims_Ptr field of the dispatch table.
8239 if Scope (Etype (Prefix (N))) = Standard_Standard
8240 or else not
8241 Is_RTU (Cunit_Entity (Get_Source_Unit (Etype (Prefix (N)))),
8242 Ada_Tags)
8243 then
8244 Warn_On_Suspicious_Index (Name, First (Expressions (N)));
8245 Eval_Indexed_Component (N);
8246 end if;
8248 -- If the array type is atomic, and the component is not atomic, then
8249 -- this is worth a warning, since we have a situation where the access
8250 -- to the component may cause extra read/writes of the atomic array
8251 -- object, or partial word accesses, which could be unexpected.
8253 if Nkind (N) = N_Indexed_Component
8254 and then Is_Atomic_Ref_With_Address (N)
8255 and then not (Has_Atomic_Components (Array_Type)
8256 or else (Is_Entity_Name (Prefix (N))
8257 and then Has_Atomic_Components
8258 (Entity (Prefix (N)))))
8259 and then not Is_Atomic (Component_Type (Array_Type))
8260 then
8261 Error_Msg_N ("??access to non-atomic component of atomic array",
8262 Prefix (N));
8263 Error_Msg_N ("??\may cause unexpected accesses to atomic object",
8264 Prefix (N));
8265 end if;
8266 end Resolve_Indexed_Component;
8268 -----------------------------
8269 -- Resolve_Integer_Literal --
8270 -----------------------------
8272 procedure Resolve_Integer_Literal (N : Node_Id; Typ : Entity_Id) is
8273 begin
8274 Set_Etype (N, Typ);
8275 Eval_Integer_Literal (N);
8276 end Resolve_Integer_Literal;
8278 --------------------------------
8279 -- Resolve_Intrinsic_Operator --
8280 --------------------------------
8282 procedure Resolve_Intrinsic_Operator (N : Node_Id; Typ : Entity_Id) is
8283 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8284 Op : Entity_Id;
8285 Arg1 : Node_Id;
8286 Arg2 : Node_Id;
8288 function Convert_Operand (Opnd : Node_Id) return Node_Id;
8289 -- If the operand is a literal, it cannot be the expression in a
8290 -- conversion. Use a qualified expression instead.
8292 function Convert_Operand (Opnd : Node_Id) return Node_Id is
8293 Loc : constant Source_Ptr := Sloc (Opnd);
8294 Res : Node_Id;
8295 begin
8296 if Nkind_In (Opnd, N_Integer_Literal, N_Real_Literal) then
8297 Res :=
8298 Make_Qualified_Expression (Loc,
8299 Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
8300 Expression => Relocate_Node (Opnd));
8301 Analyze (Res);
8303 else
8304 Res := Unchecked_Convert_To (Btyp, Opnd);
8305 end if;
8307 return Res;
8308 end Convert_Operand;
8310 -- Start of processing for Resolve_Intrinsic_Operator
8312 begin
8313 -- We must preserve the original entity in a generic setting, so that
8314 -- the legality of the operation can be verified in an instance.
8316 if not Expander_Active then
8317 return;
8318 end if;
8320 Op := Entity (N);
8321 while Scope (Op) /= Standard_Standard loop
8322 Op := Homonym (Op);
8323 pragma Assert (Present (Op));
8324 end loop;
8326 Set_Entity (N, Op);
8327 Set_Is_Overloaded (N, False);
8329 -- If the result or operand types are private, rewrite with unchecked
8330 -- conversions on the operands and the result, to expose the proper
8331 -- underlying numeric type.
8333 if Is_Private_Type (Typ)
8334 or else Is_Private_Type (Etype (Left_Opnd (N)))
8335 or else Is_Private_Type (Etype (Right_Opnd (N)))
8336 then
8337 Arg1 := Convert_Operand (Left_Opnd (N));
8338 -- Unchecked_Convert_To (Btyp, Left_Opnd (N));
8339 -- What on earth is this commented out fragment of code???
8341 if Nkind (N) = N_Op_Expon then
8342 Arg2 := Unchecked_Convert_To (Standard_Integer, Right_Opnd (N));
8343 else
8344 Arg2 := Convert_Operand (Right_Opnd (N));
8345 end if;
8347 if Nkind (Arg1) = N_Type_Conversion then
8348 Save_Interps (Left_Opnd (N), Expression (Arg1));
8349 end if;
8351 if Nkind (Arg2) = N_Type_Conversion then
8352 Save_Interps (Right_Opnd (N), Expression (Arg2));
8353 end if;
8355 Set_Left_Opnd (N, Arg1);
8356 Set_Right_Opnd (N, Arg2);
8358 Set_Etype (N, Btyp);
8359 Rewrite (N, Unchecked_Convert_To (Typ, N));
8360 Resolve (N, Typ);
8362 elsif Typ /= Etype (Left_Opnd (N))
8363 or else Typ /= Etype (Right_Opnd (N))
8364 then
8365 -- Add explicit conversion where needed, and save interpretations in
8366 -- case operands are overloaded.
8368 Arg1 := Convert_To (Typ, Left_Opnd (N));
8369 Arg2 := Convert_To (Typ, Right_Opnd (N));
8371 if Nkind (Arg1) = N_Type_Conversion then
8372 Save_Interps (Left_Opnd (N), Expression (Arg1));
8373 else
8374 Save_Interps (Left_Opnd (N), Arg1);
8375 end if;
8377 if Nkind (Arg2) = N_Type_Conversion then
8378 Save_Interps (Right_Opnd (N), Expression (Arg2));
8379 else
8380 Save_Interps (Right_Opnd (N), Arg2);
8381 end if;
8383 Rewrite (Left_Opnd (N), Arg1);
8384 Rewrite (Right_Opnd (N), Arg2);
8385 Analyze (Arg1);
8386 Analyze (Arg2);
8387 Resolve_Arithmetic_Op (N, Typ);
8389 else
8390 Resolve_Arithmetic_Op (N, Typ);
8391 end if;
8392 end Resolve_Intrinsic_Operator;
8394 --------------------------------------
8395 -- Resolve_Intrinsic_Unary_Operator --
8396 --------------------------------------
8398 procedure Resolve_Intrinsic_Unary_Operator
8399 (N : Node_Id;
8400 Typ : Entity_Id)
8402 Btyp : constant Entity_Id := Base_Type (Underlying_Type (Typ));
8403 Op : Entity_Id;
8404 Arg2 : Node_Id;
8406 begin
8407 Op := Entity (N);
8408 while Scope (Op) /= Standard_Standard loop
8409 Op := Homonym (Op);
8410 pragma Assert (Present (Op));
8411 end loop;
8413 Set_Entity (N, Op);
8415 if Is_Private_Type (Typ) then
8416 Arg2 := Unchecked_Convert_To (Btyp, Right_Opnd (N));
8417 Save_Interps (Right_Opnd (N), Expression (Arg2));
8419 Set_Right_Opnd (N, Arg2);
8421 Set_Etype (N, Btyp);
8422 Rewrite (N, Unchecked_Convert_To (Typ, N));
8423 Resolve (N, Typ);
8425 else
8426 Resolve_Unary_Op (N, Typ);
8427 end if;
8428 end Resolve_Intrinsic_Unary_Operator;
8430 ------------------------
8431 -- Resolve_Logical_Op --
8432 ------------------------
8434 procedure Resolve_Logical_Op (N : Node_Id; Typ : Entity_Id) is
8435 B_Typ : Entity_Id;
8437 begin
8438 Check_No_Direct_Boolean_Operators (N);
8440 -- Predefined operations on scalar types yield the base type. On the
8441 -- other hand, logical operations on arrays yield the type of the
8442 -- arguments (and the context).
8444 if Is_Array_Type (Typ) then
8445 B_Typ := Typ;
8446 else
8447 B_Typ := Base_Type (Typ);
8448 end if;
8450 -- The following test is required because the operands of the operation
8451 -- may be literals, in which case the resulting type appears to be
8452 -- compatible with a signed integer type, when in fact it is compatible
8453 -- only with modular types. If the context itself is universal, the
8454 -- operation is illegal.
8456 if not Valid_Boolean_Arg (Typ) then
8457 Error_Msg_N ("invalid context for logical operation", N);
8458 Set_Etype (N, Any_Type);
8459 return;
8461 elsif Typ = Any_Modular then
8462 Error_Msg_N
8463 ("no modular type available in this context", N);
8464 Set_Etype (N, Any_Type);
8465 return;
8467 elsif Is_Modular_Integer_Type (Typ)
8468 and then Etype (Left_Opnd (N)) = Universal_Integer
8469 and then Etype (Right_Opnd (N)) = Universal_Integer
8470 then
8471 Check_For_Visible_Operator (N, B_Typ);
8472 end if;
8474 -- Replace AND by AND THEN, or OR by OR ELSE, if Short_Circuit_And_Or
8475 -- is active and the result type is standard Boolean (do not mess with
8476 -- ops that return a nonstandard Boolean type, because something strange
8477 -- is going on).
8479 -- Note: you might expect this replacement to be done during expansion,
8480 -- but that doesn't work, because when the pragma Short_Circuit_And_Or
8481 -- is used, no part of the right operand of an "and" or "or" operator
8482 -- should be executed if the left operand would short-circuit the
8483 -- evaluation of the corresponding "and then" or "or else". If we left
8484 -- the replacement to expansion time, then run-time checks associated
8485 -- with such operands would be evaluated unconditionally, due to being
8486 -- before the condition prior to the rewriting as short-circuit forms
8487 -- during expansion.
8489 if Short_Circuit_And_Or
8490 and then B_Typ = Standard_Boolean
8491 and then Nkind_In (N, N_Op_And, N_Op_Or)
8492 then
8493 if Nkind (N) = N_Op_And then
8494 Rewrite (N,
8495 Make_And_Then (Sloc (N),
8496 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8497 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8498 Analyze_And_Resolve (N, B_Typ);
8500 -- Case of OR changed to OR ELSE
8502 else
8503 Rewrite (N,
8504 Make_Or_Else (Sloc (N),
8505 Left_Opnd => Relocate_Node (Left_Opnd (N)),
8506 Right_Opnd => Relocate_Node (Right_Opnd (N))));
8507 Analyze_And_Resolve (N, B_Typ);
8508 end if;
8510 -- Return now, since analysis of the rewritten ops will take care of
8511 -- other reference bookkeeping and expression folding.
8513 return;
8514 end if;
8516 Resolve (Left_Opnd (N), B_Typ);
8517 Resolve (Right_Opnd (N), B_Typ);
8519 Check_Unset_Reference (Left_Opnd (N));
8520 Check_Unset_Reference (Right_Opnd (N));
8522 Set_Etype (N, B_Typ);
8523 Generate_Operator_Reference (N, B_Typ);
8524 Eval_Logical_Op (N);
8526 -- In SPARK, logical operations AND, OR and XOR for arrays are defined
8527 -- only when both operands have same static lower and higher bounds. Of
8528 -- course the types have to match, so only check if operands are
8529 -- compatible and the node itself has no errors.
8531 if Is_Array_Type (B_Typ)
8532 and then Nkind (N) in N_Binary_Op
8533 then
8534 declare
8535 Left_Typ : constant Node_Id := Etype (Left_Opnd (N));
8536 Right_Typ : constant Node_Id := Etype (Right_Opnd (N));
8538 begin
8539 -- Protect call to Matching_Static_Array_Bounds to avoid costly
8540 -- operation if not needed.
8542 if Restriction_Check_Required (SPARK_05)
8543 and then Base_Type (Left_Typ) = Base_Type (Right_Typ)
8544 and then Left_Typ /= Any_Composite -- or Left_Opnd in error
8545 and then Right_Typ /= Any_Composite -- or Right_Opnd in error
8546 and then not Matching_Static_Array_Bounds (Left_Typ, Right_Typ)
8547 then
8548 Check_SPARK_05_Restriction
8549 ("array types should have matching static bounds", N);
8550 end if;
8551 end;
8552 end if;
8554 Check_Function_Writable_Actuals (N);
8555 end Resolve_Logical_Op;
8557 ---------------------------
8558 -- Resolve_Membership_Op --
8559 ---------------------------
8561 -- The context can only be a boolean type, and does not determine the
8562 -- arguments. Arguments should be unambiguous, but the preference rule for
8563 -- universal types applies.
8565 procedure Resolve_Membership_Op (N : Node_Id; Typ : Entity_Id) is
8566 pragma Warnings (Off, Typ);
8568 L : constant Node_Id := Left_Opnd (N);
8569 R : constant Node_Id := Right_Opnd (N);
8570 T : Entity_Id;
8572 procedure Resolve_Set_Membership;
8573 -- Analysis has determined a unique type for the left operand. Use it to
8574 -- resolve the disjuncts.
8576 ----------------------------
8577 -- Resolve_Set_Membership --
8578 ----------------------------
8580 procedure Resolve_Set_Membership is
8581 Alt : Node_Id;
8582 Ltyp : constant Entity_Id := Etype (L);
8584 begin
8585 Resolve (L, Ltyp);
8587 Alt := First (Alternatives (N));
8588 while Present (Alt) loop
8590 -- Alternative is an expression, a range
8591 -- or a subtype mark.
8593 if not Is_Entity_Name (Alt)
8594 or else not Is_Type (Entity (Alt))
8595 then
8596 Resolve (Alt, Ltyp);
8597 end if;
8599 Next (Alt);
8600 end loop;
8602 -- Check for duplicates for discrete case
8604 if Is_Discrete_Type (Ltyp) then
8605 declare
8606 type Ent is record
8607 Alt : Node_Id;
8608 Val : Uint;
8609 end record;
8611 Alts : array (0 .. List_Length (Alternatives (N))) of Ent;
8612 Nalts : Nat;
8614 begin
8615 -- Loop checking duplicates. This is quadratic, but giant sets
8616 -- are unlikely in this context so it's a reasonable choice.
8618 Nalts := 0;
8619 Alt := First (Alternatives (N));
8620 while Present (Alt) loop
8621 if Is_OK_Static_Expression (Alt)
8622 and then (Nkind_In (Alt, N_Integer_Literal,
8623 N_Character_Literal)
8624 or else Nkind (Alt) in N_Has_Entity)
8625 then
8626 Nalts := Nalts + 1;
8627 Alts (Nalts) := (Alt, Expr_Value (Alt));
8629 for J in 1 .. Nalts - 1 loop
8630 if Alts (J).Val = Alts (Nalts).Val then
8631 Error_Msg_Sloc := Sloc (Alts (J).Alt);
8632 Error_Msg_N ("duplicate of value given#??", Alt);
8633 end if;
8634 end loop;
8635 end if;
8637 Alt := Next (Alt);
8638 end loop;
8639 end;
8640 end if;
8641 end Resolve_Set_Membership;
8643 -- Start of processing for Resolve_Membership_Op
8645 begin
8646 if L = Error or else R = Error then
8647 return;
8648 end if;
8650 if Present (Alternatives (N)) then
8651 Resolve_Set_Membership;
8652 goto SM_Exit;
8654 elsif not Is_Overloaded (R)
8655 and then
8656 (Etype (R) = Universal_Integer
8657 or else
8658 Etype (R) = Universal_Real)
8659 and then Is_Overloaded (L)
8660 then
8661 T := Etype (R);
8663 -- Ada 2005 (AI-251): Support the following case:
8665 -- type I is interface;
8666 -- type T is tagged ...
8668 -- function Test (O : I'Class) is
8669 -- begin
8670 -- return O in T'Class.
8671 -- end Test;
8673 -- In this case we have nothing else to do. The membership test will be
8674 -- done at run time.
8676 elsif Ada_Version >= Ada_2005
8677 and then Is_Class_Wide_Type (Etype (L))
8678 and then Is_Interface (Etype (L))
8679 and then Is_Class_Wide_Type (Etype (R))
8680 and then not Is_Interface (Etype (R))
8681 then
8682 return;
8683 else
8684 T := Intersect_Types (L, R);
8685 end if;
8687 -- If mixed-mode operations are present and operands are all literal,
8688 -- the only interpretation involves Duration, which is probably not
8689 -- the intention of the programmer.
8691 if T = Any_Fixed then
8692 T := Unique_Fixed_Point_Type (N);
8694 if T = Any_Type then
8695 return;
8696 end if;
8697 end if;
8699 Resolve (L, T);
8700 Check_Unset_Reference (L);
8702 if Nkind (R) = N_Range
8703 and then not Is_Scalar_Type (T)
8704 then
8705 Error_Msg_N ("scalar type required for range", R);
8706 end if;
8708 if Is_Entity_Name (R) then
8709 Freeze_Expression (R);
8710 else
8711 Resolve (R, T);
8712 Check_Unset_Reference (R);
8713 end if;
8715 -- Here after resolving membership operation
8717 <<SM_Exit>>
8719 Eval_Membership_Op (N);
8720 Check_Function_Writable_Actuals (N);
8721 end Resolve_Membership_Op;
8723 ------------------
8724 -- Resolve_Null --
8725 ------------------
8727 procedure Resolve_Null (N : Node_Id; Typ : Entity_Id) is
8728 Loc : constant Source_Ptr := Sloc (N);
8730 begin
8731 -- Handle restriction against anonymous null access values This
8732 -- restriction can be turned off using -gnatdj.
8734 -- Ada 2005 (AI-231): Remove restriction
8736 if Ada_Version < Ada_2005
8737 and then not Debug_Flag_J
8738 and then Ekind (Typ) = E_Anonymous_Access_Type
8739 and then Comes_From_Source (N)
8740 then
8741 -- In the common case of a call which uses an explicitly null value
8742 -- for an access parameter, give specialized error message.
8744 if Nkind (Parent (N)) in N_Subprogram_Call then
8745 Error_Msg_N
8746 ("null is not allowed as argument for an access parameter", N);
8748 -- Standard message for all other cases (are there any?)
8750 else
8751 Error_Msg_N
8752 ("null cannot be of an anonymous access type", N);
8753 end if;
8754 end if;
8756 -- Ada 2005 (AI-231): Generate the null-excluding check in case of
8757 -- assignment to a null-excluding object
8759 if Ada_Version >= Ada_2005
8760 and then Can_Never_Be_Null (Typ)
8761 and then Nkind (Parent (N)) = N_Assignment_Statement
8762 then
8763 if not Inside_Init_Proc then
8764 Insert_Action
8765 (Compile_Time_Constraint_Error (N,
8766 "(Ada 2005) null not allowed in null-excluding objects??"),
8767 Make_Raise_Constraint_Error (Loc,
8768 Reason => CE_Access_Check_Failed));
8769 else
8770 Insert_Action (N,
8771 Make_Raise_Constraint_Error (Loc,
8772 Reason => CE_Access_Check_Failed));
8773 end if;
8774 end if;
8776 -- In a distributed context, null for a remote access to subprogram may
8777 -- need to be replaced with a special record aggregate. In this case,
8778 -- return after having done the transformation.
8780 if (Ekind (Typ) = E_Record_Type
8781 or else Is_Remote_Access_To_Subprogram_Type (Typ))
8782 and then Remote_AST_Null_Value (N, Typ)
8783 then
8784 return;
8785 end if;
8787 -- The null literal takes its type from the context
8789 Set_Etype (N, Typ);
8790 end Resolve_Null;
8792 -----------------------
8793 -- Resolve_Op_Concat --
8794 -----------------------
8796 procedure Resolve_Op_Concat (N : Node_Id; Typ : Entity_Id) is
8798 -- We wish to avoid deep recursion, because concatenations are often
8799 -- deeply nested, as in A&B&...&Z. Therefore, we walk down the left
8800 -- operands nonrecursively until we find something that is not a simple
8801 -- concatenation (A in this case). We resolve that, and then walk back
8802 -- up the tree following Parent pointers, calling Resolve_Op_Concat_Rest
8803 -- to do the rest of the work at each level. The Parent pointers allow
8804 -- us to avoid recursion, and thus avoid running out of memory. See also
8805 -- Sem_Ch4.Analyze_Concatenation, where a similar approach is used.
8807 NN : Node_Id := N;
8808 Op1 : Node_Id;
8810 begin
8811 -- The following code is equivalent to:
8813 -- Resolve_Op_Concat_First (NN, Typ);
8814 -- Resolve_Op_Concat_Arg (N, ...);
8815 -- Resolve_Op_Concat_Rest (N, Typ);
8817 -- where the Resolve_Op_Concat_Arg call recurses back here if the left
8818 -- operand is a concatenation.
8820 -- Walk down left operands
8822 loop
8823 Resolve_Op_Concat_First (NN, Typ);
8824 Op1 := Left_Opnd (NN);
8825 exit when not (Nkind (Op1) = N_Op_Concat
8826 and then not Is_Array_Type (Component_Type (Typ))
8827 and then Entity (Op1) = Entity (NN));
8828 NN := Op1;
8829 end loop;
8831 -- Now (given the above example) NN is A&B and Op1 is A
8833 -- First resolve Op1 ...
8835 Resolve_Op_Concat_Arg (NN, Op1, Typ, Is_Component_Left_Opnd (NN));
8837 -- ... then walk NN back up until we reach N (where we started), calling
8838 -- Resolve_Op_Concat_Rest along the way.
8840 loop
8841 Resolve_Op_Concat_Rest (NN, Typ);
8842 exit when NN = N;
8843 NN := Parent (NN);
8844 end loop;
8846 if Base_Type (Etype (N)) /= Standard_String then
8847 Check_SPARK_05_Restriction
8848 ("result of concatenation should have type String", N);
8849 end if;
8850 end Resolve_Op_Concat;
8852 ---------------------------
8853 -- Resolve_Op_Concat_Arg --
8854 ---------------------------
8856 procedure Resolve_Op_Concat_Arg
8857 (N : Node_Id;
8858 Arg : Node_Id;
8859 Typ : Entity_Id;
8860 Is_Comp : Boolean)
8862 Btyp : constant Entity_Id := Base_Type (Typ);
8863 Ctyp : constant Entity_Id := Component_Type (Typ);
8865 begin
8866 if In_Instance then
8867 if Is_Comp
8868 or else (not Is_Overloaded (Arg)
8869 and then Etype (Arg) /= Any_Composite
8870 and then Covers (Ctyp, Etype (Arg)))
8871 then
8872 Resolve (Arg, Ctyp);
8873 else
8874 Resolve (Arg, Btyp);
8875 end if;
8877 -- If both Array & Array and Array & Component are visible, there is a
8878 -- potential ambiguity that must be reported.
8880 elsif Has_Compatible_Type (Arg, Ctyp) then
8881 if Nkind (Arg) = N_Aggregate
8882 and then Is_Composite_Type (Ctyp)
8883 then
8884 if Is_Private_Type (Ctyp) then
8885 Resolve (Arg, Btyp);
8887 -- If the operation is user-defined and not overloaded use its
8888 -- profile. The operation may be a renaming, in which case it has
8889 -- been rewritten, and we want the original profile.
8891 elsif not Is_Overloaded (N)
8892 and then Comes_From_Source (Entity (Original_Node (N)))
8893 and then Ekind (Entity (Original_Node (N))) = E_Function
8894 then
8895 Resolve (Arg,
8896 Etype
8897 (Next_Formal (First_Formal (Entity (Original_Node (N))))));
8898 return;
8900 -- Otherwise an aggregate may match both the array type and the
8901 -- component type.
8903 else
8904 Error_Msg_N ("ambiguous aggregate must be qualified", Arg);
8905 Set_Etype (Arg, Any_Type);
8906 end if;
8908 else
8909 if Is_Overloaded (Arg)
8910 and then Has_Compatible_Type (Arg, Typ)
8911 and then Etype (Arg) /= Any_Type
8912 then
8913 declare
8914 I : Interp_Index;
8915 It : Interp;
8916 Func : Entity_Id;
8918 begin
8919 Get_First_Interp (Arg, I, It);
8920 Func := It.Nam;
8921 Get_Next_Interp (I, It);
8923 -- Special-case the error message when the overloading is
8924 -- caused by a function that yields an array and can be
8925 -- called without parameters.
8927 if It.Nam = Func then
8928 Error_Msg_Sloc := Sloc (Func);
8929 Error_Msg_N ("ambiguous call to function#", Arg);
8930 Error_Msg_NE
8931 ("\\interpretation as call yields&", Arg, Typ);
8932 Error_Msg_NE
8933 ("\\interpretation as indexing of call yields&",
8934 Arg, Component_Type (Typ));
8936 else
8937 Error_Msg_N ("ambiguous operand for concatenation!", Arg);
8939 Get_First_Interp (Arg, I, It);
8940 while Present (It.Nam) loop
8941 Error_Msg_Sloc := Sloc (It.Nam);
8943 if Base_Type (It.Typ) = Btyp
8944 or else
8945 Base_Type (It.Typ) = Base_Type (Ctyp)
8946 then
8947 Error_Msg_N -- CODEFIX
8948 ("\\possible interpretation#", Arg);
8949 end if;
8951 Get_Next_Interp (I, It);
8952 end loop;
8953 end if;
8954 end;
8955 end if;
8957 Resolve (Arg, Component_Type (Typ));
8959 if Nkind (Arg) = N_String_Literal then
8960 Set_Etype (Arg, Component_Type (Typ));
8961 end if;
8963 if Arg = Left_Opnd (N) then
8964 Set_Is_Component_Left_Opnd (N);
8965 else
8966 Set_Is_Component_Right_Opnd (N);
8967 end if;
8968 end if;
8970 else
8971 Resolve (Arg, Btyp);
8972 end if;
8974 -- Concatenation is restricted in SPARK: each operand must be either a
8975 -- string literal, the name of a string constant, a static character or
8976 -- string expression, or another concatenation. Arg cannot be a
8977 -- concatenation here as callers of Resolve_Op_Concat_Arg call it
8978 -- separately on each final operand, past concatenation operations.
8980 if Is_Character_Type (Etype (Arg)) then
8981 if not Is_OK_Static_Expression (Arg) then
8982 Check_SPARK_05_Restriction
8983 ("character operand for concatenation should be static", Arg);
8984 end if;
8986 elsif Is_String_Type (Etype (Arg)) then
8987 if not (Nkind_In (Arg, N_Identifier, N_Expanded_Name)
8988 and then Is_Constant_Object (Entity (Arg)))
8989 and then not Is_OK_Static_Expression (Arg)
8990 then
8991 Check_SPARK_05_Restriction
8992 ("string operand for concatenation should be static", Arg);
8993 end if;
8995 -- Do not issue error on an operand that is neither a character nor a
8996 -- string, as the error is issued in Resolve_Op_Concat.
8998 else
8999 null;
9000 end if;
9002 Check_Unset_Reference (Arg);
9003 end Resolve_Op_Concat_Arg;
9005 -----------------------------
9006 -- Resolve_Op_Concat_First --
9007 -----------------------------
9009 procedure Resolve_Op_Concat_First (N : Node_Id; Typ : Entity_Id) is
9010 Btyp : constant Entity_Id := Base_Type (Typ);
9011 Op1 : constant Node_Id := Left_Opnd (N);
9012 Op2 : constant Node_Id := Right_Opnd (N);
9014 begin
9015 -- The parser folds an enormous sequence of concatenations of string
9016 -- literals into "" & "...", where the Is_Folded_In_Parser flag is set
9017 -- in the right operand. If the expression resolves to a predefined "&"
9018 -- operator, all is well. Otherwise, the parser's folding is wrong, so
9019 -- we give an error. See P_Simple_Expression in Par.Ch4.
9021 if Nkind (Op2) = N_String_Literal
9022 and then Is_Folded_In_Parser (Op2)
9023 and then Ekind (Entity (N)) = E_Function
9024 then
9025 pragma Assert (Nkind (Op1) = N_String_Literal -- should be ""
9026 and then String_Length (Strval (Op1)) = 0);
9027 Error_Msg_N ("too many user-defined concatenations", N);
9028 return;
9029 end if;
9031 Set_Etype (N, Btyp);
9033 if Is_Limited_Composite (Btyp) then
9034 Error_Msg_N ("concatenation not available for limited array", N);
9035 Explain_Limited_Type (Btyp, N);
9036 end if;
9037 end Resolve_Op_Concat_First;
9039 ----------------------------
9040 -- Resolve_Op_Concat_Rest --
9041 ----------------------------
9043 procedure Resolve_Op_Concat_Rest (N : Node_Id; Typ : Entity_Id) is
9044 Op1 : constant Node_Id := Left_Opnd (N);
9045 Op2 : constant Node_Id := Right_Opnd (N);
9047 begin
9048 Resolve_Op_Concat_Arg (N, Op2, Typ, Is_Component_Right_Opnd (N));
9050 Generate_Operator_Reference (N, Typ);
9052 if Is_String_Type (Typ) then
9053 Eval_Concatenation (N);
9054 end if;
9056 -- If this is not a static concatenation, but the result is a string
9057 -- type (and not an array of strings) ensure that static string operands
9058 -- have their subtypes properly constructed.
9060 if Nkind (N) /= N_String_Literal
9061 and then Is_Character_Type (Component_Type (Typ))
9062 then
9063 Set_String_Literal_Subtype (Op1, Typ);
9064 Set_String_Literal_Subtype (Op2, Typ);
9065 end if;
9066 end Resolve_Op_Concat_Rest;
9068 ----------------------
9069 -- Resolve_Op_Expon --
9070 ----------------------
9072 procedure Resolve_Op_Expon (N : Node_Id; Typ : Entity_Id) is
9073 B_Typ : constant Entity_Id := Base_Type (Typ);
9075 begin
9076 -- Catch attempts to do fixed-point exponentiation with universal
9077 -- operands, which is a case where the illegality is not caught during
9078 -- normal operator analysis. This is not done in preanalysis mode
9079 -- since the tree is not fully decorated during preanalysis.
9081 if Full_Analysis then
9082 if Is_Fixed_Point_Type (Typ) and then Comes_From_Source (N) then
9083 Error_Msg_N ("exponentiation not available for fixed point", N);
9084 return;
9086 elsif Nkind (Parent (N)) in N_Op
9087 and then Is_Fixed_Point_Type (Etype (Parent (N)))
9088 and then Etype (N) = Universal_Real
9089 and then Comes_From_Source (N)
9090 then
9091 Error_Msg_N ("exponentiation not available for fixed point", N);
9092 return;
9093 end if;
9094 end if;
9096 if Comes_From_Source (N)
9097 and then Ekind (Entity (N)) = E_Function
9098 and then Is_Imported (Entity (N))
9099 and then Is_Intrinsic_Subprogram (Entity (N))
9100 then
9101 Resolve_Intrinsic_Operator (N, Typ);
9102 return;
9103 end if;
9105 if Etype (Left_Opnd (N)) = Universal_Integer
9106 or else Etype (Left_Opnd (N)) = Universal_Real
9107 then
9108 Check_For_Visible_Operator (N, B_Typ);
9109 end if;
9111 -- We do the resolution using the base type, because intermediate values
9112 -- in expressions are always of the base type, not a subtype of it.
9114 Resolve (Left_Opnd (N), B_Typ);
9115 Resolve (Right_Opnd (N), Standard_Integer);
9117 -- For integer types, right argument must be in Natural range
9119 if Is_Integer_Type (Typ) then
9120 Apply_Scalar_Range_Check (Right_Opnd (N), Standard_Natural);
9121 end if;
9123 Check_Unset_Reference (Left_Opnd (N));
9124 Check_Unset_Reference (Right_Opnd (N));
9126 Set_Etype (N, B_Typ);
9127 Generate_Operator_Reference (N, B_Typ);
9129 Analyze_Dimension (N);
9131 if Ada_Version >= Ada_2012 and then Has_Dimension_System (B_Typ) then
9132 -- Evaluate the exponentiation operator for dimensioned type
9134 Eval_Op_Expon_For_Dimensioned_Type (N, B_Typ);
9135 else
9136 Eval_Op_Expon (N);
9137 end if;
9139 -- Set overflow checking bit. Much cleverer code needed here eventually
9140 -- and perhaps the Resolve routines should be separated for the various
9141 -- arithmetic operations, since they will need different processing. ???
9143 if Nkind (N) in N_Op then
9144 if not Overflow_Checks_Suppressed (Etype (N)) then
9145 Enable_Overflow_Check (N);
9146 end if;
9147 end if;
9148 end Resolve_Op_Expon;
9150 --------------------
9151 -- Resolve_Op_Not --
9152 --------------------
9154 procedure Resolve_Op_Not (N : Node_Id; Typ : Entity_Id) is
9155 B_Typ : Entity_Id;
9157 function Parent_Is_Boolean return Boolean;
9158 -- This function determines if the parent node is a boolean operator or
9159 -- operation (comparison op, membership test, or short circuit form) and
9160 -- the not in question is the left operand of this operation. Note that
9161 -- if the not is in parens, then false is returned.
9163 -----------------------
9164 -- Parent_Is_Boolean --
9165 -----------------------
9167 function Parent_Is_Boolean return Boolean is
9168 begin
9169 if Paren_Count (N) /= 0 then
9170 return False;
9172 else
9173 case Nkind (Parent (N)) is
9174 when N_Op_And |
9175 N_Op_Eq |
9176 N_Op_Ge |
9177 N_Op_Gt |
9178 N_Op_Le |
9179 N_Op_Lt |
9180 N_Op_Ne |
9181 N_Op_Or |
9182 N_Op_Xor |
9183 N_In |
9184 N_Not_In |
9185 N_And_Then |
9186 N_Or_Else =>
9188 return Left_Opnd (Parent (N)) = N;
9190 when others =>
9191 return False;
9192 end case;
9193 end if;
9194 end Parent_Is_Boolean;
9196 -- Start of processing for Resolve_Op_Not
9198 begin
9199 -- Predefined operations on scalar types yield the base type. On the
9200 -- other hand, logical operations on arrays yield the type of the
9201 -- arguments (and the context).
9203 if Is_Array_Type (Typ) then
9204 B_Typ := Typ;
9205 else
9206 B_Typ := Base_Type (Typ);
9207 end if;
9209 -- Straightforward case of incorrect arguments
9211 if not Valid_Boolean_Arg (Typ) then
9212 Error_Msg_N ("invalid operand type for operator&", N);
9213 Set_Etype (N, Any_Type);
9214 return;
9216 -- Special case of probable missing parens
9218 elsif Typ = Universal_Integer or else Typ = Any_Modular then
9219 if Parent_Is_Boolean then
9220 Error_Msg_N
9221 ("operand of not must be enclosed in parentheses",
9222 Right_Opnd (N));
9223 else
9224 Error_Msg_N
9225 ("no modular type available in this context", N);
9226 end if;
9228 Set_Etype (N, Any_Type);
9229 return;
9231 -- OK resolution of NOT
9233 else
9234 -- Warn if non-boolean types involved. This is a case like not a < b
9235 -- where a and b are modular, where we will get (not a) < b and most
9236 -- likely not (a < b) was intended.
9238 if Warn_On_Questionable_Missing_Parens
9239 and then not Is_Boolean_Type (Typ)
9240 and then Parent_Is_Boolean
9241 then
9242 Error_Msg_N ("?q?not expression should be parenthesized here!", N);
9243 end if;
9245 -- Warn on double negation if checking redundant constructs
9247 if Warn_On_Redundant_Constructs
9248 and then Comes_From_Source (N)
9249 and then Comes_From_Source (Right_Opnd (N))
9250 and then Root_Type (Typ) = Standard_Boolean
9251 and then Nkind (Right_Opnd (N)) = N_Op_Not
9252 then
9253 Error_Msg_N ("redundant double negation?r?", N);
9254 end if;
9256 -- Complete resolution and evaluation of NOT
9258 Resolve (Right_Opnd (N), B_Typ);
9259 Check_Unset_Reference (Right_Opnd (N));
9260 Set_Etype (N, B_Typ);
9261 Generate_Operator_Reference (N, B_Typ);
9262 Eval_Op_Not (N);
9263 end if;
9264 end Resolve_Op_Not;
9266 -----------------------------
9267 -- Resolve_Operator_Symbol --
9268 -----------------------------
9270 -- Nothing to be done, all resolved already
9272 procedure Resolve_Operator_Symbol (N : Node_Id; Typ : Entity_Id) is
9273 pragma Warnings (Off, N);
9274 pragma Warnings (Off, Typ);
9276 begin
9277 null;
9278 end Resolve_Operator_Symbol;
9280 ----------------------------------
9281 -- Resolve_Qualified_Expression --
9282 ----------------------------------
9284 procedure Resolve_Qualified_Expression (N : Node_Id; Typ : Entity_Id) is
9285 pragma Warnings (Off, Typ);
9287 Target_Typ : constant Entity_Id := Entity (Subtype_Mark (N));
9288 Expr : constant Node_Id := Expression (N);
9290 begin
9291 Resolve (Expr, Target_Typ);
9293 -- Protect call to Matching_Static_Array_Bounds to avoid costly
9294 -- operation if not needed.
9296 if Restriction_Check_Required (SPARK_05)
9297 and then Is_Array_Type (Target_Typ)
9298 and then Is_Array_Type (Etype (Expr))
9299 and then Etype (Expr) /= Any_Composite -- or else Expr in error
9300 and then not Matching_Static_Array_Bounds (Target_Typ, Etype (Expr))
9301 then
9302 Check_SPARK_05_Restriction
9303 ("array types should have matching static bounds", N);
9304 end if;
9306 -- A qualified expression requires an exact match of the type, class-
9307 -- wide matching is not allowed. However, if the qualifying type is
9308 -- specific and the expression has a class-wide type, it may still be
9309 -- okay, since it can be the result of the expansion of a call to a
9310 -- dispatching function, so we also have to check class-wideness of the
9311 -- type of the expression's original node.
9313 if (Is_Class_Wide_Type (Target_Typ)
9314 or else
9315 (Is_Class_Wide_Type (Etype (Expr))
9316 and then Is_Class_Wide_Type (Etype (Original_Node (Expr)))))
9317 and then Base_Type (Etype (Expr)) /= Base_Type (Target_Typ)
9318 then
9319 Wrong_Type (Expr, Target_Typ);
9320 end if;
9322 -- If the target type is unconstrained, then we reset the type of the
9323 -- result from the type of the expression. For other cases, the actual
9324 -- subtype of the expression is the target type.
9326 if Is_Composite_Type (Target_Typ)
9327 and then not Is_Constrained (Target_Typ)
9328 then
9329 Set_Etype (N, Etype (Expr));
9330 end if;
9332 Analyze_Dimension (N);
9333 Eval_Qualified_Expression (N);
9335 -- If we still have a qualified expression after the static evaluation,
9336 -- then apply a scalar range check if needed. The reason that we do this
9337 -- after the Eval call is that otherwise, the application of the range
9338 -- check may convert an illegal static expression and result in warning
9339 -- rather than giving an error (e.g Integer'(Integer'Last + 1)).
9341 if Nkind (N) = N_Qualified_Expression and then Is_Scalar_Type (Typ) then
9342 Apply_Scalar_Range_Check (Expr, Typ);
9343 end if;
9344 end Resolve_Qualified_Expression;
9346 ------------------------------
9347 -- Resolve_Raise_Expression --
9348 ------------------------------
9350 procedure Resolve_Raise_Expression (N : Node_Id; Typ : Entity_Id) is
9351 begin
9352 if Typ = Raise_Type then
9353 Error_Msg_N ("cannot find unique type for raise expression", N);
9354 Set_Etype (N, Any_Type);
9355 else
9356 Set_Etype (N, Typ);
9357 end if;
9358 end Resolve_Raise_Expression;
9360 -------------------
9361 -- Resolve_Range --
9362 -------------------
9364 procedure Resolve_Range (N : Node_Id; Typ : Entity_Id) is
9365 L : constant Node_Id := Low_Bound (N);
9366 H : constant Node_Id := High_Bound (N);
9368 function First_Last_Ref return Boolean;
9369 -- Returns True if N is of the form X'First .. X'Last where X is the
9370 -- same entity for both attributes.
9372 --------------------
9373 -- First_Last_Ref --
9374 --------------------
9376 function First_Last_Ref return Boolean is
9377 Lorig : constant Node_Id := Original_Node (L);
9378 Horig : constant Node_Id := Original_Node (H);
9380 begin
9381 if Nkind (Lorig) = N_Attribute_Reference
9382 and then Nkind (Horig) = N_Attribute_Reference
9383 and then Attribute_Name (Lorig) = Name_First
9384 and then Attribute_Name (Horig) = Name_Last
9385 then
9386 declare
9387 PL : constant Node_Id := Prefix (Lorig);
9388 PH : constant Node_Id := Prefix (Horig);
9389 begin
9390 if Is_Entity_Name (PL)
9391 and then Is_Entity_Name (PH)
9392 and then Entity (PL) = Entity (PH)
9393 then
9394 return True;
9395 end if;
9396 end;
9397 end if;
9399 return False;
9400 end First_Last_Ref;
9402 -- Start of processing for Resolve_Range
9404 begin
9405 Set_Etype (N, Typ);
9406 Resolve (L, Typ);
9407 Resolve (H, Typ);
9409 -- Check for inappropriate range on unordered enumeration type
9411 if Bad_Unordered_Enumeration_Reference (N, Typ)
9413 -- Exclude X'First .. X'Last if X is the same entity for both
9415 and then not First_Last_Ref
9416 then
9417 Error_Msg_Sloc := Sloc (Typ);
9418 Error_Msg_NE
9419 ("subrange of unordered enumeration type& declared#?U?", N, Typ);
9420 end if;
9422 Check_Unset_Reference (L);
9423 Check_Unset_Reference (H);
9425 -- We have to check the bounds for being within the base range as
9426 -- required for a non-static context. Normally this is automatic and
9427 -- done as part of evaluating expressions, but the N_Range node is an
9428 -- exception, since in GNAT we consider this node to be a subexpression,
9429 -- even though in Ada it is not. The circuit in Sem_Eval could check for
9430 -- this, but that would put the test on the main evaluation path for
9431 -- expressions.
9433 Check_Non_Static_Context (L);
9434 Check_Non_Static_Context (H);
9436 -- Check for an ambiguous range over character literals. This will
9437 -- happen with a membership test involving only literals.
9439 if Typ = Any_Character then
9440 Ambiguous_Character (L);
9441 Set_Etype (N, Any_Type);
9442 return;
9443 end if;
9445 -- If bounds are static, constant-fold them, so size computations are
9446 -- identical between front-end and back-end. Do not perform this
9447 -- transformation while analyzing generic units, as type information
9448 -- would be lost when reanalyzing the constant node in the instance.
9450 if Is_Discrete_Type (Typ) and then Expander_Active then
9451 if Is_OK_Static_Expression (L) then
9452 Fold_Uint (L, Expr_Value (L), Is_OK_Static_Expression (L));
9453 end if;
9455 if Is_OK_Static_Expression (H) then
9456 Fold_Uint (H, Expr_Value (H), Is_OK_Static_Expression (H));
9457 end if;
9458 end if;
9459 end Resolve_Range;
9461 --------------------------
9462 -- Resolve_Real_Literal --
9463 --------------------------
9465 procedure Resolve_Real_Literal (N : Node_Id; Typ : Entity_Id) is
9466 Actual_Typ : constant Entity_Id := Etype (N);
9468 begin
9469 -- Special processing for fixed-point literals to make sure that the
9470 -- value is an exact multiple of small where this is required. We skip
9471 -- this for the universal real case, and also for generic types.
9473 if Is_Fixed_Point_Type (Typ)
9474 and then Typ /= Universal_Fixed
9475 and then Typ /= Any_Fixed
9476 and then not Is_Generic_Type (Typ)
9477 then
9478 declare
9479 Val : constant Ureal := Realval (N);
9480 Cintr : constant Ureal := Val / Small_Value (Typ);
9481 Cint : constant Uint := UR_Trunc (Cintr);
9482 Den : constant Uint := Norm_Den (Cintr);
9483 Stat : Boolean;
9485 begin
9486 -- Case of literal is not an exact multiple of the Small
9488 if Den /= 1 then
9490 -- For a source program literal for a decimal fixed-point type,
9491 -- this is statically illegal (RM 4.9(36)).
9493 if Is_Decimal_Fixed_Point_Type (Typ)
9494 and then Actual_Typ = Universal_Real
9495 and then Comes_From_Source (N)
9496 then
9497 Error_Msg_N ("value has extraneous low order digits", N);
9498 end if;
9500 -- Generate a warning if literal from source
9502 if Is_OK_Static_Expression (N)
9503 and then Warn_On_Bad_Fixed_Value
9504 then
9505 Error_Msg_N
9506 ("?b?static fixed-point value is not a multiple of Small!",
9508 end if;
9510 -- Replace literal by a value that is the exact representation
9511 -- of a value of the type, i.e. a multiple of the small value,
9512 -- by truncation, since Machine_Rounds is false for all GNAT
9513 -- fixed-point types (RM 4.9(38)).
9515 Stat := Is_OK_Static_Expression (N);
9516 Rewrite (N,
9517 Make_Real_Literal (Sloc (N),
9518 Realval => Small_Value (Typ) * Cint));
9520 Set_Is_Static_Expression (N, Stat);
9521 end if;
9523 -- In all cases, set the corresponding integer field
9525 Set_Corresponding_Integer_Value (N, Cint);
9526 end;
9527 end if;
9529 -- Now replace the actual type by the expected type as usual
9531 Set_Etype (N, Typ);
9532 Eval_Real_Literal (N);
9533 end Resolve_Real_Literal;
9535 -----------------------
9536 -- Resolve_Reference --
9537 -----------------------
9539 procedure Resolve_Reference (N : Node_Id; Typ : Entity_Id) is
9540 P : constant Node_Id := Prefix (N);
9542 begin
9543 -- Replace general access with specific type
9545 if Ekind (Etype (N)) = E_Allocator_Type then
9546 Set_Etype (N, Base_Type (Typ));
9547 end if;
9549 Resolve (P, Designated_Type (Etype (N)));
9551 -- If we are taking the reference of a volatile entity, then treat it as
9552 -- a potential modification of this entity. This is too conservative,
9553 -- but necessary because remove side effects can cause transformations
9554 -- of normal assignments into reference sequences that otherwise fail to
9555 -- notice the modification.
9557 if Is_Entity_Name (P) and then Treat_As_Volatile (Entity (P)) then
9558 Note_Possible_Modification (P, Sure => False);
9559 end if;
9560 end Resolve_Reference;
9562 --------------------------------
9563 -- Resolve_Selected_Component --
9564 --------------------------------
9566 procedure Resolve_Selected_Component (N : Node_Id; Typ : Entity_Id) is
9567 Comp : Entity_Id;
9568 Comp1 : Entity_Id := Empty; -- prevent junk warning
9569 P : constant Node_Id := Prefix (N);
9570 S : constant Node_Id := Selector_Name (N);
9571 T : Entity_Id := Etype (P);
9572 I : Interp_Index;
9573 I1 : Interp_Index := 0; -- prevent junk warning
9574 It : Interp;
9575 It1 : Interp;
9576 Found : Boolean;
9578 function Init_Component return Boolean;
9579 -- Check whether this is the initialization of a component within an
9580 -- init proc (by assignment or call to another init proc). If true,
9581 -- there is no need for a discriminant check.
9583 --------------------
9584 -- Init_Component --
9585 --------------------
9587 function Init_Component return Boolean is
9588 begin
9589 return Inside_Init_Proc
9590 and then Nkind (Prefix (N)) = N_Identifier
9591 and then Chars (Prefix (N)) = Name_uInit
9592 and then Nkind (Parent (Parent (N))) = N_Case_Statement_Alternative;
9593 end Init_Component;
9595 -- Start of processing for Resolve_Selected_Component
9597 begin
9598 if Is_Overloaded (P) then
9600 -- Use the context type to select the prefix that has a selector
9601 -- of the correct name and type.
9603 Found := False;
9604 Get_First_Interp (P, I, It);
9606 Search : while Present (It.Typ) loop
9607 if Is_Access_Type (It.Typ) then
9608 T := Designated_Type (It.Typ);
9609 else
9610 T := It.Typ;
9611 end if;
9613 -- Locate selected component. For a private prefix the selector
9614 -- can denote a discriminant.
9616 if Is_Record_Type (T) or else Is_Private_Type (T) then
9618 -- The visible components of a class-wide type are those of
9619 -- the root type.
9621 if Is_Class_Wide_Type (T) then
9622 T := Etype (T);
9623 end if;
9625 Comp := First_Entity (T);
9626 while Present (Comp) loop
9627 if Chars (Comp) = Chars (S)
9628 and then Covers (Typ, Etype (Comp))
9629 then
9630 if not Found then
9631 Found := True;
9632 I1 := I;
9633 It1 := It;
9634 Comp1 := Comp;
9636 else
9637 It := Disambiguate (P, I1, I, Any_Type);
9639 if It = No_Interp then
9640 Error_Msg_N
9641 ("ambiguous prefix for selected component", N);
9642 Set_Etype (N, Typ);
9643 return;
9645 else
9646 It1 := It;
9648 -- There may be an implicit dereference. Retrieve
9649 -- designated record type.
9651 if Is_Access_Type (It1.Typ) then
9652 T := Designated_Type (It1.Typ);
9653 else
9654 T := It1.Typ;
9655 end if;
9657 if Scope (Comp1) /= T then
9659 -- Resolution chooses the new interpretation.
9660 -- Find the component with the right name.
9662 Comp1 := First_Entity (T);
9663 while Present (Comp1)
9664 and then Chars (Comp1) /= Chars (S)
9665 loop
9666 Comp1 := Next_Entity (Comp1);
9667 end loop;
9668 end if;
9670 exit Search;
9671 end if;
9672 end if;
9673 end if;
9675 Comp := Next_Entity (Comp);
9676 end loop;
9677 end if;
9679 Get_Next_Interp (I, It);
9680 end loop Search;
9682 -- There must be a legal interpretation at this point
9684 pragma Assert (Found);
9685 Resolve (P, It1.Typ);
9686 Set_Etype (N, Typ);
9687 Set_Entity_With_Checks (S, Comp1);
9689 else
9690 -- Resolve prefix with its type
9692 Resolve (P, T);
9693 end if;
9695 -- Generate cross-reference. We needed to wait until full overloading
9696 -- resolution was complete to do this, since otherwise we can't tell if
9697 -- we are an lvalue or not.
9699 if May_Be_Lvalue (N) then
9700 Generate_Reference (Entity (S), S, 'm');
9701 else
9702 Generate_Reference (Entity (S), S, 'r');
9703 end if;
9705 -- If prefix is an access type, the node will be transformed into an
9706 -- explicit dereference during expansion. The type of the node is the
9707 -- designated type of that of the prefix.
9709 if Is_Access_Type (Etype (P)) then
9710 T := Designated_Type (Etype (P));
9711 Check_Fully_Declared_Prefix (T, P);
9712 else
9713 T := Etype (P);
9714 end if;
9716 -- Set flag for expander if discriminant check required
9718 if Has_Discriminants (T)
9719 and then Ekind_In (Entity (S), E_Component, E_Discriminant)
9720 and then Present (Original_Record_Component (Entity (S)))
9721 and then Ekind (Original_Record_Component (Entity (S))) = E_Component
9722 and then not Discriminant_Checks_Suppressed (T)
9723 and then not Init_Component
9724 then
9725 Set_Do_Discriminant_Check (N);
9726 end if;
9728 if Ekind (Entity (S)) = E_Void then
9729 Error_Msg_N ("premature use of component", S);
9730 end if;
9732 -- If the prefix is a record conversion, this may be a renamed
9733 -- discriminant whose bounds differ from those of the original
9734 -- one, so we must ensure that a range check is performed.
9736 if Nkind (P) = N_Type_Conversion
9737 and then Ekind (Entity (S)) = E_Discriminant
9738 and then Is_Discrete_Type (Typ)
9739 then
9740 Set_Etype (N, Base_Type (Typ));
9741 end if;
9743 -- Note: No Eval processing is required, because the prefix is of a
9744 -- record type, or protected type, and neither can possibly be static.
9746 -- If the record type is atomic, and the component is non-atomic, then
9747 -- this is worth a warning, since we have a situation where the access
9748 -- to the component may cause extra read/writes of the atomic array
9749 -- object, or partial word accesses, both of which may be unexpected.
9751 if Nkind (N) = N_Selected_Component
9752 and then Is_Atomic_Ref_With_Address (N)
9753 and then not Is_Atomic (Entity (S))
9754 and then not Is_Atomic (Etype (Entity (S)))
9755 then
9756 Error_Msg_N
9757 ("??access to non-atomic component of atomic record",
9758 Prefix (N));
9759 Error_Msg_N
9760 ("\??may cause unexpected accesses to atomic object",
9761 Prefix (N));
9762 end if;
9764 Analyze_Dimension (N);
9765 end Resolve_Selected_Component;
9767 -------------------
9768 -- Resolve_Shift --
9769 -------------------
9771 procedure Resolve_Shift (N : Node_Id; Typ : Entity_Id) is
9772 B_Typ : constant Entity_Id := Base_Type (Typ);
9773 L : constant Node_Id := Left_Opnd (N);
9774 R : constant Node_Id := Right_Opnd (N);
9776 begin
9777 -- We do the resolution using the base type, because intermediate values
9778 -- in expressions always are of the base type, not a subtype of it.
9780 Resolve (L, B_Typ);
9781 Resolve (R, Standard_Natural);
9783 Check_Unset_Reference (L);
9784 Check_Unset_Reference (R);
9786 Set_Etype (N, B_Typ);
9787 Generate_Operator_Reference (N, B_Typ);
9788 Eval_Shift (N);
9789 end Resolve_Shift;
9791 ---------------------------
9792 -- Resolve_Short_Circuit --
9793 ---------------------------
9795 procedure Resolve_Short_Circuit (N : Node_Id; Typ : Entity_Id) is
9796 B_Typ : constant Entity_Id := Base_Type (Typ);
9797 L : constant Node_Id := Left_Opnd (N);
9798 R : constant Node_Id := Right_Opnd (N);
9800 begin
9801 -- Ensure all actions associated with the left operand (e.g.
9802 -- finalization of transient controlled objects) are fully evaluated
9803 -- locally within an expression with actions. This is particularly
9804 -- helpful for coverage analysis. However this should not happen in
9805 -- generics.
9807 if Expander_Active then
9808 declare
9809 Reloc_L : constant Node_Id := Relocate_Node (L);
9810 begin
9811 Save_Interps (Old_N => L, New_N => Reloc_L);
9813 Rewrite (L,
9814 Make_Expression_With_Actions (Sloc (L),
9815 Actions => New_List,
9816 Expression => Reloc_L));
9818 -- Set Comes_From_Source on L to preserve warnings for unset
9819 -- reference.
9821 Set_Comes_From_Source (L, Comes_From_Source (Reloc_L));
9822 end;
9823 end if;
9825 Resolve (L, B_Typ);
9826 Resolve (R, B_Typ);
9828 -- Check for issuing warning for always False assert/check, this happens
9829 -- when assertions are turned off, in which case the pragma Assert/Check
9830 -- was transformed into:
9832 -- if False and then <condition> then ...
9834 -- and we detect this pattern
9836 if Warn_On_Assertion_Failure
9837 and then Is_Entity_Name (R)
9838 and then Entity (R) = Standard_False
9839 and then Nkind (Parent (N)) = N_If_Statement
9840 and then Nkind (N) = N_And_Then
9841 and then Is_Entity_Name (L)
9842 and then Entity (L) = Standard_False
9843 then
9844 declare
9845 Orig : constant Node_Id := Original_Node (Parent (N));
9847 begin
9848 -- Special handling of Asssert pragma
9850 if Nkind (Orig) = N_Pragma
9851 and then Pragma_Name (Orig) = Name_Assert
9852 then
9853 declare
9854 Expr : constant Node_Id :=
9855 Original_Node
9856 (Expression
9857 (First (Pragma_Argument_Associations (Orig))));
9859 begin
9860 -- Don't warn if original condition is explicit False,
9861 -- since obviously the failure is expected in this case.
9863 if Is_Entity_Name (Expr)
9864 and then Entity (Expr) = Standard_False
9865 then
9866 null;
9868 -- Issue warning. We do not want the deletion of the
9869 -- IF/AND-THEN to take this message with it. We achieve this
9870 -- by making sure that the expanded code points to the Sloc
9871 -- of the expression, not the original pragma.
9873 else
9874 -- Note: Use Error_Msg_F here rather than Error_Msg_N.
9875 -- The source location of the expression is not usually
9876 -- the best choice here. For example, it gets located on
9877 -- the last AND keyword in a chain of boolean expressiond
9878 -- AND'ed together. It is best to put the message on the
9879 -- first character of the assertion, which is the effect
9880 -- of the First_Node call here.
9882 Error_Msg_F
9883 ("?A?assertion would fail at run time!",
9884 Expression
9885 (First (Pragma_Argument_Associations (Orig))));
9886 end if;
9887 end;
9889 -- Similar processing for Check pragma
9891 elsif Nkind (Orig) = N_Pragma
9892 and then Pragma_Name (Orig) = Name_Check
9893 then
9894 -- Don't want to warn if original condition is explicit False
9896 declare
9897 Expr : constant Node_Id :=
9898 Original_Node
9899 (Expression
9900 (Next (First (Pragma_Argument_Associations (Orig)))));
9901 begin
9902 if Is_Entity_Name (Expr)
9903 and then Entity (Expr) = Standard_False
9904 then
9905 null;
9907 -- Post warning
9909 else
9910 -- Again use Error_Msg_F rather than Error_Msg_N, see
9911 -- comment above for an explanation of why we do this.
9913 Error_Msg_F
9914 ("?A?check would fail at run time!",
9915 Expression
9916 (Last (Pragma_Argument_Associations (Orig))));
9917 end if;
9918 end;
9919 end if;
9920 end;
9921 end if;
9923 -- Continue with processing of short circuit
9925 Check_Unset_Reference (L);
9926 Check_Unset_Reference (R);
9928 Set_Etype (N, B_Typ);
9929 Eval_Short_Circuit (N);
9930 end Resolve_Short_Circuit;
9932 -------------------
9933 -- Resolve_Slice --
9934 -------------------
9936 procedure Resolve_Slice (N : Node_Id; Typ : Entity_Id) is
9937 Drange : constant Node_Id := Discrete_Range (N);
9938 Name : constant Node_Id := Prefix (N);
9939 Array_Type : Entity_Id := Empty;
9940 Dexpr : Node_Id := Empty;
9941 Index_Type : Entity_Id;
9943 begin
9944 if Is_Overloaded (Name) then
9946 -- Use the context type to select the prefix that yields the correct
9947 -- array type.
9949 declare
9950 I : Interp_Index;
9951 I1 : Interp_Index := 0;
9952 It : Interp;
9953 P : constant Node_Id := Prefix (N);
9954 Found : Boolean := False;
9956 begin
9957 Get_First_Interp (P, I, It);
9958 while Present (It.Typ) loop
9959 if (Is_Array_Type (It.Typ)
9960 and then Covers (Typ, It.Typ))
9961 or else (Is_Access_Type (It.Typ)
9962 and then Is_Array_Type (Designated_Type (It.Typ))
9963 and then Covers (Typ, Designated_Type (It.Typ)))
9964 then
9965 if Found then
9966 It := Disambiguate (P, I1, I, Any_Type);
9968 if It = No_Interp then
9969 Error_Msg_N ("ambiguous prefix for slicing", N);
9970 Set_Etype (N, Typ);
9971 return;
9972 else
9973 Found := True;
9974 Array_Type := It.Typ;
9975 I1 := I;
9976 end if;
9977 else
9978 Found := True;
9979 Array_Type := It.Typ;
9980 I1 := I;
9981 end if;
9982 end if;
9984 Get_Next_Interp (I, It);
9985 end loop;
9986 end;
9988 else
9989 Array_Type := Etype (Name);
9990 end if;
9992 Resolve (Name, Array_Type);
9994 if Is_Access_Type (Array_Type) then
9995 Apply_Access_Check (N);
9996 Array_Type := Designated_Type (Array_Type);
9998 -- If the prefix is an access to an unconstrained array, we must use
9999 -- the actual subtype of the object to perform the index checks. The
10000 -- object denoted by the prefix is implicit in the node, so we build
10001 -- an explicit representation for it in order to compute the actual
10002 -- subtype.
10004 if not Is_Constrained (Array_Type) then
10005 Remove_Side_Effects (Prefix (N));
10007 declare
10008 Obj : constant Node_Id :=
10009 Make_Explicit_Dereference (Sloc (N),
10010 Prefix => New_Copy_Tree (Prefix (N)));
10011 begin
10012 Set_Etype (Obj, Array_Type);
10013 Set_Parent (Obj, Parent (N));
10014 Array_Type := Get_Actual_Subtype (Obj);
10015 end;
10016 end if;
10018 elsif Is_Entity_Name (Name)
10019 or else Nkind (Name) = N_Explicit_Dereference
10020 or else (Nkind (Name) = N_Function_Call
10021 and then not Is_Constrained (Etype (Name)))
10022 then
10023 Array_Type := Get_Actual_Subtype (Name);
10025 -- If the name is a selected component that depends on discriminants,
10026 -- build an actual subtype for it. This can happen only when the name
10027 -- itself is overloaded; otherwise the actual subtype is created when
10028 -- the selected component is analyzed.
10030 elsif Nkind (Name) = N_Selected_Component
10031 and then Full_Analysis
10032 and then Depends_On_Discriminant (First_Index (Array_Type))
10033 then
10034 declare
10035 Act_Decl : constant Node_Id :=
10036 Build_Actual_Subtype_Of_Component (Array_Type, Name);
10037 begin
10038 Insert_Action (N, Act_Decl);
10039 Array_Type := Defining_Identifier (Act_Decl);
10040 end;
10042 -- Maybe this should just be "else", instead of checking for the
10043 -- specific case of slice??? This is needed for the case where the
10044 -- prefix is an Image attribute, which gets expanded to a slice, and so
10045 -- has a constrained subtype which we want to use for the slice range
10046 -- check applied below (the range check won't get done if the
10047 -- unconstrained subtype of the 'Image is used).
10049 elsif Nkind (Name) = N_Slice then
10050 Array_Type := Etype (Name);
10051 end if;
10053 -- Obtain the type of the array index
10055 if Ekind (Array_Type) = E_String_Literal_Subtype then
10056 Index_Type := Etype (String_Literal_Low_Bound (Array_Type));
10057 else
10058 Index_Type := Etype (First_Index (Array_Type));
10059 end if;
10061 -- If name was overloaded, set slice type correctly now
10063 Set_Etype (N, Array_Type);
10065 -- Handle the generation of a range check that compares the array index
10066 -- against the discrete_range. The check is not applied to internally
10067 -- built nodes associated with the expansion of dispatch tables. Check
10068 -- that Ada.Tags has already been loaded to avoid extra dependencies on
10069 -- the unit.
10071 if Tagged_Type_Expansion
10072 and then RTU_Loaded (Ada_Tags)
10073 and then Nkind (Prefix (N)) = N_Selected_Component
10074 and then Present (Entity (Selector_Name (Prefix (N))))
10075 and then Entity (Selector_Name (Prefix (N))) =
10076 RTE_Record_Component (RE_Prims_Ptr)
10077 then
10078 null;
10080 -- The discrete_range is specified by a subtype indication. Create a
10081 -- shallow copy and inherit the type, parent and source location from
10082 -- the discrete_range. This ensures that the range check is inserted
10083 -- relative to the slice and that the runtime exception points to the
10084 -- proper construct.
10086 elsif Is_Entity_Name (Drange) then
10087 Dexpr := New_Copy (Scalar_Range (Entity (Drange)));
10089 Set_Etype (Dexpr, Etype (Drange));
10090 Set_Parent (Dexpr, Parent (Drange));
10091 Set_Sloc (Dexpr, Sloc (Drange));
10093 -- The discrete_range is a regular range. Resolve the bounds and remove
10094 -- their side effects.
10096 else
10097 Resolve (Drange, Base_Type (Index_Type));
10099 if Nkind (Drange) = N_Range then
10100 Force_Evaluation (Low_Bound (Drange));
10101 Force_Evaluation (High_Bound (Drange));
10103 Dexpr := Drange;
10104 end if;
10105 end if;
10107 if Present (Dexpr) then
10108 Apply_Range_Check (Dexpr, Index_Type);
10109 end if;
10111 Set_Slice_Subtype (N);
10113 -- Check bad use of type with predicates
10115 declare
10116 Subt : Entity_Id;
10118 begin
10119 if Nkind (Drange) = N_Subtype_Indication
10120 and then Has_Predicates (Entity (Subtype_Mark (Drange)))
10121 then
10122 Subt := Entity (Subtype_Mark (Drange));
10123 else
10124 Subt := Etype (Drange);
10125 end if;
10127 if Has_Predicates (Subt) then
10128 Bad_Predicated_Subtype_Use
10129 ("subtype& has predicate, not allowed in slice", Drange, Subt);
10130 end if;
10131 end;
10133 -- Otherwise here is where we check suspicious indexes
10135 if Nkind (Drange) = N_Range then
10136 Warn_On_Suspicious_Index (Name, Low_Bound (Drange));
10137 Warn_On_Suspicious_Index (Name, High_Bound (Drange));
10138 end if;
10140 Analyze_Dimension (N);
10141 Eval_Slice (N);
10142 end Resolve_Slice;
10144 ----------------------------
10145 -- Resolve_String_Literal --
10146 ----------------------------
10148 procedure Resolve_String_Literal (N : Node_Id; Typ : Entity_Id) is
10149 C_Typ : constant Entity_Id := Component_Type (Typ);
10150 R_Typ : constant Entity_Id := Root_Type (C_Typ);
10151 Loc : constant Source_Ptr := Sloc (N);
10152 Str : constant String_Id := Strval (N);
10153 Strlen : constant Nat := String_Length (Str);
10154 Subtype_Id : Entity_Id;
10155 Need_Check : Boolean;
10157 begin
10158 -- For a string appearing in a concatenation, defer creation of the
10159 -- string_literal_subtype until the end of the resolution of the
10160 -- concatenation, because the literal may be constant-folded away. This
10161 -- is a useful optimization for long concatenation expressions.
10163 -- If the string is an aggregate built for a single character (which
10164 -- happens in a non-static context) or a is null string to which special
10165 -- checks may apply, we build the subtype. Wide strings must also get a
10166 -- string subtype if they come from a one character aggregate. Strings
10167 -- generated by attributes might be static, but it is often hard to
10168 -- determine whether the enclosing context is static, so we generate
10169 -- subtypes for them as well, thus losing some rarer optimizations ???
10170 -- Same for strings that come from a static conversion.
10172 Need_Check :=
10173 (Strlen = 0 and then Typ /= Standard_String)
10174 or else Nkind (Parent (N)) /= N_Op_Concat
10175 or else (N /= Left_Opnd (Parent (N))
10176 and then N /= Right_Opnd (Parent (N)))
10177 or else ((Typ = Standard_Wide_String
10178 or else Typ = Standard_Wide_Wide_String)
10179 and then Nkind (Original_Node (N)) /= N_String_Literal);
10181 -- If the resolving type is itself a string literal subtype, we can just
10182 -- reuse it, since there is no point in creating another.
10184 if Ekind (Typ) = E_String_Literal_Subtype then
10185 Subtype_Id := Typ;
10187 elsif Nkind (Parent (N)) = N_Op_Concat
10188 and then not Need_Check
10189 and then not Nkind_In (Original_Node (N), N_Character_Literal,
10190 N_Attribute_Reference,
10191 N_Qualified_Expression,
10192 N_Type_Conversion)
10193 then
10194 Subtype_Id := Typ;
10196 -- Do not generate a string literal subtype for the default expression
10197 -- of a formal parameter in GNATprove mode. This is because the string
10198 -- subtype is associated with the freezing actions of the subprogram,
10199 -- however freezing is disabled in GNATprove mode and as a result the
10200 -- subtype is unavailable.
10202 elsif GNATprove_Mode
10203 and then Nkind (Parent (N)) = N_Parameter_Specification
10204 then
10205 Subtype_Id := Typ;
10207 -- Otherwise we must create a string literal subtype. Note that the
10208 -- whole idea of string literal subtypes is simply to avoid the need
10209 -- for building a full fledged array subtype for each literal.
10211 else
10212 Set_String_Literal_Subtype (N, Typ);
10213 Subtype_Id := Etype (N);
10214 end if;
10216 if Nkind (Parent (N)) /= N_Op_Concat
10217 or else Need_Check
10218 then
10219 Set_Etype (N, Subtype_Id);
10220 Eval_String_Literal (N);
10221 end if;
10223 if Is_Limited_Composite (Typ)
10224 or else Is_Private_Composite (Typ)
10225 then
10226 Error_Msg_N ("string literal not available for private array", N);
10227 Set_Etype (N, Any_Type);
10228 return;
10229 end if;
10231 -- The validity of a null string has been checked in the call to
10232 -- Eval_String_Literal.
10234 if Strlen = 0 then
10235 return;
10237 -- Always accept string literal with component type Any_Character, which
10238 -- occurs in error situations and in comparisons of literals, both of
10239 -- which should accept all literals.
10241 elsif R_Typ = Any_Character then
10242 return;
10244 -- If the type is bit-packed, then we always transform the string
10245 -- literal into a full fledged aggregate.
10247 elsif Is_Bit_Packed_Array (Typ) then
10248 null;
10250 -- Deal with cases of Wide_Wide_String, Wide_String, and String
10252 else
10253 -- For Standard.Wide_Wide_String, or any other type whose component
10254 -- type is Standard.Wide_Wide_Character, we know that all the
10255 -- characters in the string must be acceptable, since the parser
10256 -- accepted the characters as valid character literals.
10258 if R_Typ = Standard_Wide_Wide_Character then
10259 null;
10261 -- For the case of Standard.String, or any other type whose component
10262 -- type is Standard.Character, we must make sure that there are no
10263 -- wide characters in the string, i.e. that it is entirely composed
10264 -- of characters in range of type Character.
10266 -- If the string literal is the result of a static concatenation, the
10267 -- test has already been performed on the components, and need not be
10268 -- repeated.
10270 elsif R_Typ = Standard_Character
10271 and then Nkind (Original_Node (N)) /= N_Op_Concat
10272 then
10273 for J in 1 .. Strlen loop
10274 if not In_Character_Range (Get_String_Char (Str, J)) then
10276 -- If we are out of range, post error. This is one of the
10277 -- very few places that we place the flag in the middle of
10278 -- a token, right under the offending wide character. Not
10279 -- quite clear if this is right wrt wide character encoding
10280 -- sequences, but it's only an error message.
10282 Error_Msg
10283 ("literal out of range of type Standard.Character",
10284 Source_Ptr (Int (Loc) + J));
10285 return;
10286 end if;
10287 end loop;
10289 -- For the case of Standard.Wide_String, or any other type whose
10290 -- component type is Standard.Wide_Character, we must make sure that
10291 -- there are no wide characters in the string, i.e. that it is
10292 -- entirely composed of characters in range of type Wide_Character.
10294 -- If the string literal is the result of a static concatenation,
10295 -- the test has already been performed on the components, and need
10296 -- not be repeated.
10298 elsif R_Typ = Standard_Wide_Character
10299 and then Nkind (Original_Node (N)) /= N_Op_Concat
10300 then
10301 for J in 1 .. Strlen loop
10302 if not In_Wide_Character_Range (Get_String_Char (Str, J)) then
10304 -- If we are out of range, post error. This is one of the
10305 -- very few places that we place the flag in the middle of
10306 -- a token, right under the offending wide character.
10308 -- This is not quite right, because characters in general
10309 -- will take more than one character position ???
10311 Error_Msg
10312 ("literal out of range of type Standard.Wide_Character",
10313 Source_Ptr (Int (Loc) + J));
10314 return;
10315 end if;
10316 end loop;
10318 -- If the root type is not a standard character, then we will convert
10319 -- the string into an aggregate and will let the aggregate code do
10320 -- the checking. Standard Wide_Wide_Character is also OK here.
10322 else
10323 null;
10324 end if;
10326 -- See if the component type of the array corresponding to the string
10327 -- has compile time known bounds. If yes we can directly check
10328 -- whether the evaluation of the string will raise constraint error.
10329 -- Otherwise we need to transform the string literal into the
10330 -- corresponding character aggregate and let the aggregate code do
10331 -- the checking.
10333 if Is_Standard_Character_Type (R_Typ) then
10335 -- Check for the case of full range, where we are definitely OK
10337 if Component_Type (Typ) = Base_Type (Component_Type (Typ)) then
10338 return;
10339 end if;
10341 -- Here the range is not the complete base type range, so check
10343 declare
10344 Comp_Typ_Lo : constant Node_Id :=
10345 Type_Low_Bound (Component_Type (Typ));
10346 Comp_Typ_Hi : constant Node_Id :=
10347 Type_High_Bound (Component_Type (Typ));
10349 Char_Val : Uint;
10351 begin
10352 if Compile_Time_Known_Value (Comp_Typ_Lo)
10353 and then Compile_Time_Known_Value (Comp_Typ_Hi)
10354 then
10355 for J in 1 .. Strlen loop
10356 Char_Val := UI_From_Int (Int (Get_String_Char (Str, J)));
10358 if Char_Val < Expr_Value (Comp_Typ_Lo)
10359 or else Char_Val > Expr_Value (Comp_Typ_Hi)
10360 then
10361 Apply_Compile_Time_Constraint_Error
10362 (N, "character out of range??",
10363 CE_Range_Check_Failed,
10364 Loc => Source_Ptr (Int (Loc) + J));
10365 end if;
10366 end loop;
10368 return;
10369 end if;
10370 end;
10371 end if;
10372 end if;
10374 -- If we got here we meed to transform the string literal into the
10375 -- equivalent qualified positional array aggregate. This is rather
10376 -- heavy artillery for this situation, but it is hard work to avoid.
10378 declare
10379 Lits : constant List_Id := New_List;
10380 P : Source_Ptr := Loc + 1;
10381 C : Char_Code;
10383 begin
10384 -- Build the character literals, we give them source locations that
10385 -- correspond to the string positions, which is a bit tricky given
10386 -- the possible presence of wide character escape sequences.
10388 for J in 1 .. Strlen loop
10389 C := Get_String_Char (Str, J);
10390 Set_Character_Literal_Name (C);
10392 Append_To (Lits,
10393 Make_Character_Literal (P,
10394 Chars => Name_Find,
10395 Char_Literal_Value => UI_From_CC (C)));
10397 if In_Character_Range (C) then
10398 P := P + 1;
10400 -- Should we have a call to Skip_Wide here ???
10402 -- ??? else
10403 -- Skip_Wide (P);
10405 end if;
10406 end loop;
10408 Rewrite (N,
10409 Make_Qualified_Expression (Loc,
10410 Subtype_Mark => New_Occurrence_Of (Typ, Loc),
10411 Expression =>
10412 Make_Aggregate (Loc, Expressions => Lits)));
10414 Analyze_And_Resolve (N, Typ);
10415 end;
10416 end Resolve_String_Literal;
10418 -----------------------------
10419 -- Resolve_Type_Conversion --
10420 -----------------------------
10422 procedure Resolve_Type_Conversion (N : Node_Id; Typ : Entity_Id) is
10423 Conv_OK : constant Boolean := Conversion_OK (N);
10424 Operand : constant Node_Id := Expression (N);
10425 Operand_Typ : constant Entity_Id := Etype (Operand);
10426 Target_Typ : constant Entity_Id := Etype (N);
10427 Rop : Node_Id;
10428 Orig_N : Node_Id;
10429 Orig_T : Node_Id;
10431 Test_Redundant : Boolean := Warn_On_Redundant_Constructs;
10432 -- Set to False to suppress cases where we want to suppress the test
10433 -- for redundancy to avoid possible false positives on this warning.
10435 begin
10436 if not Conv_OK
10437 and then not Valid_Conversion (N, Target_Typ, Operand)
10438 then
10439 return;
10440 end if;
10442 -- If the Operand Etype is Universal_Fixed, then the conversion is
10443 -- never redundant. We need this check because by the time we have
10444 -- finished the rather complex transformation, the conversion looks
10445 -- redundant when it is not.
10447 if Operand_Typ = Universal_Fixed then
10448 Test_Redundant := False;
10450 -- If the operand is marked as Any_Fixed, then special processing is
10451 -- required. This is also a case where we suppress the test for a
10452 -- redundant conversion, since most certainly it is not redundant.
10454 elsif Operand_Typ = Any_Fixed then
10455 Test_Redundant := False;
10457 -- Mixed-mode operation involving a literal. Context must be a fixed
10458 -- type which is applied to the literal subsequently.
10460 if Is_Fixed_Point_Type (Typ) then
10461 Set_Etype (Operand, Universal_Real);
10463 elsif Is_Numeric_Type (Typ)
10464 and then Nkind_In (Operand, N_Op_Multiply, N_Op_Divide)
10465 and then (Etype (Right_Opnd (Operand)) = Universal_Real
10466 or else
10467 Etype (Left_Opnd (Operand)) = Universal_Real)
10468 then
10469 -- Return if expression is ambiguous
10471 if Unique_Fixed_Point_Type (N) = Any_Type then
10472 return;
10474 -- If nothing else, the available fixed type is Duration
10476 else
10477 Set_Etype (Operand, Standard_Duration);
10478 end if;
10480 -- Resolve the real operand with largest available precision
10482 if Etype (Right_Opnd (Operand)) = Universal_Real then
10483 Rop := New_Copy_Tree (Right_Opnd (Operand));
10484 else
10485 Rop := New_Copy_Tree (Left_Opnd (Operand));
10486 end if;
10488 Resolve (Rop, Universal_Real);
10490 -- If the operand is a literal (it could be a non-static and
10491 -- illegal exponentiation) check whether the use of Duration
10492 -- is potentially inaccurate.
10494 if Nkind (Rop) = N_Real_Literal
10495 and then Realval (Rop) /= Ureal_0
10496 and then abs (Realval (Rop)) < Delta_Value (Standard_Duration)
10497 then
10498 Error_Msg_N
10499 ("??universal real operand can only "
10500 & "be interpreted as Duration!", Rop);
10501 Error_Msg_N
10502 ("\??precision will be lost in the conversion!", Rop);
10503 end if;
10505 elsif Is_Numeric_Type (Typ)
10506 and then Nkind (Operand) in N_Op
10507 and then Unique_Fixed_Point_Type (N) /= Any_Type
10508 then
10509 Set_Etype (Operand, Standard_Duration);
10511 else
10512 Error_Msg_N ("invalid context for mixed mode operation", N);
10513 Set_Etype (Operand, Any_Type);
10514 return;
10515 end if;
10516 end if;
10518 Resolve (Operand);
10520 -- In SPARK, a type conversion between array types should be restricted
10521 -- to types which have matching static bounds.
10523 -- Protect call to Matching_Static_Array_Bounds to avoid costly
10524 -- operation if not needed.
10526 if Restriction_Check_Required (SPARK_05)
10527 and then Is_Array_Type (Target_Typ)
10528 and then Is_Array_Type (Operand_Typ)
10529 and then Operand_Typ /= Any_Composite -- or else Operand in error
10530 and then not Matching_Static_Array_Bounds (Target_Typ, Operand_Typ)
10531 then
10532 Check_SPARK_05_Restriction
10533 ("array types should have matching static bounds", N);
10534 end if;
10536 -- In formal mode, the operand of an ancestor type conversion must be an
10537 -- object (not an expression).
10539 if Is_Tagged_Type (Target_Typ)
10540 and then not Is_Class_Wide_Type (Target_Typ)
10541 and then Is_Tagged_Type (Operand_Typ)
10542 and then not Is_Class_Wide_Type (Operand_Typ)
10543 and then Is_Ancestor (Target_Typ, Operand_Typ)
10544 and then not Is_SPARK_05_Object_Reference (Operand)
10545 then
10546 Check_SPARK_05_Restriction ("object required", Operand);
10547 end if;
10549 Analyze_Dimension (N);
10551 -- Note: we do the Eval_Type_Conversion call before applying the
10552 -- required checks for a subtype conversion. This is important, since
10553 -- both are prepared under certain circumstances to change the type
10554 -- conversion to a constraint error node, but in the case of
10555 -- Eval_Type_Conversion this may reflect an illegality in the static
10556 -- case, and we would miss the illegality (getting only a warning
10557 -- message), if we applied the type conversion checks first.
10559 Eval_Type_Conversion (N);
10561 -- Even when evaluation is not possible, we may be able to simplify the
10562 -- conversion or its expression. This needs to be done before applying
10563 -- checks, since otherwise the checks may use the original expression
10564 -- and defeat the simplifications. This is specifically the case for
10565 -- elimination of the floating-point Truncation attribute in
10566 -- float-to-int conversions.
10568 Simplify_Type_Conversion (N);
10570 -- If after evaluation we still have a type conversion, then we may need
10571 -- to apply checks required for a subtype conversion.
10573 -- Skip these type conversion checks if universal fixed operands
10574 -- operands involved, since range checks are handled separately for
10575 -- these cases (in the appropriate Expand routines in unit Exp_Fixd).
10577 if Nkind (N) = N_Type_Conversion
10578 and then not Is_Generic_Type (Root_Type (Target_Typ))
10579 and then Target_Typ /= Universal_Fixed
10580 and then Operand_Typ /= Universal_Fixed
10581 then
10582 Apply_Type_Conversion_Checks (N);
10583 end if;
10585 -- Issue warning for conversion of simple object to its own type. We
10586 -- have to test the original nodes, since they may have been rewritten
10587 -- by various optimizations.
10589 Orig_N := Original_Node (N);
10591 -- Here we test for a redundant conversion if the warning mode is
10592 -- active (and was not locally reset), and we have a type conversion
10593 -- from source not appearing in a generic instance.
10595 if Test_Redundant
10596 and then Nkind (Orig_N) = N_Type_Conversion
10597 and then Comes_From_Source (Orig_N)
10598 and then not In_Instance
10599 then
10600 Orig_N := Original_Node (Expression (Orig_N));
10601 Orig_T := Target_Typ;
10603 -- If the node is part of a larger expression, the Target_Type
10604 -- may not be the original type of the node if the context is a
10605 -- condition. Recover original type to see if conversion is needed.
10607 if Is_Boolean_Type (Orig_T)
10608 and then Nkind (Parent (N)) in N_Op
10609 then
10610 Orig_T := Etype (Parent (N));
10611 end if;
10613 -- If we have an entity name, then give the warning if the entity
10614 -- is the right type, or if it is a loop parameter covered by the
10615 -- original type (that's needed because loop parameters have an
10616 -- odd subtype coming from the bounds).
10618 if (Is_Entity_Name (Orig_N)
10619 and then
10620 (Etype (Entity (Orig_N)) = Orig_T
10621 or else
10622 (Ekind (Entity (Orig_N)) = E_Loop_Parameter
10623 and then Covers (Orig_T, Etype (Entity (Orig_N))))))
10625 -- If not an entity, then type of expression must match
10627 or else Etype (Orig_N) = Orig_T
10628 then
10629 -- One more check, do not give warning if the analyzed conversion
10630 -- has an expression with non-static bounds, and the bounds of the
10631 -- target are static. This avoids junk warnings in cases where the
10632 -- conversion is necessary to establish staticness, for example in
10633 -- a case statement.
10635 if not Is_OK_Static_Subtype (Operand_Typ)
10636 and then Is_OK_Static_Subtype (Target_Typ)
10637 then
10638 null;
10640 -- Finally, if this type conversion occurs in a context requiring
10641 -- a prefix, and the expression is a qualified expression then the
10642 -- type conversion is not redundant, since a qualified expression
10643 -- is not a prefix, whereas a type conversion is. For example, "X
10644 -- := T'(Funx(...)).Y;" is illegal because a selected component
10645 -- requires a prefix, but a type conversion makes it legal: "X :=
10646 -- T(T'(Funx(...))).Y;"
10648 -- In Ada 2012, a qualified expression is a name, so this idiom is
10649 -- no longer needed, but we still suppress the warning because it
10650 -- seems unfriendly for warnings to pop up when you switch to the
10651 -- newer language version.
10653 elsif Nkind (Orig_N) = N_Qualified_Expression
10654 and then Nkind_In (Parent (N), N_Attribute_Reference,
10655 N_Indexed_Component,
10656 N_Selected_Component,
10657 N_Slice,
10658 N_Explicit_Dereference)
10659 then
10660 null;
10662 -- Never warn on conversion to Long_Long_Integer'Base since
10663 -- that is most likely an artifact of the extended overflow
10664 -- checking and comes from complex expanded code.
10666 elsif Orig_T = Base_Type (Standard_Long_Long_Integer) then
10667 null;
10669 -- Here we give the redundant conversion warning. If it is an
10670 -- entity, give the name of the entity in the message. If not,
10671 -- just mention the expression.
10673 -- Shoudn't we test Warn_On_Redundant_Constructs here ???
10675 else
10676 if Is_Entity_Name (Orig_N) then
10677 Error_Msg_Node_2 := Orig_T;
10678 Error_Msg_NE -- CODEFIX
10679 ("??redundant conversion, & is of type &!",
10680 N, Entity (Orig_N));
10681 else
10682 Error_Msg_NE
10683 ("??redundant conversion, expression is of type&!",
10684 N, Orig_T);
10685 end if;
10686 end if;
10687 end if;
10688 end if;
10690 -- Ada 2005 (AI-251): Handle class-wide interface type conversions.
10691 -- No need to perform any interface conversion if the type of the
10692 -- expression coincides with the target type.
10694 if Ada_Version >= Ada_2005
10695 and then Expander_Active
10696 and then Operand_Typ /= Target_Typ
10697 then
10698 declare
10699 Opnd : Entity_Id := Operand_Typ;
10700 Target : Entity_Id := Target_Typ;
10702 begin
10703 -- If the type of the operand is a limited view, use the non-
10704 -- limited view when available.
10706 if From_Limited_With (Opnd)
10707 and then Ekind (Opnd) in Incomplete_Kind
10708 and then Present (Non_Limited_View (Opnd))
10709 then
10710 Opnd := Non_Limited_View (Opnd);
10711 Set_Etype (Expression (N), Opnd);
10712 end if;
10714 if Is_Access_Type (Opnd) then
10715 Opnd := Designated_Type (Opnd);
10716 end if;
10718 if Is_Access_Type (Target_Typ) then
10719 Target := Designated_Type (Target);
10720 end if;
10722 if Opnd = Target then
10723 null;
10725 -- Conversion from interface type
10727 elsif Is_Interface (Opnd) then
10729 -- Ada 2005 (AI-217): Handle entities from limited views
10731 if From_Limited_With (Opnd) then
10732 Error_Msg_Qual_Level := 99;
10733 Error_Msg_NE -- CODEFIX
10734 ("missing WITH clause on package &", N,
10735 Cunit_Entity (Get_Source_Unit (Base_Type (Opnd))));
10736 Error_Msg_N
10737 ("type conversions require visibility of the full view",
10740 elsif From_Limited_With (Target)
10741 and then not
10742 (Is_Access_Type (Target_Typ)
10743 and then Present (Non_Limited_View (Etype (Target))))
10744 then
10745 Error_Msg_Qual_Level := 99;
10746 Error_Msg_NE -- CODEFIX
10747 ("missing WITH clause on package &", N,
10748 Cunit_Entity (Get_Source_Unit (Base_Type (Target))));
10749 Error_Msg_N
10750 ("type conversions require visibility of the full view",
10753 else
10754 Expand_Interface_Conversion (N);
10755 end if;
10757 -- Conversion to interface type
10759 elsif Is_Interface (Target) then
10761 -- Handle subtypes
10763 if Ekind_In (Opnd, E_Protected_Subtype, E_Task_Subtype) then
10764 Opnd := Etype (Opnd);
10765 end if;
10767 if Is_Class_Wide_Type (Opnd)
10768 or else Interface_Present_In_Ancestor
10769 (Typ => Opnd,
10770 Iface => Target)
10771 then
10772 Expand_Interface_Conversion (N);
10773 else
10774 Error_Msg_Name_1 := Chars (Etype (Target));
10775 Error_Msg_Name_2 := Chars (Opnd);
10776 Error_Msg_N
10777 ("wrong interface conversion (% is not a progenitor "
10778 & "of %)", N);
10779 end if;
10780 end if;
10781 end;
10782 end if;
10784 -- Ada 2012: if target type has predicates, the result requires a
10785 -- predicate check. If the context is a call to another predicate
10786 -- check we must prevent infinite recursion.
10788 if Has_Predicates (Target_Typ) then
10789 if Nkind (Parent (N)) = N_Function_Call
10790 and then Present (Name (Parent (N)))
10791 and then (Is_Predicate_Function (Entity (Name (Parent (N))))
10792 or else
10793 Is_Predicate_Function_M (Entity (Name (Parent (N)))))
10794 then
10795 null;
10797 else
10798 Apply_Predicate_Check (N, Target_Typ);
10799 end if;
10800 end if;
10802 -- If at this stage we have a real to integer conversion, make sure
10803 -- that the Do_Range_Check flag is set, because such conversions in
10804 -- general need a range check. We only need this if expansion is off
10805 -- or we are in GNATProve mode.
10807 if Nkind (N) = N_Type_Conversion
10808 and then (GNATprove_Mode or not Expander_Active)
10809 and then Is_Integer_Type (Target_Typ)
10810 and then Is_Real_Type (Operand_Typ)
10811 then
10812 Set_Do_Range_Check (Operand);
10813 end if;
10814 end Resolve_Type_Conversion;
10816 ----------------------
10817 -- Resolve_Unary_Op --
10818 ----------------------
10820 procedure Resolve_Unary_Op (N : Node_Id; Typ : Entity_Id) is
10821 B_Typ : constant Entity_Id := Base_Type (Typ);
10822 R : constant Node_Id := Right_Opnd (N);
10823 OK : Boolean;
10824 Lo : Uint;
10825 Hi : Uint;
10827 begin
10828 if Is_Modular_Integer_Type (Typ) and then Nkind (N) /= N_Op_Not then
10829 Error_Msg_Name_1 := Chars (Typ);
10830 Check_SPARK_05_Restriction
10831 ("unary operator not defined for modular type%", N);
10832 end if;
10834 -- Deal with intrinsic unary operators
10836 if Comes_From_Source (N)
10837 and then Ekind (Entity (N)) = E_Function
10838 and then Is_Imported (Entity (N))
10839 and then Is_Intrinsic_Subprogram (Entity (N))
10840 then
10841 Resolve_Intrinsic_Unary_Operator (N, Typ);
10842 return;
10843 end if;
10845 -- Deal with universal cases
10847 if Etype (R) = Universal_Integer
10848 or else
10849 Etype (R) = Universal_Real
10850 then
10851 Check_For_Visible_Operator (N, B_Typ);
10852 end if;
10854 Set_Etype (N, B_Typ);
10855 Resolve (R, B_Typ);
10857 -- Generate warning for expressions like abs (x mod 2)
10859 if Warn_On_Redundant_Constructs
10860 and then Nkind (N) = N_Op_Abs
10861 then
10862 Determine_Range (Right_Opnd (N), OK, Lo, Hi);
10864 if OK and then Hi >= Lo and then Lo >= 0 then
10865 Error_Msg_N -- CODEFIX
10866 ("?r?abs applied to known non-negative value has no effect", N);
10867 end if;
10868 end if;
10870 -- Deal with reference generation
10872 Check_Unset_Reference (R);
10873 Generate_Operator_Reference (N, B_Typ);
10874 Analyze_Dimension (N);
10875 Eval_Unary_Op (N);
10877 -- Set overflow checking bit. Much cleverer code needed here eventually
10878 -- and perhaps the Resolve routines should be separated for the various
10879 -- arithmetic operations, since they will need different processing ???
10881 if Nkind (N) in N_Op then
10882 if not Overflow_Checks_Suppressed (Etype (N)) then
10883 Enable_Overflow_Check (N);
10884 end if;
10885 end if;
10887 -- Generate warning for expressions like -5 mod 3 for integers. No need
10888 -- to worry in the floating-point case, since parens do not affect the
10889 -- result so there is no point in giving in a warning.
10891 declare
10892 Norig : constant Node_Id := Original_Node (N);
10893 Rorig : Node_Id;
10894 Val : Uint;
10895 HB : Uint;
10896 LB : Uint;
10897 Lval : Uint;
10898 Opnd : Node_Id;
10900 begin
10901 if Warn_On_Questionable_Missing_Parens
10902 and then Comes_From_Source (Norig)
10903 and then Is_Integer_Type (Typ)
10904 and then Nkind (Norig) = N_Op_Minus
10905 then
10906 Rorig := Original_Node (Right_Opnd (Norig));
10908 -- We are looking for cases where the right operand is not
10909 -- parenthesized, and is a binary operator, multiply, divide, or
10910 -- mod. These are the cases where the grouping can affect results.
10912 if Paren_Count (Rorig) = 0
10913 and then Nkind_In (Rorig, N_Op_Mod, N_Op_Multiply, N_Op_Divide)
10914 then
10915 -- For mod, we always give the warning, since the value is
10916 -- affected by the parenthesization (e.g. (-5) mod 315 /=
10917 -- -(5 mod 315)). But for the other cases, the only concern is
10918 -- overflow, e.g. for the case of 8 big signed (-(2 * 64)
10919 -- overflows, but (-2) * 64 does not). So we try to give the
10920 -- message only when overflow is possible.
10922 if Nkind (Rorig) /= N_Op_Mod
10923 and then Compile_Time_Known_Value (R)
10924 then
10925 Val := Expr_Value (R);
10927 if Compile_Time_Known_Value (Type_High_Bound (Typ)) then
10928 HB := Expr_Value (Type_High_Bound (Typ));
10929 else
10930 HB := Expr_Value (Type_High_Bound (Base_Type (Typ)));
10931 end if;
10933 if Compile_Time_Known_Value (Type_Low_Bound (Typ)) then
10934 LB := Expr_Value (Type_Low_Bound (Typ));
10935 else
10936 LB := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
10937 end if;
10939 -- Note that the test below is deliberately excluding the
10940 -- largest negative number, since that is a potentially
10941 -- troublesome case (e.g. -2 * x, where the result is the
10942 -- largest negative integer has an overflow with 2 * x).
10944 if Val > LB and then Val <= HB then
10945 return;
10946 end if;
10947 end if;
10949 -- For the multiplication case, the only case we have to worry
10950 -- about is when (-a)*b is exactly the largest negative number
10951 -- so that -(a*b) can cause overflow. This can only happen if
10952 -- a is a power of 2, and more generally if any operand is a
10953 -- constant that is not a power of 2, then the parentheses
10954 -- cannot affect whether overflow occurs. We only bother to
10955 -- test the left most operand
10957 -- Loop looking at left operands for one that has known value
10959 Opnd := Rorig;
10960 Opnd_Loop : while Nkind (Opnd) = N_Op_Multiply loop
10961 if Compile_Time_Known_Value (Left_Opnd (Opnd)) then
10962 Lval := UI_Abs (Expr_Value (Left_Opnd (Opnd)));
10964 -- Operand value of 0 or 1 skips warning
10966 if Lval <= 1 then
10967 return;
10969 -- Otherwise check power of 2, if power of 2, warn, if
10970 -- anything else, skip warning.
10972 else
10973 while Lval /= 2 loop
10974 if Lval mod 2 = 1 then
10975 return;
10976 else
10977 Lval := Lval / 2;
10978 end if;
10979 end loop;
10981 exit Opnd_Loop;
10982 end if;
10983 end if;
10985 -- Keep looking at left operands
10987 Opnd := Left_Opnd (Opnd);
10988 end loop Opnd_Loop;
10990 -- For rem or "/" we can only have a problematic situation
10991 -- if the divisor has a value of minus one or one. Otherwise
10992 -- overflow is impossible (divisor > 1) or we have a case of
10993 -- division by zero in any case.
10995 if Nkind_In (Rorig, N_Op_Divide, N_Op_Rem)
10996 and then Compile_Time_Known_Value (Right_Opnd (Rorig))
10997 and then UI_Abs (Expr_Value (Right_Opnd (Rorig))) /= 1
10998 then
10999 return;
11000 end if;
11002 -- If we fall through warning should be issued
11004 -- Shouldn't we test Warn_On_Questionable_Missing_Parens ???
11006 Error_Msg_N
11007 ("??unary minus expression should be parenthesized here!", N);
11008 end if;
11009 end if;
11010 end;
11011 end Resolve_Unary_Op;
11013 ----------------------------------
11014 -- Resolve_Unchecked_Expression --
11015 ----------------------------------
11017 procedure Resolve_Unchecked_Expression
11018 (N : Node_Id;
11019 Typ : Entity_Id)
11021 begin
11022 Resolve (Expression (N), Typ, Suppress => All_Checks);
11023 Set_Etype (N, Typ);
11024 end Resolve_Unchecked_Expression;
11026 ---------------------------------------
11027 -- Resolve_Unchecked_Type_Conversion --
11028 ---------------------------------------
11030 procedure Resolve_Unchecked_Type_Conversion
11031 (N : Node_Id;
11032 Typ : Entity_Id)
11034 pragma Warnings (Off, Typ);
11036 Operand : constant Node_Id := Expression (N);
11037 Opnd_Type : constant Entity_Id := Etype (Operand);
11039 begin
11040 -- Resolve operand using its own type
11042 Resolve (Operand, Opnd_Type);
11044 -- In an inlined context, the unchecked conversion may be applied
11045 -- to a literal, in which case its type is the type of the context.
11046 -- (In other contexts conversions cannot apply to literals).
11048 if In_Inlined_Body
11049 and then (Opnd_Type = Any_Character or else
11050 Opnd_Type = Any_Integer or else
11051 Opnd_Type = Any_Real)
11052 then
11053 Set_Etype (Operand, Typ);
11054 end if;
11056 Analyze_Dimension (N);
11057 Eval_Unchecked_Conversion (N);
11058 end Resolve_Unchecked_Type_Conversion;
11060 ------------------------------
11061 -- Rewrite_Operator_As_Call --
11062 ------------------------------
11064 procedure Rewrite_Operator_As_Call (N : Node_Id; Nam : Entity_Id) is
11065 Loc : constant Source_Ptr := Sloc (N);
11066 Actuals : constant List_Id := New_List;
11067 New_N : Node_Id;
11069 begin
11070 if Nkind (N) in N_Binary_Op then
11071 Append (Left_Opnd (N), Actuals);
11072 end if;
11074 Append (Right_Opnd (N), Actuals);
11076 New_N :=
11077 Make_Function_Call (Sloc => Loc,
11078 Name => New_Occurrence_Of (Nam, Loc),
11079 Parameter_Associations => Actuals);
11081 Preserve_Comes_From_Source (New_N, N);
11082 Preserve_Comes_From_Source (Name (New_N), N);
11083 Rewrite (N, New_N);
11084 Set_Etype (N, Etype (Nam));
11085 end Rewrite_Operator_As_Call;
11087 ------------------------------
11088 -- Rewrite_Renamed_Operator --
11089 ------------------------------
11091 procedure Rewrite_Renamed_Operator
11092 (N : Node_Id;
11093 Op : Entity_Id;
11094 Typ : Entity_Id)
11096 Nam : constant Name_Id := Chars (Op);
11097 Is_Binary : constant Boolean := Nkind (N) in N_Binary_Op;
11098 Op_Node : Node_Id;
11100 begin
11101 -- Do not perform this transformation within a pre/postcondition,
11102 -- because the expression will be re-analyzed, and the transformation
11103 -- might affect the visibility of the operator, e.g. in an instance.
11105 if In_Assertion_Expr > 0 then
11106 return;
11107 end if;
11109 -- Rewrite the operator node using the real operator, not its renaming.
11110 -- Exclude user-defined intrinsic operations of the same name, which are
11111 -- treated separately and rewritten as calls.
11113 if Ekind (Op) /= E_Function or else Chars (N) /= Nam then
11114 Op_Node := New_Node (Operator_Kind (Nam, Is_Binary), Sloc (N));
11115 Set_Chars (Op_Node, Nam);
11116 Set_Etype (Op_Node, Etype (N));
11117 Set_Entity (Op_Node, Op);
11118 Set_Right_Opnd (Op_Node, Right_Opnd (N));
11120 -- Indicate that both the original entity and its renaming are
11121 -- referenced at this point.
11123 Generate_Reference (Entity (N), N);
11124 Generate_Reference (Op, N);
11126 if Is_Binary then
11127 Set_Left_Opnd (Op_Node, Left_Opnd (N));
11128 end if;
11130 Rewrite (N, Op_Node);
11132 -- If the context type is private, add the appropriate conversions so
11133 -- that the operator is applied to the full view. This is done in the
11134 -- routines that resolve intrinsic operators.
11136 if Is_Intrinsic_Subprogram (Op)
11137 and then Is_Private_Type (Typ)
11138 then
11139 case Nkind (N) is
11140 when N_Op_Add | N_Op_Subtract | N_Op_Multiply | N_Op_Divide |
11141 N_Op_Expon | N_Op_Mod | N_Op_Rem =>
11142 Resolve_Intrinsic_Operator (N, Typ);
11144 when N_Op_Plus | N_Op_Minus | N_Op_Abs =>
11145 Resolve_Intrinsic_Unary_Operator (N, Typ);
11147 when others =>
11148 Resolve (N, Typ);
11149 end case;
11150 end if;
11152 elsif Ekind (Op) = E_Function and then Is_Intrinsic_Subprogram (Op) then
11154 -- Operator renames a user-defined operator of the same name. Use the
11155 -- original operator in the node, which is the one Gigi knows about.
11157 Set_Entity (N, Op);
11158 Set_Is_Overloaded (N, False);
11159 end if;
11160 end Rewrite_Renamed_Operator;
11162 -----------------------
11163 -- Set_Slice_Subtype --
11164 -----------------------
11166 -- Build an implicit subtype declaration to represent the type delivered by
11167 -- the slice. This is an abbreviated version of an array subtype. We define
11168 -- an index subtype for the slice, using either the subtype name or the
11169 -- discrete range of the slice. To be consistent with index usage elsewhere
11170 -- we create a list header to hold the single index. This list is not
11171 -- otherwise attached to the syntax tree.
11173 procedure Set_Slice_Subtype (N : Node_Id) is
11174 Loc : constant Source_Ptr := Sloc (N);
11175 Index_List : constant List_Id := New_List;
11176 Index : Node_Id;
11177 Index_Subtype : Entity_Id;
11178 Index_Type : Entity_Id;
11179 Slice_Subtype : Entity_Id;
11180 Drange : constant Node_Id := Discrete_Range (N);
11182 begin
11183 Index_Type := Base_Type (Etype (Drange));
11185 if Is_Entity_Name (Drange) then
11186 Index_Subtype := Entity (Drange);
11188 else
11189 -- We force the evaluation of a range. This is definitely needed in
11190 -- the renamed case, and seems safer to do unconditionally. Note in
11191 -- any case that since we will create and insert an Itype referring
11192 -- to this range, we must make sure any side effect removal actions
11193 -- are inserted before the Itype definition.
11195 if Nkind (Drange) = N_Range then
11196 Force_Evaluation (Low_Bound (Drange));
11197 Force_Evaluation (High_Bound (Drange));
11199 -- If the discrete range is given by a subtype indication, the
11200 -- type of the slice is the base of the subtype mark.
11202 elsif Nkind (Drange) = N_Subtype_Indication then
11203 declare
11204 R : constant Node_Id := Range_Expression (Constraint (Drange));
11205 begin
11206 Index_Type := Base_Type (Entity (Subtype_Mark (Drange)));
11207 Force_Evaluation (Low_Bound (R));
11208 Force_Evaluation (High_Bound (R));
11209 end;
11210 end if;
11212 Index_Subtype := Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11214 -- Take a new copy of Drange (where bounds have been rewritten to
11215 -- reference side-effect-free names). Using a separate tree ensures
11216 -- that further expansion (e.g. while rewriting a slice assignment
11217 -- into a FOR loop) does not attempt to remove side effects on the
11218 -- bounds again (which would cause the bounds in the index subtype
11219 -- definition to refer to temporaries before they are defined) (the
11220 -- reason is that some names are considered side effect free here
11221 -- for the subtype, but not in the context of a loop iteration
11222 -- scheme).
11224 Set_Scalar_Range (Index_Subtype, New_Copy_Tree (Drange));
11225 Set_Parent (Scalar_Range (Index_Subtype), Index_Subtype);
11226 Set_Etype (Index_Subtype, Index_Type);
11227 Set_Size_Info (Index_Subtype, Index_Type);
11228 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11229 end if;
11231 Slice_Subtype := Create_Itype (E_Array_Subtype, N);
11233 Index := New_Occurrence_Of (Index_Subtype, Loc);
11234 Set_Etype (Index, Index_Subtype);
11235 Append (Index, Index_List);
11237 Set_First_Index (Slice_Subtype, Index);
11238 Set_Etype (Slice_Subtype, Base_Type (Etype (N)));
11239 Set_Is_Constrained (Slice_Subtype, True);
11241 Check_Compile_Time_Size (Slice_Subtype);
11243 -- The Etype of the existing Slice node is reset to this slice subtype.
11244 -- Its bounds are obtained from its first index.
11246 Set_Etype (N, Slice_Subtype);
11248 -- For packed slice subtypes, freeze immediately (except in the case of
11249 -- being in a "spec expression" where we never freeze when we first see
11250 -- the expression).
11252 if Is_Packed (Slice_Subtype) and not In_Spec_Expression then
11253 Freeze_Itype (Slice_Subtype, N);
11255 -- For all other cases insert an itype reference in the slice's actions
11256 -- so that the itype is frozen at the proper place in the tree (i.e. at
11257 -- the point where actions for the slice are analyzed). Note that this
11258 -- is different from freezing the itype immediately, which might be
11259 -- premature (e.g. if the slice is within a transient scope). This needs
11260 -- to be done only if expansion is enabled.
11262 elsif Expander_Active then
11263 Ensure_Defined (Typ => Slice_Subtype, N => N);
11264 end if;
11265 end Set_Slice_Subtype;
11267 --------------------------------
11268 -- Set_String_Literal_Subtype --
11269 --------------------------------
11271 procedure Set_String_Literal_Subtype (N : Node_Id; Typ : Entity_Id) is
11272 Loc : constant Source_Ptr := Sloc (N);
11273 Low_Bound : constant Node_Id :=
11274 Type_Low_Bound (Etype (First_Index (Typ)));
11275 Subtype_Id : Entity_Id;
11277 begin
11278 if Nkind (N) /= N_String_Literal then
11279 return;
11280 end if;
11282 Subtype_Id := Create_Itype (E_String_Literal_Subtype, N);
11283 Set_String_Literal_Length (Subtype_Id, UI_From_Int
11284 (String_Length (Strval (N))));
11285 Set_Etype (Subtype_Id, Base_Type (Typ));
11286 Set_Is_Constrained (Subtype_Id);
11287 Set_Etype (N, Subtype_Id);
11289 -- The low bound is set from the low bound of the corresponding index
11290 -- type. Note that we do not store the high bound in the string literal
11291 -- subtype, but it can be deduced if necessary from the length and the
11292 -- low bound.
11294 if Is_OK_Static_Expression (Low_Bound) then
11295 Set_String_Literal_Low_Bound (Subtype_Id, Low_Bound);
11297 -- If the lower bound is not static we create a range for the string
11298 -- literal, using the index type and the known length of the literal.
11299 -- The index type is not necessarily Positive, so the upper bound is
11300 -- computed as T'Val (T'Pos (Low_Bound) + L - 1).
11302 else
11303 declare
11304 Index_List : constant List_Id := New_List;
11305 Index_Type : constant Entity_Id := Etype (First_Index (Typ));
11306 High_Bound : constant Node_Id :=
11307 Make_Attribute_Reference (Loc,
11308 Attribute_Name => Name_Val,
11309 Prefix =>
11310 New_Occurrence_Of (Index_Type, Loc),
11311 Expressions => New_List (
11312 Make_Op_Add (Loc,
11313 Left_Opnd =>
11314 Make_Attribute_Reference (Loc,
11315 Attribute_Name => Name_Pos,
11316 Prefix =>
11317 New_Occurrence_Of (Index_Type, Loc),
11318 Expressions =>
11319 New_List (New_Copy_Tree (Low_Bound))),
11320 Right_Opnd =>
11321 Make_Integer_Literal (Loc,
11322 String_Length (Strval (N)) - 1))));
11324 Array_Subtype : Entity_Id;
11325 Drange : Node_Id;
11326 Index : Node_Id;
11327 Index_Subtype : Entity_Id;
11329 begin
11330 if Is_Integer_Type (Index_Type) then
11331 Set_String_Literal_Low_Bound
11332 (Subtype_Id, Make_Integer_Literal (Loc, 1));
11334 else
11335 -- If the index type is an enumeration type, build bounds
11336 -- expression with attributes.
11338 Set_String_Literal_Low_Bound
11339 (Subtype_Id,
11340 Make_Attribute_Reference (Loc,
11341 Attribute_Name => Name_First,
11342 Prefix =>
11343 New_Occurrence_Of (Base_Type (Index_Type), Loc)));
11344 Set_Etype (String_Literal_Low_Bound (Subtype_Id), Index_Type);
11345 end if;
11347 Analyze_And_Resolve (String_Literal_Low_Bound (Subtype_Id));
11349 -- Build bona fide subtype for the string, and wrap it in an
11350 -- unchecked conversion, because the backend expects the
11351 -- String_Literal_Subtype to have a static lower bound.
11353 Index_Subtype :=
11354 Create_Itype (Subtype_Kind (Ekind (Index_Type)), N);
11355 Drange := Make_Range (Loc, New_Copy_Tree (Low_Bound), High_Bound);
11356 Set_Scalar_Range (Index_Subtype, Drange);
11357 Set_Parent (Drange, N);
11358 Analyze_And_Resolve (Drange, Index_Type);
11360 -- In the context, the Index_Type may already have a constraint,
11361 -- so use common base type on string subtype. The base type may
11362 -- be used when generating attributes of the string, for example
11363 -- in the context of a slice assignment.
11365 Set_Etype (Index_Subtype, Base_Type (Index_Type));
11366 Set_Size_Info (Index_Subtype, Index_Type);
11367 Set_RM_Size (Index_Subtype, RM_Size (Index_Type));
11369 Array_Subtype := Create_Itype (E_Array_Subtype, N);
11371 Index := New_Occurrence_Of (Index_Subtype, Loc);
11372 Set_Etype (Index, Index_Subtype);
11373 Append (Index, Index_List);
11375 Set_First_Index (Array_Subtype, Index);
11376 Set_Etype (Array_Subtype, Base_Type (Typ));
11377 Set_Is_Constrained (Array_Subtype, True);
11379 Rewrite (N,
11380 Make_Unchecked_Type_Conversion (Loc,
11381 Subtype_Mark => New_Occurrence_Of (Array_Subtype, Loc),
11382 Expression => Relocate_Node (N)));
11383 Set_Etype (N, Array_Subtype);
11384 end;
11385 end if;
11386 end Set_String_Literal_Subtype;
11388 ------------------------------
11389 -- Simplify_Type_Conversion --
11390 ------------------------------
11392 procedure Simplify_Type_Conversion (N : Node_Id) is
11393 begin
11394 if Nkind (N) = N_Type_Conversion then
11395 declare
11396 Operand : constant Node_Id := Expression (N);
11397 Target_Typ : constant Entity_Id := Etype (N);
11398 Opnd_Typ : constant Entity_Id := Etype (Operand);
11400 begin
11401 -- Special processing if the conversion is the expression of a
11402 -- Rounding or Truncation attribute reference. In this case we
11403 -- replace:
11405 -- ityp (ftyp'Rounding (x)) or ityp (ftyp'Truncation (x))
11407 -- by
11409 -- ityp (x)
11411 -- with the Float_Truncate flag set to False or True respectively,
11412 -- which is more efficient.
11414 if Is_Floating_Point_Type (Opnd_Typ)
11415 and then
11416 (Is_Integer_Type (Target_Typ)
11417 or else (Is_Fixed_Point_Type (Target_Typ)
11418 and then Conversion_OK (N)))
11419 and then Nkind (Operand) = N_Attribute_Reference
11420 and then Nam_In (Attribute_Name (Operand), Name_Rounding,
11421 Name_Truncation)
11422 then
11423 declare
11424 Truncate : constant Boolean :=
11425 Attribute_Name (Operand) = Name_Truncation;
11426 begin
11427 Rewrite (Operand,
11428 Relocate_Node (First (Expressions (Operand))));
11429 Set_Float_Truncate (N, Truncate);
11430 end;
11431 end if;
11432 end;
11433 end if;
11434 end Simplify_Type_Conversion;
11436 -----------------------------
11437 -- Unique_Fixed_Point_Type --
11438 -----------------------------
11440 function Unique_Fixed_Point_Type (N : Node_Id) return Entity_Id is
11441 T1 : Entity_Id := Empty;
11442 T2 : Entity_Id;
11443 Item : Node_Id;
11444 Scop : Entity_Id;
11446 procedure Fixed_Point_Error;
11447 -- Give error messages for true ambiguity. Messages are posted on node
11448 -- N, and entities T1, T2 are the possible interpretations.
11450 -----------------------
11451 -- Fixed_Point_Error --
11452 -----------------------
11454 procedure Fixed_Point_Error is
11455 begin
11456 Error_Msg_N ("ambiguous universal_fixed_expression", N);
11457 Error_Msg_NE ("\\possible interpretation as}", N, T1);
11458 Error_Msg_NE ("\\possible interpretation as}", N, T2);
11459 end Fixed_Point_Error;
11461 -- Start of processing for Unique_Fixed_Point_Type
11463 begin
11464 -- The operations on Duration are visible, so Duration is always a
11465 -- possible interpretation.
11467 T1 := Standard_Duration;
11469 -- Look for fixed-point types in enclosing scopes
11471 Scop := Current_Scope;
11472 while Scop /= Standard_Standard loop
11473 T2 := First_Entity (Scop);
11474 while Present (T2) loop
11475 if Is_Fixed_Point_Type (T2)
11476 and then Current_Entity (T2) = T2
11477 and then Scope (Base_Type (T2)) = Scop
11478 then
11479 if Present (T1) then
11480 Fixed_Point_Error;
11481 return Any_Type;
11482 else
11483 T1 := T2;
11484 end if;
11485 end if;
11487 Next_Entity (T2);
11488 end loop;
11490 Scop := Scope (Scop);
11491 end loop;
11493 -- Look for visible fixed type declarations in the context
11495 Item := First (Context_Items (Cunit (Current_Sem_Unit)));
11496 while Present (Item) loop
11497 if Nkind (Item) = N_With_Clause then
11498 Scop := Entity (Name (Item));
11499 T2 := First_Entity (Scop);
11500 while Present (T2) loop
11501 if Is_Fixed_Point_Type (T2)
11502 and then Scope (Base_Type (T2)) = Scop
11503 and then (Is_Potentially_Use_Visible (T2) or else In_Use (T2))
11504 then
11505 if Present (T1) then
11506 Fixed_Point_Error;
11507 return Any_Type;
11508 else
11509 T1 := T2;
11510 end if;
11511 end if;
11513 Next_Entity (T2);
11514 end loop;
11515 end if;
11517 Next (Item);
11518 end loop;
11520 if Nkind (N) = N_Real_Literal then
11521 Error_Msg_NE
11522 ("??real literal interpreted as }!", N, T1);
11523 else
11524 Error_Msg_NE
11525 ("??universal_fixed expression interpreted as }!", N, T1);
11526 end if;
11528 return T1;
11529 end Unique_Fixed_Point_Type;
11531 ----------------------
11532 -- Valid_Conversion --
11533 ----------------------
11535 function Valid_Conversion
11536 (N : Node_Id;
11537 Target : Entity_Id;
11538 Operand : Node_Id;
11539 Report_Errs : Boolean := True) return Boolean
11541 Target_Type : constant Entity_Id := Base_Type (Target);
11542 Opnd_Type : Entity_Id := Etype (Operand);
11543 Inc_Ancestor : Entity_Id;
11545 function Conversion_Check
11546 (Valid : Boolean;
11547 Msg : String) return Boolean;
11548 -- Little routine to post Msg if Valid is False, returns Valid value
11550 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id);
11551 -- If Report_Errs, then calls Errout.Error_Msg_N with its arguments
11553 procedure Conversion_Error_NE
11554 (Msg : String;
11555 N : Node_Or_Entity_Id;
11556 E : Node_Or_Entity_Id);
11557 -- If Report_Errs, then calls Errout.Error_Msg_NE with its arguments
11559 function Valid_Tagged_Conversion
11560 (Target_Type : Entity_Id;
11561 Opnd_Type : Entity_Id) return Boolean;
11562 -- Specifically test for validity of tagged conversions
11564 function Valid_Array_Conversion return Boolean;
11565 -- Check index and component conformance, and accessibility levels if
11566 -- the component types are anonymous access types (Ada 2005).
11568 ----------------------
11569 -- Conversion_Check --
11570 ----------------------
11572 function Conversion_Check
11573 (Valid : Boolean;
11574 Msg : String) return Boolean
11576 begin
11577 if not Valid
11579 -- A generic unit has already been analyzed and we have verified
11580 -- that a particular conversion is OK in that context. Since the
11581 -- instance is reanalyzed without relying on the relationships
11582 -- established during the analysis of the generic, it is possible
11583 -- to end up with inconsistent views of private types. Do not emit
11584 -- the error message in such cases. The rest of the machinery in
11585 -- Valid_Conversion still ensures the proper compatibility of
11586 -- target and operand types.
11588 and then not In_Instance
11589 then
11590 Conversion_Error_N (Msg, Operand);
11591 end if;
11593 return Valid;
11594 end Conversion_Check;
11596 ------------------------
11597 -- Conversion_Error_N --
11598 ------------------------
11600 procedure Conversion_Error_N (Msg : String; N : Node_Or_Entity_Id) is
11601 begin
11602 if Report_Errs then
11603 Error_Msg_N (Msg, N);
11604 end if;
11605 end Conversion_Error_N;
11607 -------------------------
11608 -- Conversion_Error_NE --
11609 -------------------------
11611 procedure Conversion_Error_NE
11612 (Msg : String;
11613 N : Node_Or_Entity_Id;
11614 E : Node_Or_Entity_Id)
11616 begin
11617 if Report_Errs then
11618 Error_Msg_NE (Msg, N, E);
11619 end if;
11620 end Conversion_Error_NE;
11622 ----------------------------
11623 -- Valid_Array_Conversion --
11624 ----------------------------
11626 function Valid_Array_Conversion return Boolean
11628 Opnd_Comp_Type : constant Entity_Id := Component_Type (Opnd_Type);
11629 Opnd_Comp_Base : constant Entity_Id := Base_Type (Opnd_Comp_Type);
11631 Opnd_Index : Node_Id;
11632 Opnd_Index_Type : Entity_Id;
11634 Target_Comp_Type : constant Entity_Id :=
11635 Component_Type (Target_Type);
11636 Target_Comp_Base : constant Entity_Id :=
11637 Base_Type (Target_Comp_Type);
11639 Target_Index : Node_Id;
11640 Target_Index_Type : Entity_Id;
11642 begin
11643 -- Error if wrong number of dimensions
11646 Number_Dimensions (Target_Type) /= Number_Dimensions (Opnd_Type)
11647 then
11648 Conversion_Error_N
11649 ("incompatible number of dimensions for conversion", Operand);
11650 return False;
11652 -- Number of dimensions matches
11654 else
11655 -- Loop through indexes of the two arrays
11657 Target_Index := First_Index (Target_Type);
11658 Opnd_Index := First_Index (Opnd_Type);
11659 while Present (Target_Index) and then Present (Opnd_Index) loop
11660 Target_Index_Type := Etype (Target_Index);
11661 Opnd_Index_Type := Etype (Opnd_Index);
11663 -- Error if index types are incompatible
11665 if not (Is_Integer_Type (Target_Index_Type)
11666 and then Is_Integer_Type (Opnd_Index_Type))
11667 and then (Root_Type (Target_Index_Type)
11668 /= Root_Type (Opnd_Index_Type))
11669 then
11670 Conversion_Error_N
11671 ("incompatible index types for array conversion",
11672 Operand);
11673 return False;
11674 end if;
11676 Next_Index (Target_Index);
11677 Next_Index (Opnd_Index);
11678 end loop;
11680 -- If component types have same base type, all set
11682 if Target_Comp_Base = Opnd_Comp_Base then
11683 null;
11685 -- Here if base types of components are not the same. The only
11686 -- time this is allowed is if we have anonymous access types.
11688 -- The conversion of arrays of anonymous access types can lead
11689 -- to dangling pointers. AI-392 formalizes the accessibility
11690 -- checks that must be applied to such conversions to prevent
11691 -- out-of-scope references.
11693 elsif Ekind_In
11694 (Target_Comp_Base, E_Anonymous_Access_Type,
11695 E_Anonymous_Access_Subprogram_Type)
11696 and then Ekind (Opnd_Comp_Base) = Ekind (Target_Comp_Base)
11697 and then
11698 Subtypes_Statically_Match (Target_Comp_Type, Opnd_Comp_Type)
11699 then
11700 if Type_Access_Level (Target_Type) <
11701 Deepest_Type_Access_Level (Opnd_Type)
11702 then
11703 if In_Instance_Body then
11704 Error_Msg_Warn := SPARK_Mode /= On;
11705 Conversion_Error_N
11706 ("source array type has deeper accessibility "
11707 & "level than target<<", Operand);
11708 Conversion_Error_N ("\Program_Error [<<", Operand);
11709 Rewrite (N,
11710 Make_Raise_Program_Error (Sloc (N),
11711 Reason => PE_Accessibility_Check_Failed));
11712 Set_Etype (N, Target_Type);
11713 return False;
11715 -- Conversion not allowed because of accessibility levels
11717 else
11718 Conversion_Error_N
11719 ("source array type has deeper accessibility "
11720 & "level than target", Operand);
11721 return False;
11722 end if;
11724 else
11725 null;
11726 end if;
11728 -- All other cases where component base types do not match
11730 else
11731 Conversion_Error_N
11732 ("incompatible component types for array conversion",
11733 Operand);
11734 return False;
11735 end if;
11737 -- Check that component subtypes statically match. For numeric
11738 -- types this means that both must be either constrained or
11739 -- unconstrained. For enumeration types the bounds must match.
11740 -- All of this is checked in Subtypes_Statically_Match.
11742 if not Subtypes_Statically_Match
11743 (Target_Comp_Type, Opnd_Comp_Type)
11744 then
11745 Conversion_Error_N
11746 ("component subtypes must statically match", Operand);
11747 return False;
11748 end if;
11749 end if;
11751 return True;
11752 end Valid_Array_Conversion;
11754 -----------------------------
11755 -- Valid_Tagged_Conversion --
11756 -----------------------------
11758 function Valid_Tagged_Conversion
11759 (Target_Type : Entity_Id;
11760 Opnd_Type : Entity_Id) return Boolean
11762 begin
11763 -- Upward conversions are allowed (RM 4.6(22))
11765 if Covers (Target_Type, Opnd_Type)
11766 or else Is_Ancestor (Target_Type, Opnd_Type)
11767 then
11768 return True;
11770 -- Downward conversion are allowed if the operand is class-wide
11771 -- (RM 4.6(23)).
11773 elsif Is_Class_Wide_Type (Opnd_Type)
11774 and then Covers (Opnd_Type, Target_Type)
11775 then
11776 return True;
11778 elsif Covers (Opnd_Type, Target_Type)
11779 or else Is_Ancestor (Opnd_Type, Target_Type)
11780 then
11781 return
11782 Conversion_Check (False,
11783 "downward conversion of tagged objects not allowed");
11785 -- Ada 2005 (AI-251): The conversion to/from interface types is
11786 -- always valid
11788 elsif Is_Interface (Target_Type) or else Is_Interface (Opnd_Type) then
11789 return True;
11791 -- If the operand is a class-wide type obtained through a limited_
11792 -- with clause, and the context includes the non-limited view, use
11793 -- it to determine whether the conversion is legal.
11795 elsif Is_Class_Wide_Type (Opnd_Type)
11796 and then From_Limited_With (Opnd_Type)
11797 and then Present (Non_Limited_View (Etype (Opnd_Type)))
11798 and then Is_Interface (Non_Limited_View (Etype (Opnd_Type)))
11799 then
11800 return True;
11802 elsif Is_Access_Type (Opnd_Type)
11803 and then Is_Interface (Directly_Designated_Type (Opnd_Type))
11804 then
11805 return True;
11807 else
11808 Conversion_Error_NE
11809 ("invalid tagged conversion, not compatible with}",
11810 N, First_Subtype (Opnd_Type));
11811 return False;
11812 end if;
11813 end Valid_Tagged_Conversion;
11815 -- Start of processing for Valid_Conversion
11817 begin
11818 Check_Parameterless_Call (Operand);
11820 if Is_Overloaded (Operand) then
11821 declare
11822 I : Interp_Index;
11823 I1 : Interp_Index;
11824 It : Interp;
11825 It1 : Interp;
11826 N1 : Entity_Id;
11827 T1 : Entity_Id;
11829 begin
11830 -- Remove procedure calls, which syntactically cannot appear in
11831 -- this context, but which cannot be removed by type checking,
11832 -- because the context does not impose a type.
11834 -- The node may be labelled overloaded, but still contain only one
11835 -- interpretation because others were discarded earlier. If this
11836 -- is the case, retain the single interpretation if legal.
11838 Get_First_Interp (Operand, I, It);
11839 Opnd_Type := It.Typ;
11840 Get_Next_Interp (I, It);
11842 if Present (It.Typ)
11843 and then Opnd_Type /= Standard_Void_Type
11844 then
11845 -- More than one candidate interpretation is available
11847 Get_First_Interp (Operand, I, It);
11848 while Present (It.Typ) loop
11849 if It.Typ = Standard_Void_Type then
11850 Remove_Interp (I);
11851 end if;
11853 -- When compiling for a system where Address is of a visible
11854 -- integer type, spurious ambiguities can be produced when
11855 -- arithmetic operations have a literal operand and return
11856 -- System.Address or a descendant of it. These ambiguities
11857 -- are usually resolved by the context, but for conversions
11858 -- there is no context type and the removal of the spurious
11859 -- operations must be done explicitly here.
11861 if not Address_Is_Private
11862 and then Is_Descendent_Of_Address (It.Typ)
11863 then
11864 Remove_Interp (I);
11865 end if;
11867 Get_Next_Interp (I, It);
11868 end loop;
11869 end if;
11871 Get_First_Interp (Operand, I, It);
11872 I1 := I;
11873 It1 := It;
11875 if No (It.Typ) then
11876 Conversion_Error_N ("illegal operand in conversion", Operand);
11877 return False;
11878 end if;
11880 Get_Next_Interp (I, It);
11882 if Present (It.Typ) then
11883 N1 := It1.Nam;
11884 T1 := It1.Typ;
11885 It1 := Disambiguate (Operand, I1, I, Any_Type);
11887 if It1 = No_Interp then
11888 Conversion_Error_N
11889 ("ambiguous operand in conversion", Operand);
11891 -- If the interpretation involves a standard operator, use
11892 -- the location of the type, which may be user-defined.
11894 if Sloc (It.Nam) = Standard_Location then
11895 Error_Msg_Sloc := Sloc (It.Typ);
11896 else
11897 Error_Msg_Sloc := Sloc (It.Nam);
11898 end if;
11900 Conversion_Error_N -- CODEFIX
11901 ("\\possible interpretation#!", Operand);
11903 if Sloc (N1) = Standard_Location then
11904 Error_Msg_Sloc := Sloc (T1);
11905 else
11906 Error_Msg_Sloc := Sloc (N1);
11907 end if;
11909 Conversion_Error_N -- CODEFIX
11910 ("\\possible interpretation#!", Operand);
11912 return False;
11913 end if;
11914 end if;
11916 Set_Etype (Operand, It1.Typ);
11917 Opnd_Type := It1.Typ;
11918 end;
11919 end if;
11921 -- Deal with conversion of integer type to address if the pragma
11922 -- Allow_Integer_Address is in effect. We convert the conversion to
11923 -- an unchecked conversion in this case and we are all done.
11925 if Address_Integer_Convert_OK (Opnd_Type, Target_Type) then
11926 Rewrite (N, Unchecked_Convert_To (Target_Type, Expression (N)));
11927 Analyze_And_Resolve (N, Target_Type);
11928 return True;
11929 end if;
11931 -- If we are within a child unit, check whether the type of the
11932 -- expression has an ancestor in a parent unit, in which case it
11933 -- belongs to its derivation class even if the ancestor is private.
11934 -- See RM 7.3.1 (5.2/3).
11936 Inc_Ancestor := Get_Incomplete_View_Of_Ancestor (Opnd_Type);
11938 -- Numeric types
11940 if Is_Numeric_Type (Target_Type) then
11942 -- A universal fixed expression can be converted to any numeric type
11944 if Opnd_Type = Universal_Fixed then
11945 return True;
11947 -- Also no need to check when in an instance or inlined body, because
11948 -- the legality has been established when the template was analyzed.
11949 -- Furthermore, numeric conversions may occur where only a private
11950 -- view of the operand type is visible at the instantiation point.
11951 -- This results in a spurious error if we check that the operand type
11952 -- is a numeric type.
11954 -- Note: in a previous version of this unit, the following tests were
11955 -- applied only for generated code (Comes_From_Source set to False),
11956 -- but in fact the test is required for source code as well, since
11957 -- this situation can arise in source code.
11959 elsif In_Instance or else In_Inlined_Body then
11960 return True;
11962 -- Otherwise we need the conversion check
11964 else
11965 return Conversion_Check
11966 (Is_Numeric_Type (Opnd_Type)
11967 or else
11968 (Present (Inc_Ancestor)
11969 and then Is_Numeric_Type (Inc_Ancestor)),
11970 "illegal operand for numeric conversion");
11971 end if;
11973 -- Array types
11975 elsif Is_Array_Type (Target_Type) then
11976 if not Is_Array_Type (Opnd_Type)
11977 or else Opnd_Type = Any_Composite
11978 or else Opnd_Type = Any_String
11979 then
11980 Conversion_Error_N
11981 ("illegal operand for array conversion", Operand);
11982 return False;
11984 else
11985 return Valid_Array_Conversion;
11986 end if;
11988 -- Ada 2005 (AI-251): Anonymous access types where target references an
11989 -- interface type.
11991 elsif Ekind_In (Target_Type, E_General_Access_Type,
11992 E_Anonymous_Access_Type)
11993 and then Is_Interface (Directly_Designated_Type (Target_Type))
11994 then
11995 -- Check the static accessibility rule of 4.6(17). Note that the
11996 -- check is not enforced when within an instance body, since the
11997 -- RM requires such cases to be caught at run time.
11999 -- If the operand is a rewriting of an allocator no check is needed
12000 -- because there are no accessibility issues.
12002 if Nkind (Original_Node (N)) = N_Allocator then
12003 null;
12005 elsif Ekind (Target_Type) /= E_Anonymous_Access_Type then
12006 if Type_Access_Level (Opnd_Type) >
12007 Deepest_Type_Access_Level (Target_Type)
12008 then
12009 -- In an instance, this is a run-time check, but one we know
12010 -- will fail, so generate an appropriate warning. The raise
12011 -- will be generated by Expand_N_Type_Conversion.
12013 if In_Instance_Body then
12014 Error_Msg_Warn := SPARK_Mode /= On;
12015 Conversion_Error_N
12016 ("cannot convert local pointer to non-local access type<<",
12017 Operand);
12018 Conversion_Error_N ("\Program_Error [<<", Operand);
12020 else
12021 Conversion_Error_N
12022 ("cannot convert local pointer to non-local access type",
12023 Operand);
12024 return False;
12025 end if;
12027 -- Special accessibility checks are needed in the case of access
12028 -- discriminants declared for a limited type.
12030 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12031 and then not Is_Local_Anonymous_Access (Opnd_Type)
12032 then
12033 -- When the operand is a selected access discriminant the check
12034 -- needs to be made against the level of the object denoted by
12035 -- the prefix of the selected name (Object_Access_Level handles
12036 -- checking the prefix of the operand for this case).
12038 if Nkind (Operand) = N_Selected_Component
12039 and then Object_Access_Level (Operand) >
12040 Deepest_Type_Access_Level (Target_Type)
12041 then
12042 -- In an instance, this is a run-time check, but one we know
12043 -- will fail, so generate an appropriate warning. The raise
12044 -- will be generated by Expand_N_Type_Conversion.
12046 if In_Instance_Body then
12047 Error_Msg_Warn := SPARK_Mode /= On;
12048 Conversion_Error_N
12049 ("cannot convert access discriminant to non-local "
12050 & "access type<<", Operand);
12051 Conversion_Error_N ("\Program_Error [<<", Operand);
12053 -- Real error if not in instance body
12055 else
12056 Conversion_Error_N
12057 ("cannot convert access discriminant to non-local "
12058 & "access type", Operand);
12059 return False;
12060 end if;
12061 end if;
12063 -- The case of a reference to an access discriminant from
12064 -- within a limited type declaration (which will appear as
12065 -- a discriminal) is always illegal because the level of the
12066 -- discriminant is considered to be deeper than any (nameable)
12067 -- access type.
12069 if Is_Entity_Name (Operand)
12070 and then not Is_Local_Anonymous_Access (Opnd_Type)
12071 and then
12072 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12073 and then Present (Discriminal_Link (Entity (Operand)))
12074 then
12075 Conversion_Error_N
12076 ("discriminant has deeper accessibility level than target",
12077 Operand);
12078 return False;
12079 end if;
12080 end if;
12081 end if;
12083 return True;
12085 -- General and anonymous access types
12087 elsif Ekind_In (Target_Type, E_General_Access_Type,
12088 E_Anonymous_Access_Type)
12089 and then
12090 Conversion_Check
12091 (Is_Access_Type (Opnd_Type)
12092 and then not
12093 Ekind_In (Opnd_Type, E_Access_Subprogram_Type,
12094 E_Access_Protected_Subprogram_Type),
12095 "must be an access-to-object type")
12096 then
12097 if Is_Access_Constant (Opnd_Type)
12098 and then not Is_Access_Constant (Target_Type)
12099 then
12100 Conversion_Error_N
12101 ("access-to-constant operand type not allowed", Operand);
12102 return False;
12103 end if;
12105 -- Check the static accessibility rule of 4.6(17). Note that the
12106 -- check is not enforced when within an instance body, since the RM
12107 -- requires such cases to be caught at run time.
12109 if Ekind (Target_Type) /= E_Anonymous_Access_Type
12110 or else Is_Local_Anonymous_Access (Target_Type)
12111 or else Nkind (Associated_Node_For_Itype (Target_Type)) =
12112 N_Object_Declaration
12113 then
12114 -- Ada 2012 (AI05-0149): Perform legality checking on implicit
12115 -- conversions from an anonymous access type to a named general
12116 -- access type. Such conversions are not allowed in the case of
12117 -- access parameters and stand-alone objects of an anonymous
12118 -- access type. The implicit conversion case is recognized by
12119 -- testing that Comes_From_Source is False and that it's been
12120 -- rewritten. The Comes_From_Source test isn't sufficient because
12121 -- nodes in inlined calls to predefined library routines can have
12122 -- Comes_From_Source set to False. (Is there a better way to test
12123 -- for implicit conversions???)
12125 if Ada_Version >= Ada_2012
12126 and then not Comes_From_Source (N)
12127 and then N /= Original_Node (N)
12128 and then Ekind (Target_Type) = E_General_Access_Type
12129 and then Ekind (Opnd_Type) = E_Anonymous_Access_Type
12130 then
12131 if Is_Itype (Opnd_Type) then
12133 -- Implicit conversions aren't allowed for objects of an
12134 -- anonymous access type, since such objects have nonstatic
12135 -- levels in Ada 2012.
12137 if Nkind (Associated_Node_For_Itype (Opnd_Type)) =
12138 N_Object_Declaration
12139 then
12140 Conversion_Error_N
12141 ("implicit conversion of stand-alone anonymous "
12142 & "access object not allowed", Operand);
12143 return False;
12145 -- Implicit conversions aren't allowed for anonymous access
12146 -- parameters. The "not Is_Local_Anonymous_Access_Type" test
12147 -- is done to exclude anonymous access results.
12149 elsif not Is_Local_Anonymous_Access (Opnd_Type)
12150 and then Nkind_In (Associated_Node_For_Itype (Opnd_Type),
12151 N_Function_Specification,
12152 N_Procedure_Specification)
12153 then
12154 Conversion_Error_N
12155 ("implicit conversion of anonymous access formal "
12156 & "not allowed", Operand);
12157 return False;
12159 -- This is a case where there's an enclosing object whose
12160 -- to which the "statically deeper than" relationship does
12161 -- not apply (such as an access discriminant selected from
12162 -- a dereference of an access parameter).
12164 elsif Object_Access_Level (Operand)
12165 = Scope_Depth (Standard_Standard)
12166 then
12167 Conversion_Error_N
12168 ("implicit conversion of anonymous access value "
12169 & "not allowed", Operand);
12170 return False;
12172 -- In other cases, the level of the operand's type must be
12173 -- statically less deep than that of the target type, else
12174 -- implicit conversion is disallowed (by RM12-8.6(27.1/3)).
12176 elsif Type_Access_Level (Opnd_Type) >
12177 Deepest_Type_Access_Level (Target_Type)
12178 then
12179 Conversion_Error_N
12180 ("implicit conversion of anonymous access value "
12181 & "violates accessibility", Operand);
12182 return False;
12183 end if;
12184 end if;
12186 elsif Type_Access_Level (Opnd_Type) >
12187 Deepest_Type_Access_Level (Target_Type)
12188 then
12189 -- In an instance, this is a run-time check, but one we know
12190 -- will fail, so generate an appropriate warning. The raise
12191 -- will be generated by Expand_N_Type_Conversion.
12193 if In_Instance_Body then
12194 Error_Msg_Warn := SPARK_Mode /= On;
12195 Conversion_Error_N
12196 ("cannot convert local pointer to non-local access type<<",
12197 Operand);
12198 Conversion_Error_N ("\Program_Error [<<", Operand);
12200 -- If not in an instance body, this is a real error
12202 else
12203 -- Avoid generation of spurious error message
12205 if not Error_Posted (N) then
12206 Conversion_Error_N
12207 ("cannot convert local pointer to non-local access type",
12208 Operand);
12209 end if;
12211 return False;
12212 end if;
12214 -- Special accessibility checks are needed in the case of access
12215 -- discriminants declared for a limited type.
12217 elsif Ekind (Opnd_Type) = E_Anonymous_Access_Type
12218 and then not Is_Local_Anonymous_Access (Opnd_Type)
12219 then
12220 -- When the operand is a selected access discriminant the check
12221 -- needs to be made against the level of the object denoted by
12222 -- the prefix of the selected name (Object_Access_Level handles
12223 -- checking the prefix of the operand for this case).
12225 if Nkind (Operand) = N_Selected_Component
12226 and then Object_Access_Level (Operand) >
12227 Deepest_Type_Access_Level (Target_Type)
12228 then
12229 -- In an instance, this is a run-time check, but one we know
12230 -- will fail, so generate an appropriate warning. The raise
12231 -- will be generated by Expand_N_Type_Conversion.
12233 if In_Instance_Body then
12234 Error_Msg_Warn := SPARK_Mode /= On;
12235 Conversion_Error_N
12236 ("cannot convert access discriminant to non-local "
12237 & "access type<<", Operand);
12238 Conversion_Error_N ("\Program_Error [<<", Operand);
12240 -- If not in an instance body, this is a real error
12242 else
12243 Conversion_Error_N
12244 ("cannot convert access discriminant to non-local "
12245 & "access type", Operand);
12246 return False;
12247 end if;
12248 end if;
12250 -- The case of a reference to an access discriminant from
12251 -- within a limited type declaration (which will appear as
12252 -- a discriminal) is always illegal because the level of the
12253 -- discriminant is considered to be deeper than any (nameable)
12254 -- access type.
12256 if Is_Entity_Name (Operand)
12257 and then
12258 Ekind_In (Entity (Operand), E_In_Parameter, E_Constant)
12259 and then Present (Discriminal_Link (Entity (Operand)))
12260 then
12261 Conversion_Error_N
12262 ("discriminant has deeper accessibility level than target",
12263 Operand);
12264 return False;
12265 end if;
12266 end if;
12267 end if;
12269 -- In the presence of limited_with clauses we have to use non-limited
12270 -- views, if available.
12272 Check_Limited : declare
12273 function Full_Designated_Type (T : Entity_Id) return Entity_Id;
12274 -- Helper function to handle limited views
12276 --------------------------
12277 -- Full_Designated_Type --
12278 --------------------------
12280 function Full_Designated_Type (T : Entity_Id) return Entity_Id is
12281 Desig : constant Entity_Id := Designated_Type (T);
12283 begin
12284 -- Handle the limited view of a type
12286 if Is_Incomplete_Type (Desig)
12287 and then From_Limited_With (Desig)
12288 and then Present (Non_Limited_View (Desig))
12289 then
12290 return Available_View (Desig);
12291 else
12292 return Desig;
12293 end if;
12294 end Full_Designated_Type;
12296 -- Local Declarations
12298 Target : constant Entity_Id := Full_Designated_Type (Target_Type);
12299 Opnd : constant Entity_Id := Full_Designated_Type (Opnd_Type);
12301 Same_Base : constant Boolean :=
12302 Base_Type (Target) = Base_Type (Opnd);
12304 -- Start of processing for Check_Limited
12306 begin
12307 if Is_Tagged_Type (Target) then
12308 return Valid_Tagged_Conversion (Target, Opnd);
12310 else
12311 if not Same_Base then
12312 Conversion_Error_NE
12313 ("target designated type not compatible with }",
12314 N, Base_Type (Opnd));
12315 return False;
12317 -- Ada 2005 AI-384: legality rule is symmetric in both
12318 -- designated types. The conversion is legal (with possible
12319 -- constraint check) if either designated type is
12320 -- unconstrained.
12322 elsif Subtypes_Statically_Match (Target, Opnd)
12323 or else
12324 (Has_Discriminants (Target)
12325 and then
12326 (not Is_Constrained (Opnd)
12327 or else not Is_Constrained (Target)))
12328 then
12329 -- Special case, if Value_Size has been used to make the
12330 -- sizes different, the conversion is not allowed even
12331 -- though the subtypes statically match.
12333 if Known_Static_RM_Size (Target)
12334 and then Known_Static_RM_Size (Opnd)
12335 and then RM_Size (Target) /= RM_Size (Opnd)
12336 then
12337 Conversion_Error_NE
12338 ("target designated subtype not compatible with }",
12339 N, Opnd);
12340 Conversion_Error_NE
12341 ("\because sizes of the two designated subtypes differ",
12342 N, Opnd);
12343 return False;
12345 -- Normal case where conversion is allowed
12347 else
12348 return True;
12349 end if;
12351 else
12352 Error_Msg_NE
12353 ("target designated subtype not compatible with }",
12354 N, Opnd);
12355 return False;
12356 end if;
12357 end if;
12358 end Check_Limited;
12360 -- Access to subprogram types. If the operand is an access parameter,
12361 -- the type has a deeper accessibility that any master, and cannot be
12362 -- assigned. We must make an exception if the conversion is part of an
12363 -- assignment and the target is the return object of an extended return
12364 -- statement, because in that case the accessibility check takes place
12365 -- after the return.
12367 elsif Is_Access_Subprogram_Type (Target_Type)
12369 -- Note: this test of Opnd_Type is there to prevent entering this
12370 -- branch in the case of a remote access to subprogram type, which
12371 -- is internally represented as an E_Record_Type.
12373 and then Is_Access_Type (Opnd_Type)
12374 then
12375 if Ekind (Base_Type (Opnd_Type)) = E_Anonymous_Access_Subprogram_Type
12376 and then Is_Entity_Name (Operand)
12377 and then Ekind (Entity (Operand)) = E_In_Parameter
12378 and then
12379 (Nkind (Parent (N)) /= N_Assignment_Statement
12380 or else not Is_Entity_Name (Name (Parent (N)))
12381 or else not Is_Return_Object (Entity (Name (Parent (N)))))
12382 then
12383 Conversion_Error_N
12384 ("illegal attempt to store anonymous access to subprogram",
12385 Operand);
12386 Conversion_Error_N
12387 ("\value has deeper accessibility than any master "
12388 & "(RM 3.10.2 (13))",
12389 Operand);
12391 Error_Msg_NE
12392 ("\use named access type for& instead of access parameter",
12393 Operand, Entity (Operand));
12394 end if;
12396 -- Check that the designated types are subtype conformant
12398 Check_Subtype_Conformant (New_Id => Designated_Type (Target_Type),
12399 Old_Id => Designated_Type (Opnd_Type),
12400 Err_Loc => N);
12402 -- Check the static accessibility rule of 4.6(20)
12404 if Type_Access_Level (Opnd_Type) >
12405 Deepest_Type_Access_Level (Target_Type)
12406 then
12407 Conversion_Error_N
12408 ("operand type has deeper accessibility level than target",
12409 Operand);
12411 -- Check that if the operand type is declared in a generic body,
12412 -- then the target type must be declared within that same body
12413 -- (enforces last sentence of 4.6(20)).
12415 elsif Present (Enclosing_Generic_Body (Opnd_Type)) then
12416 declare
12417 O_Gen : constant Node_Id :=
12418 Enclosing_Generic_Body (Opnd_Type);
12420 T_Gen : Node_Id;
12422 begin
12423 T_Gen := Enclosing_Generic_Body (Target_Type);
12424 while Present (T_Gen) and then T_Gen /= O_Gen loop
12425 T_Gen := Enclosing_Generic_Body (T_Gen);
12426 end loop;
12428 if T_Gen /= O_Gen then
12429 Conversion_Error_N
12430 ("target type must be declared in same generic body "
12431 & "as operand type", N);
12432 end if;
12433 end;
12434 end if;
12436 return True;
12438 -- Remote access to subprogram types
12440 elsif Is_Remote_Access_To_Subprogram_Type (Target_Type)
12441 and then Is_Remote_Access_To_Subprogram_Type (Opnd_Type)
12442 then
12443 -- It is valid to convert from one RAS type to another provided
12444 -- that their specification statically match.
12446 -- Note: at this point, remote access to subprogram types have been
12447 -- expanded to their E_Record_Type representation, and we need to
12448 -- go back to the original access type definition using the
12449 -- Corresponding_Remote_Type attribute in order to check that the
12450 -- designated profiles match.
12452 pragma Assert (Ekind (Target_Type) = E_Record_Type);
12453 pragma Assert (Ekind (Opnd_Type) = E_Record_Type);
12455 Check_Subtype_Conformant
12456 (New_Id =>
12457 Designated_Type (Corresponding_Remote_Type (Target_Type)),
12458 Old_Id =>
12459 Designated_Type (Corresponding_Remote_Type (Opnd_Type)),
12460 Err_Loc =>
12462 return True;
12464 -- If it was legal in the generic, it's legal in the instance
12466 elsif In_Instance_Body then
12467 return True;
12469 -- If both are tagged types, check legality of view conversions
12471 elsif Is_Tagged_Type (Target_Type)
12472 and then
12473 Is_Tagged_Type (Opnd_Type)
12474 then
12475 return Valid_Tagged_Conversion (Target_Type, Opnd_Type);
12477 -- Types derived from the same root type are convertible
12479 elsif Root_Type (Target_Type) = Root_Type (Opnd_Type) then
12480 return True;
12482 -- In an instance or an inlined body, there may be inconsistent views of
12483 -- the same type, or of types derived from a common root.
12485 elsif (In_Instance or In_Inlined_Body)
12486 and then
12487 Root_Type (Underlying_Type (Target_Type)) =
12488 Root_Type (Underlying_Type (Opnd_Type))
12489 then
12490 return True;
12492 -- Special check for common access type error case
12494 elsif Ekind (Target_Type) = E_Access_Type
12495 and then Is_Access_Type (Opnd_Type)
12496 then
12497 Conversion_Error_N ("target type must be general access type!", N);
12498 Conversion_Error_NE -- CODEFIX
12499 ("add ALL to }!", N, Target_Type);
12500 return False;
12502 -- Here we have a real conversion error
12504 else
12505 Conversion_Error_NE
12506 ("invalid conversion, not compatible with }", N, Opnd_Type);
12507 return False;
12508 end if;
12509 end Valid_Conversion;
12511 end Sem_Res;