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