PR c++/5247
[official-gcc.git] / gcc / cp / call.c
blob297a37242012422f5fa80df59b8a7a3ffd6a598e
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
5 Contributed by Michael Tiemann (tiemann@cygnus.com) and
6 modified by Brendan Kehoe (brendan@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
25 /* High-level class interface. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "cp-tree.h"
33 #include "output.h"
34 #include "flags.h"
35 #include "rtl.h"
36 #include "toplev.h"
37 #include "expr.h"
38 #include "diagnostic.h"
39 #include "intl.h"
40 #include "target.h"
41 #include "convert.h"
42 #include "langhooks.h"
44 /* The various kinds of conversion. */
46 typedef enum conversion_kind {
47 ck_identity,
48 ck_lvalue,
49 ck_qual,
50 ck_std,
51 ck_ptr,
52 ck_pmem,
53 ck_base,
54 ck_ref_bind,
55 ck_user,
56 ck_ambig,
57 ck_rvalue
58 } conversion_kind;
60 /* The rank of the conversion. Order of the enumerals matters; better
61 conversions should come earlier in the list. */
63 typedef enum conversion_rank {
64 cr_identity,
65 cr_exact,
66 cr_promotion,
67 cr_std,
68 cr_pbool,
69 cr_user,
70 cr_ellipsis,
71 cr_bad
72 } conversion_rank;
74 /* An implicit conversion sequence, in the sense of [over.best.ics].
75 The first conversion to be performed is at the end of the chain.
76 That conversion is always a cr_identity conversion. */
78 typedef struct conversion conversion;
79 struct conversion {
80 /* The kind of conversion represented by this step. */
81 conversion_kind kind;
82 /* The rank of this conversion. */
83 conversion_rank rank;
84 BOOL_BITFIELD user_conv_p : 1;
85 BOOL_BITFIELD ellipsis_p : 1;
86 BOOL_BITFIELD this_p : 1;
87 BOOL_BITFIELD bad_p : 1;
88 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
89 temporary should be created to hold the result of the
90 conversion. */
91 BOOL_BITFIELD need_temporary_p : 1;
92 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
93 from a pointer-to-derived to pointer-to-base is being performed. */
94 BOOL_BITFIELD base_p : 1;
95 /* If KIND is ck_ref_bind, true when either an lvalue reference is
96 being bound to an lvalue expression or an rvalue reference is
97 being bound to an rvalue expression. */
98 BOOL_BITFIELD rvaluedness_matches_p: 1;
99 /* The type of the expression resulting from the conversion. */
100 tree type;
101 union {
102 /* The next conversion in the chain. Since the conversions are
103 arranged from outermost to innermost, the NEXT conversion will
104 actually be performed before this conversion. This variant is
105 used only when KIND is neither ck_identity nor ck_ambig. */
106 conversion *next;
107 /* The expression at the beginning of the conversion chain. This
108 variant is used only if KIND is ck_identity or ck_ambig. */
109 tree expr;
110 } u;
111 /* The function candidate corresponding to this conversion
112 sequence. This field is only used if KIND is ck_user. */
113 struct z_candidate *cand;
116 #define CONVERSION_RANK(NODE) \
117 ((NODE)->bad_p ? cr_bad \
118 : (NODE)->ellipsis_p ? cr_ellipsis \
119 : (NODE)->user_conv_p ? cr_user \
120 : (NODE)->rank)
122 static struct obstack conversion_obstack;
123 static bool conversion_obstack_initialized;
125 static struct z_candidate * tourney (struct z_candidate *);
126 static int equal_functions (tree, tree);
127 static int joust (struct z_candidate *, struct z_candidate *, bool);
128 static int compare_ics (conversion *, conversion *);
129 static tree build_over_call (struct z_candidate *, int);
130 static tree build_java_interface_fn_ref (tree, tree);
131 #define convert_like(CONV, EXPR) \
132 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
133 /*issue_conversion_warnings=*/true, \
134 /*c_cast_p=*/false)
135 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
136 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
137 /*issue_conversion_warnings=*/true, \
138 /*c_cast_p=*/false)
139 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
140 bool);
141 static void op_error (enum tree_code, enum tree_code, tree, tree,
142 tree, const char *);
143 static tree build_object_call (tree, tree);
144 static tree resolve_args (tree);
145 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
146 static void print_z_candidate (const char *, struct z_candidate *);
147 static void print_z_candidates (struct z_candidate *);
148 static tree build_this (tree);
149 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
150 static bool any_strictly_viable (struct z_candidate *);
151 static struct z_candidate *add_template_candidate
152 (struct z_candidate **, tree, tree, tree, tree, tree,
153 tree, tree, int, unification_kind_t);
154 static struct z_candidate *add_template_candidate_real
155 (struct z_candidate **, tree, tree, tree, tree, tree,
156 tree, tree, int, tree, unification_kind_t);
157 static struct z_candidate *add_template_conv_candidate
158 (struct z_candidate **, tree, tree, tree, tree, tree, tree);
159 static void add_builtin_candidates
160 (struct z_candidate **, enum tree_code, enum tree_code,
161 tree, tree *, int);
162 static void add_builtin_candidate
163 (struct z_candidate **, enum tree_code, enum tree_code,
164 tree, tree, tree, tree *, tree *, int);
165 static bool is_complete (tree);
166 static void build_builtin_candidate
167 (struct z_candidate **, tree, tree, tree, tree *, tree *,
168 int);
169 static struct z_candidate *add_conv_candidate
170 (struct z_candidate **, tree, tree, tree, tree, tree);
171 static struct z_candidate *add_function_candidate
172 (struct z_candidate **, tree, tree, tree, tree, tree, int);
173 static conversion *implicit_conversion (tree, tree, tree, bool, int);
174 static conversion *standard_conversion (tree, tree, tree, bool, int);
175 static conversion *reference_binding (tree, tree, tree, bool, int);
176 static conversion *build_conv (conversion_kind, tree, conversion *);
177 static bool is_subseq (conversion *, conversion *);
178 static conversion *maybe_handle_ref_bind (conversion **);
179 static void maybe_handle_implicit_object (conversion **);
180 static struct z_candidate *add_candidate
181 (struct z_candidate **, tree, tree, size_t,
182 conversion **, tree, tree, int);
183 static tree source_type (conversion *);
184 static void add_warning (struct z_candidate *, struct z_candidate *);
185 static bool reference_related_p (tree, tree);
186 static bool reference_compatible_p (tree, tree);
187 static conversion *convert_class_to_reference (tree, tree, tree);
188 static conversion *direct_reference_binding (tree, conversion *);
189 static bool promoted_arithmetic_type_p (tree);
190 static conversion *conditional_conversion (tree, tree);
191 static char *name_as_c_string (tree, tree, bool *);
192 static tree call_builtin_trap (void);
193 static tree prep_operand (tree);
194 static void add_candidates (tree, tree, tree, bool, tree, tree,
195 int, struct z_candidate **);
196 static conversion *merge_conversion_sequences (conversion *, conversion *);
197 static bool magic_varargs_p (tree);
198 typedef void (*diagnostic_fn_t) (const char *, ...) ATTRIBUTE_GCC_CXXDIAG(1,2);
199 static tree build_temp (tree, tree, int, diagnostic_fn_t *);
201 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
202 NAME can take many forms... */
204 bool
205 check_dtor_name (tree basetype, tree name)
207 /* Just accept something we've already complained about. */
208 if (name == error_mark_node)
209 return true;
211 if (TREE_CODE (name) == TYPE_DECL)
212 name = TREE_TYPE (name);
213 else if (TYPE_P (name))
214 /* OK */;
215 else if (TREE_CODE (name) == IDENTIFIER_NODE)
217 if ((IS_AGGR_TYPE (basetype) && name == constructor_name (basetype))
218 || (TREE_CODE (basetype) == ENUMERAL_TYPE
219 && name == TYPE_IDENTIFIER (basetype)))
220 return true;
221 else
222 name = get_type_value (name);
224 else
226 /* In the case of:
228 template <class T> struct S { ~S(); };
229 int i;
230 i.~S();
232 NAME will be a class template. */
233 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
234 return false;
237 if (!name)
238 return false;
239 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
242 /* We want the address of a function or method. We avoid creating a
243 pointer-to-member function. */
245 tree
246 build_addr_func (tree function)
248 tree type = TREE_TYPE (function);
250 /* We have to do these by hand to avoid real pointer to member
251 functions. */
252 if (TREE_CODE (type) == METHOD_TYPE)
254 if (TREE_CODE (function) == OFFSET_REF)
256 tree object = build_address (TREE_OPERAND (function, 0));
257 return get_member_function_from_ptrfunc (&object,
258 TREE_OPERAND (function, 1));
260 function = build_address (function);
262 else
263 function = decay_conversion (function);
265 return function;
268 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
269 POINTER_TYPE to those. Note, pointer to member function types
270 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
271 two variants. build_call_a is the primitive taking an array of
272 arguments, while build_call_n is a wrapper that handles varargs. */
274 tree
275 build_call_n (tree function, int n, ...)
277 if (n == 0)
278 return build_call_a (function, 0, NULL);
279 else
281 tree *argarray = (tree *) alloca (n * sizeof (tree));
282 va_list ap;
283 int i;
285 va_start (ap, n);
286 for (i = 0; i < n; i++)
287 argarray[i] = va_arg (ap, tree);
288 va_end (ap);
289 return build_call_a (function, n, argarray);
293 tree
294 build_call_a (tree function, int n, tree *argarray)
296 int is_constructor = 0;
297 int nothrow;
298 tree decl;
299 tree result_type;
300 tree fntype;
301 int i;
303 function = build_addr_func (function);
305 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
306 fntype = TREE_TYPE (TREE_TYPE (function));
307 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
308 || TREE_CODE (fntype) == METHOD_TYPE);
309 result_type = TREE_TYPE (fntype);
311 if (TREE_CODE (function) == ADDR_EXPR
312 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
314 decl = TREE_OPERAND (function, 0);
315 if (!TREE_USED (decl))
317 /* We invoke build_call directly for several library
318 functions. These may have been declared normally if
319 we're building libgcc, so we can't just check
320 DECL_ARTIFICIAL. */
321 gcc_assert (DECL_ARTIFICIAL (decl)
322 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
323 "__", 2));
324 mark_used (decl);
327 else
328 decl = NULL_TREE;
330 /* We check both the decl and the type; a function may be known not to
331 throw without being declared throw(). */
332 nothrow = ((decl && TREE_NOTHROW (decl))
333 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
335 if (decl && TREE_THIS_VOLATILE (decl) && cfun)
336 current_function_returns_abnormally = 1;
338 if (decl && TREE_DEPRECATED (decl))
339 warn_deprecated_use (decl);
340 require_complete_eh_spec_types (fntype, decl);
342 if (decl && DECL_CONSTRUCTOR_P (decl))
343 is_constructor = 1;
345 /* Don't pass empty class objects by value. This is useful
346 for tags in STL, which are used to control overload resolution.
347 We don't need to handle other cases of copying empty classes. */
348 if (! decl || ! DECL_BUILT_IN (decl))
349 for (i = 0; i < n; i++)
350 if (is_empty_class (TREE_TYPE (argarray[i]))
351 && ! TREE_ADDRESSABLE (TREE_TYPE (argarray[i])))
353 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (argarray[i]));
354 argarray[i] = build2 (COMPOUND_EXPR, TREE_TYPE (t),
355 argarray[i], t);
358 function = build_call_array (result_type, function, n, argarray);
359 TREE_HAS_CONSTRUCTOR (function) = is_constructor;
360 TREE_NOTHROW (function) = nothrow;
362 return function;
365 /* Build something of the form ptr->method (args)
366 or object.method (args). This can also build
367 calls to constructors, and find friends.
369 Member functions always take their class variable
370 as a pointer.
372 INSTANCE is a class instance.
374 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
376 PARMS help to figure out what that NAME really refers to.
378 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
379 down to the real instance type to use for access checking. We need this
380 information to get protected accesses correct.
382 FLAGS is the logical disjunction of zero or more LOOKUP_
383 flags. See cp-tree.h for more info.
385 If this is all OK, calls build_function_call with the resolved
386 member function.
388 This function must also handle being called to perform
389 initialization, promotion/coercion of arguments, and
390 instantiation of default parameters.
392 Note that NAME may refer to an instance variable name. If
393 `operator()()' is defined for the type of that field, then we return
394 that result. */
396 /* New overloading code. */
398 typedef struct z_candidate z_candidate;
400 typedef struct candidate_warning candidate_warning;
401 struct candidate_warning {
402 z_candidate *loser;
403 candidate_warning *next;
406 struct z_candidate {
407 /* The FUNCTION_DECL that will be called if this candidate is
408 selected by overload resolution. */
409 tree fn;
410 /* The arguments to use when calling this function. */
411 tree args;
412 /* The implicit conversion sequences for each of the arguments to
413 FN. */
414 conversion **convs;
415 /* The number of implicit conversion sequences. */
416 size_t num_convs;
417 /* If FN is a user-defined conversion, the standard conversion
418 sequence from the type returned by FN to the desired destination
419 type. */
420 conversion *second_conv;
421 int viable;
422 /* If FN is a member function, the binfo indicating the path used to
423 qualify the name of FN at the call site. This path is used to
424 determine whether or not FN is accessible if it is selected by
425 overload resolution. The DECL_CONTEXT of FN will always be a
426 (possibly improper) base of this binfo. */
427 tree access_path;
428 /* If FN is a non-static member function, the binfo indicating the
429 subobject to which the `this' pointer should be converted if FN
430 is selected by overload resolution. The type pointed to the by
431 the `this' pointer must correspond to the most derived class
432 indicated by the CONVERSION_PATH. */
433 tree conversion_path;
434 tree template_decl;
435 candidate_warning *warnings;
436 z_candidate *next;
439 /* Returns true iff T is a null pointer constant in the sense of
440 [conv.ptr]. */
442 bool
443 null_ptr_cst_p (tree t)
445 /* [conv.ptr]
447 A null pointer constant is an integral constant expression
448 (_expr.const_) rvalue of integer type that evaluates to zero. */
449 t = integral_constant_value (t);
450 if (t == null_node)
451 return true;
452 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t))
454 STRIP_NOPS (t);
455 if (!TREE_OVERFLOW (t))
456 return true;
458 return false;
461 /* Returns nonzero if PARMLIST consists of only default parms and/or
462 ellipsis. */
464 bool
465 sufficient_parms_p (const_tree parmlist)
467 for (; parmlist && parmlist != void_list_node;
468 parmlist = TREE_CHAIN (parmlist))
469 if (!TREE_PURPOSE (parmlist))
470 return false;
471 return true;
474 /* Allocate N bytes of memory from the conversion obstack. The memory
475 is zeroed before being returned. */
477 static void *
478 conversion_obstack_alloc (size_t n)
480 void *p;
481 if (!conversion_obstack_initialized)
483 gcc_obstack_init (&conversion_obstack);
484 conversion_obstack_initialized = true;
486 p = obstack_alloc (&conversion_obstack, n);
487 memset (p, 0, n);
488 return p;
491 /* Dynamically allocate a conversion. */
493 static conversion *
494 alloc_conversion (conversion_kind kind)
496 conversion *c;
497 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
498 c->kind = kind;
499 return c;
502 #ifdef ENABLE_CHECKING
504 /* Make sure that all memory on the conversion obstack has been
505 freed. */
507 void
508 validate_conversion_obstack (void)
510 if (conversion_obstack_initialized)
511 gcc_assert ((obstack_next_free (&conversion_obstack)
512 == obstack_base (&conversion_obstack)));
515 #endif /* ENABLE_CHECKING */
517 /* Dynamically allocate an array of N conversions. */
519 static conversion **
520 alloc_conversions (size_t n)
522 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
525 static conversion *
526 build_conv (conversion_kind code, tree type, conversion *from)
528 conversion *t;
529 conversion_rank rank = CONVERSION_RANK (from);
531 /* We can't use buildl1 here because CODE could be USER_CONV, which
532 takes two arguments. In that case, the caller is responsible for
533 filling in the second argument. */
534 t = alloc_conversion (code);
535 t->type = type;
536 t->u.next = from;
538 switch (code)
540 case ck_ptr:
541 case ck_pmem:
542 case ck_base:
543 case ck_std:
544 if (rank < cr_std)
545 rank = cr_std;
546 break;
548 case ck_qual:
549 if (rank < cr_exact)
550 rank = cr_exact;
551 break;
553 default:
554 break;
556 t->rank = rank;
557 t->user_conv_p = (code == ck_user || from->user_conv_p);
558 t->bad_p = from->bad_p;
559 t->base_p = false;
560 return t;
563 /* Build a representation of the identity conversion from EXPR to
564 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
566 static conversion *
567 build_identity_conv (tree type, tree expr)
569 conversion *c;
571 c = alloc_conversion (ck_identity);
572 c->type = type;
573 c->u.expr = expr;
575 return c;
578 /* Converting from EXPR to TYPE was ambiguous in the sense that there
579 were multiple user-defined conversions to accomplish the job.
580 Build a conversion that indicates that ambiguity. */
582 static conversion *
583 build_ambiguous_conv (tree type, tree expr)
585 conversion *c;
587 c = alloc_conversion (ck_ambig);
588 c->type = type;
589 c->u.expr = expr;
591 return c;
594 tree
595 strip_top_quals (tree t)
597 if (TREE_CODE (t) == ARRAY_TYPE)
598 return t;
599 return cp_build_qualified_type (t, 0);
602 /* Returns the standard conversion path (see [conv]) from type FROM to type
603 TO, if any. For proper handling of null pointer constants, you must
604 also pass the expression EXPR to convert from. If C_CAST_P is true,
605 this conversion is coming from a C-style cast. */
607 static conversion *
608 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
609 int flags)
611 enum tree_code fcode, tcode;
612 conversion *conv;
613 bool fromref = false;
615 to = non_reference (to);
616 if (TREE_CODE (from) == REFERENCE_TYPE)
618 fromref = true;
619 from = TREE_TYPE (from);
621 to = strip_top_quals (to);
622 from = strip_top_quals (from);
624 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
625 && expr && type_unknown_p (expr))
627 expr = instantiate_type (to, expr, tf_conv);
628 if (expr == error_mark_node)
629 return NULL;
630 from = TREE_TYPE (expr);
633 fcode = TREE_CODE (from);
634 tcode = TREE_CODE (to);
636 conv = build_identity_conv (from, expr);
637 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
639 from = type_decays_to (from);
640 fcode = TREE_CODE (from);
641 conv = build_conv (ck_lvalue, from, conv);
643 else if (fromref || (expr && lvalue_p (expr)))
645 if (expr)
647 tree bitfield_type;
648 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
649 if (bitfield_type)
651 from = strip_top_quals (bitfield_type);
652 fcode = TREE_CODE (from);
655 conv = build_conv (ck_rvalue, from, conv);
658 /* Allow conversion between `__complex__' data types. */
659 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
661 /* The standard conversion sequence to convert FROM to TO is
662 the standard conversion sequence to perform componentwise
663 conversion. */
664 conversion *part_conv = standard_conversion
665 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
667 if (part_conv)
669 conv = build_conv (part_conv->kind, to, conv);
670 conv->rank = part_conv->rank;
672 else
673 conv = NULL;
675 return conv;
678 if (same_type_p (from, to))
679 return conv;
681 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
682 && expr && null_ptr_cst_p (expr))
683 conv = build_conv (ck_std, to, conv);
684 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
685 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
687 /* For backwards brain damage compatibility, allow interconversion of
688 pointers and integers with a pedwarn. */
689 conv = build_conv (ck_std, to, conv);
690 conv->bad_p = true;
692 else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE)
694 /* For backwards brain damage compatibility, allow interconversion of
695 enums and integers with a pedwarn. */
696 conv = build_conv (ck_std, to, conv);
697 conv->bad_p = true;
699 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
700 || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
702 tree to_pointee;
703 tree from_pointee;
705 if (tcode == POINTER_TYPE
706 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
707 TREE_TYPE (to)))
709 else if (VOID_TYPE_P (TREE_TYPE (to))
710 && !TYPE_PTRMEM_P (from)
711 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
713 from = build_pointer_type
714 (cp_build_qualified_type (void_type_node,
715 cp_type_quals (TREE_TYPE (from))));
716 conv = build_conv (ck_ptr, from, conv);
718 else if (TYPE_PTRMEM_P (from))
720 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
721 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
723 if (DERIVED_FROM_P (fbase, tbase)
724 && (same_type_ignoring_top_level_qualifiers_p
725 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
726 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
728 from = build_ptrmem_type (tbase,
729 TYPE_PTRMEM_POINTED_TO_TYPE (from));
730 conv = build_conv (ck_pmem, from, conv);
732 else if (!same_type_p (fbase, tbase))
733 return NULL;
735 else if (IS_AGGR_TYPE (TREE_TYPE (from))
736 && IS_AGGR_TYPE (TREE_TYPE (to))
737 /* [conv.ptr]
739 An rvalue of type "pointer to cv D," where D is a
740 class type, can be converted to an rvalue of type
741 "pointer to cv B," where B is a base class (clause
742 _class.derived_) of D. If B is an inaccessible
743 (clause _class.access_) or ambiguous
744 (_class.member.lookup_) base class of D, a program
745 that necessitates this conversion is ill-formed.
746 Therefore, we use DERIVED_FROM_P, and do not check
747 access or uniqueness. */
748 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from))
749 /* If FROM is not yet complete, then we must be parsing
750 the body of a class. We know what's derived from
751 what, but we can't actually perform a
752 derived-to-base conversion. For example, in:
754 struct D : public B {
755 static const int i = sizeof((B*)(D*)0);
758 the D*-to-B* conversion is a reinterpret_cast, not a
759 static_cast. */
760 && COMPLETE_TYPE_P (TREE_TYPE (from)))
762 from =
763 cp_build_qualified_type (TREE_TYPE (to),
764 cp_type_quals (TREE_TYPE (from)));
765 from = build_pointer_type (from);
766 conv = build_conv (ck_ptr, from, conv);
767 conv->base_p = true;
770 if (tcode == POINTER_TYPE)
772 to_pointee = TREE_TYPE (to);
773 from_pointee = TREE_TYPE (from);
775 else
777 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
778 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
781 if (same_type_p (from, to))
782 /* OK */;
783 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
784 /* In a C-style cast, we ignore CV-qualification because we
785 are allowed to perform a static_cast followed by a
786 const_cast. */
787 conv = build_conv (ck_qual, to, conv);
788 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
789 conv = build_conv (ck_qual, to, conv);
790 else if (expr && string_conv_p (to, expr, 0))
791 /* converting from string constant to char *. */
792 conv = build_conv (ck_qual, to, conv);
793 else if (ptr_reasonably_similar (to_pointee, from_pointee))
795 conv = build_conv (ck_ptr, to, conv);
796 conv->bad_p = true;
798 else
799 return NULL;
801 from = to;
803 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
805 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
806 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
807 tree fbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn)));
808 tree tbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn)));
810 if (!DERIVED_FROM_P (fbase, tbase)
811 || !same_type_p (TREE_TYPE (fromfn), TREE_TYPE (tofn))
812 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
813 TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
814 || cp_type_quals (fbase) != cp_type_quals (tbase))
815 return NULL;
817 from = cp_build_qualified_type (tbase, cp_type_quals (fbase));
818 from = build_method_type_directly (from,
819 TREE_TYPE (fromfn),
820 TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
821 from = build_ptrmemfunc_type (build_pointer_type (from));
822 conv = build_conv (ck_pmem, from, conv);
823 conv->base_p = true;
825 else if (tcode == BOOLEAN_TYPE)
827 /* [conv.bool]
829 An rvalue of arithmetic, enumeration, pointer, or pointer to
830 member type can be converted to an rvalue of type bool. */
831 if (ARITHMETIC_TYPE_P (from)
832 || fcode == ENUMERAL_TYPE
833 || fcode == POINTER_TYPE
834 || TYPE_PTR_TO_MEMBER_P (from))
836 conv = build_conv (ck_std, to, conv);
837 if (fcode == POINTER_TYPE
838 || TYPE_PTRMEM_P (from)
839 || (TYPE_PTRMEMFUNC_P (from)
840 && conv->rank < cr_pbool))
841 conv->rank = cr_pbool;
842 return conv;
845 return NULL;
847 /* We don't check for ENUMERAL_TYPE here because there are no standard
848 conversions to enum type. */
849 else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
850 || tcode == REAL_TYPE)
852 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
853 return NULL;
854 conv = build_conv (ck_std, to, conv);
856 /* Give this a better rank if it's a promotion. */
857 if (same_type_p (to, type_promotes_to (from))
858 && conv->u.next->rank <= cr_promotion)
859 conv->rank = cr_promotion;
861 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
862 && vector_types_convertible_p (from, to, false))
863 return build_conv (ck_std, to, conv);
864 /* A derived-to-base conversion sequence is a user-defined conversion
865 because it involves a constructor call, even though it has the rank of
866 a standard conversion, so we don't consider it if we aren't allowing
867 user-defined conversions. But if we're binding directly to a
868 reference, it's only a pointer conversion. */
869 else if ((!(flags & LOOKUP_NO_CONVERSION)
870 || (flags & LOOKUP_NO_TEMP_BIND))
871 && IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
872 && is_properly_derived_from (from, to))
874 if (conv->kind == ck_rvalue)
875 conv = conv->u.next;
876 conv = build_conv (ck_base, to, conv);
877 /* The derived-to-base conversion indicates the initialization
878 of a parameter with base type from an object of a derived
879 type. A temporary object is created to hold the result of
880 the conversion unless we're binding directly to a reference. */
881 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
883 else
884 return NULL;
886 return conv;
889 /* Returns nonzero if T1 is reference-related to T2. */
891 static bool
892 reference_related_p (tree t1, tree t2)
894 t1 = TYPE_MAIN_VARIANT (t1);
895 t2 = TYPE_MAIN_VARIANT (t2);
897 /* [dcl.init.ref]
899 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
900 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
901 of T2. */
902 return (same_type_p (t1, t2)
903 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
904 && DERIVED_FROM_P (t1, t2)));
907 /* Returns nonzero if T1 is reference-compatible with T2. */
909 static bool
910 reference_compatible_p (tree t1, tree t2)
912 /* [dcl.init.ref]
914 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
915 reference-related to T2 and cv1 is the same cv-qualification as,
916 or greater cv-qualification than, cv2. */
917 return (reference_related_p (t1, t2)
918 && at_least_as_qualified_p (t1, t2));
921 /* Determine whether or not the EXPR (of class type S) can be
922 converted to T as in [over.match.ref]. */
924 static conversion *
925 convert_class_to_reference (tree reference_type, tree s, tree expr)
927 tree conversions;
928 tree arglist;
929 conversion *conv;
930 tree t;
931 struct z_candidate *candidates;
932 struct z_candidate *cand;
933 bool any_viable_p;
935 conversions = lookup_conversions (s);
936 if (!conversions)
937 return NULL;
939 /* [over.match.ref]
941 Assuming that "cv1 T" is the underlying type of the reference
942 being initialized, and "cv S" is the type of the initializer
943 expression, with S a class type, the candidate functions are
944 selected as follows:
946 --The conversion functions of S and its base classes are
947 considered. Those that are not hidden within S and yield type
948 "reference to cv2 T2", where "cv1 T" is reference-compatible
949 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
951 The argument list has one argument, which is the initializer
952 expression. */
954 candidates = 0;
956 /* Conceptually, we should take the address of EXPR and put it in
957 the argument list. Unfortunately, however, that can result in
958 error messages, which we should not issue now because we are just
959 trying to find a conversion operator. Therefore, we use NULL,
960 cast to the appropriate type. */
961 arglist = build_int_cst (build_pointer_type (s), 0);
962 arglist = build_tree_list (NULL_TREE, arglist);
964 t = TREE_TYPE (reference_type);
966 while (conversions)
968 tree fns = TREE_VALUE (conversions);
970 for (; fns; fns = OVL_NEXT (fns))
972 tree f = OVL_CURRENT (fns);
973 tree t2 = TREE_TYPE (TREE_TYPE (f));
975 cand = NULL;
977 /* If this is a template function, try to get an exact
978 match. */
979 if (TREE_CODE (f) == TEMPLATE_DECL)
981 cand = add_template_candidate (&candidates,
982 f, s,
983 NULL_TREE,
984 arglist,
985 reference_type,
986 TYPE_BINFO (s),
987 TREE_PURPOSE (conversions),
988 LOOKUP_NORMAL,
989 DEDUCE_CONV);
991 if (cand)
993 /* Now, see if the conversion function really returns
994 an lvalue of the appropriate type. From the
995 point of view of unification, simply returning an
996 rvalue of the right type is good enough. */
997 f = cand->fn;
998 t2 = TREE_TYPE (TREE_TYPE (f));
999 if (TREE_CODE (t2) != REFERENCE_TYPE
1000 || !reference_compatible_p (t, TREE_TYPE (t2)))
1002 candidates = candidates->next;
1003 cand = NULL;
1007 else if (TREE_CODE (t2) == REFERENCE_TYPE
1008 && reference_compatible_p (t, TREE_TYPE (t2)))
1009 cand = add_function_candidate (&candidates, f, s, arglist,
1010 TYPE_BINFO (s),
1011 TREE_PURPOSE (conversions),
1012 LOOKUP_NORMAL);
1014 if (cand)
1016 conversion *identity_conv;
1017 /* Build a standard conversion sequence indicating the
1018 binding from the reference type returned by the
1019 function to the desired REFERENCE_TYPE. */
1020 identity_conv
1021 = build_identity_conv (TREE_TYPE (TREE_TYPE
1022 (TREE_TYPE (cand->fn))),
1023 NULL_TREE);
1024 cand->second_conv
1025 = (direct_reference_binding
1026 (reference_type, identity_conv));
1027 cand->second_conv->rvaluedness_matches_p
1028 = TYPE_REF_IS_RVALUE (TREE_TYPE (TREE_TYPE (cand->fn)))
1029 == TYPE_REF_IS_RVALUE (reference_type);
1030 cand->second_conv->bad_p |= cand->convs[0]->bad_p;
1033 conversions = TREE_CHAIN (conversions);
1036 candidates = splice_viable (candidates, pedantic, &any_viable_p);
1037 /* If none of the conversion functions worked out, let our caller
1038 know. */
1039 if (!any_viable_p)
1040 return NULL;
1042 cand = tourney (candidates);
1043 if (!cand)
1044 return NULL;
1046 /* Now that we know that this is the function we're going to use fix
1047 the dummy first argument. */
1048 cand->args = tree_cons (NULL_TREE,
1049 build_this (expr),
1050 TREE_CHAIN (cand->args));
1052 /* Build a user-defined conversion sequence representing the
1053 conversion. */
1054 conv = build_conv (ck_user,
1055 TREE_TYPE (TREE_TYPE (cand->fn)),
1056 build_identity_conv (TREE_TYPE (expr), expr));
1057 conv->cand = cand;
1059 /* Merge it with the standard conversion sequence from the
1060 conversion function's return type to the desired type. */
1061 cand->second_conv = merge_conversion_sequences (conv, cand->second_conv);
1063 if (cand->viable == -1)
1064 conv->bad_p = true;
1066 return cand->second_conv;
1069 /* A reference of the indicated TYPE is being bound directly to the
1070 expression represented by the implicit conversion sequence CONV.
1071 Return a conversion sequence for this binding. */
1073 static conversion *
1074 direct_reference_binding (tree type, conversion *conv)
1076 tree t;
1078 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1079 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1081 t = TREE_TYPE (type);
1083 /* [over.ics.rank]
1085 When a parameter of reference type binds directly
1086 (_dcl.init.ref_) to an argument expression, the implicit
1087 conversion sequence is the identity conversion, unless the
1088 argument expression has a type that is a derived class of the
1089 parameter type, in which case the implicit conversion sequence is
1090 a derived-to-base Conversion.
1092 If the parameter binds directly to the result of applying a
1093 conversion function to the argument expression, the implicit
1094 conversion sequence is a user-defined conversion sequence
1095 (_over.ics.user_), with the second standard conversion sequence
1096 either an identity conversion or, if the conversion function
1097 returns an entity of a type that is a derived class of the
1098 parameter type, a derived-to-base conversion. */
1099 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1101 /* Represent the derived-to-base conversion. */
1102 conv = build_conv (ck_base, t, conv);
1103 /* We will actually be binding to the base-class subobject in
1104 the derived class, so we mark this conversion appropriately.
1105 That way, convert_like knows not to generate a temporary. */
1106 conv->need_temporary_p = false;
1108 return build_conv (ck_ref_bind, type, conv);
1111 /* Returns the conversion path from type FROM to reference type TO for
1112 purposes of reference binding. For lvalue binding, either pass a
1113 reference type to FROM or an lvalue expression to EXPR. If the
1114 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1115 the conversion returned. If C_CAST_P is true, this
1116 conversion is coming from a C-style cast. */
1118 static conversion *
1119 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags)
1121 conversion *conv = NULL;
1122 tree to = TREE_TYPE (rto);
1123 tree from = rfrom;
1124 bool related_p;
1125 bool compatible_p;
1126 cp_lvalue_kind lvalue_p = clk_none;
1128 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1130 expr = instantiate_type (to, expr, tf_none);
1131 if (expr == error_mark_node)
1132 return NULL;
1133 from = TREE_TYPE (expr);
1136 if (TREE_CODE (from) == REFERENCE_TYPE)
1138 /* Anything with reference type is an lvalue. */
1139 lvalue_p = clk_ordinary;
1140 from = TREE_TYPE (from);
1142 else if (expr)
1143 lvalue_p = real_lvalue_p (expr);
1145 /* Figure out whether or not the types are reference-related and
1146 reference compatible. We have do do this after stripping
1147 references from FROM. */
1148 related_p = reference_related_p (to, from);
1149 /* If this is a C cast, first convert to an appropriately qualified
1150 type, so that we can later do a const_cast to the desired type. */
1151 if (related_p && c_cast_p
1152 && !at_least_as_qualified_p (to, from))
1153 to = build_qualified_type (to, cp_type_quals (from));
1154 compatible_p = reference_compatible_p (to, from);
1156 /* Directly bind reference when target expression's type is compatible with
1157 the reference and expression is an lvalue. In DR391, the wording in
1158 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1159 const and rvalue references to rvalues of compatible class type. */
1160 if (compatible_p
1161 && (lvalue_p
1162 || ((CP_TYPE_CONST_NON_VOLATILE_P(to) || TYPE_REF_IS_RVALUE (rto))
1163 && CLASS_TYPE_P (from))))
1165 /* [dcl.init.ref]
1167 If the initializer expression
1169 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1170 is reference-compatible with "cv2 T2,"
1172 the reference is bound directly to the initializer expression
1173 lvalue.
1175 [...]
1176 If the initializer expression is an rvalue, with T2 a class type,
1177 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1178 is bound to the object represented by the rvalue or to a sub-object
1179 within that object. */
1181 conv = build_identity_conv (from, expr);
1182 conv = direct_reference_binding (rto, conv);
1184 if (flags & LOOKUP_PREFER_RVALUE)
1185 /* The top-level caller requested that we pretend that the lvalue
1186 be treated as an rvalue. */
1187 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1188 else
1189 conv->rvaluedness_matches_p
1190 = (TYPE_REF_IS_RVALUE (rto) == !lvalue_p);
1192 if ((lvalue_p & clk_bitfield) != 0
1193 || ((lvalue_p & clk_packed) != 0 && !TYPE_PACKED (to)))
1194 /* For the purposes of overload resolution, we ignore the fact
1195 this expression is a bitfield or packed field. (In particular,
1196 [over.ics.ref] says specifically that a function with a
1197 non-const reference parameter is viable even if the
1198 argument is a bitfield.)
1200 However, when we actually call the function we must create
1201 a temporary to which to bind the reference. If the
1202 reference is volatile, or isn't const, then we cannot make
1203 a temporary, so we just issue an error when the conversion
1204 actually occurs. */
1205 conv->need_temporary_p = true;
1207 return conv;
1209 /* [class.conv.fct] A conversion function is never used to convert a
1210 (possibly cv-qualified) object to the (possibly cv-qualified) same
1211 object type (or a reference to it), to a (possibly cv-qualified) base
1212 class of that type (or a reference to it).... */
1213 else if (CLASS_TYPE_P (from) && !related_p
1214 && !(flags & LOOKUP_NO_CONVERSION))
1216 /* [dcl.init.ref]
1218 If the initializer expression
1220 -- has a class type (i.e., T2 is a class type) can be
1221 implicitly converted to an lvalue of type "cv3 T3," where
1222 "cv1 T1" is reference-compatible with "cv3 T3". (this
1223 conversion is selected by enumerating the applicable
1224 conversion functions (_over.match.ref_) and choosing the
1225 best one through overload resolution. (_over.match_).
1227 the reference is bound to the lvalue result of the conversion
1228 in the second case. */
1229 conv = convert_class_to_reference (rto, from, expr);
1230 if (conv)
1231 return conv;
1234 /* From this point on, we conceptually need temporaries, even if we
1235 elide them. Only the cases above are "direct bindings". */
1236 if (flags & LOOKUP_NO_TEMP_BIND)
1237 return NULL;
1239 /* [over.ics.rank]
1241 When a parameter of reference type is not bound directly to an
1242 argument expression, the conversion sequence is the one required
1243 to convert the argument expression to the underlying type of the
1244 reference according to _over.best.ics_. Conceptually, this
1245 conversion sequence corresponds to copy-initializing a temporary
1246 of the underlying type with the argument expression. Any
1247 difference in top-level cv-qualification is subsumed by the
1248 initialization itself and does not constitute a conversion. */
1250 /* [dcl.init.ref]
1252 Otherwise, the reference shall be to a non-volatile const type.
1254 Under C++0x, [8.5.3/5 dcl.init.ref] it may also be an rvalue reference */
1255 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1256 return NULL;
1258 /* [dcl.init.ref]
1260 Otherwise, a temporary of type "cv1 T1" is created and
1261 initialized from the initializer expression using the rules for a
1262 non-reference copy initialization. If T1 is reference-related to
1263 T2, cv1 must be the same cv-qualification as, or greater
1264 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1265 if (related_p && !at_least_as_qualified_p (to, from))
1266 return NULL;
1268 /* We're generating a temporary now, but don't bind any more in the
1269 conversion (specifically, don't slice the temporary returned by a
1270 conversion operator). */
1271 flags |= LOOKUP_NO_TEMP_BIND;
1273 conv = implicit_conversion (to, from, expr, c_cast_p,
1274 flags);
1275 if (!conv)
1276 return NULL;
1278 conv = build_conv (ck_ref_bind, rto, conv);
1279 /* This reference binding, unlike those above, requires the
1280 creation of a temporary. */
1281 conv->need_temporary_p = true;
1282 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1284 return conv;
1287 /* Returns the implicit conversion sequence (see [over.ics]) from type
1288 FROM to type TO. The optional expression EXPR may affect the
1289 conversion. FLAGS are the usual overloading flags. Only
1290 LOOKUP_NO_CONVERSION is significant. If C_CAST_P is true, this
1291 conversion is coming from a C-style cast. */
1293 static conversion *
1294 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1295 int flags)
1297 conversion *conv;
1299 if (from == error_mark_node || to == error_mark_node
1300 || expr == error_mark_node)
1301 return NULL;
1303 if (TREE_CODE (to) == REFERENCE_TYPE)
1304 conv = reference_binding (to, from, expr, c_cast_p, flags);
1305 else
1306 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1308 if (conv)
1309 return conv;
1311 if (expr != NULL_TREE
1312 && (IS_AGGR_TYPE (from)
1313 || IS_AGGR_TYPE (to))
1314 && (flags & LOOKUP_NO_CONVERSION) == 0)
1316 struct z_candidate *cand;
1317 int convflags = ((flags & LOOKUP_NO_TEMP_BIND)
1318 |LOOKUP_ONLYCONVERTING);
1320 cand = build_user_type_conversion_1 (to, expr, convflags);
1321 if (cand)
1322 conv = cand->second_conv;
1324 /* We used to try to bind a reference to a temporary here, but that
1325 is now handled after the recursive call to this function at the end
1326 of reference_binding. */
1327 return conv;
1330 return NULL;
1333 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1334 functions. */
1336 static struct z_candidate *
1337 add_candidate (struct z_candidate **candidates,
1338 tree fn, tree args,
1339 size_t num_convs, conversion **convs,
1340 tree access_path, tree conversion_path,
1341 int viable)
1343 struct z_candidate *cand = (struct z_candidate *)
1344 conversion_obstack_alloc (sizeof (struct z_candidate));
1346 cand->fn = fn;
1347 cand->args = args;
1348 cand->convs = convs;
1349 cand->num_convs = num_convs;
1350 cand->access_path = access_path;
1351 cand->conversion_path = conversion_path;
1352 cand->viable = viable;
1353 cand->next = *candidates;
1354 *candidates = cand;
1356 return cand;
1359 /* Create an overload candidate for the function or method FN called with
1360 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
1361 to implicit_conversion.
1363 CTYPE, if non-NULL, is the type we want to pretend this function
1364 comes from for purposes of overload resolution. */
1366 static struct z_candidate *
1367 add_function_candidate (struct z_candidate **candidates,
1368 tree fn, tree ctype, tree arglist,
1369 tree access_path, tree conversion_path,
1370 int flags)
1372 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1373 int i, len;
1374 conversion **convs;
1375 tree parmnode, argnode;
1376 tree orig_arglist;
1377 int viable = 1;
1379 /* At this point we should not see any functions which haven't been
1380 explicitly declared, except for friend functions which will have
1381 been found using argument dependent lookup. */
1382 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1384 /* The `this', `in_chrg' and VTT arguments to constructors are not
1385 considered in overload resolution. */
1386 if (DECL_CONSTRUCTOR_P (fn))
1388 parmlist = skip_artificial_parms_for (fn, parmlist);
1389 orig_arglist = arglist;
1390 arglist = skip_artificial_parms_for (fn, arglist);
1392 else
1393 orig_arglist = arglist;
1395 len = list_length (arglist);
1396 convs = alloc_conversions (len);
1398 /* 13.3.2 - Viable functions [over.match.viable]
1399 First, to be a viable function, a candidate function shall have enough
1400 parameters to agree in number with the arguments in the list.
1402 We need to check this first; otherwise, checking the ICSes might cause
1403 us to produce an ill-formed template instantiation. */
1405 parmnode = parmlist;
1406 for (i = 0; i < len; ++i)
1408 if (parmnode == NULL_TREE || parmnode == void_list_node)
1409 break;
1410 parmnode = TREE_CHAIN (parmnode);
1413 if (i < len && parmnode)
1414 viable = 0;
1416 /* Make sure there are default args for the rest of the parms. */
1417 else if (!sufficient_parms_p (parmnode))
1418 viable = 0;
1420 if (! viable)
1421 goto out;
1423 /* Second, for F to be a viable function, there shall exist for each
1424 argument an implicit conversion sequence that converts that argument
1425 to the corresponding parameter of F. */
1427 parmnode = parmlist;
1428 argnode = arglist;
1430 for (i = 0; i < len; ++i)
1432 tree arg = TREE_VALUE (argnode);
1433 tree argtype = lvalue_type (arg);
1434 conversion *t;
1435 int is_this;
1437 if (parmnode == void_list_node)
1438 break;
1440 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1441 && ! DECL_CONSTRUCTOR_P (fn));
1443 if (parmnode)
1445 tree parmtype = TREE_VALUE (parmnode);
1447 /* The type of the implicit object parameter ('this') for
1448 overload resolution is not always the same as for the
1449 function itself; conversion functions are considered to
1450 be members of the class being converted, and functions
1451 introduced by a using-declaration are considered to be
1452 members of the class that uses them.
1454 Since build_over_call ignores the ICS for the `this'
1455 parameter, we can just change the parm type. */
1456 if (ctype && is_this)
1458 parmtype
1459 = build_qualified_type (ctype,
1460 TYPE_QUALS (TREE_TYPE (parmtype)));
1461 parmtype = build_pointer_type (parmtype);
1464 t = implicit_conversion (parmtype, argtype, arg,
1465 /*c_cast_p=*/false, flags);
1467 else
1469 t = build_identity_conv (argtype, arg);
1470 t->ellipsis_p = true;
1473 if (t && is_this)
1474 t->this_p = true;
1476 convs[i] = t;
1477 if (! t)
1479 viable = 0;
1480 break;
1483 if (t->bad_p)
1484 viable = -1;
1486 if (parmnode)
1487 parmnode = TREE_CHAIN (parmnode);
1488 argnode = TREE_CHAIN (argnode);
1491 out:
1492 return add_candidate (candidates, fn, orig_arglist, len, convs,
1493 access_path, conversion_path, viable);
1496 /* Create an overload candidate for the conversion function FN which will
1497 be invoked for expression OBJ, producing a pointer-to-function which
1498 will in turn be called with the argument list ARGLIST, and add it to
1499 CANDIDATES. FLAGS is passed on to implicit_conversion.
1501 Actually, we don't really care about FN; we care about the type it
1502 converts to. There may be multiple conversion functions that will
1503 convert to that type, and we rely on build_user_type_conversion_1 to
1504 choose the best one; so when we create our candidate, we record the type
1505 instead of the function. */
1507 static struct z_candidate *
1508 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
1509 tree arglist, tree access_path, tree conversion_path)
1511 tree totype = TREE_TYPE (TREE_TYPE (fn));
1512 int i, len, viable, flags;
1513 tree parmlist, parmnode, argnode;
1514 conversion **convs;
1516 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
1517 parmlist = TREE_TYPE (parmlist);
1518 parmlist = TYPE_ARG_TYPES (parmlist);
1520 len = list_length (arglist) + 1;
1521 convs = alloc_conversions (len);
1522 parmnode = parmlist;
1523 argnode = arglist;
1524 viable = 1;
1525 flags = LOOKUP_NORMAL;
1527 /* Don't bother looking up the same type twice. */
1528 if (*candidates && (*candidates)->fn == totype)
1529 return NULL;
1531 for (i = 0; i < len; ++i)
1533 tree arg = i == 0 ? obj : TREE_VALUE (argnode);
1534 tree argtype = lvalue_type (arg);
1535 conversion *t;
1537 if (i == 0)
1538 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
1539 flags);
1540 else if (parmnode == void_list_node)
1541 break;
1542 else if (parmnode)
1543 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
1544 /*c_cast_p=*/false, flags);
1545 else
1547 t = build_identity_conv (argtype, arg);
1548 t->ellipsis_p = true;
1551 convs[i] = t;
1552 if (! t)
1553 break;
1555 if (t->bad_p)
1556 viable = -1;
1558 if (i == 0)
1559 continue;
1561 if (parmnode)
1562 parmnode = TREE_CHAIN (parmnode);
1563 argnode = TREE_CHAIN (argnode);
1566 if (i < len)
1567 viable = 0;
1569 if (!sufficient_parms_p (parmnode))
1570 viable = 0;
1572 return add_candidate (candidates, totype, arglist, len, convs,
1573 access_path, conversion_path, viable);
1576 static void
1577 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
1578 tree type1, tree type2, tree *args, tree *argtypes,
1579 int flags)
1581 conversion *t;
1582 conversion **convs;
1583 size_t num_convs;
1584 int viable = 1, i;
1585 tree types[2];
1587 types[0] = type1;
1588 types[1] = type2;
1590 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
1591 convs = alloc_conversions (num_convs);
1593 for (i = 0; i < 2; ++i)
1595 if (! args[i])
1596 break;
1598 t = implicit_conversion (types[i], argtypes[i], args[i],
1599 /*c_cast_p=*/false, flags);
1600 if (! t)
1602 viable = 0;
1603 /* We need something for printing the candidate. */
1604 t = build_identity_conv (types[i], NULL_TREE);
1606 else if (t->bad_p)
1607 viable = 0;
1608 convs[i] = t;
1611 /* For COND_EXPR we rearranged the arguments; undo that now. */
1612 if (args[2])
1614 convs[2] = convs[1];
1615 convs[1] = convs[0];
1616 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
1617 /*c_cast_p=*/false, flags);
1618 if (t)
1619 convs[0] = t;
1620 else
1621 viable = 0;
1624 add_candidate (candidates, fnname, /*args=*/NULL_TREE,
1625 num_convs, convs,
1626 /*access_path=*/NULL_TREE,
1627 /*conversion_path=*/NULL_TREE,
1628 viable);
1631 static bool
1632 is_complete (tree t)
1634 return COMPLETE_TYPE_P (complete_type (t));
1637 /* Returns nonzero if TYPE is a promoted arithmetic type. */
1639 static bool
1640 promoted_arithmetic_type_p (tree type)
1642 /* [over.built]
1644 In this section, the term promoted integral type is used to refer
1645 to those integral types which are preserved by integral promotion
1646 (including e.g. int and long but excluding e.g. char).
1647 Similarly, the term promoted arithmetic type refers to promoted
1648 integral types plus floating types. */
1649 return ((INTEGRAL_TYPE_P (type)
1650 && same_type_p (type_promotes_to (type), type))
1651 || TREE_CODE (type) == REAL_TYPE);
1654 /* Create any builtin operator overload candidates for the operator in
1655 question given the converted operand types TYPE1 and TYPE2. The other
1656 args are passed through from add_builtin_candidates to
1657 build_builtin_candidate.
1659 TYPE1 and TYPE2 may not be permissible, and we must filter them.
1660 If CODE is requires candidates operands of the same type of the kind
1661 of which TYPE1 and TYPE2 are, we add both candidates
1662 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
1664 static void
1665 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
1666 enum tree_code code2, tree fnname, tree type1,
1667 tree type2, tree *args, tree *argtypes, int flags)
1669 switch (code)
1671 case POSTINCREMENT_EXPR:
1672 case POSTDECREMENT_EXPR:
1673 args[1] = integer_zero_node;
1674 type2 = integer_type_node;
1675 break;
1676 default:
1677 break;
1680 switch (code)
1683 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1684 and VQ is either volatile or empty, there exist candidate operator
1685 functions of the form
1686 VQ T& operator++(VQ T&);
1687 T operator++(VQ T&, int);
1688 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
1689 type other than bool, and VQ is either volatile or empty, there exist
1690 candidate operator functions of the form
1691 VQ T& operator--(VQ T&);
1692 T operator--(VQ T&, int);
1693 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
1694 complete object type, and VQ is either volatile or empty, there exist
1695 candidate operator functions of the form
1696 T*VQ& operator++(T*VQ&);
1697 T*VQ& operator--(T*VQ&);
1698 T* operator++(T*VQ&, int);
1699 T* operator--(T*VQ&, int); */
1701 case POSTDECREMENT_EXPR:
1702 case PREDECREMENT_EXPR:
1703 if (TREE_CODE (type1) == BOOLEAN_TYPE)
1704 return;
1705 case POSTINCREMENT_EXPR:
1706 case PREINCREMENT_EXPR:
1707 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
1709 type1 = build_reference_type (type1);
1710 break;
1712 return;
1714 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
1715 exist candidate operator functions of the form
1717 T& operator*(T*);
1719 8 For every function type T, there exist candidate operator functions of
1720 the form
1721 T& operator*(T*); */
1723 case INDIRECT_REF:
1724 if (TREE_CODE (type1) == POINTER_TYPE
1725 && (TYPE_PTROB_P (type1)
1726 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
1727 break;
1728 return;
1730 /* 9 For every type T, there exist candidate operator functions of the form
1731 T* operator+(T*);
1733 10For every promoted arithmetic type T, there exist candidate operator
1734 functions of the form
1735 T operator+(T);
1736 T operator-(T); */
1738 case UNARY_PLUS_EXPR: /* unary + */
1739 if (TREE_CODE (type1) == POINTER_TYPE)
1740 break;
1741 case NEGATE_EXPR:
1742 if (ARITHMETIC_TYPE_P (type1))
1743 break;
1744 return;
1746 /* 11For every promoted integral type T, there exist candidate operator
1747 functions of the form
1748 T operator~(T); */
1750 case BIT_NOT_EXPR:
1751 if (INTEGRAL_TYPE_P (type1))
1752 break;
1753 return;
1755 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1756 is the same type as C2 or is a derived class of C2, T is a complete
1757 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1758 there exist candidate operator functions of the form
1759 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1760 where CV12 is the union of CV1 and CV2. */
1762 case MEMBER_REF:
1763 if (TREE_CODE (type1) == POINTER_TYPE
1764 && TYPE_PTR_TO_MEMBER_P (type2))
1766 tree c1 = TREE_TYPE (type1);
1767 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
1769 if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
1770 && (TYPE_PTRMEMFUNC_P (type2)
1771 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
1772 break;
1774 return;
1776 /* 13For every pair of promoted arithmetic types L and R, there exist can-
1777 didate operator functions of the form
1778 LR operator*(L, R);
1779 LR operator/(L, R);
1780 LR operator+(L, R);
1781 LR operator-(L, R);
1782 bool operator<(L, R);
1783 bool operator>(L, R);
1784 bool operator<=(L, R);
1785 bool operator>=(L, R);
1786 bool operator==(L, R);
1787 bool operator!=(L, R);
1788 where LR is the result of the usual arithmetic conversions between
1789 types L and R.
1791 14For every pair of types T and I, where T is a cv-qualified or cv-
1792 unqualified complete object type and I is a promoted integral type,
1793 there exist candidate operator functions of the form
1794 T* operator+(T*, I);
1795 T& operator[](T*, I);
1796 T* operator-(T*, I);
1797 T* operator+(I, T*);
1798 T& operator[](I, T*);
1800 15For every T, where T is a pointer to complete object type, there exist
1801 candidate operator functions of the form112)
1802 ptrdiff_t operator-(T, T);
1804 16For every pointer or enumeration type T, there exist candidate operator
1805 functions of the form
1806 bool operator<(T, T);
1807 bool operator>(T, T);
1808 bool operator<=(T, T);
1809 bool operator>=(T, T);
1810 bool operator==(T, T);
1811 bool operator!=(T, T);
1813 17For every pointer to member type T, there exist candidate operator
1814 functions of the form
1815 bool operator==(T, T);
1816 bool operator!=(T, T); */
1818 case MINUS_EXPR:
1819 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
1820 break;
1821 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1823 type2 = ptrdiff_type_node;
1824 break;
1826 case MULT_EXPR:
1827 case TRUNC_DIV_EXPR:
1828 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1829 break;
1830 return;
1832 case EQ_EXPR:
1833 case NE_EXPR:
1834 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1835 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
1836 break;
1837 if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
1839 type2 = type1;
1840 break;
1842 if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
1844 type1 = type2;
1845 break;
1847 /* Fall through. */
1848 case LT_EXPR:
1849 case GT_EXPR:
1850 case LE_EXPR:
1851 case GE_EXPR:
1852 case MAX_EXPR:
1853 case MIN_EXPR:
1854 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1855 break;
1856 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1857 break;
1858 if (TREE_CODE (type1) == ENUMERAL_TYPE
1859 && TREE_CODE (type2) == ENUMERAL_TYPE)
1860 break;
1861 if (TYPE_PTR_P (type1)
1862 && null_ptr_cst_p (args[1])
1863 && !uses_template_parms (type1))
1865 type2 = type1;
1866 break;
1868 if (null_ptr_cst_p (args[0])
1869 && TYPE_PTR_P (type2)
1870 && !uses_template_parms (type2))
1872 type1 = type2;
1873 break;
1875 return;
1877 case PLUS_EXPR:
1878 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1879 break;
1880 case ARRAY_REF:
1881 if (INTEGRAL_TYPE_P (type1) && TYPE_PTROB_P (type2))
1883 type1 = ptrdiff_type_node;
1884 break;
1886 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1888 type2 = ptrdiff_type_node;
1889 break;
1891 return;
1893 /* 18For every pair of promoted integral types L and R, there exist candi-
1894 date operator functions of the form
1895 LR operator%(L, R);
1896 LR operator&(L, R);
1897 LR operator^(L, R);
1898 LR operator|(L, R);
1899 L operator<<(L, R);
1900 L operator>>(L, R);
1901 where LR is the result of the usual arithmetic conversions between
1902 types L and R. */
1904 case TRUNC_MOD_EXPR:
1905 case BIT_AND_EXPR:
1906 case BIT_IOR_EXPR:
1907 case BIT_XOR_EXPR:
1908 case LSHIFT_EXPR:
1909 case RSHIFT_EXPR:
1910 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1911 break;
1912 return;
1914 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1915 type, VQ is either volatile or empty, and R is a promoted arithmetic
1916 type, there exist candidate operator functions of the form
1917 VQ L& operator=(VQ L&, R);
1918 VQ L& operator*=(VQ L&, R);
1919 VQ L& operator/=(VQ L&, R);
1920 VQ L& operator+=(VQ L&, R);
1921 VQ L& operator-=(VQ L&, R);
1923 20For every pair T, VQ), where T is any type and VQ is either volatile
1924 or empty, there exist candidate operator functions of the form
1925 T*VQ& operator=(T*VQ&, T*);
1927 21For every pair T, VQ), where T is a pointer to member type and VQ is
1928 either volatile or empty, there exist candidate operator functions of
1929 the form
1930 VQ T& operator=(VQ T&, T);
1932 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1933 unqualified complete object type, VQ is either volatile or empty, and
1934 I is a promoted integral type, there exist candidate operator func-
1935 tions of the form
1936 T*VQ& operator+=(T*VQ&, I);
1937 T*VQ& operator-=(T*VQ&, I);
1939 23For every triple L, VQ, R), where L is an integral or enumeration
1940 type, VQ is either volatile or empty, and R is a promoted integral
1941 type, there exist candidate operator functions of the form
1943 VQ L& operator%=(VQ L&, R);
1944 VQ L& operator<<=(VQ L&, R);
1945 VQ L& operator>>=(VQ L&, R);
1946 VQ L& operator&=(VQ L&, R);
1947 VQ L& operator^=(VQ L&, R);
1948 VQ L& operator|=(VQ L&, R); */
1950 case MODIFY_EXPR:
1951 switch (code2)
1953 case PLUS_EXPR:
1954 case MINUS_EXPR:
1955 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1957 type2 = ptrdiff_type_node;
1958 break;
1960 case MULT_EXPR:
1961 case TRUNC_DIV_EXPR:
1962 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1963 break;
1964 return;
1966 case TRUNC_MOD_EXPR:
1967 case BIT_AND_EXPR:
1968 case BIT_IOR_EXPR:
1969 case BIT_XOR_EXPR:
1970 case LSHIFT_EXPR:
1971 case RSHIFT_EXPR:
1972 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1973 break;
1974 return;
1976 case NOP_EXPR:
1977 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1978 break;
1979 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1980 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1981 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1982 || ((TYPE_PTRMEMFUNC_P (type1)
1983 || TREE_CODE (type1) == POINTER_TYPE)
1984 && null_ptr_cst_p (args[1])))
1986 type2 = type1;
1987 break;
1989 return;
1991 default:
1992 gcc_unreachable ();
1994 type1 = build_reference_type (type1);
1995 break;
1997 case COND_EXPR:
1998 /* [over.built]
2000 For every pair of promoted arithmetic types L and R, there
2001 exist candidate operator functions of the form
2003 LR operator?(bool, L, R);
2005 where LR is the result of the usual arithmetic conversions
2006 between types L and R.
2008 For every type T, where T is a pointer or pointer-to-member
2009 type, there exist candidate operator functions of the form T
2010 operator?(bool, T, T); */
2012 if (promoted_arithmetic_type_p (type1)
2013 && promoted_arithmetic_type_p (type2))
2014 /* That's OK. */
2015 break;
2017 /* Otherwise, the types should be pointers. */
2018 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
2019 || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
2020 return;
2022 /* We don't check that the two types are the same; the logic
2023 below will actually create two candidates; one in which both
2024 parameter types are TYPE1, and one in which both parameter
2025 types are TYPE2. */
2026 break;
2028 default:
2029 gcc_unreachable ();
2032 /* If we're dealing with two pointer types or two enumeral types,
2033 we need candidates for both of them. */
2034 if (type2 && !same_type_p (type1, type2)
2035 && TREE_CODE (type1) == TREE_CODE (type2)
2036 && (TREE_CODE (type1) == REFERENCE_TYPE
2037 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2038 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
2039 || TYPE_PTRMEMFUNC_P (type1)
2040 || IS_AGGR_TYPE (type1)
2041 || TREE_CODE (type1) == ENUMERAL_TYPE))
2043 build_builtin_candidate
2044 (candidates, fnname, type1, type1, args, argtypes, flags);
2045 build_builtin_candidate
2046 (candidates, fnname, type2, type2, args, argtypes, flags);
2047 return;
2050 build_builtin_candidate
2051 (candidates, fnname, type1, type2, args, argtypes, flags);
2054 tree
2055 type_decays_to (tree type)
2057 if (TREE_CODE (type) == ARRAY_TYPE)
2058 return build_pointer_type (TREE_TYPE (type));
2059 if (TREE_CODE (type) == FUNCTION_TYPE)
2060 return build_pointer_type (type);
2061 return type;
2064 /* There are three conditions of builtin candidates:
2066 1) bool-taking candidates. These are the same regardless of the input.
2067 2) pointer-pair taking candidates. These are generated for each type
2068 one of the input types converts to.
2069 3) arithmetic candidates. According to the standard, we should generate
2070 all of these, but I'm trying not to...
2072 Here we generate a superset of the possible candidates for this particular
2073 case. That is a subset of the full set the standard defines, plus some
2074 other cases which the standard disallows. add_builtin_candidate will
2075 filter out the invalid set. */
2077 static void
2078 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2079 enum tree_code code2, tree fnname, tree *args,
2080 int flags)
2082 int ref1, i;
2083 int enum_p = 0;
2084 tree type, argtypes[3];
2085 /* TYPES[i] is the set of possible builtin-operator parameter types
2086 we will consider for the Ith argument. These are represented as
2087 a TREE_LIST; the TREE_VALUE of each node is the potential
2088 parameter type. */
2089 tree types[2];
2091 for (i = 0; i < 3; ++i)
2093 if (args[i])
2094 argtypes[i] = lvalue_type (args[i]);
2095 else
2096 argtypes[i] = NULL_TREE;
2099 switch (code)
2101 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2102 and VQ is either volatile or empty, there exist candidate operator
2103 functions of the form
2104 VQ T& operator++(VQ T&); */
2106 case POSTINCREMENT_EXPR:
2107 case PREINCREMENT_EXPR:
2108 case POSTDECREMENT_EXPR:
2109 case PREDECREMENT_EXPR:
2110 case MODIFY_EXPR:
2111 ref1 = 1;
2112 break;
2114 /* 24There also exist candidate operator functions of the form
2115 bool operator!(bool);
2116 bool operator&&(bool, bool);
2117 bool operator||(bool, bool); */
2119 case TRUTH_NOT_EXPR:
2120 build_builtin_candidate
2121 (candidates, fnname, boolean_type_node,
2122 NULL_TREE, args, argtypes, flags);
2123 return;
2125 case TRUTH_ORIF_EXPR:
2126 case TRUTH_ANDIF_EXPR:
2127 build_builtin_candidate
2128 (candidates, fnname, boolean_type_node,
2129 boolean_type_node, args, argtypes, flags);
2130 return;
2132 case ADDR_EXPR:
2133 case COMPOUND_EXPR:
2134 case COMPONENT_REF:
2135 return;
2137 case COND_EXPR:
2138 case EQ_EXPR:
2139 case NE_EXPR:
2140 case LT_EXPR:
2141 case LE_EXPR:
2142 case GT_EXPR:
2143 case GE_EXPR:
2144 enum_p = 1;
2145 /* Fall through. */
2147 default:
2148 ref1 = 0;
2151 types[0] = types[1] = NULL_TREE;
2153 for (i = 0; i < 2; ++i)
2155 if (! args[i])
2157 else if (IS_AGGR_TYPE (argtypes[i]))
2159 tree convs;
2161 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2162 return;
2164 convs = lookup_conversions (argtypes[i]);
2166 if (code == COND_EXPR)
2168 if (real_lvalue_p (args[i]))
2169 types[i] = tree_cons
2170 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2172 types[i] = tree_cons
2173 (NULL_TREE, TYPE_MAIN_VARIANT (argtypes[i]), types[i]);
2176 else if (! convs)
2177 return;
2179 for (; convs; convs = TREE_CHAIN (convs))
2181 type = TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs))));
2183 if (i == 0 && ref1
2184 && (TREE_CODE (type) != REFERENCE_TYPE
2185 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2186 continue;
2188 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2189 types[i] = tree_cons (NULL_TREE, type, types[i]);
2191 type = non_reference (type);
2192 if (i != 0 || ! ref1)
2194 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2195 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2196 types[i] = tree_cons (NULL_TREE, type, types[i]);
2197 if (INTEGRAL_TYPE_P (type))
2198 type = type_promotes_to (type);
2201 if (! value_member (type, types[i]))
2202 types[i] = tree_cons (NULL_TREE, type, types[i]);
2205 else
2207 if (code == COND_EXPR && real_lvalue_p (args[i]))
2208 types[i] = tree_cons
2209 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2210 type = non_reference (argtypes[i]);
2211 if (i != 0 || ! ref1)
2213 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2214 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2215 types[i] = tree_cons (NULL_TREE, type, types[i]);
2216 if (INTEGRAL_TYPE_P (type))
2217 type = type_promotes_to (type);
2219 types[i] = tree_cons (NULL_TREE, type, types[i]);
2223 /* Run through the possible parameter types of both arguments,
2224 creating candidates with those parameter types. */
2225 for (; types[0]; types[0] = TREE_CHAIN (types[0]))
2227 if (types[1])
2228 for (type = types[1]; type; type = TREE_CHAIN (type))
2229 add_builtin_candidate
2230 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2231 TREE_VALUE (type), args, argtypes, flags);
2232 else
2233 add_builtin_candidate
2234 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2235 NULL_TREE, args, argtypes, flags);
2240 /* If TMPL can be successfully instantiated as indicated by
2241 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2243 TMPL is the template. EXPLICIT_TARGS are any explicit template
2244 arguments. ARGLIST is the arguments provided at the call-site.
2245 The RETURN_TYPE is the desired type for conversion operators. If
2246 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2247 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
2248 add_conv_candidate. */
2250 static struct z_candidate*
2251 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2252 tree ctype, tree explicit_targs, tree arglist,
2253 tree return_type, tree access_path,
2254 tree conversion_path, int flags, tree obj,
2255 unification_kind_t strict)
2257 int ntparms = DECL_NTPARMS (tmpl);
2258 tree targs = make_tree_vec (ntparms);
2259 tree args_without_in_chrg = arglist;
2260 struct z_candidate *cand;
2261 int i;
2262 tree fn;
2264 /* We don't do deduction on the in-charge parameter, the VTT
2265 parameter or 'this'. */
2266 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2267 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2269 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2270 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2271 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
2272 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2274 i = fn_type_unification (tmpl, explicit_targs, targs,
2275 args_without_in_chrg,
2276 return_type, strict, flags);
2278 if (i != 0)
2279 return NULL;
2281 fn = instantiate_template (tmpl, targs, tf_none);
2282 if (fn == error_mark_node)
2283 return NULL;
2285 /* In [class.copy]:
2287 A member function template is never instantiated to perform the
2288 copy of a class object to an object of its class type.
2290 It's a little unclear what this means; the standard explicitly
2291 does allow a template to be used to copy a class. For example,
2294 struct A {
2295 A(A&);
2296 template <class T> A(const T&);
2298 const A f ();
2299 void g () { A a (f ()); }
2301 the member template will be used to make the copy. The section
2302 quoted above appears in the paragraph that forbids constructors
2303 whose only parameter is (a possibly cv-qualified variant of) the
2304 class type, and a logical interpretation is that the intent was
2305 to forbid the instantiation of member templates which would then
2306 have that form. */
2307 if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2)
2309 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2310 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2311 ctype))
2312 return NULL;
2315 if (obj != NULL_TREE)
2316 /* Aha, this is a conversion function. */
2317 cand = add_conv_candidate (candidates, fn, obj, access_path,
2318 conversion_path, arglist);
2319 else
2320 cand = add_function_candidate (candidates, fn, ctype,
2321 arglist, access_path,
2322 conversion_path, flags);
2323 if (DECL_TI_TEMPLATE (fn) != tmpl)
2324 /* This situation can occur if a member template of a template
2325 class is specialized. Then, instantiate_template might return
2326 an instantiation of the specialization, in which case the
2327 DECL_TI_TEMPLATE field will point at the original
2328 specialization. For example:
2330 template <class T> struct S { template <class U> void f(U);
2331 template <> void f(int) {}; };
2332 S<double> sd;
2333 sd.f(3);
2335 Here, TMPL will be template <class U> S<double>::f(U).
2336 And, instantiate template will give us the specialization
2337 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2338 for this will point at template <class T> template <> S<T>::f(int),
2339 so that we can find the definition. For the purposes of
2340 overload resolution, however, we want the original TMPL. */
2341 cand->template_decl = tree_cons (tmpl, targs, NULL_TREE);
2342 else
2343 cand->template_decl = DECL_TEMPLATE_INFO (fn);
2345 return cand;
2349 static struct z_candidate *
2350 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
2351 tree explicit_targs, tree arglist, tree return_type,
2352 tree access_path, tree conversion_path, int flags,
2353 unification_kind_t strict)
2355 return
2356 add_template_candidate_real (candidates, tmpl, ctype,
2357 explicit_targs, arglist, return_type,
2358 access_path, conversion_path,
2359 flags, NULL_TREE, strict);
2363 static struct z_candidate *
2364 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
2365 tree obj, tree arglist, tree return_type,
2366 tree access_path, tree conversion_path)
2368 return
2369 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
2370 arglist, return_type, access_path,
2371 conversion_path, 0, obj, DEDUCE_CONV);
2374 /* The CANDS are the set of candidates that were considered for
2375 overload resolution. Return the set of viable candidates. If none
2376 of the candidates were viable, set *ANY_VIABLE_P to true. STRICT_P
2377 is true if a candidate should be considered viable only if it is
2378 strictly viable. */
2380 static struct z_candidate*
2381 splice_viable (struct z_candidate *cands,
2382 bool strict_p,
2383 bool *any_viable_p)
2385 struct z_candidate *viable;
2386 struct z_candidate **last_viable;
2387 struct z_candidate **cand;
2389 viable = NULL;
2390 last_viable = &viable;
2391 *any_viable_p = false;
2393 cand = &cands;
2394 while (*cand)
2396 struct z_candidate *c = *cand;
2397 if (strict_p ? c->viable == 1 : c->viable)
2399 *last_viable = c;
2400 *cand = c->next;
2401 c->next = NULL;
2402 last_viable = &c->next;
2403 *any_viable_p = true;
2405 else
2406 cand = &c->next;
2409 return viable ? viable : cands;
2412 static bool
2413 any_strictly_viable (struct z_candidate *cands)
2415 for (; cands; cands = cands->next)
2416 if (cands->viable == 1)
2417 return true;
2418 return false;
2421 /* OBJ is being used in an expression like "OBJ.f (...)". In other
2422 words, it is about to become the "this" pointer for a member
2423 function call. Take the address of the object. */
2425 static tree
2426 build_this (tree obj)
2428 /* In a template, we are only concerned about the type of the
2429 expression, so we can take a shortcut. */
2430 if (processing_template_decl)
2431 return build_address (obj);
2433 return build_unary_op (ADDR_EXPR, obj, 0);
2436 /* Returns true iff functions are equivalent. Equivalent functions are
2437 not '==' only if one is a function-local extern function or if
2438 both are extern "C". */
2440 static inline int
2441 equal_functions (tree fn1, tree fn2)
2443 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
2444 || DECL_EXTERN_C_FUNCTION_P (fn1))
2445 return decls_match (fn1, fn2);
2446 return fn1 == fn2;
2449 /* Print information about one overload candidate CANDIDATE. MSGSTR
2450 is the text to print before the candidate itself.
2452 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
2453 to have been run through gettext by the caller. This wart makes
2454 life simpler in print_z_candidates and for the translators. */
2456 static void
2457 print_z_candidate (const char *msgstr, struct z_candidate *candidate)
2459 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
2461 if (candidate->num_convs == 3)
2462 inform ("%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn,
2463 candidate->convs[0]->type,
2464 candidate->convs[1]->type,
2465 candidate->convs[2]->type);
2466 else if (candidate->num_convs == 2)
2467 inform ("%s %D(%T, %T) <built-in>", msgstr, candidate->fn,
2468 candidate->convs[0]->type,
2469 candidate->convs[1]->type);
2470 else
2471 inform ("%s %D(%T) <built-in>", msgstr, candidate->fn,
2472 candidate->convs[0]->type);
2474 else if (TYPE_P (candidate->fn))
2475 inform ("%s %T <conversion>", msgstr, candidate->fn);
2476 else if (candidate->viable == -1)
2477 inform ("%s %+#D <near match>", msgstr, candidate->fn);
2478 else
2479 inform ("%s %+#D", msgstr, candidate->fn);
2482 static void
2483 print_z_candidates (struct z_candidate *candidates)
2485 const char *str;
2486 struct z_candidate *cand1;
2487 struct z_candidate **cand2;
2489 /* There may be duplicates in the set of candidates. We put off
2490 checking this condition as long as possible, since we have no way
2491 to eliminate duplicates from a set of functions in less than n^2
2492 time. Now we are about to emit an error message, so it is more
2493 permissible to go slowly. */
2494 for (cand1 = candidates; cand1; cand1 = cand1->next)
2496 tree fn = cand1->fn;
2497 /* Skip builtin candidates and conversion functions. */
2498 if (TREE_CODE (fn) != FUNCTION_DECL)
2499 continue;
2500 cand2 = &cand1->next;
2501 while (*cand2)
2503 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
2504 && equal_functions (fn, (*cand2)->fn))
2505 *cand2 = (*cand2)->next;
2506 else
2507 cand2 = &(*cand2)->next;
2511 if (!candidates)
2512 return;
2514 str = _("candidates are:");
2515 print_z_candidate (str, candidates);
2516 if (candidates->next)
2518 /* Indent successive candidates by the width of the translation
2519 of the above string. */
2520 size_t len = gcc_gettext_width (str) + 1;
2521 char *spaces = (char *) alloca (len);
2522 memset (spaces, ' ', len-1);
2523 spaces[len - 1] = '\0';
2525 candidates = candidates->next;
2528 print_z_candidate (spaces, candidates);
2529 candidates = candidates->next;
2531 while (candidates);
2535 /* USER_SEQ is a user-defined conversion sequence, beginning with a
2536 USER_CONV. STD_SEQ is the standard conversion sequence applied to
2537 the result of the conversion function to convert it to the final
2538 desired type. Merge the two sequences into a single sequence,
2539 and return the merged sequence. */
2541 static conversion *
2542 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
2544 conversion **t;
2546 gcc_assert (user_seq->kind == ck_user);
2548 /* Find the end of the second conversion sequence. */
2549 t = &(std_seq);
2550 while ((*t)->kind != ck_identity)
2551 t = &((*t)->u.next);
2553 /* Replace the identity conversion with the user conversion
2554 sequence. */
2555 *t = user_seq;
2557 /* The entire sequence is a user-conversion sequence. */
2558 std_seq->user_conv_p = true;
2560 return std_seq;
2563 /* Returns the best overload candidate to perform the requested
2564 conversion. This function is used for three the overloading situations
2565 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2566 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2567 per [dcl.init.ref], so we ignore temporary bindings. */
2569 static struct z_candidate *
2570 build_user_type_conversion_1 (tree totype, tree expr, int flags)
2572 struct z_candidate *candidates, *cand;
2573 tree fromtype = TREE_TYPE (expr);
2574 tree ctors = NULL_TREE;
2575 tree conv_fns = NULL_TREE;
2576 conversion *conv = NULL;
2577 tree args = NULL_TREE;
2578 bool any_viable_p;
2579 int convflags;
2581 /* We represent conversion within a hierarchy using RVALUE_CONV and
2582 BASE_CONV, as specified by [over.best.ics]; these become plain
2583 constructor calls, as specified in [dcl.init]. */
2584 gcc_assert (!IS_AGGR_TYPE (fromtype) || !IS_AGGR_TYPE (totype)
2585 || !DERIVED_FROM_P (totype, fromtype));
2587 if (IS_AGGR_TYPE (totype))
2588 ctors = lookup_fnfields (totype, complete_ctor_identifier, 0);
2590 if (IS_AGGR_TYPE (fromtype))
2592 tree to_nonref = non_reference (totype);
2593 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
2594 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
2595 && DERIVED_FROM_P (to_nonref, fromtype)))
2597 /* [class.conv.fct] A conversion function is never used to
2598 convert a (possibly cv-qualified) object to the (possibly
2599 cv-qualified) same object type (or a reference to it), to a
2600 (possibly cv-qualified) base class of that type (or a
2601 reference to it)... */
2603 else
2604 conv_fns = lookup_conversions (fromtype);
2607 candidates = 0;
2608 flags |= LOOKUP_NO_CONVERSION;
2610 /* It's OK to bind a temporary for converting constructor arguments, but
2611 not in converting the return value of a conversion operator. */
2612 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
2613 flags &= ~LOOKUP_NO_TEMP_BIND;
2615 if (ctors)
2617 tree t;
2619 ctors = BASELINK_FUNCTIONS (ctors);
2621 t = build_int_cst (build_pointer_type (totype), 0);
2622 args = build_tree_list (NULL_TREE, expr);
2623 /* We should never try to call the abstract or base constructor
2624 from here. */
2625 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
2626 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
2627 args = tree_cons (NULL_TREE, t, args);
2629 for (; ctors; ctors = OVL_NEXT (ctors))
2631 tree ctor = OVL_CURRENT (ctors);
2632 if (DECL_NONCONVERTING_P (ctor))
2633 continue;
2635 if (TREE_CODE (ctor) == TEMPLATE_DECL)
2636 cand = add_template_candidate (&candidates, ctor, totype,
2637 NULL_TREE, args, NULL_TREE,
2638 TYPE_BINFO (totype),
2639 TYPE_BINFO (totype),
2640 flags,
2641 DEDUCE_CALL);
2642 else
2643 cand = add_function_candidate (&candidates, ctor, totype,
2644 args, TYPE_BINFO (totype),
2645 TYPE_BINFO (totype),
2646 flags);
2648 if (cand)
2649 cand->second_conv = build_identity_conv (totype, NULL_TREE);
2652 if (conv_fns)
2653 args = build_tree_list (NULL_TREE, build_this (expr));
2655 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
2657 tree fns;
2658 tree conversion_path = TREE_PURPOSE (conv_fns);
2660 /* If we are called to convert to a reference type, we are trying to
2661 find an lvalue binding, so don't even consider temporaries. If
2662 we don't find an lvalue binding, the caller will try again to
2663 look for a temporary binding. */
2664 if (TREE_CODE (totype) == REFERENCE_TYPE)
2665 convflags |= LOOKUP_NO_TEMP_BIND;
2667 for (fns = TREE_VALUE (conv_fns); fns; fns = OVL_NEXT (fns))
2669 tree fn = OVL_CURRENT (fns);
2671 /* [over.match.funcs] For conversion functions, the function
2672 is considered to be a member of the class of the implicit
2673 object argument for the purpose of defining the type of
2674 the implicit object parameter.
2676 So we pass fromtype as CTYPE to add_*_candidate. */
2678 if (TREE_CODE (fn) == TEMPLATE_DECL)
2679 cand = add_template_candidate (&candidates, fn, fromtype,
2680 NULL_TREE,
2681 args, totype,
2682 TYPE_BINFO (fromtype),
2683 conversion_path,
2684 flags,
2685 DEDUCE_CONV);
2686 else
2687 cand = add_function_candidate (&candidates, fn, fromtype,
2688 args,
2689 TYPE_BINFO (fromtype),
2690 conversion_path,
2691 flags);
2693 if (cand)
2695 conversion *ics
2696 = implicit_conversion (totype,
2697 TREE_TYPE (TREE_TYPE (cand->fn)),
2699 /*c_cast_p=*/false, convflags);
2701 cand->second_conv = ics;
2703 if (!ics)
2704 cand->viable = 0;
2705 else if (candidates->viable == 1 && ics->bad_p)
2706 cand->viable = -1;
2711 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2712 if (!any_viable_p)
2713 return NULL;
2715 cand = tourney (candidates);
2716 if (cand == 0)
2718 if (flags & LOOKUP_COMPLAIN)
2720 error ("conversion from %qT to %qT is ambiguous",
2721 fromtype, totype);
2722 print_z_candidates (candidates);
2725 cand = candidates; /* any one will do */
2726 cand->second_conv = build_ambiguous_conv (totype, expr);
2727 cand->second_conv->user_conv_p = true;
2728 if (!any_strictly_viable (candidates))
2729 cand->second_conv->bad_p = true;
2730 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
2731 ambiguous conversion is no worse than another user-defined
2732 conversion. */
2734 return cand;
2737 /* Build the user conversion sequence. */
2738 conv = build_conv
2739 (ck_user,
2740 (DECL_CONSTRUCTOR_P (cand->fn)
2741 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
2742 build_identity_conv (TREE_TYPE (expr), expr));
2743 conv->cand = cand;
2745 /* Combine it with the second conversion sequence. */
2746 cand->second_conv = merge_conversion_sequences (conv,
2747 cand->second_conv);
2749 if (cand->viable == -1)
2750 cand->second_conv->bad_p = true;
2752 return cand;
2755 tree
2756 build_user_type_conversion (tree totype, tree expr, int flags)
2758 struct z_candidate *cand
2759 = build_user_type_conversion_1 (totype, expr, flags);
2761 if (cand)
2763 if (cand->second_conv->kind == ck_ambig)
2764 return error_mark_node;
2765 expr = convert_like (cand->second_conv, expr);
2766 return convert_from_reference (expr);
2768 return NULL_TREE;
2771 /* Do any initial processing on the arguments to a function call. */
2773 static tree
2774 resolve_args (tree args)
2776 tree t;
2777 for (t = args; t; t = TREE_CHAIN (t))
2779 tree arg = TREE_VALUE (t);
2781 if (error_operand_p (arg))
2782 return error_mark_node;
2783 else if (VOID_TYPE_P (TREE_TYPE (arg)))
2785 error ("invalid use of void expression");
2786 return error_mark_node;
2788 else if (invalid_nonstatic_memfn_p (arg))
2789 return error_mark_node;
2791 return args;
2794 /* Perform overload resolution on FN, which is called with the ARGS.
2796 Return the candidate function selected by overload resolution, or
2797 NULL if the event that overload resolution failed. In the case
2798 that overload resolution fails, *CANDIDATES will be the set of
2799 candidates considered, and ANY_VIABLE_P will be set to true or
2800 false to indicate whether or not any of the candidates were
2801 viable.
2803 The ARGS should already have gone through RESOLVE_ARGS before this
2804 function is called. */
2806 static struct z_candidate *
2807 perform_overload_resolution (tree fn,
2808 tree args,
2809 struct z_candidate **candidates,
2810 bool *any_viable_p)
2812 struct z_candidate *cand;
2813 tree explicit_targs = NULL_TREE;
2814 int template_only = 0;
2816 *candidates = NULL;
2817 *any_viable_p = true;
2819 /* Check FN and ARGS. */
2820 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
2821 || TREE_CODE (fn) == TEMPLATE_DECL
2822 || TREE_CODE (fn) == OVERLOAD
2823 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
2824 gcc_assert (!args || TREE_CODE (args) == TREE_LIST);
2826 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2828 explicit_targs = TREE_OPERAND (fn, 1);
2829 fn = TREE_OPERAND (fn, 0);
2830 template_only = 1;
2833 /* Add the various candidate functions. */
2834 add_candidates (fn, args, explicit_targs, template_only,
2835 /*conversion_path=*/NULL_TREE,
2836 /*access_path=*/NULL_TREE,
2837 LOOKUP_NORMAL,
2838 candidates);
2840 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
2841 if (!*any_viable_p)
2842 return NULL;
2844 cand = tourney (*candidates);
2845 return cand;
2848 /* Return an expression for a call to FN (a namespace-scope function,
2849 or a static member function) with the ARGS. */
2851 tree
2852 build_new_function_call (tree fn, tree args, bool koenig_p)
2854 struct z_candidate *candidates, *cand;
2855 bool any_viable_p;
2856 void *p;
2857 tree result;
2859 args = resolve_args (args);
2860 if (args == error_mark_node)
2861 return error_mark_node;
2863 /* If this function was found without using argument dependent
2864 lookup, then we want to ignore any undeclared friend
2865 functions. */
2866 if (!koenig_p)
2868 tree orig_fn = fn;
2870 fn = remove_hidden_names (fn);
2871 if (!fn)
2873 error ("no matching function for call to %<%D(%A)%>",
2874 DECL_NAME (OVL_CURRENT (orig_fn)), args);
2875 return error_mark_node;
2879 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2880 p = conversion_obstack_alloc (0);
2882 cand = perform_overload_resolution (fn, args, &candidates, &any_viable_p);
2884 if (!cand)
2886 if (!any_viable_p && candidates && ! candidates->next)
2887 return build_function_call (candidates->fn, args);
2888 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2889 fn = TREE_OPERAND (fn, 0);
2890 if (!any_viable_p)
2891 error ("no matching function for call to %<%D(%A)%>",
2892 DECL_NAME (OVL_CURRENT (fn)), args);
2893 else
2894 error ("call of overloaded %<%D(%A)%> is ambiguous",
2895 DECL_NAME (OVL_CURRENT (fn)), args);
2896 if (candidates)
2897 print_z_candidates (candidates);
2898 result = error_mark_node;
2900 else
2901 result = build_over_call (cand, LOOKUP_NORMAL);
2903 /* Free all the conversions we allocated. */
2904 obstack_free (&conversion_obstack, p);
2906 return result;
2909 /* Build a call to a global operator new. FNNAME is the name of the
2910 operator (either "operator new" or "operator new[]") and ARGS are
2911 the arguments provided. *SIZE points to the total number of bytes
2912 required by the allocation, and is updated if that is changed here.
2913 *COOKIE_SIZE is non-NULL if a cookie should be used. If this
2914 function determines that no cookie should be used, after all,
2915 *COOKIE_SIZE is set to NULL_TREE. If FN is non-NULL, it will be
2916 set, upon return, to the allocation function called. */
2918 tree
2919 build_operator_new_call (tree fnname, tree args,
2920 tree *size, tree *cookie_size,
2921 tree *fn)
2923 tree fns;
2924 struct z_candidate *candidates;
2925 struct z_candidate *cand;
2926 bool any_viable_p;
2928 if (fn)
2929 *fn = NULL_TREE;
2930 args = tree_cons (NULL_TREE, *size, args);
2931 args = resolve_args (args);
2932 if (args == error_mark_node)
2933 return args;
2935 /* Based on:
2937 [expr.new]
2939 If this lookup fails to find the name, or if the allocated type
2940 is not a class type, the allocation function's name is looked
2941 up in the global scope.
2943 we disregard block-scope declarations of "operator new". */
2944 fns = lookup_function_nonclass (fnname, args, /*block_p=*/false);
2946 /* Figure out what function is being called. */
2947 cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p);
2949 /* If no suitable function could be found, issue an error message
2950 and give up. */
2951 if (!cand)
2953 if (!any_viable_p)
2954 error ("no matching function for call to %<%D(%A)%>",
2955 DECL_NAME (OVL_CURRENT (fns)), args);
2956 else
2957 error ("call of overloaded %<%D(%A)%> is ambiguous",
2958 DECL_NAME (OVL_CURRENT (fns)), args);
2959 if (candidates)
2960 print_z_candidates (candidates);
2961 return error_mark_node;
2964 /* If a cookie is required, add some extra space. Whether
2965 or not a cookie is required cannot be determined until
2966 after we know which function was called. */
2967 if (*cookie_size)
2969 bool use_cookie = true;
2970 if (!abi_version_at_least (2))
2972 tree placement = TREE_CHAIN (args);
2973 /* In G++ 3.2, the check was implemented incorrectly; it
2974 looked at the placement expression, rather than the
2975 type of the function. */
2976 if (placement && !TREE_CHAIN (placement)
2977 && same_type_p (TREE_TYPE (TREE_VALUE (placement)),
2978 ptr_type_node))
2979 use_cookie = false;
2981 else
2983 tree arg_types;
2985 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
2986 /* Skip the size_t parameter. */
2987 arg_types = TREE_CHAIN (arg_types);
2988 /* Check the remaining parameters (if any). */
2989 if (arg_types
2990 && TREE_CHAIN (arg_types) == void_list_node
2991 && same_type_p (TREE_VALUE (arg_types),
2992 ptr_type_node))
2993 use_cookie = false;
2995 /* If we need a cookie, adjust the number of bytes allocated. */
2996 if (use_cookie)
2998 /* Update the total size. */
2999 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
3000 /* Update the argument list to reflect the adjusted size. */
3001 TREE_VALUE (args) = *size;
3003 else
3004 *cookie_size = NULL_TREE;
3007 /* Tell our caller which function we decided to call. */
3008 if (fn)
3009 *fn = cand->fn;
3011 /* Build the CALL_EXPR. */
3012 return build_over_call (cand, LOOKUP_NORMAL);
3015 static tree
3016 build_object_call (tree obj, tree args)
3018 struct z_candidate *candidates = 0, *cand;
3019 tree fns, convs, mem_args = NULL_TREE;
3020 tree type = TREE_TYPE (obj);
3021 bool any_viable_p;
3022 tree result = NULL_TREE;
3023 void *p;
3025 if (TYPE_PTRMEMFUNC_P (type))
3027 /* It's no good looking for an overloaded operator() on a
3028 pointer-to-member-function. */
3029 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
3030 return error_mark_node;
3033 if (TYPE_BINFO (type))
3035 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
3036 if (fns == error_mark_node)
3037 return error_mark_node;
3039 else
3040 fns = NULL_TREE;
3042 args = resolve_args (args);
3044 if (args == error_mark_node)
3045 return error_mark_node;
3047 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3048 p = conversion_obstack_alloc (0);
3050 if (fns)
3052 tree base = BINFO_TYPE (BASELINK_BINFO (fns));
3053 mem_args = tree_cons (NULL_TREE, build_this (obj), args);
3055 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
3057 tree fn = OVL_CURRENT (fns);
3058 if (TREE_CODE (fn) == TEMPLATE_DECL)
3059 add_template_candidate (&candidates, fn, base, NULL_TREE,
3060 mem_args, NULL_TREE,
3061 TYPE_BINFO (type),
3062 TYPE_BINFO (type),
3063 LOOKUP_NORMAL, DEDUCE_CALL);
3064 else
3065 add_function_candidate
3066 (&candidates, fn, base, mem_args, TYPE_BINFO (type),
3067 TYPE_BINFO (type), LOOKUP_NORMAL);
3071 convs = lookup_conversions (type);
3073 for (; convs; convs = TREE_CHAIN (convs))
3075 tree fns = TREE_VALUE (convs);
3076 tree totype = TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns)));
3078 if ((TREE_CODE (totype) == POINTER_TYPE
3079 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
3080 || (TREE_CODE (totype) == REFERENCE_TYPE
3081 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
3082 || (TREE_CODE (totype) == REFERENCE_TYPE
3083 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
3084 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
3085 for (; fns; fns = OVL_NEXT (fns))
3087 tree fn = OVL_CURRENT (fns);
3088 if (TREE_CODE (fn) == TEMPLATE_DECL)
3089 add_template_conv_candidate
3090 (&candidates, fn, obj, args, totype,
3091 /*access_path=*/NULL_TREE,
3092 /*conversion_path=*/NULL_TREE);
3093 else
3094 add_conv_candidate (&candidates, fn, obj, args,
3095 /*conversion_path=*/NULL_TREE,
3096 /*access_path=*/NULL_TREE);
3100 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3101 if (!any_viable_p)
3103 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj), args);
3104 print_z_candidates (candidates);
3105 result = error_mark_node;
3107 else
3109 cand = tourney (candidates);
3110 if (cand == 0)
3112 error ("call of %<(%T) (%A)%> is ambiguous", TREE_TYPE (obj), args);
3113 print_z_candidates (candidates);
3114 result = error_mark_node;
3116 /* Since cand->fn will be a type, not a function, for a conversion
3117 function, we must be careful not to unconditionally look at
3118 DECL_NAME here. */
3119 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
3120 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
3121 result = build_over_call (cand, LOOKUP_NORMAL);
3122 else
3124 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1);
3125 obj = convert_from_reference (obj);
3126 result = build_function_call (obj, args);
3130 /* Free all the conversions we allocated. */
3131 obstack_free (&conversion_obstack, p);
3133 return result;
3136 static void
3137 op_error (enum tree_code code, enum tree_code code2,
3138 tree arg1, tree arg2, tree arg3, const char *problem)
3140 const char *opname;
3142 if (code == MODIFY_EXPR)
3143 opname = assignment_operator_name_info[code2].name;
3144 else
3145 opname = operator_name_info[code].name;
3147 switch (code)
3149 case COND_EXPR:
3150 error ("%s for ternary %<operator?:%> in %<%E ? %E : %E%>",
3151 problem, arg1, arg2, arg3);
3152 break;
3154 case POSTINCREMENT_EXPR:
3155 case POSTDECREMENT_EXPR:
3156 error ("%s for %<operator%s%> in %<%E%s%>", problem, opname, arg1, opname);
3157 break;
3159 case ARRAY_REF:
3160 error ("%s for %<operator[]%> in %<%E[%E]%>", problem, arg1, arg2);
3161 break;
3163 case REALPART_EXPR:
3164 case IMAGPART_EXPR:
3165 error ("%s for %qs in %<%s %E%>", problem, opname, opname, arg1);
3166 break;
3168 default:
3169 if (arg2)
3170 error ("%s for %<operator%s%> in %<%E %s %E%>",
3171 problem, opname, arg1, opname, arg2);
3172 else
3173 error ("%s for %<operator%s%> in %<%s%E%>",
3174 problem, opname, opname, arg1);
3175 break;
3179 /* Return the implicit conversion sequence that could be used to
3180 convert E1 to E2 in [expr.cond]. */
3182 static conversion *
3183 conditional_conversion (tree e1, tree e2)
3185 tree t1 = non_reference (TREE_TYPE (e1));
3186 tree t2 = non_reference (TREE_TYPE (e2));
3187 conversion *conv;
3188 bool good_base;
3190 /* [expr.cond]
3192 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
3193 implicitly converted (clause _conv_) to the type "reference to
3194 T2", subject to the constraint that in the conversion the
3195 reference must bind directly (_dcl.init.ref_) to E1. */
3196 if (real_lvalue_p (e2))
3198 conv = implicit_conversion (build_reference_type (t2),
3201 /*c_cast_p=*/false,
3202 LOOKUP_NO_TEMP_BIND);
3203 if (conv)
3204 return conv;
3207 /* [expr.cond]
3209 If E1 and E2 have class type, and the underlying class types are
3210 the same or one is a base class of the other: E1 can be converted
3211 to match E2 if the class of T2 is the same type as, or a base
3212 class of, the class of T1, and the cv-qualification of T2 is the
3213 same cv-qualification as, or a greater cv-qualification than, the
3214 cv-qualification of T1. If the conversion is applied, E1 is
3215 changed to an rvalue of type T2 that still refers to the original
3216 source class object (or the appropriate subobject thereof). */
3217 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
3218 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
3220 if (good_base && at_least_as_qualified_p (t2, t1))
3222 conv = build_identity_conv (t1, e1);
3223 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
3224 TYPE_MAIN_VARIANT (t2)))
3225 conv = build_conv (ck_base, t2, conv);
3226 else
3227 conv = build_conv (ck_rvalue, t2, conv);
3228 return conv;
3230 else
3231 return NULL;
3233 else
3234 /* [expr.cond]
3236 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
3237 converted to the type that expression E2 would have if E2 were
3238 converted to an rvalue (or the type it has, if E2 is an rvalue). */
3239 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
3240 LOOKUP_NORMAL);
3243 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
3244 arguments to the conditional expression. */
3246 tree
3247 build_conditional_expr (tree arg1, tree arg2, tree arg3)
3249 tree arg2_type;
3250 tree arg3_type;
3251 tree result = NULL_TREE;
3252 tree result_type = NULL_TREE;
3253 bool lvalue_p = true;
3254 struct z_candidate *candidates = 0;
3255 struct z_candidate *cand;
3256 void *p;
3258 /* As a G++ extension, the second argument to the conditional can be
3259 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
3260 c'.) If the second operand is omitted, make sure it is
3261 calculated only once. */
3262 if (!arg2)
3264 if (pedantic)
3265 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
3267 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
3268 if (real_lvalue_p (arg1))
3269 arg2 = arg1 = stabilize_reference (arg1);
3270 else
3271 arg2 = arg1 = save_expr (arg1);
3274 /* [expr.cond]
3276 The first expr ession is implicitly converted to bool (clause
3277 _conv_). */
3278 arg1 = perform_implicit_conversion (boolean_type_node, arg1);
3280 /* If something has already gone wrong, just pass that fact up the
3281 tree. */
3282 if (error_operand_p (arg1)
3283 || error_operand_p (arg2)
3284 || error_operand_p (arg3))
3285 return error_mark_node;
3287 /* [expr.cond]
3289 If either the second or the third operand has type (possibly
3290 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
3291 array-to-pointer (_conv.array_), and function-to-pointer
3292 (_conv.func_) standard conversions are performed on the second
3293 and third operands. */
3294 arg2_type = unlowered_expr_type (arg2);
3295 arg3_type = unlowered_expr_type (arg3);
3296 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
3298 /* Do the conversions. We don't these for `void' type arguments
3299 since it can't have any effect and since decay_conversion
3300 does not handle that case gracefully. */
3301 if (!VOID_TYPE_P (arg2_type))
3302 arg2 = decay_conversion (arg2);
3303 if (!VOID_TYPE_P (arg3_type))
3304 arg3 = decay_conversion (arg3);
3305 arg2_type = TREE_TYPE (arg2);
3306 arg3_type = TREE_TYPE (arg3);
3308 /* [expr.cond]
3310 One of the following shall hold:
3312 --The second or the third operand (but not both) is a
3313 throw-expression (_except.throw_); the result is of the
3314 type of the other and is an rvalue.
3316 --Both the second and the third operands have type void; the
3317 result is of type void and is an rvalue.
3319 We must avoid calling force_rvalue for expressions of type
3320 "void" because it will complain that their value is being
3321 used. */
3322 if (TREE_CODE (arg2) == THROW_EXPR
3323 && TREE_CODE (arg3) != THROW_EXPR)
3325 if (!VOID_TYPE_P (arg3_type))
3326 arg3 = force_rvalue (arg3);
3327 arg3_type = TREE_TYPE (arg3);
3328 result_type = arg3_type;
3330 else if (TREE_CODE (arg2) != THROW_EXPR
3331 && TREE_CODE (arg3) == THROW_EXPR)
3333 if (!VOID_TYPE_P (arg2_type))
3334 arg2 = force_rvalue (arg2);
3335 arg2_type = TREE_TYPE (arg2);
3336 result_type = arg2_type;
3338 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
3339 result_type = void_type_node;
3340 else
3342 if (VOID_TYPE_P (arg2_type))
3343 error ("second operand to the conditional operator "
3344 "is of type %<void%>, "
3345 "but the third operand is neither a throw-expression "
3346 "nor of type %<void%>");
3347 else
3348 error ("third operand to the conditional operator "
3349 "is of type %<void%>, "
3350 "but the second operand is neither a throw-expression "
3351 "nor of type %<void%>");
3352 return error_mark_node;
3355 lvalue_p = false;
3356 goto valid_operands;
3358 /* [expr.cond]
3360 Otherwise, if the second and third operand have different types,
3361 and either has (possibly cv-qualified) class type, an attempt is
3362 made to convert each of those operands to the type of the other. */
3363 else if (!same_type_p (arg2_type, arg3_type)
3364 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3366 conversion *conv2;
3367 conversion *conv3;
3369 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3370 p = conversion_obstack_alloc (0);
3372 conv2 = conditional_conversion (arg2, arg3);
3373 conv3 = conditional_conversion (arg3, arg2);
3375 /* [expr.cond]
3377 If both can be converted, or one can be converted but the
3378 conversion is ambiguous, the program is ill-formed. If
3379 neither can be converted, the operands are left unchanged and
3380 further checking is performed as described below. If exactly
3381 one conversion is possible, that conversion is applied to the
3382 chosen operand and the converted operand is used in place of
3383 the original operand for the remainder of this section. */
3384 if ((conv2 && !conv2->bad_p
3385 && conv3 && !conv3->bad_p)
3386 || (conv2 && conv2->kind == ck_ambig)
3387 || (conv3 && conv3->kind == ck_ambig))
3389 error ("operands to ?: have different types %qT and %qT",
3390 arg2_type, arg3_type);
3391 result = error_mark_node;
3393 else if (conv2 && (!conv2->bad_p || !conv3))
3395 arg2 = convert_like (conv2, arg2);
3396 arg2 = convert_from_reference (arg2);
3397 arg2_type = TREE_TYPE (arg2);
3398 /* Even if CONV2 is a valid conversion, the result of the
3399 conversion may be invalid. For example, if ARG3 has type
3400 "volatile X", and X does not have a copy constructor
3401 accepting a "volatile X&", then even if ARG2 can be
3402 converted to X, the conversion will fail. */
3403 if (error_operand_p (arg2))
3404 result = error_mark_node;
3406 else if (conv3 && (!conv3->bad_p || !conv2))
3408 arg3 = convert_like (conv3, arg3);
3409 arg3 = convert_from_reference (arg3);
3410 arg3_type = TREE_TYPE (arg3);
3411 if (error_operand_p (arg3))
3412 result = error_mark_node;
3415 /* Free all the conversions we allocated. */
3416 obstack_free (&conversion_obstack, p);
3418 if (result)
3419 return result;
3421 /* If, after the conversion, both operands have class type,
3422 treat the cv-qualification of both operands as if it were the
3423 union of the cv-qualification of the operands.
3425 The standard is not clear about what to do in this
3426 circumstance. For example, if the first operand has type
3427 "const X" and the second operand has a user-defined
3428 conversion to "volatile X", what is the type of the second
3429 operand after this step? Making it be "const X" (matching
3430 the first operand) seems wrong, as that discards the
3431 qualification without actually performing a copy. Leaving it
3432 as "volatile X" seems wrong as that will result in the
3433 conditional expression failing altogether, even though,
3434 according to this step, the one operand could be converted to
3435 the type of the other. */
3436 if ((conv2 || conv3)
3437 && CLASS_TYPE_P (arg2_type)
3438 && TYPE_QUALS (arg2_type) != TYPE_QUALS (arg3_type))
3439 arg2_type = arg3_type =
3440 cp_build_qualified_type (arg2_type,
3441 TYPE_QUALS (arg2_type)
3442 | TYPE_QUALS (arg3_type));
3445 /* [expr.cond]
3447 If the second and third operands are lvalues and have the same
3448 type, the result is of that type and is an lvalue. */
3449 if (real_lvalue_p (arg2)
3450 && real_lvalue_p (arg3)
3451 && same_type_p (arg2_type, arg3_type))
3453 result_type = arg2_type;
3454 goto valid_operands;
3457 /* [expr.cond]
3459 Otherwise, the result is an rvalue. If the second and third
3460 operand do not have the same type, and either has (possibly
3461 cv-qualified) class type, overload resolution is used to
3462 determine the conversions (if any) to be applied to the operands
3463 (_over.match.oper_, _over.built_). */
3464 lvalue_p = false;
3465 if (!same_type_p (arg2_type, arg3_type)
3466 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3468 tree args[3];
3469 conversion *conv;
3470 bool any_viable_p;
3472 /* Rearrange the arguments so that add_builtin_candidate only has
3473 to know about two args. In build_builtin_candidates, the
3474 arguments are unscrambled. */
3475 args[0] = arg2;
3476 args[1] = arg3;
3477 args[2] = arg1;
3478 add_builtin_candidates (&candidates,
3479 COND_EXPR,
3480 NOP_EXPR,
3481 ansi_opname (COND_EXPR),
3482 args,
3483 LOOKUP_NORMAL);
3485 /* [expr.cond]
3487 If the overload resolution fails, the program is
3488 ill-formed. */
3489 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3490 if (!any_viable_p)
3492 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3493 print_z_candidates (candidates);
3494 return error_mark_node;
3496 cand = tourney (candidates);
3497 if (!cand)
3499 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3500 print_z_candidates (candidates);
3501 return error_mark_node;
3504 /* [expr.cond]
3506 Otherwise, the conversions thus determined are applied, and
3507 the converted operands are used in place of the original
3508 operands for the remainder of this section. */
3509 conv = cand->convs[0];
3510 arg1 = convert_like (conv, arg1);
3511 conv = cand->convs[1];
3512 arg2 = convert_like (conv, arg2);
3513 conv = cand->convs[2];
3514 arg3 = convert_like (conv, arg3);
3517 /* [expr.cond]
3519 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3520 and function-to-pointer (_conv.func_) standard conversions are
3521 performed on the second and third operands.
3523 We need to force the lvalue-to-rvalue conversion here for class types,
3524 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3525 that isn't wrapped with a TARGET_EXPR plays havoc with exception
3526 regions. */
3528 arg2 = force_rvalue (arg2);
3529 if (!CLASS_TYPE_P (arg2_type))
3530 arg2_type = TREE_TYPE (arg2);
3532 arg3 = force_rvalue (arg3);
3533 if (!CLASS_TYPE_P (arg2_type))
3534 arg3_type = TREE_TYPE (arg3);
3536 if (arg2 == error_mark_node || arg3 == error_mark_node)
3537 return error_mark_node;
3539 /* [expr.cond]
3541 After those conversions, one of the following shall hold:
3543 --The second and third operands have the same type; the result is of
3544 that type. */
3545 if (same_type_p (arg2_type, arg3_type))
3546 result_type = arg2_type;
3547 /* [expr.cond]
3549 --The second and third operands have arithmetic or enumeration
3550 type; the usual arithmetic conversions are performed to bring
3551 them to a common type, and the result is of that type. */
3552 else if ((ARITHMETIC_TYPE_P (arg2_type)
3553 || TREE_CODE (arg2_type) == ENUMERAL_TYPE)
3554 && (ARITHMETIC_TYPE_P (arg3_type)
3555 || TREE_CODE (arg3_type) == ENUMERAL_TYPE))
3557 /* In this case, there is always a common type. */
3558 result_type = type_after_usual_arithmetic_conversions (arg2_type,
3559 arg3_type);
3561 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
3562 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
3563 warning (0, "enumeral mismatch in conditional expression: %qT vs %qT",
3564 arg2_type, arg3_type);
3565 else if (extra_warnings
3566 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
3567 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
3568 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
3569 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
3570 warning (0, "enumeral and non-enumeral type in conditional expression");
3572 arg2 = perform_implicit_conversion (result_type, arg2);
3573 arg3 = perform_implicit_conversion (result_type, arg3);
3575 /* [expr.cond]
3577 --The second and third operands have pointer type, or one has
3578 pointer type and the other is a null pointer constant; pointer
3579 conversions (_conv.ptr_) and qualification conversions
3580 (_conv.qual_) are performed to bring them to their composite
3581 pointer type (_expr.rel_). The result is of the composite
3582 pointer type.
3584 --The second and third operands have pointer to member type, or
3585 one has pointer to member type and the other is a null pointer
3586 constant; pointer to member conversions (_conv.mem_) and
3587 qualification conversions (_conv.qual_) are performed to bring
3588 them to a common type, whose cv-qualification shall match the
3589 cv-qualification of either the second or the third operand.
3590 The result is of the common type. */
3591 else if ((null_ptr_cst_p (arg2)
3592 && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
3593 || (null_ptr_cst_p (arg3)
3594 && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
3595 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
3596 || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
3597 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
3599 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
3600 arg3, "conditional expression");
3601 if (result_type == error_mark_node)
3602 return error_mark_node;
3603 arg2 = perform_implicit_conversion (result_type, arg2);
3604 arg3 = perform_implicit_conversion (result_type, arg3);
3607 if (!result_type)
3609 error ("operands to ?: have different types %qT and %qT",
3610 arg2_type, arg3_type);
3611 return error_mark_node;
3614 valid_operands:
3615 result = fold_if_not_in_template (build3 (COND_EXPR, result_type, arg1,
3616 arg2, arg3));
3617 /* We can't use result_type below, as fold might have returned a
3618 throw_expr. */
3620 if (!lvalue_p)
3622 /* Expand both sides into the same slot, hopefully the target of
3623 the ?: expression. We used to check for TARGET_EXPRs here,
3624 but now we sometimes wrap them in NOP_EXPRs so the test would
3625 fail. */
3626 if (CLASS_TYPE_P (TREE_TYPE (result)))
3627 result = get_target_expr (result);
3628 /* If this expression is an rvalue, but might be mistaken for an
3629 lvalue, we must add a NON_LVALUE_EXPR. */
3630 result = rvalue (result);
3633 return result;
3636 /* OPERAND is an operand to an expression. Perform necessary steps
3637 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
3638 returned. */
3640 static tree
3641 prep_operand (tree operand)
3643 if (operand)
3645 if (CLASS_TYPE_P (TREE_TYPE (operand))
3646 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
3647 /* Make sure the template type is instantiated now. */
3648 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
3651 return operand;
3654 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
3655 OVERLOAD) to the CANDIDATES, returning an updated list of
3656 CANDIDATES. The ARGS are the arguments provided to the call,
3657 without any implicit object parameter. The EXPLICIT_TARGS are
3658 explicit template arguments provided. TEMPLATE_ONLY is true if
3659 only template functions should be considered. CONVERSION_PATH,
3660 ACCESS_PATH, and FLAGS are as for add_function_candidate. */
3662 static void
3663 add_candidates (tree fns, tree args,
3664 tree explicit_targs, bool template_only,
3665 tree conversion_path, tree access_path,
3666 int flags,
3667 struct z_candidate **candidates)
3669 tree ctype;
3670 tree non_static_args;
3672 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
3673 /* Delay creating the implicit this parameter until it is needed. */
3674 non_static_args = NULL_TREE;
3676 while (fns)
3678 tree fn;
3679 tree fn_args;
3681 fn = OVL_CURRENT (fns);
3682 /* Figure out which set of arguments to use. */
3683 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
3685 /* If this function is a non-static member, prepend the implicit
3686 object parameter. */
3687 if (!non_static_args)
3688 non_static_args = tree_cons (NULL_TREE,
3689 build_this (TREE_VALUE (args)),
3690 TREE_CHAIN (args));
3691 fn_args = non_static_args;
3693 else
3694 /* Otherwise, just use the list of arguments provided. */
3695 fn_args = args;
3697 if (TREE_CODE (fn) == TEMPLATE_DECL)
3698 add_template_candidate (candidates,
3700 ctype,
3701 explicit_targs,
3702 fn_args,
3703 NULL_TREE,
3704 access_path,
3705 conversion_path,
3706 flags,
3707 DEDUCE_CALL);
3708 else if (!template_only)
3709 add_function_candidate (candidates,
3711 ctype,
3712 fn_args,
3713 access_path,
3714 conversion_path,
3715 flags);
3716 fns = OVL_NEXT (fns);
3720 tree
3721 build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
3722 bool *overloaded_p)
3724 struct z_candidate *candidates = 0, *cand;
3725 tree arglist, fnname;
3726 tree args[3];
3727 tree result = NULL_TREE;
3728 bool result_valid_p = false;
3729 enum tree_code code2 = NOP_EXPR;
3730 conversion *conv;
3731 void *p;
3732 bool strict_p;
3733 bool any_viable_p;
3734 bool expl_eq_arg1 = false;
3736 if (error_operand_p (arg1)
3737 || error_operand_p (arg2)
3738 || error_operand_p (arg3))
3739 return error_mark_node;
3741 if (code == MODIFY_EXPR)
3743 code2 = TREE_CODE (arg3);
3744 arg3 = NULL_TREE;
3745 fnname = ansi_assopname (code2);
3747 else
3748 fnname = ansi_opname (code);
3750 arg1 = prep_operand (arg1);
3752 switch (code)
3754 case NEW_EXPR:
3755 case VEC_NEW_EXPR:
3756 case VEC_DELETE_EXPR:
3757 case DELETE_EXPR:
3758 /* Use build_op_new_call and build_op_delete_call instead. */
3759 gcc_unreachable ();
3761 case CALL_EXPR:
3762 return build_object_call (arg1, arg2);
3764 case TRUTH_ORIF_EXPR:
3765 case TRUTH_ANDIF_EXPR:
3766 case TRUTH_AND_EXPR:
3767 case TRUTH_OR_EXPR:
3768 if (COMPARISON_CLASS_P (arg1))
3769 expl_eq_arg1 = true;
3770 default:
3771 break;
3774 arg2 = prep_operand (arg2);
3775 arg3 = prep_operand (arg3);
3777 if (code == COND_EXPR)
3779 if (arg2 == NULL_TREE
3780 || TREE_CODE (TREE_TYPE (arg2)) == VOID_TYPE
3781 || TREE_CODE (TREE_TYPE (arg3)) == VOID_TYPE
3782 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))
3783 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3))))
3784 goto builtin;
3786 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
3787 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
3788 goto builtin;
3790 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
3791 arg2 = integer_zero_node;
3793 arglist = NULL_TREE;
3794 if (arg3)
3795 arglist = tree_cons (NULL_TREE, arg3, arglist);
3796 if (arg2)
3797 arglist = tree_cons (NULL_TREE, arg2, arglist);
3798 arglist = tree_cons (NULL_TREE, arg1, arglist);
3800 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3801 p = conversion_obstack_alloc (0);
3803 /* Add namespace-scope operators to the list of functions to
3804 consider. */
3805 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
3806 arglist, NULL_TREE, false, NULL_TREE, NULL_TREE,
3807 flags, &candidates);
3808 /* Add class-member operators to the candidate set. */
3809 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
3811 tree fns;
3813 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
3814 if (fns == error_mark_node)
3816 result = error_mark_node;
3817 goto user_defined_result_ready;
3819 if (fns)
3820 add_candidates (BASELINK_FUNCTIONS (fns), arglist,
3821 NULL_TREE, false,
3822 BASELINK_BINFO (fns),
3823 TYPE_BINFO (TREE_TYPE (arg1)),
3824 flags, &candidates);
3827 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3828 to know about two args; a builtin candidate will always have a first
3829 parameter of type bool. We'll handle that in
3830 build_builtin_candidate. */
3831 if (code == COND_EXPR)
3833 args[0] = arg2;
3834 args[1] = arg3;
3835 args[2] = arg1;
3837 else
3839 args[0] = arg1;
3840 args[1] = arg2;
3841 args[2] = NULL_TREE;
3844 add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
3846 switch (code)
3848 case COMPOUND_EXPR:
3849 case ADDR_EXPR:
3850 /* For these, the built-in candidates set is empty
3851 [over.match.oper]/3. We don't want non-strict matches
3852 because exact matches are always possible with built-in
3853 operators. The built-in candidate set for COMPONENT_REF
3854 would be empty too, but since there are no such built-in
3855 operators, we accept non-strict matches for them. */
3856 strict_p = true;
3857 break;
3859 default:
3860 strict_p = pedantic;
3861 break;
3864 candidates = splice_viable (candidates, strict_p, &any_viable_p);
3865 if (!any_viable_p)
3867 switch (code)
3869 case POSTINCREMENT_EXPR:
3870 case POSTDECREMENT_EXPR:
3871 /* Look for an `operator++ (int)'. If they didn't have
3872 one, then we fall back to the old way of doing things. */
3873 if (flags & LOOKUP_COMPLAIN)
3874 pedwarn ("no %<%D(int)%> declared for postfix %qs, "
3875 "trying prefix operator instead",
3876 fnname,
3877 operator_name_info[code].name);
3878 if (code == POSTINCREMENT_EXPR)
3879 code = PREINCREMENT_EXPR;
3880 else
3881 code = PREDECREMENT_EXPR;
3882 result = build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE,
3883 overloaded_p);
3884 break;
3886 /* The caller will deal with these. */
3887 case ADDR_EXPR:
3888 case COMPOUND_EXPR:
3889 case COMPONENT_REF:
3890 result = NULL_TREE;
3891 result_valid_p = true;
3892 break;
3894 default:
3895 if (flags & LOOKUP_COMPLAIN)
3897 op_error (code, code2, arg1, arg2, arg3, "no match");
3898 print_z_candidates (candidates);
3900 result = error_mark_node;
3901 break;
3904 else
3906 cand = tourney (candidates);
3907 if (cand == 0)
3909 if (flags & LOOKUP_COMPLAIN)
3911 op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
3912 print_z_candidates (candidates);
3914 result = error_mark_node;
3916 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
3918 if (overloaded_p)
3919 *overloaded_p = true;
3921 result = build_over_call (cand, LOOKUP_NORMAL);
3923 else
3925 /* Give any warnings we noticed during overload resolution. */
3926 if (cand->warnings)
3928 struct candidate_warning *w;
3929 for (w = cand->warnings; w; w = w->next)
3930 joust (cand, w->loser, 1);
3933 /* Check for comparison of different enum types. */
3934 switch (code)
3936 case GT_EXPR:
3937 case LT_EXPR:
3938 case GE_EXPR:
3939 case LE_EXPR:
3940 case EQ_EXPR:
3941 case NE_EXPR:
3942 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
3943 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
3944 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
3945 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
3947 warning (0, "comparison between %q#T and %q#T",
3948 TREE_TYPE (arg1), TREE_TYPE (arg2));
3950 break;
3951 default:
3952 break;
3955 /* We need to strip any leading REF_BIND so that bitfields
3956 don't cause errors. This should not remove any important
3957 conversions, because builtins don't apply to class
3958 objects directly. */
3959 conv = cand->convs[0];
3960 if (conv->kind == ck_ref_bind)
3961 conv = conv->u.next;
3962 arg1 = convert_like (conv, arg1);
3963 if (arg2)
3965 conv = cand->convs[1];
3966 if (conv->kind == ck_ref_bind)
3967 conv = conv->u.next;
3968 arg2 = convert_like (conv, arg2);
3970 if (arg3)
3972 conv = cand->convs[2];
3973 if (conv->kind == ck_ref_bind)
3974 conv = conv->u.next;
3975 arg3 = convert_like (conv, arg3);
3978 if (!expl_eq_arg1)
3980 warn_logical_operator (code, arg1, arg2);
3981 expl_eq_arg1 = true;
3986 user_defined_result_ready:
3988 /* Free all the conversions we allocated. */
3989 obstack_free (&conversion_obstack, p);
3991 if (result || result_valid_p)
3992 return result;
3994 builtin:
3995 switch (code)
3997 case MODIFY_EXPR:
3998 return build_modify_expr (arg1, code2, arg2);
4000 case INDIRECT_REF:
4001 return build_indirect_ref (arg1, "unary *");
4003 case TRUTH_ANDIF_EXPR:
4004 case TRUTH_ORIF_EXPR:
4005 case TRUTH_AND_EXPR:
4006 case TRUTH_OR_EXPR:
4007 if (!expl_eq_arg1)
4008 warn_logical_operator (code, arg1, arg2);
4009 case PLUS_EXPR:
4010 case MINUS_EXPR:
4011 case MULT_EXPR:
4012 case TRUNC_DIV_EXPR:
4013 case GT_EXPR:
4014 case LT_EXPR:
4015 case GE_EXPR:
4016 case LE_EXPR:
4017 case EQ_EXPR:
4018 case NE_EXPR:
4019 case MAX_EXPR:
4020 case MIN_EXPR:
4021 case LSHIFT_EXPR:
4022 case RSHIFT_EXPR:
4023 case TRUNC_MOD_EXPR:
4024 case BIT_AND_EXPR:
4025 case BIT_IOR_EXPR:
4026 case BIT_XOR_EXPR:
4027 return cp_build_binary_op (code, arg1, arg2);
4029 case UNARY_PLUS_EXPR:
4030 case NEGATE_EXPR:
4031 case BIT_NOT_EXPR:
4032 case TRUTH_NOT_EXPR:
4033 case PREINCREMENT_EXPR:
4034 case POSTINCREMENT_EXPR:
4035 case PREDECREMENT_EXPR:
4036 case POSTDECREMENT_EXPR:
4037 case REALPART_EXPR:
4038 case IMAGPART_EXPR:
4039 return build_unary_op (code, arg1, candidates != 0);
4041 case ARRAY_REF:
4042 return build_array_ref (arg1, arg2);
4044 case COND_EXPR:
4045 return build_conditional_expr (arg1, arg2, arg3);
4047 case MEMBER_REF:
4048 return build_m_component_ref (build_indirect_ref (arg1, NULL), arg2);
4050 /* The caller will deal with these. */
4051 case ADDR_EXPR:
4052 case COMPONENT_REF:
4053 case COMPOUND_EXPR:
4054 return NULL_TREE;
4056 default:
4057 gcc_unreachable ();
4059 return NULL_TREE;
4062 /* Build a call to operator delete. This has to be handled very specially,
4063 because the restrictions on what signatures match are different from all
4064 other call instances. For a normal delete, only a delete taking (void *)
4065 or (void *, size_t) is accepted. For a placement delete, only an exact
4066 match with the placement new is accepted.
4068 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
4069 ADDR is the pointer to be deleted.
4070 SIZE is the size of the memory block to be deleted.
4071 GLOBAL_P is true if the delete-expression should not consider
4072 class-specific delete operators.
4073 PLACEMENT is the corresponding placement new call, or NULL_TREE.
4075 If this call to "operator delete" is being generated as part to
4076 deallocate memory allocated via a new-expression (as per [expr.new]
4077 which requires that if the initialization throws an exception then
4078 we call a deallocation function), then ALLOC_FN is the allocation
4079 function. */
4081 tree
4082 build_op_delete_call (enum tree_code code, tree addr, tree size,
4083 bool global_p, tree placement,
4084 tree alloc_fn)
4086 tree fn = NULL_TREE;
4087 tree fns, fnname, argtypes, type;
4088 int pass;
4090 if (addr == error_mark_node)
4091 return error_mark_node;
4093 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
4095 fnname = ansi_opname (code);
4097 if (CLASS_TYPE_P (type)
4098 && COMPLETE_TYPE_P (complete_type (type))
4099 && !global_p)
4100 /* In [class.free]
4102 If the result of the lookup is ambiguous or inaccessible, or if
4103 the lookup selects a placement deallocation function, the
4104 program is ill-formed.
4106 Therefore, we ask lookup_fnfields to complain about ambiguity. */
4108 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
4109 if (fns == error_mark_node)
4110 return error_mark_node;
4112 else
4113 fns = NULL_TREE;
4115 if (fns == NULL_TREE)
4116 fns = lookup_name_nonclass (fnname);
4118 /* Strip const and volatile from addr. */
4119 addr = cp_convert (ptr_type_node, addr);
4121 if (placement)
4123 /* Get the parameter types for the allocation function that is
4124 being called. */
4125 gcc_assert (alloc_fn != NULL_TREE);
4126 argtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
4128 else
4130 /* First try it without the size argument. */
4131 argtypes = void_list_node;
4134 /* We make two tries at finding a matching `operator delete'. On
4135 the first pass, we look for a one-operator (or placement)
4136 operator delete. If we're not doing placement delete, then on
4137 the second pass we look for a two-argument delete. */
4138 for (pass = 0; pass < (placement ? 1 : 2); ++pass)
4140 /* Go through the `operator delete' functions looking for one
4141 with a matching type. */
4142 for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
4144 fn = OVL_NEXT (fn))
4146 tree t;
4148 /* The first argument must be "void *". */
4149 t = TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn)));
4150 if (!same_type_p (TREE_VALUE (t), ptr_type_node))
4151 continue;
4152 t = TREE_CHAIN (t);
4153 /* On the first pass, check the rest of the arguments. */
4154 if (pass == 0)
4156 tree a = argtypes;
4157 while (a && t)
4159 if (!same_type_p (TREE_VALUE (a), TREE_VALUE (t)))
4160 break;
4161 a = TREE_CHAIN (a);
4162 t = TREE_CHAIN (t);
4164 if (!a && !t)
4165 break;
4167 /* On the second pass, look for a function with exactly two
4168 arguments: "void *" and "size_t". */
4169 else if (pass == 1
4170 /* For "operator delete(void *, ...)" there will be
4171 no second argument, but we will not get an exact
4172 match above. */
4173 && t
4174 && same_type_p (TREE_VALUE (t), size_type_node)
4175 && TREE_CHAIN (t) == void_list_node)
4176 break;
4179 /* If we found a match, we're done. */
4180 if (fn)
4181 break;
4184 /* If we have a matching function, call it. */
4185 if (fn)
4187 /* Make sure we have the actual function, and not an
4188 OVERLOAD. */
4189 fn = OVL_CURRENT (fn);
4191 /* If the FN is a member function, make sure that it is
4192 accessible. */
4193 if (DECL_CLASS_SCOPE_P (fn))
4194 perform_or_defer_access_check (TYPE_BINFO (type), fn, fn);
4196 if (placement)
4198 /* The placement args might not be suitable for overload
4199 resolution at this point, so build the call directly. */
4200 int nargs = call_expr_nargs (placement);
4201 tree *argarray = (tree *) alloca (nargs * sizeof (tree));
4202 int i;
4203 argarray[0] = addr;
4204 for (i = 1; i < nargs; i++)
4205 argarray[i] = CALL_EXPR_ARG (placement, i);
4206 mark_used (fn);
4207 return build_cxx_call (fn, nargs, argarray);
4209 else
4211 tree args;
4212 if (pass == 0)
4213 args = tree_cons (NULL_TREE, addr, NULL_TREE);
4214 else
4215 args = tree_cons (NULL_TREE, addr,
4216 build_tree_list (NULL_TREE, size));
4217 return build_function_call (fn, args);
4221 /* [expr.new]
4223 If no unambiguous matching deallocation function can be found,
4224 propagating the exception does not cause the object's memory to
4225 be freed. */
4226 if (alloc_fn)
4228 if (!placement)
4229 warning (0, "no corresponding deallocation function for `%D'",
4230 alloc_fn);
4231 return NULL_TREE;
4234 error ("no suitable %<operator %s%> for %qT",
4235 operator_name_info[(int)code].name, type);
4236 return error_mark_node;
4239 /* If the current scope isn't allowed to access DECL along
4240 BASETYPE_PATH, give an error. The most derived class in
4241 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
4242 the declaration to use in the error diagnostic. */
4244 bool
4245 enforce_access (tree basetype_path, tree decl, tree diag_decl)
4247 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
4249 if (!accessible_p (basetype_path, decl, true))
4251 if (TREE_PRIVATE (decl))
4252 error ("%q+#D is private", diag_decl);
4253 else if (TREE_PROTECTED (decl))
4254 error ("%q+#D is protected", diag_decl);
4255 else
4256 error ("%q+#D is inaccessible", diag_decl);
4257 error ("within this context");
4258 return false;
4261 return true;
4264 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
4265 bitwise or of LOOKUP_* values. If any errors are warnings are
4266 generated, set *DIAGNOSTIC_FN to "error" or "warning",
4267 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
4268 to NULL. */
4270 static tree
4271 build_temp (tree expr, tree type, int flags,
4272 diagnostic_fn_t *diagnostic_fn)
4274 int savew, savee;
4276 savew = warningcount, savee = errorcount;
4277 expr = build_special_member_call (NULL_TREE,
4278 complete_ctor_identifier,
4279 build_tree_list (NULL_TREE, expr),
4280 type, flags);
4281 if (warningcount > savew)
4282 *diagnostic_fn = warning0;
4283 else if (errorcount > savee)
4284 *diagnostic_fn = error;
4285 else
4286 *diagnostic_fn = NULL;
4287 return expr;
4290 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
4291 EXPR is implicitly converted to type TOTYPE.
4292 FN and ARGNUM are used for diagnostics. */
4294 static void
4295 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
4297 tree t = non_reference (totype);
4299 /* Issue warnings about peculiar, but valid, uses of NULL. */
4300 if (expr == null_node && TREE_CODE (t) != BOOLEAN_TYPE && ARITHMETIC_TYPE_P (t))
4302 if (fn)
4303 warning (OPT_Wconversion, "passing NULL to non-pointer argument %P of %qD",
4304 argnum, fn);
4305 else
4306 warning (OPT_Wconversion, "converting to non-pointer type %qT from NULL", t);
4309 /* Issue warnings if "false" is converted to a NULL pointer */
4310 else if (expr == boolean_false_node && fn && POINTER_TYPE_P (t))
4311 warning (OPT_Wconversion,
4312 "converting %<false%> to pointer type for argument %P of %qD",
4313 argnum, fn);
4316 /* Perform the conversions in CONVS on the expression EXPR. FN and
4317 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
4318 indicates the `this' argument of a method. INNER is nonzero when
4319 being called to continue a conversion chain. It is negative when a
4320 reference binding will be applied, positive otherwise. If
4321 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
4322 conversions will be emitted if appropriate. If C_CAST_P is true,
4323 this conversion is coming from a C-style cast; in that case,
4324 conversions to inaccessible bases are permitted. */
4326 static tree
4327 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
4328 int inner, bool issue_conversion_warnings,
4329 bool c_cast_p)
4331 tree totype = convs->type;
4332 diagnostic_fn_t diagnostic_fn;
4334 if (convs->bad_p
4335 && convs->kind != ck_user
4336 && convs->kind != ck_ambig
4337 && convs->kind != ck_ref_bind)
4339 conversion *t = convs;
4340 for (; t; t = convs->u.next)
4342 if (t->kind == ck_user || !t->bad_p)
4344 expr = convert_like_real (t, expr, fn, argnum, 1,
4345 /*issue_conversion_warnings=*/false,
4346 /*c_cast_p=*/false);
4347 break;
4349 else if (t->kind == ck_ambig)
4350 return convert_like_real (t, expr, fn, argnum, 1,
4351 /*issue_conversion_warnings=*/false,
4352 /*c_cast_p=*/false);
4353 else if (t->kind == ck_identity)
4354 break;
4356 pedwarn ("invalid conversion from %qT to %qT", TREE_TYPE (expr), totype);
4357 if (fn)
4358 pedwarn (" initializing argument %P of %qD", argnum, fn);
4359 return cp_convert (totype, expr);
4362 if (issue_conversion_warnings)
4363 conversion_null_warnings (totype, expr, fn, argnum);
4365 switch (convs->kind)
4367 case ck_user:
4369 struct z_candidate *cand = convs->cand;
4370 tree convfn = cand->fn;
4372 expr = build_over_call (cand, LOOKUP_NORMAL);
4374 /* If this is a constructor or a function returning an aggr type,
4375 we need to build up a TARGET_EXPR. */
4376 if (DECL_CONSTRUCTOR_P (convfn))
4377 expr = build_cplus_new (totype, expr);
4379 /* The result of the call is then used to direct-initialize the object
4380 that is the destination of the copy-initialization. [dcl.init]
4382 Note that this step is not reflected in the conversion sequence;
4383 it affects the semantics when we actually perform the
4384 conversion, but is not considered during overload resolution.
4386 If the target is a class, that means call a ctor. */
4387 if (IS_AGGR_TYPE (totype)
4388 && (inner >= 0 || !lvalue_p (expr)))
4390 expr = (build_temp
4391 (expr, totype,
4392 /* Core issue 84, now a DR, says that we don't
4393 allow UDCs for these args (which deliberately
4394 breaks copy-init of an auto_ptr<Base> from an
4395 auto_ptr<Derived>). */
4396 LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION,
4397 &diagnostic_fn));
4399 if (diagnostic_fn)
4401 if (fn)
4402 diagnostic_fn
4403 (" initializing argument %P of %qD from result of %qD",
4404 argnum, fn, convfn);
4405 else
4406 diagnostic_fn
4407 (" initializing temporary from result of %qD", convfn);
4409 expr = build_cplus_new (totype, expr);
4411 return expr;
4413 case ck_identity:
4414 if (type_unknown_p (expr))
4415 expr = instantiate_type (totype, expr, tf_warning_or_error);
4416 /* Convert a constant to its underlying value, unless we are
4417 about to bind it to a reference, in which case we need to
4418 leave it as an lvalue. */
4419 if (inner >= 0)
4420 expr = decl_constant_value (expr);
4421 return expr;
4422 case ck_ambig:
4423 /* Call build_user_type_conversion again for the error. */
4424 return build_user_type_conversion
4425 (totype, convs->u.expr, LOOKUP_NORMAL);
4427 default:
4428 break;
4431 expr = convert_like_real (convs->u.next, expr, fn, argnum,
4432 convs->kind == ck_ref_bind ? -1 : 1,
4433 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
4434 c_cast_p);
4435 if (expr == error_mark_node)
4436 return error_mark_node;
4438 switch (convs->kind)
4440 case ck_rvalue:
4441 expr = convert_bitfield_to_declared_type (expr);
4442 if (! IS_AGGR_TYPE (totype))
4443 return expr;
4444 /* Else fall through. */
4445 case ck_base:
4446 if (convs->kind == ck_base && !convs->need_temporary_p)
4448 /* We are going to bind a reference directly to a base-class
4449 subobject of EXPR. */
4450 /* Build an expression for `*((base*) &expr)'. */
4451 expr = build_unary_op (ADDR_EXPR, expr, 0);
4452 expr = convert_to_base (expr, build_pointer_type (totype),
4453 !c_cast_p, /*nonnull=*/true);
4454 expr = build_indirect_ref (expr, "implicit conversion");
4455 return expr;
4458 /* Copy-initialization where the cv-unqualified version of the source
4459 type is the same class as, or a derived class of, the class of the
4460 destination [is treated as direct-initialization]. [dcl.init] */
4461 expr = build_temp (expr, totype, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING,
4462 &diagnostic_fn);
4463 if (diagnostic_fn && fn)
4464 diagnostic_fn (" initializing argument %P of %qD", argnum, fn);
4465 return build_cplus_new (totype, expr);
4467 case ck_ref_bind:
4469 tree ref_type = totype;
4471 /* If necessary, create a temporary.
4473 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
4474 that need temporaries, even when their types are reference
4475 compatible with the type of reference being bound, so the
4476 upcoming call to build_unary_op (ADDR_EXPR, expr, ...)
4477 doesn't fail. */
4478 if (convs->need_temporary_p
4479 || TREE_CODE (expr) == CONSTRUCTOR
4480 || TREE_CODE (expr) == VA_ARG_EXPR)
4482 tree type = convs->u.next->type;
4483 cp_lvalue_kind lvalue = real_lvalue_p (expr);
4485 if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type))
4486 && !TYPE_REF_IS_RVALUE (ref_type))
4488 /* If the reference is volatile or non-const, we
4489 cannot create a temporary. */
4490 if (lvalue & clk_bitfield)
4491 error ("cannot bind bitfield %qE to %qT",
4492 expr, ref_type);
4493 else if (lvalue & clk_packed)
4494 error ("cannot bind packed field %qE to %qT",
4495 expr, ref_type);
4496 else
4497 error ("cannot bind rvalue %qE to %qT", expr, ref_type);
4498 return error_mark_node;
4500 /* If the source is a packed field, and we must use a copy
4501 constructor, then building the target expr will require
4502 binding the field to the reference parameter to the
4503 copy constructor, and we'll end up with an infinite
4504 loop. If we can use a bitwise copy, then we'll be
4505 OK. */
4506 if ((lvalue & clk_packed)
4507 && CLASS_TYPE_P (type)
4508 && !TYPE_HAS_TRIVIAL_INIT_REF (type))
4510 error ("cannot bind packed field %qE to %qT",
4511 expr, ref_type);
4512 return error_mark_node;
4514 expr = build_target_expr_with_type (expr, type);
4517 /* Take the address of the thing to which we will bind the
4518 reference. */
4519 expr = build_unary_op (ADDR_EXPR, expr, 1);
4520 if (expr == error_mark_node)
4521 return error_mark_node;
4523 /* Convert it to a pointer to the type referred to by the
4524 reference. This will adjust the pointer if a derived to
4525 base conversion is being performed. */
4526 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
4527 expr);
4528 /* Convert the pointer to the desired reference type. */
4529 return build_nop (ref_type, expr);
4532 case ck_lvalue:
4533 return decay_conversion (expr);
4535 case ck_qual:
4536 /* Warn about deprecated conversion if appropriate. */
4537 string_conv_p (totype, expr, 1);
4538 break;
4540 case ck_ptr:
4541 if (convs->base_p)
4542 expr = convert_to_base (expr, totype, !c_cast_p,
4543 /*nonnull=*/false);
4544 return build_nop (totype, expr);
4546 case ck_pmem:
4547 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
4548 c_cast_p);
4550 default:
4551 break;
4554 if (issue_conversion_warnings)
4555 expr = convert_and_check (totype, expr);
4556 else
4557 expr = convert (totype, expr);
4559 return expr;
4562 /* Build a call to __builtin_trap. */
4564 static tree
4565 call_builtin_trap (void)
4567 tree fn = implicit_built_in_decls[BUILT_IN_TRAP];
4569 gcc_assert (fn != NULL);
4570 fn = build_call_n (fn, 0);
4571 return fn;
4574 /* ARG is being passed to a varargs function. Perform any conversions
4575 required. Return the converted value. */
4577 tree
4578 convert_arg_to_ellipsis (tree arg)
4580 /* [expr.call]
4582 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4583 standard conversions are performed. */
4584 arg = decay_conversion (arg);
4585 /* [expr.call]
4587 If the argument has integral or enumeration type that is subject
4588 to the integral promotions (_conv.prom_), or a floating point
4589 type that is subject to the floating point promotion
4590 (_conv.fpprom_), the value of the argument is converted to the
4591 promoted type before the call. */
4592 if (TREE_CODE (TREE_TYPE (arg)) == REAL_TYPE
4593 && (TYPE_PRECISION (TREE_TYPE (arg))
4594 < TYPE_PRECISION (double_type_node)))
4595 arg = convert_to_real (double_type_node, arg);
4596 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg)))
4597 arg = perform_integral_promotions (arg);
4599 arg = require_complete_type (arg);
4601 if (arg != error_mark_node
4602 && !pod_type_p (TREE_TYPE (arg)))
4604 /* Undefined behavior [expr.call] 5.2.2/7. We used to just warn
4605 here and do a bitwise copy, but now cp_expr_size will abort if we
4606 try to do that.
4607 If the call appears in the context of a sizeof expression,
4608 there is no need to emit a warning, since the expression won't be
4609 evaluated. We keep the builtin_trap just as a safety check. */
4610 if (!skip_evaluation)
4611 warning (0, "cannot pass objects of non-POD type %q#T through %<...%>; "
4612 "call will abort at runtime", TREE_TYPE (arg));
4613 arg = call_builtin_trap ();
4614 arg = build2 (COMPOUND_EXPR, integer_type_node, arg,
4615 integer_zero_node);
4618 return arg;
4621 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4623 tree
4624 build_x_va_arg (tree expr, tree type)
4626 if (processing_template_decl)
4627 return build_min (VA_ARG_EXPR, type, expr);
4629 type = complete_type_or_else (type, NULL_TREE);
4631 if (expr == error_mark_node || !type)
4632 return error_mark_node;
4634 if (! pod_type_p (type))
4636 /* Remove reference types so we don't ICE later on. */
4637 tree type1 = non_reference (type);
4638 /* Undefined behavior [expr.call] 5.2.2/7. */
4639 warning (0, "cannot receive objects of non-POD type %q#T through %<...%>; "
4640 "call will abort at runtime", type);
4641 expr = convert (build_pointer_type (type1), null_node);
4642 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr),
4643 call_builtin_trap (), expr);
4644 expr = build_indirect_ref (expr, NULL);
4645 return expr;
4648 return build_va_arg (expr, type);
4651 /* TYPE has been given to va_arg. Apply the default conversions which
4652 would have happened when passed via ellipsis. Return the promoted
4653 type, or the passed type if there is no change. */
4655 tree
4656 cxx_type_promotes_to (tree type)
4658 tree promote;
4660 /* Perform the array-to-pointer and function-to-pointer
4661 conversions. */
4662 type = type_decays_to (type);
4664 promote = type_promotes_to (type);
4665 if (same_type_p (type, promote))
4666 promote = type;
4668 return promote;
4671 /* ARG is a default argument expression being passed to a parameter of
4672 the indicated TYPE, which is a parameter to FN. Do any required
4673 conversions. Return the converted value. */
4675 static GTY(()) VEC(tree,gc) *default_arg_context;
4677 tree
4678 convert_default_arg (tree type, tree arg, tree fn, int parmnum)
4680 int i;
4681 tree t;
4683 /* If the ARG is an unparsed default argument expression, the
4684 conversion cannot be performed. */
4685 if (TREE_CODE (arg) == DEFAULT_ARG)
4687 error ("the default argument for parameter %d of %qD has "
4688 "not yet been parsed",
4689 parmnum, fn);
4690 return error_mark_node;
4693 /* Detect recursion. */
4694 for (i = 0; VEC_iterate (tree, default_arg_context, i, t); ++i)
4695 if (t == fn)
4697 error ("recursive evaluation of default argument for %q#D", fn);
4698 return error_mark_node;
4700 VEC_safe_push (tree, gc, default_arg_context, fn);
4702 if (fn && DECL_TEMPLATE_INFO (fn))
4703 arg = tsubst_default_argument (fn, type, arg);
4705 arg = break_out_target_exprs (arg);
4707 if (TREE_CODE (arg) == CONSTRUCTOR)
4709 arg = digest_init (type, arg);
4710 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4711 "default argument", fn, parmnum);
4713 else
4715 /* We must make a copy of ARG, in case subsequent processing
4716 alters any part of it. For example, during gimplification a
4717 cast of the form (T) &X::f (where "f" is a member function)
4718 will lead to replacing the PTRMEM_CST for &X::f with a
4719 VAR_DECL. We can avoid the copy for constants, since they
4720 are never modified in place. */
4721 if (!CONSTANT_CLASS_P (arg))
4722 arg = unshare_expr (arg);
4723 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4724 "default argument", fn, parmnum);
4725 arg = convert_for_arg_passing (type, arg);
4728 VEC_pop (tree, default_arg_context);
4730 return arg;
4733 /* Returns the type which will really be used for passing an argument of
4734 type TYPE. */
4736 tree
4737 type_passed_as (tree type)
4739 /* Pass classes with copy ctors by invisible reference. */
4740 if (TREE_ADDRESSABLE (type))
4742 type = build_reference_type (type);
4743 /* There are no other pointers to this temporary. */
4744 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
4746 else if (targetm.calls.promote_prototypes (type)
4747 && INTEGRAL_TYPE_P (type)
4748 && COMPLETE_TYPE_P (type)
4749 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4750 TYPE_SIZE (integer_type_node)))
4751 type = integer_type_node;
4753 return type;
4756 /* Actually perform the appropriate conversion. */
4758 tree
4759 convert_for_arg_passing (tree type, tree val)
4761 tree bitfield_type;
4763 /* If VAL is a bitfield, then -- since it has already been converted
4764 to TYPE -- it cannot have a precision greater than TYPE.
4766 If it has a smaller precision, we must widen it here. For
4767 example, passing "int f:3;" to a function expecting an "int" will
4768 not result in any conversion before this point.
4770 If the precision is the same we must not risk widening. For
4771 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
4772 often have type "int", even though the C++ type for the field is
4773 "long long". If the value is being passed to a function
4774 expecting an "int", then no conversions will be required. But,
4775 if we call convert_bitfield_to_declared_type, the bitfield will
4776 be converted to "long long". */
4777 bitfield_type = is_bitfield_expr_with_lowered_type (val);
4778 if (bitfield_type
4779 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
4780 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
4782 if (val == error_mark_node)
4784 /* Pass classes with copy ctors by invisible reference. */
4785 else if (TREE_ADDRESSABLE (type))
4786 val = build1 (ADDR_EXPR, build_reference_type (type), val);
4787 else if (targetm.calls.promote_prototypes (type)
4788 && INTEGRAL_TYPE_P (type)
4789 && COMPLETE_TYPE_P (type)
4790 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4791 TYPE_SIZE (integer_type_node)))
4792 val = perform_integral_promotions (val);
4793 if (warn_missing_format_attribute)
4795 tree rhstype = TREE_TYPE (val);
4796 const enum tree_code coder = TREE_CODE (rhstype);
4797 const enum tree_code codel = TREE_CODE (type);
4798 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
4799 && coder == codel
4800 && check_missing_format_attribute (type, rhstype))
4801 warning (OPT_Wmissing_format_attribute,
4802 "argument of function call might be a candidate for a format attribute");
4804 return val;
4807 /* Returns true iff FN is a function with magic varargs, i.e. ones for
4808 which no conversions at all should be done. This is true for some
4809 builtins which don't act like normal functions. */
4811 static bool
4812 magic_varargs_p (tree fn)
4814 if (DECL_BUILT_IN (fn))
4815 switch (DECL_FUNCTION_CODE (fn))
4817 case BUILT_IN_CLASSIFY_TYPE:
4818 case BUILT_IN_CONSTANT_P:
4819 case BUILT_IN_NEXT_ARG:
4820 case BUILT_IN_STDARG_START:
4821 case BUILT_IN_VA_START:
4822 return true;
4824 default:;
4825 return lookup_attribute ("type generic",
4826 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
4829 return false;
4832 /* Subroutine of the various build_*_call functions. Overload resolution
4833 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4834 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4835 bitmask of various LOOKUP_* flags which apply to the call itself. */
4837 static tree
4838 build_over_call (struct z_candidate *cand, int flags)
4840 tree fn = cand->fn;
4841 tree args = cand->args;
4842 conversion **convs = cand->convs;
4843 conversion *conv;
4844 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
4845 int parmlen;
4846 tree arg, val;
4847 int i = 0;
4848 int j = 0;
4849 int is_method = 0;
4850 int nargs;
4851 tree *argarray;
4853 /* In a template, there is no need to perform all of the work that
4854 is normally done. We are only interested in the type of the call
4855 expression, i.e., the return type of the function. Any semantic
4856 errors will be deferred until the template is instantiated. */
4857 if (processing_template_decl)
4859 tree expr;
4860 tree return_type;
4861 return_type = TREE_TYPE (TREE_TYPE (fn));
4862 expr = build_call_list (return_type, fn, args);
4863 if (TREE_THIS_VOLATILE (fn) && cfun)
4864 current_function_returns_abnormally = 1;
4865 if (!VOID_TYPE_P (return_type))
4866 require_complete_type (return_type);
4867 return convert_from_reference (expr);
4870 /* Give any warnings we noticed during overload resolution. */
4871 if (cand->warnings)
4873 struct candidate_warning *w;
4874 for (w = cand->warnings; w; w = w->next)
4875 joust (cand, w->loser, 1);
4878 if (DECL_FUNCTION_MEMBER_P (fn))
4880 /* If FN is a template function, two cases must be considered.
4881 For example:
4883 struct A {
4884 protected:
4885 template <class T> void f();
4887 template <class T> struct B {
4888 protected:
4889 void g();
4891 struct C : A, B<int> {
4892 using A::f; // #1
4893 using B<int>::g; // #2
4896 In case #1 where `A::f' is a member template, DECL_ACCESS is
4897 recorded in the primary template but not in its specialization.
4898 We check access of FN using its primary template.
4900 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
4901 because it is a member of class template B, DECL_ACCESS is
4902 recorded in the specialization `B<int>::g'. We cannot use its
4903 primary template because `B<T>::g' and `B<int>::g' may have
4904 different access. */
4905 if (DECL_TEMPLATE_INFO (fn)
4906 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
4907 perform_or_defer_access_check (cand->access_path,
4908 DECL_TI_TEMPLATE (fn), fn);
4909 else
4910 perform_or_defer_access_check (cand->access_path, fn, fn);
4913 if (args && TREE_CODE (args) != TREE_LIST)
4914 args = build_tree_list (NULL_TREE, args);
4915 arg = args;
4917 /* Find maximum size of vector to hold converted arguments. */
4918 parmlen = list_length (parm);
4919 nargs = list_length (args);
4920 if (parmlen > nargs)
4921 nargs = parmlen;
4922 argarray = (tree *) alloca (nargs * sizeof (tree));
4924 /* The implicit parameters to a constructor are not considered by overload
4925 resolution, and must be of the proper type. */
4926 if (DECL_CONSTRUCTOR_P (fn))
4928 argarray[j++] = TREE_VALUE (arg);
4929 arg = TREE_CHAIN (arg);
4930 parm = TREE_CHAIN (parm);
4931 /* We should never try to call the abstract constructor. */
4932 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
4934 if (DECL_HAS_VTT_PARM_P (fn))
4936 argarray[j++] = TREE_VALUE (arg);
4937 arg = TREE_CHAIN (arg);
4938 parm = TREE_CHAIN (parm);
4941 /* Bypass access control for 'this' parameter. */
4942 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4944 tree parmtype = TREE_VALUE (parm);
4945 tree argtype = TREE_TYPE (TREE_VALUE (arg));
4946 tree converted_arg;
4947 tree base_binfo;
4949 if (convs[i]->bad_p)
4950 pedwarn ("passing %qT as %<this%> argument of %q#D discards qualifiers",
4951 TREE_TYPE (argtype), fn);
4953 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4954 X is called for an object that is not of type X, or of a type
4955 derived from X, the behavior is undefined.
4957 So we can assume that anything passed as 'this' is non-null, and
4958 optimize accordingly. */
4959 gcc_assert (TREE_CODE (parmtype) == POINTER_TYPE);
4960 /* Convert to the base in which the function was declared. */
4961 gcc_assert (cand->conversion_path != NULL_TREE);
4962 converted_arg = build_base_path (PLUS_EXPR,
4963 TREE_VALUE (arg),
4964 cand->conversion_path,
4966 /* Check that the base class is accessible. */
4967 if (!accessible_base_p (TREE_TYPE (argtype),
4968 BINFO_TYPE (cand->conversion_path), true))
4969 error ("%qT is not an accessible base of %qT",
4970 BINFO_TYPE (cand->conversion_path),
4971 TREE_TYPE (argtype));
4972 /* If fn was found by a using declaration, the conversion path
4973 will be to the derived class, not the base declaring fn. We
4974 must convert from derived to base. */
4975 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
4976 TREE_TYPE (parmtype), ba_unique, NULL);
4977 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
4978 base_binfo, 1);
4980 argarray[j++] = converted_arg;
4981 parm = TREE_CHAIN (parm);
4982 arg = TREE_CHAIN (arg);
4983 ++i;
4984 is_method = 1;
4987 for (; arg && parm;
4988 parm = TREE_CHAIN (parm), arg = TREE_CHAIN (arg), ++i)
4990 tree type = TREE_VALUE (parm);
4992 conv = convs[i];
4994 /* Don't make a copy here if build_call is going to. */
4995 if (conv->kind == ck_rvalue
4996 && !TREE_ADDRESSABLE (complete_type (type)))
4997 conv = conv->u.next;
4999 val = convert_like_with_context
5000 (conv, TREE_VALUE (arg), fn, i - is_method);
5002 val = convert_for_arg_passing (type, val);
5003 argarray[j++] = val;
5006 /* Default arguments */
5007 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
5008 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
5009 TREE_PURPOSE (parm),
5010 fn, i - is_method);
5011 /* Ellipsis */
5012 for (; arg; arg = TREE_CHAIN (arg))
5014 tree a = TREE_VALUE (arg);
5015 if (magic_varargs_p (fn))
5016 /* Do no conversions for magic varargs. */;
5017 else
5018 a = convert_arg_to_ellipsis (a);
5019 argarray[j++] = a;
5022 gcc_assert (j <= nargs);
5023 nargs = j;
5025 check_function_arguments (TYPE_ATTRIBUTES (TREE_TYPE (fn)),
5026 nargs, argarray, TYPE_ARG_TYPES (TREE_TYPE (fn)));
5028 /* Avoid actually calling copy constructors and copy assignment operators,
5029 if possible. */
5031 if (! flag_elide_constructors)
5032 /* Do things the hard way. */;
5033 else if (cand->num_convs == 1
5034 && (DECL_COPY_CONSTRUCTOR_P (fn)
5035 || DECL_MOVE_CONSTRUCTOR_P (fn)))
5037 tree targ;
5038 arg = argarray[num_artificial_parms_for (fn)];
5040 /* Pull out the real argument, disregarding const-correctness. */
5041 targ = arg;
5042 while (TREE_CODE (targ) == NOP_EXPR
5043 || TREE_CODE (targ) == NON_LVALUE_EXPR
5044 || TREE_CODE (targ) == CONVERT_EXPR)
5045 targ = TREE_OPERAND (targ, 0);
5046 if (TREE_CODE (targ) == ADDR_EXPR)
5048 targ = TREE_OPERAND (targ, 0);
5049 if (!same_type_ignoring_top_level_qualifiers_p
5050 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
5051 targ = NULL_TREE;
5053 else
5054 targ = NULL_TREE;
5056 if (targ)
5057 arg = targ;
5058 else
5059 arg = build_indirect_ref (arg, 0);
5061 /* [class.copy]: the copy constructor is implicitly defined even if
5062 the implementation elided its use. */
5063 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
5064 mark_used (fn);
5066 /* If we're creating a temp and we already have one, don't create a
5067 new one. If we're not creating a temp but we get one, use
5068 INIT_EXPR to collapse the temp into our target. Otherwise, if the
5069 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
5070 temp or an INIT_EXPR otherwise. */
5071 if (integer_zerop (TREE_VALUE (args)))
5073 if (TREE_CODE (arg) == TARGET_EXPR)
5074 return arg;
5075 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
5076 return build_target_expr_with_type (arg, DECL_CONTEXT (fn));
5078 else if (TREE_CODE (arg) == TARGET_EXPR
5079 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
5081 tree to = stabilize_reference
5082 (build_indirect_ref (TREE_VALUE (args), 0));
5084 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
5085 return val;
5088 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
5089 && copy_fn_p (fn)
5090 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
5092 tree to = stabilize_reference
5093 (build_indirect_ref (argarray[0], 0));
5094 tree type = TREE_TYPE (to);
5095 tree as_base = CLASSTYPE_AS_BASE (type);
5097 arg = argarray[1];
5098 if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
5100 arg = build_indirect_ref (arg, 0);
5101 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
5103 else
5105 /* We must only copy the non-tail padding parts.
5106 Use __builtin_memcpy for the bitwise copy. */
5108 tree arg0, arg1, arg2, t;
5110 arg2 = TYPE_SIZE_UNIT (as_base);
5111 arg1 = arg;
5112 arg0 = build_unary_op (ADDR_EXPR, to, 0);
5113 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
5114 t = build_call_n (t, 3, arg0, arg1, arg2);
5116 t = convert (TREE_TYPE (arg0), t);
5117 val = build_indirect_ref (t, 0);
5120 return val;
5123 mark_used (fn);
5125 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
5127 tree t;
5128 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
5129 DECL_CONTEXT (fn),
5130 ba_any, NULL);
5131 gcc_assert (binfo && binfo != error_mark_node);
5133 /* Warn about deprecated virtual functions now, since we're about
5134 to throw away the decl. */
5135 if (TREE_DEPRECATED (fn))
5136 warn_deprecated_use (fn);
5138 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1);
5139 if (TREE_SIDE_EFFECTS (argarray[0]))
5140 argarray[0] = save_expr (argarray[0]);
5141 t = build_pointer_type (TREE_TYPE (fn));
5142 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
5143 fn = build_java_interface_fn_ref (fn, argarray[0]);
5144 else
5145 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
5146 TREE_TYPE (fn) = t;
5148 else if (DECL_INLINE (fn))
5149 fn = inline_conversion (fn);
5150 else
5151 fn = build_addr_func (fn);
5153 return build_cxx_call (fn, nargs, argarray);
5156 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
5157 This function performs no overload resolution, conversion, or other
5158 high-level operations. */
5160 tree
5161 build_cxx_call (tree fn, int nargs, tree *argarray)
5163 tree fndecl;
5165 fn = build_call_a (fn, nargs, argarray);
5167 /* If this call might throw an exception, note that fact. */
5168 fndecl = get_callee_fndecl (fn);
5169 if ((!fndecl || !TREE_NOTHROW (fndecl))
5170 && at_function_scope_p ()
5171 && cfun)
5172 cp_function_chain->can_throw = 1;
5174 /* Some built-in function calls will be evaluated at compile-time in
5175 fold (). */
5176 fn = fold_if_not_in_template (fn);
5178 if (VOID_TYPE_P (TREE_TYPE (fn)))
5179 return fn;
5181 fn = require_complete_type (fn);
5182 if (fn == error_mark_node)
5183 return error_mark_node;
5185 if (IS_AGGR_TYPE (TREE_TYPE (fn)))
5186 fn = build_cplus_new (TREE_TYPE (fn), fn);
5187 return convert_from_reference (fn);
5190 static GTY(()) tree java_iface_lookup_fn;
5192 /* Make an expression which yields the address of the Java interface
5193 method FN. This is achieved by generating a call to libjava's
5194 _Jv_LookupInterfaceMethodIdx(). */
5196 static tree
5197 build_java_interface_fn_ref (tree fn, tree instance)
5199 tree lookup_fn, method, idx;
5200 tree klass_ref, iface, iface_ref;
5201 int i;
5203 if (!java_iface_lookup_fn)
5205 tree endlink = build_void_list_node ();
5206 tree t = tree_cons (NULL_TREE, ptr_type_node,
5207 tree_cons (NULL_TREE, ptr_type_node,
5208 tree_cons (NULL_TREE, java_int_type_node,
5209 endlink)));
5210 java_iface_lookup_fn
5211 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx",
5212 build_function_type (ptr_type_node, t),
5213 0, NOT_BUILT_IN, NULL, NULL_TREE);
5216 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
5217 This is the first entry in the vtable. */
5218 klass_ref = build_vtbl_ref (build_indirect_ref (instance, 0),
5219 integer_zero_node);
5221 /* Get the java.lang.Class pointer for the interface being called. */
5222 iface = DECL_CONTEXT (fn);
5223 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
5224 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
5225 || DECL_CONTEXT (iface_ref) != iface)
5227 error ("could not find class$ field in java interface type %qT",
5228 iface);
5229 return error_mark_node;
5231 iface_ref = build_address (iface_ref);
5232 iface_ref = convert (build_pointer_type (iface), iface_ref);
5234 /* Determine the itable index of FN. */
5235 i = 1;
5236 for (method = TYPE_METHODS (iface); method; method = TREE_CHAIN (method))
5238 if (!DECL_VIRTUAL_P (method))
5239 continue;
5240 if (fn == method)
5241 break;
5242 i++;
5244 idx = build_int_cst (NULL_TREE, i);
5246 lookup_fn = build1 (ADDR_EXPR,
5247 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
5248 java_iface_lookup_fn);
5249 return build_call_nary (ptr_type_node, lookup_fn,
5250 3, klass_ref, iface_ref, idx);
5253 /* Returns the value to use for the in-charge parameter when making a
5254 call to a function with the indicated NAME.
5256 FIXME:Can't we find a neater way to do this mapping? */
5258 tree
5259 in_charge_arg_for_name (tree name)
5261 if (name == base_ctor_identifier
5262 || name == base_dtor_identifier)
5263 return integer_zero_node;
5264 else if (name == complete_ctor_identifier)
5265 return integer_one_node;
5266 else if (name == complete_dtor_identifier)
5267 return integer_two_node;
5268 else if (name == deleting_dtor_identifier)
5269 return integer_three_node;
5271 /* This function should only be called with one of the names listed
5272 above. */
5273 gcc_unreachable ();
5274 return NULL_TREE;
5277 /* Build a call to a constructor, destructor, or an assignment
5278 operator for INSTANCE, an expression with class type. NAME
5279 indicates the special member function to call; ARGS are the
5280 arguments. BINFO indicates the base of INSTANCE that is to be
5281 passed as the `this' parameter to the member function called.
5283 FLAGS are the LOOKUP_* flags to use when processing the call.
5285 If NAME indicates a complete object constructor, INSTANCE may be
5286 NULL_TREE. In this case, the caller will call build_cplus_new to
5287 store the newly constructed object into a VAR_DECL. */
5289 tree
5290 build_special_member_call (tree instance, tree name, tree args,
5291 tree binfo, int flags)
5293 tree fns;
5294 /* The type of the subobject to be constructed or destroyed. */
5295 tree class_type;
5297 gcc_assert (name == complete_ctor_identifier
5298 || name == base_ctor_identifier
5299 || name == complete_dtor_identifier
5300 || name == base_dtor_identifier
5301 || name == deleting_dtor_identifier
5302 || name == ansi_assopname (NOP_EXPR));
5303 if (TYPE_P (binfo))
5305 /* Resolve the name. */
5306 if (!complete_type_or_else (binfo, NULL_TREE))
5307 return error_mark_node;
5309 binfo = TYPE_BINFO (binfo);
5312 gcc_assert (binfo != NULL_TREE);
5314 class_type = BINFO_TYPE (binfo);
5316 /* Handle the special case where INSTANCE is NULL_TREE. */
5317 if (name == complete_ctor_identifier && !instance)
5319 instance = build_int_cst (build_pointer_type (class_type), 0);
5320 instance = build1 (INDIRECT_REF, class_type, instance);
5322 else
5324 if (name == complete_dtor_identifier
5325 || name == base_dtor_identifier
5326 || name == deleting_dtor_identifier)
5327 gcc_assert (args == NULL_TREE);
5329 /* Convert to the base class, if necessary. */
5330 if (!same_type_ignoring_top_level_qualifiers_p
5331 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
5333 if (name != ansi_assopname (NOP_EXPR))
5334 /* For constructors and destructors, either the base is
5335 non-virtual, or it is virtual but we are doing the
5336 conversion from a constructor or destructor for the
5337 complete object. In either case, we can convert
5338 statically. */
5339 instance = convert_to_base_statically (instance, binfo);
5340 else
5341 /* However, for assignment operators, we must convert
5342 dynamically if the base is virtual. */
5343 instance = build_base_path (PLUS_EXPR, instance,
5344 binfo, /*nonnull=*/1);
5348 gcc_assert (instance != NULL_TREE);
5350 fns = lookup_fnfields (binfo, name, 1);
5352 /* When making a call to a constructor or destructor for a subobject
5353 that uses virtual base classes, pass down a pointer to a VTT for
5354 the subobject. */
5355 if ((name == base_ctor_identifier
5356 || name == base_dtor_identifier)
5357 && CLASSTYPE_VBASECLASSES (class_type))
5359 tree vtt;
5360 tree sub_vtt;
5362 /* If the current function is a complete object constructor
5363 or destructor, then we fetch the VTT directly.
5364 Otherwise, we look it up using the VTT we were given. */
5365 vtt = TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type));
5366 vtt = decay_conversion (vtt);
5367 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
5368 build2 (EQ_EXPR, boolean_type_node,
5369 current_in_charge_parm, integer_zero_node),
5370 current_vtt_parm,
5371 vtt);
5372 gcc_assert (BINFO_SUBVTT_INDEX (binfo));
5373 sub_vtt = build2 (POINTER_PLUS_EXPR, TREE_TYPE (vtt), vtt,
5374 BINFO_SUBVTT_INDEX (binfo));
5376 args = tree_cons (NULL_TREE, sub_vtt, args);
5379 return build_new_method_call (instance, fns, args,
5380 TYPE_BINFO (BINFO_TYPE (binfo)),
5381 flags, /*fn=*/NULL);
5384 /* Return the NAME, as a C string. The NAME indicates a function that
5385 is a member of TYPE. *FREE_P is set to true if the caller must
5386 free the memory returned.
5388 Rather than go through all of this, we should simply set the names
5389 of constructors and destructors appropriately, and dispense with
5390 ctor_identifier, dtor_identifier, etc. */
5392 static char *
5393 name_as_c_string (tree name, tree type, bool *free_p)
5395 char *pretty_name;
5397 /* Assume that we will not allocate memory. */
5398 *free_p = false;
5399 /* Constructors and destructors are special. */
5400 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
5402 pretty_name
5403 = CONST_CAST (char *, IDENTIFIER_POINTER (constructor_name (type)));
5404 /* For a destructor, add the '~'. */
5405 if (name == complete_dtor_identifier
5406 || name == base_dtor_identifier
5407 || name == deleting_dtor_identifier)
5409 pretty_name = concat ("~", pretty_name, NULL);
5410 /* Remember that we need to free the memory allocated. */
5411 *free_p = true;
5414 else if (IDENTIFIER_TYPENAME_P (name))
5416 pretty_name = concat ("operator ",
5417 type_as_string (TREE_TYPE (name),
5418 TFF_PLAIN_IDENTIFIER),
5419 NULL);
5420 /* Remember that we need to free the memory allocated. */
5421 *free_p = true;
5423 else
5424 pretty_name = CONST_CAST (char *, IDENTIFIER_POINTER (name));
5426 return pretty_name;
5429 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
5430 be set, upon return, to the function called. */
5432 tree
5433 build_new_method_call (tree instance, tree fns, tree args,
5434 tree conversion_path, int flags,
5435 tree *fn_p)
5437 struct z_candidate *candidates = 0, *cand;
5438 tree explicit_targs = NULL_TREE;
5439 tree basetype = NULL_TREE;
5440 tree access_binfo;
5441 tree optype;
5442 tree mem_args = NULL_TREE, instance_ptr;
5443 tree name;
5444 tree user_args;
5445 tree call;
5446 tree fn;
5447 tree class_type;
5448 int template_only = 0;
5449 bool any_viable_p;
5450 tree orig_instance;
5451 tree orig_fns;
5452 tree orig_args;
5453 void *p;
5455 gcc_assert (instance != NULL_TREE);
5457 /* We don't know what function we're going to call, yet. */
5458 if (fn_p)
5459 *fn_p = NULL_TREE;
5461 if (error_operand_p (instance)
5462 || error_operand_p (fns)
5463 || args == error_mark_node)
5464 return error_mark_node;
5466 if (!BASELINK_P (fns))
5468 error ("call to non-function %qD", fns);
5469 return error_mark_node;
5472 orig_instance = instance;
5473 orig_fns = fns;
5474 orig_args = args;
5476 /* Dismantle the baselink to collect all the information we need. */
5477 if (!conversion_path)
5478 conversion_path = BASELINK_BINFO (fns);
5479 access_binfo = BASELINK_ACCESS_BINFO (fns);
5480 optype = BASELINK_OPTYPE (fns);
5481 fns = BASELINK_FUNCTIONS (fns);
5482 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
5484 explicit_targs = TREE_OPERAND (fns, 1);
5485 fns = TREE_OPERAND (fns, 0);
5486 template_only = 1;
5488 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
5489 || TREE_CODE (fns) == TEMPLATE_DECL
5490 || TREE_CODE (fns) == OVERLOAD);
5491 fn = get_first_fn (fns);
5492 name = DECL_NAME (fn);
5494 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
5495 gcc_assert (CLASS_TYPE_P (basetype));
5497 if (processing_template_decl)
5499 instance = build_non_dependent_expr (instance);
5500 args = build_non_dependent_args (orig_args);
5503 /* The USER_ARGS are the arguments we will display to users if an
5504 error occurs. The USER_ARGS should not include any
5505 compiler-generated arguments. The "this" pointer hasn't been
5506 added yet. However, we must remove the VTT pointer if this is a
5507 call to a base-class constructor or destructor. */
5508 user_args = args;
5509 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
5511 /* Callers should explicitly indicate whether they want to construct
5512 the complete object or just the part without virtual bases. */
5513 gcc_assert (name != ctor_identifier);
5514 /* Similarly for destructors. */
5515 gcc_assert (name != dtor_identifier);
5516 /* Remove the VTT pointer, if present. */
5517 if ((name == base_ctor_identifier || name == base_dtor_identifier)
5518 && CLASSTYPE_VBASECLASSES (basetype))
5519 user_args = TREE_CHAIN (user_args);
5522 /* Process the argument list. */
5523 args = resolve_args (args);
5524 if (args == error_mark_node)
5525 return error_mark_node;
5527 instance_ptr = build_this (instance);
5529 /* It's OK to call destructors and constructors on cv-qualified objects.
5530 Therefore, convert the INSTANCE_PTR to the unqualified type, if
5531 necessary. */
5532 if (DECL_DESTRUCTOR_P (fn)
5533 || DECL_CONSTRUCTOR_P (fn))
5535 tree type = build_pointer_type (basetype);
5536 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
5537 instance_ptr = build_nop (type, instance_ptr);
5539 if (DECL_DESTRUCTOR_P (fn))
5540 name = complete_dtor_identifier;
5542 class_type = (conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE);
5543 mem_args = tree_cons (NULL_TREE, instance_ptr, args);
5545 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5546 p = conversion_obstack_alloc (0);
5548 for (fn = fns; fn; fn = OVL_NEXT (fn))
5550 tree t = OVL_CURRENT (fn);
5551 tree this_arglist;
5553 /* We can end up here for copy-init of same or base class. */
5554 if ((flags & LOOKUP_ONLYCONVERTING)
5555 && DECL_NONCONVERTING_P (t))
5556 continue;
5558 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
5559 this_arglist = mem_args;
5560 else
5561 this_arglist = args;
5563 if (TREE_CODE (t) == TEMPLATE_DECL)
5564 /* A member template. */
5565 add_template_candidate (&candidates, t,
5566 class_type,
5567 explicit_targs,
5568 this_arglist, optype,
5569 access_binfo,
5570 conversion_path,
5571 flags,
5572 DEDUCE_CALL);
5573 else if (! template_only)
5574 add_function_candidate (&candidates, t,
5575 class_type,
5576 this_arglist,
5577 access_binfo,
5578 conversion_path,
5579 flags);
5582 candidates = splice_viable (candidates, pedantic, &any_viable_p);
5583 if (!any_viable_p)
5585 if (!COMPLETE_TYPE_P (basetype))
5586 cxx_incomplete_type_error (instance_ptr, basetype);
5587 else
5589 char *pretty_name;
5590 bool free_p;
5592 pretty_name = name_as_c_string (name, basetype, &free_p);
5593 error ("no matching function for call to %<%T::%s(%A)%#V%>",
5594 basetype, pretty_name, user_args,
5595 TREE_TYPE (TREE_TYPE (instance_ptr)));
5596 if (free_p)
5597 free (pretty_name);
5599 print_z_candidates (candidates);
5600 call = error_mark_node;
5602 else
5604 cand = tourney (candidates);
5605 if (cand == 0)
5607 char *pretty_name;
5608 bool free_p;
5610 pretty_name = name_as_c_string (name, basetype, &free_p);
5611 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
5612 user_args);
5613 print_z_candidates (candidates);
5614 if (free_p)
5615 free (pretty_name);
5616 call = error_mark_node;
5618 else
5620 fn = cand->fn;
5622 if (!(flags & LOOKUP_NONVIRTUAL)
5623 && DECL_PURE_VIRTUAL_P (fn)
5624 && instance == current_class_ref
5625 && (DECL_CONSTRUCTOR_P (current_function_decl)
5626 || DECL_DESTRUCTOR_P (current_function_decl)))
5627 /* This is not an error, it is runtime undefined
5628 behavior. */
5629 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
5630 "abstract virtual %q#D called from constructor"
5631 : "abstract virtual %q#D called from destructor"),
5632 fn);
5634 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
5635 && is_dummy_object (instance_ptr))
5637 error ("cannot call member function %qD without object",
5638 fn);
5639 call = error_mark_node;
5641 else
5643 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
5644 && resolves_to_fixed_type_p (instance, 0))
5645 flags |= LOOKUP_NONVIRTUAL;
5646 /* Now we know what function is being called. */
5647 if (fn_p)
5648 *fn_p = fn;
5649 /* Build the actual CALL_EXPR. */
5650 call = build_over_call (cand, flags);
5651 /* In an expression of the form `a->f()' where `f' turns
5652 out to be a static member function, `a' is
5653 none-the-less evaluated. */
5654 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
5655 && !is_dummy_object (instance_ptr)
5656 && TREE_SIDE_EFFECTS (instance_ptr))
5657 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
5658 instance_ptr, call);
5659 else if (call != error_mark_node
5660 && DECL_DESTRUCTOR_P (cand->fn)
5661 && !VOID_TYPE_P (TREE_TYPE (call)))
5662 /* An explicit call of the form "x->~X()" has type
5663 "void". However, on platforms where destructors
5664 return "this" (i.e., those where
5665 targetm.cxx.cdtor_returns_this is true), such calls
5666 will appear to have a return value of pointer type
5667 to the low-level call machinery. We do not want to
5668 change the low-level machinery, since we want to be
5669 able to optimize "delete f()" on such platforms as
5670 "operator delete(~X(f()))" (rather than generating
5671 "t = f(), ~X(t), operator delete (t)"). */
5672 call = build_nop (void_type_node, call);
5677 if (processing_template_decl && call != error_mark_node)
5678 call = (build_min_non_dep_call_list
5679 (call,
5680 build_min_nt (COMPONENT_REF, orig_instance, orig_fns, NULL_TREE),
5681 orig_args));
5683 /* Free all the conversions we allocated. */
5684 obstack_free (&conversion_obstack, p);
5686 return call;
5689 /* Returns true iff standard conversion sequence ICS1 is a proper
5690 subsequence of ICS2. */
5692 static bool
5693 is_subseq (conversion *ics1, conversion *ics2)
5695 /* We can assume that a conversion of the same code
5696 between the same types indicates a subsequence since we only get
5697 here if the types we are converting from are the same. */
5699 while (ics1->kind == ck_rvalue
5700 || ics1->kind == ck_lvalue)
5701 ics1 = ics1->u.next;
5703 while (1)
5705 while (ics2->kind == ck_rvalue
5706 || ics2->kind == ck_lvalue)
5707 ics2 = ics2->u.next;
5709 if (ics2->kind == ck_user
5710 || ics2->kind == ck_ambig
5711 || ics2->kind == ck_identity)
5712 /* At this point, ICS1 cannot be a proper subsequence of
5713 ICS2. We can get a USER_CONV when we are comparing the
5714 second standard conversion sequence of two user conversion
5715 sequences. */
5716 return false;
5718 ics2 = ics2->u.next;
5720 if (ics2->kind == ics1->kind
5721 && same_type_p (ics2->type, ics1->type)
5722 && same_type_p (ics2->u.next->type,
5723 ics1->u.next->type))
5724 return true;
5728 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
5729 be any _TYPE nodes. */
5731 bool
5732 is_properly_derived_from (tree derived, tree base)
5734 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived))
5735 || !IS_AGGR_TYPE_CODE (TREE_CODE (base)))
5736 return false;
5738 /* We only allow proper derivation here. The DERIVED_FROM_P macro
5739 considers every class derived from itself. */
5740 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
5741 && DERIVED_FROM_P (base, derived));
5744 /* We build the ICS for an implicit object parameter as a pointer
5745 conversion sequence. However, such a sequence should be compared
5746 as if it were a reference conversion sequence. If ICS is the
5747 implicit conversion sequence for an implicit object parameter,
5748 modify it accordingly. */
5750 static void
5751 maybe_handle_implicit_object (conversion **ics)
5753 if ((*ics)->this_p)
5755 /* [over.match.funcs]
5757 For non-static member functions, the type of the
5758 implicit object parameter is "reference to cv X"
5759 where X is the class of which the function is a
5760 member and cv is the cv-qualification on the member
5761 function declaration. */
5762 conversion *t = *ics;
5763 tree reference_type;
5765 /* The `this' parameter is a pointer to a class type. Make the
5766 implicit conversion talk about a reference to that same class
5767 type. */
5768 reference_type = TREE_TYPE (t->type);
5769 reference_type = build_reference_type (reference_type);
5771 if (t->kind == ck_qual)
5772 t = t->u.next;
5773 if (t->kind == ck_ptr)
5774 t = t->u.next;
5775 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
5776 t = direct_reference_binding (reference_type, t);
5777 t->this_p = 1;
5778 t->rvaluedness_matches_p = 0;
5779 *ics = t;
5783 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
5784 and return the initial reference binding conversion. Otherwise,
5785 leave *ICS unchanged and return NULL. */
5787 static conversion *
5788 maybe_handle_ref_bind (conversion **ics)
5790 if ((*ics)->kind == ck_ref_bind)
5792 conversion *old_ics = *ics;
5793 *ics = old_ics->u.next;
5794 (*ics)->user_conv_p = old_ics->user_conv_p;
5795 (*ics)->bad_p = old_ics->bad_p;
5796 return old_ics;
5799 return NULL;
5802 /* Compare two implicit conversion sequences according to the rules set out in
5803 [over.ics.rank]. Return values:
5805 1: ics1 is better than ics2
5806 -1: ics2 is better than ics1
5807 0: ics1 and ics2 are indistinguishable */
5809 static int
5810 compare_ics (conversion *ics1, conversion *ics2)
5812 tree from_type1;
5813 tree from_type2;
5814 tree to_type1;
5815 tree to_type2;
5816 tree deref_from_type1 = NULL_TREE;
5817 tree deref_from_type2 = NULL_TREE;
5818 tree deref_to_type1 = NULL_TREE;
5819 tree deref_to_type2 = NULL_TREE;
5820 conversion_rank rank1, rank2;
5822 /* REF_BINDING is nonzero if the result of the conversion sequence
5823 is a reference type. In that case REF_CONV is the reference
5824 binding conversion. */
5825 conversion *ref_conv1;
5826 conversion *ref_conv2;
5828 /* Handle implicit object parameters. */
5829 maybe_handle_implicit_object (&ics1);
5830 maybe_handle_implicit_object (&ics2);
5832 /* Handle reference parameters. */
5833 ref_conv1 = maybe_handle_ref_bind (&ics1);
5834 ref_conv2 = maybe_handle_ref_bind (&ics2);
5836 /* [over.ics.rank]
5838 When comparing the basic forms of implicit conversion sequences (as
5839 defined in _over.best.ics_)
5841 --a standard conversion sequence (_over.ics.scs_) is a better
5842 conversion sequence than a user-defined conversion sequence
5843 or an ellipsis conversion sequence, and
5845 --a user-defined conversion sequence (_over.ics.user_) is a
5846 better conversion sequence than an ellipsis conversion sequence
5847 (_over.ics.ellipsis_). */
5848 rank1 = CONVERSION_RANK (ics1);
5849 rank2 = CONVERSION_RANK (ics2);
5851 if (rank1 > rank2)
5852 return -1;
5853 else if (rank1 < rank2)
5854 return 1;
5856 if (rank1 == cr_bad)
5858 /* XXX Isn't this an extension? */
5859 /* Both ICS are bad. We try to make a decision based on what
5860 would have happened if they'd been good. */
5861 if (ics1->user_conv_p > ics2->user_conv_p
5862 || ics1->rank > ics2->rank)
5863 return -1;
5864 else if (ics1->user_conv_p < ics2->user_conv_p
5865 || ics1->rank < ics2->rank)
5866 return 1;
5868 /* We couldn't make up our minds; try to figure it out below. */
5871 if (ics1->ellipsis_p)
5872 /* Both conversions are ellipsis conversions. */
5873 return 0;
5875 /* User-defined conversion sequence U1 is a better conversion sequence
5876 than another user-defined conversion sequence U2 if they contain the
5877 same user-defined conversion operator or constructor and if the sec-
5878 ond standard conversion sequence of U1 is better than the second
5879 standard conversion sequence of U2. */
5881 if (ics1->user_conv_p)
5883 conversion *t1;
5884 conversion *t2;
5886 for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next)
5887 if (t1->kind == ck_ambig)
5888 return 0;
5889 for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next)
5890 if (t2->kind == ck_ambig)
5891 return 0;
5893 if (t1->cand->fn != t2->cand->fn)
5894 return 0;
5896 /* We can just fall through here, after setting up
5897 FROM_TYPE1 and FROM_TYPE2. */
5898 from_type1 = t1->type;
5899 from_type2 = t2->type;
5901 else
5903 conversion *t1;
5904 conversion *t2;
5906 /* We're dealing with two standard conversion sequences.
5908 [over.ics.rank]
5910 Standard conversion sequence S1 is a better conversion
5911 sequence than standard conversion sequence S2 if
5913 --S1 is a proper subsequence of S2 (comparing the conversion
5914 sequences in the canonical form defined by _over.ics.scs_,
5915 excluding any Lvalue Transformation; the identity
5916 conversion sequence is considered to be a subsequence of
5917 any non-identity conversion sequence */
5919 t1 = ics1;
5920 while (t1->kind != ck_identity)
5921 t1 = t1->u.next;
5922 from_type1 = t1->type;
5924 t2 = ics2;
5925 while (t2->kind != ck_identity)
5926 t2 = t2->u.next;
5927 from_type2 = t2->type;
5930 if (same_type_p (from_type1, from_type2))
5932 if (is_subseq (ics1, ics2))
5933 return 1;
5934 if (is_subseq (ics2, ics1))
5935 return -1;
5937 /* Otherwise, one sequence cannot be a subsequence of the other; they
5938 don't start with the same type. This can happen when comparing the
5939 second standard conversion sequence in two user-defined conversion
5940 sequences. */
5942 /* [over.ics.rank]
5944 Or, if not that,
5946 --the rank of S1 is better than the rank of S2 (by the rules
5947 defined below):
5949 Standard conversion sequences are ordered by their ranks: an Exact
5950 Match is a better conversion than a Promotion, which is a better
5951 conversion than a Conversion.
5953 Two conversion sequences with the same rank are indistinguishable
5954 unless one of the following rules applies:
5956 --A conversion that is not a conversion of a pointer, or pointer
5957 to member, to bool is better than another conversion that is such
5958 a conversion.
5960 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
5961 so that we do not have to check it explicitly. */
5962 if (ics1->rank < ics2->rank)
5963 return 1;
5964 else if (ics2->rank < ics1->rank)
5965 return -1;
5967 to_type1 = ics1->type;
5968 to_type2 = ics2->type;
5970 if (TYPE_PTR_P (from_type1)
5971 && TYPE_PTR_P (from_type2)
5972 && TYPE_PTR_P (to_type1)
5973 && TYPE_PTR_P (to_type2))
5975 deref_from_type1 = TREE_TYPE (from_type1);
5976 deref_from_type2 = TREE_TYPE (from_type2);
5977 deref_to_type1 = TREE_TYPE (to_type1);
5978 deref_to_type2 = TREE_TYPE (to_type2);
5980 /* The rules for pointers to members A::* are just like the rules
5981 for pointers A*, except opposite: if B is derived from A then
5982 A::* converts to B::*, not vice versa. For that reason, we
5983 switch the from_ and to_ variables here. */
5984 else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
5985 && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
5986 || (TYPE_PTRMEMFUNC_P (from_type1)
5987 && TYPE_PTRMEMFUNC_P (from_type2)
5988 && TYPE_PTRMEMFUNC_P (to_type1)
5989 && TYPE_PTRMEMFUNC_P (to_type2)))
5991 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
5992 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
5993 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
5994 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
5997 if (deref_from_type1 != NULL_TREE
5998 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1))
5999 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2)))
6001 /* This was one of the pointer or pointer-like conversions.
6003 [over.ics.rank]
6005 --If class B is derived directly or indirectly from class A,
6006 conversion of B* to A* is better than conversion of B* to
6007 void*, and conversion of A* to void* is better than
6008 conversion of B* to void*. */
6009 if (TREE_CODE (deref_to_type1) == VOID_TYPE
6010 && TREE_CODE (deref_to_type2) == VOID_TYPE)
6012 if (is_properly_derived_from (deref_from_type1,
6013 deref_from_type2))
6014 return -1;
6015 else if (is_properly_derived_from (deref_from_type2,
6016 deref_from_type1))
6017 return 1;
6019 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
6020 || TREE_CODE (deref_to_type2) == VOID_TYPE)
6022 if (same_type_p (deref_from_type1, deref_from_type2))
6024 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
6026 if (is_properly_derived_from (deref_from_type1,
6027 deref_to_type1))
6028 return 1;
6030 /* We know that DEREF_TO_TYPE1 is `void' here. */
6031 else if (is_properly_derived_from (deref_from_type1,
6032 deref_to_type2))
6033 return -1;
6036 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1))
6037 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2)))
6039 /* [over.ics.rank]
6041 --If class B is derived directly or indirectly from class A
6042 and class C is derived directly or indirectly from B,
6044 --conversion of C* to B* is better than conversion of C* to
6047 --conversion of B* to A* is better than conversion of C* to
6048 A* */
6049 if (same_type_p (deref_from_type1, deref_from_type2))
6051 if (is_properly_derived_from (deref_to_type1,
6052 deref_to_type2))
6053 return 1;
6054 else if (is_properly_derived_from (deref_to_type2,
6055 deref_to_type1))
6056 return -1;
6058 else if (same_type_p (deref_to_type1, deref_to_type2))
6060 if (is_properly_derived_from (deref_from_type2,
6061 deref_from_type1))
6062 return 1;
6063 else if (is_properly_derived_from (deref_from_type1,
6064 deref_from_type2))
6065 return -1;
6069 else if (CLASS_TYPE_P (non_reference (from_type1))
6070 && same_type_p (from_type1, from_type2))
6072 tree from = non_reference (from_type1);
6074 /* [over.ics.rank]
6076 --binding of an expression of type C to a reference of type
6077 B& is better than binding an expression of type C to a
6078 reference of type A&
6080 --conversion of C to B is better than conversion of C to A, */
6081 if (is_properly_derived_from (from, to_type1)
6082 && is_properly_derived_from (from, to_type2))
6084 if (is_properly_derived_from (to_type1, to_type2))
6085 return 1;
6086 else if (is_properly_derived_from (to_type2, to_type1))
6087 return -1;
6090 else if (CLASS_TYPE_P (non_reference (to_type1))
6091 && same_type_p (to_type1, to_type2))
6093 tree to = non_reference (to_type1);
6095 /* [over.ics.rank]
6097 --binding of an expression of type B to a reference of type
6098 A& is better than binding an expression of type C to a
6099 reference of type A&,
6101 --conversion of B to A is better than conversion of C to A */
6102 if (is_properly_derived_from (from_type1, to)
6103 && is_properly_derived_from (from_type2, to))
6105 if (is_properly_derived_from (from_type2, from_type1))
6106 return 1;
6107 else if (is_properly_derived_from (from_type1, from_type2))
6108 return -1;
6112 /* [over.ics.rank]
6114 --S1 and S2 differ only in their qualification conversion and yield
6115 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
6116 qualification signature of type T1 is a proper subset of the cv-
6117 qualification signature of type T2 */
6118 if (ics1->kind == ck_qual
6119 && ics2->kind == ck_qual
6120 && same_type_p (from_type1, from_type2))
6121 return comp_cv_qual_signature (to_type1, to_type2);
6123 /* [over.ics.rank]
6125 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
6126 to an implicit object parameter, and either S1 binds an lvalue reference
6127 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
6128 reference to an rvalue and S2 binds an lvalue reference
6129 (C++0x draft standard, 13.3.3.2)
6131 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
6132 types to which the references refer are the same type except for
6133 top-level cv-qualifiers, and the type to which the reference
6134 initialized by S2 refers is more cv-qualified than the type to
6135 which the reference initialized by S1 refers */
6137 if (ref_conv1 && ref_conv2)
6139 if (!ref_conv1->this_p && !ref_conv2->this_p
6140 && (TYPE_REF_IS_RVALUE (ref_conv1->type)
6141 != TYPE_REF_IS_RVALUE (ref_conv2->type)))
6143 if (ref_conv1->rvaluedness_matches_p)
6144 return 1;
6145 if (ref_conv2->rvaluedness_matches_p)
6146 return -1;
6149 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
6150 return comp_cv_qualification (TREE_TYPE (ref_conv2->type),
6151 TREE_TYPE (ref_conv1->type));
6154 /* Neither conversion sequence is better than the other. */
6155 return 0;
6158 /* The source type for this standard conversion sequence. */
6160 static tree
6161 source_type (conversion *t)
6163 for (;; t = t->u.next)
6165 if (t->kind == ck_user
6166 || t->kind == ck_ambig
6167 || t->kind == ck_identity)
6168 return t->type;
6170 gcc_unreachable ();
6173 /* Note a warning about preferring WINNER to LOSER. We do this by storing
6174 a pointer to LOSER and re-running joust to produce the warning if WINNER
6175 is actually used. */
6177 static void
6178 add_warning (struct z_candidate *winner, struct z_candidate *loser)
6180 candidate_warning *cw = (candidate_warning *)
6181 conversion_obstack_alloc (sizeof (candidate_warning));
6182 cw->loser = loser;
6183 cw->next = winner->warnings;
6184 winner->warnings = cw;
6187 /* Compare two candidates for overloading as described in
6188 [over.match.best]. Return values:
6190 1: cand1 is better than cand2
6191 -1: cand2 is better than cand1
6192 0: cand1 and cand2 are indistinguishable */
6194 static int
6195 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
6197 int winner = 0;
6198 int off1 = 0, off2 = 0;
6199 size_t i;
6200 size_t len;
6202 /* Candidates that involve bad conversions are always worse than those
6203 that don't. */
6204 if (cand1->viable > cand2->viable)
6205 return 1;
6206 if (cand1->viable < cand2->viable)
6207 return -1;
6209 /* If we have two pseudo-candidates for conversions to the same type,
6210 or two candidates for the same function, arbitrarily pick one. */
6211 if (cand1->fn == cand2->fn
6212 && (IS_TYPE_OR_DECL_P (cand1->fn)))
6213 return 1;
6215 /* a viable function F1
6216 is defined to be a better function than another viable function F2 if
6217 for all arguments i, ICSi(F1) is not a worse conversion sequence than
6218 ICSi(F2), and then */
6220 /* for some argument j, ICSj(F1) is a better conversion sequence than
6221 ICSj(F2) */
6223 /* For comparing static and non-static member functions, we ignore
6224 the implicit object parameter of the non-static function. The
6225 standard says to pretend that the static function has an object
6226 parm, but that won't work with operator overloading. */
6227 len = cand1->num_convs;
6228 if (len != cand2->num_convs)
6230 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
6231 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
6233 gcc_assert (static_1 != static_2);
6235 if (static_1)
6236 off2 = 1;
6237 else
6239 off1 = 1;
6240 --len;
6244 for (i = 0; i < len; ++i)
6246 conversion *t1 = cand1->convs[i + off1];
6247 conversion *t2 = cand2->convs[i + off2];
6248 int comp = compare_ics (t1, t2);
6250 if (comp != 0)
6252 if (warn_sign_promo
6253 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
6254 == cr_std + cr_promotion)
6255 && t1->kind == ck_std
6256 && t2->kind == ck_std
6257 && TREE_CODE (t1->type) == INTEGER_TYPE
6258 && TREE_CODE (t2->type) == INTEGER_TYPE
6259 && (TYPE_PRECISION (t1->type)
6260 == TYPE_PRECISION (t2->type))
6261 && (TYPE_UNSIGNED (t1->u.next->type)
6262 || (TREE_CODE (t1->u.next->type)
6263 == ENUMERAL_TYPE)))
6265 tree type = t1->u.next->type;
6266 tree type1, type2;
6267 struct z_candidate *w, *l;
6268 if (comp > 0)
6269 type1 = t1->type, type2 = t2->type,
6270 w = cand1, l = cand2;
6271 else
6272 type1 = t2->type, type2 = t1->type,
6273 w = cand2, l = cand1;
6275 if (warn)
6277 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
6278 type, type1, type2);
6279 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
6281 else
6282 add_warning (w, l);
6285 if (winner && comp != winner)
6287 winner = 0;
6288 goto tweak;
6290 winner = comp;
6294 /* warn about confusing overload resolution for user-defined conversions,
6295 either between a constructor and a conversion op, or between two
6296 conversion ops. */
6297 if (winner && warn_conversion && cand1->second_conv
6298 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
6299 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
6301 struct z_candidate *w, *l;
6302 bool give_warning = false;
6304 if (winner == 1)
6305 w = cand1, l = cand2;
6306 else
6307 w = cand2, l = cand1;
6309 /* We don't want to complain about `X::operator T1 ()'
6310 beating `X::operator T2 () const', when T2 is a no less
6311 cv-qualified version of T1. */
6312 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
6313 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
6315 tree t = TREE_TYPE (TREE_TYPE (l->fn));
6316 tree f = TREE_TYPE (TREE_TYPE (w->fn));
6318 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
6320 t = TREE_TYPE (t);
6321 f = TREE_TYPE (f);
6323 if (!comp_ptr_ttypes (t, f))
6324 give_warning = true;
6326 else
6327 give_warning = true;
6329 if (!give_warning)
6330 /*NOP*/;
6331 else if (warn)
6333 tree source = source_type (w->convs[0]);
6334 if (! DECL_CONSTRUCTOR_P (w->fn))
6335 source = TREE_TYPE (source);
6336 warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn);
6337 warning (OPT_Wconversion, " for conversion from %qT to %qT",
6338 source, w->second_conv->type);
6339 inform (" because conversion sequence for the argument is better");
6341 else
6342 add_warning (w, l);
6345 if (winner)
6346 return winner;
6348 /* or, if not that,
6349 F1 is a non-template function and F2 is a template function
6350 specialization. */
6352 if (!cand1->template_decl && cand2->template_decl)
6353 return 1;
6354 else if (cand1->template_decl && !cand2->template_decl)
6355 return -1;
6357 /* or, if not that,
6358 F1 and F2 are template functions and the function template for F1 is
6359 more specialized than the template for F2 according to the partial
6360 ordering rules. */
6362 if (cand1->template_decl && cand2->template_decl)
6364 winner = more_specialized_fn
6365 (TI_TEMPLATE (cand1->template_decl),
6366 TI_TEMPLATE (cand2->template_decl),
6367 /* [temp.func.order]: The presence of unused ellipsis and default
6368 arguments has no effect on the partial ordering of function
6369 templates. add_function_candidate() will not have
6370 counted the "this" argument for constructors. */
6371 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
6372 if (winner)
6373 return winner;
6376 /* or, if not that,
6377 the context is an initialization by user-defined conversion (see
6378 _dcl.init_ and _over.match.user_) and the standard conversion
6379 sequence from the return type of F1 to the destination type (i.e.,
6380 the type of the entity being initialized) is a better conversion
6381 sequence than the standard conversion sequence from the return type
6382 of F2 to the destination type. */
6384 if (cand1->second_conv)
6386 winner = compare_ics (cand1->second_conv, cand2->second_conv);
6387 if (winner)
6388 return winner;
6391 /* Check whether we can discard a builtin candidate, either because we
6392 have two identical ones or matching builtin and non-builtin candidates.
6394 (Pedantically in the latter case the builtin which matched the user
6395 function should not be added to the overload set, but we spot it here.
6397 [over.match.oper]
6398 ... the builtin candidates include ...
6399 - do not have the same parameter type list as any non-template
6400 non-member candidate. */
6402 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
6403 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
6405 for (i = 0; i < len; ++i)
6406 if (!same_type_p (cand1->convs[i]->type,
6407 cand2->convs[i]->type))
6408 break;
6409 if (i == cand1->num_convs)
6411 if (cand1->fn == cand2->fn)
6412 /* Two built-in candidates; arbitrarily pick one. */
6413 return 1;
6414 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
6415 /* cand1 is built-in; prefer cand2. */
6416 return -1;
6417 else
6418 /* cand2 is built-in; prefer cand1. */
6419 return 1;
6423 /* If the two functions are the same (this can happen with declarations
6424 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
6425 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
6426 && equal_functions (cand1->fn, cand2->fn))
6427 return 1;
6429 tweak:
6431 /* Extension: If the worst conversion for one candidate is worse than the
6432 worst conversion for the other, take the first. */
6433 if (!pedantic)
6435 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
6436 struct z_candidate *w = 0, *l = 0;
6438 for (i = 0; i < len; ++i)
6440 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
6441 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
6442 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
6443 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
6445 if (rank1 < rank2)
6446 winner = 1, w = cand1, l = cand2;
6447 if (rank1 > rank2)
6448 winner = -1, w = cand2, l = cand1;
6449 if (winner)
6451 if (warn)
6453 pedwarn ("\
6454 ISO C++ says that these are ambiguous, even \
6455 though the worst conversion for the first is better than \
6456 the worst conversion for the second:");
6457 print_z_candidate (_("candidate 1:"), w);
6458 print_z_candidate (_("candidate 2:"), l);
6460 else
6461 add_warning (w, l);
6462 return winner;
6466 gcc_assert (!winner);
6467 return 0;
6470 /* Given a list of candidates for overloading, find the best one, if any.
6471 This algorithm has a worst case of O(2n) (winner is last), and a best
6472 case of O(n/2) (totally ambiguous); much better than a sorting
6473 algorithm. */
6475 static struct z_candidate *
6476 tourney (struct z_candidate *candidates)
6478 struct z_candidate *champ = candidates, *challenger;
6479 int fate;
6480 int champ_compared_to_predecessor = 0;
6482 /* Walk through the list once, comparing each current champ to the next
6483 candidate, knocking out a candidate or two with each comparison. */
6485 for (challenger = champ->next; challenger; )
6487 fate = joust (champ, challenger, 0);
6488 if (fate == 1)
6489 challenger = challenger->next;
6490 else
6492 if (fate == 0)
6494 champ = challenger->next;
6495 if (champ == 0)
6496 return NULL;
6497 champ_compared_to_predecessor = 0;
6499 else
6501 champ = challenger;
6502 champ_compared_to_predecessor = 1;
6505 challenger = champ->next;
6509 /* Make sure the champ is better than all the candidates it hasn't yet
6510 been compared to. */
6512 for (challenger = candidates;
6513 challenger != champ
6514 && !(champ_compared_to_predecessor && challenger->next == champ);
6515 challenger = challenger->next)
6517 fate = joust (champ, challenger, 0);
6518 if (fate != 1)
6519 return NULL;
6522 return champ;
6525 /* Returns nonzero if things of type FROM can be converted to TO. */
6527 bool
6528 can_convert (tree to, tree from)
6530 return can_convert_arg (to, from, NULL_TREE, LOOKUP_NORMAL);
6533 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
6535 bool
6536 can_convert_arg (tree to, tree from, tree arg, int flags)
6538 conversion *t;
6539 void *p;
6540 bool ok_p;
6542 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6543 p = conversion_obstack_alloc (0);
6545 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
6546 flags);
6547 ok_p = (t && !t->bad_p);
6549 /* Free all the conversions we allocated. */
6550 obstack_free (&conversion_obstack, p);
6552 return ok_p;
6555 /* Like can_convert_arg, but allows dubious conversions as well. */
6557 bool
6558 can_convert_arg_bad (tree to, tree from, tree arg)
6560 conversion *t;
6561 void *p;
6563 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6564 p = conversion_obstack_alloc (0);
6565 /* Try to perform the conversion. */
6566 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
6567 LOOKUP_NORMAL);
6568 /* Free all the conversions we allocated. */
6569 obstack_free (&conversion_obstack, p);
6571 return t != NULL;
6574 /* Convert EXPR to TYPE. Return the converted expression.
6576 Note that we allow bad conversions here because by the time we get to
6577 this point we are committed to doing the conversion. If we end up
6578 doing a bad conversion, convert_like will complain. */
6580 tree
6581 perform_implicit_conversion (tree type, tree expr)
6583 conversion *conv;
6584 void *p;
6586 if (error_operand_p (expr))
6587 return error_mark_node;
6589 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6590 p = conversion_obstack_alloc (0);
6592 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
6593 /*c_cast_p=*/false,
6594 LOOKUP_NORMAL);
6595 if (!conv)
6597 error ("could not convert %qE to %qT", expr, type);
6598 expr = error_mark_node;
6600 else if (processing_template_decl)
6602 /* In a template, we are only concerned about determining the
6603 type of non-dependent expressions, so we do not have to
6604 perform the actual conversion. */
6605 if (TREE_TYPE (expr) != type)
6606 expr = build_nop (type, expr);
6608 else
6609 expr = convert_like (conv, expr);
6611 /* Free all the conversions we allocated. */
6612 obstack_free (&conversion_obstack, p);
6614 return expr;
6617 /* Convert EXPR to TYPE (as a direct-initialization) if that is
6618 permitted. If the conversion is valid, the converted expression is
6619 returned. Otherwise, NULL_TREE is returned, except in the case
6620 that TYPE is a class type; in that case, an error is issued. If
6621 C_CAST_P is true, then this direction initialization is taking
6622 place as part of a static_cast being attempted as part of a C-style
6623 cast. */
6625 tree
6626 perform_direct_initialization_if_possible (tree type,
6627 tree expr,
6628 bool c_cast_p)
6630 conversion *conv;
6631 void *p;
6633 if (type == error_mark_node || error_operand_p (expr))
6634 return error_mark_node;
6635 /* [dcl.init]
6637 If the destination type is a (possibly cv-qualified) class type:
6639 -- If the initialization is direct-initialization ...,
6640 constructors are considered. ... If no constructor applies, or
6641 the overload resolution is ambiguous, the initialization is
6642 ill-formed. */
6643 if (CLASS_TYPE_P (type))
6645 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6646 build_tree_list (NULL_TREE, expr),
6647 type, LOOKUP_NORMAL);
6648 return build_cplus_new (type, expr);
6651 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6652 p = conversion_obstack_alloc (0);
6654 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
6655 c_cast_p,
6656 LOOKUP_NORMAL);
6657 if (!conv || conv->bad_p)
6658 expr = NULL_TREE;
6659 else
6660 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
6661 /*issue_conversion_warnings=*/false,
6662 c_cast_p);
6664 /* Free all the conversions we allocated. */
6665 obstack_free (&conversion_obstack, p);
6667 return expr;
6670 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
6671 is being bound to a temporary. Create and return a new VAR_DECL
6672 with the indicated TYPE; this variable will store the value to
6673 which the reference is bound. */
6675 tree
6676 make_temporary_var_for_ref_to_temp (tree decl, tree type)
6678 tree var;
6680 /* Create the variable. */
6681 var = create_temporary_var (type);
6683 /* Register the variable. */
6684 if (TREE_STATIC (decl))
6686 /* Namespace-scope or local static; give it a mangled name. */
6687 tree name;
6689 TREE_STATIC (var) = 1;
6690 name = mangle_ref_init_variable (decl);
6691 DECL_NAME (var) = name;
6692 SET_DECL_ASSEMBLER_NAME (var, name);
6693 var = pushdecl_top_level (var);
6695 else
6696 /* Create a new cleanup level if necessary. */
6697 maybe_push_cleanup_level (type);
6699 return var;
6702 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
6703 initializing a variable of that TYPE. If DECL is non-NULL, it is
6704 the VAR_DECL being initialized with the EXPR. (In that case, the
6705 type of DECL will be TYPE.) If DECL is non-NULL, then CLEANUP must
6706 also be non-NULL, and with *CLEANUP initialized to NULL. Upon
6707 return, if *CLEANUP is no longer NULL, it will be an expression
6708 that should be pushed as a cleanup after the returned expression
6709 is used to initialize DECL.
6711 Return the converted expression. */
6713 tree
6714 initialize_reference (tree type, tree expr, tree decl, tree *cleanup)
6716 conversion *conv;
6717 void *p;
6719 if (type == error_mark_node || error_operand_p (expr))
6720 return error_mark_node;
6722 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6723 p = conversion_obstack_alloc (0);
6725 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
6726 LOOKUP_NORMAL);
6727 if (!conv || conv->bad_p)
6729 if (!(TYPE_QUALS (TREE_TYPE (type)) & TYPE_QUAL_CONST)
6730 && !real_lvalue_p (expr))
6731 error ("invalid initialization of non-const reference of "
6732 "type %qT from a temporary of type %qT",
6733 type, TREE_TYPE (expr));
6734 else
6735 error ("invalid initialization of reference of type "
6736 "%qT from expression of type %qT", type,
6737 TREE_TYPE (expr));
6738 return error_mark_node;
6741 /* If DECL is non-NULL, then this special rule applies:
6743 [class.temporary]
6745 The temporary to which the reference is bound or the temporary
6746 that is the complete object to which the reference is bound
6747 persists for the lifetime of the reference.
6749 The temporaries created during the evaluation of the expression
6750 initializing the reference, except the temporary to which the
6751 reference is bound, are destroyed at the end of the
6752 full-expression in which they are created.
6754 In that case, we store the converted expression into a new
6755 VAR_DECL in a new scope.
6757 However, we want to be careful not to create temporaries when
6758 they are not required. For example, given:
6760 struct B {};
6761 struct D : public B {};
6762 D f();
6763 const B& b = f();
6765 there is no need to copy the return value from "f"; we can just
6766 extend its lifetime. Similarly, given:
6768 struct S {};
6769 struct T { operator S(); };
6770 T t;
6771 const S& s = t;
6773 we can extend the lifetime of the return value of the conversion
6774 operator. */
6775 gcc_assert (conv->kind == ck_ref_bind);
6776 if (decl)
6778 tree var;
6779 tree base_conv_type;
6781 /* Skip over the REF_BIND. */
6782 conv = conv->u.next;
6783 /* If the next conversion is a BASE_CONV, skip that too -- but
6784 remember that the conversion was required. */
6785 if (conv->kind == ck_base)
6787 base_conv_type = conv->type;
6788 conv = conv->u.next;
6790 else
6791 base_conv_type = NULL_TREE;
6792 /* Perform the remainder of the conversion. */
6793 expr = convert_like_real (conv, expr,
6794 /*fn=*/NULL_TREE, /*argnum=*/0,
6795 /*inner=*/-1,
6796 /*issue_conversion_warnings=*/true,
6797 /*c_cast_p=*/false);
6798 if (error_operand_p (expr))
6799 expr = error_mark_node;
6800 else
6802 if (!real_lvalue_p (expr))
6804 tree init;
6805 tree type;
6807 /* Create the temporary variable. */
6808 type = TREE_TYPE (expr);
6809 var = make_temporary_var_for_ref_to_temp (decl, type);
6810 layout_decl (var, 0);
6811 /* If the rvalue is the result of a function call it will be
6812 a TARGET_EXPR. If it is some other construct (such as a
6813 member access expression where the underlying object is
6814 itself the result of a function call), turn it into a
6815 TARGET_EXPR here. It is important that EXPR be a
6816 TARGET_EXPR below since otherwise the INIT_EXPR will
6817 attempt to make a bitwise copy of EXPR to initialize
6818 VAR. */
6819 if (TREE_CODE (expr) != TARGET_EXPR)
6820 expr = get_target_expr (expr);
6821 /* Create the INIT_EXPR that will initialize the temporary
6822 variable. */
6823 init = build2 (INIT_EXPR, type, var, expr);
6824 if (at_function_scope_p ())
6826 add_decl_expr (var);
6828 if (TREE_STATIC (var))
6829 init = add_stmt_to_compound (init, register_dtor_fn (var));
6830 else
6831 *cleanup = cxx_maybe_build_cleanup (var);
6833 /* We must be careful to destroy the temporary only
6834 after its initialization has taken place. If the
6835 initialization throws an exception, then the
6836 destructor should not be run. We cannot simply
6837 transform INIT into something like:
6839 (INIT, ({ CLEANUP_STMT; }))
6841 because emit_local_var always treats the
6842 initializer as a full-expression. Thus, the
6843 destructor would run too early; it would run at the
6844 end of initializing the reference variable, rather
6845 than at the end of the block enclosing the
6846 reference variable.
6848 The solution is to pass back a cleanup expression
6849 which the caller is responsible for attaching to
6850 the statement tree. */
6852 else
6854 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
6855 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6856 static_aggregates = tree_cons (NULL_TREE, var,
6857 static_aggregates);
6859 /* Use its address to initialize the reference variable. */
6860 expr = build_address (var);
6861 if (base_conv_type)
6862 expr = convert_to_base (expr,
6863 build_pointer_type (base_conv_type),
6864 /*check_access=*/true,
6865 /*nonnull=*/true);
6866 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
6868 else
6869 /* Take the address of EXPR. */
6870 expr = build_unary_op (ADDR_EXPR, expr, 0);
6871 /* If a BASE_CONV was required, perform it now. */
6872 if (base_conv_type)
6873 expr = (perform_implicit_conversion
6874 (build_pointer_type (base_conv_type), expr));
6875 expr = build_nop (type, expr);
6878 else
6879 /* Perform the conversion. */
6880 expr = convert_like (conv, expr);
6882 /* Free all the conversions we allocated. */
6883 obstack_free (&conversion_obstack, p);
6885 return expr;
6888 #include "gt-cp-call.h"