* gcc.dg/compat/struct-layout-1_generate.c (dg_options): New. Moved
[official-gcc.git] / gcc / ada / sem_type.adb
blob3ca2e5354780d067f6d2ee19e275fdea57638d9a
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-2008, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with Atree; use Atree;
27 with 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_Ch6; use Sem_Ch6;
39 with Sem_Ch8; use Sem_Ch8;
40 with Sem_Ch12; use Sem_Ch12;
41 with Sem_Disp; use Sem_Disp;
42 with Sem_Dist; use Sem_Dist;
43 with Sem_Util; use Sem_Util;
44 with Stand; use Stand;
45 with Sinfo; use Sinfo;
46 with Snames; use Snames;
47 with Table;
48 with Uintp; use Uintp;
50 package body Sem_Type is
52 ---------------------
53 -- Data Structures --
54 ---------------------
56 -- The following data structures establish a mapping between nodes and
57 -- their interpretations. An overloaded node has an entry in Interp_Map,
58 -- which in turn contains a pointer into the All_Interp array. The
59 -- interpretations of a given node are contiguous in All_Interp. Each
60 -- set of interpretations is terminated with the marker No_Interp.
61 -- In order to speed up the retrieval of the interpretations of an
62 -- overloaded node, the Interp_Map table is accessed by means of a simple
63 -- hashing scheme, and the entries in Interp_Map are chained. The heads
64 -- of clash lists are stored in array Headers.
66 -- Headers Interp_Map All_Interp
68 -- _ +-----+ +--------+
69 -- |_| |_____| --->|interp1 |
70 -- |_|---------->|node | | |interp2 |
71 -- |_| |index|---------| |nointerp|
72 -- |_| |next | | |
73 -- |-----| | |
74 -- +-----+ +--------+
76 -- This scheme does not currently reclaim interpretations. In principle,
77 -- after a unit is compiled, all overloadings have been resolved, and the
78 -- candidate interpretations should be deleted. This should be easier
79 -- now than with the previous scheme???
81 package All_Interp is new Table.Table (
82 Table_Component_Type => Interp,
83 Table_Index_Type => Int,
84 Table_Low_Bound => 0,
85 Table_Initial => Alloc.All_Interp_Initial,
86 Table_Increment => Alloc.All_Interp_Increment,
87 Table_Name => "All_Interp");
89 type Interp_Ref is record
90 Node : Node_Id;
91 Index : Interp_Index;
92 Next : Int;
93 end record;
95 Header_Size : constant Int := 2 ** 12;
96 No_Entry : constant Int := -1;
97 Headers : array (0 .. Header_Size) of Int := (others => No_Entry);
99 package Interp_Map is new Table.Table (
100 Table_Component_Type => Interp_Ref,
101 Table_Index_Type => Int,
102 Table_Low_Bound => 0,
103 Table_Initial => Alloc.Interp_Map_Initial,
104 Table_Increment => Alloc.Interp_Map_Increment,
105 Table_Name => "Interp_Map");
107 function Hash (N : Node_Id) return Int;
108 -- A trivial hashing function for nodes, used to insert an overloaded
109 -- node into the Interp_Map table.
111 -------------------------------------
112 -- Handling of Overload Resolution --
113 -------------------------------------
115 -- Overload resolution uses two passes over the syntax tree of a complete
116 -- context. In the first, bottom-up pass, the types of actuals in calls
117 -- are used to resolve possibly overloaded subprogram and operator names.
118 -- In the second top-down pass, the type of the context (for example the
119 -- condition in a while statement) is used to resolve a possibly ambiguous
120 -- call, and the unique subprogram name in turn imposes a specific context
121 -- on each of its actuals.
123 -- Most expressions are in fact unambiguous, and the bottom-up pass is
124 -- sufficient to resolve most everything. To simplify the common case,
125 -- names and expressions carry a flag Is_Overloaded to indicate whether
126 -- they have more than one interpretation. If the flag is off, then each
127 -- name has already a unique meaning and type, and the bottom-up pass is
128 -- sufficient (and much simpler).
130 --------------------------
131 -- Operator Overloading --
132 --------------------------
134 -- The visibility of operators is handled differently from that of
135 -- other entities. We do not introduce explicit versions of primitive
136 -- operators for each type definition. As a result, there is only one
137 -- entity corresponding to predefined addition on all numeric types, etc.
138 -- The back-end resolves predefined operators according to their type.
139 -- The visibility of primitive operations then reduces to the visibility
140 -- of the resulting type: (a + b) is a legal interpretation of some
141 -- primitive operator + if the type of the result (which must also be
142 -- the type of a and b) is directly visible (i.e. either immediately
143 -- visible or use-visible.)
145 -- User-defined operators are treated like other functions, but the
146 -- visibility of these user-defined operations must be special-cased
147 -- to determine whether they hide or are hidden by predefined operators.
148 -- The form P."+" (x, y) requires additional handling.
150 -- Concatenation is treated more conventionally: for every one-dimensional
151 -- array type we introduce a explicit concatenation operator. This is
152 -- necessary to handle the case of (element & element => array) which
153 -- cannot be handled conveniently if there is no explicit instance of
154 -- resulting type of the operation.
156 -----------------------
157 -- Local Subprograms --
158 -----------------------
160 procedure All_Overloads;
161 pragma Warnings (Off, All_Overloads);
162 -- Debugging procedure: list full contents of Overloads table
164 function Binary_Op_Interp_Has_Abstract_Op
165 (N : Node_Id;
166 E : Entity_Id) return Entity_Id;
167 -- Given the node and entity of a binary operator, determine whether the
168 -- actuals of E contain an abstract interpretation with regards to the
169 -- types of their corresponding formals. Return the abstract operation or
170 -- Empty.
172 function Function_Interp_Has_Abstract_Op
173 (N : Node_Id;
174 E : Entity_Id) return Entity_Id;
175 -- Given the node and entity of a function call, determine whether the
176 -- actuals of E contain an abstract interpretation with regards to the
177 -- types of their corresponding formals. Return the abstract operation or
178 -- Empty.
180 function Has_Abstract_Op
181 (N : Node_Id;
182 Typ : Entity_Id) return Entity_Id;
183 -- Subsidiary routine to Binary_Op_Interp_Has_Abstract_Op and Function_
184 -- Interp_Has_Abstract_Op. Determine whether an overloaded node has an
185 -- abstract interpretation which yields type Typ.
187 procedure New_Interps (N : Node_Id);
188 -- Initialize collection of interpretations for the given node, which is
189 -- either an overloaded entity, or an operation whose arguments have
190 -- multiple interpretations. Interpretations can be added to only one
191 -- node at a time.
193 function Specific_Type (Typ_1, Typ_2 : Entity_Id) return Entity_Id;
194 -- If Typ_1 and Typ_2 are compatible, return the one that is not universal
195 -- or is not a "class" type (any_character, etc).
197 --------------------
198 -- Add_One_Interp --
199 --------------------
201 procedure Add_One_Interp
202 (N : Node_Id;
203 E : Entity_Id;
204 T : Entity_Id;
205 Opnd_Type : Entity_Id := Empty)
207 Vis_Type : Entity_Id;
209 procedure Add_Entry (Name : Entity_Id; Typ : Entity_Id);
210 -- Add one interpretation to an overloaded node. Add a new entry if
211 -- not hidden by previous one, and remove previous one if hidden by
212 -- new one.
214 function Is_Universal_Operation (Op : Entity_Id) return Boolean;
215 -- True if the entity is a predefined operator and the operands have
216 -- a universal Interpretation.
218 ---------------
219 -- Add_Entry --
220 ---------------
222 procedure Add_Entry (Name : Entity_Id; Typ : Entity_Id) is
223 Abstr_Op : Entity_Id := Empty;
224 I : Interp_Index;
225 It : Interp;
227 -- Start of processing for Add_Entry
229 begin
230 -- Find out whether the new entry references interpretations that
231 -- are abstract or disabled by abstract operators.
233 if Ada_Version >= Ada_05 then
234 if Nkind (N) in N_Binary_Op then
235 Abstr_Op := Binary_Op_Interp_Has_Abstract_Op (N, Name);
236 elsif Nkind (N) = N_Function_Call then
237 Abstr_Op := Function_Interp_Has_Abstract_Op (N, Name);
238 end if;
239 end if;
241 Get_First_Interp (N, I, It);
242 while Present (It.Nam) loop
244 -- A user-defined subprogram hides another declared at an outer
245 -- level, or one that is use-visible. So return if previous
246 -- definition hides new one (which is either in an outer
247 -- scope, or use-visible). Note that for functions use-visible
248 -- is the same as potentially use-visible. If new one hides
249 -- previous one, replace entry in table of interpretations.
250 -- If this is a universal operation, retain the operator in case
251 -- preference rule applies.
253 if (((Ekind (Name) = E_Function or else Ekind (Name) = E_Procedure)
254 and then Ekind (Name) = Ekind (It.Nam))
255 or else (Ekind (Name) = E_Operator
256 and then Ekind (It.Nam) = E_Function))
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;
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.
270 elsif Nkind (N) = N_Operator_Symbol
271 or else (Nkind (N) = N_Expanded_Name
272 and then
273 Nkind (Selector_Name (N)) = N_Operator_Symbol)
274 then
275 exit;
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.
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;
293 else
294 All_Interp.Table (I).Nam := Name;
295 return;
296 end if;
298 -- Avoid making duplicate entries in overloads
300 elsif Name = It.Nam
301 and then Base_Type (It.Typ) = Base_Type (T)
302 then
303 return;
305 -- Otherwise keep going
307 else
308 Get_Next_Interp (I, It);
309 end if;
311 end loop;
313 All_Interp.Table (All_Interp.Last) := (Name, Typ, Abstr_Op);
314 All_Interp.Increment_Last;
315 All_Interp.Table (All_Interp.Last) := No_Interp;
316 end Add_Entry;
318 ----------------------------
319 -- Is_Universal_Operation --
320 ----------------------------
322 function Is_Universal_Operation (Op : Entity_Id) return Boolean is
323 Arg : Node_Id;
325 begin
326 if Ekind (Op) /= E_Operator then
327 return False;
329 elsif Nkind (N) in N_Binary_Op then
330 return Present (Universal_Interpretation (Left_Opnd (N)))
331 and then Present (Universal_Interpretation (Right_Opnd (N)));
333 elsif Nkind (N) in N_Unary_Op then
334 return Present (Universal_Interpretation (Right_Opnd (N)));
336 elsif Nkind (N) = N_Function_Call then
337 Arg := First_Actual (N);
338 while Present (Arg) loop
339 if No (Universal_Interpretation (Arg)) then
340 return False;
341 end if;
343 Next_Actual (Arg);
344 end loop;
346 return True;
348 else
349 return False;
350 end if;
351 end Is_Universal_Operation;
353 -- Start of processing for Add_One_Interp
355 begin
356 -- If the interpretation is a predefined operator, verify that the
357 -- result type is visible, or that the entity has already been
358 -- resolved (case of an instantiation node that refers to a predefined
359 -- operation, or an internally generated operator node, or an operator
360 -- given as an expanded name). If the operator is a comparison or
361 -- equality, it is the type of the operand that matters to determine
362 -- whether the operator is visible. In an instance, the check is not
363 -- performed, given that the operator was visible in the generic.
365 if Ekind (E) = E_Operator then
367 if Present (Opnd_Type) then
368 Vis_Type := Opnd_Type;
369 else
370 Vis_Type := Base_Type (T);
371 end if;
373 if In_Open_Scopes (Scope (Vis_Type))
374 or else Is_Potentially_Use_Visible (Vis_Type)
375 or else In_Use (Vis_Type)
376 or else (In_Use (Scope (Vis_Type))
377 and then not Is_Hidden (Vis_Type))
378 or else Nkind (N) = N_Expanded_Name
379 or else (Nkind (N) in N_Op and then E = Entity (N))
380 or else In_Instance
381 or else Ekind (Vis_Type) = E_Anonymous_Access_Type
382 then
383 null;
385 -- If the node is given in functional notation and the prefix
386 -- is an expanded name, then the operator is visible if the
387 -- prefix is the scope of the result type as well. If the
388 -- operator is (implicitly) defined in an extension of system,
389 -- it is know to be valid (see Defined_In_Scope, sem_ch4.adb).
391 elsif Nkind (N) = N_Function_Call
392 and then Nkind (Name (N)) = N_Expanded_Name
393 and then (Entity (Prefix (Name (N))) = Scope (Base_Type (T))
394 or else Entity (Prefix (Name (N))) = Scope (Vis_Type)
395 or else Scope (Vis_Type) = System_Aux_Id)
396 then
397 null;
399 -- Save type for subsequent error message, in case no other
400 -- interpretation is found.
402 else
403 Candidate_Type := Vis_Type;
404 return;
405 end if;
407 -- In an instance, an abstract non-dispatching operation cannot be a
408 -- candidate interpretation, because it could not have been one in the
409 -- generic (it may be a spurious overloading in the instance).
411 elsif In_Instance
412 and then Is_Overloadable (E)
413 and then Is_Abstract_Subprogram (E)
414 and then not Is_Dispatching_Operation (E)
415 then
416 return;
418 -- An inherited interface operation that is implemented by some derived
419 -- type does not participate in overload resolution, only the
420 -- implementation operation does.
422 elsif Is_Hidden (E)
423 and then Is_Subprogram (E)
424 and then Present (Interface_Alias (E))
425 then
426 -- Ada 2005 (AI-251): If this primitive operation corresponds with
427 -- an immediate ancestor interface there is no need to add it to the
428 -- list of interpretations. The corresponding aliased primitive is
429 -- also in this list of primitive operations and will be used instead
430 -- because otherwise we have a dummy ambiguity between the two
431 -- subprograms which are in fact the same.
433 if not Is_Ancestor
434 (Find_Dispatching_Type (Interface_Alias (E)),
435 Find_Dispatching_Type (E))
436 then
437 Add_One_Interp (N, Interface_Alias (E), T);
438 end if;
440 return;
442 -- Calling stubs for an RACW operation never participate in resolution,
443 -- they are executed only through dispatching calls.
445 elsif Is_RACW_Stub_Type_Operation (E) then
446 return;
447 end if;
449 -- If this is the first interpretation of N, N has type Any_Type.
450 -- In that case place the new type on the node. If one interpretation
451 -- already exists, indicate that the node is overloaded, and store
452 -- both the previous and the new interpretation in All_Interp. If
453 -- this is a later interpretation, just add it to the set.
455 if Etype (N) = Any_Type then
456 if Is_Type (E) then
457 Set_Etype (N, T);
459 else
460 -- Record both the operator or subprogram name, and its type
462 if Nkind (N) in N_Op or else Is_Entity_Name (N) then
463 Set_Entity (N, E);
464 end if;
466 Set_Etype (N, T);
467 end if;
469 -- Either there is no current interpretation in the table for any
470 -- node or the interpretation that is present is for a different
471 -- node. In both cases add a new interpretation to the table.
473 elsif Interp_Map.Last < 0
474 or else
475 (Interp_Map.Table (Interp_Map.Last).Node /= N
476 and then not Is_Overloaded (N))
477 then
478 New_Interps (N);
480 if (Nkind (N) in N_Op or else Is_Entity_Name (N))
481 and then Present (Entity (N))
482 then
483 Add_Entry (Entity (N), Etype (N));
485 elsif (Nkind (N) = N_Function_Call
486 or else Nkind (N) = N_Procedure_Call_Statement)
487 and then (Nkind (Name (N)) = N_Operator_Symbol
488 or else Is_Entity_Name (Name (N)))
489 then
490 Add_Entry (Entity (Name (N)), Etype (N));
492 -- If this is an indirect call there will be no name associated
493 -- with the previous entry. To make diagnostics clearer, save
494 -- Subprogram_Type of first interpretation, so that the error will
495 -- point to the anonymous access to subprogram, not to the result
496 -- type of the call itself.
498 elsif (Nkind (N)) = N_Function_Call
499 and then Nkind (Name (N)) = N_Explicit_Dereference
500 and then Is_Overloaded (Name (N))
501 then
502 declare
503 It : Interp;
505 Itn : Interp_Index;
506 pragma Warnings (Off, Itn);
508 begin
509 Get_First_Interp (Name (N), Itn, It);
510 Add_Entry (It.Nam, Etype (N));
511 end;
513 else
514 -- Overloaded prefix in indexed or selected component, or call
515 -- whose name is an expression or another call.
517 Add_Entry (Etype (N), Etype (N));
518 end if;
520 Add_Entry (E, T);
522 else
523 Add_Entry (E, T);
524 end if;
525 end Add_One_Interp;
527 -------------------
528 -- All_Overloads --
529 -------------------
531 procedure All_Overloads is
532 begin
533 for J in All_Interp.First .. All_Interp.Last loop
535 if Present (All_Interp.Table (J).Nam) then
536 Write_Entity_Info (All_Interp.Table (J). Nam, " ");
537 else
538 Write_Str ("No Interp");
539 Write_Eol;
540 end if;
542 Write_Str ("=================");
543 Write_Eol;
544 end loop;
545 end All_Overloads;
547 --------------------------------------
548 -- Binary_Op_Interp_Has_Abstract_Op --
549 --------------------------------------
551 function Binary_Op_Interp_Has_Abstract_Op
552 (N : Node_Id;
553 E : Entity_Id) return Entity_Id
555 Abstr_Op : Entity_Id;
556 E_Left : constant Node_Id := First_Formal (E);
557 E_Right : constant Node_Id := Next_Formal (E_Left);
559 begin
560 Abstr_Op := Has_Abstract_Op (Left_Opnd (N), Etype (E_Left));
561 if Present (Abstr_Op) then
562 return Abstr_Op;
563 end if;
565 return Has_Abstract_Op (Right_Opnd (N), Etype (E_Right));
566 end Binary_Op_Interp_Has_Abstract_Op;
568 ---------------------
569 -- Collect_Interps --
570 ---------------------
572 procedure Collect_Interps (N : Node_Id) is
573 Ent : constant Entity_Id := Entity (N);
574 H : Entity_Id;
575 First_Interp : Interp_Index;
577 begin
578 New_Interps (N);
580 -- Unconditionally add the entity that was initially matched
582 First_Interp := All_Interp.Last;
583 Add_One_Interp (N, Ent, Etype (N));
585 -- For expanded name, pick up all additional entities from the
586 -- same scope, since these are obviously also visible. Note that
587 -- these are not necessarily contiguous on the homonym chain.
589 if Nkind (N) = N_Expanded_Name then
590 H := Homonym (Ent);
591 while Present (H) loop
592 if Scope (H) = Scope (Entity (N)) then
593 Add_One_Interp (N, H, Etype (H));
594 end if;
596 H := Homonym (H);
597 end loop;
599 -- Case of direct name
601 else
602 -- First, search the homonym chain for directly visible entities
604 H := Current_Entity (Ent);
605 while Present (H) loop
606 exit when (not Is_Overloadable (H))
607 and then Is_Immediately_Visible (H);
609 if Is_Immediately_Visible (H)
610 and then H /= Ent
611 then
612 -- Only add interpretation if not hidden by an inner
613 -- immediately visible one.
615 for J in First_Interp .. All_Interp.Last - 1 loop
617 -- Current homograph is not hidden. Add to overloads
619 if not Is_Immediately_Visible (All_Interp.Table (J).Nam) then
620 exit;
622 -- Homograph is hidden, unless it is a predefined operator
624 elsif Type_Conformant (H, All_Interp.Table (J).Nam) then
626 -- A homograph in the same scope can occur within an
627 -- instantiation, the resulting ambiguity has to be
628 -- resolved later.
630 if Scope (H) = Scope (Ent)
631 and then In_Instance
632 and then not Is_Inherited_Operation (H)
633 then
634 All_Interp.Table (All_Interp.Last) :=
635 (H, Etype (H), Empty);
636 All_Interp.Increment_Last;
637 All_Interp.Table (All_Interp.Last) := No_Interp;
638 goto Next_Homograph;
640 elsif Scope (H) /= Standard_Standard then
641 goto Next_Homograph;
642 end if;
643 end if;
644 end loop;
646 -- On exit, we know that current homograph is not hidden
648 Add_One_Interp (N, H, Etype (H));
650 if Debug_Flag_E then
651 Write_Str ("Add overloaded interpretation ");
652 Write_Int (Int (H));
653 Write_Eol;
654 end if;
655 end if;
657 <<Next_Homograph>>
658 H := Homonym (H);
659 end loop;
661 -- Scan list of homographs for use-visible entities only
663 H := Current_Entity (Ent);
665 while Present (H) loop
666 if Is_Potentially_Use_Visible (H)
667 and then H /= Ent
668 and then Is_Overloadable (H)
669 then
670 for J in First_Interp .. All_Interp.Last - 1 loop
672 if not Is_Immediately_Visible (All_Interp.Table (J).Nam) then
673 exit;
675 elsif Type_Conformant (H, All_Interp.Table (J).Nam) then
676 goto Next_Use_Homograph;
677 end if;
678 end loop;
680 Add_One_Interp (N, H, Etype (H));
681 end if;
683 <<Next_Use_Homograph>>
684 H := Homonym (H);
685 end loop;
686 end if;
688 if All_Interp.Last = First_Interp + 1 then
690 -- The final interpretation is in fact not overloaded. Note that the
691 -- unique legal interpretation may or may not be the original one,
692 -- so we need to update N's entity and etype now, because once N
693 -- is marked as not overloaded it is also expected to carry the
694 -- proper interpretation.
696 Set_Is_Overloaded (N, False);
697 Set_Entity (N, All_Interp.Table (First_Interp).Nam);
698 Set_Etype (N, All_Interp.Table (First_Interp).Typ);
699 end if;
700 end Collect_Interps;
702 ------------
703 -- Covers --
704 ------------
706 function Covers (T1, T2 : Entity_Id) return Boolean is
708 BT1 : Entity_Id;
709 BT2 : Entity_Id;
711 function Full_View_Covers (Typ1, Typ2 : Entity_Id) return Boolean;
712 -- In an instance the proper view may not always be correct for
713 -- private types, but private and full view are compatible. This
714 -- removes spurious errors from nested instantiations that involve,
715 -- among other things, types derived from private types.
717 ----------------------
718 -- Full_View_Covers --
719 ----------------------
721 function Full_View_Covers (Typ1, Typ2 : Entity_Id) return Boolean is
722 begin
723 return
724 Is_Private_Type (Typ1)
725 and then
726 ((Present (Full_View (Typ1))
727 and then Covers (Full_View (Typ1), Typ2))
728 or else Base_Type (Typ1) = Typ2
729 or else Base_Type (Typ2) = Typ1);
730 end Full_View_Covers;
732 -- Start of processing for Covers
734 begin
735 -- If either operand missing, then this is an error, but ignore it (and
736 -- pretend we have a cover) if errors already detected, since this may
737 -- simply mean we have malformed trees.
739 if No (T1) or else No (T2) then
740 if Total_Errors_Detected /= 0 then
741 return True;
742 else
743 raise Program_Error;
744 end if;
746 else
747 BT1 := Base_Type (T1);
748 BT2 := Base_Type (T2);
749 end if;
751 -- Simplest case: same types are compatible, and types that have the
752 -- same base type and are not generic actuals are compatible. Generic
753 -- actuals belong to their class but are not compatible with other
754 -- types of their class, and in particular with other generic actuals.
755 -- They are however compatible with their own subtypes, and itypes
756 -- with the same base are compatible as well. Similarly, constrained
757 -- subtypes obtained from expressions of an unconstrained nominal type
758 -- are compatible with the base type (may lead to spurious ambiguities
759 -- in obscure cases ???)
761 -- Generic actuals require special treatment to avoid spurious ambi-
762 -- guities in an instance, when two formal types are instantiated with
763 -- the same actual, so that different subprograms end up with the same
764 -- signature in the instance.
766 if T1 = T2 then
767 return True;
769 elsif BT1 = BT2
770 or else BT1 = T2
771 or else BT2 = T1
772 then
773 if not Is_Generic_Actual_Type (T1) then
774 return True;
775 else
776 return (not Is_Generic_Actual_Type (T2)
777 or else Is_Itype (T1)
778 or else Is_Itype (T2)
779 or else Is_Constr_Subt_For_U_Nominal (T1)
780 or else Is_Constr_Subt_For_U_Nominal (T2)
781 or else Scope (T1) /= Scope (T2));
782 end if;
784 -- Literals are compatible with types in a given "class"
786 elsif (T2 = Universal_Integer and then Is_Integer_Type (T1))
787 or else (T2 = Universal_Real and then Is_Real_Type (T1))
788 or else (T2 = Universal_Fixed and then Is_Fixed_Point_Type (T1))
789 or else (T2 = Any_Fixed and then Is_Fixed_Point_Type (T1))
790 or else (T2 = Any_String and then Is_String_Type (T1))
791 or else (T2 = Any_Character and then Is_Character_Type (T1))
792 or else (T2 = Any_Access and then Is_Access_Type (T1))
793 then
794 return True;
796 -- The context may be class wide
798 elsif Is_Class_Wide_Type (T1)
799 and then Is_Ancestor (Root_Type (T1), T2)
800 then
801 return True;
803 elsif Is_Class_Wide_Type (T1)
804 and then Is_Class_Wide_Type (T2)
805 and then Base_Type (Etype (T1)) = Base_Type (Etype (T2))
806 then
807 return True;
809 -- Ada 2005 (AI-345): A class-wide abstract interface type T1 covers a
810 -- task_type or protected_type implementing T1
812 elsif Ada_Version >= Ada_05
813 and then Is_Class_Wide_Type (T1)
814 and then Is_Interface (Etype (T1))
815 and then Is_Concurrent_Type (T2)
816 and then Interface_Present_In_Ancestor
817 (Typ => Base_Type (T2),
818 Iface => Etype (T1))
819 then
820 return True;
822 -- Ada 2005 (AI-251): A class-wide abstract interface type T1 covers an
823 -- object T2 implementing T1
825 elsif Ada_Version >= Ada_05
826 and then Is_Class_Wide_Type (T1)
827 and then Is_Interface (Etype (T1))
828 and then Is_Tagged_Type (T2)
829 then
830 if Interface_Present_In_Ancestor (Typ => T2,
831 Iface => Etype (T1))
832 then
833 return True;
834 end if;
836 declare
837 E : Entity_Id;
838 Elmt : Elmt_Id;
840 begin
841 if Is_Concurrent_Type (BT2) then
842 E := Corresponding_Record_Type (BT2);
843 else
844 E := BT2;
845 end if;
847 -- Ada 2005 (AI-251): A class-wide abstract interface type T1
848 -- covers an object T2 that implements a direct derivation of T1.
849 -- Note: test for presence of E is defense against previous error.
851 if Present (E)
852 and then Present (Interfaces (E))
853 then
854 Elmt := First_Elmt (Interfaces (E));
855 while Present (Elmt) loop
856 if Is_Ancestor (Etype (T1), Node (Elmt)) then
857 return True;
858 end if;
860 Next_Elmt (Elmt);
861 end loop;
862 end if;
864 -- We should also check the case in which T1 is an ancestor of
865 -- some implemented interface???
867 return False;
868 end;
870 -- In a dispatching call the actual may be class-wide
872 elsif Is_Class_Wide_Type (T2)
873 and then Base_Type (Root_Type (T2)) = Base_Type (T1)
874 then
875 return True;
877 -- Some contexts require a class of types rather than a specific type
879 elsif (T1 = Any_Integer and then Is_Integer_Type (T2))
880 or else (T1 = Any_Boolean and then Is_Boolean_Type (T2))
881 or else (T1 = Any_Real and then Is_Real_Type (T2))
882 or else (T1 = Any_Fixed and then Is_Fixed_Point_Type (T2))
883 or else (T1 = Any_Discrete and then Is_Discrete_Type (T2))
884 then
885 return True;
887 -- An aggregate is compatible with an array or record type
889 elsif T2 = Any_Composite
890 and then Ekind (T1) in E_Array_Type .. E_Record_Subtype
891 then
892 return True;
894 -- If the expected type is an anonymous access, the designated type must
895 -- cover that of the expression. Use the base type for this check: even
896 -- though access subtypes are rare in sources, they are generated for
897 -- actuals in instantiations.
899 elsif Ekind (BT1) = E_Anonymous_Access_Type
900 and then Is_Access_Type (T2)
901 and then Covers (Designated_Type (T1), Designated_Type (T2))
902 then
903 return True;
905 -- An Access_To_Subprogram is compatible with itself, or with an
906 -- anonymous type created for an attribute reference Access.
908 elsif (Ekind (BT1) = E_Access_Subprogram_Type
909 or else
910 Ekind (BT1) = E_Access_Protected_Subprogram_Type)
911 and then Is_Access_Type (T2)
912 and then (not Comes_From_Source (T1)
913 or else not Comes_From_Source (T2))
914 and then (Is_Overloadable (Designated_Type (T2))
915 or else
916 Ekind (Designated_Type (T2)) = E_Subprogram_Type)
917 and then
918 Type_Conformant (Designated_Type (T1), Designated_Type (T2))
919 and then
920 Mode_Conformant (Designated_Type (T1), Designated_Type (T2))
921 then
922 return True;
924 -- Ada 2005 (AI-254): An Anonymous_Access_To_Subprogram is compatible
925 -- with itself, or with an anonymous type created for an attribute
926 -- reference Access.
928 elsif (Ekind (BT1) = E_Anonymous_Access_Subprogram_Type
929 or else
930 Ekind (BT1)
931 = E_Anonymous_Access_Protected_Subprogram_Type)
932 and then Is_Access_Type (T2)
933 and then (not Comes_From_Source (T1)
934 or else not Comes_From_Source (T2))
935 and then (Is_Overloadable (Designated_Type (T2))
936 or else
937 Ekind (Designated_Type (T2)) = E_Subprogram_Type)
938 and then
939 Type_Conformant (Designated_Type (T1), Designated_Type (T2))
940 and then
941 Mode_Conformant (Designated_Type (T1), Designated_Type (T2))
942 then
943 return True;
945 -- The context can be a remote access type, and the expression the
946 -- corresponding source type declared in a categorized package, or
947 -- vice versa.
949 elsif Is_Record_Type (T1)
950 and then (Is_Remote_Call_Interface (T1)
951 or else Is_Remote_Types (T1))
952 and then Present (Corresponding_Remote_Type (T1))
953 then
954 return Covers (Corresponding_Remote_Type (T1), T2);
956 elsif Is_Record_Type (T2)
957 and then (Is_Remote_Call_Interface (T2)
958 or else Is_Remote_Types (T2))
959 and then Present (Corresponding_Remote_Type (T2))
960 then
961 return Covers (Corresponding_Remote_Type (T2), T1);
963 elsif Ekind (T2) = E_Access_Attribute_Type
964 and then (Ekind (BT1) = E_General_Access_Type
965 or else Ekind (BT1) = E_Access_Type)
966 and then Covers (Designated_Type (T1), Designated_Type (T2))
967 then
968 -- If the target type is a RACW type while the source is an access
969 -- attribute type, we are building a RACW that may be exported.
971 if Is_Remote_Access_To_Class_Wide_Type (BT1) then
972 Set_Has_RACW (Current_Sem_Unit);
973 end if;
975 return True;
977 elsif Ekind (T2) = E_Allocator_Type
978 and then Is_Access_Type (T1)
979 then
980 return Covers (Designated_Type (T1), Designated_Type (T2))
981 or else
982 (From_With_Type (Designated_Type (T1))
983 and then Covers (Designated_Type (T2), Designated_Type (T1)));
985 -- A boolean operation on integer literals is compatible with modular
986 -- context.
988 elsif T2 = Any_Modular
989 and then Is_Modular_Integer_Type (T1)
990 then
991 return True;
993 -- The actual type may be the result of a previous error
995 elsif Base_Type (T2) = Any_Type then
996 return True;
998 -- A packed array type covers its corresponding non-packed type. This is
999 -- not legitimate Ada, but allows the omission of a number of otherwise
1000 -- useless unchecked conversions, and since this can only arise in
1001 -- (known correct) expanded code, no harm is done
1003 elsif Is_Array_Type (T2)
1004 and then Is_Packed (T2)
1005 and then T1 = Packed_Array_Type (T2)
1006 then
1007 return True;
1009 -- Similarly an array type covers its corresponding packed array type
1011 elsif Is_Array_Type (T1)
1012 and then Is_Packed (T1)
1013 and then T2 = Packed_Array_Type (T1)
1014 then
1015 return True;
1017 -- In instances, or with types exported from instantiations, check
1018 -- whether a partial and a full view match. Verify that types are
1019 -- legal, to prevent cascaded errors.
1021 elsif In_Instance
1022 and then
1023 (Full_View_Covers (T1, T2)
1024 or else Full_View_Covers (T2, T1))
1025 then
1026 return True;
1028 elsif Is_Type (T2)
1029 and then Is_Generic_Actual_Type (T2)
1030 and then Full_View_Covers (T1, T2)
1031 then
1032 return True;
1034 elsif Is_Type (T1)
1035 and then Is_Generic_Actual_Type (T1)
1036 and then Full_View_Covers (T2, T1)
1037 then
1038 return True;
1040 -- In the expansion of inlined bodies, types are compatible if they
1041 -- are structurally equivalent.
1043 elsif In_Inlined_Body
1044 and then (Underlying_Type (T1) = Underlying_Type (T2)
1045 or else (Is_Access_Type (T1)
1046 and then Is_Access_Type (T2)
1047 and then
1048 Designated_Type (T1) = Designated_Type (T2))
1049 or else (T1 = Any_Access
1050 and then Is_Access_Type (Underlying_Type (T2)))
1051 or else (T2 = Any_Composite
1052 and then
1053 Is_Composite_Type (Underlying_Type (T1))))
1054 then
1055 return True;
1057 -- Ada 2005 (AI-50217): Additional branches to make the shadow entity
1058 -- compatible with its real entity.
1060 elsif From_With_Type (T1) then
1062 -- If the expected type is the non-limited view of a type, the
1063 -- expression may have the limited view. If that one in turn is
1064 -- incomplete, get full view if available.
1066 if Is_Incomplete_Type (T1) then
1067 return Covers (Get_Full_View (Non_Limited_View (T1)), T2);
1069 elsif Ekind (T1) = E_Class_Wide_Type then
1070 return
1071 Covers (Class_Wide_Type (Non_Limited_View (Etype (T1))), T2);
1072 else
1073 return False;
1074 end if;
1076 elsif From_With_Type (T2) then
1078 -- If units in the context have Limited_With clauses on each other,
1079 -- either type might have a limited view. Checks performed elsewhere
1080 -- verify that the context type is the non-limited view.
1082 if Is_Incomplete_Type (T2) then
1083 return Covers (T1, Get_Full_View (Non_Limited_View (T2)));
1085 elsif Ekind (T2) = E_Class_Wide_Type then
1086 return
1087 Present (Non_Limited_View (Etype (T2)))
1088 and then
1089 Covers (T1, Class_Wide_Type (Non_Limited_View (Etype (T2))));
1090 else
1091 return False;
1092 end if;
1094 -- Ada 2005 (AI-412): Coverage for regular incomplete subtypes
1096 elsif Ekind (T1) = E_Incomplete_Subtype then
1097 return Covers (Full_View (Etype (T1)), T2);
1099 elsif Ekind (T2) = E_Incomplete_Subtype then
1100 return Covers (T1, Full_View (Etype (T2)));
1102 -- Ada 2005 (AI-423): Coverage of formal anonymous access types
1103 -- and actual anonymous access types in the context of generic
1104 -- instantiation. We have the following situation:
1106 -- generic
1107 -- type Formal is private;
1108 -- Formal_Obj : access Formal; -- T1
1109 -- package G is ...
1111 -- package P is
1112 -- type Actual is ...
1113 -- Actual_Obj : access Actual; -- T2
1114 -- package Instance is new G (Formal => Actual,
1115 -- Formal_Obj => Actual_Obj);
1117 elsif Ada_Version >= Ada_05
1118 and then Ekind (T1) = E_Anonymous_Access_Type
1119 and then Ekind (T2) = E_Anonymous_Access_Type
1120 and then Is_Generic_Type (Directly_Designated_Type (T1))
1121 and then Get_Instance_Of (Directly_Designated_Type (T1)) =
1122 Directly_Designated_Type (T2)
1123 then
1124 return True;
1126 -- Otherwise it doesn't cover!
1128 else
1129 return False;
1130 end if;
1131 end Covers;
1133 ------------------
1134 -- Disambiguate --
1135 ------------------
1137 function Disambiguate
1138 (N : Node_Id;
1139 I1, I2 : Interp_Index;
1140 Typ : Entity_Id)
1141 return Interp
1143 I : Interp_Index;
1144 It : Interp;
1145 It1, It2 : Interp;
1146 Nam1, Nam2 : Entity_Id;
1147 Predef_Subp : Entity_Id;
1148 User_Subp : Entity_Id;
1150 function Inherited_From_Actual (S : Entity_Id) return Boolean;
1151 -- Determine whether one of the candidates is an operation inherited by
1152 -- a type that is derived from an actual in an instantiation.
1154 function In_Generic_Actual (Exp : Node_Id) return Boolean;
1155 -- Determine whether the expression is part of a generic actual. At
1156 -- the time the actual is resolved the scope is already that of the
1157 -- instance, but conceptually the resolution of the actual takes place
1158 -- in the enclosing context, and no special disambiguation rules should
1159 -- be applied.
1161 function Is_Actual_Subprogram (S : Entity_Id) return Boolean;
1162 -- Determine whether a subprogram is an actual in an enclosing instance.
1163 -- An overloading between such a subprogram and one declared outside the
1164 -- instance is resolved in favor of the first, because it resolved in
1165 -- the generic.
1167 function Matches (Actual, Formal : Node_Id) return Boolean;
1168 -- Look for exact type match in an instance, to remove spurious
1169 -- ambiguities when two formal types have the same actual.
1171 function Standard_Operator return Boolean;
1172 -- Check whether subprogram is predefined operator declared in Standard.
1173 -- It may given by an operator name, or by an expanded name whose prefix
1174 -- is Standard.
1176 function Remove_Conversions return Interp;
1177 -- Last chance for pathological cases involving comparisons on literals,
1178 -- and user overloadings of the same operator. Such pathologies have
1179 -- been removed from the ACVC, but still appear in two DEC tests, with
1180 -- the following notable quote from Ben Brosgol:
1182 -- [Note: I disclaim all credit/responsibility/blame for coming up with
1183 -- this example; Robert Dewar brought it to our attention, since it is
1184 -- apparently found in the ACVC 1.5. I did not attempt to find the
1185 -- reason in the Reference Manual that makes the example legal, since I
1186 -- was too nauseated by it to want to pursue it further.]
1188 -- Accordingly, this is not a fully recursive solution, but it handles
1189 -- DEC tests c460vsa, c460vsb. It also handles ai00136a, which pushes
1190 -- pathology in the other direction with calls whose multiple overloaded
1191 -- actuals make them truly unresolvable.
1193 -- The new rules concerning abstract operations create additional need
1194 -- for special handling of expressions with universal operands, see
1195 -- comments to Has_Abstract_Interpretation below.
1197 ------------------------
1198 -- In_Generic_Actual --
1199 ------------------------
1201 function In_Generic_Actual (Exp : Node_Id) return Boolean is
1202 Par : constant Node_Id := Parent (Exp);
1204 begin
1205 if No (Par) then
1206 return False;
1208 elsif Nkind (Par) in N_Declaration then
1209 if Nkind (Par) = N_Object_Declaration
1210 or else Nkind (Par) = N_Object_Renaming_Declaration
1211 then
1212 return Present (Corresponding_Generic_Association (Par));
1213 else
1214 return False;
1215 end if;
1217 elsif Nkind (Par) in N_Statement_Other_Than_Procedure_Call then
1218 return False;
1220 else
1221 return In_Generic_Actual (Parent (Par));
1222 end if;
1223 end In_Generic_Actual;
1225 ---------------------------
1226 -- Inherited_From_Actual --
1227 ---------------------------
1229 function Inherited_From_Actual (S : Entity_Id) return Boolean is
1230 Par : constant Node_Id := Parent (S);
1231 begin
1232 if Nkind (Par) /= N_Full_Type_Declaration
1233 or else Nkind (Type_Definition (Par)) /= N_Derived_Type_Definition
1234 then
1235 return False;
1236 else
1237 return Is_Entity_Name (Subtype_Indication (Type_Definition (Par)))
1238 and then
1239 Is_Generic_Actual_Type (
1240 Entity (Subtype_Indication (Type_Definition (Par))));
1241 end if;
1242 end Inherited_From_Actual;
1244 --------------------------
1245 -- Is_Actual_Subprogram --
1246 --------------------------
1248 function Is_Actual_Subprogram (S : Entity_Id) return Boolean is
1249 begin
1250 return In_Open_Scopes (Scope (S))
1251 and then
1252 (Is_Generic_Instance (Scope (S))
1253 or else Is_Wrapper_Package (Scope (S)));
1254 end Is_Actual_Subprogram;
1256 -------------
1257 -- Matches --
1258 -------------
1260 function Matches (Actual, Formal : Node_Id) return Boolean is
1261 T1 : constant Entity_Id := Etype (Actual);
1262 T2 : constant Entity_Id := Etype (Formal);
1263 begin
1264 return T1 = T2
1265 or else
1266 (Is_Numeric_Type (T2)
1267 and then
1268 (T1 = Universal_Real or else T1 = Universal_Integer));
1269 end Matches;
1271 ------------------------
1272 -- Remove_Conversions --
1273 ------------------------
1275 function Remove_Conversions return Interp is
1276 I : Interp_Index;
1277 It : Interp;
1278 It1 : Interp;
1279 F1 : Entity_Id;
1280 Act1 : Node_Id;
1281 Act2 : Node_Id;
1283 function Has_Abstract_Interpretation (N : Node_Id) return Boolean;
1284 -- If an operation has universal operands the universal operation
1285 -- is present among its interpretations. If there is an abstract
1286 -- interpretation for the operator, with a numeric result, this
1287 -- interpretation was already removed in sem_ch4, but the universal
1288 -- one is still visible. We must rescan the list of operators and
1289 -- remove the universal interpretation to resolve the ambiguity.
1291 ---------------------------------
1292 -- Has_Abstract_Interpretation --
1293 ---------------------------------
1295 function Has_Abstract_Interpretation (N : Node_Id) return Boolean is
1296 E : Entity_Id;
1298 begin
1299 if Nkind (N) not in N_Op
1300 or else Ada_Version < Ada_05
1301 or else not Is_Overloaded (N)
1302 or else No (Universal_Interpretation (N))
1303 then
1304 return False;
1306 else
1307 E := Get_Name_Entity_Id (Chars (N));
1308 while Present (E) loop
1309 if Is_Overloadable (E)
1310 and then Is_Abstract_Subprogram (E)
1311 and then Is_Numeric_Type (Etype (E))
1312 then
1313 return True;
1314 else
1315 E := Homonym (E);
1316 end if;
1317 end loop;
1319 -- Finally, if an operand of the binary operator is itself
1320 -- an operator, recurse to see whether its own abstract
1321 -- interpretation is responsible for the spurious ambiguity.
1323 if Nkind (N) in N_Binary_Op then
1324 return Has_Abstract_Interpretation (Left_Opnd (N))
1325 or else Has_Abstract_Interpretation (Right_Opnd (N));
1327 elsif Nkind (N) in N_Unary_Op then
1328 return Has_Abstract_Interpretation (Right_Opnd (N));
1330 else
1331 return False;
1332 end if;
1333 end if;
1334 end Has_Abstract_Interpretation;
1336 -- Start of processing for Remove_Conversions
1338 begin
1339 It1 := No_Interp;
1341 Get_First_Interp (N, I, It);
1342 while Present (It.Typ) loop
1343 if not Is_Overloadable (It.Nam) then
1344 return No_Interp;
1345 end if;
1347 F1 := First_Formal (It.Nam);
1349 if No (F1) then
1350 return It1;
1352 else
1353 if Nkind (N) = N_Function_Call
1354 or else Nkind (N) = N_Procedure_Call_Statement
1355 then
1356 Act1 := First_Actual (N);
1358 if Present (Act1) then
1359 Act2 := Next_Actual (Act1);
1360 else
1361 Act2 := Empty;
1362 end if;
1364 elsif Nkind (N) in N_Unary_Op then
1365 Act1 := Right_Opnd (N);
1366 Act2 := Empty;
1368 elsif Nkind (N) in N_Binary_Op then
1369 Act1 := Left_Opnd (N);
1370 Act2 := Right_Opnd (N);
1372 -- Use type of second formal, so as to include
1373 -- exponentiation, where the exponent may be
1374 -- ambiguous and the result non-universal.
1376 Next_Formal (F1);
1378 else
1379 return It1;
1380 end if;
1382 if Nkind (Act1) in N_Op
1383 and then Is_Overloaded (Act1)
1384 and then (Nkind (Right_Opnd (Act1)) = N_Integer_Literal
1385 or else Nkind (Right_Opnd (Act1)) = N_Real_Literal)
1386 and then Has_Compatible_Type (Act1, Standard_Boolean)
1387 and then Etype (F1) = Standard_Boolean
1388 then
1389 -- If the two candidates are the original ones, the
1390 -- ambiguity is real. Otherwise keep the original, further
1391 -- calls to Disambiguate will take care of others in the
1392 -- list of candidates.
1394 if It1 /= No_Interp then
1395 if It = Disambiguate.It1
1396 or else It = Disambiguate.It2
1397 then
1398 if It1 = Disambiguate.It1
1399 or else It1 = Disambiguate.It2
1400 then
1401 return No_Interp;
1402 else
1403 It1 := It;
1404 end if;
1405 end if;
1407 elsif Present (Act2)
1408 and then Nkind (Act2) in N_Op
1409 and then Is_Overloaded (Act2)
1410 and then (Nkind (Right_Opnd (Act2)) = N_Integer_Literal
1411 or else
1412 Nkind (Right_Opnd (Act2)) = N_Real_Literal)
1413 and then Has_Compatible_Type (Act2, Standard_Boolean)
1414 then
1415 -- The preference rule on the first actual is not
1416 -- sufficient to disambiguate.
1418 goto Next_Interp;
1420 else
1421 It1 := It;
1422 end if;
1424 elsif Is_Numeric_Type (Etype (F1))
1425 and then
1426 (Has_Abstract_Interpretation (Act1)
1427 or else Has_Abstract_Interpretation (Act2))
1428 then
1429 if It = Disambiguate.It1 then
1430 return Disambiguate.It2;
1431 elsif It = Disambiguate.It2 then
1432 return Disambiguate.It1;
1433 end if;
1434 end if;
1435 end if;
1437 <<Next_Interp>>
1438 Get_Next_Interp (I, It);
1439 end loop;
1441 -- After some error, a formal may have Any_Type and yield a spurious
1442 -- match. To avoid cascaded errors if possible, check for such a
1443 -- formal in either candidate.
1445 if Serious_Errors_Detected > 0 then
1446 declare
1447 Formal : Entity_Id;
1449 begin
1450 Formal := First_Formal (Nam1);
1451 while Present (Formal) loop
1452 if Etype (Formal) = Any_Type then
1453 return Disambiguate.It2;
1454 end if;
1456 Next_Formal (Formal);
1457 end loop;
1459 Formal := First_Formal (Nam2);
1460 while Present (Formal) loop
1461 if Etype (Formal) = Any_Type then
1462 return Disambiguate.It1;
1463 end if;
1465 Next_Formal (Formal);
1466 end loop;
1467 end;
1468 end if;
1470 return It1;
1471 end Remove_Conversions;
1473 -----------------------
1474 -- Standard_Operator --
1475 -----------------------
1477 function Standard_Operator return Boolean is
1478 Nam : Node_Id;
1480 begin
1481 if Nkind (N) in N_Op then
1482 return True;
1484 elsif Nkind (N) = N_Function_Call then
1485 Nam := Name (N);
1487 if Nkind (Nam) /= N_Expanded_Name then
1488 return True;
1489 else
1490 return Entity (Prefix (Nam)) = Standard_Standard;
1491 end if;
1492 else
1493 return False;
1494 end if;
1495 end Standard_Operator;
1497 -- Start of processing for Disambiguate
1499 begin
1500 -- Recover the two legal interpretations
1502 Get_First_Interp (N, I, It);
1503 while I /= I1 loop
1504 Get_Next_Interp (I, It);
1505 end loop;
1507 It1 := It;
1508 Nam1 := It.Nam;
1509 while I /= I2 loop
1510 Get_Next_Interp (I, It);
1511 end loop;
1513 It2 := It;
1514 Nam2 := It.Nam;
1516 if Ada_Version < Ada_05 then
1518 -- Check whether one of the entities is an Ada 2005 entity and we are
1519 -- operating in an earlier mode, in which case we discard the Ada
1520 -- 2005 entity, so that we get proper Ada 95 overload resolution.
1522 if Is_Ada_2005_Only (Nam1) then
1523 return It2;
1524 elsif Is_Ada_2005_Only (Nam2) then
1525 return It1;
1526 end if;
1527 end if;
1529 -- Check for overloaded CIL convention stuff because the CIL libraries
1530 -- do sick things like Console.Write_Line where it matches two different
1531 -- overloads, so just pick the first ???
1533 if Convention (Nam1) = Convention_CIL
1534 and then Convention (Nam2) = Convention_CIL
1535 and then Ekind (Nam1) = Ekind (Nam2)
1536 and then (Ekind (Nam1) = E_Procedure
1537 or else Ekind (Nam1) = E_Function)
1538 then
1539 return It2;
1540 end if;
1542 -- If the context is universal, the predefined operator is preferred.
1543 -- This includes bounds in numeric type declarations, and expressions
1544 -- in type conversions. If no interpretation yields a universal type,
1545 -- then we must check whether the user-defined entity hides the prede-
1546 -- fined one.
1548 if Chars (Nam1) in Any_Operator_Name
1549 and then Standard_Operator
1550 then
1551 if Typ = Universal_Integer
1552 or else Typ = Universal_Real
1553 or else Typ = Any_Integer
1554 or else Typ = Any_Discrete
1555 or else Typ = Any_Real
1556 or else Typ = Any_Type
1557 then
1558 -- Find an interpretation that yields the universal type, or else
1559 -- a predefined operator that yields a predefined numeric type.
1561 declare
1562 Candidate : Interp := No_Interp;
1564 begin
1565 Get_First_Interp (N, I, It);
1566 while Present (It.Typ) loop
1567 if (Covers (Typ, It.Typ)
1568 or else Typ = Any_Type)
1569 and then
1570 (It.Typ = Universal_Integer
1571 or else It.Typ = Universal_Real)
1572 then
1573 return It;
1575 elsif Covers (Typ, It.Typ)
1576 and then Scope (It.Typ) = Standard_Standard
1577 and then Scope (It.Nam) = Standard_Standard
1578 and then Is_Numeric_Type (It.Typ)
1579 then
1580 Candidate := It;
1581 end if;
1583 Get_Next_Interp (I, It);
1584 end loop;
1586 if Candidate /= No_Interp then
1587 return Candidate;
1588 end if;
1589 end;
1591 elsif Chars (Nam1) /= Name_Op_Not
1592 and then (Typ = Standard_Boolean or else Typ = Any_Boolean)
1593 then
1594 -- Equality or comparison operation. Choose predefined operator if
1595 -- arguments are universal. The node may be an operator, name, or
1596 -- a function call, so unpack arguments accordingly.
1598 declare
1599 Arg1, Arg2 : Node_Id;
1601 begin
1602 if Nkind (N) in N_Op then
1603 Arg1 := Left_Opnd (N);
1604 Arg2 := Right_Opnd (N);
1606 elsif Is_Entity_Name (N)
1607 or else Nkind (N) = N_Operator_Symbol
1608 then
1609 Arg1 := First_Entity (Entity (N));
1610 Arg2 := Next_Entity (Arg1);
1612 else
1613 Arg1 := First_Actual (N);
1614 Arg2 := Next_Actual (Arg1);
1615 end if;
1617 if Present (Arg2)
1618 and then Present (Universal_Interpretation (Arg1))
1619 and then Universal_Interpretation (Arg2) =
1620 Universal_Interpretation (Arg1)
1621 then
1622 Get_First_Interp (N, I, It);
1623 while Scope (It.Nam) /= Standard_Standard loop
1624 Get_Next_Interp (I, It);
1625 end loop;
1627 return It;
1628 end if;
1629 end;
1630 end if;
1631 end if;
1633 -- If no universal interpretation, check whether user-defined operator
1634 -- hides predefined one, as well as other special cases. If the node
1635 -- is a range, then one or both bounds are ambiguous. Each will have
1636 -- to be disambiguated w.r.t. the context type. The type of the range
1637 -- itself is imposed by the context, so we can return either legal
1638 -- interpretation.
1640 if Ekind (Nam1) = E_Operator then
1641 Predef_Subp := Nam1;
1642 User_Subp := Nam2;
1644 elsif Ekind (Nam2) = E_Operator then
1645 Predef_Subp := Nam2;
1646 User_Subp := Nam1;
1648 elsif Nkind (N) = N_Range then
1649 return It1;
1651 -- If two user defined-subprograms are visible, it is a true ambiguity,
1652 -- unless one of them is an entry and the context is a conditional or
1653 -- timed entry call, or unless we are within an instance and this is
1654 -- results from two formals types with the same actual.
1656 else
1657 if Nkind (N) = N_Procedure_Call_Statement
1658 and then Nkind (Parent (N)) = N_Entry_Call_Alternative
1659 and then N = Entry_Call_Statement (Parent (N))
1660 then
1661 if Ekind (Nam2) = E_Entry then
1662 return It2;
1663 elsif Ekind (Nam1) = E_Entry then
1664 return It1;
1665 else
1666 return No_Interp;
1667 end if;
1669 -- If the ambiguity occurs within an instance, it is due to several
1670 -- formal types with the same actual. Look for an exact match between
1671 -- the types of the formals of the overloadable entities, and the
1672 -- actuals in the call, to recover the unambiguous match in the
1673 -- original generic.
1675 -- The ambiguity can also be due to an overloading between a formal
1676 -- subprogram and a subprogram declared outside the generic. If the
1677 -- node is overloaded, it did not resolve to the global entity in
1678 -- the generic, and we choose the formal subprogram.
1680 -- Finally, the ambiguity can be between an explicit subprogram and
1681 -- one inherited (with different defaults) from an actual. In this
1682 -- case the resolution was to the explicit declaration in the
1683 -- generic, and remains so in the instance.
1685 elsif In_Instance
1686 and then not In_Generic_Actual (N)
1687 then
1688 if Nkind (N) = N_Function_Call
1689 or else Nkind (N) = N_Procedure_Call_Statement
1690 then
1691 declare
1692 Actual : Node_Id;
1693 Formal : Entity_Id;
1694 Is_Act1 : constant Boolean := Is_Actual_Subprogram (Nam1);
1695 Is_Act2 : constant Boolean := Is_Actual_Subprogram (Nam2);
1697 begin
1698 if Is_Act1 and then not Is_Act2 then
1699 return It1;
1701 elsif Is_Act2 and then not Is_Act1 then
1702 return It2;
1704 elsif Inherited_From_Actual (Nam1)
1705 and then Comes_From_Source (Nam2)
1706 then
1707 return It2;
1709 elsif Inherited_From_Actual (Nam2)
1710 and then Comes_From_Source (Nam1)
1711 then
1712 return It1;
1713 end if;
1715 Actual := First_Actual (N);
1716 Formal := First_Formal (Nam1);
1717 while Present (Actual) loop
1718 if Etype (Actual) /= Etype (Formal) then
1719 return It2;
1720 end if;
1722 Next_Actual (Actual);
1723 Next_Formal (Formal);
1724 end loop;
1726 return It1;
1727 end;
1729 elsif Nkind (N) in N_Binary_Op then
1730 if Matches (Left_Opnd (N), First_Formal (Nam1))
1731 and then
1732 Matches (Right_Opnd (N), Next_Formal (First_Formal (Nam1)))
1733 then
1734 return It1;
1735 else
1736 return It2;
1737 end if;
1739 elsif Nkind (N) in N_Unary_Op then
1740 if Etype (Right_Opnd (N)) = Etype (First_Formal (Nam1)) then
1741 return It1;
1742 else
1743 return It2;
1744 end if;
1746 else
1747 return Remove_Conversions;
1748 end if;
1749 else
1750 return Remove_Conversions;
1751 end if;
1752 end if;
1754 -- An implicit concatenation operator on a string type cannot be
1755 -- disambiguated from the predefined concatenation. This can only
1756 -- happen with concatenation of string literals.
1758 if Chars (User_Subp) = Name_Op_Concat
1759 and then Ekind (User_Subp) = E_Operator
1760 and then Is_String_Type (Etype (First_Formal (User_Subp)))
1761 then
1762 return No_Interp;
1764 -- If the user-defined operator is in an open scope, or in the scope
1765 -- of the resulting type, or given by an expanded name that names its
1766 -- scope, it hides the predefined operator for the type. Exponentiation
1767 -- has to be special-cased because the implicit operator does not have
1768 -- a symmetric signature, and may not be hidden by the explicit one.
1770 elsif (Nkind (N) = N_Function_Call
1771 and then Nkind (Name (N)) = N_Expanded_Name
1772 and then (Chars (Predef_Subp) /= Name_Op_Expon
1773 or else Hides_Op (User_Subp, Predef_Subp))
1774 and then Scope (User_Subp) = Entity (Prefix (Name (N))))
1775 or else Hides_Op (User_Subp, Predef_Subp)
1776 then
1777 if It1.Nam = User_Subp then
1778 return It1;
1779 else
1780 return It2;
1781 end if;
1783 -- Otherwise, the predefined operator has precedence, or if the user-
1784 -- defined operation is directly visible we have a true ambiguity. If
1785 -- this is a fixed-point multiplication and division in Ada83 mode,
1786 -- exclude the universal_fixed operator, which often causes ambiguities
1787 -- in legacy code.
1789 else
1790 if (In_Open_Scopes (Scope (User_Subp))
1791 or else Is_Potentially_Use_Visible (User_Subp))
1792 and then not In_Instance
1793 then
1794 if Is_Fixed_Point_Type (Typ)
1795 and then (Chars (Nam1) = Name_Op_Multiply
1796 or else Chars (Nam1) = Name_Op_Divide)
1797 and then Ada_Version = Ada_83
1798 then
1799 if It2.Nam = Predef_Subp then
1800 return It1;
1801 else
1802 return It2;
1803 end if;
1805 -- Ada 2005, AI-420: preference rule for "=" on Universal_Access
1806 -- states that the operator defined in Standard is not available
1807 -- if there is a user-defined equality with the proper signature,
1808 -- declared in the same declarative list as the type. The node
1809 -- may be an operator or a function call.
1811 elsif (Chars (Nam1) = Name_Op_Eq
1812 or else
1813 Chars (Nam1) = Name_Op_Ne)
1814 and then Ada_Version >= Ada_05
1815 and then Etype (User_Subp) = Standard_Boolean
1816 then
1817 declare
1818 Opnd : Node_Id;
1819 begin
1820 if Nkind (N) = N_Function_Call then
1821 Opnd := First_Actual (N);
1822 else
1823 Opnd := Left_Opnd (N);
1824 end if;
1826 if Ekind (Etype (Opnd)) = E_Anonymous_Access_Type
1827 and then
1828 List_Containing (Parent (Designated_Type (Etype (Opnd))))
1829 = List_Containing (Unit_Declaration_Node (User_Subp))
1830 then
1831 if It2.Nam = Predef_Subp then
1832 return It1;
1833 else
1834 return It2;
1835 end if;
1836 else
1837 return Remove_Conversions;
1838 end if;
1839 end;
1841 else
1842 return No_Interp;
1843 end if;
1845 elsif It1.Nam = Predef_Subp then
1846 return It1;
1848 else
1849 return It2;
1850 end if;
1851 end if;
1852 end Disambiguate;
1854 ---------------------
1855 -- End_Interp_List --
1856 ---------------------
1858 procedure End_Interp_List is
1859 begin
1860 All_Interp.Table (All_Interp.Last) := No_Interp;
1861 All_Interp.Increment_Last;
1862 end End_Interp_List;
1864 -------------------------
1865 -- Entity_Matches_Spec --
1866 -------------------------
1868 function Entity_Matches_Spec (Old_S, New_S : Entity_Id) return Boolean is
1869 begin
1870 -- Simple case: same entity kinds, type conformance is required. A
1871 -- parameterless function can also rename a literal.
1873 if Ekind (Old_S) = Ekind (New_S)
1874 or else (Ekind (New_S) = E_Function
1875 and then Ekind (Old_S) = E_Enumeration_Literal)
1876 then
1877 return Type_Conformant (New_S, Old_S);
1879 elsif Ekind (New_S) = E_Function
1880 and then Ekind (Old_S) = E_Operator
1881 then
1882 return Operator_Matches_Spec (Old_S, New_S);
1884 elsif Ekind (New_S) = E_Procedure
1885 and then Is_Entry (Old_S)
1886 then
1887 return Type_Conformant (New_S, Old_S);
1889 else
1890 return False;
1891 end if;
1892 end Entity_Matches_Spec;
1894 ----------------------
1895 -- Find_Unique_Type --
1896 ----------------------
1898 function Find_Unique_Type (L : Node_Id; R : Node_Id) return Entity_Id is
1899 T : constant Entity_Id := Etype (L);
1900 I : Interp_Index;
1901 It : Interp;
1902 TR : Entity_Id := Any_Type;
1904 begin
1905 if Is_Overloaded (R) then
1906 Get_First_Interp (R, I, It);
1907 while Present (It.Typ) loop
1908 if Covers (T, It.Typ) or else Covers (It.Typ, T) then
1910 -- If several interpretations are possible and L is universal,
1911 -- apply preference rule.
1913 if TR /= Any_Type then
1915 if (T = Universal_Integer or else T = Universal_Real)
1916 and then It.Typ = T
1917 then
1918 TR := It.Typ;
1919 end if;
1921 else
1922 TR := It.Typ;
1923 end if;
1924 end if;
1926 Get_Next_Interp (I, It);
1927 end loop;
1929 Set_Etype (R, TR);
1931 -- In the non-overloaded case, the Etype of R is already set correctly
1933 else
1934 null;
1935 end if;
1937 -- If one of the operands is Universal_Fixed, the type of the other
1938 -- operand provides the context.
1940 if Etype (R) = Universal_Fixed then
1941 return T;
1943 elsif T = Universal_Fixed then
1944 return Etype (R);
1946 -- Ada 2005 (AI-230): Support the following operators:
1948 -- function "=" (L, R : universal_access) return Boolean;
1949 -- function "/=" (L, R : universal_access) return Boolean;
1951 -- Pool specific access types (E_Access_Type) are not covered by these
1952 -- operators because of the legality rule of 4.5.2(9.2): "The operands
1953 -- of the equality operators for universal_access shall be convertible
1954 -- to one another (see 4.6)". For example, considering the type decla-
1955 -- ration "type P is access Integer" and an anonymous access to Integer,
1956 -- P is convertible to "access Integer" by 4.6 (24.11-24.15), but there
1957 -- is no rule in 4.6 that allows "access Integer" to be converted to P.
1959 elsif Ada_Version >= Ada_05
1960 and then
1961 (Ekind (Etype (L)) = E_Anonymous_Access_Type
1962 or else
1963 Ekind (Etype (L)) = E_Anonymous_Access_Subprogram_Type)
1964 and then Is_Access_Type (Etype (R))
1965 and then Ekind (Etype (R)) /= E_Access_Type
1966 then
1967 return Etype (L);
1969 elsif Ada_Version >= Ada_05
1970 and then
1971 (Ekind (Etype (R)) = E_Anonymous_Access_Type
1972 or else Ekind (Etype (R)) = E_Anonymous_Access_Subprogram_Type)
1973 and then Is_Access_Type (Etype (L))
1974 and then Ekind (Etype (L)) /= E_Access_Type
1975 then
1976 return Etype (R);
1978 else
1979 return Specific_Type (T, Etype (R));
1980 end if;
1981 end Find_Unique_Type;
1983 -------------------------------------
1984 -- Function_Interp_Has_Abstract_Op --
1985 -------------------------------------
1987 function Function_Interp_Has_Abstract_Op
1988 (N : Node_Id;
1989 E : Entity_Id) return Entity_Id
1991 Abstr_Op : Entity_Id;
1992 Act : Node_Id;
1993 Act_Parm : Node_Id;
1994 Form_Parm : Node_Id;
1996 begin
1997 -- Why is check on E needed below ???
1998 -- In any case this para needs comments ???
2000 if Is_Overloaded (N) and then Is_Overloadable (E) then
2001 Act_Parm := First_Actual (N);
2002 Form_Parm := First_Formal (E);
2003 while Present (Act_Parm)
2004 and then Present (Form_Parm)
2005 loop
2006 Act := Act_Parm;
2008 if Nkind (Act) = N_Parameter_Association then
2009 Act := Explicit_Actual_Parameter (Act);
2010 end if;
2012 Abstr_Op := Has_Abstract_Op (Act, Etype (Form_Parm));
2014 if Present (Abstr_Op) then
2015 return Abstr_Op;
2016 end if;
2018 Next_Actual (Act_Parm);
2019 Next_Formal (Form_Parm);
2020 end loop;
2021 end if;
2023 return Empty;
2024 end Function_Interp_Has_Abstract_Op;
2026 ----------------------
2027 -- Get_First_Interp --
2028 ----------------------
2030 procedure Get_First_Interp
2031 (N : Node_Id;
2032 I : out Interp_Index;
2033 It : out Interp)
2035 Int_Ind : Interp_Index;
2036 Map_Ptr : Int;
2037 O_N : Node_Id;
2039 begin
2040 -- If a selected component is overloaded because the selector has
2041 -- multiple interpretations, the node is a call to a protected
2042 -- operation or an indirect call. Retrieve the interpretation from
2043 -- the selector name. The selected component may be overloaded as well
2044 -- if the prefix is overloaded. That case is unchanged.
2046 if Nkind (N) = N_Selected_Component
2047 and then Is_Overloaded (Selector_Name (N))
2048 then
2049 O_N := Selector_Name (N);
2050 else
2051 O_N := N;
2052 end if;
2054 Map_Ptr := Headers (Hash (O_N));
2055 while Present (Interp_Map.Table (Map_Ptr).Node) loop
2056 if Interp_Map.Table (Map_Ptr).Node = O_N then
2057 Int_Ind := Interp_Map.Table (Map_Ptr).Index;
2058 It := All_Interp.Table (Int_Ind);
2059 I := Int_Ind;
2060 return;
2061 else
2062 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
2063 end if;
2064 end loop;
2066 -- Procedure should never be called if the node has no interpretations
2068 raise Program_Error;
2069 end Get_First_Interp;
2071 ---------------------
2072 -- Get_Next_Interp --
2073 ---------------------
2075 procedure Get_Next_Interp (I : in out Interp_Index; It : out Interp) is
2076 begin
2077 I := I + 1;
2078 It := All_Interp.Table (I);
2079 end Get_Next_Interp;
2081 -------------------------
2082 -- Has_Compatible_Type --
2083 -------------------------
2085 function Has_Compatible_Type
2086 (N : Node_Id;
2087 Typ : Entity_Id)
2088 return Boolean
2090 I : Interp_Index;
2091 It : Interp;
2093 begin
2094 if N = Error then
2095 return False;
2096 end if;
2098 if Nkind (N) = N_Subtype_Indication
2099 or else not Is_Overloaded (N)
2100 then
2101 return
2102 Covers (Typ, Etype (N))
2104 -- Ada 2005 (AI-345): The context may be a synchronized interface.
2105 -- If the type is already frozen use the corresponding_record
2106 -- to check whether it is a proper descendant.
2108 or else
2109 (Is_Record_Type (Typ)
2110 and then Is_Concurrent_Type (Etype (N))
2111 and then Present (Corresponding_Record_Type (Etype (N)))
2112 and then Covers (Typ, Corresponding_Record_Type (Etype (N))))
2114 or else
2115 (Is_Concurrent_Type (Typ)
2116 and then Is_Record_Type (Etype (N))
2117 and then Present (Corresponding_Record_Type (Typ))
2118 and then Covers (Corresponding_Record_Type (Typ), Etype (N)))
2120 or else
2121 (not Is_Tagged_Type (Typ)
2122 and then Ekind (Typ) /= E_Anonymous_Access_Type
2123 and then Covers (Etype (N), Typ));
2125 else
2126 Get_First_Interp (N, I, It);
2127 while Present (It.Typ) loop
2128 if (Covers (Typ, It.Typ)
2129 and then
2130 (Scope (It.Nam) /= Standard_Standard
2131 or else not Is_Invisible_Operator (N, Base_Type (Typ))))
2133 -- Ada 2005 (AI-345)
2135 or else
2136 (Is_Concurrent_Type (It.Typ)
2137 and then Present (Corresponding_Record_Type
2138 (Etype (It.Typ)))
2139 and then Covers (Typ, Corresponding_Record_Type
2140 (Etype (It.Typ))))
2142 or else (not Is_Tagged_Type (Typ)
2143 and then Ekind (Typ) /= E_Anonymous_Access_Type
2144 and then Covers (It.Typ, Typ))
2145 then
2146 return True;
2147 end if;
2149 Get_Next_Interp (I, It);
2150 end loop;
2152 return False;
2153 end if;
2154 end Has_Compatible_Type;
2156 ---------------------
2157 -- Has_Abstract_Op --
2158 ---------------------
2160 function Has_Abstract_Op
2161 (N : Node_Id;
2162 Typ : Entity_Id) return Entity_Id
2164 I : Interp_Index;
2165 It : Interp;
2167 begin
2168 if Is_Overloaded (N) then
2169 Get_First_Interp (N, I, It);
2170 while Present (It.Nam) loop
2171 if Present (It.Abstract_Op)
2172 and then Etype (It.Abstract_Op) = Typ
2173 then
2174 return It.Abstract_Op;
2175 end if;
2177 Get_Next_Interp (I, It);
2178 end loop;
2179 end if;
2181 return Empty;
2182 end Has_Abstract_Op;
2184 ----------
2185 -- Hash --
2186 ----------
2188 function Hash (N : Node_Id) return Int is
2189 begin
2190 -- Nodes have a size that is power of two, so to select significant
2191 -- bits only we remove the low-order bits.
2193 return ((Int (N) / 2 ** 5) mod Header_Size);
2194 end Hash;
2196 --------------
2197 -- Hides_Op --
2198 --------------
2200 function Hides_Op (F : Entity_Id; Op : Entity_Id) return Boolean is
2201 Btyp : constant Entity_Id := Base_Type (Etype (First_Formal (F)));
2202 begin
2203 return Operator_Matches_Spec (Op, F)
2204 and then (In_Open_Scopes (Scope (F))
2205 or else Scope (F) = Scope (Btyp)
2206 or else (not In_Open_Scopes (Scope (Btyp))
2207 and then not In_Use (Btyp)
2208 and then not In_Use (Scope (Btyp))));
2209 end Hides_Op;
2211 ------------------------
2212 -- Init_Interp_Tables --
2213 ------------------------
2215 procedure Init_Interp_Tables is
2216 begin
2217 All_Interp.Init;
2218 Interp_Map.Init;
2219 Headers := (others => No_Entry);
2220 end Init_Interp_Tables;
2222 -----------------------------------
2223 -- Interface_Present_In_Ancestor --
2224 -----------------------------------
2226 function Interface_Present_In_Ancestor
2227 (Typ : Entity_Id;
2228 Iface : Entity_Id) return Boolean
2230 Target_Typ : Entity_Id;
2231 Iface_Typ : Entity_Id;
2233 function Iface_Present_In_Ancestor (Typ : Entity_Id) return Boolean;
2234 -- Returns True if Typ or some ancestor of Typ implements Iface
2236 -------------------------------
2237 -- Iface_Present_In_Ancestor --
2238 -------------------------------
2240 function Iface_Present_In_Ancestor (Typ : Entity_Id) return Boolean is
2241 E : Entity_Id;
2242 AI : Entity_Id;
2243 Elmt : Elmt_Id;
2245 begin
2246 if Typ = Iface_Typ then
2247 return True;
2248 end if;
2250 -- Handle private types
2252 if Present (Full_View (Typ))
2253 and then not Is_Concurrent_Type (Full_View (Typ))
2254 then
2255 E := Full_View (Typ);
2256 else
2257 E := Typ;
2258 end if;
2260 loop
2261 if Present (Interfaces (E))
2262 and then Present (Interfaces (E))
2263 and then not Is_Empty_Elmt_List (Interfaces (E))
2264 then
2265 Elmt := First_Elmt (Interfaces (E));
2266 while Present (Elmt) loop
2267 AI := Node (Elmt);
2269 if AI = Iface_Typ or else Is_Ancestor (Iface_Typ, AI) then
2270 return True;
2271 end if;
2273 Next_Elmt (Elmt);
2274 end loop;
2275 end if;
2277 exit when Etype (E) = E
2279 -- Handle private types
2281 or else (Present (Full_View (Etype (E)))
2282 and then Full_View (Etype (E)) = E);
2284 -- Check if the current type is a direct derivation of the
2285 -- interface
2287 if Etype (E) = Iface_Typ then
2288 return True;
2289 end if;
2291 -- Climb to the immediate ancestor handling private types
2293 if Present (Full_View (Etype (E))) then
2294 E := Full_View (Etype (E));
2295 else
2296 E := Etype (E);
2297 end if;
2298 end loop;
2300 return False;
2301 end Iface_Present_In_Ancestor;
2303 -- Start of processing for Interface_Present_In_Ancestor
2305 begin
2306 if Is_Class_Wide_Type (Iface) then
2307 Iface_Typ := Etype (Iface);
2308 else
2309 Iface_Typ := Iface;
2310 end if;
2312 -- Handle subtypes
2314 Iface_Typ := Base_Type (Iface_Typ);
2316 if Is_Access_Type (Typ) then
2317 Target_Typ := Etype (Directly_Designated_Type (Typ));
2318 else
2319 Target_Typ := Typ;
2320 end if;
2322 if Is_Concurrent_Record_Type (Target_Typ) then
2323 Target_Typ := Corresponding_Concurrent_Type (Target_Typ);
2324 end if;
2326 Target_Typ := Base_Type (Target_Typ);
2328 -- In case of concurrent types we can't use the Corresponding Record_Typ
2329 -- to look for the interface because it is built by the expander (and
2330 -- hence it is not always available). For this reason we traverse the
2331 -- list of interfaces (available in the parent of the concurrent type)
2333 if Is_Concurrent_Type (Target_Typ) then
2334 if Present (Interface_List (Parent (Target_Typ))) then
2335 declare
2336 AI : Node_Id;
2338 begin
2339 AI := First (Interface_List (Parent (Target_Typ)));
2340 while Present (AI) loop
2341 if Etype (AI) = Iface_Typ then
2342 return True;
2344 elsif Present (Interfaces (Etype (AI)))
2345 and then Iface_Present_In_Ancestor (Etype (AI))
2346 then
2347 return True;
2348 end if;
2350 Next (AI);
2351 end loop;
2352 end;
2353 end if;
2355 return False;
2356 end if;
2358 if Is_Class_Wide_Type (Target_Typ) then
2359 Target_Typ := Etype (Target_Typ);
2360 end if;
2362 if Ekind (Target_Typ) = E_Incomplete_Type then
2363 pragma Assert (Present (Non_Limited_View (Target_Typ)));
2364 Target_Typ := Non_Limited_View (Target_Typ);
2366 -- Protect the frontend against previously detected errors
2368 if Ekind (Target_Typ) = E_Incomplete_Type then
2369 return False;
2370 end if;
2371 end if;
2373 return Iface_Present_In_Ancestor (Target_Typ);
2374 end Interface_Present_In_Ancestor;
2376 ---------------------
2377 -- Intersect_Types --
2378 ---------------------
2380 function Intersect_Types (L, R : Node_Id) return Entity_Id is
2381 Index : Interp_Index;
2382 It : Interp;
2383 Typ : Entity_Id;
2385 function Check_Right_Argument (T : Entity_Id) return Entity_Id;
2386 -- Find interpretation of right arg that has type compatible with T
2388 --------------------------
2389 -- Check_Right_Argument --
2390 --------------------------
2392 function Check_Right_Argument (T : Entity_Id) return Entity_Id is
2393 Index : Interp_Index;
2394 It : Interp;
2395 T2 : Entity_Id;
2397 begin
2398 if not Is_Overloaded (R) then
2399 return Specific_Type (T, Etype (R));
2401 else
2402 Get_First_Interp (R, Index, It);
2403 loop
2404 T2 := Specific_Type (T, It.Typ);
2406 if T2 /= Any_Type then
2407 return T2;
2408 end if;
2410 Get_Next_Interp (Index, It);
2411 exit when No (It.Typ);
2412 end loop;
2414 return Any_Type;
2415 end if;
2416 end Check_Right_Argument;
2418 -- Start processing for Intersect_Types
2420 begin
2421 if Etype (L) = Any_Type or else Etype (R) = Any_Type then
2422 return Any_Type;
2423 end if;
2425 if not Is_Overloaded (L) then
2426 Typ := Check_Right_Argument (Etype (L));
2428 else
2429 Typ := Any_Type;
2430 Get_First_Interp (L, Index, It);
2431 while Present (It.Typ) loop
2432 Typ := Check_Right_Argument (It.Typ);
2433 exit when Typ /= Any_Type;
2434 Get_Next_Interp (Index, It);
2435 end loop;
2437 end if;
2439 -- If Typ is Any_Type, it means no compatible pair of types was found
2441 if Typ = Any_Type then
2442 if Nkind (Parent (L)) in N_Op then
2443 Error_Msg_N ("incompatible types for operator", Parent (L));
2445 elsif Nkind (Parent (L)) = N_Range then
2446 Error_Msg_N ("incompatible types given in constraint", Parent (L));
2448 -- Ada 2005 (AI-251): Complete the error notification
2450 elsif Is_Class_Wide_Type (Etype (R))
2451 and then Is_Interface (Etype (Class_Wide_Type (Etype (R))))
2452 then
2453 Error_Msg_NE ("(Ada 2005) does not implement interface }",
2454 L, Etype (Class_Wide_Type (Etype (R))));
2456 else
2457 Error_Msg_N ("incompatible types", Parent (L));
2458 end if;
2459 end if;
2461 return Typ;
2462 end Intersect_Types;
2464 -----------------
2465 -- Is_Ancestor --
2466 -----------------
2468 function Is_Ancestor (T1, T2 : Entity_Id) return Boolean is
2469 Par : Entity_Id;
2471 begin
2472 if Base_Type (T1) = Base_Type (T2) then
2473 return True;
2475 elsif Is_Private_Type (T1)
2476 and then Present (Full_View (T1))
2477 and then Base_Type (T2) = Base_Type (Full_View (T1))
2478 then
2479 return True;
2481 else
2482 Par := Etype (T2);
2484 loop
2485 -- If there was a error on the type declaration, do not recurse
2487 if Error_Posted (Par) then
2488 return False;
2490 elsif Base_Type (T1) = Base_Type (Par)
2491 or else (Is_Private_Type (T1)
2492 and then Present (Full_View (T1))
2493 and then Base_Type (Par) = Base_Type (Full_View (T1)))
2494 then
2495 return True;
2497 elsif Is_Private_Type (Par)
2498 and then Present (Full_View (Par))
2499 and then Full_View (Par) = Base_Type (T1)
2500 then
2501 return True;
2503 elsif Etype (Par) /= Par then
2504 Par := Etype (Par);
2505 else
2506 return False;
2507 end if;
2508 end loop;
2509 end if;
2510 end Is_Ancestor;
2512 ---------------------------
2513 -- Is_Invisible_Operator --
2514 ---------------------------
2516 function Is_Invisible_Operator
2517 (N : Node_Id;
2518 T : Entity_Id)
2519 return Boolean
2521 Orig_Node : constant Node_Id := Original_Node (N);
2523 begin
2524 if Nkind (N) not in N_Op then
2525 return False;
2527 elsif not Comes_From_Source (N) then
2528 return False;
2530 elsif No (Universal_Interpretation (Right_Opnd (N))) then
2531 return False;
2533 elsif Nkind (N) in N_Binary_Op
2534 and then No (Universal_Interpretation (Left_Opnd (N)))
2535 then
2536 return False;
2538 else
2539 return Is_Numeric_Type (T)
2540 and then not In_Open_Scopes (Scope (T))
2541 and then not Is_Potentially_Use_Visible (T)
2542 and then not In_Use (T)
2543 and then not In_Use (Scope (T))
2544 and then
2545 (Nkind (Orig_Node) /= N_Function_Call
2546 or else Nkind (Name (Orig_Node)) /= N_Expanded_Name
2547 or else Entity (Prefix (Name (Orig_Node))) /= Scope (T))
2548 and then not In_Instance;
2549 end if;
2550 end Is_Invisible_Operator;
2552 -------------------
2553 -- Is_Subtype_Of --
2554 -------------------
2556 function Is_Subtype_Of (T1 : Entity_Id; T2 : Entity_Id) return Boolean is
2557 S : Entity_Id;
2559 begin
2560 S := Ancestor_Subtype (T1);
2561 while Present (S) loop
2562 if S = T2 then
2563 return True;
2564 else
2565 S := Ancestor_Subtype (S);
2566 end if;
2567 end loop;
2569 return False;
2570 end Is_Subtype_Of;
2572 ------------------
2573 -- List_Interps --
2574 ------------------
2576 procedure List_Interps (Nam : Node_Id; Err : Node_Id) is
2577 Index : Interp_Index;
2578 It : Interp;
2580 begin
2581 Get_First_Interp (Nam, Index, It);
2582 while Present (It.Nam) loop
2583 if Scope (It.Nam) = Standard_Standard
2584 and then Scope (It.Typ) /= Standard_Standard
2585 then
2586 Error_Msg_Sloc := Sloc (Parent (It.Typ));
2587 Error_Msg_NE ("\\& (inherited) declared#!", Err, It.Nam);
2589 else
2590 Error_Msg_Sloc := Sloc (It.Nam);
2591 Error_Msg_NE ("\\& declared#!", Err, It.Nam);
2592 end if;
2594 Get_Next_Interp (Index, It);
2595 end loop;
2596 end List_Interps;
2598 -----------------
2599 -- New_Interps --
2600 -----------------
2602 procedure New_Interps (N : Node_Id) is
2603 Map_Ptr : Int;
2605 begin
2606 All_Interp.Increment_Last;
2607 All_Interp.Table (All_Interp.Last) := No_Interp;
2609 Map_Ptr := Headers (Hash (N));
2611 if Map_Ptr = No_Entry then
2613 -- Place new node at end of table
2615 Interp_Map.Increment_Last;
2616 Headers (Hash (N)) := Interp_Map.Last;
2618 else
2619 -- Place node at end of chain, or locate its previous entry
2621 loop
2622 if Interp_Map.Table (Map_Ptr).Node = N then
2624 -- Node is already in the table, and is being rewritten.
2625 -- Start a new interp section, retain hash link.
2627 Interp_Map.Table (Map_Ptr).Node := N;
2628 Interp_Map.Table (Map_Ptr).Index := All_Interp.Last;
2629 Set_Is_Overloaded (N, True);
2630 return;
2632 else
2633 exit when Interp_Map.Table (Map_Ptr).Next = No_Entry;
2634 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
2635 end if;
2636 end loop;
2638 -- Chain the new node
2640 Interp_Map.Increment_Last;
2641 Interp_Map.Table (Map_Ptr).Next := Interp_Map.Last;
2642 end if;
2644 Interp_Map.Table (Interp_Map.Last) := (N, All_Interp.Last, No_Entry);
2645 Set_Is_Overloaded (N, True);
2646 end New_Interps;
2648 ---------------------------
2649 -- Operator_Matches_Spec --
2650 ---------------------------
2652 function Operator_Matches_Spec (Op, New_S : Entity_Id) return Boolean is
2653 Op_Name : constant Name_Id := Chars (Op);
2654 T : constant Entity_Id := Etype (New_S);
2655 New_F : Entity_Id;
2656 Old_F : Entity_Id;
2657 Num : Int;
2658 T1 : Entity_Id;
2659 T2 : Entity_Id;
2661 begin
2662 -- To verify that a predefined operator matches a given signature,
2663 -- do a case analysis of the operator classes. Function can have one
2664 -- or two formals and must have the proper result type.
2666 New_F := First_Formal (New_S);
2667 Old_F := First_Formal (Op);
2668 Num := 0;
2669 while Present (New_F) and then Present (Old_F) loop
2670 Num := Num + 1;
2671 Next_Formal (New_F);
2672 Next_Formal (Old_F);
2673 end loop;
2675 -- Definite mismatch if different number of parameters
2677 if Present (Old_F) or else Present (New_F) then
2678 return False;
2680 -- Unary operators
2682 elsif Num = 1 then
2683 T1 := Etype (First_Formal (New_S));
2685 if Op_Name = Name_Op_Subtract
2686 or else Op_Name = Name_Op_Add
2687 or else Op_Name = Name_Op_Abs
2688 then
2689 return Base_Type (T1) = Base_Type (T)
2690 and then Is_Numeric_Type (T);
2692 elsif Op_Name = Name_Op_Not then
2693 return Base_Type (T1) = Base_Type (T)
2694 and then Valid_Boolean_Arg (Base_Type (T));
2696 else
2697 return False;
2698 end if;
2700 -- Binary operators
2702 else
2703 T1 := Etype (First_Formal (New_S));
2704 T2 := Etype (Next_Formal (First_Formal (New_S)));
2706 if Op_Name = Name_Op_And or else Op_Name = Name_Op_Or
2707 or else Op_Name = Name_Op_Xor
2708 then
2709 return Base_Type (T1) = Base_Type (T2)
2710 and then Base_Type (T1) = Base_Type (T)
2711 and then Valid_Boolean_Arg (Base_Type (T));
2713 elsif Op_Name = Name_Op_Eq or else Op_Name = Name_Op_Ne then
2714 return Base_Type (T1) = Base_Type (T2)
2715 and then not Is_Limited_Type (T1)
2716 and then Is_Boolean_Type (T);
2718 elsif Op_Name = Name_Op_Lt or else Op_Name = Name_Op_Le
2719 or else Op_Name = Name_Op_Gt or else Op_Name = Name_Op_Ge
2720 then
2721 return Base_Type (T1) = Base_Type (T2)
2722 and then Valid_Comparison_Arg (T1)
2723 and then Is_Boolean_Type (T);
2725 elsif Op_Name = Name_Op_Add or else Op_Name = Name_Op_Subtract then
2726 return Base_Type (T1) = Base_Type (T2)
2727 and then Base_Type (T1) = Base_Type (T)
2728 and then Is_Numeric_Type (T);
2730 -- for division and multiplication, a user-defined function does
2731 -- not match the predefined universal_fixed operation, except in
2732 -- Ada83 mode.
2734 elsif Op_Name = Name_Op_Divide then
2735 return (Base_Type (T1) = Base_Type (T2)
2736 and then Base_Type (T1) = Base_Type (T)
2737 and then Is_Numeric_Type (T)
2738 and then (not Is_Fixed_Point_Type (T)
2739 or else Ada_Version = Ada_83))
2741 -- Mixed_Mode operations on fixed-point types
2743 or else (Base_Type (T1) = Base_Type (T)
2744 and then Base_Type (T2) = Base_Type (Standard_Integer)
2745 and then Is_Fixed_Point_Type (T))
2747 -- A user defined operator can also match (and hide) a mixed
2748 -- operation on universal literals.
2750 or else (Is_Integer_Type (T2)
2751 and then Is_Floating_Point_Type (T1)
2752 and then Base_Type (T1) = Base_Type (T));
2754 elsif Op_Name = Name_Op_Multiply then
2755 return (Base_Type (T1) = Base_Type (T2)
2756 and then Base_Type (T1) = Base_Type (T)
2757 and then Is_Numeric_Type (T)
2758 and then (not Is_Fixed_Point_Type (T)
2759 or else Ada_Version = Ada_83))
2761 -- Mixed_Mode operations on fixed-point types
2763 or else (Base_Type (T1) = Base_Type (T)
2764 and then Base_Type (T2) = Base_Type (Standard_Integer)
2765 and then Is_Fixed_Point_Type (T))
2767 or else (Base_Type (T2) = Base_Type (T)
2768 and then Base_Type (T1) = Base_Type (Standard_Integer)
2769 and then Is_Fixed_Point_Type (T))
2771 or else (Is_Integer_Type (T2)
2772 and then Is_Floating_Point_Type (T1)
2773 and then Base_Type (T1) = Base_Type (T))
2775 or else (Is_Integer_Type (T1)
2776 and then Is_Floating_Point_Type (T2)
2777 and then Base_Type (T2) = Base_Type (T));
2779 elsif Op_Name = Name_Op_Mod or else Op_Name = Name_Op_Rem then
2780 return Base_Type (T1) = Base_Type (T2)
2781 and then Base_Type (T1) = Base_Type (T)
2782 and then Is_Integer_Type (T);
2784 elsif Op_Name = Name_Op_Expon then
2785 return Base_Type (T1) = Base_Type (T)
2786 and then Is_Numeric_Type (T)
2787 and then Base_Type (T2) = Base_Type (Standard_Integer);
2789 elsif Op_Name = Name_Op_Concat then
2790 return Is_Array_Type (T)
2791 and then (Base_Type (T) = Base_Type (Etype (Op)))
2792 and then (Base_Type (T1) = Base_Type (T)
2793 or else
2794 Base_Type (T1) = Base_Type (Component_Type (T)))
2795 and then (Base_Type (T2) = Base_Type (T)
2796 or else
2797 Base_Type (T2) = Base_Type (Component_Type (T)));
2799 else
2800 return False;
2801 end if;
2802 end if;
2803 end Operator_Matches_Spec;
2805 -------------------
2806 -- Remove_Interp --
2807 -------------------
2809 procedure Remove_Interp (I : in out Interp_Index) is
2810 II : Interp_Index;
2812 begin
2813 -- Find end of Interp list and copy downward to erase the discarded one
2815 II := I + 1;
2816 while Present (All_Interp.Table (II).Typ) loop
2817 II := II + 1;
2818 end loop;
2820 for J in I + 1 .. II loop
2821 All_Interp.Table (J - 1) := All_Interp.Table (J);
2822 end loop;
2824 -- Back up interp. index to insure that iterator will pick up next
2825 -- available interpretation.
2827 I := I - 1;
2828 end Remove_Interp;
2830 ------------------
2831 -- Save_Interps --
2832 ------------------
2834 procedure Save_Interps (Old_N : Node_Id; New_N : Node_Id) is
2835 Map_Ptr : Int;
2836 O_N : Node_Id := Old_N;
2838 begin
2839 if Is_Overloaded (Old_N) then
2840 if Nkind (Old_N) = N_Selected_Component
2841 and then Is_Overloaded (Selector_Name (Old_N))
2842 then
2843 O_N := Selector_Name (Old_N);
2844 end if;
2846 Map_Ptr := Headers (Hash (O_N));
2848 while Interp_Map.Table (Map_Ptr).Node /= O_N loop
2849 Map_Ptr := Interp_Map.Table (Map_Ptr).Next;
2850 pragma Assert (Map_Ptr /= No_Entry);
2851 end loop;
2853 New_Interps (New_N);
2854 Interp_Map.Table (Interp_Map.Last).Index :=
2855 Interp_Map.Table (Map_Ptr).Index;
2856 end if;
2857 end Save_Interps;
2859 -------------------
2860 -- Specific_Type --
2861 -------------------
2863 function Specific_Type (Typ_1, Typ_2 : Entity_Id) return Entity_Id is
2864 T1 : constant Entity_Id := Available_View (Typ_1);
2865 T2 : constant Entity_Id := Available_View (Typ_2);
2866 B1 : constant Entity_Id := Base_Type (T1);
2867 B2 : constant Entity_Id := Base_Type (T2);
2869 function Is_Remote_Access (T : Entity_Id) return Boolean;
2870 -- Check whether T is the equivalent type of a remote access type.
2871 -- If distribution is enabled, T is a legal context for Null.
2873 ----------------------
2874 -- Is_Remote_Access --
2875 ----------------------
2877 function Is_Remote_Access (T : Entity_Id) return Boolean is
2878 begin
2879 return Is_Record_Type (T)
2880 and then (Is_Remote_Call_Interface (T)
2881 or else Is_Remote_Types (T))
2882 and then Present (Corresponding_Remote_Type (T))
2883 and then Is_Access_Type (Corresponding_Remote_Type (T));
2884 end Is_Remote_Access;
2886 -- Start of processing for Specific_Type
2888 begin
2889 if T1 = Any_Type or else T2 = Any_Type then
2890 return Any_Type;
2891 end if;
2893 if B1 = B2 then
2894 return B1;
2896 elsif (T1 = Universal_Integer and then Is_Integer_Type (T2))
2897 or else (T1 = Universal_Real and then Is_Real_Type (T2))
2898 or else (T1 = Universal_Fixed and then Is_Fixed_Point_Type (T2))
2899 or else (T1 = Any_Fixed and then Is_Fixed_Point_Type (T2))
2900 then
2901 return B2;
2903 elsif (T2 = Universal_Integer and then Is_Integer_Type (T1))
2904 or else (T2 = Universal_Real and then Is_Real_Type (T1))
2905 or else (T2 = Universal_Fixed and then Is_Fixed_Point_Type (T1))
2906 or else (T2 = Any_Fixed and then Is_Fixed_Point_Type (T1))
2907 then
2908 return B1;
2910 elsif T2 = Any_String and then Is_String_Type (T1) then
2911 return B1;
2913 elsif T1 = Any_String and then Is_String_Type (T2) then
2914 return B2;
2916 elsif T2 = Any_Character and then Is_Character_Type (T1) then
2917 return B1;
2919 elsif T1 = Any_Character and then Is_Character_Type (T2) then
2920 return B2;
2922 elsif T1 = Any_Access
2923 and then (Is_Access_Type (T2) or else Is_Remote_Access (T2))
2924 then
2925 return T2;
2927 elsif T2 = Any_Access
2928 and then (Is_Access_Type (T1) or else Is_Remote_Access (T1))
2929 then
2930 return T1;
2932 elsif T2 = Any_Composite
2933 and then Ekind (T1) in E_Array_Type .. E_Record_Subtype
2934 then
2935 return T1;
2937 elsif T1 = Any_Composite
2938 and then Ekind (T2) in E_Array_Type .. E_Record_Subtype
2939 then
2940 return T2;
2942 elsif T1 = Any_Modular and then Is_Modular_Integer_Type (T2) then
2943 return T2;
2945 elsif T2 = Any_Modular and then Is_Modular_Integer_Type (T1) then
2946 return T1;
2948 -- ----------------------------------------------------------
2949 -- Special cases for equality operators (all other predefined
2950 -- operators can never apply to tagged types)
2951 -- ----------------------------------------------------------
2953 -- Ada 2005 (AI-251): T1 and T2 are class-wide types, and T2 is an
2954 -- interface
2956 elsif Is_Class_Wide_Type (T1)
2957 and then Is_Class_Wide_Type (T2)
2958 and then Is_Interface (Etype (T2))
2959 then
2960 return T1;
2962 -- Ada 2005 (AI-251): T1 is a concrete type that implements the
2963 -- class-wide interface T2
2965 elsif Is_Class_Wide_Type (T2)
2966 and then Is_Interface (Etype (T2))
2967 and then Interface_Present_In_Ancestor (Typ => T1,
2968 Iface => Etype (T2))
2969 then
2970 return T1;
2972 elsif Is_Class_Wide_Type (T1)
2973 and then Is_Ancestor (Root_Type (T1), T2)
2974 then
2975 return T1;
2977 elsif Is_Class_Wide_Type (T2)
2978 and then Is_Ancestor (Root_Type (T2), T1)
2979 then
2980 return T2;
2982 elsif (Ekind (B1) = E_Access_Subprogram_Type
2983 or else
2984 Ekind (B1) = E_Access_Protected_Subprogram_Type)
2985 and then Ekind (Designated_Type (B1)) /= E_Subprogram_Type
2986 and then Is_Access_Type (T2)
2987 then
2988 return T2;
2990 elsif (Ekind (B2) = E_Access_Subprogram_Type
2991 or else
2992 Ekind (B2) = E_Access_Protected_Subprogram_Type)
2993 and then Ekind (Designated_Type (B2)) /= E_Subprogram_Type
2994 and then Is_Access_Type (T1)
2995 then
2996 return T1;
2998 elsif (Ekind (T1) = E_Allocator_Type
2999 or else Ekind (T1) = E_Access_Attribute_Type
3000 or else Ekind (T1) = E_Anonymous_Access_Type)
3001 and then Is_Access_Type (T2)
3002 then
3003 return T2;
3005 elsif (Ekind (T2) = E_Allocator_Type
3006 or else Ekind (T2) = E_Access_Attribute_Type
3007 or else Ekind (T2) = E_Anonymous_Access_Type)
3008 and then Is_Access_Type (T1)
3009 then
3010 return T1;
3012 -- If none of the above cases applies, types are not compatible
3014 else
3015 return Any_Type;
3016 end if;
3017 end Specific_Type;
3019 ---------------------
3020 -- Set_Abstract_Op --
3021 ---------------------
3023 procedure Set_Abstract_Op (I : Interp_Index; V : Entity_Id) is
3024 begin
3025 All_Interp.Table (I).Abstract_Op := V;
3026 end Set_Abstract_Op;
3028 -----------------------
3029 -- Valid_Boolean_Arg --
3030 -----------------------
3032 -- In addition to booleans and arrays of booleans, we must include
3033 -- aggregates as valid boolean arguments, because in the first pass of
3034 -- resolution their components are not examined. If it turns out not to be
3035 -- an aggregate of booleans, this will be diagnosed in Resolve.
3036 -- Any_Composite must be checked for prior to the array type checks because
3037 -- Any_Composite does not have any associated indexes.
3039 function Valid_Boolean_Arg (T : Entity_Id) return Boolean is
3040 begin
3041 return Is_Boolean_Type (T)
3042 or else T = Any_Composite
3043 or else (Is_Array_Type (T)
3044 and then T /= Any_String
3045 and then Number_Dimensions (T) = 1
3046 and then Is_Boolean_Type (Component_Type (T))
3047 and then (not Is_Private_Composite (T)
3048 or else In_Instance)
3049 and then (not Is_Limited_Composite (T)
3050 or else In_Instance))
3051 or else Is_Modular_Integer_Type (T)
3052 or else T = Universal_Integer;
3053 end Valid_Boolean_Arg;
3055 --------------------------
3056 -- Valid_Comparison_Arg --
3057 --------------------------
3059 function Valid_Comparison_Arg (T : Entity_Id) return Boolean is
3060 begin
3062 if T = Any_Composite then
3063 return False;
3064 elsif Is_Discrete_Type (T)
3065 or else Is_Real_Type (T)
3066 then
3067 return True;
3068 elsif Is_Array_Type (T)
3069 and then Number_Dimensions (T) = 1
3070 and then Is_Discrete_Type (Component_Type (T))
3071 and then (not Is_Private_Composite (T)
3072 or else In_Instance)
3073 and then (not Is_Limited_Composite (T)
3074 or else In_Instance)
3075 then
3076 return True;
3077 elsif Is_String_Type (T) then
3078 return True;
3079 else
3080 return False;
3081 end if;
3082 end Valid_Comparison_Arg;
3084 ----------------------
3085 -- Write_Interp_Ref --
3086 ----------------------
3088 procedure Write_Interp_Ref (Map_Ptr : Int) is
3089 begin
3090 Write_Str (" Node: ");
3091 Write_Int (Int (Interp_Map.Table (Map_Ptr).Node));
3092 Write_Str (" Index: ");
3093 Write_Int (Int (Interp_Map.Table (Map_Ptr).Index));
3094 Write_Str (" Next: ");
3095 Write_Int (Int (Interp_Map.Table (Map_Ptr).Next));
3096 Write_Eol;
3097 end Write_Interp_Ref;
3099 ---------------------
3100 -- Write_Overloads --
3101 ---------------------
3103 procedure Write_Overloads (N : Node_Id) is
3104 I : Interp_Index;
3105 It : Interp;
3106 Nam : Entity_Id;
3108 begin
3109 if not Is_Overloaded (N) then
3110 Write_Str ("Non-overloaded entity ");
3111 Write_Eol;
3112 Write_Entity_Info (Entity (N), " ");
3114 else
3115 Get_First_Interp (N, I, It);
3116 Write_Str ("Overloaded entity ");
3117 Write_Eol;
3118 Write_Str (" Name Type Abstract Op");
3119 Write_Eol;
3120 Write_Str ("===============================================");
3121 Write_Eol;
3122 Nam := It.Nam;
3124 while Present (Nam) loop
3125 Write_Int (Int (Nam));
3126 Write_Str (" ");
3127 Write_Name (Chars (Nam));
3128 Write_Str (" ");
3129 Write_Int (Int (It.Typ));
3130 Write_Str (" ");
3131 Write_Name (Chars (It.Typ));
3133 if Present (It.Abstract_Op) then
3134 Write_Str (" ");
3135 Write_Int (Int (It.Abstract_Op));
3136 Write_Str (" ");
3137 Write_Name (Chars (It.Abstract_Op));
3138 end if;
3140 Write_Eol;
3141 Get_Next_Interp (I, It);
3142 Nam := It.Nam;
3143 end loop;
3144 end if;
3145 end Write_Overloads;
3147 end Sem_Type;