]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ada/sem_type.adb
[multiple changes]
[thirdparty/gcc.git] / gcc / ada / sem_type.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ T Y P E --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2011, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Atree; use Atree;
27 with Alloc;
28 with Debug; use Debug;
29 with Einfo; use Einfo;
30 with Elists; use Elists;
31 with Nlists; use Nlists;
32 with Errout; use Errout;
33 with Lib; use Lib;
34 with Namet; use Namet;
35 with Opt; use Opt;
36 with Output; use Output;
37 with Sem; use Sem;
38 with Sem_Aux; use Sem_Aux;
39 with Sem_Ch6; use Sem_Ch6;
40 with Sem_Ch8; use Sem_Ch8;
41 with Sem_Ch12; use Sem_Ch12;
42 with Sem_Disp; use Sem_Disp;
43 with Sem_Dist; use Sem_Dist;
44 with Sem_Util; use Sem_Util;
45 with Stand; use Stand;
46 with Sinfo; use Sinfo;
47 with Snames; use Snames;
48 with Table;
49 with Uintp; use Uintp;
50
51 package body Sem_Type is
52
53 ---------------------
54 -- Data Structures --
55 ---------------------
56
57 -- The following data structures establish a mapping between nodes and
58 -- their interpretations. An overloaded node has an entry in Interp_Map,
59 -- which in turn contains a pointer into the All_Interp array. The
60 -- interpretations of a given node are contiguous in All_Interp. Each set
61 -- of interpretations is terminated with the marker No_Interp. In order to
62 -- speed up the retrieval of the interpretations of an overloaded node, the
63 -- Interp_Map table is accessed by means of a simple hashing scheme, and
64 -- the entries in Interp_Map are chained. The heads of clash lists are
65 -- stored in array Headers.
66
67 -- Headers Interp_Map All_Interp
68
69 -- _ +-----+ +--------+
70 -- |_| |_____| --->|interp1 |
71 -- |_|---------->|node | | |interp2 |
72 -- |_| |index|---------| |nointerp|
73 -- |_| |next | | |
74 -- |-----| | |
75 -- +-----+ +--------+
76
77 -- This scheme does not currently reclaim interpretations. In principle,
78 -- after a unit is compiled, all overloadings have been resolved, and the
79 -- candidate interpretations should be deleted. This should be easier
80 -- now than with the previous scheme???
81
82 package All_Interp is new Table.Table (
83 Table_Component_Type => Interp,
84 Table_Index_Type => Int,
85 Table_Low_Bound => 0,
86 Table_Initial => Alloc.All_Interp_Initial,
87 Table_Increment => Alloc.All_Interp_Increment,
88 Table_Name => "All_Interp");
89
90 type Interp_Ref is record
91 Node : Node_Id;
92 Index : Interp_Index;
93 Next : Int;
94 end record;
95
96 Header_Size : constant Int := 2 ** 12;
97 No_Entry : constant Int := -1;
98 Headers : array (0 .. Header_Size) of Int := (others => No_Entry);
99
100 package Interp_Map is new Table.Table (
101 Table_Component_Type => Interp_Ref,
102 Table_Index_Type => Int,
103 Table_Low_Bound => 0,
104 Table_Initial => Alloc.Interp_Map_Initial,
105 Table_Increment => Alloc.Interp_Map_Increment,
106 Table_Name => "Interp_Map");
107
108 function Hash (N : Node_Id) return Int;
109 -- A trivial hashing function for nodes, used to insert an overloaded
110 -- node into the Interp_Map table.
111
112 -------------------------------------
113 -- Handling of Overload Resolution --
114 -------------------------------------
115
116 -- Overload resolution uses two passes over the syntax tree of a complete
117 -- context. In the first, bottom-up pass, the types of actuals in calls
118 -- are used to resolve possibly overloaded subprogram and operator names.
119 -- In the second top-down pass, the type of the context (for example the
120 -- condition in a while statement) is used to resolve a possibly ambiguous
121 -- call, and the unique subprogram name in turn imposes a specific context
122 -- on each of its actuals.
123
124 -- Most expressions are in fact unambiguous, and the bottom-up pass is
125 -- sufficient to resolve most everything. To simplify the common case,
126 -- names and expressions carry a flag Is_Overloaded to indicate whether
127 -- they have more than one interpretation. If the flag is off, then each
128 -- name has already a unique meaning and type, and the bottom-up pass is
129 -- sufficient (and much simpler).
130
131 --------------------------
132 -- Operator Overloading --
133 --------------------------
134
135 -- The visibility of operators is handled differently from that of other
136 -- entities. We do not introduce explicit versions of primitive operators
137 -- for each type definition. As a result, there is only one entity
138 -- corresponding to predefined addition on all numeric types, etc. The
139 -- back-end resolves predefined operators according to their type. The
140 -- visibility of primitive operations then reduces to the visibility of the
141 -- resulting type: (a + b) is a legal interpretation of some primitive
142 -- operator + if the type of the result (which must also be the type of a
143 -- and b) is directly visible (either immediately visible or use-visible).
144
145 -- User-defined operators are treated like other functions, but the
146 -- visibility of these user-defined operations must be special-cased
147 -- to determine whether they hide or are hidden by predefined operators.
148 -- The form P."+" (x, y) requires additional handling.
149
150 -- Concatenation is treated more conventionally: for every one-dimensional
151 -- array type we introduce a explicit concatenation operator. This is
152 -- necessary to handle the case of (element & element => array) which
153 -- cannot be handled conveniently if there is no explicit instance of
154 -- resulting type of the operation.
155
156 -----------------------
157 -- Local Subprograms --
158 -----------------------
159
160 procedure All_Overloads;
161 pragma Warnings (Off, All_Overloads);
162 -- Debugging procedure: list full contents of Overloads table
163
164 function Binary_Op_Interp_Has_Abstract_Op
165 (N : Node_Id;
166 E : Entity_Id) return Entity_Id;
167 -- Given the node and entity of a binary operator, determine whether the
168 -- actuals of E contain an abstract interpretation with regards to the
169 -- types of their corresponding formals. Return the abstract operation or
170 -- Empty.
171
172 function Function_Interp_Has_Abstract_Op
173 (N : Node_Id;
174 E : Entity_Id) return Entity_Id;
175 -- Given the node and entity of a function call, determine whether the
176 -- actuals of E contain an abstract interpretation with regards to the
177 -- types of their corresponding formals. Return the abstract operation or
178 -- Empty.
179
180 function Has_Abstract_Op
181 (N : Node_Id;
182 Typ : Entity_Id) return Entity_Id;
183 -- Subsidiary routine to Binary_Op_Interp_Has_Abstract_Op and Function_
184 -- Interp_Has_Abstract_Op. Determine whether an overloaded node has an
185 -- abstract interpretation which yields type Typ.
186
187 procedure New_Interps (N : Node_Id);
188 -- Initialize collection of interpretations for the given node, which is
189 -- either an overloaded entity, or an operation whose arguments have
190 -- multiple interpretations. Interpretations can be added to only one
191 -- node at a time.
192
193 function Specific_Type (Typ_1, Typ_2 : Entity_Id) return Entity_Id;
194 -- If Typ_1 and Typ_2 are compatible, return the one that is not universal
195 -- or is not a "class" type (any_character, etc).
196
197 --------------------
198 -- Add_One_Interp --
199 --------------------
200
201 procedure Add_One_Interp
202 (N : Node_Id;
203 E : Entity_Id;
204 T : Entity_Id;
205 Opnd_Type : Entity_Id := Empty)
206 is
207 Vis_Type : Entity_Id;
208
209 procedure Add_Entry (Name : Entity_Id; Typ : Entity_Id);
210 -- Add one interpretation to an overloaded node. Add a new entry if
211 -- not hidden by previous one, and remove previous one if hidden by
212 -- new one.
213
214 function Is_Universal_Operation (Op : Entity_Id) return Boolean;
215 -- True if the entity is a predefined operator and the operands have
216 -- a universal Interpretation.
217
218 ---------------
219 -- Add_Entry --
220 ---------------
221
222 procedure Add_Entry (Name : Entity_Id; Typ : Entity_Id) is
223 Abstr_Op : Entity_Id := Empty;
224 I : Interp_Index;
225 It : Interp;
226
227 -- Start of processing for Add_Entry
228
229 begin
230 -- Find out whether the new entry references interpretations that
231 -- are abstract or disabled by abstract operators.
232
233 if Ada_Version >= Ada_2005 then
234 if Nkind (N) in N_Binary_Op then
235 Abstr_Op := Binary_Op_Interp_Has_Abstract_Op (N, Name);
236 elsif Nkind (N) = N_Function_Call then
237 Abstr_Op := Function_Interp_Has_Abstract_Op (N, Name);
238 end if;
239 end if;
240
241 Get_First_Interp (N, I, It);
242 while Present (It.Nam) loop
243
244 -- A user-defined subprogram hides another declared at an outer
245 -- level, or one that is use-visible. So return if previous
246 -- definition hides new one (which is either in an outer
247 -- scope, or use-visible). Note that for functions use-visible
248 -- is the same as potentially use-visible. If new one hides
249 -- previous one, replace entry in table of interpretations.
250 -- If this is a universal operation, retain the operator in case
251 -- preference rule applies.
252
253 if (((Ekind (Name) = E_Function or else Ekind (Name) = E_Procedure)
254 and then Ekind (Name) = Ekind (It.Nam))
255 or else (Ekind (Name) = E_Operator
256 and then Ekind (It.Nam) = E_Function))
257
258 and then Is_Immediately_Visible (It.Nam)
259 and then Type_Conformant (Name, It.Nam)
260 and then Base_Type (It.Typ) = Base_Type (T)
261 then
262 if Is_Universal_Operation (Name) then
263 exit;
264
265 -- If node is an operator symbol, we have no actuals with
266 -- which to check hiding, and this is done in full in the
267 -- caller (Analyze_Subprogram_Renaming) so we include the
268 -- predefined operator in any case.
269
270 elsif Nkind (N) = N_Operator_Symbol
271 or else (Nkind (N) = N_Expanded_Name
272 and then
273 Nkind (Selector_Name (N)) = N_Operator_Symbol)
274 then
275 exit;
276
277 elsif not In_Open_Scopes (Scope (Name))
278 or else Scope_Depth (Scope (Name)) <=
279 Scope_Depth (Scope (It.Nam))
280 then
281 -- If ambiguity within instance, and entity is not an
282 -- implicit operation, save for later disambiguation.
283
284 if Scope (Name) = Scope (It.Nam)
285 and then not Is_Inherited_Operation (Name)
286 and then In_Instance
287 then
288 exit;
289 else
290 return;
291 end if;
292
293 else
294 All_Interp.Table (I).Nam := Name;
295 return;
296 end if;
297
298 -- Avoid making duplicate entries in overloads
299
300 elsif Name = It.Nam
301 and then Base_Type (It.Typ) = Base_Type (T)
302 then
303 return;
304
305 -- Otherwise keep going
306
307 else
308 Get_Next_Interp (I, It);
309 end if;
310
311 end loop;
312
313 All_Interp.Table (All_Interp.Last) := (Name, Typ, Abstr_Op);
314 All_Interp.Append (No_Interp);
315 end Add_Entry;
316
317 ----------------------------
318 -- Is_Universal_Operation --
319 ----------------------------
320
321 function Is_Universal_Operation (Op : Entity_Id) return Boolean is
322 Arg : Node_Id;
323
324 begin
325 if Ekind (Op) /= E_Operator then
326 return False;
327
328 elsif Nkind (N) in N_Binary_Op then
329 return Present (Universal_Interpretation (Left_Opnd (N)))
330 and then Present (Universal_Interpretation (Right_Opnd (N)));
331
332 elsif Nkind (N) in N_Unary_Op then
333 return Present (Universal_Interpretation (Right_Opnd (N)));
334
335 elsif Nkind (N) = N_Function_Call then
336 Arg := First_Actual (N);
337 while Present (Arg) loop
338 if No (Universal_Interpretation (Arg)) then
339 return False;
340 end if;
341
342 Next_Actual (Arg);
343 end loop;
344
345 return True;
346
347 else
348 return False;
349 end if;
350 end Is_Universal_Operation;
351
352 -- Start of processing for Add_One_Interp
353
354 begin
355 -- If the interpretation is a predefined operator, verify that the
356 -- result type is visible, or that the entity has already been
357 -- resolved (case of an instantiation node that refers to a predefined
358 -- operation, or an internally generated operator node, or an operator
359 -- given as an expanded name). If the operator is a comparison or
360 -- equality, it is the type of the operand that matters to determine
361 -- whether the operator is visible. In an instance, the check is not
362 -- performed, given that the operator was visible in the generic.
363
364 if Ekind (E) = E_Operator then
365 if Present (Opnd_Type) then
366 Vis_Type := Opnd_Type;
367 else
368 Vis_Type := Base_Type (T);
369 end if;
370
371 if In_Open_Scopes (Scope (Vis_Type))
372 or else Is_Potentially_Use_Visible (Vis_Type)
373 or else In_Use (Vis_Type)
374 or else (In_Use (Scope (Vis_Type))
375 and then not Is_Hidden (Vis_Type))
376 or else Nkind (N) = N_Expanded_Name
377 or else (Nkind (N) in N_Op and then E = Entity (N))
378 or else In_Instance
379 or else Ekind (Vis_Type) = E_Anonymous_Access_Type
380 then
381 null;
382
383 -- If the node is given in functional notation and the prefix
384 -- is an expanded name, then the operator is visible if the
385 -- prefix is the scope of the result type as well. If the
386 -- operator is (implicitly) defined in an extension of system,
387 -- it is know to be valid (see Defined_In_Scope, sem_ch4.adb).
388
389 elsif Nkind (N) = N_Function_Call
390 and then Nkind (Name (N)) = N_Expanded_Name
391 and then (Entity (Prefix (Name (N))) = Scope (Base_Type (T))
392 or else Entity (Prefix (Name (N))) = Scope (Vis_Type)
393 or else Scope (Vis_Type) = System_Aux_Id)
394 then
395 null;
396
397 -- Save type for subsequent error message, in case no other
398 -- interpretation is found.
399
400 else
401 Candidate_Type := Vis_Type;
402 return;
403 end if;
404
405 -- In an instance, an abstract non-dispatching operation cannot be a
406 -- candidate interpretation, because it could not have been one in the
407 -- generic (it may be a spurious overloading in the instance).
408
409 elsif In_Instance
410 and then Is_Overloadable (E)
411 and then Is_Abstract_Subprogram (E)
412 and then not Is_Dispatching_Operation (E)
413 then
414 return;
415
416 -- An inherited interface operation that is implemented by some derived
417 -- type does not participate in overload resolution, only the
418 -- implementation operation does.
419
420 elsif Is_Hidden (E)
421 and then Is_Subprogram (E)
422 and then Present (Interface_Alias (E))
423 then
424 -- Ada 2005 (AI-251): If this primitive operation corresponds with
425 -- an immediate ancestor interface there is no need to add it to the
426 -- list of interpretations. The corresponding aliased primitive is
427 -- also in this list of primitive operations and will be used instead
428 -- because otherwise we have a dummy ambiguity between the two
429 -- subprograms which are in fact the same.
430
431 if not Is_Ancestor
432 (Find_Dispatching_Type (Interface_Alias (E)),
433 Find_Dispatching_Type (E))
434 then
435 Add_One_Interp (N, Interface_Alias (E), T);
436 end if;
437
438 return;
439
440 -- Calling stubs for an RACW operation never participate in resolution,
441 -- they are executed only through dispatching calls.
442
443 elsif Is_RACW_Stub_Type_Operation (E) then
444 return;
445 end if;
446
447 -- If this is the first interpretation of N, N has type Any_Type.
448 -- In that case place the new type on the node. If one interpretation
449 -- already exists, indicate that the node is overloaded, and store
450 -- both the previous and the new interpretation in All_Interp. If
451 -- this is a later interpretation, just add it to the set.
452
453 if Etype (N) = Any_Type then
454 if Is_Type (E) then
455 Set_Etype (N, T);
456
457 else
458 -- Record both the operator or subprogram name, and its type
459
460 if Nkind (N) in N_Op or else Is_Entity_Name (N) then
461 Set_Entity (N, E);
462 end if;
463
464 Set_Etype (N, T);
465 end if;
466
467 -- Either there is no current interpretation in the table for any
468 -- node or the interpretation that is present is for a different
469 -- node. In both cases add a new interpretation to the table.
470
471 elsif Interp_Map.Last < 0
472 or else
473 (Interp_Map.Table (Interp_Map.Last).Node /= N
474 and then not Is_Overloaded (N))
475 then
476 New_Interps (N);
477
478 if (Nkind (N) in N_Op or else Is_Entity_Name (N))
479 and then Present (Entity (N))
480 then
481 Add_Entry (Entity (N), Etype (N));
482
483 elsif Nkind_In (N, N_Function_Call, N_Procedure_Call_Statement)
484 and then Is_Entity_Name (Name (N))
485 then
486 Add_Entry (Entity (Name (N)), Etype (N));
487
488 -- If this is an indirect call there will be no name associated
489 -- with the previous entry. To make diagnostics clearer, save
490 -- Subprogram_Type of first interpretation, so that the error will
491 -- point to the anonymous access to subprogram, not to the result
492 -- type of the call itself.
493
494 elsif (Nkind (N)) = N_Function_Call
495 and then Nkind (Name (N)) = N_Explicit_Dereference
496 and then Is_Overloaded (Name (N))
497 then
498 declare
499 It : Interp;
500
501 Itn : Interp_Index;
502 pragma Warnings (Off, Itn);
503
504 begin
505 Get_First_Interp (Name (N), Itn, It);
506 Add_Entry (It.Nam, Etype (N));
507 end;
508
509 else
510 -- Overloaded prefix in indexed or selected component, or call
511 -- whose name is an expression or another call.
512
513 Add_Entry (Etype (N), Etype (N));
514 end if;
515
516 Add_Entry (E, T);
517
518 else
519 Add_Entry (E, T);
520 end if;
521 end Add_One_Interp;
522
523 -------------------
524 -- All_Overloads --
525 -------------------
526
527 procedure All_Overloads is
528 begin
529 for J in All_Interp.First .. All_Interp.Last loop
530
531 if Present (All_Interp.Table (J).Nam) then
532 Write_Entity_Info (All_Interp.Table (J). Nam, " ");
533 else
534 Write_Str ("No Interp");
535 Write_Eol;
536 end if;
537
538 Write_Str ("=================");
539 Write_Eol;
540 end loop;
541 end All_Overloads;
542
543 --------------------------------------
544 -- Binary_Op_Interp_Has_Abstract_Op --
545 --------------------------------------
546
547 function Binary_Op_Interp_Has_Abstract_Op
548 (N : Node_Id;
549 E : Entity_Id) return Entity_Id
550 is
551 Abstr_Op : Entity_Id;
552 E_Left : constant Node_Id := First_Formal (E);
553 E_Right : constant Node_Id := Next_Formal (E_Left);
554
555 begin
556 Abstr_Op := Has_Abstract_Op (Left_Opnd (N), Etype (E_Left));
557 if Present (Abstr_Op) then
558 return Abstr_Op;
559 end if;
560
561 return Has_Abstract_Op (Right_Opnd (N), Etype (E_Right));
562 end Binary_Op_Interp_Has_Abstract_Op;
563
564 ---------------------
565 -- Collect_Interps --
566 ---------------------
567
568 procedure Collect_Interps (N : Node_Id) is
569 Ent : constant Entity_Id := Entity (N);
570 H : Entity_Id;
571 First_Interp : Interp_Index;
572
573 begin
574 New_Interps (N);
575
576 -- Unconditionally add the entity that was initially matched
577
578 First_Interp := All_Interp.Last;
579 Add_One_Interp (N, Ent, Etype (N));
580
581 -- For expanded name, pick up all additional entities from the
582 -- same scope, since these are obviously also visible. Note that
583 -- these are not necessarily contiguous on the homonym chain.
584
585 if Nkind (N) = N_Expanded_Name then
586 H := Homonym (Ent);
587 while Present (H) loop
588 if Scope (H) = Scope (Entity (N)) then
589 Add_One_Interp (N, H, Etype (H));
590 end if;
591
592 H := Homonym (H);
593 end loop;
594
595 -- Case of direct name
596
597 else
598 -- First, search the homonym chain for directly visible entities
599
600 H := Current_Entity (Ent);
601 while Present (H) loop
602 exit when (not Is_Overloadable (H))
603 and then Is_Immediately_Visible (H);
604
605 if Is_Immediately_Visible (H)
606 and then H /= Ent
607 then
608 -- Only add interpretation if not hidden by an inner
609 -- immediately visible one.
610
611 for J in First_Interp .. All_Interp.Last - 1 loop
612
613 -- Current homograph is not hidden. Add to overloads
614
615 if not Is_Immediately_Visible (All_Interp.Table (J).Nam) then
616 exit;
617
618 -- Homograph is hidden, unless it is a predefined operator
619
620 elsif Type_Conformant (H, All_Interp.Table (J).Nam) then
621
622 -- A homograph in the same scope can occur within an
623 -- instantiation, the resulting ambiguity has to be
624 -- resolved later.
625
626 if Scope (H) = Scope (Ent)
627 and then In_Instance
628 and then not Is_Inherited_Operation (H)
629 then
630 All_Interp.Table (All_Interp.Last) :=
631 (H, Etype (H), Empty);
632 All_Interp.Append (No_Interp);
633 goto Next_Homograph;
634
635 elsif Scope (H) /= Standard_Standard then
636 goto Next_Homograph;
637 end if;
638 end if;
639 end loop;
640
641 -- On exit, we know that current homograph is not hidden
642
643 Add_One_Interp (N, H, Etype (H));
644
645 if Debug_Flag_E then
646 Write_Str ("Add overloaded interpretation ");
647 Write_Int (Int (H));
648 Write_Eol;
649 end if;
650 end if;
651
652 <<Next_Homograph>>
653 H := Homonym (H);
654 end loop;
655
656 -- Scan list of homographs for use-visible entities only
657
658 H := Current_Entity (Ent);
659
660 while Present (H) loop
661 if Is_Potentially_Use_Visible (H)
662 and then H /= Ent
663 and then Is_Overloadable (H)
664 then
665 for J in First_Interp .. All_Interp.Last - 1 loop
666
667 if not Is_Immediately_Visible (All_Interp.Table (J).Nam) then
668 exit;
669
670 elsif Type_Conformant (H, All_Interp.Table (J).Nam) then
671 goto Next_Use_Homograph;
672 end if;
673 end loop;
674
675 Add_One_Interp (N, H, Etype (H));
676 end if;
677
678 <<Next_Use_Homograph>>
679 H := Homonym (H);
680 end loop;
681 end if;
682
683 if All_Interp.Last = First_Interp + 1 then
684
685 -- The final interpretation is in fact not overloaded. Note that the
686 -- unique legal interpretation may or may not be the original one,
687 -- so we need to update N's entity and etype now, because once N
688 -- is marked as not overloaded it is also expected to carry the
689 -- proper interpretation.
690
691 Set_Is_Overloaded (N, False);
692 Set_Entity (N, All_Interp.Table (First_Interp).Nam);
693 Set_Etype (N, All_Interp.Table (First_Interp).Typ);
694 end if;
695 end Collect_Interps;
696
697 ------------
698 -- Covers --
699 ------------
700
701 function Covers (T1, T2 : Entity_Id) return Boolean is
702
703 BT1 : Entity_Id;
704 BT2 : Entity_Id;
705
706 function Full_View_Covers (Typ1, Typ2 : Entity_Id) return Boolean;
707 -- In an instance the proper view may not always be correct for
708 -- private types, but private and full view are compatible. This
709 -- removes spurious errors from nested instantiations that involve,
710 -- among other things, types derived from private types.
711
712 ----------------------
713 -- Full_View_Covers --
714 ----------------------
715
716 function Full_View_Covers (Typ1, Typ2 : Entity_Id) return Boolean is
717 begin
718 return
719 Is_Private_Type (Typ1)
720 and then
721 ((Present (Full_View (Typ1))
722 and then Covers (Full_View (Typ1), Typ2))
723 or else Base_Type (Typ1) = Typ2
724 or else Base_Type (Typ2) = Typ1);
725 end Full_View_Covers;
726
727 -- Start of processing for Covers
728
729 begin
730 -- If either operand missing, then this is an error, but ignore it (and
731 -- pretend we have a cover) if errors already detected, since this may
732 -- simply mean we have malformed trees or a semantic error upstream.
733
734 if No (T1) or else No (T2) then
735 if Total_Errors_Detected /= 0 then
736 return True;
737 else
738 raise Program_Error;
739 end if;
740 end if;
741
742 -- Trivial case: same types are always compatible
743
744 if T1 = T2 then
745 return True;
746 end if;
747
748 -- First check for Standard_Void_Type, which is special. Subsequent
749 -- processing in this routine assumes T1 and T2 are bona fide types;
750 -- Standard_Void_Type is a special entity that has some, but not all,
751 -- properties of types.
752
753 if (T1 = Standard_Void_Type) /= (T2 = Standard_Void_Type) then
754 return False;
755 end if;
756
757 BT1 := Base_Type (T1);
758 BT2 := Base_Type (T2);
759
760 -- Handle underlying view of records with unknown discriminants
761 -- using the original entity that motivated the construction of
762 -- this underlying record view (see Build_Derived_Private_Type).
763
764 if Is_Underlying_Record_View (BT1) then
765 BT1 := Underlying_Record_View (BT1);
766 end if;
767
768 if Is_Underlying_Record_View (BT2) then
769 BT2 := Underlying_Record_View (BT2);
770 end if;
771
772 -- Simplest case: types that have the same base type and are not generic
773 -- actuals are compatible. Generic actuals belong to their class but are
774 -- not compatible with other types of their class, and in particular
775 -- with other generic actuals. They are however compatible with their
776 -- own subtypes, and itypes with the same base are compatible as well.
777 -- Similarly, constrained subtypes obtained from expressions of an
778 -- unconstrained nominal type are compatible with the base type (may
779 -- lead to spurious ambiguities in obscure cases ???)
780
781 -- Generic actuals require special treatment to avoid spurious ambi-
782 -- guities in an instance, when two formal types are instantiated with
783 -- the same actual, so that different subprograms end up with the same
784 -- signature in the instance.
785
786 if BT1 = BT2
787 or else BT1 = T2
788 or else BT2 = T1
789 then
790 if not Is_Generic_Actual_Type (T1) then
791 return True;
792 else
793 return (not Is_Generic_Actual_Type (T2)
794 or else Is_Itype (T1)
795 or else Is_Itype (T2)
796 or else Is_Constr_Subt_For_U_Nominal (T1)
797 or else Is_Constr_Subt_For_U_Nominal (T2)
798 or else Scope (T1) /= Scope (T2));
799 end if;
800
801 -- Literals are compatible with types in a given "class"
802
803 elsif (T2 = Universal_Integer and then Is_Integer_Type (T1))
804 or else (T2 = Universal_Real and then Is_Real_Type (T1))
805 or else (T2 = Universal_Fixed and then Is_Fixed_Point_Type (T1))
806 or else (T2 = Any_Fixed and then Is_Fixed_Point_Type (T1))
807 or else (T2 = Any_String and then Is_String_Type (T1))
808 or else (T2 = Any_Character and then Is_Character_Type (T1))
809 or else (T2 = Any_Access and then Is_Access_Type (T1))
810 then
811 return True;
812
813 -- The context may be class wide, and a class-wide type is compatible
814 -- with any member of the class.
815
816 elsif Is_Class_Wide_Type (T1)
817 and then Is_Ancestor (Root_Type (T1), T2)
818 then
819 return True;
820
821 elsif Is_Class_Wide_Type (T1)
822 and then Is_Class_Wide_Type (T2)
823 and then Base_Type (Etype (T1)) = Base_Type (Etype (T2))
824 then
825 return True;
826
827 -- Ada 2005 (AI-345): A class-wide abstract interface type covers a
828 -- task_type or protected_type that implements the interface.
829
830 elsif Ada_Version >= Ada_2005
831 and then Is_Class_Wide_Type (T1)
832 and then Is_Interface (Etype (T1))
833 and then Is_Concurrent_Type (T2)
834 and then Interface_Present_In_Ancestor
835 (Typ => BT2, Iface => Etype (T1))
836 then
837 return True;
838
839 -- Ada 2005 (AI-251): A class-wide abstract interface type T1 covers an
840 -- object T2 implementing T1.
841
842 elsif Ada_Version >= Ada_2005
843 and then Is_Class_Wide_Type (T1)
844 and then Is_Interface (Etype (T1))
845 and then Is_Tagged_Type (T2)
846 then
847 if Interface_Present_In_Ancestor (Typ => T2,
848 Iface => Etype (T1))
849 then
850 return True;
851 end if;
852
853 declare
854 E : Entity_Id;
855 Elmt : Elmt_Id;
856
857 begin
858 if Is_Concurrent_Type (BT2) then
859 E := Corresponding_Record_Type (BT2);
860 else
861 E := BT2;
862 end if;
863
864 -- Ada 2005 (AI-251): A class-wide abstract interface type T1
865 -- covers an object T2 that implements a direct derivation of T1.
866 -- Note: test for presence of E is defense against previous error.
867
868 if Present (E)
869 and then Present (Interfaces (E))
870 then
871 Elmt := First_Elmt (Interfaces (E));
872 while Present (Elmt) loop
873 if Is_Ancestor (Etype (T1), Node (Elmt)) then
874 return True;
875 end if;
876
877 Next_Elmt (Elmt);
878 end loop;
879 end if;
880
881 -- We should also check the case in which T1 is an ancestor of
882 -- some implemented interface???
883
884 return False;
885 end;
886
887 -- In a dispatching call the actual may be class-wide, the formal
888 -- may be its specific type, or that of a descendent of it.
889
890 elsif Is_Class_Wide_Type (T2)
891 and then
892 (Class_Wide_Type (T1) = T2
893 or else Base_Type (Root_Type (T2)) = BT1)
894 then
895 return True;
896
897 -- Some contexts require a class of types rather than a specific type.
898 -- For example, conditions require any boolean type, fixed point
899 -- attributes require some real type, etc. The built-in types Any_XXX
900 -- represent these classes.
901
902 elsif (T1 = Any_Integer and then Is_Integer_Type (T2))
903 or else (T1 = Any_Boolean and then Is_Boolean_Type (T2))
904 or else (T1 = Any_Real and then Is_Real_Type (T2))
905 or else (T1 = Any_Fixed and then Is_Fixed_Point_Type (T2))
906 or else (T1 = Any_Discrete and then Is_Discrete_Type (T2))
907 then
908 return True;
909
910 -- An aggregate is compatible with an array or record type
911
912 elsif T2 = Any_Composite
913 and then Is_Aggregate_Type (T1)
914 then
915 return True;
916
917 -- If the expected type is an anonymous access, the designated type must
918 -- cover that of the expression. Use the base type for this check: even
919 -- though access subtypes are rare in sources, they are generated for
920 -- actuals in instantiations.
921
922 elsif Ekind (BT1) = E_Anonymous_Access_Type
923 and then Is_Access_Type (T2)
924 and then Covers (Designated_Type (T1), Designated_Type (T2))
925 then
926 return True;
927
928 -- An Access_To_Subprogram is compatible with itself, or with an
929 -- anonymous type created for an attribute reference Access.
930
931 elsif (Ekind (BT1) = E_Access_Subprogram_Type
932 or else
933 Ekind (BT1) = E_Access_Protected_Subprogram_Type)
934 and then Is_Access_Type (T2)
935 and then (not Comes_From_Source (T1)
936 or else not Comes_From_Source (T2))
937 and then (Is_Overloadable (Designated_Type (T2))
938 or else
939 Ekind (Designated_Type (T2)) = E_Subprogram_Type)
940 and then
941 Type_Conformant (Designated_Type (T1), Designated_Type (T2))
942 and then
943 Mode_Conformant (Designated_Type (T1), Designated_Type (T2))
944 then
945 return True;
946
947 -- Ada 2005 (AI-254): An Anonymous_Access_To_Subprogram is compatible
948 -- with itself, or with an anonymous type created for an attribute
949 -- reference Access.
950
951 elsif (Ekind (BT1) = E_Anonymous_Access_Subprogram_Type
952 or else
953 Ekind (BT1)
954 = E_Anonymous_Access_Protected_Subprogram_Type)
955 and then Is_Access_Type (T2)
956 and then (not Comes_From_Source (T1)
957 or else not Comes_From_Source (T2))
958 and then (Is_Overloadable (Designated_Type (T2))
959 or else
960 Ekind (Designated_Type (T2)) = E_Subprogram_Type)
961 and then
962 Type_Conformant (Designated_Type (T1), Designated_Type (T2))
963 and then
964 Mode_Conformant (Designated_Type (T1), Designated_Type (T2))
965 then
966 return True;
967
968 -- The context can be a remote access type, and the expression the
969 -- corresponding source type declared in a categorized package, or
970 -- vice versa.
971
972 elsif Is_Record_Type (T1)
973 and then (Is_Remote_Call_Interface (T1)
974 or else Is_Remote_Types (T1))
975 and then Present (Corresponding_Remote_Type (T1))
976 then
977 return Covers (Corresponding_Remote_Type (T1), T2);
978
979 -- and conversely.
980
981 elsif Is_Record_Type (T2)
982 and then (Is_Remote_Call_Interface (T2)
983 or else Is_Remote_Types (T2))
984 and then Present (Corresponding_Remote_Type (T2))
985 then
986 return Covers (Corresponding_Remote_Type (T2), T1);
987
988 -- Synchronized types are represented at run time by their corresponding
989 -- record type. During expansion one is replaced with the other, but
990 -- they are compatible views of the same type.
991
992 elsif Is_Record_Type (T1)
993 and then Is_Concurrent_Type (T2)
994 and then Present (Corresponding_Record_Type (T2))
995 then
996 return Covers (T1, Corresponding_Record_Type (T2));
997
998 elsif Is_Concurrent_Type (T1)
999 and then Present (Corresponding_Record_Type (T1))
1000 and then Is_Record_Type (T2)
1001 then
1002 return Covers (Corresponding_Record_Type (T1), T2);
1003
1004 -- During analysis, an attribute reference 'Access has a special type
1005 -- kind: Access_Attribute_Type, to be replaced eventually with the type
1006 -- imposed by context.
1007
1008 elsif Ekind (T2) = E_Access_Attribute_Type
1009 and then Ekind_In (BT1, E_General_Access_Type, E_Access_Type)
1010 and then Covers (Designated_Type (T1), Designated_Type (T2))
1011 then
1012 -- If the target type is a RACW type while the source is an access
1013 -- attribute type, we are building a RACW that may be exported.
1014
1015 if Is_Remote_Access_To_Class_Wide_Type (BT1) then
1016 Set_Has_RACW (Current_Sem_Unit);
1017 end if;
1018
1019 return True;
1020
1021 -- Ditto for allocators, which eventually resolve to the context type
1022
1023 elsif Ekind (T2) = E_Allocator_Type
1024 and then Is_Access_Type (T1)
1025 then
1026 return Covers (Designated_Type (T1), Designated_Type (T2))
1027 or else
1028 (From_With_Type (Designated_Type (T1))
1029 and then Covers (Designated_Type (T2), Designated_Type (T1)));
1030
1031 -- A boolean operation on integer literals is compatible with modular
1032 -- context.
1033
1034 elsif T2 = Any_Modular
1035 and then Is_Modular_Integer_Type (T1)
1036 then
1037 return True;
1038
1039 -- The actual type may be the result of a previous error
1040
1041 elsif BT2 = Any_Type then
1042 return True;
1043
1044 -- A packed array type covers its corresponding non-packed type. This is
1045 -- not legitimate Ada, but allows the omission of a number of otherwise
1046 -- useless unchecked conversions, and since this can only arise in
1047 -- (known correct) expanded code, no harm is done.
1048
1049 elsif Is_Array_Type (T2)
1050 and then Is_Packed (T2)
1051 and then T1 = Packed_Array_Type (T2)
1052 then
1053 return True;
1054
1055 -- Similarly an array type covers its corresponding packed array type
1056
1057 elsif Is_Array_Type (T1)
1058 and then Is_Packed (T1)
1059 and then T2 = Packed_Array_Type (T1)
1060 then
1061 return True;
1062
1063 -- In instances, or with types exported from instantiations, check
1064 -- whether a partial and a full view match. Verify that types are
1065 -- legal, to prevent cascaded errors.
1066
1067 elsif In_Instance
1068 and then
1069 (Full_View_Covers (T1, T2)
1070 or else Full_View_Covers (T2, T1))
1071 then
1072 return True;
1073
1074 elsif Is_Type (T2)
1075 and then Is_Generic_Actual_Type (T2)
1076 and then Full_View_Covers (T1, T2)
1077 then
1078 return True;
1079
1080 elsif Is_Type (T1)
1081 and then Is_Generic_Actual_Type (T1)
1082 and then Full_View_Covers (T2, T1)
1083 then
1084 return True;
1085
1086 -- In the expansion of inlined bodies, types are compatible if they
1087 -- are structurally equivalent.
1088
1089 elsif In_Inlined_Body
1090 and then (Underlying_Type (T1) = Underlying_Type (T2)
1091 or else (Is_Access_Type (T1)
1092 and then Is_Access_Type (T2)
1093 and then
1094 Designated_Type (T1) = Designated_Type (T2))
1095 or else (T1 = Any_Access
1096 and then Is_Access_Type (Underlying_Type (T2)))
1097 or else (T2 = Any_Composite
1098 and then
1099 Is_Composite_Type (Underlying_Type (T1))))
1100 then
1101 return True;
1102
1103 -- Ada 2005 (AI-50217): Additional branches to make the shadow entity
1104 -- obtained through a limited_with compatible with its real entity.
1105
1106 elsif From_With_Type (T1) then
1107
1108 -- If the expected type is the non-limited view of a type, the
1109 -- expression may have the limited view. If that one in turn is
1110 -- incomplete, get full view if available.
1111
1112 if Is_Incomplete_Type (T1) then
1113 return Covers (Get_Full_View (Non_Limited_View (T1)), T2);
1114
1115 elsif Ekind (T1) = E_Class_Wide_Type then
1116 return
1117 Covers (Class_Wide_Type (Non_Limited_View (Etype (T1))), T2);
1118 else
1119 return False;
1120 end if;
1121
1122 elsif From_With_Type (T2) then
1123
1124 -- If units in the context have Limited_With clauses on each other,
1125 -- either type might have a limited view. Checks performed elsewhere
1126 -- verify that the context type is the nonlimited view.
1127
1128 if Is_Incomplete_Type (T2) then
1129 return Covers (T1, Get_Full_View (Non_Limited_View (T2)));
1130
1131 elsif Ekind (T2) = E_Class_Wide_Type then
1132 return
1133 Present (Non_Limited_View (Etype (T2)))
1134 and then
1135 Covers (T1, Class_Wide_Type (Non_Limited_View (Etype (T2))));
1136 else
1137 return False;
1138 end if;
1139
1140 -- Ada 2005 (AI-412): Coverage for regular incomplete subtypes
1141
1142 elsif Ekind (T1) = E_Incomplete_Subtype then
1143 return Covers (Full_View (Etype (T1)), T2);
1144
1145 elsif Ekind (T2) = E_Incomplete_Subtype then
1146 return Covers (T1, Full_View (Etype (T2)));
1147
1148 -- Ada 2005 (AI-423): Coverage of formal anonymous access types
1149 -- and actual anonymous access types in the context of generic
1150 -- instantiations. We have the following situation:
1151
1152 -- generic
1153 -- type Formal is private;
1154 -- Formal_Obj : access Formal; -- T1
1155 -- package G is ...
1156
1157 -- package P is
1158 -- type Actual is ...
1159 -- Actual_Obj : access Actual; -- T2
1160 -- package Instance is new G (Formal => Actual,
1161 -- Formal_Obj => Actual_Obj);
1162
1163 elsif Ada_Version >= Ada_2005
1164 and then Ekind (T1) = E_Anonymous_Access_Type
1165 and then Ekind (T2) = E_Anonymous_Access_Type
1166 and then Is_Generic_Type (Directly_Designated_Type (T1))
1167 and then Get_Instance_Of (Directly_Designated_Type (T1)) =
1168 Directly_Designated_Type (T2)
1169 then
1170 return True;
1171
1172 -- Otherwise, types are not compatible!
1173
1174 else
1175 return False;
1176 end if;
1177 end Covers;
1178
1179 ------------------
1180 -- Disambiguate --
1181 ------------------
1182
1183 function Disambiguate
1184 (N : Node_Id;
1185 I1, I2 : Interp_Index;
1186 Typ : Entity_Id) return Interp
1187 is
1188 I : Interp_Index;
1189 It : Interp;
1190 It1, It2 : Interp;
1191 Nam1, Nam2 : Entity_Id;
1192 Predef_Subp : Entity_Id;
1193 User_Subp : Entity_Id;
1194
1195 function Inherited_From_Actual (S : Entity_Id) return Boolean;
1196 -- Determine whether one of the candidates is an operation inherited by
1197 -- a type that is derived from an actual in an instantiation.
1198
1199 function Is_Actual_Subprogram (S : Entity_Id) return Boolean;
1200 -- Determine whether a subprogram is an actual in an enclosing instance.
1201 -- An overloading between such a subprogram and one declared outside the
1202 -- instance is resolved in favor of the first, because it resolved in
1203 -- the generic.
1204
1205 function Matches (Actual, Formal : Node_Id) return Boolean;
1206 -- Look for exact type match in an instance, to remove spurious
1207 -- ambiguities when two formal types have the same actual.
1208
1209 function Standard_Operator return Boolean;
1210 -- Check whether subprogram is predefined operator declared in Standard.
1211 -- It may given by an operator name, or by an expanded name whose prefix
1212 -- is Standard.
1213
1214 function Remove_Conversions return Interp;
1215 -- Last chance for pathological cases involving comparisons on literals,
1216 -- and user overloadings of the same operator. Such pathologies have
1217 -- been removed from the ACVC, but still appear in two DEC tests, with
1218 -- the following notable quote from Ben Brosgol:
1219 --
1220 -- [Note: I disclaim all credit/responsibility/blame for coming up with
1221 -- this example; Robert Dewar brought it to our attention, since it is
1222 -- apparently found in the ACVC 1.5. I did not attempt to find the
1223 -- reason in the Reference Manual that makes the example legal, since I
1224 -- was too nauseated by it to want to pursue it further.]
1225 --
1226 -- Accordingly, this is not a fully recursive solution, but it handles
1227 -- DEC tests c460vsa, c460vsb. It also handles ai00136a, which pushes
1228 -- pathology in the other direction with calls whose multiple overloaded
1229 -- actuals make them truly unresolvable.
1230
1231 -- The new rules concerning abstract operations create additional need
1232 -- for special handling of expressions with universal operands, see
1233 -- comments to Has_Abstract_Interpretation below.
1234
1235 ---------------------------
1236 -- Inherited_From_Actual --
1237 ---------------------------
1238
1239 function Inherited_From_Actual (S : Entity_Id) return Boolean is
1240 Par : constant Node_Id := Parent (S);
1241 begin
1242 if Nkind (Par) /= N_Full_Type_Declaration
1243 or else Nkind (Type_Definition (Par)) /= N_Derived_Type_Definition
1244 then
1245 return False;
1246 else
1247 return Is_Entity_Name (Subtype_Indication (Type_Definition (Par)))
1248 and then
1249 Is_Generic_Actual_Type (
1250 Entity (Subtype_Indication (Type_Definition (Par))));
1251 end if;
1252 end Inherited_From_Actual;
1253
1254 --------------------------
1255 -- Is_Actual_Subprogram --
1256 --------------------------
1257
1258 function Is_Actual_Subprogram (S : Entity_Id) return Boolean is
1259 begin
1260 return In_Open_Scopes (Scope (S))
1261 and then
1262 (Is_Generic_Instance (Scope (S))
1263 or else Is_Wrapper_Package (Scope (S)));
1264 end Is_Actual_Subprogram;
1265
1266 -------------
1267 -- Matches --
1268 -------------
1269
1270 function Matches (Actual, Formal : Node_Id) return Boolean is
1271 T1 : constant Entity_Id := Etype (Actual);
1272 T2 : constant Entity_Id := Etype (Formal);
1273 begin
1274 return T1 = T2
1275 or else
1276 (Is_Numeric_Type (T2)
1277 and then (T1 = Universal_Real or else T1 = Universal_Integer));
1278 end Matches;
1279
1280 ------------------------
1281 -- Remove_Conversions --
1282 ------------------------
1283
1284 function Remove_Conversions return Interp is
1285 I : Interp_Index;
1286 It : Interp;
1287 It1 : Interp;
1288 F1 : Entity_Id;
1289 Act1 : Node_Id;
1290 Act2 : Node_Id;
1291
1292 function Has_Abstract_Interpretation (N : Node_Id) return Boolean;
1293 -- If an operation has universal operands the universal operation
1294 -- is present among its interpretations. If there is an abstract
1295 -- interpretation for the operator, with a numeric result, this
1296 -- interpretation was already removed in sem_ch4, but the universal
1297 -- one is still visible. We must rescan the list of operators and
1298 -- remove the universal interpretation to resolve the ambiguity.
1299
1300 ---------------------------------
1301 -- Has_Abstract_Interpretation --
1302 ---------------------------------
1303
1304 function Has_Abstract_Interpretation (N : Node_Id) return Boolean is
1305 E : Entity_Id;
1306
1307 begin
1308 if Nkind (N) not in N_Op
1309 or else Ada_Version < Ada_2005
1310 or else not Is_Overloaded (N)
1311 or else No (Universal_Interpretation (N))
1312 then
1313 return False;
1314
1315 else
1316 E := Get_Name_Entity_Id (Chars (N));
1317 while Present (E) loop
1318 if Is_Overloadable (E)
1319 and then Is_Abstract_Subprogram (E)
1320 and then Is_Numeric_Type (Etype (E))
1321 then
1322 return True;
1323 else
1324 E := Homonym (E);
1325 end if;
1326 end loop;
1327
1328 -- Finally, if an operand of the binary operator is itself
1329 -- an operator, recurse to see whether its own abstract
1330 -- interpretation is responsible for the spurious ambiguity.
1331
1332 if Nkind (N) in N_Binary_Op then
1333 return Has_Abstract_Interpretation (Left_Opnd (N))
1334 or else Has_Abstract_Interpretation (Right_Opnd (N));
1335
1336 elsif Nkind (N) in N_Unary_Op then
1337 return Has_Abstract_Interpretation (Right_Opnd (N));
1338
1339 else
1340 return False;
1341 end if;
1342 end if;
1343 end Has_Abstract_Interpretation;
1344
1345 -- Start of processing for Remove_Conversions
1346
1347 begin
1348 It1 := No_Interp;
1349
1350 Get_First_Interp (N, I, It);
1351 while Present (It.Typ) loop
1352 if not Is_Overloadable (It.Nam) then
1353 return No_Interp;
1354 end if;
1355
1356 F1 := First_Formal (It.Nam);
1357
1358 if No (F1) then
1359 return It1;
1360
1361 else
1362 if Nkind (N) = N_Function_Call
1363 or else Nkind (N) = N_Procedure_Call_Statement
1364 then
1365 Act1 := First_Actual (N);
1366
1367 if Present (Act1) then
1368 Act2 := Next_Actual (Act1);
1369 else
1370 Act2 := Empty;
1371 end if;
1372
1373 elsif Nkind (N) in N_Unary_Op then
1374 Act1 := Right_Opnd (N);
1375 Act2 := Empty;
1376
1377 elsif Nkind (N) in N_Binary_Op then
1378 Act1 := Left_Opnd (N);
1379 Act2 := Right_Opnd (N);
1380
1381 -- Use type of second formal, so as to include
1382 -- exponentiation, where the exponent may be
1383 -- ambiguous and the result non-universal.
1384
1385 Next_Formal (F1);
1386
1387 else
1388 return It1;
1389 end if;
1390
1391 if Nkind (Act1) in N_Op
1392 and then Is_Overloaded (Act1)
1393 and then (Nkind (Right_Opnd (Act1)) = N_Integer_Literal
1394 or else Nkind (Right_Opnd (Act1)) = N_Real_Literal)
1395 and then Has_Compatible_Type (Act1, Standard_Boolean)
1396 and then Etype (F1) = Standard_Boolean
1397 then
1398 -- If the two candidates are the original ones, the
1399 -- ambiguity is real. Otherwise keep the original, further
1400 -- calls to Disambiguate will take care of others in the
1401 -- list of candidates.
1402
1403 if It1 /= No_Interp then
1404 if It = Disambiguate.It1
1405 or else It = Disambiguate.It2
1406 then
1407 if It1 = Disambiguate.It1
1408 or else It1 = Disambiguate.It2
1409 then
1410 return No_Interp;
1411 else
1412 It1 := It;
1413 end if;
1414 end if;
1415
1416 elsif Present (Act2)
1417 and then Nkind (Act2) in N_Op
1418 and then Is_Overloaded (Act2)
1419 and then Nkind_In (Right_Opnd (Act2), N_Integer_Literal,
1420 N_Real_Literal)
1421 and then Has_Compatible_Type (Act2, Standard_Boolean)
1422 then
1423 -- The preference rule on the first actual is not
1424 -- sufficient to disambiguate.
1425
1426 goto Next_Interp;
1427
1428 else
1429 It1 := It;
1430 end if;
1431
1432 elsif Is_Numeric_Type (Etype (F1))
1433 and then Has_Abstract_Interpretation (Act1)
1434 then
1435 -- Current interpretation is not the right one because it
1436 -- expects a numeric operand. Examine all the other ones.
1437
1438 declare
1439 I : Interp_Index;
1440 It : Interp;
1441
1442 begin
1443 Get_First_Interp (N, I, It);
1444 while Present (It.Typ) loop
1445 if
1446 not Is_Numeric_Type (Etype (First_Formal (It.Nam)))
1447 then
1448 if No (Act2)
1449 or else not Has_Abstract_Interpretation (Act2)
1450 or else not
1451 Is_Numeric_Type
1452 (Etype (Next_Formal (First_Formal (It.Nam))))
1453 then
1454 return It;
1455 end if;
1456 end if;
1457
1458 Get_Next_Interp (I, It);
1459 end loop;
1460
1461 return No_Interp;
1462 end;
1463 end if;
1464 end if;
1465
1466 <<Next_Interp>>
1467 Get_Next_Interp (I, It);
1468 end loop;
1469
1470 -- After some error, a formal may have Any_Type and yield a spurious
1471 -- match. To avoid cascaded errors if possible, check for such a
1472 -- formal in either candidate.
1473
1474 if Serious_Errors_Detected > 0 then
1475 declare
1476 Formal : Entity_Id;
1477
1478 begin
1479 Formal := First_Formal (Nam1);
1480 while Present (Formal) loop
1481 if Etype (Formal) = Any_Type then
1482 return Disambiguate.It2;
1483 end if;
1484
1485 Next_Formal (Formal);
1486 end loop;
1487
1488 Formal := First_Formal (Nam2);
1489 while Present (Formal) loop
1490 if Etype (Formal) = Any_Type then
1491 return Disambiguate.It1;
1492 end if;
1493
1494 Next_Formal (Formal);
1495 end loop;
1496 end;
1497 end if;
1498
1499 return It1;
1500 end Remove_Conversions;
1501
1502 -----------------------
1503 -- Standard_Operator --
1504 -----------------------
1505
1506 function Standard_Operator return Boolean is
1507 Nam : Node_Id;
1508
1509 begin
1510 if Nkind (N) in N_Op then
1511 return True;
1512
1513 elsif Nkind (N) = N_Function_Call then
1514 Nam := Name (N);
1515
1516 if Nkind (Nam) /= N_Expanded_Name then
1517 return True;
1518 else
1519 return Entity (Prefix (Nam)) = Standard_Standard;
1520 end if;
1521 else
1522 return False;
1523 end if;
1524 end Standard_Operator;
1525
1526 -- Start of processing for Disambiguate
1527
1528 begin
1529 -- Recover the two legal interpretations
1530
1531 Get_First_Interp (N, I, It);
1532 while I /= I1 loop
1533 Get_Next_Interp (I, It);
1534 end loop;
1535
1536 It1 := It;
1537 Nam1 := It.Nam;
1538 while I /= I2 loop
1539 Get_Next_Interp (I, It);
1540 end loop;
1541
1542 It2 := It;
1543 Nam2 := It.Nam;
1544
1545 -- Check whether one of the entities is an Ada 2005/2012 and we are
1546 -- operating in an earlier mode, in which case we discard the Ada
1547 -- 2005/2012 entity, so that we get proper Ada 95 overload resolution.
1548
1549 if Ada_Version < Ada_2005 then
1550 if Is_Ada_2005_Only (Nam1) or else Is_Ada_2012_Only (Nam1) then
1551 return It2;
1552 elsif Is_Ada_2005_Only (Nam2) or else Is_Ada_2012_Only (Nam1) then
1553 return It1;
1554 end if;
1555 end if;
1556
1557 -- Check whether one of the entities is an Ada 2012 entity and we are
1558 -- operating in Ada 2005 mode, in which case we discard the Ada 2012
1559 -- entity, so that we get proper Ada 2005 overload resolution.
1560
1561 if Ada_Version = Ada_2005 then
1562 if Is_Ada_2012_Only (Nam1) then
1563 return It2;
1564 elsif Is_Ada_2012_Only (Nam2) then
1565 return It1;
1566 end if;
1567 end if;
1568
1569 -- Check for overloaded CIL convention stuff because the CIL libraries
1570 -- do sick things like Console.Write_Line where it matches two different
1571 -- overloads, so just pick the first ???
1572
1573 if Convention (Nam1) = Convention_CIL
1574 and then Convention (Nam2) = Convention_CIL
1575 and then Ekind (Nam1) = Ekind (Nam2)
1576 and then (Ekind (Nam1) = E_Procedure
1577 or else Ekind (Nam1) = E_Function)
1578 then
1579 return It2;
1580 end if;
1581
1582 -- If the context is universal, the predefined operator is preferred.
1583 -- This includes bounds in numeric type declarations, and expressions
1584 -- in type conversions. If no interpretation yields a universal type,
1585 -- then we must check whether the user-defined entity hides the prede-
1586 -- fined one.
1587
1588 if Chars (Nam1) in Any_Operator_Name
1589 and then Standard_Operator
1590 then
1591 if Typ = Universal_Integer
1592 or else Typ = Universal_Real
1593 or else Typ = Any_Integer
1594 or else Typ = Any_Discrete
1595 or else Typ = Any_Real
1596 or else Typ = Any_Type
1597 then
1598 -- Find an interpretation that yields the universal type, or else
1599 -- a predefined operator that yields a predefined numeric type.
1600
1601 declare
1602 Candidate : Interp := No_Interp;
1603
1604 begin
1605 Get_First_Interp (N, I, It);
1606 while Present (It.Typ) loop
1607 if (Covers (Typ, It.Typ)
1608 or else Typ = Any_Type)
1609 and then
1610 (It.Typ = Universal_Integer
1611 or else It.Typ = Universal_Real)
1612 then
1613 return It;
1614
1615 elsif Covers (Typ, It.Typ)
1616 and then Scope (It.Typ) = Standard_Standard
1617 and then Scope (It.Nam) = Standard_Standard
1618 and then Is_Numeric_Type (It.Typ)
1619 then
1620 Candidate := It;
1621 end if;
1622
1623 Get_Next_Interp (I, It);
1624 end loop;
1625
1626 if Candidate /= No_Interp then
1627 return Candidate;
1628 end if;
1629 end;
1630
1631 elsif Chars (Nam1) /= Name_Op_Not
1632 and then (Typ = Standard_Boolean or else Typ = Any_Boolean)
1633 then
1634 -- Equality or comparison operation. Choose predefined operator if
1635 -- arguments are universal. The node may be an operator, name, or
1636 -- a function call, so unpack arguments accordingly.
1637
1638 declare
1639 Arg1, Arg2 : Node_Id;
1640
1641 begin
1642 if Nkind (N) in N_Op then
1643 Arg1 := Left_Opnd (N);
1644 Arg2 := Right_Opnd (N);
1645
1646 elsif Is_Entity_Name (N) then
1647 Arg1 := First_Entity (Entity (N));
1648 Arg2 := Next_Entity (Arg1);
1649
1650 else
1651 Arg1 := First_Actual (N);
1652 Arg2 := Next_Actual (Arg1);
1653 end if;
1654
1655 if Present (Arg2)
1656 and then Present (Universal_Interpretation (Arg1))
1657 and then Universal_Interpretation (Arg2) =
1658 Universal_Interpretation (Arg1)
1659 then
1660 Get_First_Interp (N, I, It);
1661 while Scope (It.Nam) /= Standard_Standard loop
1662 Get_Next_Interp (I, It);
1663 end loop;
1664
1665 return It;
1666 end if;
1667 end;
1668 end if;
1669 end if;
1670
1671 -- If no universal interpretation, check whether user-defined operator
1672 -- hides predefined one, as well as other special cases. If the node
1673 -- is a range, then one or both bounds are ambiguous. Each will have
1674 -- to be disambiguated w.r.t. the context type. The type of the range
1675 -- itself is imposed by the context, so we can return either legal
1676 -- interpretation.
1677
1678 if Ekind (Nam1) = E_Operator then
1679 Predef_Subp := Nam1;
1680 User_Subp := Nam2;
1681
1682 elsif Ekind (Nam2) = E_Operator then
1683 Predef_Subp := Nam2;
1684 User_Subp := Nam1;
1685
1686 elsif Nkind (N) = N_Range then
1687 return It1;
1688
1689 -- Implement AI05-105: A renaming declaration with an access
1690 -- definition must resolve to an anonymous access type. This
1691 -- is a resolution rule and can be used to disambiguate.
1692
1693 elsif Nkind (Parent (N)) = N_Object_Renaming_Declaration
1694 and then Present (Access_Definition (Parent (N)))
1695 then
1696 if Ekind_In (It1.Typ, E_Anonymous_Access_Type,
1697 E_Anonymous_Access_Subprogram_Type)
1698 then
1699 if Ekind (It2.Typ) = Ekind (It1.Typ) then
1700
1701 -- True ambiguity
1702
1703 return No_Interp;
1704
1705 else
1706 return It1;
1707 end if;
1708
1709 elsif Ekind_In (It2.Typ, E_Anonymous_Access_Type,
1710 E_Anonymous_Access_Subprogram_Type)
1711 then
1712 return It2;
1713
1714 -- No legal interpretation
1715
1716 else
1717 return No_Interp;
1718 end if;
1719
1720 -- If two user defined-subprograms are visible, it is a true ambiguity,
1721 -- unless one of them is an entry and the context is a conditional or
1722 -- timed entry call, or unless we are within an instance and this is
1723 -- results from two formals types with the same actual.
1724
1725 else
1726 if Nkind (N) = N_Procedure_Call_Statement
1727 and then Nkind (Parent (N)) = N_Entry_Call_Alternative
1728 and then N = Entry_Call_Statement (Parent (N))
1729 then
1730 if Ekind (Nam2) = E_Entry then
1731 return It2;
1732 elsif Ekind (Nam1) = E_Entry then
1733 return It1;
1734 else
1735 return No_Interp;
1736 end if;
1737
1738 -- If the ambiguity occurs within an instance, it is due to several
1739 -- formal types with the same actual. Look for an exact match between
1740 -- the types of the formals of the overloadable entities, and the
1741 -- actuals in the call, to recover the unambiguous match in the
1742 -- original generic.
1743
1744 -- The ambiguity can also be due to an overloading between a formal
1745 -- subprogram and a subprogram declared outside the generic. If the
1746 -- node is overloaded, it did not resolve to the global entity in
1747 -- the generic, and we choose the formal subprogram.
1748
1749 -- Finally, the ambiguity can be between an explicit subprogram and
1750 -- one inherited (with different defaults) from an actual. In this
1751 -- case the resolution was to the explicit declaration in the
1752 -- generic, and remains so in the instance.
1753
1754 -- The same sort of disambiguation needed for calls is also required
1755 -- for the name given in a subprogram renaming, and that case is
1756 -- handled here as well. We test Comes_From_Source to exclude this
1757 -- treatment for implicit renamings created for formal subprograms.
1758
1759 elsif In_Instance
1760 and then not In_Generic_Actual (N)
1761 then
1762 if Nkind (N) = N_Function_Call
1763 or else Nkind (N) = N_Procedure_Call_Statement
1764 or else
1765 (Nkind (N) in N_Has_Entity
1766 and then
1767 Nkind (Parent (N)) = N_Subprogram_Renaming_Declaration
1768 and then Comes_From_Source (Parent (N)))
1769 then
1770 declare
1771 Actual : Node_Id;
1772 Formal : Entity_Id;
1773 Renam : Entity_Id := Empty;
1774 Is_Act1 : constant Boolean := Is_Actual_Subprogram (Nam1);
1775 Is_Act2 : constant Boolean := Is_Actual_Subprogram (Nam2);
1776
1777 begin
1778 if Is_Act1 and then not Is_Act2 then
1779 return It1;
1780
1781 elsif Is_Act2 and then not Is_Act1 then
1782 return It2;
1783
1784 elsif Inherited_From_Actual (Nam1)
1785 and then Comes_From_Source (Nam2)
1786 then
1787 return It2;
1788
1789 elsif Inherited_From_Actual (Nam2)
1790 and then Comes_From_Source (Nam1)
1791 then
1792 return It1;
1793 end if;
1794
1795 -- In the case of a renamed subprogram, pick up the entity
1796 -- of the renaming declaration so we can traverse its
1797 -- formal parameters.
1798
1799 if Nkind (N) in N_Has_Entity then
1800 Renam := Defining_Unit_Name (Specification (Parent (N)));
1801 end if;
1802
1803 if Present (Renam) then
1804 Actual := First_Formal (Renam);
1805 else
1806 Actual := First_Actual (N);
1807 end if;
1808
1809 Formal := First_Formal (Nam1);
1810 while Present (Actual) loop
1811 if Etype (Actual) /= Etype (Formal) then
1812 return It2;
1813 end if;
1814
1815 if Present (Renam) then
1816 Next_Formal (Actual);
1817 else
1818 Next_Actual (Actual);
1819 end if;
1820
1821 Next_Formal (Formal);
1822 end loop;
1823
1824 return It1;
1825 end;
1826
1827 elsif Nkind (N) in N_Binary_Op then
1828 if Matches (Left_Opnd (N), First_Formal (Nam1))
1829 and then
1830 Matches (Right_Opnd (N), Next_Formal (First_Formal (Nam1)))
1831 then
1832 return It1;
1833 else
1834 return It2;
1835 end if;
1836
1837 elsif Nkind (N) in N_Unary_Op then
1838 if Etype (Right_Opnd (N)) = Etype (First_Formal (Nam1)) then
1839 return It1;
1840 else
1841 return It2;
1842 end if;
1843
1844 else
1845 return Remove_Conversions;
1846 end if;
1847 else
1848 return Remove_Conversions;
1849 end if;
1850 end if;
1851
1852 -- An implicit concatenation operator on a string type cannot be
1853 -- disambiguated from the predefined concatenation. This can only
1854 -- happen with concatenation of string literals.
1855
1856 if Chars (User_Subp) = Name_Op_Concat
1857 and then Ekind (User_Subp) = E_Operator
1858 and then Is_String_Type (Etype (First_Formal (User_Subp)))
1859 then
1860 return No_Interp;
1861
1862 -- If the user-defined operator is in an open scope, or in the scope
1863 -- of the resulting type, or given by an expanded name that names its
1864 -- scope, it hides the predefined operator for the type. Exponentiation
1865 -- has to be special-cased because the implicit operator does not have
1866 -- a symmetric signature, and may not be hidden by the explicit one.
1867
1868 elsif (Nkind (N) = N_Function_Call
1869 and then Nkind (Name (N)) = N_Expanded_Name
1870 and then (Chars (Predef_Subp) /= Name_Op_Expon
1871 or else Hides_Op (User_Subp, Predef_Subp))
1872 and then Scope (User_Subp) = Entity (Prefix (Name (N))))
1873 or else Hides_Op (User_Subp, Predef_Subp)
1874 then
1875 if It1.Nam = User_Subp then
1876 return It1;
1877 else
1878 return It2;
1879 end if;
1880
1881 -- Otherwise, the predefined operator has precedence, or if the user-
1882 -- defined operation is directly visible we have a true ambiguity. If
1883 -- this is a fixed-point multiplication and division in Ada83 mode,
1884 -- exclude the universal_fixed operator, which often causes ambiguities
1885 -- in legacy code.
1886
1887 else
1888 if (In_Open_Scopes (Scope (User_Subp))
1889 or else Is_Potentially_Use_Visible (User_Subp))
1890 and then not In_Instance
1891 then
1892 if Is_Fixed_Point_Type (Typ)
1893 and then (Chars (Nam1) = Name_Op_Multiply
1894 or else Chars (Nam1) = Name_Op_Divide)
1895 and then Ada_Version = Ada_83
1896 then
1897 if It2.Nam = Predef_Subp then
1898 return It1;
1899 else
1900 return It2;
1901 end if;
1902
1903 -- Ada 2005, AI-420: preference rule for "=" on Universal_Access
1904 -- states that the operator defined in Standard is not available
1905 -- if there is a user-defined equality with the proper signature,
1906 -- declared in the same declarative list as the type. The node
1907 -- may be an operator or a function call.
1908
1909 elsif (Chars (Nam1) = Name_Op_Eq
1910 or else
1911 Chars (Nam1) = Name_Op_Ne)
1912 and then Ada_Version >= Ada_2005
1913 and then Etype (User_Subp) = Standard_Boolean
1914 then
1915 declare
1916 Opnd : Node_Id;
1917
1918 begin
1919 if Nkind (N) = N_Function_Call then
1920 Opnd := First_Actual (N);
1921 else
1922 Opnd := Left_Opnd (N);
1923 end if;
1924
1925 if Ekind (Etype (Opnd)) = E_Anonymous_Access_Type
1926 and then
1927 In_Same_List (Parent (Designated_Type (Etype (Opnd))),
1928 Unit_Declaration_Node (User_Subp))
1929 then
1930 if It2.Nam = Predef_Subp then
1931 return It1;
1932 else
1933 return It2;
1934 end if;
1935 else
1936 return Remove_Conversions;
1937 end if;
1938 end;
1939
1940 -- An immediately visible operator hides a use-visible user-
1941 -- defined operation. This disambiguation cannot take place
1942 -- earlier because the visibility of the predefined operator
1943 -- can only be established when operand types are known.
1944
1945 elsif Ekind (User_Subp) = E_Function
1946 and then Ekind (Predef_Subp) = E_Operator
1947 and then Nkind (N) in N_Op
1948 and then not Is_Overloaded (Right_Opnd (N))
1949 and then
1950 Is_Immediately_Visible (Base_Type (Etype (Right_Opnd (N))))
1951 and then Is_Potentially_Use_Visible (User_Subp)
1952 then
1953 if It2.Nam = Predef_Subp then
1954 return It1;
1955 else
1956 return It2;
1957 end if;
1958
1959 else
1960 return No_Interp;
1961 end if;
1962
1963 elsif It1.Nam = Predef_Subp then
1964 return It1;
1965
1966 else
1967 return It2;
1968 end if;
1969 end if;
1970 end Disambiguate;
1971
1972 ---------------------
1973 -- End_Interp_List --
1974 ---------------------
1975
1976 procedure End_Interp_List is
1977 begin
1978 All_Interp.Table (All_Interp.Last) := No_Interp;
1979 All_Interp.Increment_Last;
1980 end End_Interp_List;
1981
1982 -------------------------
1983 -- Entity_Matches_Spec --
1984 -------------------------
1985
1986 function Entity_Matches_Spec (Old_S, New_S : Entity_Id) return Boolean is
1987 begin
1988 -- Simple case: same entity kinds, type conformance is required. A
1989 -- parameterless function can also rename a literal.
1990
1991 if Ekind (Old_S) = Ekind (New_S)
1992 or else (Ekind (New_S) = E_Function
1993 and then Ekind (Old_S) = E_Enumeration_Literal)
1994 then
1995 return Type_Conformant (New_S, Old_S);
1996
1997 elsif Ekind (New_S) = E_Function
1998 and then Ekind (Old_S) = E_Operator
1999 then
2000 return Operator_Matches_Spec (Old_S, New_S);
2001
2002 elsif Ekind (New_S) = E_Procedure
2003 and then Is_Entry (Old_S)
2004 then
2005 return Type_Conformant (New_S, Old_S);
2006
2007 else
2008 return False;
2009 end if;
2010 end Entity_Matches_Spec;
2011
2012 ----------------------
2013 -- Find_Unique_Type --
2014 ----------------------
2015
2016 function Find_Unique_Type (L : Node_Id; R : Node_Id) return Entity_Id is
2017 T : constant Entity_Id := Etype (L);
2018 I : Interp_Index;
2019 It : Interp;
2020 TR : Entity_Id := Any_Type;
2021
2022 begin
2023 if Is_Overloaded (R) then
2024 Get_First_Interp (R, I, It);
2025 while Present (It.Typ) loop
2026 if Covers (T, It.Typ) or else Covers (It.Typ, T) then
2027
2028 -- If several interpretations are possible and L is universal,
2029 -- apply preference rule.
2030
2031 if TR /= Any_Type then
2032
2033 if (T = Universal_Integer or else T = Universal_Real)
2034 and then It.Typ = T
2035 then
2036 TR := It.Typ;
2037 end if;
2038
2039 else
2040 TR := It.Typ;
2041 end if;
2042 end if;
2043
2044 Get_Next_Interp (I, It);
2045 end loop;
2046
2047 Set_Etype (R, TR);
2048
2049 -- In the non-overloaded case, the Etype of R is already set correctly
2050
2051 else
2052 null;
2053 end if;
2054
2055 -- If one of the operands is Universal_Fixed, the type of the other
2056 -- operand provides the context.
2057
2058 if Etype (R) = Universal_Fixed then
2059 return T;
2060
2061 elsif T = Universal_Fixed then
2062 return Etype (R);
2063
2064 -- Ada 2005 (AI-230): Support the following operators:
2065
2066 -- function "=" (L, R : universal_access) return Boolean;
2067 -- function "/=" (L, R : universal_access) return Boolean;
2068
2069 -- Pool specific access types (E_Access_Type) are not covered by these
2070 -- operators because of the legality rule of 4.5.2(9.2): "The operands
2071 -- of the equality operators for universal_access shall be convertible
2072 -- to one another (see 4.6)". For example, considering the type decla-
2073 -- ration "type P is access Integer" and an anonymous access to Integer,
2074 -- P is convertible to "access Integer" by 4.6 (24.11-24.15), but there
2075 -- is no rule in 4.6 that allows "access Integer" to be converted to P.
2076
2077 elsif Ada_Version >= Ada_2005
2078 and then
2079 (Ekind (Etype (L)) = E_Anonymous_Access_Type
2080 or else
2081 Ekind (Etype (L)) = E_Anonymous_Access_Subprogram_Type)
2082 and then Is_Access_Type (Etype (R))
2083 and then Ekind (Etype (R)) /= E_Access_Type
2084 then
2085 return Etype (L);
2086
2087 elsif Ada_Version >= Ada_2005
2088 and then
2089 (Ekind (Etype (R)) = E_Anonymous_Access_Type
2090 or else Ekind (Etype (R)) = E_Anonymous_Access_Subprogram_Type)
2091 and then Is_Access_Type (Etype (L))
2092 and then Ekind (Etype (L)) /= E_Access_Type
2093 then
2094 return Etype (R);
2095
2096 else
2097 return Specific_Type (T, Etype (R));
2098 end if;
2099 end Find_Unique_Type;
2100
2101 -------------------------------------
2102 -- Function_Interp_Has_Abstract_Op --
2103 -------------------------------------
2104
2105 function Function_Interp_Has_Abstract_Op
2106 (N : Node_Id;
2107 E : Entity_Id) return Entity_Id
2108 is
2109 Abstr_Op : Entity_Id;
2110 Act : Node_Id;
2111 Act_Parm : Node_Id;
2112 Form_Parm : Node_Id;
2113
2114 begin
2115 -- Why is check on E needed below ???
2116 -- In any case this para needs comments ???
2117
2118 if Is_Overloaded (N) and then Is_Overloadable (E) then
2119 Act_Parm := First_Actual (N);
2120 Form_Parm := First_Formal (E);
2121 while Present (Act_Parm)
2122 and then Present (Form_Parm)
2123 loop
2124 Act := Act_Parm;
2125
2126 if Nkind (Act) = N_Parameter_Association then
2127 Act := Explicit_Actual_Parameter (Act);
2128 end if;
2129
2130 Abstr_Op := Has_Abstract_Op (Act, Etype (Form_Parm));
2131
2132 if Present (Abstr_Op) then
2133 return Abstr_Op;
2134 end if;
2135
2136 Next_Actual (Act_Parm);
2137 Next_Formal (Form_Parm);
2138 end loop;
2139 end if;
2140
2141 return Empty;
2142 end Function_Interp_Has_Abstract_Op;
2143
2144 ----------------------
2145 -- Get_First_Interp --
2146 ----------------------
2147
2148 procedure Get_First_Interp
2149 (N : Node_Id;
2150 I : out Interp_Index;
2151 It : out Interp)
2152 is
2153 Int_Ind : Interp_Index;
2154 Map_Ptr : Int;
2155 O_N : Node_Id;
2156
2157 begin
2158 -- If a selected component is overloaded because the selector has
2159 -- multiple interpretations, the node is a call to a protected
2160 -- operation or an indirect call. Retrieve the interpretation from
2161 -- the selector name. The selected component may be overloaded as well
2162 -- if the prefix is overloaded. That case is unchanged.
2163
2164 if Nkind (N) = N_Selected_Component
2165 and then Is_Overloaded (Selector_Name (N))
2166 then
2167 O_N := Selector_Name (N);
2168 else
2169 O_N := N;
2170 end if;
2171
2172 Map_Ptr := Headers (Hash (O_N));
2173 while Map_Ptr /= No_Entry loop
2174 if Interp_Map.Table (Map_Ptr).Node = O_N then
2175 Int_Ind := Interp_Map.Table (Map_Ptr).Index;
2176 It := All_Interp.Table (Int_Ind);
2177 I := Int_Ind;
2178 return;
2179 else
2180 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
2181 end if;
2182 end loop;
2183
2184 -- Procedure should never be called if the node has no interpretations
2185
2186 raise Program_Error;
2187 end Get_First_Interp;
2188
2189 ---------------------
2190 -- Get_Next_Interp --
2191 ---------------------
2192
2193 procedure Get_Next_Interp (I : in out Interp_Index; It : out Interp) is
2194 begin
2195 I := I + 1;
2196 It := All_Interp.Table (I);
2197 end Get_Next_Interp;
2198
2199 -------------------------
2200 -- Has_Compatible_Type --
2201 -------------------------
2202
2203 function Has_Compatible_Type
2204 (N : Node_Id;
2205 Typ : Entity_Id) return Boolean
2206 is
2207 I : Interp_Index;
2208 It : Interp;
2209
2210 begin
2211 if N = Error then
2212 return False;
2213 end if;
2214
2215 if Nkind (N) = N_Subtype_Indication
2216 or else not Is_Overloaded (N)
2217 then
2218 return
2219 Covers (Typ, Etype (N))
2220
2221 -- Ada 2005 (AI-345): The context may be a synchronized interface.
2222 -- If the type is already frozen use the corresponding_record
2223 -- to check whether it is a proper descendant.
2224
2225 or else
2226 (Is_Record_Type (Typ)
2227 and then Is_Concurrent_Type (Etype (N))
2228 and then Present (Corresponding_Record_Type (Etype (N)))
2229 and then Covers (Typ, Corresponding_Record_Type (Etype (N))))
2230
2231 or else
2232 (Is_Concurrent_Type (Typ)
2233 and then Is_Record_Type (Etype (N))
2234 and then Present (Corresponding_Record_Type (Typ))
2235 and then Covers (Corresponding_Record_Type (Typ), Etype (N)))
2236
2237 or else
2238 (not Is_Tagged_Type (Typ)
2239 and then Ekind (Typ) /= E_Anonymous_Access_Type
2240 and then Covers (Etype (N), Typ));
2241
2242 else
2243 Get_First_Interp (N, I, It);
2244 while Present (It.Typ) loop
2245 if (Covers (Typ, It.Typ)
2246 and then
2247 (Scope (It.Nam) /= Standard_Standard
2248 or else not Is_Invisible_Operator (N, Base_Type (Typ))))
2249
2250 -- Ada 2005 (AI-345)
2251
2252 or else
2253 (Is_Concurrent_Type (It.Typ)
2254 and then Present (Corresponding_Record_Type
2255 (Etype (It.Typ)))
2256 and then Covers (Typ, Corresponding_Record_Type
2257 (Etype (It.Typ))))
2258
2259 or else (not Is_Tagged_Type (Typ)
2260 and then Ekind (Typ) /= E_Anonymous_Access_Type
2261 and then Covers (It.Typ, Typ))
2262 then
2263 return True;
2264 end if;
2265
2266 Get_Next_Interp (I, It);
2267 end loop;
2268
2269 return False;
2270 end if;
2271 end Has_Compatible_Type;
2272
2273 ---------------------
2274 -- Has_Abstract_Op --
2275 ---------------------
2276
2277 function Has_Abstract_Op
2278 (N : Node_Id;
2279 Typ : Entity_Id) return Entity_Id
2280 is
2281 I : Interp_Index;
2282 It : Interp;
2283
2284 begin
2285 if Is_Overloaded (N) then
2286 Get_First_Interp (N, I, It);
2287 while Present (It.Nam) loop
2288 if Present (It.Abstract_Op)
2289 and then Etype (It.Abstract_Op) = Typ
2290 then
2291 return It.Abstract_Op;
2292 end if;
2293
2294 Get_Next_Interp (I, It);
2295 end loop;
2296 end if;
2297
2298 return Empty;
2299 end Has_Abstract_Op;
2300
2301 ----------
2302 -- Hash --
2303 ----------
2304
2305 function Hash (N : Node_Id) return Int is
2306 begin
2307 -- Nodes have a size that is power of two, so to select significant
2308 -- bits only we remove the low-order bits.
2309
2310 return ((Int (N) / 2 ** 5) mod Header_Size);
2311 end Hash;
2312
2313 --------------
2314 -- Hides_Op --
2315 --------------
2316
2317 function Hides_Op (F : Entity_Id; Op : Entity_Id) return Boolean is
2318 Btyp : constant Entity_Id := Base_Type (Etype (First_Formal (F)));
2319 begin
2320 return Operator_Matches_Spec (Op, F)
2321 and then (In_Open_Scopes (Scope (F))
2322 or else Scope (F) = Scope (Btyp)
2323 or else (not In_Open_Scopes (Scope (Btyp))
2324 and then not In_Use (Btyp)
2325 and then not In_Use (Scope (Btyp))));
2326 end Hides_Op;
2327
2328 ------------------------
2329 -- Init_Interp_Tables --
2330 ------------------------
2331
2332 procedure Init_Interp_Tables is
2333 begin
2334 All_Interp.Init;
2335 Interp_Map.Init;
2336 Headers := (others => No_Entry);
2337 end Init_Interp_Tables;
2338
2339 -----------------------------------
2340 -- Interface_Present_In_Ancestor --
2341 -----------------------------------
2342
2343 function Interface_Present_In_Ancestor
2344 (Typ : Entity_Id;
2345 Iface : Entity_Id) return Boolean
2346 is
2347 Target_Typ : Entity_Id;
2348 Iface_Typ : Entity_Id;
2349
2350 function Iface_Present_In_Ancestor (Typ : Entity_Id) return Boolean;
2351 -- Returns True if Typ or some ancestor of Typ implements Iface
2352
2353 -------------------------------
2354 -- Iface_Present_In_Ancestor --
2355 -------------------------------
2356
2357 function Iface_Present_In_Ancestor (Typ : Entity_Id) return Boolean is
2358 E : Entity_Id;
2359 AI : Entity_Id;
2360 Elmt : Elmt_Id;
2361
2362 begin
2363 if Typ = Iface_Typ then
2364 return True;
2365 end if;
2366
2367 -- Handle private types
2368
2369 if Present (Full_View (Typ))
2370 and then not Is_Concurrent_Type (Full_View (Typ))
2371 then
2372 E := Full_View (Typ);
2373 else
2374 E := Typ;
2375 end if;
2376
2377 loop
2378 if Present (Interfaces (E))
2379 and then Present (Interfaces (E))
2380 and then not Is_Empty_Elmt_List (Interfaces (E))
2381 then
2382 Elmt := First_Elmt (Interfaces (E));
2383 while Present (Elmt) loop
2384 AI := Node (Elmt);
2385
2386 if AI = Iface_Typ or else Is_Ancestor (Iface_Typ, AI) then
2387 return True;
2388 end if;
2389
2390 Next_Elmt (Elmt);
2391 end loop;
2392 end if;
2393
2394 exit when Etype (E) = E
2395
2396 -- Handle private types
2397
2398 or else (Present (Full_View (Etype (E)))
2399 and then Full_View (Etype (E)) = E);
2400
2401 -- Check if the current type is a direct derivation of the
2402 -- interface
2403
2404 if Etype (E) = Iface_Typ then
2405 return True;
2406 end if;
2407
2408 -- Climb to the immediate ancestor handling private types
2409
2410 if Present (Full_View (Etype (E))) then
2411 E := Full_View (Etype (E));
2412 else
2413 E := Etype (E);
2414 end if;
2415 end loop;
2416
2417 return False;
2418 end Iface_Present_In_Ancestor;
2419
2420 -- Start of processing for Interface_Present_In_Ancestor
2421
2422 begin
2423 -- Iface might be a class-wide subtype, so we have to apply Base_Type
2424
2425 if Is_Class_Wide_Type (Iface) then
2426 Iface_Typ := Etype (Base_Type (Iface));
2427 else
2428 Iface_Typ := Iface;
2429 end if;
2430
2431 -- Handle subtypes
2432
2433 Iface_Typ := Base_Type (Iface_Typ);
2434
2435 if Is_Access_Type (Typ) then
2436 Target_Typ := Etype (Directly_Designated_Type (Typ));
2437 else
2438 Target_Typ := Typ;
2439 end if;
2440
2441 if Is_Concurrent_Record_Type (Target_Typ) then
2442 Target_Typ := Corresponding_Concurrent_Type (Target_Typ);
2443 end if;
2444
2445 Target_Typ := Base_Type (Target_Typ);
2446
2447 -- In case of concurrent types we can't use the Corresponding Record_Typ
2448 -- to look for the interface because it is built by the expander (and
2449 -- hence it is not always available). For this reason we traverse the
2450 -- list of interfaces (available in the parent of the concurrent type)
2451
2452 if Is_Concurrent_Type (Target_Typ) then
2453 if Present (Interface_List (Parent (Target_Typ))) then
2454 declare
2455 AI : Node_Id;
2456
2457 begin
2458 AI := First (Interface_List (Parent (Target_Typ)));
2459 while Present (AI) loop
2460 if Etype (AI) = Iface_Typ then
2461 return True;
2462
2463 elsif Present (Interfaces (Etype (AI)))
2464 and then Iface_Present_In_Ancestor (Etype (AI))
2465 then
2466 return True;
2467 end if;
2468
2469 Next (AI);
2470 end loop;
2471 end;
2472 end if;
2473
2474 return False;
2475 end if;
2476
2477 if Is_Class_Wide_Type (Target_Typ) then
2478 Target_Typ := Etype (Target_Typ);
2479 end if;
2480
2481 if Ekind (Target_Typ) = E_Incomplete_Type then
2482 pragma Assert (Present (Non_Limited_View (Target_Typ)));
2483 Target_Typ := Non_Limited_View (Target_Typ);
2484
2485 -- Protect the frontend against previously detected errors
2486
2487 if Ekind (Target_Typ) = E_Incomplete_Type then
2488 return False;
2489 end if;
2490 end if;
2491
2492 return Iface_Present_In_Ancestor (Target_Typ);
2493 end Interface_Present_In_Ancestor;
2494
2495 ---------------------
2496 -- Intersect_Types --
2497 ---------------------
2498
2499 function Intersect_Types (L, R : Node_Id) return Entity_Id is
2500 Index : Interp_Index;
2501 It : Interp;
2502 Typ : Entity_Id;
2503
2504 function Check_Right_Argument (T : Entity_Id) return Entity_Id;
2505 -- Find interpretation of right arg that has type compatible with T
2506
2507 --------------------------
2508 -- Check_Right_Argument --
2509 --------------------------
2510
2511 function Check_Right_Argument (T : Entity_Id) return Entity_Id is
2512 Index : Interp_Index;
2513 It : Interp;
2514 T2 : Entity_Id;
2515
2516 begin
2517 if not Is_Overloaded (R) then
2518 return Specific_Type (T, Etype (R));
2519
2520 else
2521 Get_First_Interp (R, Index, It);
2522 loop
2523 T2 := Specific_Type (T, It.Typ);
2524
2525 if T2 /= Any_Type then
2526 return T2;
2527 end if;
2528
2529 Get_Next_Interp (Index, It);
2530 exit when No (It.Typ);
2531 end loop;
2532
2533 return Any_Type;
2534 end if;
2535 end Check_Right_Argument;
2536
2537 -- Start of processing for Intersect_Types
2538
2539 begin
2540 if Etype (L) = Any_Type or else Etype (R) = Any_Type then
2541 return Any_Type;
2542 end if;
2543
2544 if not Is_Overloaded (L) then
2545 Typ := Check_Right_Argument (Etype (L));
2546
2547 else
2548 Typ := Any_Type;
2549 Get_First_Interp (L, Index, It);
2550 while Present (It.Typ) loop
2551 Typ := Check_Right_Argument (It.Typ);
2552 exit when Typ /= Any_Type;
2553 Get_Next_Interp (Index, It);
2554 end loop;
2555
2556 end if;
2557
2558 -- If Typ is Any_Type, it means no compatible pair of types was found
2559
2560 if Typ = Any_Type then
2561 if Nkind (Parent (L)) in N_Op then
2562 Error_Msg_N ("incompatible types for operator", Parent (L));
2563
2564 elsif Nkind (Parent (L)) = N_Range then
2565 Error_Msg_N ("incompatible types given in constraint", Parent (L));
2566
2567 -- Ada 2005 (AI-251): Complete the error notification
2568
2569 elsif Is_Class_Wide_Type (Etype (R))
2570 and then Is_Interface (Etype (Class_Wide_Type (Etype (R))))
2571 then
2572 Error_Msg_NE ("(Ada 2005) does not implement interface }",
2573 L, Etype (Class_Wide_Type (Etype (R))));
2574
2575 else
2576 Error_Msg_N ("incompatible types", Parent (L));
2577 end if;
2578 end if;
2579
2580 return Typ;
2581 end Intersect_Types;
2582
2583 -----------------------
2584 -- In_Generic_Actual --
2585 -----------------------
2586
2587 function In_Generic_Actual (Exp : Node_Id) return Boolean is
2588 Par : constant Node_Id := Parent (Exp);
2589
2590 begin
2591 if No (Par) then
2592 return False;
2593
2594 elsif Nkind (Par) in N_Declaration then
2595 if Nkind (Par) = N_Object_Declaration then
2596 return Present (Corresponding_Generic_Association (Par));
2597 else
2598 return False;
2599 end if;
2600
2601 elsif Nkind (Par) = N_Object_Renaming_Declaration then
2602 return Present (Corresponding_Generic_Association (Par));
2603
2604 elsif Nkind (Par) in N_Statement_Other_Than_Procedure_Call then
2605 return False;
2606
2607 else
2608 return In_Generic_Actual (Parent (Par));
2609 end if;
2610 end In_Generic_Actual;
2611
2612 -----------------
2613 -- Is_Ancestor --
2614 -----------------
2615
2616 function Is_Ancestor
2617 (T1 : Entity_Id;
2618 T2 : Entity_Id;
2619 Use_Full_View : Boolean := False) return Boolean
2620 is
2621 BT1 : Entity_Id;
2622 BT2 : Entity_Id;
2623 Par : Entity_Id;
2624
2625 begin
2626 BT1 := Base_Type (T1);
2627 BT2 := Base_Type (T2);
2628
2629 -- Handle underlying view of records with unknown discriminants using
2630 -- the original entity that motivated the construction of this
2631 -- underlying record view (see Build_Derived_Private_Type).
2632
2633 if Is_Underlying_Record_View (BT1) then
2634 BT1 := Underlying_Record_View (BT1);
2635 end if;
2636
2637 if Is_Underlying_Record_View (BT2) then
2638 BT2 := Underlying_Record_View (BT2);
2639 end if;
2640
2641 if BT1 = BT2 then
2642 return True;
2643
2644 -- The predicate must look past privacy
2645
2646 elsif Is_Private_Type (T1)
2647 and then Present (Full_View (T1))
2648 and then BT2 = Base_Type (Full_View (T1))
2649 then
2650 return True;
2651
2652 elsif Is_Private_Type (T2)
2653 and then Present (Full_View (T2))
2654 and then BT1 = Base_Type (Full_View (T2))
2655 then
2656 return True;
2657
2658 else
2659 Par := Etype (BT2);
2660
2661 loop
2662 -- If there was a error on the type declaration, do not recurse
2663
2664 if Error_Posted (Par) then
2665 return False;
2666
2667 elsif BT1 = Base_Type (Par)
2668 or else (Is_Private_Type (T1)
2669 and then Present (Full_View (T1))
2670 and then Base_Type (Par) = Base_Type (Full_View (T1)))
2671 then
2672 return True;
2673
2674 elsif Is_Private_Type (Par)
2675 and then Present (Full_View (Par))
2676 and then Full_View (Par) = BT1
2677 then
2678 return True;
2679
2680 -- Climb to the ancestor type
2681
2682 elsif Etype (Par) /= Par then
2683
2684 -- Use the full-view of private types (if allowed)
2685
2686 if Use_Full_View
2687 and then Is_Private_Type (Par)
2688 and then Present (Full_View (Par))
2689 then
2690 Par := Etype (Full_View (Par));
2691 else
2692 Par := Etype (Par);
2693 end if;
2694
2695 -- For all other cases return False, not an Ancestor
2696
2697 else
2698 return False;
2699 end if;
2700 end loop;
2701 end if;
2702 end Is_Ancestor;
2703
2704 ---------------------------
2705 -- Is_Invisible_Operator --
2706 ---------------------------
2707
2708 function Is_Invisible_Operator
2709 (N : Node_Id;
2710 T : Entity_Id) return Boolean
2711 is
2712 Orig_Node : constant Node_Id := Original_Node (N);
2713
2714 begin
2715 if Nkind (N) not in N_Op then
2716 return False;
2717
2718 elsif not Comes_From_Source (N) then
2719 return False;
2720
2721 elsif No (Universal_Interpretation (Right_Opnd (N))) then
2722 return False;
2723
2724 elsif Nkind (N) in N_Binary_Op
2725 and then No (Universal_Interpretation (Left_Opnd (N)))
2726 then
2727 return False;
2728
2729 else
2730 return Is_Numeric_Type (T)
2731 and then not In_Open_Scopes (Scope (T))
2732 and then not Is_Potentially_Use_Visible (T)
2733 and then not In_Use (T)
2734 and then not In_Use (Scope (T))
2735 and then
2736 (Nkind (Orig_Node) /= N_Function_Call
2737 or else Nkind (Name (Orig_Node)) /= N_Expanded_Name
2738 or else Entity (Prefix (Name (Orig_Node))) /= Scope (T))
2739 and then not In_Instance;
2740 end if;
2741 end Is_Invisible_Operator;
2742
2743 --------------------
2744 -- Is_Progenitor --
2745 --------------------
2746
2747 function Is_Progenitor
2748 (Iface : Entity_Id;
2749 Typ : Entity_Id) return Boolean
2750 is
2751 begin
2752 return Implements_Interface (Typ, Iface, Exclude_Parents => True);
2753 end Is_Progenitor;
2754
2755 -------------------
2756 -- Is_Subtype_Of --
2757 -------------------
2758
2759 function Is_Subtype_Of (T1 : Entity_Id; T2 : Entity_Id) return Boolean is
2760 S : Entity_Id;
2761
2762 begin
2763 S := Ancestor_Subtype (T1);
2764 while Present (S) loop
2765 if S = T2 then
2766 return True;
2767 else
2768 S := Ancestor_Subtype (S);
2769 end if;
2770 end loop;
2771
2772 return False;
2773 end Is_Subtype_Of;
2774
2775 ------------------
2776 -- List_Interps --
2777 ------------------
2778
2779 procedure List_Interps (Nam : Node_Id; Err : Node_Id) is
2780 Index : Interp_Index;
2781 It : Interp;
2782
2783 begin
2784 Get_First_Interp (Nam, Index, It);
2785 while Present (It.Nam) loop
2786 if Scope (It.Nam) = Standard_Standard
2787 and then Scope (It.Typ) /= Standard_Standard
2788 then
2789 Error_Msg_Sloc := Sloc (Parent (It.Typ));
2790 Error_Msg_NE ("\\& (inherited) declared#!", Err, It.Nam);
2791
2792 else
2793 Error_Msg_Sloc := Sloc (It.Nam);
2794 Error_Msg_NE ("\\& declared#!", Err, It.Nam);
2795 end if;
2796
2797 Get_Next_Interp (Index, It);
2798 end loop;
2799 end List_Interps;
2800
2801 -----------------
2802 -- New_Interps --
2803 -----------------
2804
2805 procedure New_Interps (N : Node_Id) is
2806 Map_Ptr : Int;
2807
2808 begin
2809 All_Interp.Append (No_Interp);
2810
2811 Map_Ptr := Headers (Hash (N));
2812
2813 if Map_Ptr = No_Entry then
2814
2815 -- Place new node at end of table
2816
2817 Interp_Map.Increment_Last;
2818 Headers (Hash (N)) := Interp_Map.Last;
2819
2820 else
2821 -- Place node at end of chain, or locate its previous entry
2822
2823 loop
2824 if Interp_Map.Table (Map_Ptr).Node = N then
2825
2826 -- Node is already in the table, and is being rewritten.
2827 -- Start a new interp section, retain hash link.
2828
2829 Interp_Map.Table (Map_Ptr).Node := N;
2830 Interp_Map.Table (Map_Ptr).Index := All_Interp.Last;
2831 Set_Is_Overloaded (N, True);
2832 return;
2833
2834 else
2835 exit when Interp_Map.Table (Map_Ptr).Next = No_Entry;
2836 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
2837 end if;
2838 end loop;
2839
2840 -- Chain the new node
2841
2842 Interp_Map.Increment_Last;
2843 Interp_Map.Table (Map_Ptr).Next := Interp_Map.Last;
2844 end if;
2845
2846 Interp_Map.Table (Interp_Map.Last) := (N, All_Interp.Last, No_Entry);
2847 Set_Is_Overloaded (N, True);
2848 end New_Interps;
2849
2850 ---------------------------
2851 -- Operator_Matches_Spec --
2852 ---------------------------
2853
2854 function Operator_Matches_Spec (Op, New_S : Entity_Id) return Boolean is
2855 Op_Name : constant Name_Id := Chars (Op);
2856 T : constant Entity_Id := Etype (New_S);
2857 New_F : Entity_Id;
2858 Old_F : Entity_Id;
2859 Num : Int;
2860 T1 : Entity_Id;
2861 T2 : Entity_Id;
2862
2863 begin
2864 -- To verify that a predefined operator matches a given signature,
2865 -- do a case analysis of the operator classes. Function can have one
2866 -- or two formals and must have the proper result type.
2867
2868 New_F := First_Formal (New_S);
2869 Old_F := First_Formal (Op);
2870 Num := 0;
2871 while Present (New_F) and then Present (Old_F) loop
2872 Num := Num + 1;
2873 Next_Formal (New_F);
2874 Next_Formal (Old_F);
2875 end loop;
2876
2877 -- Definite mismatch if different number of parameters
2878
2879 if Present (Old_F) or else Present (New_F) then
2880 return False;
2881
2882 -- Unary operators
2883
2884 elsif Num = 1 then
2885 T1 := Etype (First_Formal (New_S));
2886
2887 if Op_Name = Name_Op_Subtract
2888 or else Op_Name = Name_Op_Add
2889 or else Op_Name = Name_Op_Abs
2890 then
2891 return Base_Type (T1) = Base_Type (T)
2892 and then Is_Numeric_Type (T);
2893
2894 elsif Op_Name = Name_Op_Not then
2895 return Base_Type (T1) = Base_Type (T)
2896 and then Valid_Boolean_Arg (Base_Type (T));
2897
2898 else
2899 return False;
2900 end if;
2901
2902 -- Binary operators
2903
2904 else
2905 T1 := Etype (First_Formal (New_S));
2906 T2 := Etype (Next_Formal (First_Formal (New_S)));
2907
2908 if Op_Name = Name_Op_And or else Op_Name = Name_Op_Or
2909 or else Op_Name = Name_Op_Xor
2910 then
2911 return Base_Type (T1) = Base_Type (T2)
2912 and then Base_Type (T1) = Base_Type (T)
2913 and then Valid_Boolean_Arg (Base_Type (T));
2914
2915 elsif Op_Name = Name_Op_Eq or else Op_Name = Name_Op_Ne then
2916 return Base_Type (T1) = Base_Type (T2)
2917 and then not Is_Limited_Type (T1)
2918 and then Is_Boolean_Type (T);
2919
2920 elsif Op_Name = Name_Op_Lt or else Op_Name = Name_Op_Le
2921 or else Op_Name = Name_Op_Gt or else Op_Name = Name_Op_Ge
2922 then
2923 return Base_Type (T1) = Base_Type (T2)
2924 and then Valid_Comparison_Arg (T1)
2925 and then Is_Boolean_Type (T);
2926
2927 elsif Op_Name = Name_Op_Add or else Op_Name = Name_Op_Subtract then
2928 return Base_Type (T1) = Base_Type (T2)
2929 and then Base_Type (T1) = Base_Type (T)
2930 and then Is_Numeric_Type (T);
2931
2932 -- For division and multiplication, a user-defined function does not
2933 -- match the predefined universal_fixed operation, except in Ada 83.
2934
2935 elsif Op_Name = Name_Op_Divide then
2936 return (Base_Type (T1) = Base_Type (T2)
2937 and then Base_Type (T1) = Base_Type (T)
2938 and then Is_Numeric_Type (T)
2939 and then (not Is_Fixed_Point_Type (T)
2940 or else Ada_Version = Ada_83))
2941
2942 -- Mixed_Mode operations on fixed-point types
2943
2944 or else (Base_Type (T1) = Base_Type (T)
2945 and then Base_Type (T2) = Base_Type (Standard_Integer)
2946 and then Is_Fixed_Point_Type (T))
2947
2948 -- A user defined operator can also match (and hide) a mixed
2949 -- operation on universal literals.
2950
2951 or else (Is_Integer_Type (T2)
2952 and then Is_Floating_Point_Type (T1)
2953 and then Base_Type (T1) = Base_Type (T));
2954
2955 elsif Op_Name = Name_Op_Multiply then
2956 return (Base_Type (T1) = Base_Type (T2)
2957 and then Base_Type (T1) = Base_Type (T)
2958 and then Is_Numeric_Type (T)
2959 and then (not Is_Fixed_Point_Type (T)
2960 or else Ada_Version = Ada_83))
2961
2962 -- Mixed_Mode operations on fixed-point types
2963
2964 or else (Base_Type (T1) = Base_Type (T)
2965 and then Base_Type (T2) = Base_Type (Standard_Integer)
2966 and then Is_Fixed_Point_Type (T))
2967
2968 or else (Base_Type (T2) = Base_Type (T)
2969 and then Base_Type (T1) = Base_Type (Standard_Integer)
2970 and then Is_Fixed_Point_Type (T))
2971
2972 or else (Is_Integer_Type (T2)
2973 and then Is_Floating_Point_Type (T1)
2974 and then Base_Type (T1) = Base_Type (T))
2975
2976 or else (Is_Integer_Type (T1)
2977 and then Is_Floating_Point_Type (T2)
2978 and then Base_Type (T2) = Base_Type (T));
2979
2980 elsif Op_Name = Name_Op_Mod or else Op_Name = Name_Op_Rem then
2981 return Base_Type (T1) = Base_Type (T2)
2982 and then Base_Type (T1) = Base_Type (T)
2983 and then Is_Integer_Type (T);
2984
2985 elsif Op_Name = Name_Op_Expon then
2986 return Base_Type (T1) = Base_Type (T)
2987 and then Is_Numeric_Type (T)
2988 and then Base_Type (T2) = Base_Type (Standard_Integer);
2989
2990 elsif Op_Name = Name_Op_Concat then
2991 return Is_Array_Type (T)
2992 and then (Base_Type (T) = Base_Type (Etype (Op)))
2993 and then (Base_Type (T1) = Base_Type (T)
2994 or else
2995 Base_Type (T1) = Base_Type (Component_Type (T)))
2996 and then (Base_Type (T2) = Base_Type (T)
2997 or else
2998 Base_Type (T2) = Base_Type (Component_Type (T)));
2999
3000 else
3001 return False;
3002 end if;
3003 end if;
3004 end Operator_Matches_Spec;
3005
3006 -------------------
3007 -- Remove_Interp --
3008 -------------------
3009
3010 procedure Remove_Interp (I : in out Interp_Index) is
3011 II : Interp_Index;
3012
3013 begin
3014 -- Find end of interp list and copy downward to erase the discarded one
3015
3016 II := I + 1;
3017 while Present (All_Interp.Table (II).Typ) loop
3018 II := II + 1;
3019 end loop;
3020
3021 for J in I + 1 .. II loop
3022 All_Interp.Table (J - 1) := All_Interp.Table (J);
3023 end loop;
3024
3025 -- Back up interp index to insure that iterator will pick up next
3026 -- available interpretation.
3027
3028 I := I - 1;
3029 end Remove_Interp;
3030
3031 ------------------
3032 -- Save_Interps --
3033 ------------------
3034
3035 procedure Save_Interps (Old_N : Node_Id; New_N : Node_Id) is
3036 Map_Ptr : Int;
3037 O_N : Node_Id := Old_N;
3038
3039 begin
3040 if Is_Overloaded (Old_N) then
3041 if Nkind (Old_N) = N_Selected_Component
3042 and then Is_Overloaded (Selector_Name (Old_N))
3043 then
3044 O_N := Selector_Name (Old_N);
3045 end if;
3046
3047 Map_Ptr := Headers (Hash (O_N));
3048
3049 while Interp_Map.Table (Map_Ptr).Node /= O_N loop
3050 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
3051 pragma Assert (Map_Ptr /= No_Entry);
3052 end loop;
3053
3054 New_Interps (New_N);
3055 Interp_Map.Table (Interp_Map.Last).Index :=
3056 Interp_Map.Table (Map_Ptr).Index;
3057 end if;
3058 end Save_Interps;
3059
3060 -------------------
3061 -- Specific_Type --
3062 -------------------
3063
3064 function Specific_Type (Typ_1, Typ_2 : Entity_Id) return Entity_Id is
3065 T1 : constant Entity_Id := Available_View (Typ_1);
3066 T2 : constant Entity_Id := Available_View (Typ_2);
3067 B1 : constant Entity_Id := Base_Type (T1);
3068 B2 : constant Entity_Id := Base_Type (T2);
3069
3070 function Is_Remote_Access (T : Entity_Id) return Boolean;
3071 -- Check whether T is the equivalent type of a remote access type.
3072 -- If distribution is enabled, T is a legal context for Null.
3073
3074 ----------------------
3075 -- Is_Remote_Access --
3076 ----------------------
3077
3078 function Is_Remote_Access (T : Entity_Id) return Boolean is
3079 begin
3080 return Is_Record_Type (T)
3081 and then (Is_Remote_Call_Interface (T)
3082 or else Is_Remote_Types (T))
3083 and then Present (Corresponding_Remote_Type (T))
3084 and then Is_Access_Type (Corresponding_Remote_Type (T));
3085 end Is_Remote_Access;
3086
3087 -- Start of processing for Specific_Type
3088
3089 begin
3090 if T1 = Any_Type or else T2 = Any_Type then
3091 return Any_Type;
3092 end if;
3093
3094 if B1 = B2 then
3095 return B1;
3096
3097 elsif (T1 = Universal_Integer and then Is_Integer_Type (T2))
3098 or else (T1 = Universal_Real and then Is_Real_Type (T2))
3099 or else (T1 = Universal_Fixed and then Is_Fixed_Point_Type (T2))
3100 or else (T1 = Any_Fixed and then Is_Fixed_Point_Type (T2))
3101 then
3102 return B2;
3103
3104 elsif (T2 = Universal_Integer and then Is_Integer_Type (T1))
3105 or else (T2 = Universal_Real and then Is_Real_Type (T1))
3106 or else (T2 = Universal_Fixed and then Is_Fixed_Point_Type (T1))
3107 or else (T2 = Any_Fixed and then Is_Fixed_Point_Type (T1))
3108 then
3109 return B1;
3110
3111 elsif T2 = Any_String and then Is_String_Type (T1) then
3112 return B1;
3113
3114 elsif T1 = Any_String and then Is_String_Type (T2) then
3115 return B2;
3116
3117 elsif T2 = Any_Character and then Is_Character_Type (T1) then
3118 return B1;
3119
3120 elsif T1 = Any_Character and then Is_Character_Type (T2) then
3121 return B2;
3122
3123 elsif T1 = Any_Access
3124 and then (Is_Access_Type (T2) or else Is_Remote_Access (T2))
3125 then
3126 return T2;
3127
3128 elsif T2 = Any_Access
3129 and then (Is_Access_Type (T1) or else Is_Remote_Access (T1))
3130 then
3131 return T1;
3132
3133 elsif T2 = Any_Composite
3134 and then Is_Aggregate_Type (T1)
3135 then
3136 return T1;
3137
3138 elsif T1 = Any_Composite
3139 and then Is_Aggregate_Type (T2)
3140 then
3141 return T2;
3142
3143 elsif T1 = Any_Modular and then Is_Modular_Integer_Type (T2) then
3144 return T2;
3145
3146 elsif T2 = Any_Modular and then Is_Modular_Integer_Type (T1) then
3147 return T1;
3148
3149 -- ----------------------------------------------------------
3150 -- Special cases for equality operators (all other predefined
3151 -- operators can never apply to tagged types)
3152 -- ----------------------------------------------------------
3153
3154 -- Ada 2005 (AI-251): T1 and T2 are class-wide types, and T2 is an
3155 -- interface
3156
3157 elsif Is_Class_Wide_Type (T1)
3158 and then Is_Class_Wide_Type (T2)
3159 and then Is_Interface (Etype (T2))
3160 then
3161 return T1;
3162
3163 -- Ada 2005 (AI-251): T1 is a concrete type that implements the
3164 -- class-wide interface T2
3165
3166 elsif Is_Class_Wide_Type (T2)
3167 and then Is_Interface (Etype (T2))
3168 and then Interface_Present_In_Ancestor (Typ => T1,
3169 Iface => Etype (T2))
3170 then
3171 return T1;
3172
3173 elsif Is_Class_Wide_Type (T1)
3174 and then Is_Ancestor (Root_Type (T1), T2)
3175 then
3176 return T1;
3177
3178 elsif Is_Class_Wide_Type (T2)
3179 and then Is_Ancestor (Root_Type (T2), T1)
3180 then
3181 return T2;
3182
3183 elsif (Ekind (B1) = E_Access_Subprogram_Type
3184 or else
3185 Ekind (B1) = E_Access_Protected_Subprogram_Type)
3186 and then Ekind (Designated_Type (B1)) /= E_Subprogram_Type
3187 and then Is_Access_Type (T2)
3188 then
3189 return T2;
3190
3191 elsif (Ekind (B2) = E_Access_Subprogram_Type
3192 or else
3193 Ekind (B2) = E_Access_Protected_Subprogram_Type)
3194 and then Ekind (Designated_Type (B2)) /= E_Subprogram_Type
3195 and then Is_Access_Type (T1)
3196 then
3197 return T1;
3198
3199 elsif (Ekind (T1) = E_Allocator_Type
3200 or else Ekind (T1) = E_Access_Attribute_Type
3201 or else Ekind (T1) = E_Anonymous_Access_Type)
3202 and then Is_Access_Type (T2)
3203 then
3204 return T2;
3205
3206 elsif (Ekind (T2) = E_Allocator_Type
3207 or else Ekind (T2) = E_Access_Attribute_Type
3208 or else Ekind (T2) = E_Anonymous_Access_Type)
3209 and then Is_Access_Type (T1)
3210 then
3211 return T1;
3212
3213 -- If none of the above cases applies, types are not compatible
3214
3215 else
3216 return Any_Type;
3217 end if;
3218 end Specific_Type;
3219
3220 ---------------------
3221 -- Set_Abstract_Op --
3222 ---------------------
3223
3224 procedure Set_Abstract_Op (I : Interp_Index; V : Entity_Id) is
3225 begin
3226 All_Interp.Table (I).Abstract_Op := V;
3227 end Set_Abstract_Op;
3228
3229 -----------------------
3230 -- Valid_Boolean_Arg --
3231 -----------------------
3232
3233 -- In addition to booleans and arrays of booleans, we must include
3234 -- aggregates as valid boolean arguments, because in the first pass of
3235 -- resolution their components are not examined. If it turns out not to be
3236 -- an aggregate of booleans, this will be diagnosed in Resolve.
3237 -- Any_Composite must be checked for prior to the array type checks because
3238 -- Any_Composite does not have any associated indexes.
3239
3240 function Valid_Boolean_Arg (T : Entity_Id) return Boolean is
3241 begin
3242 return Is_Boolean_Type (T)
3243 or else T = Any_Composite
3244 or else (Is_Array_Type (T)
3245 and then T /= Any_String
3246 and then Number_Dimensions (T) = 1
3247 and then Is_Boolean_Type (Component_Type (T))
3248 and then (not Is_Private_Composite (T)
3249 or else In_Instance)
3250 and then (not Is_Limited_Composite (T)
3251 or else In_Instance))
3252 or else Is_Modular_Integer_Type (T)
3253 or else T = Universal_Integer;
3254 end Valid_Boolean_Arg;
3255
3256 --------------------------
3257 -- Valid_Comparison_Arg --
3258 --------------------------
3259
3260 function Valid_Comparison_Arg (T : Entity_Id) return Boolean is
3261 begin
3262
3263 if T = Any_Composite then
3264 return False;
3265 elsif Is_Discrete_Type (T)
3266 or else Is_Real_Type (T)
3267 then
3268 return True;
3269 elsif Is_Array_Type (T)
3270 and then Number_Dimensions (T) = 1
3271 and then Is_Discrete_Type (Component_Type (T))
3272 and then (not Is_Private_Composite (T)
3273 or else In_Instance)
3274 and then (not Is_Limited_Composite (T)
3275 or else In_Instance)
3276 then
3277 return True;
3278 elsif Is_String_Type (T) then
3279 return True;
3280 else
3281 return False;
3282 end if;
3283 end Valid_Comparison_Arg;
3284
3285 ----------------------
3286 -- Write_Interp_Ref --
3287 ----------------------
3288
3289 procedure Write_Interp_Ref (Map_Ptr : Int) is
3290 begin
3291 Write_Str (" Node: ");
3292 Write_Int (Int (Interp_Map.Table (Map_Ptr).Node));
3293 Write_Str (" Index: ");
3294 Write_Int (Int (Interp_Map.Table (Map_Ptr).Index));
3295 Write_Str (" Next: ");
3296 Write_Int (Interp_Map.Table (Map_Ptr).Next);
3297 Write_Eol;
3298 end Write_Interp_Ref;
3299
3300 ---------------------
3301 -- Write_Overloads --
3302 ---------------------
3303
3304 procedure Write_Overloads (N : Node_Id) is
3305 I : Interp_Index;
3306 It : Interp;
3307 Nam : Entity_Id;
3308
3309 begin
3310 if not Is_Overloaded (N) then
3311 Write_Str ("Non-overloaded entity ");
3312 Write_Eol;
3313 Write_Entity_Info (Entity (N), " ");
3314
3315 else
3316 Get_First_Interp (N, I, It);
3317 Write_Str ("Overloaded entity ");
3318 Write_Eol;
3319 Write_Str (" Name Type Abstract Op");
3320 Write_Eol;
3321 Write_Str ("===============================================");
3322 Write_Eol;
3323 Nam := It.Nam;
3324
3325 while Present (Nam) loop
3326 Write_Int (Int (Nam));
3327 Write_Str (" ");
3328 Write_Name (Chars (Nam));
3329 Write_Str (" ");
3330 Write_Int (Int (It.Typ));
3331 Write_Str (" ");
3332 Write_Name (Chars (It.Typ));
3333
3334 if Present (It.Abstract_Op) then
3335 Write_Str (" ");
3336 Write_Int (Int (It.Abstract_Op));
3337 Write_Str (" ");
3338 Write_Name (Chars (It.Abstract_Op));
3339 end if;
3340
3341 Write_Eol;
3342 Get_Next_Interp (I, It);
3343 Nam := It.Nam;
3344 end loop;
3345 end if;
3346 end Write_Overloads;
3347
3348 end Sem_Type;