91th Cygnus<->FSF quick merge
[gcc.git] / gcc / cp / call.c
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) and
4 hacked by Brendan Kehoe (brendan@cygnus.com).
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23
24 /* High-level class interface. */
25
26 #include "config.h"
27 #include "tree.h"
28 #include <stdio.h>
29 #include "cp-tree.h"
30 #include "class.h"
31 #include "output.h"
32 #include "flags.h"
33
34 #include "obstack.h"
35 #define obstack_chunk_alloc xmalloc
36 #define obstack_chunk_free free
37
38 extern void sorry ();
39
40 extern int inhibit_warnings;
41 extern tree ctor_label, dtor_label;
42
43 /* Compute the ease with which a conversion can be performed
44 between an expected and the given type. */
45
46 static struct harshness_code convert_harshness PROTO((register tree, register tree, tree));
47 static tree build_new_method_call PROTO((tree, tree, tree, tree, int));
48
49 #define EVIL_RETURN(ARG) ((ARG).code = EVIL_CODE, (ARG))
50 #define STD_RETURN(ARG) ((ARG).code = STD_CODE, (ARG))
51 #define QUAL_RETURN(ARG) ((ARG).code = QUAL_CODE, (ARG))
52 #define TRIVIAL_RETURN(ARG) ((ARG).code = TRIVIAL_CODE, (ARG))
53 #define ZERO_RETURN(ARG) ((ARG).code = 0, (ARG))
54
55 /* Ordering function for overload resolution. Compare two candidates
56 by gross quality. */
57
58 int
59 rank_for_overload (x, y)
60 struct candidate *x, *y;
61 {
62 if (y->h.code & (EVIL_CODE|ELLIPSIS_CODE|USER_CODE))
63 return y->h.code - x->h.code;
64 if (x->h.code & (EVIL_CODE|ELLIPSIS_CODE|USER_CODE))
65 return -1;
66
67 /* This is set by compute_conversion_costs, for calling a non-const
68 member function from a const member function. */
69 if ((y->harshness[0].code & CONST_CODE) ^ (x->harshness[0].code & CONST_CODE))
70 return y->harshness[0].code - x->harshness[0].code;
71
72 if (y->h.code & STD_CODE)
73 {
74 if (x->h.code & STD_CODE)
75 return y->h.distance - x->h.distance;
76 return 1;
77 }
78 if (x->h.code & STD_CODE)
79 return -1;
80
81 return y->h.code - x->h.code;
82 }
83
84 /* Compare two candidates, argument by argument. */
85
86 static int
87 rank_for_ideal (x, y)
88 struct candidate *x, *y;
89 {
90 int i;
91
92 if (x->h_len != y->h_len)
93 abort ();
94
95 for (i = 0; i < x->h_len; i++)
96 {
97 if (y->harshness[i].code - x->harshness[i].code)
98 return y->harshness[i].code - x->harshness[i].code;
99 if ((y->harshness[i].code & STD_CODE)
100 && (y->harshness[i].distance - x->harshness[i].distance))
101 return y->harshness[i].distance - x->harshness[i].distance;
102
103 /* They're both the same code. Now see if we're dealing with an
104 integral promotion that needs a finer grain of accuracy. */
105 if (y->harshness[0].code & PROMO_CODE
106 && (y->harshness[i].int_penalty ^ x->harshness[i].int_penalty))
107 return y->harshness[i].int_penalty - x->harshness[i].int_penalty;
108 }
109 return 0;
110 }
111
112 /* TYPE is the type we wish to convert to. PARM is the parameter
113 we have to work with. We use a somewhat arbitrary cost function
114 to measure this conversion. */
115
116 static struct harshness_code
117 convert_harshness (type, parmtype, parm)
118 register tree type, parmtype;
119 tree parm;
120 {
121 struct harshness_code h;
122 register enum tree_code codel;
123 register enum tree_code coder;
124 int lvalue;
125
126 h.code = 0;
127 h.distance = 0;
128 h.int_penalty = 0;
129
130 #ifdef GATHER_STATISTICS
131 n_convert_harshness++;
132 #endif
133
134 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
135 {
136 if (parm)
137 parm = convert_from_reference (parm);
138 parmtype = TREE_TYPE (parmtype);
139 lvalue = 1;
140 }
141 else if (parm)
142 lvalue = lvalue_p (parm);
143 else
144 lvalue = 0;
145
146 if (TYPE_PTRMEMFUNC_P (type))
147 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
148 if (TYPE_PTRMEMFUNC_P (parmtype))
149 parmtype = TYPE_PTRMEMFUNC_FN_TYPE (parmtype);
150
151 codel = TREE_CODE (type);
152 coder = TREE_CODE (parmtype);
153
154 if (TYPE_MAIN_VARIANT (parmtype) == TYPE_MAIN_VARIANT (type))
155 return ZERO_RETURN (h);
156
157 if (coder == ERROR_MARK)
158 return EVIL_RETURN (h);
159
160 if (codel == REFERENCE_TYPE)
161 {
162 tree ttl, ttr;
163 int constp = parm ? TREE_READONLY (parm) : TYPE_READONLY (parmtype);
164 int volatilep = (parm ? TREE_THIS_VOLATILE (parm)
165 : TYPE_VOLATILE (parmtype));
166 register tree intype = TYPE_MAIN_VARIANT (parmtype);
167 register enum tree_code form = TREE_CODE (intype);
168 int penalty = 0;
169
170 ttl = TREE_TYPE (type);
171
172 /* Only allow const reference binding if we were given a parm to deal
173 with, since it isn't really a conversion. This is a hack to
174 prevent build_type_conversion from finding this conversion, but
175 still allow overloading to find it. */
176 if (! lvalue && ! (parm && TYPE_READONLY (ttl)))
177 return EVIL_RETURN (h);
178
179 if ((TYPE_READONLY (ttl) < constp)
180 || (TYPE_VOLATILE (ttl) < volatilep))
181 return EVIL_RETURN (h);
182
183 /* When passing a non-const argument into a const reference, dig it a
184 little, so a non-const reference is preferred over this one. */
185 penalty = ((TYPE_READONLY (ttl) > constp)
186 + (TYPE_VOLATILE (ttl) > volatilep));
187
188 ttl = TYPE_MAIN_VARIANT (ttl);
189
190 if (form == OFFSET_TYPE)
191 {
192 intype = TREE_TYPE (intype);
193 form = TREE_CODE (intype);
194 }
195
196 ttr = intype;
197
198 if (TREE_CODE (ttl) == ARRAY_TYPE && TREE_CODE (ttr) == ARRAY_TYPE)
199 {
200 if (comptypes (ttl, ttr, 1))
201 return ZERO_RETURN (h);
202 return EVIL_RETURN (h);
203 }
204
205 h = convert_harshness (ttl, ttr, NULL_TREE);
206 if (penalty && h.code == 0)
207 {
208 h.code = QUAL_CODE;
209 h.int_penalty = penalty;
210 }
211 return h;
212 }
213
214 if (codel == POINTER_TYPE && fntype_p (parmtype))
215 {
216 tree p1, p2;
217 struct harshness_code h1, h2;
218
219 /* Get to the METHOD_TYPE or FUNCTION_TYPE that this might be. */
220 type = TREE_TYPE (type);
221
222 if (coder == POINTER_TYPE)
223 {
224 parmtype = TREE_TYPE (parmtype);
225 coder = TREE_CODE (parmtype);
226 }
227
228 if (coder != TREE_CODE (type))
229 return EVIL_RETURN (h);
230
231 if (type != parmtype && coder == METHOD_TYPE)
232 {
233 tree ttl = TYPE_METHOD_BASETYPE (type);
234 tree ttr = TYPE_METHOD_BASETYPE (parmtype);
235
236 int b_or_d = get_base_distance (ttr, ttl, 0, (tree*)0);
237 if (b_or_d < 0)
238 {
239 b_or_d = get_base_distance (ttl, ttr, 0, (tree*)0);
240 if (b_or_d < 0)
241 return EVIL_RETURN (h);
242 h.distance = -b_or_d;
243 }
244 else
245 h.distance = b_or_d;
246 h.code = STD_CODE;
247
248 type = build_function_type
249 (TREE_TYPE (type), TREE_CHAIN (TYPE_ARG_TYPES (type)));
250 parmtype = build_function_type
251 (TREE_TYPE (parmtype), TREE_CHAIN (TYPE_ARG_TYPES (parmtype)));
252 }
253
254 /* We allow the default conversion between function type
255 and pointer-to-function type for free. */
256 if (comptypes (type, parmtype, 1))
257 return h;
258
259 if (pedantic)
260 return EVIL_RETURN (h);
261
262 /* Compare return types. */
263 p1 = TREE_TYPE (type);
264 p2 = TREE_TYPE (parmtype);
265 h2 = convert_harshness (p1, p2, NULL_TREE);
266 if (h2.code & EVIL_CODE)
267 return h2;
268
269 h1.code = TRIVIAL_CODE;
270 h1.distance = 0;
271
272 if (h2.distance != 0)
273 {
274 tree binfo;
275
276 /* This only works for pointers. */
277 if (TREE_CODE (p1) != POINTER_TYPE
278 && TREE_CODE (p1) != REFERENCE_TYPE)
279 return EVIL_RETURN (h);
280
281 p1 = TREE_TYPE (p1);
282 p2 = TREE_TYPE (p2);
283 /* Don't die if we happen to be dealing with void*. */
284 if (!IS_AGGR_TYPE (p1) || !IS_AGGR_TYPE (p2))
285 return EVIL_RETURN (h);
286 if (h2.distance < 0)
287 binfo = get_binfo (p2, p1, 0);
288 else
289 binfo = get_binfo (p1, p2, 0);
290
291 if (! BINFO_OFFSET_ZEROP (binfo))
292 {
293 #if 0
294 static int explained = 0;
295 if (h2.distance < 0)
296 message_2_types (sorry, "cannot cast `%s' to `%s' at function call site", p2, p1);
297 else
298 message_2_types (sorry, "cannot cast `%s' to `%s' at function call site", p1, p2);
299
300 if (! explained++)
301 sorry ("(because pointer values change during conversion)");
302 #endif
303 return EVIL_RETURN (h);
304 }
305 }
306
307 h1.code |= h2.code;
308 if (h2.distance > h1.distance)
309 h1.distance = h2.distance;
310
311 p1 = TYPE_ARG_TYPES (type);
312 p2 = TYPE_ARG_TYPES (parmtype);
313 while (p1 && TREE_VALUE (p1) != void_type_node
314 && p2 && TREE_VALUE (p2) != void_type_node)
315 {
316 h2 = convert_harshness (TREE_VALUE (p1), TREE_VALUE (p2),
317 NULL_TREE);
318 if (h2.code & EVIL_CODE)
319 return h2;
320
321 if (h2.distance)
322 {
323 /* This only works for pointers and references. */
324 if (TREE_CODE (TREE_VALUE (p1)) != POINTER_TYPE
325 && TREE_CODE (TREE_VALUE (p1)) != REFERENCE_TYPE)
326 return EVIL_RETURN (h);
327 h2.distance = - h2.distance;
328 }
329
330 h1.code |= h2.code;
331 if (h2.distance > h1.distance)
332 h1.distance = h2.distance;
333 p1 = TREE_CHAIN (p1);
334 p2 = TREE_CHAIN (p2);
335 }
336 if (p1 == p2)
337 return h1;
338 if (p2)
339 {
340 if (p1)
341 return EVIL_RETURN (h);
342 h1.code |= ELLIPSIS_CODE;
343 return h1;
344 }
345 if (p1)
346 {
347 if (TREE_PURPOSE (p1) == NULL_TREE)
348 h1.code |= EVIL_CODE;
349 return h1;
350 }
351 }
352 else if (codel == POINTER_TYPE && coder == OFFSET_TYPE)
353 {
354 tree ttl, ttr;
355
356 /* Get to the OFFSET_TYPE that this might be. */
357 type = TREE_TYPE (type);
358
359 if (coder != TREE_CODE (type))
360 return EVIL_RETURN (h);
361
362 ttl = TYPE_OFFSET_BASETYPE (type);
363 ttr = TYPE_OFFSET_BASETYPE (parmtype);
364
365 if (ttl == ttr)
366 h.code = 0;
367 else
368 {
369 int b_or_d = get_base_distance (ttr, ttl, 0, (tree*)0);
370 if (b_or_d < 0)
371 {
372 b_or_d = get_base_distance (ttl, ttr, 0, (tree*)0);
373 if (b_or_d < 0)
374 return EVIL_RETURN (h);
375 h.distance = -b_or_d;
376 }
377 else
378 h.distance = b_or_d;
379 h.code = STD_CODE;
380 }
381
382 /* Now test the OFFSET_TYPE's target compatibility. */
383 type = TREE_TYPE (type);
384 parmtype = TREE_TYPE (parmtype);
385 }
386
387 if (coder == UNKNOWN_TYPE)
388 {
389 if (codel == FUNCTION_TYPE
390 || codel == METHOD_TYPE
391 || (codel == POINTER_TYPE
392 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
393 || TREE_CODE (TREE_TYPE (type)) == METHOD_TYPE)))
394 return TRIVIAL_RETURN (h);
395 return EVIL_RETURN (h);
396 }
397
398 if (coder == VOID_TYPE)
399 return EVIL_RETURN (h);
400
401 if (codel == BOOLEAN_TYPE)
402 {
403 if (INTEGRAL_CODE_P (coder) || coder == REAL_TYPE)
404 return STD_RETURN (h);
405 else if (coder == POINTER_TYPE || coder == OFFSET_TYPE)
406 {
407 /* Make this worse than any conversion to another pointer.
408 FIXME this is how I think the language should work, but it may not
409 end up being how the language is standardized (jason 1/30/95). */
410 h.distance = 32767;
411 return STD_RETURN (h);
412 }
413 return EVIL_RETURN (h);
414 }
415
416 if (INTEGRAL_CODE_P (codel))
417 {
418 /* Control equivalence of ints an enums. */
419
420 if (codel == ENUMERAL_TYPE
421 && flag_int_enum_equivalence == 0)
422 {
423 /* Enums can be converted to ints, but not vice-versa. */
424 if (coder != ENUMERAL_TYPE
425 || TYPE_MAIN_VARIANT (type) != TYPE_MAIN_VARIANT (parmtype))
426 return EVIL_RETURN (h);
427 }
428
429 /* else enums and ints (almost) freely interconvert. */
430
431 if (INTEGRAL_CODE_P (coder))
432 {
433 if (TYPE_MAIN_VARIANT (type)
434 == TYPE_MAIN_VARIANT (type_promotes_to (parmtype)))
435 {
436 h.code = PROMO_CODE;
437 }
438 else
439 h.code = STD_CODE;
440
441 return h;
442 }
443 else if (coder == REAL_TYPE)
444 {
445 h.code = STD_CODE;
446 h.distance = 0;
447 return h;
448 }
449 }
450
451 if (codel == REAL_TYPE)
452 {
453 if (coder == REAL_TYPE)
454 {
455 if (TYPE_MAIN_VARIANT (type)
456 == TYPE_MAIN_VARIANT (type_promotes_to (parmtype)))
457 h.code = PROMO_CODE;
458 else
459 h.code = STD_CODE;
460
461 return h;
462 }
463 else if (INTEGRAL_CODE_P (coder))
464 {
465 h.code = STD_CODE;
466 h.distance = 0;
467 return h;
468 }
469 }
470
471 /* Convert arrays which have not previously been converted. */
472 if (coder == ARRAY_TYPE)
473 {
474 coder = POINTER_TYPE;
475 if (parm)
476 {
477 parm = decay_conversion (parm);
478 parmtype = TREE_TYPE (parm);
479 }
480 else
481 parmtype = build_pointer_type (TREE_TYPE (parmtype));
482 }
483
484 /* Conversions among pointers */
485 if (codel == POINTER_TYPE && coder == POINTER_TYPE)
486 {
487 register tree ttl = TYPE_MAIN_VARIANT (TREE_TYPE (type));
488 register tree ttr = TYPE_MAIN_VARIANT (TREE_TYPE (parmtype));
489 int penalty = 4 * (ttl != ttr);
490
491 /* Anything converts to void *. Since this may be `const void *'
492 (etc.) use VOID_TYPE instead of void_type_node. Otherwise, the
493 targets must be the same, except that we do allow (at some cost)
494 conversion between signed and unsigned pointer types. */
495
496 if ((TREE_CODE (ttl) == METHOD_TYPE
497 || TREE_CODE (ttl) == FUNCTION_TYPE)
498 && TREE_CODE (ttl) == TREE_CODE (ttr))
499 {
500 if (comptypes (ttl, ttr, -1))
501 {
502 h.code = penalty ? STD_CODE : 0;
503 h.distance = 0;
504 }
505 else
506 h.code = EVIL_CODE;
507 return h;
508 }
509
510 #if 1
511 if (TREE_CODE (ttl) != VOID_TYPE
512 && (TREE_CODE (ttr) != VOID_TYPE || !parm || !null_ptr_cst_p (parm)))
513 {
514 if (comp_target_types (type, parmtype, 1) <= 0)
515 return EVIL_RETURN (h);
516 }
517 #else
518 if (!(TREE_CODE (ttl) == VOID_TYPE
519 || TREE_CODE (ttr) == VOID_TYPE
520 || (TREE_UNSIGNED (ttl) ^ TREE_UNSIGNED (ttr)
521 && (ttl = unsigned_type (ttl),
522 ttr = unsigned_type (ttr),
523 penalty = 10, 0))
524 || (comp_target_types (ttl, ttr, 0) > 0)))
525 return EVIL_RETURN (h);
526 #endif
527
528 if (ttr == ttl)
529 {
530 tree tmp1 = TREE_TYPE (type), tmp2 = TREE_TYPE (parmtype);
531
532 h.code = 0;
533 /* Note conversion from `T*' to `const T*',
534 or `T*' to `volatile T*'. */
535 if ((TYPE_READONLY (tmp1) < TREE_READONLY (tmp2))
536 || (TYPE_VOLATILE (tmp1) < TYPE_VOLATILE (tmp2)))
537 h.code = EVIL_CODE;
538 else if ((TYPE_READONLY (tmp1) != TREE_READONLY (tmp2))
539 || (TYPE_VOLATILE (tmp1) != TYPE_VOLATILE (tmp2)))
540 h.code |= QUAL_CODE;
541
542 h.distance = 0;
543 return h;
544 }
545
546
547 if (TREE_CODE (ttl) == RECORD_TYPE && TREE_CODE (ttr) == RECORD_TYPE)
548 {
549 int b_or_d = get_base_distance (ttl, ttr, 0, (tree*)0);
550 if (b_or_d < 0)
551 {
552 b_or_d = get_base_distance (ttr, ttl, 0, (tree*)0);
553 if (b_or_d < 0)
554 return EVIL_RETURN (h);
555 h.distance = -b_or_d;
556 }
557 else
558 h.distance = b_or_d;
559 h.code = STD_CODE;
560 return h;
561 }
562
563 /* If converting from a `class*' to a `void*', make it
564 less favorable than any inheritance relationship. */
565 if (TREE_CODE (ttl) == VOID_TYPE && IS_AGGR_TYPE (ttr))
566 {
567 h.code = STD_CODE;
568 h.distance = CLASSTYPE_MAX_DEPTH (ttr)+1;
569 return h;
570 }
571
572 h.code = penalty ? STD_CODE : PROMO_CODE;
573 /* Catch things like `const char *' -> `const void *'
574 vs `const char *' -> `void *'. */
575 if (ttl != ttr)
576 {
577 tree tmp1 = TREE_TYPE (type), tmp2 = TREE_TYPE (parmtype);
578 if ((TYPE_READONLY (tmp1) < TREE_READONLY (tmp2))
579 || (TYPE_VOLATILE (tmp1) < TYPE_VOLATILE (tmp2)))
580 h.code = EVIL_CODE;
581 else if ((TYPE_READONLY (tmp1) > TREE_READONLY (tmp2))
582 || (TYPE_VOLATILE (tmp1) > TYPE_VOLATILE (tmp2)))
583 h.code |= QUAL_CODE;
584 }
585 return h;
586 }
587
588 if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
589 {
590 /* This is not a bad match, but don't let it beat
591 integer-enum combinations. */
592 if (parm && integer_zerop (parm))
593 {
594 h.code = STD_CODE;
595 h.distance = 0;
596 return h;
597 }
598 }
599
600 /* C++: Since the `this' parameter of a signature member function
601 is represented as a signature pointer to handle default implementations
602 correctly, we can have the case that `type' is a signature pointer
603 while `parmtype' is a pointer to a signature table. We don't really
604 do any conversions in this case, so just return 0. */
605
606 if (codel == RECORD_TYPE && coder == POINTER_TYPE
607 && IS_SIGNATURE_POINTER (type) && IS_SIGNATURE (TREE_TYPE (parmtype)))
608 return ZERO_RETURN (h);
609
610 if (codel == RECORD_TYPE && coder == RECORD_TYPE)
611 {
612 int b_or_d = get_base_distance (type, parmtype, 0, (tree*)0);
613 if (b_or_d < 0)
614 {
615 b_or_d = get_base_distance (parmtype, type, 0, (tree*)0);
616 if (b_or_d < 0)
617 return EVIL_RETURN (h);
618 h.distance = -b_or_d;
619 }
620 else
621 h.distance = b_or_d;
622 h.code = STD_CODE;
623 return h;
624 }
625 return EVIL_RETURN (h);
626 }
627
628 /* A clone of build_type_conversion for checking user-defined conversions in
629 overload resolution. */
630
631 static int
632 user_harshness (type, parmtype)
633 register tree type, parmtype;
634 {
635 tree conv;
636 tree winner = NULL_TREE;
637 int code;
638
639 {
640 tree typename = build_typename_overload (type);
641 if (lookup_fnfields (TYPE_BINFO (parmtype), typename, 0))
642 return 0;
643 }
644
645 for (conv = lookup_conversions (parmtype); conv; conv = TREE_CHAIN (conv))
646 {
647 struct harshness_code tmp;
648 tree cand = TREE_VALUE (conv);
649
650 if (winner && winner == cand)
651 continue;
652
653 tmp = convert_harshness (type, TREE_TYPE (TREE_TYPE (cand)), NULL_TREE);
654 if ((tmp.code < USER_CODE) && (tmp.distance >= 0))
655 {
656 if (winner)
657 return EVIL_CODE;
658 else
659 {
660 winner = cand;
661 code = tmp.code;
662 }
663 }
664 }
665
666 if (winner)
667 return code;
668
669 return -1;
670 }
671
672 #ifdef DEBUG_MATCHING
673 static char *
674 print_harshness (h)
675 struct harshness_code *h;
676 {
677 static char buf[1024];
678 char tmp[1024];
679
680 bzero (buf, 1024 * sizeof (char));
681 strcat (buf, "codes=[");
682 if (h->code & EVIL_CODE)
683 strcat (buf, "EVIL");
684 if (h->code & CONST_CODE)
685 strcat (buf, " CONST");
686 if (h->code & ELLIPSIS_CODE)
687 strcat (buf, " ELLIPSIS");
688 if (h->code & USER_CODE)
689 strcat (buf, " USER");
690 if (h->code & STD_CODE)
691 strcat (buf, " STD");
692 if (h->code & PROMO_CODE)
693 strcat (buf, " PROMO");
694 if (h->code & QUAL_CODE)
695 strcat (buf, " QUAL");
696 if (h->code & TRIVIAL_CODE)
697 strcat (buf, " TRIVIAL");
698 if (buf[0] == '\0')
699 strcat (buf, "0");
700
701 sprintf (tmp, "] distance=%d int_penalty=%d", h->distance, h->int_penalty);
702
703 strcat (buf, tmp);
704
705 return buf;
706 }
707 #endif
708
709 /* Algorithm: For each argument, calculate how difficult it is to
710 make FUNCTION accept that argument. If we can easily tell that
711 FUNCTION won't be acceptable to one of the arguments, then we
712 don't need to compute the ease of converting the other arguments,
713 since it will never show up in the intersection of all arguments'
714 favorite functions.
715
716 Conversions between builtin and user-defined types are allowed, but
717 no function involving such a conversion is preferred to one which
718 does not require such a conversion. Furthermore, such conversions
719 must be unique. */
720
721 void
722 compute_conversion_costs (function, tta_in, cp, arglen)
723 tree function;
724 tree tta_in;
725 struct candidate *cp;
726 int arglen;
727 {
728 tree ttf_in = TYPE_ARG_TYPES (TREE_TYPE (function));
729 tree ttf = ttf_in;
730 tree tta = tta_in;
731
732 /* Start out with no strikes against. */
733 int evil_strikes = 0;
734 int ellipsis_strikes = 0;
735 int user_strikes = 0;
736 int b_or_d_strikes = 0;
737 int easy_strikes = 0;
738
739 int strike_index = 0, win;
740 struct harshness_code lose;
741 extern int cp_silent;
742
743 #ifdef GATHER_STATISTICS
744 n_compute_conversion_costs++;
745 #endif
746
747 #ifndef DEBUG_MATCHING
748 /* We don't emit any warnings or errors while trying out each candidate. */
749 cp_silent = 1;
750 #endif
751
752 cp->function = function;
753 cp->arg = tta ? TREE_VALUE (tta) : NULL_TREE;
754 cp->u.bad_arg = 0; /* optimistic! */
755
756 cp->h.code = 0;
757 cp->h.distance = 0;
758 cp->h.int_penalty = 0;
759 bzero ((char *) cp->harshness,
760 (cp->h_len + 1) * sizeof (struct harshness_code));
761
762 while (ttf && tta)
763 {
764 struct harshness_code h;
765
766 if (ttf == void_list_node)
767 break;
768
769 if (type_unknown_p (TREE_VALUE (tta)))
770 {
771 /* Must perform some instantiation here. */
772 tree rhs = TREE_VALUE (tta);
773 tree lhstype = TREE_VALUE (ttf);
774
775 /* Keep quiet about possible contravariance violations. */
776 int old_inhibit_warnings = inhibit_warnings;
777 inhibit_warnings = 1;
778
779 /* @@ This is to undo what `grokdeclarator' does to
780 parameter types. It really should go through
781 something more general. */
782
783 TREE_TYPE (tta) = unknown_type_node;
784 rhs = instantiate_type (lhstype, rhs, 0);
785 inhibit_warnings = old_inhibit_warnings;
786
787 if (TREE_CODE (rhs) == ERROR_MARK)
788 h.code = EVIL_CODE;
789 else
790 h = convert_harshness (lhstype, TREE_TYPE (rhs), rhs);
791 }
792 else
793 {
794 #ifdef DEBUG_MATCHING
795 static tree old_function = NULL_TREE;
796
797 if (!old_function || function != old_function)
798 {
799 cp_error ("trying %D", function);
800 old_function = function;
801 }
802
803 cp_error (" doing (%T) %E against arg %T",
804 TREE_TYPE (TREE_VALUE (tta)), TREE_VALUE (tta),
805 TREE_VALUE (ttf));
806 #endif
807
808 h = convert_harshness (TREE_VALUE (ttf),
809 TREE_TYPE (TREE_VALUE (tta)),
810 TREE_VALUE (tta));
811
812 #ifdef DEBUG_MATCHING
813 cp_error (" evaluated %s", print_harshness (&h));
814 #endif
815 }
816
817 cp->harshness[strike_index] = h;
818 if ((h.code & EVIL_CODE)
819 || ((h.code & STD_CODE) && h.distance < 0))
820 {
821 cp->u.bad_arg = strike_index;
822 evil_strikes = 1;
823 }
824 else if (h.code & ELLIPSIS_CODE)
825 ellipsis_strikes += 1;
826 #if 0
827 /* This is never set by `convert_harshness'. */
828 else if (h.code & USER_CODE)
829 {
830 user_strikes += 1;
831 }
832 #endif
833 else
834 {
835 if ((h.code & STD_CODE) && h.distance)
836 {
837 if (h.distance > b_or_d_strikes)
838 b_or_d_strikes = h.distance;
839 }
840 else
841 easy_strikes += (h.code & (STD_CODE|PROMO_CODE|TRIVIAL_CODE));
842 cp->h.code |= h.code;
843 /* Make sure we communicate this. */
844 cp->h.int_penalty += h.int_penalty;
845 }
846
847 ttf = TREE_CHAIN (ttf);
848 tta = TREE_CHAIN (tta);
849 strike_index += 1;
850 }
851
852 if (tta)
853 {
854 /* ran out of formals, and parmlist is fixed size. */
855 if (ttf /* == void_type_node */)
856 {
857 cp->h.code = EVIL_CODE;
858 cp->u.bad_arg = -1;
859 cp_silent = 0;
860 return;
861 }
862 else
863 {
864 struct harshness_code h;
865 int l = list_length (tta);
866 ellipsis_strikes += l;
867 h.code = ELLIPSIS_CODE;
868 h.distance = 0;
869 h.int_penalty = 0;
870 for (; l; --l)
871 cp->harshness[strike_index++] = h;
872 }
873 }
874 else if (ttf && ttf != void_list_node)
875 {
876 /* ran out of actuals, and no defaults. */
877 if (TREE_PURPOSE (ttf) == NULL_TREE)
878 {
879 cp->h.code = EVIL_CODE;
880 cp->u.bad_arg = -2;
881 cp_silent = 0;
882 return;
883 }
884 /* Store index of first default. */
885 cp->harshness[arglen].distance = strike_index+1;
886 }
887 else
888 cp->harshness[arglen].distance = 0;
889
890 /* Argument list lengths work out, so don't need to check them again. */
891 if (evil_strikes)
892 {
893 /* We do not check for derived->base conversions here, since in
894 no case would they give evil strike counts, unless such conversions
895 are somehow ambiguous. */
896
897 /* See if any user-defined conversions apply.
898 But make sure that we do not loop. */
899 static int dont_convert_types = 0;
900
901 if (dont_convert_types)
902 {
903 cp->h.code = EVIL_CODE;
904 cp_silent = 0;
905 return;
906 }
907
908 win = 0; /* Only get one chance to win. */
909 ttf = TYPE_ARG_TYPES (TREE_TYPE (function));
910 tta = tta_in;
911 strike_index = 0;
912 evil_strikes = 0;
913
914 while (ttf && tta)
915 {
916 if (ttf == void_list_node)
917 break;
918
919 lose = cp->harshness[strike_index];
920 if ((lose.code & EVIL_CODE)
921 || ((lose.code & STD_CODE) && lose.distance < 0))
922 {
923 tree actual_type = TREE_TYPE (TREE_VALUE (tta));
924 tree formal_type = TREE_VALUE (ttf);
925 int extra_conversions = 0;
926
927 dont_convert_types = 1;
928
929 if (TREE_CODE (formal_type) == REFERENCE_TYPE)
930 formal_type = TREE_TYPE (formal_type);
931 if (TREE_CODE (actual_type) == REFERENCE_TYPE)
932 actual_type = TREE_TYPE (actual_type);
933
934 if (formal_type != error_mark_node
935 && actual_type != error_mark_node)
936 {
937 formal_type = complete_type (TYPE_MAIN_VARIANT (formal_type));
938 actual_type = complete_type (TYPE_MAIN_VARIANT (actual_type));
939
940 if (TYPE_HAS_CONSTRUCTOR (formal_type))
941 {
942 /* If it has a constructor for this type,
943 try to use it. */
944 /* @@ There is no way to save this result yet, so
945 success is a NULL_TREE for now. */
946 if (convert_to_aggr (formal_type, TREE_VALUE (tta), 0, 1)
947 != error_mark_node)
948 win++;
949 }
950 if (TYPE_LANG_SPECIFIC (actual_type)
951 && TYPE_HAS_CONVERSION (actual_type))
952 {
953 int extra = user_harshness (formal_type, actual_type);
954
955 if (extra == EVIL_CODE)
956 win += 2;
957 else if (extra >= 0)
958 {
959 win++;
960 extra_conversions = extra;
961 }
962 }
963 }
964 dont_convert_types = 0;
965
966 if (win == 1)
967 {
968 user_strikes += 1;
969 cp->harshness[strike_index].code
970 = USER_CODE | (extra_conversions ? STD_CODE : 0);
971 win = 0;
972 }
973 else
974 {
975 if (cp->u.bad_arg > strike_index)
976 cp->u.bad_arg = strike_index;
977
978 evil_strikes = win ? 2 : 1;
979 break;
980 }
981 }
982
983 ttf = TREE_CHAIN (ttf);
984 tta = TREE_CHAIN (tta);
985 strike_index += 1;
986 }
987 }
988
989 /* Const member functions get a small penalty because defaulting
990 to const is less useful than defaulting to non-const. */
991 /* This is bogus, it does not correspond to anything in the ARM.
992 This code will be fixed when this entire section is rewritten
993 to conform to the ARM. (mrs) */
994 if (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
995 {
996 tree this_parm = TREE_VALUE (ttf_in);
997
998 if (TREE_CODE (this_parm) == RECORD_TYPE /* Is `this' a sig ptr? */
999 ? TYPE_READONLY (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (this_parm))))
1000 : TYPE_READONLY (TREE_TYPE (this_parm)))
1001 {
1002 cp->harshness[0].code |= TRIVIAL_CODE;
1003 ++easy_strikes;
1004 }
1005 else
1006 {
1007 /* Calling a non-const member function from a const member function
1008 is probably invalid, but for now we let it only draw a warning.
1009 We indicate that such a mismatch has occurred by setting the
1010 harshness to a maximum value. */
1011 if (TREE_CODE (TREE_TYPE (TREE_VALUE (tta_in))) == POINTER_TYPE
1012 && (TYPE_READONLY (TREE_TYPE (TREE_TYPE (TREE_VALUE (tta_in))))))
1013 cp->harshness[0].code |= CONST_CODE;
1014 }
1015 }
1016
1017 if (evil_strikes)
1018 cp->h.code = EVIL_CODE;
1019 if (ellipsis_strikes)
1020 cp->h.code |= ELLIPSIS_CODE;
1021 if (user_strikes)
1022 cp->h.code |= USER_CODE;
1023 cp_silent = 0;
1024 #ifdef DEBUG_MATCHING
1025 cp_error ("final eval %s", print_harshness (&cp->h));
1026 #endif
1027 }
1028
1029 /* Subroutine of ideal_candidate. See if X or Y is a better match
1030 than the other. */
1031
1032 static int
1033 strictly_better (x, y)
1034 unsigned short x, y;
1035 {
1036 unsigned short xor;
1037
1038 if (x == y)
1039 return 0;
1040
1041 xor = x ^ y;
1042 if (xor >= x || xor >= y)
1043 return 1;
1044 return 0;
1045 }
1046
1047 /* When one of several possible overloaded functions and/or methods
1048 can be called, choose the best candidate for overloading.
1049
1050 BASETYPE is the context from which we start method resolution
1051 or NULL if we are comparing overloaded functions.
1052 CANDIDATES is the array of candidates we have to choose from.
1053 N_CANDIDATES is the length of CANDIDATES.
1054 PARMS is a TREE_LIST of parameters to the function we'll ultimately
1055 choose. It is modified in place when resolving methods. It is not
1056 modified in place when resolving overloaded functions.
1057 LEN is the length of the parameter list. */
1058
1059 static struct candidate *
1060 ideal_candidate (candidates, n_candidates, len)
1061 struct candidate *candidates;
1062 int n_candidates;
1063 int len;
1064 {
1065 struct candidate *cp = candidates+n_candidates;
1066 int i, j = -1, best_code;
1067
1068 /* For each argument, sort the functions from best to worst for the arg.
1069 For each function that's not best for this arg, set its overall
1070 harshness to EVIL so that other args won't like it. The candidate
1071 list for the last argument is the intersection of all the best-liked
1072 functions. */
1073
1074 qsort (candidates, n_candidates, sizeof (struct candidate),
1075 rank_for_overload);
1076 best_code = cp[-1].h.code;
1077
1078 /* If they're at least as good as each other, do an arg-by-arg check. */
1079 if (! strictly_better (cp[-1].h.code, cp[-2].h.code))
1080 {
1081 int better = 0;
1082 int worse = 0;
1083
1084 for (j = 0; j < n_candidates; j++)
1085 if (! strictly_better (candidates[j].h.code, best_code))
1086 break;
1087
1088 qsort (candidates+j, n_candidates-j, sizeof (struct candidate),
1089 rank_for_ideal);
1090 for (i = 0; i < len; i++)
1091 {
1092 if (cp[-1].harshness[i].code < cp[-2].harshness[i].code)
1093 better = 1;
1094 else if (cp[-1].harshness[i].code > cp[-2].harshness[i].code)
1095 worse = 1;
1096 else if (cp[-1].harshness[i].code & STD_CODE)
1097 {
1098 /* If it involves a standard conversion, let the
1099 inheritance lattice be the final arbiter. */
1100 if (cp[-1].harshness[i].distance > cp[-2].harshness[i].distance)
1101 worse = 1;
1102 else if (cp[-1].harshness[i].distance < cp[-2].harshness[i].distance)
1103 better = 1;
1104 }
1105 else if (cp[-1].harshness[i].code & PROMO_CODE)
1106 {
1107 /* For integral promotions, take into account a finer
1108 granularity for determining which types should be favored
1109 over others in such promotions. */
1110 if (cp[-1].harshness[i].int_penalty > cp[-2].harshness[i].int_penalty)
1111 worse = 1;
1112 else if (cp[-1].harshness[i].int_penalty < cp[-2].harshness[i].int_penalty)
1113 better = 1;
1114 }
1115 }
1116
1117 if (! better || worse)
1118 return NULL;
1119 }
1120 return cp-1;
1121 }
1122
1123 /* Assume that if the class referred to is not in the
1124 current class hierarchy, that it may be remote.
1125 PARENT is assumed to be of aggregate type here. */
1126
1127 static int
1128 may_be_remote (parent)
1129 tree parent;
1130 {
1131 if (TYPE_OVERLOADS_METHOD_CALL_EXPR (parent) == 0)
1132 return 0;
1133
1134 if (current_class_type == NULL_TREE)
1135 return 0;
1136
1137 if (parent == current_class_type)
1138 return 0;
1139
1140 if (UNIQUELY_DERIVED_FROM_P (parent, current_class_type))
1141 return 0;
1142 return 1;
1143 }
1144
1145 tree
1146 build_vfield_ref (datum, type)
1147 tree datum, type;
1148 {
1149 tree rval;
1150 int old_assume_nonnull_objects = flag_assume_nonnull_objects;
1151
1152 if (datum == error_mark_node)
1153 return error_mark_node;
1154
1155 /* Vtable references are always made from non-null objects. */
1156 flag_assume_nonnull_objects = 1;
1157 if (TREE_CODE (TREE_TYPE (datum)) == REFERENCE_TYPE)
1158 datum = convert_from_reference (datum);
1159
1160 if (! TYPE_USES_COMPLEX_INHERITANCE (type))
1161 rval = build (COMPONENT_REF, TREE_TYPE (CLASSTYPE_VFIELD (type)),
1162 datum, CLASSTYPE_VFIELD (type));
1163 else
1164 rval = build_component_ref (datum, DECL_NAME (CLASSTYPE_VFIELD (type)), NULL_TREE, 0);
1165 flag_assume_nonnull_objects = old_assume_nonnull_objects;
1166
1167 return rval;
1168 }
1169
1170 /* Build a call to a member of an object. I.e., one that overloads
1171 operator ()(), or is a pointer-to-function or pointer-to-method. */
1172
1173 static tree
1174 build_field_call (basetype_path, instance_ptr, name, parms)
1175 tree basetype_path, instance_ptr, name, parms;
1176 {
1177 tree field, instance;
1178
1179 if (name == ctor_identifier || name == dtor_identifier)
1180 return NULL_TREE;
1181
1182 if (instance_ptr == current_class_ptr)
1183 {
1184 /* Check to see if we really have a reference to an instance variable
1185 with `operator()()' overloaded. */
1186 field = IDENTIFIER_CLASS_VALUE (name);
1187
1188 if (field == NULL_TREE)
1189 {
1190 cp_error ("`this' has no member named `%D'", name);
1191 return error_mark_node;
1192 }
1193
1194 if (TREE_CODE (field) == FIELD_DECL)
1195 {
1196 /* If it's a field, try overloading operator (),
1197 or calling if the field is a pointer-to-function. */
1198 instance = build_component_ref_1 (current_class_ref, field, 0);
1199 if (instance == error_mark_node)
1200 return error_mark_node;
1201
1202 if (TYPE_LANG_SPECIFIC (TREE_TYPE (instance))
1203 && (TYPE_OVERLOADS_CALL_EXPR (TREE_TYPE (instance))
1204 || flag_ansi_overloading))
1205 return build_opfncall (CALL_EXPR, LOOKUP_NORMAL, instance, parms, NULL_TREE);
1206
1207 if (TREE_CODE (TREE_TYPE (instance)) == POINTER_TYPE)
1208 {
1209 if (TREE_CODE (TREE_TYPE (TREE_TYPE (instance))) == FUNCTION_TYPE)
1210 return build_function_call (instance, parms);
1211 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (instance))) == METHOD_TYPE)
1212 return build_function_call (instance, tree_cons (NULL_TREE, current_class_ptr, parms));
1213 }
1214 }
1215 return NULL_TREE;
1216 }
1217
1218 /* Check to see if this is not really a reference to an instance variable
1219 with `operator()()' overloaded. */
1220 field = lookup_field (basetype_path, name, 1, 0);
1221
1222 /* This can happen if the reference was ambiguous or for access
1223 violations. */
1224 if (field == error_mark_node)
1225 return error_mark_node;
1226
1227 if (field)
1228 {
1229 tree basetype;
1230 tree ftype = TREE_TYPE (field);
1231
1232 if (TREE_CODE (ftype) == REFERENCE_TYPE)
1233 ftype = TREE_TYPE (ftype);
1234
1235 if (TYPE_LANG_SPECIFIC (ftype)
1236 && (TYPE_OVERLOADS_CALL_EXPR (ftype) || flag_ansi_overloading))
1237 {
1238 /* Make the next search for this field very short. */
1239 basetype = DECL_FIELD_CONTEXT (field);
1240 instance_ptr = convert_pointer_to (basetype, instance_ptr);
1241
1242 instance = build_indirect_ref (instance_ptr, NULL_PTR);
1243 return build_opfncall (CALL_EXPR, LOOKUP_NORMAL,
1244 build_component_ref_1 (instance, field, 0),
1245 parms, NULL_TREE);
1246 }
1247 if (TREE_CODE (ftype) == POINTER_TYPE)
1248 {
1249 if (TREE_CODE (TREE_TYPE (ftype)) == FUNCTION_TYPE
1250 || TREE_CODE (TREE_TYPE (ftype)) == METHOD_TYPE)
1251 {
1252 /* This is a member which is a pointer to function. */
1253 tree ref
1254 = build_component_ref_1 (build_indirect_ref (instance_ptr,
1255 NULL_PTR),
1256 field, LOOKUP_COMPLAIN);
1257 if (ref == error_mark_node)
1258 return error_mark_node;
1259 return build_function_call (ref, parms);
1260 }
1261 }
1262 else if (TREE_CODE (ftype) == METHOD_TYPE)
1263 {
1264 error ("invalid call via pointer-to-member function");
1265 return error_mark_node;
1266 }
1267 else
1268 return NULL_TREE;
1269 }
1270 return NULL_TREE;
1271 }
1272
1273 static tree
1274 find_scoped_type (type, inner_name, inner_types)
1275 tree type, inner_name, inner_types;
1276 {
1277 tree tags = CLASSTYPE_TAGS (type);
1278
1279 while (tags)
1280 {
1281 /* The TREE_PURPOSE of an enum tag (which becomes a member of the
1282 enclosing class) is set to the name for the enum type. So, if
1283 inner_name is `bar', and we strike `baz' for `enum bar { baz }',
1284 then this test will be true. */
1285 if (TREE_PURPOSE (tags) == inner_name)
1286 {
1287 if (inner_types == NULL_TREE)
1288 return TYPE_MAIN_DECL (TREE_VALUE (tags));
1289 return resolve_scope_to_name (TREE_VALUE (tags), inner_types);
1290 }
1291 tags = TREE_CHAIN (tags);
1292 }
1293
1294 /* Look for a TYPE_DECL. */
1295 for (tags = TYPE_FIELDS (type); tags; tags = TREE_CHAIN (tags))
1296 if (TREE_CODE (tags) == TYPE_DECL && DECL_NAME (tags) == inner_name)
1297 {
1298 /* Code by raeburn. */
1299 if (inner_types == NULL_TREE)
1300 return tags;
1301 return resolve_scope_to_name (TREE_TYPE (tags), inner_types);
1302 }
1303
1304 return NULL_TREE;
1305 }
1306
1307 /* Resolve an expression NAME1::NAME2::...::NAMEn to
1308 the name that names the above nested type. INNER_TYPES
1309 is a chain of nested type names (held together by SCOPE_REFs);
1310 OUTER_TYPE is the type we know to enclose INNER_TYPES.
1311 Returns NULL_TREE if there is an error. */
1312
1313 tree
1314 resolve_scope_to_name (outer_type, inner_stuff)
1315 tree outer_type, inner_stuff;
1316 {
1317 register tree tmp;
1318 tree inner_name, inner_type;
1319
1320 if (outer_type == NULL_TREE && current_class_type != NULL_TREE)
1321 {
1322 /* We first try to look for a nesting in our current class context,
1323 then try any enclosing classes. */
1324 tree type = current_class_type;
1325
1326 while (type && (TREE_CODE (type) == RECORD_TYPE
1327 || TREE_CODE (type) == UNION_TYPE))
1328 {
1329 tree rval = resolve_scope_to_name (type, inner_stuff);
1330
1331 if (rval != NULL_TREE)
1332 return rval;
1333 type = DECL_CONTEXT (TYPE_MAIN_DECL (type));
1334 }
1335 }
1336
1337 if (TREE_CODE (inner_stuff) == SCOPE_REF)
1338 {
1339 inner_name = TREE_OPERAND (inner_stuff, 0);
1340 inner_type = TREE_OPERAND (inner_stuff, 1);
1341 }
1342 else
1343 {
1344 inner_name = inner_stuff;
1345 inner_type = NULL_TREE;
1346 }
1347
1348 if (outer_type == NULL_TREE)
1349 {
1350 tree x;
1351 /* If we have something that's already a type by itself,
1352 use that. */
1353 if (IDENTIFIER_HAS_TYPE_VALUE (inner_name))
1354 {
1355 if (inner_type)
1356 return resolve_scope_to_name (IDENTIFIER_TYPE_VALUE (inner_name),
1357 inner_type);
1358 return inner_name;
1359 }
1360
1361 x = lookup_name (inner_name, 0);
1362
1363 if (x && TREE_CODE (x) == NAMESPACE_DECL)
1364 {
1365 x = lookup_namespace_name (x, inner_type);
1366 return x;
1367 }
1368 return NULL_TREE;
1369 }
1370
1371 if (! IS_AGGR_TYPE (outer_type))
1372 return NULL_TREE;
1373
1374 /* Look for member classes or enums. */
1375 tmp = find_scoped_type (outer_type, inner_name, inner_type);
1376
1377 /* If it's not a type in this class, then go down into the
1378 base classes and search there. */
1379 if (! tmp && TYPE_BINFO (outer_type))
1380 {
1381 tree binfos = TYPE_BINFO_BASETYPES (outer_type);
1382 int i, n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
1383
1384 for (i = 0; i < n_baselinks; i++)
1385 {
1386 tree base_binfo = TREE_VEC_ELT (binfos, i);
1387 tmp = resolve_scope_to_name (BINFO_TYPE (base_binfo), inner_stuff);
1388 if (tmp)
1389 return tmp;
1390 }
1391 tmp = NULL_TREE;
1392 }
1393
1394 return tmp;
1395 }
1396
1397 /* Build a method call of the form `EXP->SCOPES::NAME (PARMS)'.
1398 This is how virtual function calls are avoided. */
1399
1400 tree
1401 build_scoped_method_call (exp, basetype, name, parms)
1402 tree exp, basetype, name, parms;
1403 {
1404 /* Because this syntactic form does not allow
1405 a pointer to a base class to be `stolen',
1406 we need not protect the derived->base conversion
1407 that happens here.
1408
1409 @@ But we do have to check access privileges later. */
1410 tree binfo, decl;
1411 tree type = TREE_TYPE (exp);
1412
1413 if (type == error_mark_node
1414 || basetype == error_mark_node)
1415 return error_mark_node;
1416
1417 if (processing_template_decl)
1418 {
1419 if (TREE_CODE (name) == BIT_NOT_EXPR)
1420 {
1421 tree type = get_aggr_from_typedef (TREE_OPERAND (name, 0), 1);
1422 name = build_min_nt (BIT_NOT_EXPR, type);
1423 }
1424 name = build_min_nt (SCOPE_REF, basetype, name);
1425 return build_min_nt (METHOD_CALL_EXPR, name, exp, parms, NULL_TREE);
1426 }
1427
1428 if (TREE_CODE (type) == REFERENCE_TYPE)
1429 type = TREE_TYPE (type);
1430
1431 if (TREE_CODE (basetype) == TREE_VEC)
1432 {
1433 binfo = basetype;
1434 basetype = BINFO_TYPE (binfo);
1435 }
1436 else
1437 binfo = NULL_TREE;
1438
1439 /* Destructors can be "called" for simple types; see 5.2.4 and 12.4 Note
1440 that explicit ~int is caught in the parser; this deals with typedefs
1441 and template parms. */
1442 if (TREE_CODE (name) == BIT_NOT_EXPR && ! IS_AGGR_TYPE (basetype))
1443 {
1444 if (type != basetype)
1445 cp_error ("type of `%E' does not match destructor type `%T' (type was `%T')",
1446 exp, basetype, type);
1447 name = TREE_OPERAND (name, 0);
1448 if (basetype != name && basetype != get_type_value (name))
1449 cp_error ("qualified type `%T' does not match destructor name `~%T'",
1450 basetype, name);
1451 return cp_convert (void_type_node, exp);
1452 }
1453
1454 if (! is_aggr_type (basetype, 1))
1455 return error_mark_node;
1456
1457 if (! IS_AGGR_TYPE (type))
1458 {
1459 cp_error ("base object `%E' of scoped method call is of non-aggregate type `%T'",
1460 exp, type);
1461 return error_mark_node;
1462 }
1463
1464 if (! binfo)
1465 {
1466 binfo = get_binfo (basetype, type, 1);
1467 if (binfo == error_mark_node)
1468 return error_mark_node;
1469 if (! binfo)
1470 error_not_base_type (basetype, type);
1471 }
1472
1473 if (binfo)
1474 {
1475 if (TREE_CODE (exp) == INDIRECT_REF)
1476 decl = build_indirect_ref
1477 (convert_pointer_to_real
1478 (binfo, build_unary_op (ADDR_EXPR, exp, 0)), NULL_PTR);
1479 else
1480 decl = build_scoped_ref (exp, basetype);
1481
1482 /* Call to a destructor. */
1483 if (TREE_CODE (name) == BIT_NOT_EXPR)
1484 {
1485 /* Explicit call to destructor. */
1486 name = TREE_OPERAND (name, 0);
1487 if (! (name == TYPE_MAIN_VARIANT (TREE_TYPE (decl))
1488 || name == constructor_name (TREE_TYPE (decl))
1489 || TREE_TYPE (decl) == get_type_value (name)))
1490 {
1491 cp_error
1492 ("qualified type `%T' does not match destructor name `~%T'",
1493 TREE_TYPE (decl), name);
1494 return error_mark_node;
1495 }
1496 if (! TYPE_HAS_DESTRUCTOR (TREE_TYPE (decl)))
1497 return cp_convert (void_type_node, exp);
1498
1499 return build_delete (TREE_TYPE (decl), decl, integer_two_node,
1500 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR,
1501 0);
1502 }
1503
1504 /* Call to a method. */
1505 return build_method_call (decl, name, parms, binfo,
1506 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL);
1507 }
1508 return error_mark_node;
1509 }
1510
1511 static void
1512 print_candidates (candidates)
1513 tree candidates;
1514 {
1515 cp_error_at ("candidates are: %D", TREE_VALUE (candidates));
1516 candidates = TREE_CHAIN (candidates);
1517
1518 while (candidates)
1519 {
1520 cp_error_at (" %D", TREE_VALUE (candidates));
1521 candidates = TREE_CHAIN (candidates);
1522 }
1523 }
1524
1525 static void
1526 print_n_candidates (candidates, n)
1527 struct candidate *candidates;
1528 int n;
1529 {
1530 int i;
1531
1532 cp_error_at ("candidates are: %D", candidates[0].function);
1533 for (i = 1; i < n; i++)
1534 cp_error_at (" %D", candidates[i].function);
1535 }
1536
1537 /* We want the address of a function or method. We avoid creating a
1538 pointer-to-member function. */
1539
1540 tree
1541 build_addr_func (function)
1542 tree function;
1543 {
1544 tree type = TREE_TYPE (function);
1545
1546 /* We have to do these by hand to avoid real pointer to member
1547 functions. */
1548 if (TREE_CODE (type) == METHOD_TYPE)
1549 {
1550 tree addr;
1551
1552 type = build_pointer_type (type);
1553
1554 if (mark_addressable (function) == 0)
1555 return error_mark_node;
1556
1557 addr = build1 (ADDR_EXPR, type, function);
1558
1559 /* Address of a static or external variable or function counts
1560 as a constant */
1561 if (staticp (function))
1562 TREE_CONSTANT (addr) = 1;
1563
1564 function = addr;
1565 }
1566 else
1567 function = default_conversion (function);
1568
1569 return function;
1570 }
1571
1572 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
1573 POINTER_TYPE to those. Note, pointer to member function types
1574 (TYPE_PTRMEMFUNC_P) must be handled by our callers. */
1575
1576 tree
1577 build_call (function, result_type, parms)
1578 tree function, result_type, parms;
1579 {
1580 int is_constructor = 0;
1581
1582 function = build_addr_func (function);
1583
1584 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
1585 {
1586 sorry ("unable to call pointer to member function here");
1587 return error_mark_node;
1588 }
1589
1590 if (TREE_CODE (function) == ADDR_EXPR
1591 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
1592 && DECL_CONSTRUCTOR_P (TREE_OPERAND (function, 0)))
1593 is_constructor = 1;
1594
1595 function = build_nt (CALL_EXPR, function, parms, NULL_TREE);
1596 TREE_HAS_CONSTRUCTOR (function) = is_constructor;
1597 TREE_TYPE (function) = result_type;
1598 TREE_SIDE_EFFECTS (function) = 1;
1599
1600 return function;
1601 }
1602
1603 static tree
1604 default_parm_conversions (parms, last)
1605 tree parms, *last;
1606 {
1607 tree parm, parmtypes = NULL_TREE;
1608
1609 *last = NULL_TREE;
1610
1611 for (parm = parms; parm; parm = TREE_CHAIN (parm))
1612 {
1613 tree t = TREE_TYPE (TREE_VALUE (parm));
1614
1615 if (TREE_CODE (t) == OFFSET_TYPE
1616 || TREE_CODE (t) == METHOD_TYPE
1617 || TREE_CODE (t) == FUNCTION_TYPE)
1618 {
1619 TREE_VALUE (parm) = default_conversion (TREE_VALUE (parm));
1620 t = TREE_TYPE (TREE_VALUE (parm));
1621 }
1622
1623 if (t == error_mark_node)
1624 return error_mark_node;
1625
1626 *last = build_tree_list (NULL_TREE, t);
1627 parmtypes = chainon (parmtypes, *last);
1628 }
1629
1630 return parmtypes;
1631 }
1632
1633
1634 /* Build something of the form ptr->method (args)
1635 or object.method (args). This can also build
1636 calls to constructors, and find friends.
1637
1638 Member functions always take their class variable
1639 as a pointer.
1640
1641 INSTANCE is a class instance.
1642
1643 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
1644
1645 PARMS help to figure out what that NAME really refers to.
1646
1647 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
1648 down to the real instance type to use for access checking. We need this
1649 information to get protected accesses correct. This parameter is used
1650 by build_member_call.
1651
1652 FLAGS is the logical disjunction of zero or more LOOKUP_
1653 flags. See cp-tree.h for more info.
1654
1655 If this is all OK, calls build_function_call with the resolved
1656 member function.
1657
1658 This function must also handle being called to perform
1659 initialization, promotion/coercion of arguments, and
1660 instantiation of default parameters.
1661
1662 Note that NAME may refer to an instance variable name. If
1663 `operator()()' is defined for the type of that field, then we return
1664 that result. */
1665
1666 tree
1667 build_method_call (instance, name, parms, basetype_path, flags)
1668 tree instance, name, parms, basetype_path;
1669 int flags;
1670 {
1671 register tree function, fntype, value_type;
1672 register tree basetype, save_basetype;
1673 register tree baselink, result, parmtypes;
1674 tree last;
1675 int pass;
1676 tree access = access_public_node;
1677 tree orig_basetype = basetype_path ? BINFO_TYPE (basetype_path) : NULL_TREE;
1678
1679 /* Range of cases for vtable optimization. */
1680 enum vtable_needs { not_needed, maybe_needed, unneeded, needed };
1681 enum vtable_needs need_vtbl = not_needed;
1682
1683 char *name_kind;
1684 tree save_name = name;
1685 int ever_seen = 0;
1686 tree instance_ptr = NULL_TREE;
1687 int all_virtual = flag_all_virtual;
1688 int static_call_context = 0;
1689 tree found_fns = NULL_TREE;
1690
1691 /* Keep track of `const' and `volatile' objects. */
1692 int constp, volatilep;
1693
1694 #ifdef GATHER_STATISTICS
1695 n_build_method_call++;
1696 #endif
1697
1698 if (instance == error_mark_node
1699 || name == error_mark_node
1700 || parms == error_mark_node
1701 || (instance != NULL_TREE && TREE_TYPE (instance) == error_mark_node))
1702 return error_mark_node;
1703
1704 if (processing_template_decl)
1705 {
1706 if (TREE_CODE (name) == BIT_NOT_EXPR)
1707 {
1708 tree type = get_aggr_from_typedef (TREE_OPERAND (name, 0), 1);
1709 name = build_min_nt (BIT_NOT_EXPR, type);
1710 }
1711
1712 return build_min_nt (METHOD_CALL_EXPR, name, instance, parms, NULL_TREE);
1713 }
1714
1715 /* This is the logic that magically deletes the second argument to
1716 operator delete, if it is not needed. */
1717 if (name == ansi_opname[(int) DELETE_EXPR] && list_length (parms)==2)
1718 {
1719 tree save_last = TREE_CHAIN (parms);
1720 tree result;
1721 /* get rid of unneeded argument */
1722 TREE_CHAIN (parms) = NULL_TREE;
1723 result = build_method_call (instance, name, parms, basetype_path,
1724 (LOOKUP_SPECULATIVELY|flags)
1725 &~LOOKUP_COMPLAIN);
1726 /* If it finds a match, return it. */
1727 if (result)
1728 return build_method_call (instance, name, parms, basetype_path, flags);
1729 /* If it doesn't work, two argument delete must work */
1730 TREE_CHAIN (parms) = save_last;
1731 }
1732 /* We already know whether it's needed or not for vec delete. */
1733 else if (name == ansi_opname[(int) VEC_DELETE_EXPR]
1734 && TYPE_LANG_SPECIFIC (TREE_TYPE (instance))
1735 && ! TYPE_VEC_DELETE_TAKES_SIZE (TREE_TYPE (instance)))
1736 TREE_CHAIN (parms) = NULL_TREE;
1737
1738 if (TREE_CODE (name) == BIT_NOT_EXPR)
1739 {
1740 flags |= LOOKUP_DESTRUCTOR;
1741 name = TREE_OPERAND (name, 0);
1742 if (parms)
1743 error ("destructors take no parameters");
1744 basetype = TREE_TYPE (instance);
1745 if (TREE_CODE (basetype) == REFERENCE_TYPE)
1746 basetype = TREE_TYPE (basetype);
1747 if (! (name == basetype
1748 || (IS_AGGR_TYPE (basetype)
1749 && name == constructor_name (basetype))
1750 || basetype == get_type_value (name)))
1751 {
1752 cp_error ("destructor name `~%D' does not match type `%T' of expression",
1753 name, basetype);
1754 return cp_convert (void_type_node, instance);
1755 }
1756
1757 if (! TYPE_HAS_DESTRUCTOR (basetype))
1758 return cp_convert (void_type_node, instance);
1759 instance = default_conversion (instance);
1760 instance_ptr = build_unary_op (ADDR_EXPR, instance, 0);
1761 return build_delete (build_pointer_type (basetype),
1762 instance_ptr, integer_two_node,
1763 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0);
1764 }
1765
1766 if (flag_ansi_overloading)
1767 return build_new_method_call (instance, name, parms, basetype_path, flags);
1768
1769 {
1770 char *xref_name;
1771
1772 /* Initialize name for error reporting. */
1773 if (IDENTIFIER_OPNAME_P (name) && ! IDENTIFIER_TYPENAME_P (name))
1774 {
1775 char *p = operator_name_string (name);
1776 xref_name = (char *)alloca (strlen (p) + 10);
1777 sprintf (xref_name, "operator %s", p);
1778 }
1779 else if (TREE_CODE (name) == SCOPE_REF)
1780 xref_name = IDENTIFIER_POINTER (TREE_OPERAND (name, 1));
1781 else
1782 xref_name = IDENTIFIER_POINTER (name);
1783
1784 GNU_xref_call (current_function_decl, xref_name);
1785 }
1786
1787 if (instance == NULL_TREE)
1788 {
1789 basetype = NULL_TREE;
1790 /* Check cases where this is really a call to raise
1791 an exception. */
1792 if (current_class_type && TREE_CODE (name) == IDENTIFIER_NODE)
1793 {
1794 basetype = purpose_member (name, CLASSTYPE_TAGS (current_class_type));
1795 if (basetype)
1796 basetype = TREE_VALUE (basetype);
1797 }
1798 else if (TREE_CODE (name) == SCOPE_REF
1799 && TREE_CODE (TREE_OPERAND (name, 0)) == IDENTIFIER_NODE)
1800 {
1801 if (! is_aggr_typedef (TREE_OPERAND (name, 0), 1))
1802 return error_mark_node;
1803 basetype = purpose_member (TREE_OPERAND (name, 1),
1804 CLASSTYPE_TAGS (IDENTIFIER_TYPE_VALUE (TREE_OPERAND (name, 0))));
1805 if (basetype)
1806 basetype = TREE_VALUE (basetype);
1807 }
1808
1809 if (basetype != NULL_TREE)
1810 ;
1811 /* call to a constructor... */
1812 else if (basetype_path)
1813 {
1814 basetype = BINFO_TYPE (basetype_path);
1815 if (name == TYPE_IDENTIFIER (basetype))
1816 name = ctor_identifier;
1817 }
1818 else if (IDENTIFIER_HAS_TYPE_VALUE (name))
1819 {
1820 basetype = IDENTIFIER_TYPE_VALUE (name);
1821 name = ctor_identifier;
1822 }
1823 else
1824 {
1825 tree typedef_name = lookup_name (name, 1);
1826 if (typedef_name && TREE_CODE (typedef_name) == TYPE_DECL)
1827 {
1828 /* Canonicalize the typedef name. */
1829 basetype = TREE_TYPE (typedef_name);
1830 name = ctor_identifier;
1831 }
1832 else
1833 {
1834 cp_error ("no constructor named `%T' in scope",
1835 name);
1836 return error_mark_node;
1837 }
1838 }
1839
1840 if (! IS_AGGR_TYPE (basetype))
1841 {
1842 non_aggr_error:
1843 if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
1844 cp_error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
1845 name, instance, basetype);
1846
1847 return error_mark_node;
1848 }
1849 }
1850 else if (instance == current_class_ref || instance == current_class_ptr)
1851 {
1852 /* When doing initialization, we side-effect the TREE_TYPE of
1853 current_class_ref, hence we cannot set up BASETYPE from CURRENT_CLASS_TYPE. */
1854 basetype = TREE_TYPE (current_class_ref);
1855
1856 /* Anything manifestly `this' in constructors and destructors
1857 has a known type, so virtual function tables are not needed. */
1858 if (TYPE_VIRTUAL_P (basetype)
1859 && !(flags & LOOKUP_NONVIRTUAL))
1860 need_vtbl = (dtor_label || ctor_label)
1861 ? unneeded : maybe_needed;
1862
1863 /* If `this' is a signature pointer and `name' is not a constructor,
1864 we are calling a signature member function. In that case, set the
1865 `basetype' to the signature type and dereference the `optr' field. */
1866 if (IS_SIGNATURE_POINTER (basetype)
1867 && TYPE_IDENTIFIER (basetype) != name)
1868 {
1869 basetype = SIGNATURE_TYPE (basetype);
1870 instance_ptr = instance;
1871 basetype_path = TYPE_BINFO (basetype);
1872 }
1873 else
1874 {
1875 instance = current_class_ref;
1876 instance_ptr = current_class_ptr;
1877 basetype_path = TYPE_BINFO (current_class_type);
1878 }
1879 result = build_field_call (basetype_path, instance_ptr, name, parms);
1880
1881 if (result)
1882 return result;
1883 }
1884 else if (TREE_CODE (instance) == RESULT_DECL)
1885 {
1886 basetype = TREE_TYPE (instance);
1887 /* Should we ever have to make a virtual function reference
1888 from a RESULT_DECL, know that it must be of fixed type
1889 within the scope of this function. */
1890 if (!(flags & LOOKUP_NONVIRTUAL) && TYPE_VIRTUAL_P (basetype))
1891 need_vtbl = maybe_needed;
1892 instance_ptr = build1 (ADDR_EXPR, build_pointer_type (basetype), instance);
1893 }
1894 else
1895 {
1896 /* The MAIN_VARIANT of the type that `instance_ptr' winds up being. */
1897 tree inst_ptr_basetype;
1898
1899 static_call_context
1900 = (TREE_CODE (instance) == INDIRECT_REF
1901 && TREE_CODE (TREE_OPERAND (instance, 0)) == NOP_EXPR
1902 && TREE_OPERAND (TREE_OPERAND (instance, 0), 0) == error_mark_node);
1903
1904 if (TREE_CODE (instance) == OFFSET_REF)
1905 instance = resolve_offset_ref (instance);
1906
1907 /* the base type of an instance variable is pointer to class */
1908 basetype = TREE_TYPE (instance);
1909
1910 if (TREE_CODE (basetype) == REFERENCE_TYPE)
1911 {
1912 basetype = TREE_TYPE (basetype);
1913 if (! IS_AGGR_TYPE (basetype))
1914 goto non_aggr_error;
1915 /* Call to convert not needed because we are remaining
1916 within the same type. */
1917 instance_ptr = build1 (NOP_EXPR, build_pointer_type (basetype),
1918 instance);
1919 inst_ptr_basetype = TYPE_MAIN_VARIANT (basetype);
1920 }
1921 else
1922 {
1923 if (! IS_AGGR_TYPE (basetype)
1924 && ! (TYPE_LANG_SPECIFIC (basetype)
1925 && (IS_SIGNATURE_POINTER (basetype)
1926 || IS_SIGNATURE_REFERENCE (basetype))))
1927 goto non_aggr_error;
1928
1929 /* If `instance' is a signature pointer/reference and `name' is
1930 not a constructor, we are calling a signature member function.
1931 In that case set the `basetype' to the signature type. */
1932 if ((IS_SIGNATURE_POINTER (basetype)
1933 || IS_SIGNATURE_REFERENCE (basetype))
1934 && TYPE_IDENTIFIER (basetype) != name)
1935 basetype = SIGNATURE_TYPE (basetype);
1936
1937 basetype = complete_type (basetype);
1938
1939 if ((IS_SIGNATURE (basetype)
1940 && (instance_ptr = instance))
1941 || (lvalue_p (instance)
1942 && (instance_ptr = build_unary_op (ADDR_EXPR, instance, 0)))
1943 || (instance_ptr = unary_complex_lvalue (ADDR_EXPR, instance)))
1944 {
1945 if (instance_ptr == error_mark_node)
1946 return error_mark_node;
1947 }
1948 else if (TREE_CODE (instance) == NOP_EXPR
1949 || TREE_CODE (instance) == CONSTRUCTOR)
1950 {
1951 /* A cast is not an lvalue. Initialize a fresh temp
1952 with the value we are casting from, and proceed with
1953 that temporary. We can't cast to a reference type,
1954 so that simplifies the initialization to something
1955 we can manage. */
1956 tree temp = get_temp_name (TREE_TYPE (instance), 0);
1957 if (IS_AGGR_TYPE (TREE_TYPE (instance)))
1958 expand_aggr_init (temp, instance, 0, flags);
1959 else
1960 {
1961 store_init_value (temp, instance);
1962 expand_decl_init (temp);
1963 }
1964 instance = temp;
1965 instance_ptr = build_unary_op (ADDR_EXPR, instance, 0);
1966 }
1967 else
1968 {
1969 if (TREE_CODE (instance) != CALL_EXPR)
1970 my_friendly_abort (125);
1971 if (TYPE_NEEDS_CONSTRUCTING (basetype))
1972 instance = build_cplus_new (basetype, instance);
1973 else
1974 {
1975 instance = get_temp_name (basetype, 0);
1976 TREE_ADDRESSABLE (instance) = 1;
1977 }
1978 instance_ptr = build_unary_op (ADDR_EXPR, instance, 0);
1979 }
1980 /* @@ Should we call comp_target_types here? */
1981 if (IS_SIGNATURE (basetype))
1982 inst_ptr_basetype = basetype;
1983 else
1984 inst_ptr_basetype = TREE_TYPE (TREE_TYPE (instance_ptr));
1985 if (TYPE_MAIN_VARIANT (basetype) == TYPE_MAIN_VARIANT (inst_ptr_basetype))
1986 basetype = inst_ptr_basetype;
1987 else
1988 {
1989 instance_ptr = cp_convert (build_pointer_type (basetype), instance_ptr);
1990 if (instance_ptr == error_mark_node)
1991 return error_mark_node;
1992 }
1993 }
1994
1995 /* After converting `instance_ptr' above, `inst_ptr_basetype' was
1996 not updated, so we use `basetype' instead. */
1997 if (basetype_path == NULL_TREE
1998 && IS_SIGNATURE (basetype))
1999 basetype_path = TYPE_BINFO (basetype);
2000 else if (basetype_path == NULL_TREE
2001 || (BINFO_TYPE (basetype_path)
2002 != TYPE_MAIN_VARIANT (inst_ptr_basetype)))
2003 basetype_path = TYPE_BINFO (inst_ptr_basetype);
2004
2005 result = build_field_call (basetype_path, instance_ptr, name, parms);
2006 if (result)
2007 return result;
2008
2009 if (!(flags & LOOKUP_NONVIRTUAL) && TYPE_VIRTUAL_P (basetype))
2010 {
2011 if (TREE_SIDE_EFFECTS (instance_ptr))
2012 {
2013 /* This action is needed because the instance is needed
2014 for providing the base of the virtual function table.
2015 Without using a SAVE_EXPR, the function we are building
2016 may be called twice, or side effects on the instance
2017 variable (such as a post-increment), may happen twice. */
2018 instance_ptr = save_expr (instance_ptr);
2019 instance = build_indirect_ref (instance_ptr, NULL_PTR);
2020 }
2021 else if (TREE_CODE (TREE_TYPE (instance)) == POINTER_TYPE)
2022 {
2023 /* This happens when called for operator new (). */
2024 instance = build_indirect_ref (instance, NULL_PTR);
2025 }
2026
2027 need_vtbl = maybe_needed;
2028 }
2029 }
2030
2031 if (save_name == ctor_identifier)
2032 save_name = TYPE_IDENTIFIER (basetype);
2033
2034 if (TYPE_SIZE (complete_type (basetype)) == 0)
2035 {
2036 /* This is worth complaining about, I think. */
2037 cp_error ("cannot lookup method in incomplete type `%T'", basetype);
2038 return error_mark_node;
2039 }
2040
2041 save_basetype = TYPE_MAIN_VARIANT (basetype);
2042
2043 parmtypes = default_parm_conversions (parms, &last);
2044 if (parmtypes == error_mark_node)
2045 {
2046 return error_mark_node;
2047 }
2048
2049 if (instance && IS_SIGNATURE (basetype))
2050 {
2051 /* @@ Should this be the constp/volatilep flags for the optr field
2052 of the signature pointer? */
2053 constp = TYPE_READONLY (basetype);
2054 volatilep = TYPE_VOLATILE (basetype);
2055 parms = tree_cons (NULL_TREE, instance_ptr, parms);
2056 }
2057 else if (instance)
2058 {
2059 /* TREE_READONLY (instance) fails for references. */
2060 constp = TYPE_READONLY (TREE_TYPE (TREE_TYPE (instance_ptr)));
2061 volatilep = TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (instance_ptr)));
2062 parms = tree_cons (NULL_TREE, instance_ptr, parms);
2063 }
2064 else
2065 {
2066 /* Raw constructors are always in charge. */
2067 if (TYPE_USES_VIRTUAL_BASECLASSES (basetype)
2068 && ! (flags & LOOKUP_HAS_IN_CHARGE))
2069 {
2070 flags |= LOOKUP_HAS_IN_CHARGE;
2071 parms = tree_cons (NULL_TREE, integer_one_node, parms);
2072 parmtypes = tree_cons (NULL_TREE, integer_type_node, parmtypes);
2073 }
2074
2075 constp = 0;
2076 volatilep = 0;
2077 instance_ptr = build_int_2 (0, 0);
2078 TREE_TYPE (instance_ptr) = build_pointer_type (basetype);
2079 parms = tree_cons (NULL_TREE, instance_ptr, parms);
2080 }
2081
2082 parmtypes = tree_cons (NULL_TREE, TREE_TYPE (instance_ptr), parmtypes);
2083
2084 if (last == NULL_TREE)
2085 last = parmtypes;
2086
2087 /* Look up function name in the structure type definition. */
2088
2089 /* FIXME Axe most of this now? */
2090 if ((IDENTIFIER_HAS_TYPE_VALUE (name)
2091 && ! IDENTIFIER_OPNAME_P (name)
2092 && IS_AGGR_TYPE (IDENTIFIER_TYPE_VALUE (name)))
2093 || name == constructor_name (basetype)
2094 || name == ctor_identifier)
2095 {
2096 tree tmp = NULL_TREE;
2097 if (IDENTIFIER_TYPE_VALUE (name) == basetype
2098 || name == constructor_name (basetype)
2099 || name == ctor_identifier)
2100 tmp = TYPE_BINFO (basetype);
2101 else
2102 tmp = get_binfo (IDENTIFIER_TYPE_VALUE (name), basetype, 0);
2103
2104 if (tmp != NULL_TREE)
2105 {
2106 name_kind = "constructor";
2107
2108 if (TYPE_USES_VIRTUAL_BASECLASSES (basetype)
2109 && ! (flags & LOOKUP_HAS_IN_CHARGE))
2110 {
2111 /* Constructors called for initialization
2112 only are never in charge. */
2113 tree tmplist;
2114
2115 flags |= LOOKUP_HAS_IN_CHARGE;
2116 tmplist = tree_cons (NULL_TREE, integer_zero_node,
2117 TREE_CHAIN (parms));
2118 TREE_CHAIN (parms) = tmplist;
2119 tmplist = tree_cons (NULL_TREE, integer_type_node, TREE_CHAIN (parmtypes));
2120 TREE_CHAIN (parmtypes) = tmplist;
2121 }
2122 basetype = BINFO_TYPE (tmp);
2123 }
2124 else
2125 name_kind = "method";
2126 }
2127 else
2128 name_kind = "method";
2129
2130 if (basetype_path == NULL_TREE
2131 || BINFO_TYPE (basetype_path) != TYPE_MAIN_VARIANT (basetype))
2132 basetype_path = TYPE_BINFO (basetype);
2133 result = lookup_fnfields (basetype_path, name,
2134 (flags & LOOKUP_COMPLAIN));
2135 if (result == error_mark_node)
2136 return error_mark_node;
2137
2138 for (pass = 0; pass < 2; pass++)
2139 {
2140 struct candidate *candidates;
2141 struct candidate *cp;
2142 int len;
2143 unsigned best = 1;
2144
2145 baselink = result;
2146
2147 if (pass > 0)
2148 {
2149 candidates
2150 = (struct candidate *) alloca ((ever_seen+1)
2151 * sizeof (struct candidate));
2152 bzero ((char *) candidates, (ever_seen + 1) * sizeof (struct candidate));
2153 cp = candidates;
2154 len = list_length (parms);
2155 ever_seen = 0;
2156
2157 /* First see if a global function has a shot at it. */
2158 if (flags & LOOKUP_GLOBAL)
2159 {
2160 tree friend_parms;
2161 tree parm = instance_ptr;
2162
2163 if (TREE_CODE (TREE_TYPE (parm)) == REFERENCE_TYPE)
2164 parm = convert_from_reference (parm);
2165 else if (TREE_CODE (TREE_TYPE (parm)) == POINTER_TYPE)
2166 parm = build_indirect_ref (parm, "friendifying parms (compiler error)");
2167 else
2168 my_friendly_abort (167);
2169
2170 friend_parms = tree_cons (NULL_TREE, parm, TREE_CHAIN (parms));
2171
2172 cp->h_len = len;
2173 cp->harshness = (struct harshness_code *)
2174 alloca ((len + 1) * sizeof (struct harshness_code));
2175
2176 result = build_overload_call_real (name, friend_parms, 0, cp, 1);
2177
2178 /* If it turns out to be the one we were actually looking for
2179 (it was probably a friend function), the return the
2180 good result. */
2181 if (TREE_CODE (result) == CALL_EXPR)
2182 return result;
2183
2184 while ((cp->h.code & EVIL_CODE) == 0)
2185 {
2186 /* non-standard uses: set the field to 0 to indicate
2187 we are using a non-member function. */
2188 cp->u.field = 0;
2189 if (cp->harshness[len].distance == 0
2190 && cp->h.code < best)
2191 best = cp->h.code;
2192 cp += 1;
2193 }
2194 }
2195 }
2196
2197 if (baselink)
2198 {
2199 /* We have a hit (of sorts). If the parameter list is
2200 "error_mark_node", or some variant thereof, it won't
2201 match any methods. Since we have verified that the is
2202 some method vaguely matching this one (in name at least),
2203 silently return.
2204
2205 Don't stop for friends, however. */
2206 basetype_path = TREE_PURPOSE (baselink);
2207
2208 function = TREE_VALUE (baselink);
2209 if (TREE_CODE (basetype_path) == TREE_LIST)
2210 basetype_path = TREE_VALUE (basetype_path);
2211 basetype = BINFO_TYPE (basetype_path);
2212
2213 for (; function; function = DECL_CHAIN (function))
2214 {
2215 #ifdef GATHER_STATISTICS
2216 n_inner_fields_searched++;
2217 #endif
2218 ever_seen++;
2219 if (pass > 0)
2220 found_fns = tree_cons (NULL_TREE, function, found_fns);
2221
2222 /* Not looking for friends here. */
2223 if (TREE_CODE (TREE_TYPE (function)) == FUNCTION_TYPE
2224 && ! DECL_STATIC_FUNCTION_P (function))
2225 continue;
2226
2227 if (pass > 0)
2228 {
2229 tree these_parms = parms;
2230
2231 #ifdef GATHER_STATISTICS
2232 n_inner_fields_searched++;
2233 #endif
2234 cp->h_len = len;
2235 cp->harshness = (struct harshness_code *)
2236 alloca ((len + 1) * sizeof (struct harshness_code));
2237
2238 if (DECL_STATIC_FUNCTION_P (function))
2239 these_parms = TREE_CHAIN (these_parms);
2240 compute_conversion_costs (function, these_parms, cp, len);
2241
2242 if ((cp->h.code & EVIL_CODE) == 0)
2243 {
2244 cp->u.field = function;
2245 cp->function = function;
2246 cp->basetypes = basetype_path;
2247
2248 /* Don't allow non-converting constructors to convert. */
2249 if (flags & LOOKUP_ONLYCONVERTING
2250 && DECL_LANG_SPECIFIC (function)
2251 && DECL_NONCONVERTING_P (function))
2252 continue;
2253
2254 /* No "two-level" conversions. */
2255 if (flags & LOOKUP_NO_CONVERSION
2256 && (cp->h.code & USER_CODE))
2257 continue;
2258
2259 cp++;
2260 }
2261 }
2262 }
2263 }
2264
2265 if (pass == 0)
2266 {
2267 tree igv = lookup_name_nonclass (name);
2268
2269 /* No exact match could be found. Now try to find match
2270 using default conversions. */
2271 if ((flags & LOOKUP_GLOBAL) && igv)
2272 {
2273 if (TREE_CODE (igv) == FUNCTION_DECL)
2274 ever_seen += 1;
2275 else if (TREE_CODE (igv) == TREE_LIST)
2276 ever_seen += count_functions (igv);
2277 }
2278
2279 if (ever_seen == 0)
2280 {
2281 if ((flags & (LOOKUP_SPECULATIVELY|LOOKUP_COMPLAIN))
2282 == LOOKUP_SPECULATIVELY)
2283 return NULL_TREE;
2284
2285 TREE_CHAIN (last) = void_list_node;
2286 if (flags & LOOKUP_GLOBAL)
2287 cp_error ("no global or member function `%D(%A)' defined",
2288 save_name, parmtypes);
2289 else
2290 cp_error ("no member function `%T::%D(%A)' defined",
2291 save_basetype, save_name, TREE_CHAIN (parmtypes));
2292 return error_mark_node;
2293 }
2294 continue;
2295 }
2296
2297 if (cp - candidates != 0)
2298 {
2299 /* Rank from worst to best. Then cp will point to best one.
2300 Private fields have their bits flipped. For unsigned
2301 numbers, this should make them look very large.
2302 If the best alternate has a (signed) negative value,
2303 then all we ever saw were private members. */
2304 if (cp - candidates > 1)
2305 {
2306 int n_candidates = cp - candidates;
2307 extern int warn_synth;
2308 TREE_VALUE (parms) = instance_ptr;
2309 cp = ideal_candidate (candidates, n_candidates, len);
2310 if (cp == (struct candidate *)0)
2311 {
2312 if (flags & LOOKUP_COMPLAIN)
2313 {
2314 TREE_CHAIN (last) = void_list_node;
2315 cp_error ("call of overloaded %s `%D(%A)' is ambiguous",
2316 name_kind, save_name, TREE_CHAIN (parmtypes));
2317 print_n_candidates (candidates, n_candidates);
2318 }
2319 return error_mark_node;
2320 }
2321 if (cp->h.code & EVIL_CODE)
2322 return error_mark_node;
2323 if (warn_synth
2324 && DECL_NAME (cp->function) == ansi_opname[MODIFY_EXPR]
2325 && DECL_ARTIFICIAL (cp->function)
2326 && n_candidates == 2)
2327 {
2328 cp_warning ("using synthesized `%#D' for copy assignment",
2329 cp->function);
2330 cp_warning_at (" where cfront would use `%#D'",
2331 candidates->function);
2332 }
2333 }
2334 else if (cp[-1].h.code & EVIL_CODE)
2335 {
2336 if (flags & LOOKUP_COMPLAIN)
2337 cp_error ("ambiguous type conversion requested for %s `%D'",
2338 name_kind, save_name);
2339 return error_mark_node;
2340 }
2341 else
2342 cp--;
2343
2344 /* The global function was the best, so use it. */
2345 if (cp->u.field == 0)
2346 {
2347 /* We must convert the instance pointer into a reference type.
2348 Global overloaded functions can only either take
2349 aggregate objects (which come for free from references)
2350 or reference data types anyway. */
2351 TREE_VALUE (parms) = copy_node (instance_ptr);
2352 TREE_TYPE (TREE_VALUE (parms)) = build_reference_type (TREE_TYPE (TREE_TYPE (instance_ptr)));
2353 return build_function_call (cp->function, parms);
2354 }
2355
2356 function = cp->function;
2357 basetype_path = cp->basetypes;
2358 if (! DECL_STATIC_FUNCTION_P (function))
2359 TREE_VALUE (parms) = cp->arg;
2360 goto found_and_maybe_warn;
2361 }
2362
2363 if (flags & (LOOKUP_COMPLAIN|LOOKUP_SPECULATIVELY))
2364 {
2365 if ((flags & (LOOKUP_SPECULATIVELY|LOOKUP_COMPLAIN))
2366 == LOOKUP_SPECULATIVELY)
2367 return NULL_TREE;
2368
2369 if (DECL_STATIC_FUNCTION_P (cp->function))
2370 parms = TREE_CHAIN (parms);
2371 if (ever_seen)
2372 {
2373 if (flags & LOOKUP_SPECULATIVELY)
2374 return NULL_TREE;
2375 if (static_call_context
2376 && TREE_CODE (TREE_TYPE (cp->function)) == METHOD_TYPE)
2377 cp_error ("object missing in call to `%D'", cp->function);
2378 else if (ever_seen > 1)
2379 {
2380 TREE_CHAIN (last) = void_list_node;
2381 cp_error ("no matching function for call to `%T::%D (%A)%V'",
2382 TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (instance_ptr))),
2383 save_name, TREE_CHAIN (parmtypes),
2384 TREE_TYPE (TREE_TYPE (instance_ptr)));
2385 TREE_CHAIN (last) = NULL_TREE;
2386 print_candidates (found_fns);
2387 }
2388 else
2389 report_type_mismatch (cp, parms, name_kind);
2390 return error_mark_node;
2391 }
2392
2393 if ((flags & (LOOKUP_SPECULATIVELY|LOOKUP_COMPLAIN))
2394 == LOOKUP_COMPLAIN)
2395 {
2396 cp_error ("%T has no method named %D", save_basetype, save_name);
2397 return error_mark_node;
2398 }
2399 return NULL_TREE;
2400 }
2401 continue;
2402
2403 found_and_maybe_warn:
2404 if ((cp->harshness[0].code & CONST_CODE)
2405 /* 12.1p2: Constructors can be called for const objects. */
2406 && ! DECL_CONSTRUCTOR_P (cp->function))
2407 {
2408 if (flags & LOOKUP_COMPLAIN)
2409 {
2410 cp_error_at ("non-const member function `%D'", cp->function);
2411 error ("called for const object at this point in file");
2412 }
2413 /* Not good enough for a match. */
2414 else
2415 return error_mark_node;
2416 }
2417 goto found;
2418 }
2419 /* Silently return error_mark_node. */
2420 return error_mark_node;
2421
2422 found:
2423 if (flags & LOOKUP_PROTECT)
2424 access = compute_access (basetype_path, function);
2425
2426 if (access == access_private_node)
2427 {
2428 if (flags & LOOKUP_COMPLAIN)
2429 {
2430 cp_error_at ("%s `%+#D' is %s", name_kind, function,
2431 TREE_PRIVATE (function) ? "private"
2432 : "from private base class");
2433 error ("within this context");
2434 }
2435 return error_mark_node;
2436 }
2437 else if (access == access_protected_node)
2438 {
2439 if (flags & LOOKUP_COMPLAIN)
2440 {
2441 cp_error_at ("%s `%+#D' %s", name_kind, function,
2442 TREE_PROTECTED (function) ? "is protected"
2443 : "has protected accessibility");
2444 error ("within this context");
2445 }
2446 return error_mark_node;
2447 }
2448
2449 /* From here on down, BASETYPE is the type that INSTANCE_PTR's
2450 type (if it exists) is a pointer to. */
2451
2452 if (DECL_ABSTRACT_VIRTUAL_P (function)
2453 && instance == current_class_ref
2454 && DECL_CONSTRUCTOR_P (current_function_decl)
2455 && ! (flags & LOOKUP_NONVIRTUAL)
2456 && value_member (function, get_abstract_virtuals (basetype)))
2457 cp_error ("abstract virtual `%#D' called from constructor", function);
2458
2459 if (IS_SIGNATURE (basetype))
2460 {
2461 if (static_call_context)
2462 {
2463 cp_error ("cannot call signature member function `%T::%D' without signature pointer/reference",
2464 basetype, save_name);
2465 return error_mark_node;
2466 }
2467 return build_signature_method_call (function, parms);
2468 }
2469
2470 function = DECL_MAIN_VARIANT (function);
2471 mark_used (function);
2472
2473 fntype = TREE_TYPE (function);
2474 if (TREE_CODE (fntype) == POINTER_TYPE)
2475 fntype = TREE_TYPE (fntype);
2476 basetype = DECL_CLASS_CONTEXT (function);
2477
2478 /* If we are referencing a virtual function from an object
2479 of effectively static type, then there is no need
2480 to go through the virtual function table. */
2481 if (need_vtbl == maybe_needed)
2482 {
2483 int fixed_type = resolves_to_fixed_type_p (instance, 0);
2484
2485 if (all_virtual == 1
2486 && DECL_VINDEX (function)
2487 && may_be_remote (basetype))
2488 need_vtbl = needed;
2489 else if (DECL_VINDEX (function))
2490 need_vtbl = fixed_type ? unneeded : needed;
2491 else
2492 need_vtbl = not_needed;
2493 }
2494
2495 if (TREE_CODE (fntype) == METHOD_TYPE && static_call_context
2496 && !DECL_CONSTRUCTOR_P (function))
2497 {
2498 /* Let's be nasty to the user now, and give reasonable
2499 error messages. */
2500 instance_ptr = current_class_ptr;
2501 if (instance_ptr)
2502 {
2503 if (basetype != current_class_type)
2504 {
2505 if (basetype == error_mark_node)
2506 return error_mark_node;
2507 else
2508 {
2509 if (orig_basetype != NULL_TREE)
2510 error_not_base_type (orig_basetype, current_class_type);
2511 else
2512 error_not_base_type (function, current_class_type);
2513 return error_mark_node;
2514 }
2515 }
2516 }
2517 /* Only allow a static member function to call another static member
2518 function. */
2519 else if (DECL_LANG_SPECIFIC (function)
2520 && !DECL_STATIC_FUNCTION_P (function))
2521 {
2522 cp_error ("cannot call member function `%D' without object",
2523 function);
2524 return error_mark_node;
2525 }
2526 }
2527
2528 value_type = TREE_TYPE (fntype) ? TREE_TYPE (fntype) : void_type_node;
2529
2530 if (TYPE_SIZE (complete_type (value_type)) == 0)
2531 {
2532 if (flags & LOOKUP_COMPLAIN)
2533 incomplete_type_error (0, value_type);
2534 return error_mark_node;
2535 }
2536
2537 if (DECL_STATIC_FUNCTION_P (function))
2538 parms = convert_arguments (NULL_TREE, TYPE_ARG_TYPES (fntype),
2539 TREE_CHAIN (parms), function, LOOKUP_NORMAL);
2540 else if (need_vtbl == unneeded)
2541 {
2542 int sub_flags = DECL_CONSTRUCTOR_P (function) ? flags : LOOKUP_NORMAL;
2543 basetype = TREE_TYPE (instance);
2544 if (TYPE_METHOD_BASETYPE (TREE_TYPE (function))
2545 != TYPE_MAIN_VARIANT (basetype))
2546 {
2547 basetype = DECL_CLASS_CONTEXT (function);
2548 instance_ptr = convert_pointer_to (basetype, instance_ptr);
2549 instance = build_indirect_ref (instance_ptr, NULL_PTR);
2550 }
2551 parms = tree_cons (NULL_TREE, instance_ptr,
2552 convert_arguments (NULL_TREE, TREE_CHAIN (TYPE_ARG_TYPES (fntype)), TREE_CHAIN (parms), function, sub_flags));
2553 }
2554 else
2555 {
2556 if ((flags & LOOKUP_NONVIRTUAL) == 0)
2557 basetype = DECL_CONTEXT (function);
2558
2559 /* First parm could be integer_zerop with casts like
2560 ((Object*)0)->Object::IsA() */
2561 if (!integer_zerop (TREE_VALUE (parms)))
2562 {
2563 /* Since we can't have inheritance with a union, doing get_binfo
2564 on it won't work. We do all the convert_pointer_to_real
2565 stuff to handle MI correctly...for unions, that's not
2566 an issue, so we must short-circuit that extra work here. */
2567 tree tmp = TREE_TYPE (TREE_TYPE (TREE_VALUE (parms)));
2568 if (tmp != NULL_TREE && TREE_CODE (tmp) == UNION_TYPE)
2569 instance_ptr = TREE_VALUE (parms);
2570 else
2571 {
2572 tree binfo = get_binfo (basetype,
2573 TREE_TYPE (TREE_TYPE (TREE_VALUE (parms))),
2574 0);
2575 instance_ptr = convert_pointer_to_real (binfo, TREE_VALUE (parms));
2576 }
2577 instance_ptr
2578 = convert_pointer_to (build_type_variant (basetype,
2579 constp, volatilep),
2580 instance_ptr);
2581
2582 if (TREE_CODE (instance_ptr) == COND_EXPR)
2583 {
2584 instance_ptr = save_expr (instance_ptr);
2585 instance = build_indirect_ref (instance_ptr, NULL_PTR);
2586 }
2587 else if (TREE_CODE (instance_ptr) == NOP_EXPR
2588 && TREE_CODE (TREE_OPERAND (instance_ptr, 0)) == ADDR_EXPR
2589 && TREE_OPERAND (TREE_OPERAND (instance_ptr, 0), 0) == instance)
2590 ;
2591 /* The call to `convert_pointer_to' may return error_mark_node. */
2592 else if (instance_ptr == error_mark_node)
2593 return instance_ptr;
2594 else if (instance == NULL_TREE
2595 || TREE_CODE (instance) != INDIRECT_REF
2596 || TREE_OPERAND (instance, 0) != instance_ptr)
2597 instance = build_indirect_ref (instance_ptr, NULL_PTR);
2598 }
2599 parms = tree_cons (NULL_TREE, instance_ptr,
2600 convert_arguments (NULL_TREE, TREE_CHAIN (TYPE_ARG_TYPES (fntype)), TREE_CHAIN (parms), function, LOOKUP_NORMAL));
2601 }
2602
2603 if (parms == error_mark_node
2604 || (parms && TREE_CHAIN (parms) == error_mark_node))
2605 return error_mark_node;
2606
2607 if (need_vtbl == needed)
2608 {
2609 function = build_vfn_ref (&TREE_VALUE (parms), instance,
2610 DECL_VINDEX (function));
2611 TREE_TYPE (function) = build_pointer_type (fntype);
2612 }
2613
2614 if (TREE_CODE (function) == FUNCTION_DECL)
2615 GNU_xref_call (current_function_decl,
2616 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function)));
2617
2618 result = build_call (function, value_type, parms);
2619 if (IS_AGGR_TYPE (value_type))
2620 result = build_cplus_new (value_type, result);
2621 result = convert_from_reference (result);
2622 return result;
2623 }
2624
2625 /* Similar to `build_method_call', but for overloaded non-member functions.
2626 The name of this function comes through NAME. The name depends
2627 on PARMS.
2628
2629 Note that this function must handle simple `C' promotions,
2630 as well as variable numbers of arguments (...), and
2631 default arguments to boot.
2632
2633 If the overloading is successful, we return a tree node which
2634 contains the call to the function.
2635
2636 If overloading produces candidates which are probable, but not definite,
2637 we hold these candidates. If FINAL_CP is non-zero, then we are free
2638 to assume that final_cp points to enough storage for all candidates that
2639 this function might generate. The `harshness' array is preallocated for
2640 the first candidate, but not for subsequent ones.
2641
2642 Note that the DECL_RTL of FUNCTION must be made to agree with this
2643 function's new name. */
2644
2645 tree
2646 build_overload_call_real (fnname, parms, flags, final_cp, require_complete)
2647 tree fnname, parms;
2648 int flags;
2649 struct candidate *final_cp;
2650 int require_complete;
2651 {
2652 /* must check for overloading here */
2653 tree functions, function;
2654 tree parmtypes, last;
2655 register tree outer;
2656 int length;
2657 int parmlength = list_length (parms);
2658
2659 struct candidate *candidates, *cp;
2660
2661 if (final_cp)
2662 {
2663 final_cp[0].h.code = 0;
2664 final_cp[0].h.distance = 0;
2665 final_cp[0].function = 0;
2666 /* end marker. */
2667 final_cp[1].h.code = EVIL_CODE;
2668 }
2669
2670 parmtypes = default_parm_conversions (parms, &last);
2671 if (parmtypes == error_mark_node)
2672 {
2673 if (final_cp)
2674 final_cp->h.code = EVIL_CODE;
2675 return error_mark_node;
2676 }
2677
2678 if (last)
2679 TREE_CHAIN (last) = void_list_node;
2680 else
2681 parmtypes = void_list_node;
2682
2683 if (is_overloaded_fn (fnname))
2684 {
2685 functions = fnname;
2686 if (TREE_CODE (fnname) == TREE_LIST)
2687 fnname = TREE_PURPOSE (functions);
2688 else if (TREE_CODE (fnname) == FUNCTION_DECL)
2689 fnname = DECL_NAME (functions);
2690 }
2691 else
2692 functions = lookup_name_nonclass (fnname);
2693
2694 if (functions == NULL_TREE)
2695 {
2696 if (flags & LOOKUP_SPECULATIVELY)
2697 return NULL_TREE;
2698 if (flags & LOOKUP_COMPLAIN)
2699 error ("only member functions apply");
2700 if (final_cp)
2701 final_cp->h.code = EVIL_CODE;
2702 return error_mark_node;
2703 }
2704
2705 if (TREE_CODE (functions) == FUNCTION_DECL && ! IDENTIFIER_OPNAME_P (fnname))
2706 {
2707 functions = DECL_MAIN_VARIANT (functions);
2708 if (final_cp)
2709 {
2710 /* We are just curious whether this is a viable alternative or
2711 not. */
2712 compute_conversion_costs (functions, parms, final_cp, parmlength);
2713 return functions;
2714 }
2715 else
2716 return build_function_call_real (functions, parms, 1, flags);
2717 }
2718
2719 if (TREE_CODE (functions) == TREE_LIST
2720 && TREE_VALUE (functions) == NULL_TREE)
2721 {
2722 if (flags & LOOKUP_SPECULATIVELY)
2723 return NULL_TREE;
2724
2725 if (flags & LOOKUP_COMPLAIN)
2726 cp_error ("function `%D' declared overloaded, but no instances of that function declared",
2727 TREE_PURPOSE (functions));
2728 if (final_cp)
2729 final_cp->h.code = EVIL_CODE;
2730 return error_mark_node;
2731 }
2732
2733 length = count_functions (functions);
2734
2735 if (final_cp)
2736 candidates = final_cp;
2737 else
2738 {
2739 candidates
2740 = (struct candidate *)alloca ((length+1) * sizeof (struct candidate));
2741 bzero ((char *) candidates, (length + 1) * sizeof (struct candidate));
2742 }
2743
2744 cp = candidates;
2745
2746 my_friendly_assert (is_overloaded_fn (functions), 169);
2747
2748 functions = get_first_fn (functions);
2749
2750 /* OUTER is the list of FUNCTION_DECLS, in a TREE_LIST. */
2751 for (outer = functions; outer; outer = DECL_CHAIN (outer))
2752 {
2753 int template_cost = 0;
2754 function = outer;
2755 if (TREE_CODE (function) != FUNCTION_DECL
2756 && ! (TREE_CODE (function) == TEMPLATE_DECL
2757 && TREE_CODE (DECL_TEMPLATE_RESULT (function)) == FUNCTION_DECL))
2758 {
2759 enum tree_code code = TREE_CODE (function);
2760 if (code == TEMPLATE_DECL)
2761 code = TREE_CODE (DECL_TEMPLATE_RESULT (function));
2762 if (code == CONST_DECL)
2763 cp_error_at
2764 ("enumeral value `%D' conflicts with function of same name",
2765 function);
2766 else if (code == VAR_DECL)
2767 {
2768 if (TREE_STATIC (function))
2769 cp_error_at
2770 ("variable `%D' conflicts with function of same name",
2771 function);
2772 else
2773 cp_error_at
2774 ("constant field `%D' conflicts with function of same name",
2775 function);
2776 }
2777 else if (code == TYPE_DECL)
2778 continue;
2779 else
2780 my_friendly_abort (2);
2781 error ("at this point in file");
2782 continue;
2783 }
2784 if (TREE_CODE (function) == TEMPLATE_DECL)
2785 {
2786 int ntparms = TREE_VEC_LENGTH (DECL_TEMPLATE_PARMS (function));
2787 tree *targs = (tree *) alloca (sizeof (tree) * ntparms);
2788 int i;
2789
2790 i = type_unification (DECL_TEMPLATE_PARMS (function), targs,
2791 TYPE_ARG_TYPES (TREE_TYPE (function)),
2792 parms, &template_cost, 0, 0);
2793 if (i == 0)
2794 {
2795 function = instantiate_template (function, targs);
2796 if (function == error_mark_node)
2797 return function;
2798 }
2799 }
2800
2801 if (TREE_CODE (function) == TEMPLATE_DECL)
2802 {
2803 /* Unconverted template -- failed match. */
2804 cp->function = function;
2805 cp->u.bad_arg = -4;
2806 cp->h.code = EVIL_CODE;
2807 }
2808 else
2809 {
2810 struct candidate *cp2;
2811
2812 /* Check that this decl is not the same as a function that's in
2813 the list due to some template instantiation. */
2814 cp2 = candidates;
2815 while (cp2 != cp)
2816 if (cp2->function == function)
2817 break;
2818 else
2819 cp2 += 1;
2820 if (cp2->function == function)
2821 continue;
2822
2823 function = DECL_MAIN_VARIANT (function);
2824
2825 /* Can't use alloca here, since result might be
2826 passed to calling function. */
2827 cp->h_len = parmlength;
2828 cp->harshness = (struct harshness_code *)
2829 oballoc ((parmlength + 1) * sizeof (struct harshness_code));
2830
2831 compute_conversion_costs (function, parms, cp, parmlength);
2832
2833 /* Make sure this is clear as well. */
2834 cp->h.int_penalty += template_cost;
2835
2836 if ((cp[0].h.code & EVIL_CODE) == 0)
2837 {
2838 cp[1].h.code = EVIL_CODE;
2839 cp++;
2840 }
2841 }
2842 }
2843
2844 if (cp - candidates)
2845 {
2846 tree rval = error_mark_node;
2847
2848 /* Leave marker. */
2849 cp[0].h.code = EVIL_CODE;
2850 if (cp - candidates > 1)
2851 {
2852 struct candidate *best_cp
2853 = ideal_candidate (candidates, cp - candidates, parmlength);
2854 if (best_cp == (struct candidate *)0)
2855 {
2856 if (flags & LOOKUP_COMPLAIN)
2857 {
2858 cp_error ("call of overloaded `%D' is ambiguous", fnname);
2859 print_n_candidates (candidates, cp - candidates);
2860 }
2861 return error_mark_node;
2862 }
2863 else
2864 rval = best_cp->function;
2865 }
2866 else
2867 {
2868 cp -= 1;
2869 if (cp->h.code & EVIL_CODE)
2870 {
2871 if (flags & LOOKUP_COMPLAIN)
2872 error ("type conversion ambiguous");
2873 }
2874 else
2875 rval = cp->function;
2876 }
2877
2878 if (final_cp)
2879 return rval;
2880
2881 return build_function_call_real (rval, parms, require_complete, flags);
2882 }
2883
2884 if (flags & LOOKUP_SPECULATIVELY)
2885 return NULL_TREE;
2886
2887 if (flags & LOOKUP_COMPLAIN)
2888 report_type_mismatch (cp, parms, "function",
2889 decl_as_string (cp->function, 1));
2890
2891 return error_mark_node;
2892 }
2893
2894 /* This requires a complete type on the result of the call. */
2895
2896 tree
2897 build_overload_call (fnname, parms, flags)
2898 tree fnname, parms;
2899 int flags;
2900 {
2901 return build_overload_call_real (fnname, parms, flags, (struct candidate *)0, 1);
2902 }
2903
2904 /* New overloading code. */
2905
2906 struct z_candidate {
2907 tree fn;
2908 tree convs;
2909 tree second_conv;
2910 int viable;
2911 tree basetype_path;
2912 tree template;
2913 struct z_candidate *next;
2914 };
2915
2916 #define IDENTITY_RANK 0
2917 #define EXACT_RANK 1
2918 #define PROMO_RANK 2
2919 #define STD_RANK 3
2920 #define PBOOL_RANK 4
2921 #define USER_RANK 5
2922 #define ELLIPSIS_RANK 6
2923 #define BAD_RANK 7
2924
2925 #define ICS_RANK(NODE) \
2926 (ICS_BAD_FLAG (NODE) ? BAD_RANK \
2927 : ICS_ELLIPSIS_FLAG (NODE) ? ELLIPSIS_RANK \
2928 : ICS_USER_FLAG (NODE) ? USER_RANK \
2929 : ICS_STD_RANK (NODE))
2930
2931 #define ICS_STD_RANK(NODE) TREE_COMPLEXITY (NODE)
2932
2933 #define ICS_USER_FLAG(NODE) TREE_LANG_FLAG_0 (NODE)
2934 #define ICS_ELLIPSIS_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
2935 #define ICS_THIS_FLAG(NODE) TREE_LANG_FLAG_2 (NODE)
2936 #define ICS_BAD_FLAG(NODE) TREE_LANG_FLAG_3 (NODE)
2937
2938 #define USER_CONV_FN(NODE) TREE_OPERAND (NODE, 1)
2939
2940 static struct z_candidate * build_user_type_conversion_1 ();
2941 static tree convert_like ();
2942 static tree build_over_call ();
2943 static struct z_candidate * tourney ();
2944 static void enforce_access ();
2945
2946 int
2947 null_ptr_cst_p (t)
2948 tree t;
2949 {
2950 if (t == null_node
2951 || integer_zerop (t) && INTEGRAL_TYPE_P (TREE_TYPE (t)))
2952 return 1;
2953 /* Remove this eventually. */
2954 if (! pedantic && TREE_TYPE (t) == ptr_type_node && integer_zerop (t))
2955 return 1;
2956 return 0;
2957 }
2958
2959 static tree
2960 build_conv (code, type, from)
2961 enum tree_code code;
2962 tree type, from;
2963 {
2964 tree t = build1 (code, type, from);
2965 int rank = ICS_STD_RANK (from);
2966 switch (code)
2967 {
2968 case PTR_CONV:
2969 case PMEM_CONV:
2970 case BASE_CONV:
2971 case STD_CONV:
2972 if (rank < STD_RANK)
2973 rank = STD_RANK;
2974 break;
2975
2976 case LVALUE_CONV:
2977 case QUAL_CONV:
2978 case RVALUE_CONV:
2979 if (rank < EXACT_RANK)
2980 rank = EXACT_RANK;
2981
2982 default:
2983 break;
2984 }
2985 ICS_STD_RANK (t) = rank;
2986 ICS_USER_FLAG (t) = ICS_USER_FLAG (from);
2987 ICS_BAD_FLAG (t) = ICS_BAD_FLAG (from);
2988 return t;
2989 }
2990
2991 static tree
2992 non_reference (t)
2993 tree t;
2994 {
2995 if (TREE_CODE (t) == REFERENCE_TYPE)
2996 t = TREE_TYPE (t);
2997 return t;
2998 }
2999
3000 static tree
3001 strip_top_quals (t)
3002 tree t;
3003 {
3004 if (TREE_CODE (t) == ARRAY_TYPE)
3005 return t;
3006 return TYPE_MAIN_VARIANT (t);
3007 }
3008
3009 /* Returns the standard conversion path (see [conv]) from type FROM to type
3010 TO, if any. For proper handling of null pointer constants, you must
3011 also pass the expression EXPR to convert from. */
3012
3013 static tree
3014 standard_conversion (to, from, expr)
3015 tree to, from, expr;
3016 {
3017 enum tree_code fcode, tcode;
3018 tree conv;
3019 int fromref = 0;
3020
3021 if (TREE_CODE (to) == REFERENCE_TYPE)
3022 to = TREE_TYPE (to);
3023 if (TREE_CODE (from) == REFERENCE_TYPE)
3024 {
3025 fromref = 1;
3026 from = TREE_TYPE (from);
3027 }
3028 to = strip_top_quals (to);
3029 from = strip_top_quals (from);
3030
3031 fcode = TREE_CODE (from);
3032 tcode = TREE_CODE (to);
3033
3034 conv = build1 (IDENTITY_CONV, from, expr);
3035
3036 if (fcode == FUNCTION_TYPE)
3037 {
3038 from = build_pointer_type (from);
3039 fcode = TREE_CODE (from);
3040 conv = build_conv (LVALUE_CONV, from, conv);
3041 }
3042 else if (fcode == ARRAY_TYPE)
3043 {
3044 from = build_pointer_type (TREE_TYPE (from));
3045 fcode = TREE_CODE (from);
3046 conv = build_conv (LVALUE_CONV, from, conv);
3047 }
3048 else if (fromref || (expr && real_lvalue_p (expr)))
3049 conv = build_conv (RVALUE_CONV, from, conv);
3050
3051 if (from == to)
3052 return conv;
3053
3054 if ((tcode == POINTER_TYPE || TYPE_PTRMEMFUNC_P (to))
3055 && expr && null_ptr_cst_p (expr))
3056 {
3057 conv = build_conv (STD_CONV, to, conv);
3058 }
3059 else if (tcode == POINTER_TYPE && fcode == POINTER_TYPE)
3060 {
3061 enum tree_code ufcode = TREE_CODE (TREE_TYPE (from));
3062 enum tree_code utcode = TREE_CODE (TREE_TYPE (to));
3063 tree nconv = NULL_TREE;
3064
3065 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (from)),
3066 TYPE_MAIN_VARIANT (TREE_TYPE (to)), 1))
3067 nconv = conv;
3068 else if (utcode == VOID_TYPE && ufcode != OFFSET_TYPE
3069 && ufcode != FUNCTION_TYPE)
3070 {
3071 from = build_pointer_type
3072 (cp_build_type_variant (void_type_node,
3073 TYPE_READONLY (TREE_TYPE (from)),
3074 TYPE_VOLATILE (TREE_TYPE (from))));
3075 nconv = build_conv (PTR_CONV, from, conv);
3076 }
3077 else if (ufcode == OFFSET_TYPE && utcode == OFFSET_TYPE)
3078 {
3079 tree fbase = TYPE_OFFSET_BASETYPE (TREE_TYPE (from));
3080 tree tbase = TYPE_OFFSET_BASETYPE (TREE_TYPE (to));
3081
3082 if (DERIVED_FROM_P (fbase, tbase)
3083 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (from))),
3084 TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (to))),
3085 1)))
3086 {
3087 from = build_offset_type (tbase, TREE_TYPE (TREE_TYPE (from)));
3088 from = build_pointer_type (from);
3089 nconv = build_conv (PMEM_CONV, from, conv);
3090 }
3091 }
3092 else if (IS_AGGR_TYPE (TREE_TYPE (from))
3093 && IS_AGGR_TYPE (TREE_TYPE (to)))
3094 {
3095 if (DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
3096 {
3097 from = cp_build_type_variant (TREE_TYPE (to),
3098 TYPE_READONLY (TREE_TYPE (from)),
3099 TYPE_VOLATILE (TREE_TYPE (from)));
3100 from = build_pointer_type (from);
3101 nconv = build_conv (PTR_CONV, from, conv);
3102 }
3103 }
3104
3105 if (nconv && comptypes (from, to, 1))
3106 conv = nconv;
3107 else if (nconv && comp_ptr_ttypes (TREE_TYPE (to), TREE_TYPE (from)))
3108 conv = build_conv (QUAL_CONV, to, nconv);
3109 else if (ptr_reasonably_similar (TREE_TYPE (to), TREE_TYPE (from)))
3110 {
3111 conv = build_conv (PTR_CONV, to, conv);
3112 ICS_BAD_FLAG (conv) = 1;
3113 }
3114 else
3115 return 0;
3116
3117 from = to;
3118 }
3119 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
3120 {
3121 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
3122 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
3123 tree fbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn)));
3124 tree tbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn)));
3125
3126 if (! DERIVED_FROM_P (fbase, tbase)
3127 || ! comptypes (TREE_TYPE (fromfn), TREE_TYPE (tofn), 1)
3128 || ! compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
3129 TREE_CHAIN (TYPE_ARG_TYPES (tofn)), 1)
3130 || TYPE_READONLY (fbase) != TYPE_READONLY (tbase)
3131 || TYPE_VOLATILE (fbase) != TYPE_VOLATILE (tbase))
3132 return 0;
3133
3134 from = cp_build_type_variant (tbase, TYPE_READONLY (fbase),
3135 TYPE_VOLATILE (fbase));
3136 from = build_cplus_method_type (from, TREE_TYPE (fromfn),
3137 TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
3138 from = build_ptrmemfunc_type (build_pointer_type (from));
3139 conv = build_conv (PMEM_CONV, from, conv);
3140 }
3141 else if (tcode == BOOLEAN_TYPE)
3142 {
3143 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE
3144 || fcode == POINTER_TYPE || TYPE_PTRMEMFUNC_P (from)))
3145 return 0;
3146
3147 conv = build_conv (STD_CONV, to, conv);
3148 if (fcode == POINTER_TYPE || TYPE_PTRMEMFUNC_P (from)
3149 && ICS_STD_RANK (conv) < PBOOL_RANK)
3150 ICS_STD_RANK (conv) = PBOOL_RANK;
3151 }
3152 /* We don't check for ENUMERAL_TYPE here because there are no standard
3153 conversions to enum type. */
3154 else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
3155 || tcode == REAL_TYPE)
3156 {
3157 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
3158 return 0;
3159 conv = build_conv (STD_CONV, to, conv);
3160
3161 /* Give this a better rank if it's a promotion. */
3162 if (to == type_promotes_to (from)
3163 && ICS_STD_RANK (TREE_OPERAND (conv, 0)) <= PROMO_RANK)
3164 ICS_STD_RANK (conv) = PROMO_RANK;
3165 }
3166 else if (IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
3167 && DERIVED_FROM_P (to, from))
3168 conv = build_conv (BASE_CONV, to, conv);
3169 else
3170 return 0;
3171
3172 return conv;
3173 }
3174
3175 /* Returns the conversion path from type FROM to reference type TO for
3176 purposes of reference binding. For lvalue binding, either pass a
3177 reference type to FROM or an lvalue expression to EXPR.
3178
3179 Currently does not distinguish in the generated trees between binding to
3180 an lvalue and a temporary. Should it? */
3181
3182 static tree
3183 reference_binding (rto, rfrom, expr, flags)
3184 tree rto, rfrom, expr;
3185 int flags;
3186 {
3187 tree conv;
3188 int lvalue = 1;
3189 tree to = TREE_TYPE (rto);
3190 tree from = rfrom;
3191 int related;
3192
3193 if (TREE_CODE (from) == REFERENCE_TYPE)
3194 from = TREE_TYPE (from);
3195 else if (! expr || ! real_lvalue_p (expr))
3196 lvalue = 0;
3197
3198 related = (TYPE_MAIN_VARIANT (to) == TYPE_MAIN_VARIANT (from)
3199 || (IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
3200 && DERIVED_FROM_P (to, from)));
3201
3202 if (lvalue && related
3203 && TYPE_READONLY (to) >= TYPE_READONLY (from)
3204 && TYPE_VOLATILE (to) >= TYPE_VOLATILE (from))
3205 {
3206 conv = build1 (IDENTITY_CONV, from, expr);
3207
3208 if (TYPE_MAIN_VARIANT (to) == TYPE_MAIN_VARIANT (from))
3209 conv = build_conv (REF_BIND, rto, conv);
3210 else
3211 {
3212 conv = build_conv (REF_BIND, rto, conv);
3213 ICS_STD_RANK (conv) = STD_RANK;
3214 }
3215 }
3216 else
3217 conv = NULL_TREE;
3218
3219 if (! conv)
3220 {
3221 conv = standard_conversion (to, rfrom, expr);
3222 if (conv)
3223 {
3224 conv = build_conv (REF_BIND, rto, conv);
3225
3226 /* Bind directly to a base subobject of a class rvalue. Do it
3227 after building the conversion for proper handling of ICS_RANK. */
3228 if (TREE_CODE (TREE_OPERAND (conv, 0)) == BASE_CONV)
3229 TREE_OPERAND (conv, 0) = TREE_OPERAND (TREE_OPERAND (conv, 0), 0);
3230 }
3231 if (conv
3232 && ((! (TYPE_READONLY (to) && ! TYPE_VOLATILE (to)
3233 && (flags & LOOKUP_NO_TEMP_BIND) == 0))
3234 /* If T1 is reference-related to T2, cv1 must be the same
3235 cv-qualification as, or greater cv-qualification than,
3236 cv2; otherwise, the program is ill-formed. */
3237 || (related
3238 && (TYPE_READONLY (to) < TYPE_READONLY (from)
3239 || TYPE_VOLATILE (to) < TYPE_VOLATILE (from)))))
3240 ICS_BAD_FLAG (conv) = 1;
3241 }
3242
3243 return conv;
3244 }
3245
3246 /* Returns the implicit conversion sequence (see [over.ics]) from type FROM
3247 to type TO. The optional expression EXPR may affect the conversion.
3248 FLAGS are the usual overloading flags. Only LOOKUP_NO_CONVERSION is
3249 significant. */
3250
3251 static tree
3252 implicit_conversion (to, from, expr, flags)
3253 tree to, from, expr;
3254 int flags;
3255 {
3256 tree conv;
3257 struct z_candidate *cand;
3258
3259 if (expr && type_unknown_p (expr))
3260 {
3261 expr = instantiate_type (to, expr, 0);
3262 if (expr == error_mark_node)
3263 return 0;
3264 from = TREE_TYPE (expr);
3265 }
3266
3267 if (TREE_CODE (to) == REFERENCE_TYPE)
3268 conv = reference_binding (to, from, expr, flags);
3269 else
3270 conv = standard_conversion (to, from, expr);
3271
3272 if (conv)
3273 ;
3274 else if ((IS_AGGR_TYPE (non_reference (from))
3275 || IS_AGGR_TYPE (non_reference (to)))
3276 && (flags & LOOKUP_NO_CONVERSION) == 0)
3277 {
3278 cand = build_user_type_conversion_1
3279 (to, expr, LOOKUP_ONLYCONVERTING);
3280 if (cand)
3281 conv = cand->second_conv;
3282 if ((! conv || ICS_BAD_FLAG (conv))
3283 && TREE_CODE (to) == REFERENCE_TYPE
3284 && TYPE_READONLY (TREE_TYPE (to))
3285 && ! TYPE_VOLATILE (TREE_TYPE (to))
3286 && (flags & LOOKUP_NO_TEMP_BIND) == 0)
3287 {
3288 cand = build_user_type_conversion_1
3289 (TYPE_MAIN_VARIANT (TREE_TYPE (to)), expr, LOOKUP_ONLYCONVERTING);
3290 if (cand)
3291 conv = build_conv (REF_BIND, to, cand->second_conv);
3292 }
3293 }
3294
3295 return conv;
3296 }
3297
3298 /* Create an overload candidate for the function or method FN called with
3299 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
3300 to implicit_conversion. */
3301
3302 static struct z_candidate *
3303 add_function_candidate (candidates, fn, arglist, flags)
3304 struct z_candidate *candidates;
3305 tree fn, arglist;
3306 int flags;
3307 {
3308 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
3309 int i, len;
3310 tree convs;
3311 tree parmnode = parmlist;
3312 tree argnode = arglist;
3313 int viable = 1;
3314 struct z_candidate *cand;
3315
3316 /* The `this' and `in_chrg' arguments to constructors are not considered
3317 in overload resolution. */
3318 if (DECL_CONSTRUCTOR_P (fn))
3319 {
3320 parmnode = TREE_CHAIN (parmnode);
3321 argnode = TREE_CHAIN (argnode);
3322 if (TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (fn)))
3323 {
3324 parmnode = TREE_CHAIN (parmnode);
3325 argnode = TREE_CHAIN (argnode);
3326 }
3327 }
3328
3329 len = list_length (argnode);
3330 convs = make_tree_vec (len);
3331
3332 for (i = 0; i < len; ++i)
3333 {
3334 tree arg = TREE_VALUE (argnode);
3335 tree argtype = TREE_TYPE (arg);
3336 tree t;
3337
3338 argtype = cp_build_type_variant
3339 (argtype, TREE_READONLY (arg), TREE_THIS_VOLATILE (arg));
3340
3341 if (parmnode == void_list_node)
3342 break;
3343 else if (parmnode)
3344 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg, flags);
3345 else
3346 {
3347 t = build1 (IDENTITY_CONV, argtype, arg);
3348 ICS_ELLIPSIS_FLAG (t) = 1;
3349 }
3350
3351 if (i == 0 && t && TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
3352 && ! DECL_CONSTRUCTOR_P (fn))
3353 ICS_THIS_FLAG (t) = 1;
3354
3355 TREE_VEC_ELT (convs, i) = t;
3356 if (! t)
3357 break;
3358
3359 if (ICS_BAD_FLAG (t))
3360 viable = -1;
3361
3362 if (parmnode)
3363 parmnode = TREE_CHAIN (parmnode);
3364 argnode = TREE_CHAIN (argnode);
3365 }
3366
3367 if (i < len)
3368 viable = 0;
3369
3370 /* Make sure there are default args for the rest of the parms. */
3371 for (; parmnode && parmnode != void_list_node;
3372 parmnode = TREE_CHAIN (parmnode))
3373 if (! TREE_PURPOSE (parmnode))
3374 {
3375 viable = 0;
3376 break;
3377 }
3378
3379 cand = (struct z_candidate *) oballoc (sizeof (struct z_candidate));
3380
3381 cand->fn = fn;
3382 cand->convs = convs;
3383 cand->second_conv = NULL_TREE;
3384 cand->viable = viable;
3385 cand->basetype_path = NULL_TREE;
3386 cand->template = NULL_TREE;
3387 cand->next = candidates;
3388
3389 return cand;
3390 }
3391
3392 /* Create an overload candidate for the conversion function FN which will
3393 be invoked for expression OBJ, producing a pointer-to-function which
3394 will in turn be called with the argument list ARGLIST, and add it to
3395 CANDIDATES. FLAGS is passed on to implicit_conversion. */
3396
3397 static struct z_candidate *
3398 add_conv_candidate (candidates, fn, obj, arglist)
3399 struct z_candidate *candidates;
3400 tree fn, obj, arglist;
3401 {
3402 tree totype = TREE_TYPE (TREE_TYPE (fn));
3403 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (totype));
3404 int i, len = list_length (arglist) + 1;
3405 tree convs = make_tree_vec (len);
3406 tree parmnode = parmlist;
3407 tree argnode = arglist;
3408 int viable = 1;
3409 struct z_candidate *cand;
3410 int flags = LOOKUP_NORMAL;
3411
3412 for (i = 0; i < len; ++i)
3413 {
3414 tree arg = i == 0 ? obj : TREE_VALUE (argnode);
3415 tree argtype = lvalue_type (arg);
3416 tree t;
3417
3418 if (i == 0)
3419 t = implicit_conversion (totype, argtype, arg, flags);
3420 else if (parmnode == void_list_node)
3421 break;
3422 else if (parmnode)
3423 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg, flags);
3424 else
3425 {
3426 t = build1 (IDENTITY_CONV, argtype, arg);
3427 ICS_ELLIPSIS_FLAG (t) = 1;
3428 }
3429
3430 TREE_VEC_ELT (convs, i) = t;
3431 if (! t)
3432 break;
3433
3434 if (ICS_BAD_FLAG (t))
3435 viable = -1;
3436
3437 if (i == 0)
3438 continue;
3439
3440 if (parmnode)
3441 parmnode = TREE_CHAIN (parmnode);
3442 argnode = TREE_CHAIN (argnode);
3443 }
3444
3445 if (i < len)
3446 viable = 0;
3447
3448 for (; parmnode && parmnode != void_list_node;
3449 parmnode = TREE_CHAIN (parmnode))
3450 if (! TREE_PURPOSE (parmnode))
3451 {
3452 viable = 0;
3453 break;
3454 }
3455
3456 cand = (struct z_candidate *) oballoc (sizeof (struct z_candidate));
3457
3458 cand->fn = fn;
3459 cand->convs = convs;
3460 cand->second_conv = NULL_TREE;
3461 cand->viable = viable;
3462 cand->basetype_path = NULL_TREE;
3463 cand->template = NULL_TREE;
3464 cand->next = candidates;
3465
3466 return cand;
3467 }
3468
3469 static struct z_candidate *
3470 build_builtin_candidate (candidates, fnname, type1, type2,
3471 args, argtypes, flags)
3472 struct z_candidate *candidates;
3473 tree fnname, type1, type2, *args, *argtypes;
3474 int flags;
3475
3476 {
3477 tree t, convs;
3478 int viable = 1, i;
3479 struct z_candidate *cand;
3480 tree types[2];
3481
3482 types[0] = type1;
3483 types[1] = type2;
3484
3485 convs = make_tree_vec (args[2] ? 3 : (args[1] ? 2 : 1));
3486
3487 for (i = 0; i < 2; ++i)
3488 {
3489 if (! args[i])
3490 break;
3491
3492 t = implicit_conversion (types[i], argtypes[i], args[i], flags);
3493 if (! t)
3494 {
3495 viable = 0;
3496 /* We need something for printing the candidate. */
3497 t = build1 (IDENTITY_CONV, types[i], NULL_TREE);
3498 }
3499 else if (ICS_BAD_FLAG (t))
3500 viable = 0;
3501 TREE_VEC_ELT (convs, i) = t;
3502 }
3503
3504 /* For COND_EXPR we rearranged the arguments; undo that now. */
3505 if (args[2])
3506 {
3507 TREE_VEC_ELT (convs, 2) = TREE_VEC_ELT (convs, 1);
3508 TREE_VEC_ELT (convs, 1) = TREE_VEC_ELT (convs, 0);
3509 t = implicit_conversion (boolean_type_node, argtypes[2], args[2], flags);
3510 if (t)
3511 TREE_VEC_ELT (convs, 0) = t;
3512 else
3513 viable = 0;
3514 }
3515
3516 cand = (struct z_candidate *) oballoc (sizeof (struct z_candidate));
3517
3518 cand->fn = fnname;
3519 cand->convs = convs;
3520 cand->second_conv = NULL_TREE;
3521 cand->viable = viable;
3522 cand->basetype_path = NULL_TREE;
3523 cand->template = NULL_TREE;
3524 cand->next = candidates;
3525
3526 return cand;
3527 }
3528
3529 static int
3530 is_complete (t)
3531 tree t;
3532 {
3533 return TYPE_SIZE (complete_type (t)) != NULL_TREE;
3534 }
3535
3536 /* Create any builtin operator overload candidates for the operator in
3537 question given the converted operand types TYPE1 and TYPE2. The other
3538 args are passed through from add_builtin_candidates to
3539 build_builtin_candidate. */
3540
3541 static struct z_candidate *
3542 add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
3543 args, argtypes, flags)
3544 struct z_candidate *candidates;
3545 enum tree_code code, code2;
3546 tree fnname, type1, type2, *args, *argtypes;
3547 int flags;
3548 {
3549 switch (code)
3550 {
3551 case POSTINCREMENT_EXPR:
3552 case POSTDECREMENT_EXPR:
3553 args[1] = integer_zero_node;
3554 type2 = integer_type_node;
3555 }
3556
3557 switch (code)
3558 {
3559
3560 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
3561 and VQ is either volatile or empty, there exist candidate operator
3562 functions of the form
3563 VQ T& operator++(VQ T&);
3564 T operator++(VQ T&, int);
3565 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
3566 type other than bool, and VQ is either volatile or empty, there exist
3567 candidate operator functions of the form
3568 VQ T& operator--(VQ T&);
3569 T operator--(VQ T&, int);
3570 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
3571 complete object type, and VQ is either volatile or empty, there exist
3572 candidate operator functions of the form
3573 T*VQ& operator++(T*VQ&);
3574 T*VQ& operator--(T*VQ&);
3575 T* operator++(T*VQ&, int);
3576 T* operator--(T*VQ&, int); */
3577
3578 case POSTDECREMENT_EXPR:
3579 case PREDECREMENT_EXPR:
3580 if (TREE_CODE (type1) == BOOLEAN_TYPE)
3581 return candidates;
3582 case POSTINCREMENT_EXPR:
3583 case PREINCREMENT_EXPR:
3584 if ((ARITHMETIC_TYPE_P (type1) && TREE_CODE (type1) != ENUMERAL_TYPE)
3585 || TYPE_PTROB_P (type1))
3586 {
3587 type1 = build_reference_type (type1);
3588 break;
3589 }
3590 return candidates;
3591
3592 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
3593 exist candidate operator functions of the form
3594
3595 T& operator*(T*);
3596
3597 8 For every function type T, there exist candidate operator functions of
3598 the form
3599 T& operator*(T*); */
3600
3601 case INDIRECT_REF:
3602 if (TREE_CODE (type1) == POINTER_TYPE
3603 && (TYPE_PTROB_P (type1)
3604 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
3605 break;
3606 return candidates;
3607
3608 /* 9 For every type T, there exist candidate operator functions of the form
3609 T* operator+(T*);
3610
3611 10For every promoted arithmetic type T, there exist candidate operator
3612 functions of the form
3613 T operator+(T);
3614 T operator-(T); */
3615
3616 case CONVERT_EXPR: /* unary + */
3617 if (TREE_CODE (type1) == POINTER_TYPE
3618 && TREE_CODE (TREE_TYPE (type1)) != OFFSET_TYPE)
3619 break;
3620 case NEGATE_EXPR:
3621 if (ARITHMETIC_TYPE_P (type1))
3622 break;
3623 return candidates;
3624
3625 /* 11For every promoted integral type T, there exist candidate operator
3626 functions of the form
3627 T operator~(T); */
3628
3629 case BIT_NOT_EXPR:
3630 if (INTEGRAL_TYPE_P (type1))
3631 break;
3632 return candidates;
3633
3634 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
3635 is the same type as C2 or is a derived class of C2, T is a complete
3636 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
3637 there exist candidate operator functions of the form
3638 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
3639 where CV12 is the union of CV1 and CV2. */
3640
3641 case MEMBER_REF:
3642 if (TREE_CODE (type1) == POINTER_TYPE
3643 && (TYPE_PTRMEMFUNC_P (type2) || TYPE_PTRMEM_P (type2)))
3644 {
3645 tree c1 = TREE_TYPE (type1);
3646 tree c2 = (TYPE_PTRMEMFUNC_P (type2)
3647 ? TYPE_METHOD_BASETYPE (TYPE_PTRMEMFUNC_FN_TYPE (type2))
3648 : TYPE_OFFSET_BASETYPE (TREE_TYPE (type2)));
3649
3650 if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
3651 && (TYPE_PTRMEMFUNC_P (type2)
3652 || is_complete (TREE_TYPE (TREE_TYPE (type2)))))
3653 break;
3654 }
3655 return candidates;
3656
3657 /* 13For every pair of promoted arithmetic types L and R, there exist can-
3658 didate operator functions of the form
3659 LR operator*(L, R);
3660 LR operator/(L, R);
3661 LR operator+(L, R);
3662 LR operator-(L, R);
3663 bool operator<(L, R);
3664 bool operator>(L, R);
3665 bool operator<=(L, R);
3666 bool operator>=(L, R);
3667 bool operator==(L, R);
3668 bool operator!=(L, R);
3669 where LR is the result of the usual arithmetic conversions between
3670 types L and R.
3671
3672 14For every pair of types T and I, where T is a cv-qualified or cv-
3673 unqualified complete object type and I is a promoted integral type,
3674 there exist candidate operator functions of the form
3675 T* operator+(T*, I);
3676 T& operator[](T*, I);
3677 T* operator-(T*, I);
3678 T* operator+(I, T*);
3679 T& operator[](I, T*);
3680
3681 15For every T, where T is a pointer to complete object type, there exist
3682 candidate operator functions of the form112)
3683 ptrdiff_t operator-(T, T);
3684
3685 16For every pointer type T, there exist candidate operator functions of
3686 the form
3687 bool operator<(T, T);
3688 bool operator>(T, T);
3689 bool operator<=(T, T);
3690 bool operator>=(T, T);
3691 bool operator==(T, T);
3692 bool operator!=(T, T);
3693
3694 17For every pointer to member type T, there exist candidate operator
3695 functions of the form
3696 bool operator==(T, T);
3697 bool operator!=(T, T); */
3698
3699 case MINUS_EXPR:
3700 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
3701 break;
3702 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
3703 {
3704 type2 = ptrdiff_type_node;
3705 break;
3706 }
3707 case MULT_EXPR:
3708 case TRUNC_DIV_EXPR:
3709 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3710 break;
3711 return candidates;
3712
3713 case EQ_EXPR:
3714 case NE_EXPR:
3715 if (TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2)
3716 || TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
3717 break;
3718 if ((TYPE_PTRMEMFUNC_P (type1) || TYPE_PTRMEM_P (type1))
3719 && null_ptr_cst_p (args[1]))
3720 {
3721 type2 = type1;
3722 break;
3723 }
3724 if ((TYPE_PTRMEMFUNC_P (type2) || TYPE_PTRMEM_P (type2))
3725 && null_ptr_cst_p (args[0]))
3726 {
3727 type1 = type2;
3728 break;
3729 }
3730 case LT_EXPR:
3731 case GT_EXPR:
3732 case LE_EXPR:
3733 case GE_EXPR:
3734 case MAX_EXPR:
3735 case MIN_EXPR:
3736 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2)
3737 || TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
3738 break;
3739 if (TYPE_PTR_P (type1) && null_ptr_cst_p (args[1]))
3740 {
3741 type2 = type1;
3742 break;
3743 }
3744 if (null_ptr_cst_p (args[0]) && TYPE_PTR_P (type2))
3745 {
3746 type1 = type2;
3747 break;
3748 }
3749 return candidates;
3750
3751 case PLUS_EXPR:
3752 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3753 break;
3754 case ARRAY_REF:
3755 if (INTEGRAL_TYPE_P (type1) && TYPE_PTROB_P (type2))
3756 {
3757 type1 = ptrdiff_type_node;
3758 break;
3759 }
3760 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
3761 {
3762 type2 = ptrdiff_type_node;
3763 break;
3764 }
3765 return candidates;
3766
3767 /* 18For every pair of promoted integral types L and R, there exist candi-
3768 date operator functions of the form
3769 LR operator%(L, R);
3770 LR operator&(L, R);
3771 LR operator^(L, R);
3772 LR operator|(L, R);
3773 L operator<<(L, R);
3774 L operator>>(L, R);
3775 where LR is the result of the usual arithmetic conversions between
3776 types L and R. */
3777
3778 case TRUNC_MOD_EXPR:
3779 case BIT_AND_EXPR:
3780 case BIT_IOR_EXPR:
3781 case BIT_XOR_EXPR:
3782 case LSHIFT_EXPR:
3783 case RSHIFT_EXPR:
3784 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
3785 break;
3786 return candidates;
3787
3788 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
3789 type, VQ is either volatile or empty, and R is a promoted arithmetic
3790 type, there exist candidate operator functions of the form
3791 VQ L& operator=(VQ L&, R);
3792 VQ L& operator*=(VQ L&, R);
3793 VQ L& operator/=(VQ L&, R);
3794 VQ L& operator+=(VQ L&, R);
3795 VQ L& operator-=(VQ L&, R);
3796
3797 20For every pair T, VQ), where T is any type and VQ is either volatile
3798 or empty, there exist candidate operator functions of the form
3799 T*VQ& operator=(T*VQ&, T*);
3800
3801 21For every pair T, VQ), where T is a pointer to member type and VQ is
3802 either volatile or empty, there exist candidate operator functions of
3803 the form
3804 VQ T& operator=(VQ T&, T);
3805
3806 22For every triple T, VQ, I), where T is a cv-qualified or cv-
3807 unqualified complete object type, VQ is either volatile or empty, and
3808 I is a promoted integral type, there exist candidate operator func-
3809 tions of the form
3810 T*VQ& operator+=(T*VQ&, I);
3811 T*VQ& operator-=(T*VQ&, I);
3812
3813 23For every triple L, VQ, R), where L is an integral or enumeration
3814 type, VQ is either volatile or empty, and R is a promoted integral
3815 type, there exist candidate operator functions of the form
3816
3817 VQ L& operator%=(VQ L&, R);
3818 VQ L& operator<<=(VQ L&, R);
3819 VQ L& operator>>=(VQ L&, R);
3820 VQ L& operator&=(VQ L&, R);
3821 VQ L& operator^=(VQ L&, R);
3822 VQ L& operator|=(VQ L&, R); */
3823
3824 case MODIFY_EXPR:
3825 switch (code2)
3826 {
3827 case PLUS_EXPR:
3828 case MINUS_EXPR:
3829 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
3830 {
3831 type2 = ptrdiff_type_node;
3832 break;
3833 }
3834 case MULT_EXPR:
3835 case TRUNC_DIV_EXPR:
3836 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3837 break;
3838 return candidates;
3839
3840 case TRUNC_MOD_EXPR:
3841 case BIT_AND_EXPR:
3842 case BIT_IOR_EXPR:
3843 case BIT_XOR_EXPR:
3844 case LSHIFT_EXPR:
3845 case RSHIFT_EXPR:
3846 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
3847 break;
3848 return candidates;
3849
3850 case NOP_EXPR:
3851 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3852 break;
3853 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
3854 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
3855 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
3856 || ((TYPE_PTRMEMFUNC_P (type1)
3857 || TREE_CODE (type1) == POINTER_TYPE)
3858 && null_ptr_cst_p (args[1])))
3859 {
3860 type2 = type1;
3861 break;
3862 }
3863 return candidates;
3864
3865 default:
3866 my_friendly_abort (367);
3867 }
3868 type1 = build_reference_type (type1);
3869 break;
3870
3871 case COND_EXPR:
3872 /* Kludge around broken overloading rules whereby
3873 bool ? const char& : enum is ambiguous
3874 (between int and const char&). */
3875 flags |= LOOKUP_NO_TEMP_BIND;
3876
3877 /* Extension: Support ?: of enumeral type. Hopefully this will not
3878 be an extension for long. */
3879 if (TREE_CODE (type1) == ENUMERAL_TYPE && type1 == type2)
3880 break;
3881 else if (TREE_CODE (type1) == ENUMERAL_TYPE
3882 || TREE_CODE (type2) == ENUMERAL_TYPE)
3883 return candidates;
3884 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3885 break;
3886 if (TREE_CODE (type1) == TREE_CODE (type2)
3887 && (TREE_CODE (type1) == REFERENCE_TYPE
3888 || TREE_CODE (type1) == POINTER_TYPE
3889 || TYPE_PTRMEMFUNC_P (type1)
3890 || IS_AGGR_TYPE (type1)))
3891 break;
3892 if (TREE_CODE (type1) == REFERENCE_TYPE
3893 || TREE_CODE (type2) == REFERENCE_TYPE)
3894 return candidates;
3895 if (((TYPE_PTRMEMFUNC_P (type1) || TREE_CODE (type1) == POINTER_TYPE)
3896 && null_ptr_cst_p (args[1]))
3897 || IS_AGGR_TYPE (type1))
3898 {
3899 type2 = type1;
3900 break;
3901 }
3902 if (((TYPE_PTRMEMFUNC_P (type2) || TREE_CODE (type2) == POINTER_TYPE)
3903 && null_ptr_cst_p (args[0]))
3904 || IS_AGGR_TYPE (type2))
3905 {
3906 type1 = type2;
3907 break;
3908 }
3909 return candidates;
3910
3911 default:
3912 my_friendly_abort (367);
3913 }
3914
3915 /* If we're dealing with two pointer types, we need candidates
3916 for both of them. */
3917 if (type2 && type1 != type2
3918 && TREE_CODE (type1) == TREE_CODE (type2)
3919 && (TREE_CODE (type1) == REFERENCE_TYPE
3920 || (TREE_CODE (type1) == POINTER_TYPE
3921 && TYPE_PTRMEM_P (type1) == TYPE_PTRMEM_P (type2))
3922 || TYPE_PTRMEMFUNC_P (type1)
3923 || IS_AGGR_TYPE (type1)))
3924 {
3925 candidates = build_builtin_candidate
3926 (candidates, fnname, type1, type1, args, argtypes, flags);
3927 return build_builtin_candidate
3928 (candidates, fnname, type2, type2, args, argtypes, flags);
3929 }
3930
3931 return build_builtin_candidate
3932 (candidates, fnname, type1, type2, args, argtypes, flags);
3933 }
3934
3935 tree
3936 type_decays_to (type)
3937 tree type;
3938 {
3939 if (TREE_CODE (type) == ARRAY_TYPE)
3940 return build_pointer_type (TREE_TYPE (type));
3941 if (TREE_CODE (type) == FUNCTION_TYPE)
3942 return build_pointer_type (type);
3943 return type;
3944 }
3945
3946 /* There are three conditions of builtin candidates:
3947
3948 1) bool-taking candidates. These are the same regardless of the input.
3949 2) pointer-pair taking candidates. These are generated for each type
3950 one of the input types converts to.
3951 3) arithmetic candidates. According to the WP, we should generate
3952 all of these, but I'm trying not to... */
3953
3954 static struct z_candidate *
3955 add_builtin_candidates (candidates, code, code2, fnname, args, flags)
3956 struct z_candidate *candidates;
3957 enum tree_code code, code2;
3958 tree fnname, *args;
3959 int flags;
3960 {
3961 int ref1, i;
3962 tree type, argtypes[3], types[2];
3963
3964 for (i = 0; i < 3; ++i)
3965 {
3966 if (args[i])
3967 argtypes[i] = lvalue_type (args[i]);
3968 else
3969 argtypes[i] = NULL_TREE;
3970 }
3971
3972 switch (code)
3973 {
3974 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
3975 and VQ is either volatile or empty, there exist candidate operator
3976 functions of the form
3977 VQ T& operator++(VQ T&); */
3978
3979 case POSTINCREMENT_EXPR:
3980 case PREINCREMENT_EXPR:
3981 case POSTDECREMENT_EXPR:
3982 case PREDECREMENT_EXPR:
3983 case MODIFY_EXPR:
3984 ref1 = 1;
3985 break;
3986
3987 /* 24There also exist candidate operator functions of the form
3988 bool operator!(bool);
3989 bool operator&&(bool, bool);
3990 bool operator||(bool, bool); */
3991
3992 case TRUTH_NOT_EXPR:
3993 return build_builtin_candidate
3994 (candidates, fnname, boolean_type_node,
3995 NULL_TREE, args, argtypes, flags);
3996
3997 case TRUTH_ORIF_EXPR:
3998 case TRUTH_ANDIF_EXPR:
3999 return build_builtin_candidate
4000 (candidates, fnname, boolean_type_node,
4001 boolean_type_node, args, argtypes, flags);
4002
4003 case ADDR_EXPR:
4004 case COMPOUND_EXPR:
4005 case COMPONENT_REF:
4006 return candidates;
4007
4008 default:
4009 ref1 = 0;
4010 }
4011
4012 types[0] = types[1] = NULL_TREE;
4013
4014 for (i = 0; i < 2; ++i)
4015 {
4016 if (! args[i])
4017 ;
4018 else if (IS_AGGR_TYPE (argtypes[i]))
4019 {
4020 tree convs = lookup_conversions (argtypes[i]);
4021
4022 if (code == COND_EXPR)
4023 {
4024 if (real_lvalue_p (args[i]))
4025 types[i] = tree_cons
4026 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
4027
4028 types[i] = tree_cons
4029 (NULL_TREE, TYPE_MAIN_VARIANT (argtypes[i]), types[i]);
4030 }
4031
4032 else if (! convs || (i == 0 && code == MODIFY_EXPR
4033 && code2 == NOP_EXPR))
4034 return candidates;
4035
4036 for (; convs; convs = TREE_CHAIN (convs))
4037 {
4038 type = TREE_TYPE (TREE_TYPE (TREE_VALUE (convs)));
4039
4040 if (i == 0 && ref1
4041 && (TREE_CODE (type) != REFERENCE_TYPE
4042 || TYPE_READONLY (TREE_TYPE (type))))
4043 continue;
4044
4045 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
4046 types[i] = tree_cons (NULL_TREE, type, types[i]);
4047
4048 type = non_reference (type);
4049 if (i != 0 || ! ref1)
4050 {
4051 type = TYPE_MAIN_VARIANT (type_decays_to (type));
4052 if (code == COND_EXPR && TREE_CODE (type) == ENUMERAL_TYPE)
4053 types[i] = tree_cons (NULL_TREE, type, types[i]);
4054 if (INTEGRAL_TYPE_P (type))
4055 type = type_promotes_to (type);
4056 }
4057
4058 if (! value_member (type, types[i]))
4059 types[i] = tree_cons (NULL_TREE, type, types[i]);
4060 }
4061 }
4062 else
4063 {
4064 if (code == COND_EXPR && real_lvalue_p (args[i]))
4065 types[i] = tree_cons
4066 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
4067 type = non_reference (argtypes[i]);
4068 if (i != 0 || ! ref1)
4069 {
4070 type = TYPE_MAIN_VARIANT (type_decays_to (type));
4071 if (code == COND_EXPR && TREE_CODE (type) == ENUMERAL_TYPE)
4072 types[i] = tree_cons (NULL_TREE, type, types[i]);
4073 if (INTEGRAL_TYPE_P (type))
4074 type = type_promotes_to (type);
4075 }
4076 types[i] = tree_cons (NULL_TREE, type, types[i]);
4077 }
4078 }
4079
4080 for (; types[0]; types[0] = TREE_CHAIN (types[0]))
4081 {
4082 if (types[1])
4083 for (type = types[1]; type; type = TREE_CHAIN (type))
4084 candidates = add_builtin_candidate
4085 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
4086 TREE_VALUE (type), args, argtypes, flags);
4087 else
4088 candidates = add_builtin_candidate
4089 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
4090 NULL_TREE, args, argtypes, flags);
4091 }
4092
4093 return candidates;
4094 }
4095
4096 static struct z_candidate *
4097 add_template_candidate (candidates, tmpl, arglist, flags)
4098 struct z_candidate *candidates;
4099 tree tmpl, arglist;
4100 int flags;
4101 {
4102 int ntparms = TREE_VEC_LENGTH (DECL_TEMPLATE_PARMS (tmpl));
4103 tree *targs = (tree *) alloca (sizeof (tree) * ntparms);
4104 struct z_candidate *cand;
4105 int i, dummy = 0;
4106 tree fn;
4107
4108 i = type_unification (DECL_TEMPLATE_PARMS (tmpl), targs,
4109 TYPE_ARG_TYPES (TREE_TYPE (tmpl)),
4110 arglist, &dummy, 0, 0);
4111 if (i != 0)
4112 return candidates;
4113
4114 fn = instantiate_template (tmpl, targs);
4115 if (fn == error_mark_node)
4116 return candidates;
4117
4118 cand = add_function_candidate (candidates, fn, arglist, flags);
4119 cand->template = DECL_TEMPLATE_INFO (fn);
4120 return cand;
4121 }
4122
4123 static int
4124 any_viable (cands)
4125 struct z_candidate *cands;
4126 {
4127 for (; cands; cands = cands->next)
4128 if (pedantic ? cands->viable == 1 : cands->viable)
4129 return 1;
4130 return 0;
4131 }
4132
4133 static struct z_candidate *
4134 splice_viable (cands)
4135 struct z_candidate *cands;
4136 {
4137 struct z_candidate **p = &cands;
4138
4139 for (; *p; )
4140 {
4141 if (pedantic ? (*p)->viable == 1 : (*p)->viable)
4142 p = &((*p)->next);
4143 else
4144 *p = (*p)->next;
4145 }
4146
4147 return cands;
4148 }
4149
4150 static tree
4151 build_this (obj)
4152 tree obj;
4153 {
4154 /* Fix this to work on non-lvalues. */
4155 if (IS_SIGNATURE_POINTER (TREE_TYPE (obj))
4156 || IS_SIGNATURE_REFERENCE (TREE_TYPE (obj)))
4157 return obj;
4158 else
4159 return build_unary_op (ADDR_EXPR, obj, 0);
4160 }
4161
4162 static void
4163 print_z_candidates (candidates)
4164 struct z_candidate *candidates;
4165 {
4166 char *str = "candidates are:";
4167 for (; candidates; candidates = candidates->next)
4168 {
4169 if (TREE_CODE (candidates->fn) == IDENTIFIER_NODE)
4170 {
4171 if (candidates->fn == ansi_opname [COND_EXPR])
4172 cp_error ("%s %D(%T, %T, %T) <builtin>", str, candidates->fn,
4173 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)),
4174 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 1)),
4175 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 2)));
4176 else if (TREE_VEC_LENGTH (candidates->convs) == 2)
4177 cp_error ("%s %D(%T, %T) <builtin>", str, candidates->fn,
4178 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)),
4179 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 1)));
4180 else
4181 cp_error ("%s %D(%T) <builtin>", str, candidates->fn,
4182 TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)));
4183 }
4184 else
4185 cp_error_at ("%s %+D%s", str, candidates->fn,
4186 candidates->viable == -1 ? " <near match>" : "");
4187 str = " ";
4188 }
4189 }
4190
4191 /* Returns the best overload candidate to perform the requested
4192 conversion. This function is used for three the overloading situations
4193 described in [over.match.copy], [over.match.conv], and [over.match.ref].
4194 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
4195 per [dcl.init.ref], so we ignore temporary bindings. */
4196
4197 static struct z_candidate *
4198 build_user_type_conversion_1 (totype, expr, flags)
4199 tree totype, expr;
4200 int flags;
4201 {
4202 struct z_candidate *candidates, *cand;
4203 tree fromtype = TREE_TYPE (expr);
4204 tree ctors = NULL_TREE, convs = NULL_TREE, *p;
4205 tree args;
4206
4207 if (IS_AGGR_TYPE (totype))
4208 ctors = lookup_fnfields (TYPE_BINFO (totype), ctor_identifier, 0);
4209 if (IS_AGGR_TYPE (fromtype)
4210 && (! IS_AGGR_TYPE (totype) || ! DERIVED_FROM_P (totype, fromtype)))
4211 convs = lookup_conversions (fromtype);
4212
4213 candidates = 0;
4214 flags |= LOOKUP_NO_CONVERSION;
4215
4216 if (ctors)
4217 {
4218 tree t = build_int_2 (0, 0);
4219 TREE_TYPE (t) = build_pointer_type (totype);
4220 args = build_tree_list (NULL_TREE, expr);
4221 if (TYPE_USES_VIRTUAL_BASECLASSES (totype))
4222 args = tree_cons (NULL_TREE, integer_one_node, args);
4223 args = tree_cons (NULL_TREE, t, args);
4224
4225 ctors = TREE_VALUE (ctors);
4226 }
4227 for (; ctors; ctors = DECL_CHAIN (ctors))
4228 {
4229 if (DECL_NONCONVERTING_P (ctors))
4230 continue;
4231
4232 candidates = add_function_candidate (candidates, ctors, args, flags);
4233 candidates->second_conv = build1 (IDENTITY_CONV, totype, NULL_TREE);
4234 candidates->basetype_path = TYPE_BINFO (totype);
4235 }
4236
4237 if (convs)
4238 args = build_tree_list (NULL_TREE, build_this (expr));
4239
4240 for (; convs; convs = TREE_CHAIN (convs))
4241 {
4242 tree fn = TREE_VALUE (convs);
4243 int convflags = LOOKUP_NO_CONVERSION;
4244 tree ics;
4245
4246 /* If we are called to convert to a reference type, we are trying to
4247 find an lvalue binding, so don't even consider temporaries. If
4248 we don't find an lvalue binding, the caller will try again to
4249 look for a temporary binding. */
4250 if (TREE_CODE (totype) == REFERENCE_TYPE)
4251 convflags |= LOOKUP_NO_TEMP_BIND;
4252
4253 ics = implicit_conversion
4254 (totype, TREE_TYPE (TREE_TYPE (fn)), 0, convflags);
4255
4256 if (TREE_CODE (totype) == REFERENCE_TYPE && ics && ICS_BAD_FLAG (ics))
4257 /* ignore the near match. */;
4258 else if (ics)
4259 for (; fn; fn = DECL_CHAIN (fn))
4260 {
4261 candidates = add_function_candidate (candidates, fn, args, flags);
4262 candidates->second_conv = ics;
4263 candidates->basetype_path = TREE_PURPOSE (convs);
4264 if (candidates->viable == 1 && ICS_BAD_FLAG (ics))
4265 candidates->viable = -1;
4266 }
4267 }
4268
4269 if (! any_viable (candidates))
4270 {
4271 #if 0
4272 if (flags & LOOKUP_COMPLAIN)
4273 {
4274 if (candidates && ! candidates->next)
4275 /* say why this one won't work or try to be loose */;
4276 else
4277 cp_error ("no viable candidates");
4278 }
4279 #endif
4280
4281 return 0;
4282 }
4283
4284 candidates = splice_viable (candidates);
4285 cand = tourney (candidates, totype);
4286
4287 if (cand == 0)
4288 {
4289 if (flags & LOOKUP_COMPLAIN)
4290 {
4291 cp_error ("conversion from `%T' to `%T' is ambiguous",
4292 fromtype, totype);
4293 print_z_candidates (candidates);
4294 }
4295
4296 cand = candidates; /* any one will do */
4297 cand->second_conv = build1 (AMBIG_CONV, totype, expr);
4298 ICS_USER_FLAG (cand->second_conv) = 1;
4299 ICS_BAD_FLAG (cand->second_conv) = 1;
4300
4301 return cand;
4302 }
4303
4304 for (p = &(cand->second_conv); TREE_CODE (*p) != IDENTITY_CONV; )
4305 p = &(TREE_OPERAND (*p, 0));
4306
4307 *p = build
4308 (USER_CONV,
4309 (DECL_CONSTRUCTOR_P (cand->fn)
4310 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
4311 NULL_TREE, cand->fn, cand->convs, cand->basetype_path);
4312 ICS_USER_FLAG (cand->second_conv) = 1;
4313 if (cand->viable == -1)
4314 ICS_BAD_FLAG (cand->second_conv) = 1;
4315
4316 return cand;
4317 }
4318
4319 tree
4320 build_user_type_conversion (totype, expr, flags)
4321 tree totype, expr;
4322 int flags;
4323 {
4324 struct z_candidate *cand
4325 = build_user_type_conversion_1 (totype, expr, flags);
4326
4327 if (cand)
4328 {
4329 if (TREE_CODE (cand->second_conv) == AMBIG_CONV)
4330 return error_mark_node;
4331 return convert_from_reference (convert_like (cand->second_conv, expr));
4332 }
4333 return NULL_TREE;
4334 }
4335
4336 tree
4337 build_new_function_call (fn, args, obj)
4338 tree fn, args, obj;
4339 {
4340 struct z_candidate *candidates = 0, *cand;
4341
4342 if (obj == NULL_TREE && TREE_CODE (fn) == TREE_LIST)
4343 {
4344 tree t;
4345 tree templates = NULL_TREE;
4346
4347 for (t = args; t; t = TREE_CHAIN (t))
4348 {
4349 if (TREE_VALUE (t) == error_mark_node)
4350 return error_mark_node;
4351 else if (TREE_CODE (TREE_TYPE (TREE_VALUE (t))) == VOID_TYPE)
4352 {
4353 error ("invalid use of void expression");
4354 return error_mark_node;
4355 }
4356 }
4357
4358 for (t = TREE_VALUE (fn); t; t = DECL_CHAIN (t))
4359 {
4360 if (TREE_CODE (t) == TEMPLATE_DECL)
4361 {
4362 templates = decl_tree_cons (NULL_TREE, t, templates);
4363 candidates = add_template_candidate
4364 (candidates, t, args, LOOKUP_NORMAL);
4365 }
4366 else
4367 candidates = add_function_candidate
4368 (candidates, t, args, LOOKUP_NORMAL);
4369 }
4370
4371 if (! any_viable (candidates))
4372 {
4373 if (candidates && ! candidates->next)
4374 return build_function_call (candidates->fn, args);
4375 cp_error ("no matching function for call to `%D (%A)'",
4376 TREE_PURPOSE (fn), args);
4377 if (candidates)
4378 print_z_candidates (candidates);
4379 return error_mark_node;
4380 }
4381 candidates = splice_viable (candidates);
4382 cand = tourney (candidates, NULL_TREE);
4383
4384 if (cand == 0)
4385 {
4386 cp_error ("call of overloaded `%D (%A)' is ambiguous",
4387 TREE_PURPOSE (fn), args);
4388 print_z_candidates (candidates);
4389 return error_mark_node;
4390 }
4391
4392 /* Pedantically, it is ill-formed to define a function that could
4393 also be a template instantiation, but we won't implement that
4394 until things settle down. */
4395 if (templates && ! cand->template && ! DECL_INITIAL (cand->fn))
4396 add_maybe_template (cand->fn, templates);
4397
4398 return build_over_call (cand->fn, cand->convs, args, LOOKUP_NORMAL);
4399 }
4400
4401 return build_function_call (fn, args);
4402 }
4403
4404 static tree
4405 build_object_call (obj, args)
4406 tree obj, args;
4407 {
4408 struct z_candidate *candidates = 0, *cand;
4409 tree fns, convs, mem_args;
4410 tree type = TREE_TYPE (obj);
4411
4412 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname [CALL_EXPR], 0);
4413
4414 if (fns)
4415 {
4416 tree fn = TREE_VALUE (fns);
4417 mem_args = tree_cons (NULL_TREE, build_this (obj), args);
4418
4419 for (; fn; fn = DECL_CHAIN (fn))
4420 {
4421 candidates = add_function_candidate
4422 (candidates, fn, mem_args, LOOKUP_NORMAL);
4423 candidates->basetype_path = TREE_PURPOSE (fns);
4424 }
4425 }
4426
4427 convs = lookup_conversions (type);
4428
4429 for (; convs; convs = TREE_CHAIN (convs))
4430 {
4431 tree fn = TREE_VALUE (convs);
4432 tree totype = TREE_TYPE (TREE_TYPE (fn));
4433
4434 if (TREE_CODE (totype) == POINTER_TYPE
4435 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
4436 for (; fn; fn = DECL_CHAIN (fn))
4437 {
4438 candidates = add_conv_candidate (candidates, fn, obj, args);
4439 candidates->basetype_path = TREE_PURPOSE (convs);
4440 }
4441 }
4442
4443 if (! any_viable (candidates))
4444 {
4445 cp_error ("no match for call to `(%T) (%A)'", TREE_TYPE (obj), args);
4446 print_z_candidates (candidates);
4447 return error_mark_node;
4448 }
4449
4450 candidates = splice_viable (candidates);
4451 cand = tourney (candidates, NULL_TREE);
4452
4453 if (cand == 0)
4454 {
4455 cp_error ("call of `(%T) (%A)' is ambiguous", TREE_TYPE (obj), args);
4456 print_z_candidates (candidates);
4457 return error_mark_node;
4458 }
4459
4460 if (DECL_NAME (cand->fn) == ansi_opname [CALL_EXPR])
4461 return build_over_call (cand->fn, cand->convs, mem_args, LOOKUP_NORMAL);
4462
4463 obj = convert_like (TREE_VEC_ELT (cand->convs, 0), obj);
4464
4465 /* FIXME */
4466 return build_function_call (obj, args);
4467 }
4468
4469 static void
4470 op_error (code, code2, arg1, arg2, arg3, problem)
4471 enum tree_code code, code2;
4472 tree arg1, arg2, arg3;
4473 char *problem;
4474 {
4475 char * opname
4476 = (code == MODIFY_EXPR ? assignop_tab [code2] : opname_tab [code]);
4477
4478 switch (code)
4479 {
4480 case COND_EXPR:
4481 cp_error ("%s for `%T ? %T : %T'", problem,
4482 error_type (arg1), error_type (arg2), error_type (arg3));
4483 break;
4484 case POSTINCREMENT_EXPR:
4485 case POSTDECREMENT_EXPR:
4486 cp_error ("%s for `%T%s'", problem, error_type (arg1), opname);
4487 break;
4488 case ARRAY_REF:
4489 cp_error ("%s for `%T[%T]'", problem,
4490 error_type (arg1), error_type (arg2));
4491 break;
4492 default:
4493 if (arg2)
4494 cp_error ("%s for `%T %s %T'", problem,
4495 error_type (arg1), opname, error_type (arg2));
4496 else
4497 cp_error ("%s for `%s%T'", problem, opname, error_type (arg1));
4498 }
4499 }
4500
4501 tree
4502 build_new_op (code, flags, arg1, arg2, arg3)
4503 enum tree_code code;
4504 int flags;
4505 tree arg1, arg2, arg3;
4506 {
4507 struct z_candidate *candidates = 0, *cand;
4508 tree fns, mem_arglist, arglist, fnname;
4509 enum tree_code code2 = NOP_EXPR;
4510 tree templates = NULL_TREE;
4511
4512 if (arg1 == error_mark_node
4513 || arg2 == error_mark_node
4514 || arg3 == error_mark_node)
4515 return error_mark_node;
4516
4517 if (code == MODIFY_EXPR)
4518 {
4519 code2 = TREE_CODE (arg3);
4520 arg3 = NULL_TREE;
4521 fnname = ansi_assopname[code2];
4522 }
4523 else
4524 fnname = ansi_opname[code];
4525
4526 switch (code)
4527 {
4528 case NEW_EXPR:
4529 case VEC_NEW_EXPR:
4530 {
4531 tree rval;
4532
4533 arglist = tree_cons (NULL_TREE, arg2, arg3);
4534 if (flags & LOOKUP_GLOBAL)
4535 return build_new_function_call
4536 (lookup_name_nonclass (fnname), arglist, NULL_TREE);
4537
4538 /* FIXME */
4539 rval = build_method_call
4540 (build_indirect_ref (build1 (NOP_EXPR, arg1, error_mark_node),
4541 "new"),
4542 fnname, arglist, NULL_TREE, flags);
4543 if (rval == error_mark_node)
4544 /* User might declare fancy operator new, but invoke it
4545 like standard one. */
4546 return rval;
4547
4548 TREE_TYPE (rval) = arg1;
4549 TREE_CALLS_NEW (rval) = 1;
4550 return rval;
4551 }
4552
4553 case VEC_DELETE_EXPR:
4554 case DELETE_EXPR:
4555 {
4556 tree rval;
4557
4558 if (flags & LOOKUP_GLOBAL)
4559 return build_new_function_call
4560 (lookup_name_nonclass (fnname),
4561 build_tree_list (NULL_TREE, arg1), NULL_TREE);
4562
4563 arglist = tree_cons (NULL_TREE, arg1, build_tree_list (NULL_TREE, arg2));
4564
4565 arg1 = TREE_TYPE (arg1);
4566
4567 /* This handles the case where we're trying to delete
4568 X (*a)[10];
4569 a=new X[5][10];
4570 delete[] a; */
4571
4572 if (TREE_CODE (TREE_TYPE (arg1)) == ARRAY_TYPE)
4573 {
4574 /* Strip off the pointer and the array. */
4575 arg1 = TREE_TYPE (TREE_TYPE (arg1));
4576
4577 while (TREE_CODE (arg1) == ARRAY_TYPE)
4578 arg1 = (TREE_TYPE (arg1));
4579
4580 arg1 = build_pointer_type (arg1);
4581 }
4582
4583 /* FIXME */
4584 rval = build_method_call
4585 (build_indirect_ref (build1 (NOP_EXPR, arg1,
4586 error_mark_node),
4587 NULL_PTR),
4588 fnname, arglist, NULL_TREE, flags);
4589 #if 0
4590 /* This can happen when operator delete is protected. */
4591 my_friendly_assert (rval != error_mark_node, 250);
4592 TREE_TYPE (rval) = void_type_node;
4593 #endif
4594 return rval;
4595 }
4596
4597 case CALL_EXPR:
4598 return build_object_call (arg1, arg2);
4599 }
4600
4601 /* The comma operator can have void args. */
4602 if (TREE_CODE (arg1) == OFFSET_REF)
4603 arg1 = resolve_offset_ref (arg1);
4604 if (arg2 && TREE_CODE (arg2) == OFFSET_REF)
4605 arg2 = resolve_offset_ref (arg2);
4606 if (arg3 && TREE_CODE (arg3) == OFFSET_REF)
4607 arg3 = resolve_offset_ref (arg3);
4608
4609 if (code == COND_EXPR)
4610 {
4611 if (arg2 == NULL_TREE
4612 || TREE_CODE (TREE_TYPE (arg2)) == VOID_TYPE
4613 || TREE_CODE (TREE_TYPE (arg3)) == VOID_TYPE
4614 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))
4615 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3))))
4616 goto builtin;
4617 }
4618 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
4619 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
4620 goto builtin;
4621
4622 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
4623 arg2 = integer_zero_node;
4624
4625 fns = lookup_name_nonclass (fnname);
4626 /* + Koenig lookup */
4627
4628 if (arg2 && arg3)
4629 arglist = tree_cons (NULL_TREE, arg1, tree_cons
4630 (NULL_TREE, arg2, build_tree_list (NULL_TREE, arg3)));
4631 else if (arg2)
4632 arglist = tree_cons (NULL_TREE, arg1, build_tree_list (NULL_TREE, arg2));
4633 else
4634 arglist = build_tree_list (NULL_TREE, arg1);
4635
4636 if (fns && TREE_CODE (fns) == TREE_LIST)
4637 fns = TREE_VALUE (fns);
4638 for (; fns; fns = DECL_CHAIN (fns))
4639 {
4640 if (TREE_CODE (fns) == TEMPLATE_DECL)
4641 {
4642 templates = decl_tree_cons (NULL_TREE, fns, templates);
4643 candidates = add_template_candidate
4644 (candidates, fns, arglist, flags);
4645 }
4646 else
4647 candidates = add_function_candidate (candidates, fns, arglist, flags);
4648 }
4649
4650 if (IS_AGGR_TYPE (TREE_TYPE (arg1)))
4651 fns = lookup_fnfields (TYPE_BINFO (TREE_TYPE (arg1)), fnname, 0);
4652 else
4653 fns = NULL_TREE;
4654
4655 if (fns)
4656 {
4657 tree fn = TREE_VALUE (fns);
4658 mem_arglist = tree_cons (NULL_TREE, build_this (arg1), TREE_CHAIN (arglist));
4659 for (; fn; fn = DECL_CHAIN (fn))
4660 {
4661 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4662 candidates = add_function_candidate
4663 (candidates, fn, mem_arglist, flags);
4664 else
4665 candidates = add_function_candidate (candidates, fn, arglist, flags);
4666
4667 candidates->basetype_path = TREE_PURPOSE (fns);
4668 }
4669 }
4670
4671 {
4672 tree args[3];
4673
4674 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
4675 to know about two args; a builtin candidate will always have a first
4676 parameter of type bool. We'll handle that in
4677 build_builtin_candidate. */
4678 if (code == COND_EXPR)
4679 {
4680 args[0] = arg2;
4681 args[1] = arg3;
4682 args[2] = arg1;
4683 }
4684 else
4685 {
4686 args[0] = arg1;
4687 args[1] = arg2;
4688 args[2] = NULL_TREE;
4689 }
4690
4691 candidates = add_builtin_candidates
4692 (candidates, code, code2, fnname, args, flags);
4693 }
4694
4695 if (! any_viable (candidates))
4696 {
4697 switch (code)
4698 {
4699 case POSTINCREMENT_EXPR:
4700 case POSTDECREMENT_EXPR:
4701 /* Look for an `operator++ (int)'. If they didn't have
4702 one, then we fall back to the old way of doing things. */
4703 if (flags & LOOKUP_COMPLAIN)
4704 cp_pedwarn ("no `%D (int)' declared for postfix `%s', trying prefix operator instead",
4705 fnname, opname_tab [code]);
4706 if (code == POSTINCREMENT_EXPR)
4707 code = PREINCREMENT_EXPR;
4708 else
4709 code = PREDECREMENT_EXPR;
4710 return build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE);
4711
4712 /* The caller will deal with these. */
4713 case ADDR_EXPR:
4714 case COMPOUND_EXPR:
4715 case COMPONENT_REF:
4716 return NULL_TREE;
4717 }
4718 if (flags & LOOKUP_COMPLAIN)
4719 {
4720 op_error (code, code2, arg1, arg2, arg3, "no match");
4721 print_z_candidates (candidates);
4722 }
4723 return error_mark_node;
4724 }
4725 candidates = splice_viable (candidates);
4726 cand = tourney (candidates, NULL_TREE);
4727
4728 if (cand == 0)
4729 {
4730 if (flags & LOOKUP_COMPLAIN)
4731 {
4732 op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
4733 print_z_candidates (candidates);
4734 }
4735 return error_mark_node;
4736 }
4737
4738 if (TREE_CODE (cand->fn) == FUNCTION_DECL)
4739 {
4740 extern int warn_synth;
4741 if (warn_synth
4742 && fnname == ansi_opname[MODIFY_EXPR]
4743 && DECL_ARTIFICIAL (cand->fn)
4744 && candidates->next
4745 && ! candidates->next->next)
4746 {
4747 cp_warning ("using synthesized `%#D' for copy assignment",
4748 cand->fn);
4749 cp_warning_at (" where cfront would use `%#D'",
4750 cand == candidates
4751 ? candidates->next->fn
4752 : candidates->fn);
4753 }
4754
4755 if (DECL_FUNCTION_MEMBER_P (cand->fn))
4756 enforce_access (cand->basetype_path, cand->fn);
4757
4758 /* Pedantically, it is ill-formed to define a function that could
4759 also be a template instantiation, but we won't implement that
4760 until things settle down. */
4761 if (templates && ! cand->template && ! DECL_INITIAL (cand->fn)
4762 && TREE_CODE (TREE_TYPE (cand->fn)) != METHOD_TYPE)
4763 add_maybe_template (cand->fn, templates);
4764
4765 return build_over_call
4766 (cand->fn, cand->convs,
4767 TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
4768 ? mem_arglist : arglist,
4769 LOOKUP_NORMAL);
4770 }
4771
4772 /* Check for comparison of different enum types. */
4773 switch (code)
4774 {
4775 case GT_EXPR:
4776 case LT_EXPR:
4777 case GE_EXPR:
4778 case LE_EXPR:
4779 case EQ_EXPR:
4780 case NE_EXPR:
4781 if (flag_int_enum_equivalence == 0
4782 && TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
4783 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
4784 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
4785 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
4786 {
4787 cp_warning ("comparison between `%#T' and `%#T'",
4788 TREE_TYPE (arg1), TREE_TYPE (arg2));
4789 }
4790 }
4791
4792 arg1 = convert_from_reference
4793 (convert_like (TREE_VEC_ELT (cand->convs, 0), arg1));
4794 if (arg2)
4795 arg2 = convert_like (TREE_VEC_ELT (cand->convs, 1), arg2);
4796 if (arg3)
4797 arg3 = convert_like (TREE_VEC_ELT (cand->convs, 2), arg3);
4798
4799 builtin:
4800 switch (code)
4801 {
4802 case MODIFY_EXPR:
4803 return build_modify_expr (arg1, code2, arg2);
4804
4805 case INDIRECT_REF:
4806 return build_indirect_ref (arg1, "unary *");
4807
4808 case PLUS_EXPR:
4809 case MINUS_EXPR:
4810 case MULT_EXPR:
4811 case TRUNC_DIV_EXPR:
4812 case GT_EXPR:
4813 case LT_EXPR:
4814 case GE_EXPR:
4815 case LE_EXPR:
4816 case EQ_EXPR:
4817 case NE_EXPR:
4818 case MAX_EXPR:
4819 case MIN_EXPR:
4820 case LSHIFT_EXPR:
4821 case RSHIFT_EXPR:
4822 case TRUNC_MOD_EXPR:
4823 case BIT_AND_EXPR:
4824 case BIT_IOR_EXPR:
4825 case BIT_XOR_EXPR:
4826 case TRUTH_ANDIF_EXPR:
4827 case TRUTH_ORIF_EXPR:
4828 return build_binary_op_nodefault (code, arg1, arg2, code);
4829
4830 case CONVERT_EXPR:
4831 case NEGATE_EXPR:
4832 case BIT_NOT_EXPR:
4833 case TRUTH_NOT_EXPR:
4834 case PREINCREMENT_EXPR:
4835 case POSTINCREMENT_EXPR:
4836 case PREDECREMENT_EXPR:
4837 case POSTDECREMENT_EXPR:
4838 case REALPART_EXPR:
4839 case IMAGPART_EXPR:
4840 return build_unary_op (code, arg1, candidates != 0);
4841
4842 case ARRAY_REF:
4843 return build_array_ref (arg1, arg2);
4844
4845 case COND_EXPR:
4846 return build_conditional_expr (arg1, arg2, arg3);
4847
4848 case MEMBER_REF:
4849 return build_m_component_ref
4850 (build_indirect_ref (arg1, NULL_PTR), arg2);
4851
4852 /* The caller will deal with these. */
4853 case ADDR_EXPR:
4854 case COMPONENT_REF:
4855 case COMPOUND_EXPR:
4856 return NULL_TREE;
4857
4858 default:
4859 my_friendly_abort (367);
4860 }
4861 }
4862
4863 static void
4864 enforce_access (basetype_path, function)
4865 tree basetype_path, function;
4866 {
4867 tree access = compute_access (basetype_path, function);
4868
4869 if (access == access_private_node)
4870 {
4871 cp_error_at ("`%+#D' is %s", function,
4872 TREE_PRIVATE (function) ? "private"
4873 : "from private base class");
4874 error ("within this context");
4875 }
4876 else if (access == access_protected_node)
4877 {
4878 cp_error_at ("`%+#D' %s", function,
4879 TREE_PROTECTED (function) ? "is protected"
4880 : "has protected accessibility");
4881 error ("within this context");
4882 }
4883 }
4884
4885 /* Perform the conversions in CONVS on the expression EXPR. */
4886
4887 static tree
4888 convert_like (convs, expr)
4889 tree convs, expr;
4890 {
4891 if (ICS_BAD_FLAG (convs)
4892 && TREE_CODE (convs) != USER_CONV
4893 && TREE_CODE (convs) != AMBIG_CONV)
4894 {
4895 tree t = convs;
4896 for (; t; t = TREE_OPERAND (t, 0))
4897 {
4898 if (TREE_CODE (t) == USER_CONV)
4899 {
4900 expr = convert_like (t, expr);
4901 break;
4902 }
4903 else if (TREE_CODE (t) == AMBIG_CONV)
4904 return convert_like (t, expr);
4905 else if (TREE_CODE (t) == IDENTITY_CONV)
4906 break;
4907 }
4908 return convert_for_initialization
4909 (NULL_TREE, TREE_TYPE (convs), expr, LOOKUP_NORMAL,
4910 "conversion", NULL_TREE, 0);
4911 }
4912
4913 switch (TREE_CODE (convs))
4914 {
4915 case USER_CONV:
4916 {
4917 tree fn = TREE_OPERAND (convs, 1);
4918 tree args;
4919 enforce_access (TREE_OPERAND (convs, 3), fn);
4920
4921 if (DECL_CONSTRUCTOR_P (fn))
4922 {
4923 tree t = build_int_2 (0, 0);
4924 TREE_TYPE (t) = build_pointer_type (DECL_CONTEXT (fn));
4925
4926 args = build_tree_list (NULL_TREE, expr);
4927 if (TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (fn)))
4928 args = tree_cons (NULL_TREE, integer_one_node, args);
4929 args = tree_cons (NULL_TREE, t, args);
4930 }
4931 else
4932 args = build_this (expr);
4933 expr = build_over_call
4934 (TREE_OPERAND (convs, 1), TREE_OPERAND (convs, 2),
4935 args, LOOKUP_NORMAL);
4936
4937 /* If this is a constructor or a function returning an aggr type,
4938 we need to build up a TARGET_EXPR. */
4939 if (DECL_CONSTRUCTOR_P (fn))
4940 expr = build_cplus_new (TREE_TYPE (convs), expr);
4941
4942 return expr;
4943 }
4944 case IDENTITY_CONV:
4945 if (type_unknown_p (expr))
4946 expr = instantiate_type (TREE_TYPE (convs), expr, 1);
4947 if (TREE_READONLY_DECL_P (expr))
4948 expr = decl_constant_value (expr);
4949 return expr;
4950 case AMBIG_CONV:
4951 /* Call build_user_type_conversion again for the error. */
4952 return build_user_type_conversion
4953 (TREE_TYPE (convs), TREE_OPERAND (convs, 0), LOOKUP_NORMAL);
4954 };
4955
4956 expr = convert_like (TREE_OPERAND (convs, 0), expr);
4957 if (expr == error_mark_node)
4958 return error_mark_node;
4959
4960 switch (TREE_CODE (convs))
4961 {
4962 case RVALUE_CONV:
4963 if (! IS_AGGR_TYPE (TREE_TYPE (convs)))
4964 return expr;
4965 /* else fall through */
4966 case BASE_CONV:
4967 return build_user_type_conversion
4968 (TREE_TYPE (convs), expr, LOOKUP_NORMAL);
4969 case REF_BIND:
4970 return convert_to_reference
4971 (TREE_TYPE (convs), expr,
4972 CONV_IMPLICIT, LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
4973 error_mark_node);
4974 case LVALUE_CONV:
4975 return decay_conversion (expr);
4976 }
4977 return ocp_convert (TREE_TYPE (convs), expr, CONV_IMPLICIT,
4978 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
4979 }
4980
4981 static tree
4982 convert_default_arg (type, arg)
4983 tree type, arg;
4984 {
4985 arg = break_out_target_exprs (arg);
4986
4987 if (TREE_CODE (arg) == CONSTRUCTOR)
4988 {
4989 arg = digest_init (type, arg, 0);
4990 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4991 "default argument", 0, 0);
4992 }
4993 else
4994 {
4995 /* This could get clobbered by the following call. */
4996 if (TREE_HAS_CONSTRUCTOR (arg))
4997 arg = copy_node (arg);
4998
4999 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
5000 "default argument", 0, 0);
5001 #ifdef PROMOTE_PROTOTYPES
5002 if ((TREE_CODE (type) == INTEGER_TYPE
5003 || TREE_CODE (type) == ENUMERAL_TYPE)
5004 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
5005 arg = default_conversion (arg);
5006 #endif
5007 }
5008
5009 return arg;
5010 }
5011
5012 static tree
5013 build_over_call (fn, convs, args, flags)
5014 tree fn, convs, args;
5015 int flags;
5016 {
5017 tree converted_args = NULL_TREE;
5018 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
5019 tree conv, arg, val;
5020 int i = 0;
5021 int is_method = 0;
5022
5023 if (args && TREE_CODE (args) != TREE_LIST)
5024 args = build_tree_list (NULL_TREE, args);
5025 arg = args;
5026
5027 /* The implicit parameters to a constructor are not considered by overload
5028 resolution, and must be of the proper type. */
5029 if (DECL_CONSTRUCTOR_P (fn))
5030 {
5031 converted_args = tree_cons (NULL_TREE, TREE_VALUE (arg), converted_args);
5032 arg = TREE_CHAIN (arg);
5033 parm = TREE_CHAIN (parm);
5034 if (TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (fn)))
5035 {
5036 converted_args = tree_cons
5037 (NULL_TREE, TREE_VALUE (arg), converted_args);
5038 arg = TREE_CHAIN (arg);
5039 parm = TREE_CHAIN (parm);
5040 }
5041 }
5042 /* Bypass access control for 'this' parameter. */
5043 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
5044 {
5045 tree parmtype = TREE_VALUE (parm);
5046 tree argtype = TREE_TYPE (TREE_VALUE (arg));
5047 if (ICS_BAD_FLAG (TREE_VEC_ELT (convs, i)))
5048 {
5049 int dv = (TYPE_VOLATILE (TREE_TYPE (parmtype))
5050 < TYPE_VOLATILE (TREE_TYPE (argtype)));
5051 int dc = (TYPE_READONLY (TREE_TYPE (parmtype))
5052 < TYPE_READONLY (TREE_TYPE (argtype)));
5053 char *p = (dv && dc ? "const and volatile"
5054 : dc ? "const" : dv ? "volatile" : "");
5055
5056 cp_pedwarn ("passing `%T' as `this' argument of `%#D' discards %s",
5057 TREE_TYPE (argtype), fn, p);
5058 }
5059 converted_args = tree_cons
5060 (NULL_TREE, convert_force (TREE_VALUE (parm), TREE_VALUE (arg), CONV_C_CAST),
5061 converted_args);
5062 parm = TREE_CHAIN (parm);
5063 arg = TREE_CHAIN (arg);
5064 ++i;
5065 is_method = 1;
5066 }
5067
5068 for (; arg && parm;
5069 parm = TREE_CHAIN (parm), arg = TREE_CHAIN (arg), ++i)
5070 {
5071 tree type = TREE_VALUE (parm);
5072
5073 conv = TREE_VEC_ELT (convs, i);
5074 if (ICS_BAD_FLAG (conv))
5075 {
5076 tree t = conv;
5077 val = TREE_VALUE (arg);
5078
5079 for (; t; t = TREE_OPERAND (t, 0))
5080 {
5081 if (TREE_CODE (t) == USER_CONV
5082 || TREE_CODE (t) == AMBIG_CONV)
5083 {
5084 val = convert_like (t, val);
5085 break;
5086 }
5087 else if (TREE_CODE (t) == IDENTITY_CONV)
5088 break;
5089 }
5090 val = convert_for_initialization
5091 (NULL_TREE, type, val, LOOKUP_NORMAL,
5092 "argument passing", fn, i - is_method);
5093 }
5094 else
5095 val = convert_like (conv, TREE_VALUE (arg));
5096
5097 #ifdef PROMOTE_PROTOTYPES
5098 if ((TREE_CODE (type) == INTEGER_TYPE
5099 || TREE_CODE (type) == ENUMERAL_TYPE)
5100 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
5101 val = default_conversion (val);
5102 #endif
5103 converted_args = tree_cons (NULL_TREE, val, converted_args);
5104 }
5105
5106 /* Default arguments */
5107 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm))
5108 {
5109 tree arg = TREE_PURPOSE (parm);
5110
5111 if (PARM_DEFAULT_FROM_TEMPLATE (parm))
5112 /* This came from a template. Instantiate the default arg here,
5113 not in tsubst. */
5114 arg = tsubst_expr (arg, &TREE_VEC_ELT (DECL_TI_ARGS (fn), 0),
5115 TREE_VEC_LENGTH (DECL_TI_ARGS (fn)), NULL_TREE);
5116 converted_args = tree_cons
5117 (NULL_TREE, convert_default_arg (TREE_VALUE (parm), arg),
5118 converted_args);
5119 }
5120
5121 /* Ellipsis */
5122 for (; arg; arg = TREE_CHAIN (arg))
5123 {
5124 val = TREE_VALUE (arg);
5125
5126 if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
5127 && (TYPE_PRECISION (TREE_TYPE (val))
5128 < TYPE_PRECISION (double_type_node)))
5129 /* Convert `float' to `double'. */
5130 val = cp_convert (double_type_node, val);
5131 else if (TYPE_LANG_SPECIFIC (TREE_TYPE (val))
5132 && ! TYPE_HAS_TRIVIAL_INIT_REF (TREE_TYPE (val)))
5133 cp_warning ("cannot pass objects of type `%T' through `...'",
5134 TREE_TYPE (val));
5135 else
5136 /* Convert `short' and `char' to full-size `int'. */
5137 val = default_conversion (val);
5138
5139 converted_args = tree_cons (NULL_TREE, val, converted_args);
5140 }
5141
5142 converted_args = nreverse (converted_args);
5143
5144 /* Avoid actually calling copy constructors and copy assignment operators,
5145 if possible. */
5146 if (DECL_CONSTRUCTOR_P (fn)
5147 && TREE_VEC_LENGTH (convs) == 1
5148 && copy_args_p (fn))
5149 {
5150 tree targ;
5151 arg = TREE_VALUE (TREE_CHAIN (converted_args));
5152
5153 /* Pull out the real argument, disregarding const-correctness. */
5154 targ = arg;
5155 while (TREE_CODE (targ) == NOP_EXPR
5156 || TREE_CODE (targ) == NON_LVALUE_EXPR
5157 || TREE_CODE (targ) == CONVERT_EXPR)
5158 targ = TREE_OPERAND (targ, 0);
5159 if (TREE_CODE (targ) == ADDR_EXPR)
5160 {
5161 targ = TREE_OPERAND (targ, 0);
5162 if (! comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (arg))),
5163 TYPE_MAIN_VARIANT (TREE_TYPE (targ)), 1))
5164 targ = NULL_TREE;
5165 }
5166 else
5167 targ = NULL_TREE;
5168
5169 if (targ)
5170 arg = targ;
5171 else
5172 arg = build_indirect_ref (arg, 0);
5173
5174 /* [class.copy]: the copy constructor is implicitly defined even if
5175 the implementation elided its use. */
5176 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
5177 mark_used (fn);
5178
5179 /* If we're creating a temp and we already have one, don't create a
5180 new one. If we're not creating a temp but we get one, use
5181 INIT_EXPR to collapse the temp into our target. Otherwise, if the
5182 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
5183 temp or an INIT_EXPR otherwise. */
5184 if (integer_zerop (TREE_VALUE (args)))
5185 {
5186 if (! real_lvalue_p (arg))
5187 return arg;
5188 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
5189 {
5190 val = build (VAR_DECL, DECL_CONTEXT (fn));
5191 layout_decl (val, 0);
5192 val = build (TARGET_EXPR, DECL_CONTEXT (fn), val, arg, 0, 0);
5193 TREE_SIDE_EFFECTS (val) = 1;
5194 return val;
5195 }
5196 }
5197 else if (! real_lvalue_p (arg)
5198 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
5199 {
5200 tree to = stabilize_reference
5201 (build_indirect_ref (TREE_VALUE (args), 0));
5202 val = build (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
5203 TREE_SIDE_EFFECTS (val) = 1;
5204 return build_unary_op (ADDR_EXPR, val, 0);
5205 }
5206 }
5207 else if (DECL_NAME (fn) == ansi_opname[MODIFY_EXPR]
5208 && copy_args_p (fn)
5209 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
5210 {
5211 tree to = stabilize_reference
5212 (build_indirect_ref (TREE_VALUE (converted_args), 0));
5213 arg = build_indirect_ref (TREE_VALUE (TREE_CHAIN (converted_args)), 0);
5214 val = build (MODIFY_EXPR, TREE_TYPE (to), to, arg);
5215 TREE_SIDE_EFFECTS (val) = 1;
5216 return val;
5217 }
5218
5219 mark_used (fn);
5220
5221 if (DECL_CONTEXT (fn) && IS_SIGNATURE (DECL_CONTEXT (fn)))
5222 return build_signature_method_call (fn, converted_args);
5223 else if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
5224 {
5225 tree t, *p = &TREE_VALUE (converted_args);
5226 tree binfo = get_binfo
5227 (DECL_CONTEXT (fn), TREE_TYPE (TREE_TYPE (*p)), 0);
5228 *p = convert_pointer_to_real (binfo, *p);
5229 if (TREE_SIDE_EFFECTS (*p))
5230 *p = save_expr (*p);
5231 t = build_pointer_type (TREE_TYPE (fn));
5232 fn = build_vfn_ref (p, build_indirect_ref (*p, 0), DECL_VINDEX (fn));
5233 TREE_TYPE (fn) = t;
5234 }
5235 else if (DECL_INLINE (fn))
5236 fn = inline_conversion (fn);
5237 else
5238 fn = build_addr_func (fn);
5239
5240 fn = build_call (fn, TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))), converted_args);
5241 if (TREE_TYPE (fn) == void_type_node)
5242 return fn;
5243 if (IS_AGGR_TYPE (TREE_TYPE (fn)))
5244 fn = build_cplus_new (TREE_TYPE (fn), fn);
5245 return convert_from_reference (require_complete_type (fn));
5246 }
5247
5248 static tree
5249 build_new_method_call (instance, name, args, basetype_path, flags)
5250 tree instance, name, args, basetype_path;
5251 int flags;
5252 {
5253 struct z_candidate *candidates = 0, *cand;
5254 tree basetype, mem_args, fns, instance_ptr;
5255 tree pretty_name;
5256 tree user_args = args;
5257
5258 /* If there is an extra argument for controlling virtual bases,
5259 remove it for error reporting. */
5260 if (flags & LOOKUP_HAS_IN_CHARGE)
5261 user_args = TREE_CHAIN (args);
5262
5263 for (fns = args; fns; fns = TREE_CHAIN (fns))
5264 if (TREE_VALUE (fns) == error_mark_node)
5265 return error_mark_node;
5266
5267 if (instance == NULL_TREE)
5268 basetype = BINFO_TYPE (basetype_path);
5269 else
5270 {
5271 if (TREE_CODE (instance) == OFFSET_REF)
5272 instance = resolve_offset_ref (instance);
5273 if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
5274 instance = convert_from_reference (instance);
5275 basetype = TREE_TYPE (instance);
5276
5277 /* XXX this should be handled before we get here. */
5278 if (! IS_AGGR_TYPE (basetype)
5279 && ! (TYPE_LANG_SPECIFIC (basetype)
5280 && (IS_SIGNATURE_POINTER (basetype)
5281 || IS_SIGNATURE_REFERENCE (basetype))))
5282 {
5283 if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
5284 cp_error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
5285 name, instance, basetype);
5286
5287 return error_mark_node;
5288 }
5289
5290 /* If `instance' is a signature pointer/reference and `name' is
5291 not a constructor, we are calling a signature member function.
5292 In that case set the `basetype' to the signature type. */
5293 if ((IS_SIGNATURE_POINTER (basetype)
5294 || IS_SIGNATURE_REFERENCE (basetype))
5295 && TYPE_IDENTIFIER (basetype) != name)
5296 basetype = SIGNATURE_TYPE (basetype);
5297 }
5298
5299 if (basetype_path == NULL_TREE)
5300 basetype_path = TYPE_BINFO (basetype);
5301
5302 if (instance)
5303 {
5304 instance_ptr = build_this (instance);
5305
5306 /* XXX this should be handled before we get here. */
5307 fns = build_field_call (basetype_path, instance_ptr, name, args);
5308 if (fns)
5309 return fns;
5310 }
5311 else
5312 {
5313 instance_ptr = build_int_2 (0, 0);
5314 TREE_TYPE (instance_ptr) = build_pointer_type (basetype);
5315 }
5316
5317 pretty_name
5318 = (name == ctor_identifier ? constructor_name_full (basetype) : name);
5319
5320 fns = lookup_fnfields (basetype_path, name, 1);
5321
5322 if (fns == error_mark_node)
5323 return error_mark_node;
5324 if (fns)
5325 {
5326 tree t = TREE_VALUE (fns);
5327 if (name == ctor_identifier && TYPE_USES_VIRTUAL_BASECLASSES (basetype)
5328 && ! (flags & LOOKUP_HAS_IN_CHARGE))
5329 {
5330 flags |= LOOKUP_HAS_IN_CHARGE;
5331 args = tree_cons (NULL_TREE, integer_one_node, args);
5332 }
5333 mem_args = tree_cons (NULL_TREE, instance_ptr, args);
5334 for (; t; t = DECL_CHAIN (t))
5335 {
5336 /* We can end up here for copy-init of same or base class. */
5337 if (name == ctor_identifier
5338 && (flags & LOOKUP_ONLYCONVERTING)
5339 && DECL_NONCONVERTING_P (t))
5340 continue;
5341 if (TREE_CODE (TREE_TYPE (t)) == METHOD_TYPE)
5342 candidates = add_function_candidate
5343 (candidates, t, mem_args, flags);
5344 else
5345 candidates = add_function_candidate (candidates, t, args, flags);
5346 candidates->basetype_path = TREE_PURPOSE (fns);
5347 }
5348 }
5349
5350 if (! any_viable (candidates))
5351 {
5352 /* XXX will LOOKUP_SPECULATIVELY be needed when this is done? */
5353 if (flags & LOOKUP_SPECULATIVELY)
5354 return NULL_TREE;
5355 cp_error ("no matching function for call to `%T::%D (%A)%V'", basetype,
5356 pretty_name, user_args, TREE_TYPE (TREE_TYPE (instance_ptr)));
5357 print_z_candidates (candidates);
5358 return error_mark_node;
5359 }
5360 candidates = splice_viable (candidates);
5361 cand = tourney (candidates, NULL_TREE);
5362
5363 if (cand == 0)
5364 {
5365 cp_error ("call of overloaded `%D(%A)' is ambiguous", pretty_name,
5366 user_args);
5367 print_z_candidates (candidates);
5368 return error_mark_node;
5369 }
5370
5371 enforce_access (cand->basetype_path, cand->fn);
5372 if (DECL_ABSTRACT_VIRTUAL_P (cand->fn)
5373 && instance == current_class_ref
5374 && DECL_CONSTRUCTOR_P (current_function_decl)
5375 && ! (flags & LOOKUP_NONVIRTUAL)
5376 && value_member (cand->fn, get_abstract_virtuals (basetype)))
5377 cp_error ("abstract virtual `%#D' called from constructor", cand->fn);
5378 if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
5379 && TREE_CODE (instance_ptr) == NOP_EXPR
5380 && TREE_OPERAND (instance_ptr, 0) == error_mark_node)
5381 cp_error ("cannot call member function `%D' without object", cand->fn);
5382
5383 if (DECL_VINDEX (cand->fn) && ! (flags & LOOKUP_NONVIRTUAL)
5384 && ((instance == current_class_ref && (dtor_label || ctor_label))
5385 || resolves_to_fixed_type_p (instance, 0)))
5386 flags |= LOOKUP_NONVIRTUAL;
5387
5388 return build_over_call
5389 (cand->fn, cand->convs,
5390 TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE ? mem_args : args,
5391 flags);
5392 }
5393
5394 /* Compare two implicit conversion sequences that differ only in their
5395 qualification conversion. Subroutine of compare_ics. */
5396
5397 static int
5398 compare_qual (ics1, ics2)
5399 tree ics1, ics2;
5400 {
5401 tree to1 = TREE_TYPE (ics1);
5402 tree to2 = TREE_TYPE (ics2);
5403
5404 to1 = TREE_TYPE (to1);
5405 to2 = TREE_TYPE (to2);
5406
5407 if (TREE_CODE (to1) == OFFSET_TYPE)
5408 {
5409 to1 = TREE_TYPE (to1);
5410 to2 = TREE_TYPE (to2);
5411 }
5412
5413 if (TYPE_READONLY (to1) >= TYPE_READONLY (to2)
5414 && TYPE_VOLATILE (to1) > TYPE_VOLATILE (to2))
5415 return -1;
5416 else if (TYPE_READONLY (to1) > TYPE_READONLY (to2)
5417 && TYPE_VOLATILE (to1) == TYPE_VOLATILE (to2))
5418 return -1;
5419 else if (TYPE_READONLY (to1) <= TYPE_READONLY (to2)
5420 && TYPE_VOLATILE (to1) < TYPE_VOLATILE (to2))
5421 return 1;
5422 else if (TYPE_READONLY (to1) < TYPE_READONLY (to2)
5423 && TYPE_VOLATILE (to1) == TYPE_VOLATILE (to2))
5424 return 1;
5425 return 0;
5426 }
5427
5428 /* Compare two implicit conversion sequences according to the rules set out in
5429 [over.ics.rank]. Return values:
5430
5431 1: ics1 is better than ics2
5432 -1: ics2 is better than ics1
5433 0: ics1 and ics2 are indistinguishable */
5434
5435 static int
5436 compare_ics (ics1, ics2)
5437 tree ics1, ics2;
5438 {
5439 tree main1, main2;
5440
5441 if (TREE_CODE (ics1) == QUAL_CONV)
5442 main1 = TREE_OPERAND (ics1, 0);
5443 else
5444 main1 = ics1;
5445
5446 if (TREE_CODE (ics2) == QUAL_CONV)
5447 main2 = TREE_OPERAND (ics2, 0);
5448 else
5449 main2 = ics2;
5450
5451 /* Conversions for `this' are PTR_CONVs, but we compare them as though
5452 they were REF_BINDs. */
5453 if (ICS_THIS_FLAG (ics1))
5454 {
5455 tree t = main1;
5456 if (TREE_CODE (t) == PTR_CONV)
5457 t = TREE_OPERAND (t, 0);
5458 t = build1 (IDENTITY_CONV, TREE_TYPE (TREE_TYPE (t)), NULL_TREE);
5459 t = build_conv (REF_BIND, TREE_TYPE (ics1), t);
5460 ICS_STD_RANK (t) = ICS_STD_RANK (main1);
5461 main1 = ics1 = t;
5462 }
5463 if (ICS_THIS_FLAG (ics2))
5464 {
5465 tree t = main2;
5466 if (TREE_CODE (t) == PTR_CONV)
5467 t = TREE_OPERAND (t, 0);
5468 t = build1 (IDENTITY_CONV, TREE_TYPE (TREE_TYPE (t)), NULL_TREE);
5469 t = build_conv (REF_BIND, TREE_TYPE (ics2), t);
5470 ICS_STD_RANK (t) = ICS_STD_RANK (main2);
5471 main2 = ics2 = t;
5472 }
5473
5474 if (ICS_RANK (ics1) > ICS_RANK (ics2))
5475 return -1;
5476 else if (ICS_RANK (ics1) < ICS_RANK (ics2))
5477 return 1;
5478
5479 if (ICS_RANK (ics1) == BAD_RANK)
5480 {
5481 if (ICS_USER_FLAG (ics1) > ICS_USER_FLAG (ics2)
5482 || ICS_STD_RANK (ics1) > ICS_STD_RANK (ics2))
5483 return -1;
5484 else if (ICS_USER_FLAG (ics1) < ICS_USER_FLAG (ics2)
5485 || ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
5486 return 1;
5487
5488 /* else fall through */
5489 }
5490
5491 /* User-defined conversion sequence U1 is a better conversion sequence
5492 than another user-defined conversion sequence U2 if they contain the
5493 same user-defined conversion operator or constructor and if the sec-
5494 ond standard conversion sequence of U1 is better than the second
5495 standard conversion sequence of U2. */
5496
5497 if (ICS_USER_FLAG (ics1))
5498 {
5499 tree t1, t2;
5500
5501 for (t1 = ics1; TREE_CODE (t1) != USER_CONV; t1 = TREE_OPERAND (t1, 0))
5502 if (TREE_CODE (t1) == AMBIG_CONV)
5503 return 0;
5504 for (t2 = ics2; TREE_CODE (t2) != USER_CONV; t2 = TREE_OPERAND (t2, 0))
5505 if (TREE_CODE (t2) == AMBIG_CONV)
5506 return 0;
5507
5508 if (USER_CONV_FN (t1) != USER_CONV_FN (t2))
5509 return 0;
5510 else if (ICS_STD_RANK (ics1) > ICS_STD_RANK (ics2))
5511 return -1;
5512 else if (ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
5513 return 1;
5514
5515 /* else fall through */
5516 }
5517
5518 #if 0 /* Handled by ranking */
5519 /* A conversion that is not a conversion of a pointer, or pointer to
5520 member, to bool is better than another conversion that is such a
5521 conversion. */
5522 #endif
5523
5524 if (TREE_CODE (main1) != TREE_CODE (main2))
5525 return 0;
5526
5527 if (TREE_CODE (main1) == PTR_CONV || TREE_CODE (main1) == PMEM_CONV
5528 || TREE_CODE (main1) == REF_BIND || TREE_CODE (main1) == BASE_CONV)
5529 {
5530 tree to1 = TREE_TYPE (main1);
5531 tree from1 = TREE_TYPE (TREE_OPERAND (main1, 0));
5532 tree to2 = TREE_TYPE (main2);
5533 tree from2 = TREE_TYPE (TREE_OPERAND (main2, 0));
5534 int distf, distt;
5535
5536 /* Standard conversion sequence S1 is a better conversion sequence than
5537 standard conversion sequence S2 if...
5538
5539 S1 and S2 differ only in their qualification conversion and they
5540 yield types identical except for cv-qualifiers and S2 adds all the
5541 qualifiers that S1 adds (and in the same places) and S2 adds yet
5542 more cv-qualifiers than S1, or the similar case with reference
5543 binding15). */
5544 if (TREE_CODE (main1) == REF_BIND)
5545 {
5546 if (TYPE_MAIN_VARIANT (TREE_TYPE (to1))
5547 == TYPE_MAIN_VARIANT (TREE_TYPE (to2)))
5548 return compare_qual (ics1, ics2);
5549 }
5550 else if (TREE_CODE (main1) != BASE_CONV && from1 == from2 && to1 == to2)
5551 return compare_qual (ics1, ics2);
5552
5553 if (TYPE_PTRMEMFUNC_P (to1))
5554 {
5555 to1 = TYPE_METHOD_BASETYPE (TYPE_PTRMEMFUNC_FN_TYPE (to1));
5556 from1 = TYPE_METHOD_BASETYPE (TYPE_PTRMEMFUNC_FN_TYPE (from1));
5557 }
5558 else if (TREE_CODE (main1) != BASE_CONV)
5559 {
5560 to1 = TREE_TYPE (to1);
5561 if (TREE_CODE (main1) != REF_BIND)
5562 from1 = TREE_TYPE (from1);
5563
5564 if (TREE_CODE (to1) == OFFSET_TYPE)
5565 {
5566 to1 = TYPE_OFFSET_BASETYPE (to1);
5567 from1 = TYPE_OFFSET_BASETYPE (from1);
5568 }
5569 }
5570
5571 if (TYPE_PTRMEMFUNC_P (to2))
5572 {
5573 to2 = TYPE_METHOD_BASETYPE (TYPE_PTRMEMFUNC_FN_TYPE (to2));
5574 from2 = TYPE_METHOD_BASETYPE (TYPE_PTRMEMFUNC_FN_TYPE (from2));
5575 }
5576 else if (TREE_CODE (main1) != BASE_CONV)
5577 {
5578 to2 = TREE_TYPE (to2);
5579 if (TREE_CODE (main1) != REF_BIND)
5580 from2 = TREE_TYPE (from2);
5581
5582 if (TREE_CODE (to2) == OFFSET_TYPE)
5583 {
5584 to2 = TYPE_OFFSET_BASETYPE (to2);
5585 from2 = TYPE_OFFSET_BASETYPE (from2);
5586 }
5587 }
5588
5589 if (! (IS_AGGR_TYPE (from1) && IS_AGGR_TYPE (from2)))
5590 return 0;
5591
5592 /* The sense of pmem conversions is reversed from that of the other
5593 conversions. */
5594 if (TREE_CODE (main1) == PMEM_CONV)
5595 {
5596 tree t = from1; from1 = from2; from2 = t;
5597 t = to1; to1 = to2; to2 = t;
5598 }
5599
5600 distf = get_base_distance (from1, from2, 0, 0);
5601 if (distf == -1)
5602 {
5603 distf = -get_base_distance (from2, from1, 0, 0);
5604 if (distf == 1)
5605 return 0;
5606 }
5607
5608 /* If class B is derived directly or indirectly from class A,
5609 conver- sion of B* to A* is better than conversion of B* to
5610 void*, and conversion of A* to void* is better than
5611 conversion of B* to void*. */
5612
5613 if (TREE_CODE (to1) == VOID_TYPE && TREE_CODE (to2) == VOID_TYPE)
5614 {
5615 if (distf > 0)
5616 return 1;
5617 else if (distf < 0)
5618 return -1;
5619 }
5620 else if (TREE_CODE (to2) == VOID_TYPE && IS_AGGR_TYPE (to1)
5621 && get_base_distance (to1, from1, 0, 0) != -1)
5622 return 1;
5623 else if (TREE_CODE (to1) == VOID_TYPE && IS_AGGR_TYPE (to2)
5624 && get_base_distance (to2, from2, 0, 0) != -1)
5625 return -1;
5626
5627 if (! (IS_AGGR_TYPE (to1) && IS_AGGR_TYPE (to2)))
5628 return 0;
5629
5630 /* If class B is derived directly or indirectly from class A and class
5631 C is derived directly or indirectly from B */
5632
5633 distt = get_base_distance (to1, to2, 0, 0);
5634 if (distt == -1)
5635 {
5636 distt = -get_base_distance (to2, to1, 0, 0);
5637 if (distt == 1)
5638 return 0;
5639 }
5640
5641 /* --conversion of C* to B* is better than conversion of C* to A*, */
5642 if (distf == 0)
5643 {
5644 if (distt > 0)
5645 return -1;
5646 else if (distt < 0)
5647 return 1;
5648 }
5649 /* --conversion of B* to A* is better than conversion of C* to A*, */
5650 else if (distt == 0)
5651 {
5652 if (distf > 0)
5653 return 1;
5654 else if (distf < 0)
5655 return -1;
5656 }
5657 }
5658 else if (TREE_CODE (TREE_TYPE (main1)) == POINTER_TYPE
5659 || TYPE_PTRMEMFUNC_P (TREE_TYPE (main1)))
5660 {
5661 if (TREE_TYPE (main1) == TREE_TYPE (main2))
5662 return compare_qual (ics1, ics2);
5663
5664 #if 0 /* This is now handled by making identity better than anything else. */
5665 /* existing practice, not WP-endorsed: const char * -> const char *
5666 is better than char * -> const char *. (jason 6/29/96) */
5667 if (TREE_TYPE (ics1) == TREE_TYPE (ics2))
5668 return -compare_qual (main1, main2);
5669 #endif
5670 }
5671
5672 return 0;
5673 }
5674
5675 /* Compare two candidates for overloading as described in
5676 [over.match.best]. Return values:
5677
5678 1: cand1 is better than cand2
5679 -1: cand2 is better than cand1
5680 0: cand1 and cand2 are indistinguishable */
5681
5682 static int
5683 joust (cand1, cand2)
5684 struct z_candidate *cand1, *cand2;
5685 {
5686 int winner = 0;
5687 int i, off1 = 0, off2 = 0, len;
5688
5689 /* Candidates that involve bad conversions are always worse than those
5690 that don't. */
5691 if (cand1->viable > cand2->viable)
5692 return 1;
5693 if (cand1->viable < cand2->viable)
5694 return -1;
5695
5696 /* a viable function F1
5697 is defined to be a better function than another viable function F2 if
5698 for all arguments i, ICSi(F1) is not a worse conversion sequence than
5699 ICSi(F2), and then */
5700
5701 /* for some argument j, ICSj(F1) is a better conversion sequence than
5702 ICSj(F2) */
5703
5704 /* For comparing static and non-static member functions, we ignore the
5705 implicit object parameter of the non-static function. The WP says to
5706 pretend that the static function has an object parm, but that won't
5707 work with operator overloading. */
5708 len = TREE_VEC_LENGTH (cand1->convs);
5709 if (len != TREE_VEC_LENGTH (cand2->convs))
5710 {
5711 if (DECL_STATIC_FUNCTION_P (cand1->fn)
5712 && ! DECL_STATIC_FUNCTION_P (cand2->fn))
5713 off2 = 1;
5714 else if (! DECL_STATIC_FUNCTION_P (cand1->fn)
5715 && DECL_STATIC_FUNCTION_P (cand2->fn))
5716 {
5717 off1 = 1;
5718 --len;
5719 }
5720 else
5721 my_friendly_abort (42);
5722 }
5723
5724 for (i = 0; i < len; ++i)
5725 {
5726 int comp = compare_ics (TREE_VEC_ELT (cand1->convs, i+off1),
5727 TREE_VEC_ELT (cand2->convs, i+off2));
5728
5729 if (comp != 0)
5730 {
5731 if (winner && comp != winner)
5732 {
5733 winner = 0;
5734 goto tweak;
5735 }
5736 winner = comp;
5737 }
5738 }
5739
5740 if (winner)
5741 return winner;
5742
5743 /* or, if not that,
5744 F1 is a non-template function and F2 is a template function */
5745
5746 if (! cand1->template && cand2->template)
5747 return 1;
5748 else if (cand1->template && ! cand2->template)
5749 return -1;
5750 else if (cand1->template && cand2->template)
5751 winner = more_specialized
5752 (TI_TEMPLATE (cand1->template), TI_TEMPLATE (cand2->template));
5753
5754 /* or, if not that,
5755 the context is an initialization by user-defined conversion (see
5756 _dcl.init_ and _over.match.user_) and the standard conversion
5757 sequence from the return type of F1 to the destination type (i.e.,
5758 the type of the entity being initialized) is a better conversion
5759 sequence than the standard conversion sequence from the return type
5760 of F2 to the destination type. */
5761
5762 if (! winner && cand1->second_conv)
5763 winner = compare_ics (cand1->second_conv, cand2->second_conv);
5764
5765 /* If the built-in candidates are the same, arbitrarily pick one. */
5766 if (! winner && cand1->fn == cand2->fn
5767 && TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
5768 {
5769 for (i = 0; i < len; ++i)
5770 if (! comptypes (TREE_TYPE (TREE_VEC_ELT (cand1->convs, i)),
5771 TREE_TYPE (TREE_VEC_ELT (cand2->convs, i)), 1))
5772 break;
5773 if (i == TREE_VEC_LENGTH (cand1->convs))
5774 return 1;
5775 #if 0
5776 /* Kludge around broken overloading rules whereby
5777 bool ? void *const & : void *const & is ambiguous. */
5778 /* Huh? Explain the problem better. */
5779 if (cand1->fn == ansi_opname[COND_EXPR])
5780 {
5781 tree c1 = TREE_VEC_ELT (cand1->convs, 1);
5782 tree c2 = TREE_VEC_ELT (cand2->convs, 1);
5783 tree t1 = strip_top_quals (non_reference (TREE_TYPE (c1)));
5784 tree t2 = strip_top_quals (non_reference (TREE_TYPE (c2)));
5785
5786 if (comptypes (t1, t2, 1))
5787 {
5788 if (TREE_CODE (c1) == REF_BIND && TREE_CODE (c2) != REF_BIND)
5789 return 1;
5790 if (TREE_CODE (c1) != REF_BIND && TREE_CODE (c2) == REF_BIND)
5791 return -1;
5792 }
5793 }
5794 #endif
5795 }
5796
5797 tweak:
5798
5799 /* Extension: If the worst conversion for one candidate is worse than the
5800 worst conversion for the other, take the first. */
5801 if (! winner && ! pedantic)
5802 {
5803 int rank1 = IDENTITY_RANK, rank2 = IDENTITY_RANK;
5804
5805 for (i = 0; i < len; ++i)
5806 {
5807 if (ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1)) > rank1)
5808 rank1 = ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1));
5809 if (ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2)) > rank2)
5810 rank2 = ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2));
5811 }
5812
5813 if (rank1 < rank2)
5814 return 1;
5815 if (rank1 > rank2)
5816 return -1;
5817 }
5818
5819 return winner;
5820 }
5821
5822 /* Given a list of candidates for overloading, find the best one, if any.
5823 This algorithm has a worst case of O(2n) (winner is last), and a best
5824 case of O(n/2) (totally ambiguous); much better than a sorting
5825 algorithm. */
5826
5827 static struct z_candidate *
5828 tourney (candidates)
5829 struct z_candidate *candidates;
5830 {
5831 struct z_candidate *champ = candidates, *challenger;
5832 int fate;
5833
5834 /* Walk through the list once, comparing each current champ to the next
5835 candidate, knocking out a candidate or two with each comparison. */
5836
5837 for (challenger = champ->next; challenger; )
5838 {
5839 fate = joust (champ, challenger);
5840 if (fate == 1)
5841 challenger = challenger->next;
5842 else
5843 {
5844 if (fate == 0)
5845 {
5846 champ = challenger->next;
5847 if (champ == 0)
5848 return 0;
5849 }
5850 else
5851 champ = challenger;
5852
5853 challenger = champ->next;
5854 }
5855 }
5856
5857 /* Make sure the champ is better than all the candidates it hasn't yet
5858 been compared to. This may do one more comparison than necessary. Oh
5859 well. */
5860
5861 for (challenger = candidates; challenger != champ;
5862 challenger = challenger->next)
5863 {
5864 fate = joust (champ, challenger);
5865 if (fate != 1)
5866 return 0;
5867 }
5868
5869 return champ;
5870 }
5871
5872 int
5873 can_convert (to, from)
5874 tree to, from;
5875 {
5876 if (flag_ansi_overloading)
5877 {
5878 tree t = implicit_conversion (to, from, NULL_TREE, LOOKUP_NORMAL);
5879 return (t && ! ICS_BAD_FLAG (t));
5880 }
5881 else
5882 {
5883 struct harshness_code h;
5884 h = convert_harshness (to, from, NULL_TREE);
5885 return (h.code < USER_CODE) && (h.distance >= 0);
5886 }
5887 }
5888
5889 int
5890 can_convert_arg (to, from, arg)
5891 tree to, from, arg;
5892 {
5893 if (flag_ansi_overloading)
5894 {
5895 tree t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
5896 return (t && ! ICS_BAD_FLAG (t));
5897 }
5898 else
5899 {
5900 struct harshness_code h;
5901 h = convert_harshness (to, from, arg);
5902 return (h.code < USER_CODE) && (h.distance >= 0);
5903 }
5904 }