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