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)
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. */
29 #include "coretypes.h"
38 #include "diagnostic.h"
42 #include "langhooks.h"
44 /* The various kinds of conversion. */
46 typedef enum 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
{
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
;
80 /* The kind of conversion represented by this step. */
82 /* The rank of this conversion. */
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
91 BOOL_BITFIELD need_temporary_p
: 1;
92 /* If KIND is ck_identity or ck_base_conv, true to indicate that the
93 copy constructor must be accessible, even though it is not being
95 BOOL_BITFIELD check_copy_constructor_p
: 1;
96 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
97 from a pointer-to-derived to pointer-to-base is being performed. */
98 BOOL_BITFIELD base_p
: 1;
99 /* If KIND is ck_ref_bind, true when either an lvalue reference is
100 being bound to an lvalue expression or an rvalue reference is
101 being bound to an rvalue expression. */
102 BOOL_BITFIELD rvaluedness_matches_p
: 1;
103 /* The type of the expression resulting from the conversion. */
106 /* The next conversion in the chain. Since the conversions are
107 arranged from outermost to innermost, the NEXT conversion will
108 actually be performed before this conversion. This variant is
109 used only when KIND is neither ck_identity nor ck_ambig. */
111 /* The expression at the beginning of the conversion chain. This
112 variant is used only if KIND is ck_identity or ck_ambig. */
115 /* The function candidate corresponding to this conversion
116 sequence. This field is only used if KIND is ck_user. */
117 struct z_candidate
*cand
;
120 #define CONVERSION_RANK(NODE) \
121 ((NODE)->bad_p ? cr_bad \
122 : (NODE)->ellipsis_p ? cr_ellipsis \
123 : (NODE)->user_conv_p ? cr_user \
126 static struct obstack conversion_obstack
;
127 static bool conversion_obstack_initialized
;
129 static struct z_candidate
* tourney (struct z_candidate
*);
130 static int equal_functions (tree
, tree
);
131 static int joust (struct z_candidate
*, struct z_candidate
*, bool);
132 static int compare_ics (conversion
*, conversion
*);
133 static tree
build_over_call (struct z_candidate
*, int);
134 static tree
build_java_interface_fn_ref (tree
, tree
);
135 #define convert_like(CONV, EXPR) \
136 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
137 /*issue_conversion_warnings=*/true, \
139 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
140 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
141 /*issue_conversion_warnings=*/true, \
143 static tree
convert_like_real (conversion
*, tree
, tree
, int, int, bool,
145 static void op_error (enum tree_code
, enum tree_code
, tree
, tree
,
147 static tree
build_object_call (tree
, tree
);
148 static tree
resolve_args (tree
);
149 static struct z_candidate
*build_user_type_conversion_1 (tree
, tree
, int);
150 static void print_z_candidate (const char *, struct z_candidate
*);
151 static void print_z_candidates (struct z_candidate
*);
152 static tree
build_this (tree
);
153 static struct z_candidate
*splice_viable (struct z_candidate
*, bool, bool *);
154 static bool any_strictly_viable (struct z_candidate
*);
155 static struct z_candidate
*add_template_candidate
156 (struct z_candidate
**, tree
, tree
, tree
, tree
, tree
,
157 tree
, tree
, int, unification_kind_t
);
158 static struct z_candidate
*add_template_candidate_real
159 (struct z_candidate
**, tree
, tree
, tree
, tree
, tree
,
160 tree
, tree
, int, tree
, unification_kind_t
);
161 static struct z_candidate
*add_template_conv_candidate
162 (struct z_candidate
**, tree
, tree
, tree
, tree
, tree
, tree
);
163 static void add_builtin_candidates
164 (struct z_candidate
**, enum tree_code
, enum tree_code
,
166 static void add_builtin_candidate
167 (struct z_candidate
**, enum tree_code
, enum tree_code
,
168 tree
, tree
, tree
, tree
*, tree
*, int);
169 static bool is_complete (tree
);
170 static void build_builtin_candidate
171 (struct z_candidate
**, tree
, tree
, tree
, tree
*, tree
*,
173 static struct z_candidate
*add_conv_candidate
174 (struct z_candidate
**, tree
, tree
, tree
, tree
, tree
);
175 static struct z_candidate
*add_function_candidate
176 (struct z_candidate
**, tree
, tree
, tree
, tree
, tree
, int);
177 static conversion
*implicit_conversion (tree
, tree
, tree
, bool, int);
178 static conversion
*standard_conversion (tree
, tree
, tree
, bool, int);
179 static conversion
*reference_binding (tree
, tree
, tree
, bool, int);
180 static conversion
*build_conv (conversion_kind
, tree
, conversion
*);
181 static bool is_subseq (conversion
*, conversion
*);
182 static conversion
*maybe_handle_ref_bind (conversion
**);
183 static void maybe_handle_implicit_object (conversion
**);
184 static struct z_candidate
*add_candidate
185 (struct z_candidate
**, tree
, tree
, size_t,
186 conversion
**, tree
, tree
, int);
187 static tree
source_type (conversion
*);
188 static void add_warning (struct z_candidate
*, struct z_candidate
*);
189 static bool reference_related_p (tree
, tree
);
190 static bool reference_compatible_p (tree
, tree
);
191 static conversion
*convert_class_to_reference (tree
, tree
, tree
);
192 static conversion
*direct_reference_binding (tree
, conversion
*);
193 static bool promoted_arithmetic_type_p (tree
);
194 static conversion
*conditional_conversion (tree
, tree
);
195 static char *name_as_c_string (tree
, tree
, bool *);
196 static tree
call_builtin_trap (void);
197 static tree
prep_operand (tree
);
198 static void add_candidates (tree
, tree
, tree
, bool, tree
, tree
,
199 int, struct z_candidate
**);
200 static conversion
*merge_conversion_sequences (conversion
*, conversion
*);
201 static bool magic_varargs_p (tree
);
202 typedef void (*diagnostic_fn_t
) (const char *, ...) ATTRIBUTE_GCC_CXXDIAG(1,2);
203 static tree
build_temp (tree
, tree
, int, diagnostic_fn_t
*);
204 static void check_constructor_callable (tree
, tree
);
206 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
207 NAME can take many forms... */
210 check_dtor_name (tree basetype
, tree name
)
212 /* Just accept something we've already complained about. */
213 if (name
== error_mark_node
)
216 if (TREE_CODE (name
) == TYPE_DECL
)
217 name
= TREE_TYPE (name
);
218 else if (TYPE_P (name
))
220 else if (TREE_CODE (name
) == IDENTIFIER_NODE
)
222 if ((IS_AGGR_TYPE (basetype
) && name
== constructor_name (basetype
))
223 || (TREE_CODE (basetype
) == ENUMERAL_TYPE
224 && name
== TYPE_IDENTIFIER (basetype
)))
227 name
= get_type_value (name
);
233 template <class T> struct S { ~S(); };
237 NAME will be a class template. */
238 gcc_assert (DECL_CLASS_TEMPLATE_P (name
));
244 return same_type_p (TYPE_MAIN_VARIANT (basetype
), TYPE_MAIN_VARIANT (name
));
247 /* We want the address of a function or method. We avoid creating a
248 pointer-to-member function. */
251 build_addr_func (tree function
)
253 tree type
= TREE_TYPE (function
);
255 /* We have to do these by hand to avoid real pointer to member
257 if (TREE_CODE (type
) == METHOD_TYPE
)
259 if (TREE_CODE (function
) == OFFSET_REF
)
261 tree object
= build_address (TREE_OPERAND (function
, 0));
262 return get_member_function_from_ptrfunc (&object
,
263 TREE_OPERAND (function
, 1));
265 function
= build_address (function
);
268 function
= decay_conversion (function
);
273 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
274 POINTER_TYPE to those. Note, pointer to member function types
275 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
276 two variants. build_call_a is the primitive taking an array of
277 arguments, while build_call_n is a wrapper that handles varargs. */
280 build_call_n (tree function
, int n
, ...)
283 return build_call_a (function
, 0, NULL
);
286 tree
*argarray
= (tree
*) alloca (n
* sizeof (tree
));
291 for (i
= 0; i
< n
; i
++)
292 argarray
[i
] = va_arg (ap
, tree
);
294 return build_call_a (function
, n
, argarray
);
299 build_call_a (tree function
, int n
, tree
*argarray
)
301 int is_constructor
= 0;
308 function
= build_addr_func (function
);
310 gcc_assert (TYPE_PTR_P (TREE_TYPE (function
)));
311 fntype
= TREE_TYPE (TREE_TYPE (function
));
312 gcc_assert (TREE_CODE (fntype
) == FUNCTION_TYPE
313 || TREE_CODE (fntype
) == METHOD_TYPE
);
314 result_type
= TREE_TYPE (fntype
);
316 if (TREE_CODE (function
) == ADDR_EXPR
317 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
319 decl
= TREE_OPERAND (function
, 0);
320 if (!TREE_USED (decl
))
322 /* We invoke build_call directly for several library
323 functions. These may have been declared normally if
324 we're building libgcc, so we can't just check
326 gcc_assert (DECL_ARTIFICIAL (decl
)
327 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl
)),
335 /* We check both the decl and the type; a function may be known not to
336 throw without being declared throw(). */
337 nothrow
= ((decl
&& TREE_NOTHROW (decl
))
338 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function
))));
340 if (decl
&& TREE_THIS_VOLATILE (decl
) && cfun
)
341 current_function_returns_abnormally
= 1;
343 if (decl
&& TREE_DEPRECATED (decl
))
344 warn_deprecated_use (decl
);
345 require_complete_eh_spec_types (fntype
, decl
);
347 if (decl
&& DECL_CONSTRUCTOR_P (decl
))
350 /* Don't pass empty class objects by value. This is useful
351 for tags in STL, which are used to control overload resolution.
352 We don't need to handle other cases of copying empty classes. */
353 if (! decl
|| ! DECL_BUILT_IN (decl
))
354 for (i
= 0; i
< n
; i
++)
355 if (is_empty_class (TREE_TYPE (argarray
[i
]))
356 && ! TREE_ADDRESSABLE (TREE_TYPE (argarray
[i
])))
358 tree t
= build0 (EMPTY_CLASS_EXPR
, TREE_TYPE (argarray
[i
]));
359 argarray
[i
] = build2 (COMPOUND_EXPR
, TREE_TYPE (t
),
363 function
= build_call_array (result_type
, function
, n
, argarray
);
364 TREE_HAS_CONSTRUCTOR (function
) = is_constructor
;
365 TREE_NOTHROW (function
) = nothrow
;
370 /* Build something of the form ptr->method (args)
371 or object.method (args). This can also build
372 calls to constructors, and find friends.
374 Member functions always take their class variable
377 INSTANCE is a class instance.
379 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
381 PARMS help to figure out what that NAME really refers to.
383 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
384 down to the real instance type to use for access checking. We need this
385 information to get protected accesses correct.
387 FLAGS is the logical disjunction of zero or more LOOKUP_
388 flags. See cp-tree.h for more info.
390 If this is all OK, calls build_function_call with the resolved
393 This function must also handle being called to perform
394 initialization, promotion/coercion of arguments, and
395 instantiation of default parameters.
397 Note that NAME may refer to an instance variable name. If
398 `operator()()' is defined for the type of that field, then we return
401 /* New overloading code. */
403 typedef struct z_candidate z_candidate
;
405 typedef struct candidate_warning candidate_warning
;
406 struct candidate_warning
{
408 candidate_warning
*next
;
412 /* The FUNCTION_DECL that will be called if this candidate is
413 selected by overload resolution. */
415 /* The arguments to use when calling this function. */
417 /* The implicit conversion sequences for each of the arguments to
420 /* The number of implicit conversion sequences. */
422 /* If FN is a user-defined conversion, the standard conversion
423 sequence from the type returned by FN to the desired destination
425 conversion
*second_conv
;
427 /* If FN is a member function, the binfo indicating the path used to
428 qualify the name of FN at the call site. This path is used to
429 determine whether or not FN is accessible if it is selected by
430 overload resolution. The DECL_CONTEXT of FN will always be a
431 (possibly improper) base of this binfo. */
433 /* If FN is a non-static member function, the binfo indicating the
434 subobject to which the `this' pointer should be converted if FN
435 is selected by overload resolution. The type pointed to the by
436 the `this' pointer must correspond to the most derived class
437 indicated by the CONVERSION_PATH. */
438 tree conversion_path
;
440 candidate_warning
*warnings
;
444 /* Returns true iff T is a null pointer constant in the sense of
448 null_ptr_cst_p (tree t
)
452 A null pointer constant is an integral constant expression
453 (_expr.const_) rvalue of integer type that evaluates to zero. */
454 t
= integral_constant_value (t
);
457 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t
)) && integer_zerop (t
))
460 if (!TREE_OVERFLOW (t
))
466 /* Returns nonzero if PARMLIST consists of only default parms and/or
470 sufficient_parms_p (const_tree parmlist
)
472 for (; parmlist
&& parmlist
!= void_list_node
;
473 parmlist
= TREE_CHAIN (parmlist
))
474 if (!TREE_PURPOSE (parmlist
))
479 /* Allocate N bytes of memory from the conversion obstack. The memory
480 is zeroed before being returned. */
483 conversion_obstack_alloc (size_t n
)
486 if (!conversion_obstack_initialized
)
488 gcc_obstack_init (&conversion_obstack
);
489 conversion_obstack_initialized
= true;
491 p
= obstack_alloc (&conversion_obstack
, n
);
496 /* Dynamically allocate a conversion. */
499 alloc_conversion (conversion_kind kind
)
502 c
= (conversion
*) conversion_obstack_alloc (sizeof (conversion
));
507 #ifdef ENABLE_CHECKING
509 /* Make sure that all memory on the conversion obstack has been
513 validate_conversion_obstack (void)
515 if (conversion_obstack_initialized
)
516 gcc_assert ((obstack_next_free (&conversion_obstack
)
517 == obstack_base (&conversion_obstack
)));
520 #endif /* ENABLE_CHECKING */
522 /* Dynamically allocate an array of N conversions. */
525 alloc_conversions (size_t n
)
527 return (conversion
**) conversion_obstack_alloc (n
* sizeof (conversion
*));
531 build_conv (conversion_kind code
, tree type
, conversion
*from
)
534 conversion_rank rank
= CONVERSION_RANK (from
);
536 /* We can't use buildl1 here because CODE could be USER_CONV, which
537 takes two arguments. In that case, the caller is responsible for
538 filling in the second argument. */
539 t
= alloc_conversion (code
);
562 t
->user_conv_p
= (code
== ck_user
|| from
->user_conv_p
);
563 t
->bad_p
= from
->bad_p
;
568 /* Build a representation of the identity conversion from EXPR to
569 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
572 build_identity_conv (tree type
, tree expr
)
576 c
= alloc_conversion (ck_identity
);
583 /* Converting from EXPR to TYPE was ambiguous in the sense that there
584 were multiple user-defined conversions to accomplish the job.
585 Build a conversion that indicates that ambiguity. */
588 build_ambiguous_conv (tree type
, tree expr
)
592 c
= alloc_conversion (ck_ambig
);
600 strip_top_quals (tree t
)
602 if (TREE_CODE (t
) == ARRAY_TYPE
)
604 return cp_build_qualified_type (t
, 0);
607 /* Returns the standard conversion path (see [conv]) from type FROM to type
608 TO, if any. For proper handling of null pointer constants, you must
609 also pass the expression EXPR to convert from. If C_CAST_P is true,
610 this conversion is coming from a C-style cast. */
613 standard_conversion (tree to
, tree from
, tree expr
, bool c_cast_p
,
616 enum tree_code fcode
, tcode
;
618 bool fromref
= false;
620 to
= non_reference (to
);
621 if (TREE_CODE (from
) == REFERENCE_TYPE
)
624 from
= TREE_TYPE (from
);
626 to
= strip_top_quals (to
);
627 from
= strip_top_quals (from
);
629 if ((TYPE_PTRFN_P (to
) || TYPE_PTRMEMFUNC_P (to
))
630 && expr
&& type_unknown_p (expr
))
632 expr
= instantiate_type (to
, expr
, tf_conv
);
633 if (expr
== error_mark_node
)
635 from
= TREE_TYPE (expr
);
638 fcode
= TREE_CODE (from
);
639 tcode
= TREE_CODE (to
);
641 conv
= build_identity_conv (from
, expr
);
642 if (fcode
== FUNCTION_TYPE
|| fcode
== ARRAY_TYPE
)
644 from
= type_decays_to (from
);
645 fcode
= TREE_CODE (from
);
646 conv
= build_conv (ck_lvalue
, from
, conv
);
648 else if (fromref
|| (expr
&& lvalue_p (expr
)))
653 bitfield_type
= is_bitfield_expr_with_lowered_type (expr
);
656 from
= strip_top_quals (bitfield_type
);
657 fcode
= TREE_CODE (from
);
660 conv
= build_conv (ck_rvalue
, from
, conv
);
663 /* Allow conversion between `__complex__' data types. */
664 if (tcode
== COMPLEX_TYPE
&& fcode
== COMPLEX_TYPE
)
666 /* The standard conversion sequence to convert FROM to TO is
667 the standard conversion sequence to perform componentwise
669 conversion
*part_conv
= standard_conversion
670 (TREE_TYPE (to
), TREE_TYPE (from
), NULL_TREE
, c_cast_p
, flags
);
674 conv
= build_conv (part_conv
->kind
, to
, conv
);
675 conv
->rank
= part_conv
->rank
;
683 if (same_type_p (from
, to
))
686 if ((tcode
== POINTER_TYPE
|| TYPE_PTR_TO_MEMBER_P (to
))
687 && expr
&& null_ptr_cst_p (expr
))
688 conv
= build_conv (ck_std
, to
, conv
);
689 else if ((tcode
== INTEGER_TYPE
&& fcode
== POINTER_TYPE
)
690 || (tcode
== POINTER_TYPE
&& fcode
== INTEGER_TYPE
))
692 /* For backwards brain damage compatibility, allow interconversion of
693 pointers and integers with a pedwarn. */
694 conv
= build_conv (ck_std
, to
, conv
);
697 else if (tcode
== ENUMERAL_TYPE
&& fcode
== INTEGER_TYPE
)
699 /* For backwards brain damage compatibility, allow interconversion of
700 enums and integers with a pedwarn. */
701 conv
= build_conv (ck_std
, to
, conv
);
704 else if ((tcode
== POINTER_TYPE
&& fcode
== POINTER_TYPE
)
705 || (TYPE_PTRMEM_P (to
) && TYPE_PTRMEM_P (from
)))
710 if (tcode
== POINTER_TYPE
711 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from
),
714 else if (VOID_TYPE_P (TREE_TYPE (to
))
715 && !TYPE_PTRMEM_P (from
)
716 && TREE_CODE (TREE_TYPE (from
)) != FUNCTION_TYPE
)
718 from
= build_pointer_type
719 (cp_build_qualified_type (void_type_node
,
720 cp_type_quals (TREE_TYPE (from
))));
721 conv
= build_conv (ck_ptr
, from
, conv
);
723 else if (TYPE_PTRMEM_P (from
))
725 tree fbase
= TYPE_PTRMEM_CLASS_TYPE (from
);
726 tree tbase
= TYPE_PTRMEM_CLASS_TYPE (to
);
728 if (DERIVED_FROM_P (fbase
, tbase
)
729 && (same_type_ignoring_top_level_qualifiers_p
730 (TYPE_PTRMEM_POINTED_TO_TYPE (from
),
731 TYPE_PTRMEM_POINTED_TO_TYPE (to
))))
733 from
= build_ptrmem_type (tbase
,
734 TYPE_PTRMEM_POINTED_TO_TYPE (from
));
735 conv
= build_conv (ck_pmem
, from
, conv
);
737 else if (!same_type_p (fbase
, tbase
))
740 else if (IS_AGGR_TYPE (TREE_TYPE (from
))
741 && IS_AGGR_TYPE (TREE_TYPE (to
))
744 An rvalue of type "pointer to cv D," where D is a
745 class type, can be converted to an rvalue of type
746 "pointer to cv B," where B is a base class (clause
747 _class.derived_) of D. If B is an inaccessible
748 (clause _class.access_) or ambiguous
749 (_class.member.lookup_) base class of D, a program
750 that necessitates this conversion is ill-formed.
751 Therefore, we use DERIVED_FROM_P, and do not check
752 access or uniqueness. */
753 && DERIVED_FROM_P (TREE_TYPE (to
), TREE_TYPE (from
))
754 /* If FROM is not yet complete, then we must be parsing
755 the body of a class. We know what's derived from
756 what, but we can't actually perform a
757 derived-to-base conversion. For example, in:
759 struct D : public B {
760 static const int i = sizeof((B*)(D*)0);
763 the D*-to-B* conversion is a reinterpret_cast, not a
765 && COMPLETE_TYPE_P (TREE_TYPE (from
)))
768 cp_build_qualified_type (TREE_TYPE (to
),
769 cp_type_quals (TREE_TYPE (from
)));
770 from
= build_pointer_type (from
);
771 conv
= build_conv (ck_ptr
, from
, conv
);
775 if (tcode
== POINTER_TYPE
)
777 to_pointee
= TREE_TYPE (to
);
778 from_pointee
= TREE_TYPE (from
);
782 to_pointee
= TYPE_PTRMEM_POINTED_TO_TYPE (to
);
783 from_pointee
= TYPE_PTRMEM_POINTED_TO_TYPE (from
);
786 if (same_type_p (from
, to
))
788 else if (c_cast_p
&& comp_ptr_ttypes_const (to
, from
))
789 /* In a C-style cast, we ignore CV-qualification because we
790 are allowed to perform a static_cast followed by a
792 conv
= build_conv (ck_qual
, to
, conv
);
793 else if (!c_cast_p
&& comp_ptr_ttypes (to_pointee
, from_pointee
))
794 conv
= build_conv (ck_qual
, to
, conv
);
795 else if (expr
&& string_conv_p (to
, expr
, 0))
796 /* converting from string constant to char *. */
797 conv
= build_conv (ck_qual
, to
, conv
);
798 else if (ptr_reasonably_similar (to_pointee
, from_pointee
))
800 conv
= build_conv (ck_ptr
, to
, conv
);
808 else if (TYPE_PTRMEMFUNC_P (to
) && TYPE_PTRMEMFUNC_P (from
))
810 tree fromfn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from
));
811 tree tofn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to
));
812 tree fbase
= TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn
)));
813 tree tbase
= TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn
)));
815 if (!DERIVED_FROM_P (fbase
, tbase
)
816 || !same_type_p (TREE_TYPE (fromfn
), TREE_TYPE (tofn
))
817 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn
)),
818 TREE_CHAIN (TYPE_ARG_TYPES (tofn
)))
819 || cp_type_quals (fbase
) != cp_type_quals (tbase
))
822 from
= cp_build_qualified_type (tbase
, cp_type_quals (fbase
));
823 from
= build_method_type_directly (from
,
825 TREE_CHAIN (TYPE_ARG_TYPES (fromfn
)));
826 from
= build_ptrmemfunc_type (build_pointer_type (from
));
827 conv
= build_conv (ck_pmem
, from
, conv
);
830 else if (tcode
== BOOLEAN_TYPE
)
834 An rvalue of arithmetic, enumeration, pointer, or pointer to
835 member type can be converted to an rvalue of type bool. */
836 if (ARITHMETIC_TYPE_P (from
)
837 || fcode
== ENUMERAL_TYPE
838 || fcode
== POINTER_TYPE
839 || TYPE_PTR_TO_MEMBER_P (from
))
841 conv
= build_conv (ck_std
, to
, conv
);
842 if (fcode
== POINTER_TYPE
843 || TYPE_PTRMEM_P (from
)
844 || (TYPE_PTRMEMFUNC_P (from
)
845 && conv
->rank
< cr_pbool
))
846 conv
->rank
= cr_pbool
;
852 /* We don't check for ENUMERAL_TYPE here because there are no standard
853 conversions to enum type. */
854 else if (tcode
== INTEGER_TYPE
|| tcode
== BOOLEAN_TYPE
855 || tcode
== REAL_TYPE
)
857 if (! (INTEGRAL_CODE_P (fcode
) || fcode
== REAL_TYPE
))
859 conv
= build_conv (ck_std
, to
, conv
);
861 /* Give this a better rank if it's a promotion. */
862 if (same_type_p (to
, type_promotes_to (from
))
863 && conv
->u
.next
->rank
<= cr_promotion
)
864 conv
->rank
= cr_promotion
;
866 else if (fcode
== VECTOR_TYPE
&& tcode
== VECTOR_TYPE
867 && vector_types_convertible_p (from
, to
, false))
868 return build_conv (ck_std
, to
, conv
);
869 else if (!(flags
& LOOKUP_CONSTRUCTOR_CALLABLE
)
870 && IS_AGGR_TYPE (to
) && IS_AGGR_TYPE (from
)
871 && is_properly_derived_from (from
, to
))
873 if (conv
->kind
== ck_rvalue
)
875 conv
= build_conv (ck_base
, to
, conv
);
876 /* The derived-to-base conversion indicates the initialization
877 of a parameter with base type from an object of a derived
878 type. A temporary object is created to hold the result of
880 conv
->need_temporary_p
= true;
888 /* Returns nonzero if T1 is reference-related to T2. */
891 reference_related_p (tree t1
, tree t2
)
893 t1
= TYPE_MAIN_VARIANT (t1
);
894 t2
= TYPE_MAIN_VARIANT (t2
);
898 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
899 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
901 return (same_type_p (t1
, t2
)
902 || (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
903 && DERIVED_FROM_P (t1
, t2
)));
906 /* Returns nonzero if T1 is reference-compatible with T2. */
909 reference_compatible_p (tree t1
, tree t2
)
913 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
914 reference-related to T2 and cv1 is the same cv-qualification as,
915 or greater cv-qualification than, cv2. */
916 return (reference_related_p (t1
, t2
)
917 && at_least_as_qualified_p (t1
, t2
));
920 /* Determine whether or not the EXPR (of class type S) can be
921 converted to T as in [over.match.ref]. */
924 convert_class_to_reference (tree reference_type
, tree s
, tree expr
)
930 struct z_candidate
*candidates
;
931 struct z_candidate
*cand
;
934 conversions
= lookup_conversions (s
);
940 Assuming that "cv1 T" is the underlying type of the reference
941 being initialized, and "cv S" is the type of the initializer
942 expression, with S a class type, the candidate functions are
945 --The conversion functions of S and its base classes are
946 considered. Those that are not hidden within S and yield type
947 "reference to cv2 T2", where "cv1 T" is reference-compatible
948 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
950 The argument list has one argument, which is the initializer
955 /* Conceptually, we should take the address of EXPR and put it in
956 the argument list. Unfortunately, however, that can result in
957 error messages, which we should not issue now because we are just
958 trying to find a conversion operator. Therefore, we use NULL,
959 cast to the appropriate type. */
960 arglist
= build_int_cst (build_pointer_type (s
), 0);
961 arglist
= build_tree_list (NULL_TREE
, arglist
);
963 t
= TREE_TYPE (reference_type
);
967 tree fns
= TREE_VALUE (conversions
);
969 for (; fns
; fns
= OVL_NEXT (fns
))
971 tree f
= OVL_CURRENT (fns
);
972 tree t2
= TREE_TYPE (TREE_TYPE (f
));
976 /* If this is a template function, try to get an exact
978 if (TREE_CODE (f
) == TEMPLATE_DECL
)
980 cand
= add_template_candidate (&candidates
,
986 TREE_PURPOSE (conversions
),
992 /* Now, see if the conversion function really returns
993 an lvalue of the appropriate type. From the
994 point of view of unification, simply returning an
995 rvalue of the right type is good enough. */
997 t2
= TREE_TYPE (TREE_TYPE (f
));
998 if (TREE_CODE (t2
) != REFERENCE_TYPE
999 || !reference_compatible_p (t
, TREE_TYPE (t2
)))
1001 candidates
= candidates
->next
;
1006 else if (TREE_CODE (t2
) == REFERENCE_TYPE
1007 && reference_compatible_p (t
, TREE_TYPE (t2
)))
1008 cand
= add_function_candidate (&candidates
, f
, s
, arglist
,
1010 TREE_PURPOSE (conversions
),
1015 conversion
*identity_conv
;
1016 /* Build a standard conversion sequence indicating the
1017 binding from the reference type returned by the
1018 function to the desired REFERENCE_TYPE. */
1020 = build_identity_conv (TREE_TYPE (TREE_TYPE
1021 (TREE_TYPE (cand
->fn
))),
1024 = (direct_reference_binding
1025 (reference_type
, identity_conv
));
1026 cand
->second_conv
->rvaluedness_matches_p
1027 = TYPE_REF_IS_RVALUE (TREE_TYPE (TREE_TYPE (cand
->fn
)))
1028 == TYPE_REF_IS_RVALUE (reference_type
);
1029 cand
->second_conv
->bad_p
|= cand
->convs
[0]->bad_p
;
1032 conversions
= TREE_CHAIN (conversions
);
1035 candidates
= splice_viable (candidates
, pedantic
, &any_viable_p
);
1036 /* If none of the conversion functions worked out, let our caller
1041 cand
= tourney (candidates
);
1045 /* Now that we know that this is the function we're going to use fix
1046 the dummy first argument. */
1047 cand
->args
= tree_cons (NULL_TREE
,
1049 TREE_CHAIN (cand
->args
));
1051 /* Build a user-defined conversion sequence representing the
1053 conv
= build_conv (ck_user
,
1054 TREE_TYPE (TREE_TYPE (cand
->fn
)),
1055 build_identity_conv (TREE_TYPE (expr
), expr
));
1058 /* Merge it with the standard conversion sequence from the
1059 conversion function's return type to the desired type. */
1060 cand
->second_conv
= merge_conversion_sequences (conv
, cand
->second_conv
);
1062 if (cand
->viable
== -1)
1065 return cand
->second_conv
;
1068 /* A reference of the indicated TYPE is being bound directly to the
1069 expression represented by the implicit conversion sequence CONV.
1070 Return a conversion sequence for this binding. */
1073 direct_reference_binding (tree type
, conversion
*conv
)
1077 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
1078 gcc_assert (TREE_CODE (conv
->type
) != REFERENCE_TYPE
);
1080 t
= TREE_TYPE (type
);
1084 When a parameter of reference type binds directly
1085 (_dcl.init.ref_) to an argument expression, the implicit
1086 conversion sequence is the identity conversion, unless the
1087 argument expression has a type that is a derived class of the
1088 parameter type, in which case the implicit conversion sequence is
1089 a derived-to-base Conversion.
1091 If the parameter binds directly to the result of applying a
1092 conversion function to the argument expression, the implicit
1093 conversion sequence is a user-defined conversion sequence
1094 (_over.ics.user_), with the second standard conversion sequence
1095 either an identity conversion or, if the conversion function
1096 returns an entity of a type that is a derived class of the
1097 parameter type, a derived-to-base conversion. */
1098 if (!same_type_ignoring_top_level_qualifiers_p (t
, conv
->type
))
1100 /* Represent the derived-to-base conversion. */
1101 conv
= build_conv (ck_base
, t
, conv
);
1102 /* We will actually be binding to the base-class subobject in
1103 the derived class, so we mark this conversion appropriately.
1104 That way, convert_like knows not to generate a temporary. */
1105 conv
->need_temporary_p
= false;
1107 return build_conv (ck_ref_bind
, type
, conv
);
1110 /* Returns the conversion path from type FROM to reference type TO for
1111 purposes of reference binding. For lvalue binding, either pass a
1112 reference type to FROM or an lvalue expression to EXPR. If the
1113 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1114 the conversion returned. If C_CAST_P is true, this
1115 conversion is coming from a C-style cast. */
1118 reference_binding (tree rto
, tree rfrom
, tree expr
, bool c_cast_p
, int flags
)
1120 conversion
*conv
= NULL
;
1121 tree to
= TREE_TYPE (rto
);
1125 cp_lvalue_kind lvalue_p
= clk_none
;
1127 if (TREE_CODE (to
) == FUNCTION_TYPE
&& expr
&& type_unknown_p (expr
))
1129 expr
= instantiate_type (to
, expr
, tf_none
);
1130 if (expr
== error_mark_node
)
1132 from
= TREE_TYPE (expr
);
1135 if (TREE_CODE (from
) == REFERENCE_TYPE
)
1137 /* Anything with reference type is an lvalue. */
1138 lvalue_p
= clk_ordinary
;
1139 from
= TREE_TYPE (from
);
1142 lvalue_p
= real_lvalue_p (expr
);
1144 /* Figure out whether or not the types are reference-related and
1145 reference compatible. We have do do this after stripping
1146 references from FROM. */
1147 related_p
= reference_related_p (to
, from
);
1148 /* If this is a C cast, first convert to an appropriately qualified
1149 type, so that we can later do a const_cast to the desired type. */
1150 if (related_p
&& c_cast_p
1151 && !at_least_as_qualified_p (to
, from
))
1152 to
= build_qualified_type (to
, cp_type_quals (from
));
1153 compatible_p
= reference_compatible_p (to
, from
);
1155 /* Directly bind reference when target expression's type is compatible with
1156 the reference and expression is an lvalue. In C++0x, the wording in
1157 [8.5.3/5 dcl.init.ref] is changed to also allow direct bindings for const
1158 and rvalue references to rvalues of compatible class type, as part of
1162 || ((cxx_dialect
!= cxx98
)
1163 && (CP_TYPE_CONST_NON_VOLATILE_P(to
) || TYPE_REF_IS_RVALUE (rto
))
1164 && CLASS_TYPE_P (from
))))
1168 If the initializer expression
1170 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1171 is reference-compatible with "cv2 T2,"
1173 the reference is bound directly to the initializer expression
1175 conv
= build_identity_conv (from
, expr
);
1176 conv
= direct_reference_binding (rto
, conv
);
1178 if (flags
& LOOKUP_PREFER_RVALUE
)
1179 /* The top-level caller requested that we pretend that the lvalue
1180 be treated as an rvalue. */
1181 conv
->rvaluedness_matches_p
= TYPE_REF_IS_RVALUE (rto
);
1183 conv
->rvaluedness_matches_p
1184 = (TYPE_REF_IS_RVALUE (rto
) == !lvalue_p
);
1186 if ((lvalue_p
& clk_bitfield
) != 0
1187 || ((lvalue_p
& clk_packed
) != 0 && !TYPE_PACKED (to
)))
1188 /* For the purposes of overload resolution, we ignore the fact
1189 this expression is a bitfield or packed field. (In particular,
1190 [over.ics.ref] says specifically that a function with a
1191 non-const reference parameter is viable even if the
1192 argument is a bitfield.)
1194 However, when we actually call the function we must create
1195 a temporary to which to bind the reference. If the
1196 reference is volatile, or isn't const, then we cannot make
1197 a temporary, so we just issue an error when the conversion
1199 conv
->need_temporary_p
= true;
1203 /* [class.conv.fct] A conversion function is never used to convert a
1204 (possibly cv-qualified) object to the (possibly cv-qualified) same
1205 object type (or a reference to it), to a (possibly cv-qualified) base
1206 class of that type (or a reference to it).... */
1207 else if (CLASS_TYPE_P (from
) && !related_p
1208 && !(flags
& LOOKUP_NO_CONVERSION
))
1212 If the initializer expression
1214 -- has a class type (i.e., T2 is a class type) can be
1215 implicitly converted to an lvalue of type "cv3 T3," where
1216 "cv1 T1" is reference-compatible with "cv3 T3". (this
1217 conversion is selected by enumerating the applicable
1218 conversion functions (_over.match.ref_) and choosing the
1219 best one through overload resolution. (_over.match_).
1221 the reference is bound to the lvalue result of the conversion
1222 in the second case. */
1223 conv
= convert_class_to_reference (rto
, from
, expr
);
1228 /* From this point on, we conceptually need temporaries, even if we
1229 elide them. Only the cases above are "direct bindings". */
1230 if (flags
& LOOKUP_NO_TEMP_BIND
)
1235 When a parameter of reference type is not bound directly to an
1236 argument expression, the conversion sequence is the one required
1237 to convert the argument expression to the underlying type of the
1238 reference according to _over.best.ics_. Conceptually, this
1239 conversion sequence corresponds to copy-initializing a temporary
1240 of the underlying type with the argument expression. Any
1241 difference in top-level cv-qualification is subsumed by the
1242 initialization itself and does not constitute a conversion. */
1246 Otherwise, the reference shall be to a non-volatile const type.
1248 Under C++0x, [8.5.3/5 dcl.init.ref] it may also be an rvalue reference */
1249 if (!CP_TYPE_CONST_NON_VOLATILE_P (to
) && !TYPE_REF_IS_RVALUE (rto
))
1254 If the initializer expression is an rvalue, with T2 a class type,
1255 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1256 is bound in one of the following ways:
1258 -- The reference is bound to the object represented by the rvalue
1259 or to a sub-object within that object.
1263 We use the first alternative. The implicit conversion sequence
1264 is supposed to be same as we would obtain by generating a
1265 temporary. Fortunately, if the types are reference compatible,
1266 then this is either an identity conversion or the derived-to-base
1267 conversion, just as for direct binding. */
1268 if (CLASS_TYPE_P (from
) && compatible_p
)
1270 conv
= build_identity_conv (from
, expr
);
1271 conv
= direct_reference_binding (rto
, conv
);
1272 conv
->rvaluedness_matches_p
= TYPE_REF_IS_RVALUE (rto
);
1273 if (!(flags
& LOOKUP_CONSTRUCTOR_CALLABLE
))
1274 conv
->u
.next
->check_copy_constructor_p
= true;
1280 Otherwise, a temporary of type "cv1 T1" is created and
1281 initialized from the initializer expression using the rules for a
1282 non-reference copy initialization. If T1 is reference-related to
1283 T2, cv1 must be the same cv-qualification as, or greater
1284 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1285 if (related_p
&& !at_least_as_qualified_p (to
, from
))
1288 conv
= implicit_conversion (to
, from
, expr
, c_cast_p
,
1293 conv
= build_conv (ck_ref_bind
, rto
, conv
);
1294 /* This reference binding, unlike those above, requires the
1295 creation of a temporary. */
1296 conv
->need_temporary_p
= true;
1297 conv
->rvaluedness_matches_p
= TYPE_REF_IS_RVALUE (rto
);
1302 /* Returns the implicit conversion sequence (see [over.ics]) from type
1303 FROM to type TO. The optional expression EXPR may affect the
1304 conversion. FLAGS are the usual overloading flags. Only
1305 LOOKUP_NO_CONVERSION is significant. If C_CAST_P is true, this
1306 conversion is coming from a C-style cast. */
1309 implicit_conversion (tree to
, tree from
, tree expr
, bool c_cast_p
,
1314 if (from
== error_mark_node
|| to
== error_mark_node
1315 || expr
== error_mark_node
)
1318 if (TREE_CODE (to
) == REFERENCE_TYPE
)
1319 conv
= reference_binding (to
, from
, expr
, c_cast_p
, flags
);
1321 conv
= standard_conversion (to
, from
, expr
, c_cast_p
, flags
);
1326 if (expr
!= NULL_TREE
1327 && (IS_AGGR_TYPE (from
)
1328 || IS_AGGR_TYPE (to
))
1329 && (flags
& LOOKUP_NO_CONVERSION
) == 0)
1331 struct z_candidate
*cand
;
1333 cand
= build_user_type_conversion_1
1334 (to
, expr
, LOOKUP_ONLYCONVERTING
);
1336 conv
= cand
->second_conv
;
1338 /* We used to try to bind a reference to a temporary here, but that
1339 is now handled after the recursive call to this function at the end
1340 of reference_binding. */
1347 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1350 static struct z_candidate
*
1351 add_candidate (struct z_candidate
**candidates
,
1353 size_t num_convs
, conversion
**convs
,
1354 tree access_path
, tree conversion_path
,
1357 struct z_candidate
*cand
= (struct z_candidate
*)
1358 conversion_obstack_alloc (sizeof (struct z_candidate
));
1362 cand
->convs
= convs
;
1363 cand
->num_convs
= num_convs
;
1364 cand
->access_path
= access_path
;
1365 cand
->conversion_path
= conversion_path
;
1366 cand
->viable
= viable
;
1367 cand
->next
= *candidates
;
1373 /* Create an overload candidate for the function or method FN called with
1374 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
1375 to implicit_conversion.
1377 CTYPE, if non-NULL, is the type we want to pretend this function
1378 comes from for purposes of overload resolution. */
1380 static struct z_candidate
*
1381 add_function_candidate (struct z_candidate
**candidates
,
1382 tree fn
, tree ctype
, tree arglist
,
1383 tree access_path
, tree conversion_path
,
1386 tree parmlist
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1389 tree parmnode
, argnode
;
1393 /* At this point we should not see any functions which haven't been
1394 explicitly declared, except for friend functions which will have
1395 been found using argument dependent lookup. */
1396 gcc_assert (!DECL_ANTICIPATED (fn
) || DECL_HIDDEN_FRIEND_P (fn
));
1398 /* The `this', `in_chrg' and VTT arguments to constructors are not
1399 considered in overload resolution. */
1400 if (DECL_CONSTRUCTOR_P (fn
))
1402 parmlist
= skip_artificial_parms_for (fn
, parmlist
);
1403 orig_arglist
= arglist
;
1404 arglist
= skip_artificial_parms_for (fn
, arglist
);
1407 orig_arglist
= arglist
;
1409 len
= list_length (arglist
);
1410 convs
= alloc_conversions (len
);
1412 /* 13.3.2 - Viable functions [over.match.viable]
1413 First, to be a viable function, a candidate function shall have enough
1414 parameters to agree in number with the arguments in the list.
1416 We need to check this first; otherwise, checking the ICSes might cause
1417 us to produce an ill-formed template instantiation. */
1419 parmnode
= parmlist
;
1420 for (i
= 0; i
< len
; ++i
)
1422 if (parmnode
== NULL_TREE
|| parmnode
== void_list_node
)
1424 parmnode
= TREE_CHAIN (parmnode
);
1427 if (i
< len
&& parmnode
)
1430 /* Make sure there are default args for the rest of the parms. */
1431 else if (!sufficient_parms_p (parmnode
))
1437 /* Second, for F to be a viable function, there shall exist for each
1438 argument an implicit conversion sequence that converts that argument
1439 to the corresponding parameter of F. */
1441 parmnode
= parmlist
;
1444 for (i
= 0; i
< len
; ++i
)
1446 tree arg
= TREE_VALUE (argnode
);
1447 tree argtype
= lvalue_type (arg
);
1451 if (parmnode
== void_list_node
)
1454 is_this
= (i
== 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
)
1455 && ! DECL_CONSTRUCTOR_P (fn
));
1459 tree parmtype
= TREE_VALUE (parmnode
);
1461 /* The type of the implicit object parameter ('this') for
1462 overload resolution is not always the same as for the
1463 function itself; conversion functions are considered to
1464 be members of the class being converted, and functions
1465 introduced by a using-declaration are considered to be
1466 members of the class that uses them.
1468 Since build_over_call ignores the ICS for the `this'
1469 parameter, we can just change the parm type. */
1470 if (ctype
&& is_this
)
1473 = build_qualified_type (ctype
,
1474 TYPE_QUALS (TREE_TYPE (parmtype
)));
1475 parmtype
= build_pointer_type (parmtype
);
1478 t
= implicit_conversion (parmtype
, argtype
, arg
,
1479 /*c_cast_p=*/false, flags
);
1483 t
= build_identity_conv (argtype
, arg
);
1484 t
->ellipsis_p
= true;
1501 parmnode
= TREE_CHAIN (parmnode
);
1502 argnode
= TREE_CHAIN (argnode
);
1506 return add_candidate (candidates
, fn
, orig_arglist
, len
, convs
,
1507 access_path
, conversion_path
, viable
);
1510 /* Create an overload candidate for the conversion function FN which will
1511 be invoked for expression OBJ, producing a pointer-to-function which
1512 will in turn be called with the argument list ARGLIST, and add it to
1513 CANDIDATES. FLAGS is passed on to implicit_conversion.
1515 Actually, we don't really care about FN; we care about the type it
1516 converts to. There may be multiple conversion functions that will
1517 convert to that type, and we rely on build_user_type_conversion_1 to
1518 choose the best one; so when we create our candidate, we record the type
1519 instead of the function. */
1521 static struct z_candidate
*
1522 add_conv_candidate (struct z_candidate
**candidates
, tree fn
, tree obj
,
1523 tree arglist
, tree access_path
, tree conversion_path
)
1525 tree totype
= TREE_TYPE (TREE_TYPE (fn
));
1526 int i
, len
, viable
, flags
;
1527 tree parmlist
, parmnode
, argnode
;
1530 for (parmlist
= totype
; TREE_CODE (parmlist
) != FUNCTION_TYPE
; )
1531 parmlist
= TREE_TYPE (parmlist
);
1532 parmlist
= TYPE_ARG_TYPES (parmlist
);
1534 len
= list_length (arglist
) + 1;
1535 convs
= alloc_conversions (len
);
1536 parmnode
= parmlist
;
1539 flags
= LOOKUP_NORMAL
;
1541 /* Don't bother looking up the same type twice. */
1542 if (*candidates
&& (*candidates
)->fn
== totype
)
1545 for (i
= 0; i
< len
; ++i
)
1547 tree arg
= i
== 0 ? obj
: TREE_VALUE (argnode
);
1548 tree argtype
= lvalue_type (arg
);
1552 t
= implicit_conversion (totype
, argtype
, arg
, /*c_cast_p=*/false,
1554 else if (parmnode
== void_list_node
)
1557 t
= implicit_conversion (TREE_VALUE (parmnode
), argtype
, arg
,
1558 /*c_cast_p=*/false, flags
);
1561 t
= build_identity_conv (argtype
, arg
);
1562 t
->ellipsis_p
= true;
1576 parmnode
= TREE_CHAIN (parmnode
);
1577 argnode
= TREE_CHAIN (argnode
);
1583 if (!sufficient_parms_p (parmnode
))
1586 return add_candidate (candidates
, totype
, arglist
, len
, convs
,
1587 access_path
, conversion_path
, viable
);
1591 build_builtin_candidate (struct z_candidate
**candidates
, tree fnname
,
1592 tree type1
, tree type2
, tree
*args
, tree
*argtypes
,
1604 num_convs
= args
[2] ? 3 : (args
[1] ? 2 : 1);
1605 convs
= alloc_conversions (num_convs
);
1607 for (i
= 0; i
< 2; ++i
)
1612 t
= implicit_conversion (types
[i
], argtypes
[i
], args
[i
],
1613 /*c_cast_p=*/false, flags
);
1617 /* We need something for printing the candidate. */
1618 t
= build_identity_conv (types
[i
], NULL_TREE
);
1625 /* For COND_EXPR we rearranged the arguments; undo that now. */
1628 convs
[2] = convs
[1];
1629 convs
[1] = convs
[0];
1630 t
= implicit_conversion (boolean_type_node
, argtypes
[2], args
[2],
1631 /*c_cast_p=*/false, flags
);
1638 add_candidate (candidates
, fnname
, /*args=*/NULL_TREE
,
1640 /*access_path=*/NULL_TREE
,
1641 /*conversion_path=*/NULL_TREE
,
1646 is_complete (tree t
)
1648 return COMPLETE_TYPE_P (complete_type (t
));
1651 /* Returns nonzero if TYPE is a promoted arithmetic type. */
1654 promoted_arithmetic_type_p (tree type
)
1658 In this section, the term promoted integral type is used to refer
1659 to those integral types which are preserved by integral promotion
1660 (including e.g. int and long but excluding e.g. char).
1661 Similarly, the term promoted arithmetic type refers to promoted
1662 integral types plus floating types. */
1663 return ((INTEGRAL_TYPE_P (type
)
1664 && same_type_p (type_promotes_to (type
), type
))
1665 || TREE_CODE (type
) == REAL_TYPE
);
1668 /* Create any builtin operator overload candidates for the operator in
1669 question given the converted operand types TYPE1 and TYPE2. The other
1670 args are passed through from add_builtin_candidates to
1671 build_builtin_candidate.
1673 TYPE1 and TYPE2 may not be permissible, and we must filter them.
1674 If CODE is requires candidates operands of the same type of the kind
1675 of which TYPE1 and TYPE2 are, we add both candidates
1676 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
1679 add_builtin_candidate (struct z_candidate
**candidates
, enum tree_code code
,
1680 enum tree_code code2
, tree fnname
, tree type1
,
1681 tree type2
, tree
*args
, tree
*argtypes
, int flags
)
1685 case POSTINCREMENT_EXPR
:
1686 case POSTDECREMENT_EXPR
:
1687 args
[1] = integer_zero_node
;
1688 type2
= integer_type_node
;
1697 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1698 and VQ is either volatile or empty, there exist candidate operator
1699 functions of the form
1700 VQ T& operator++(VQ T&);
1701 T operator++(VQ T&, int);
1702 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
1703 type other than bool, and VQ is either volatile or empty, there exist
1704 candidate operator functions of the form
1705 VQ T& operator--(VQ T&);
1706 T operator--(VQ T&, int);
1707 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
1708 complete object type, and VQ is either volatile or empty, there exist
1709 candidate operator functions of the form
1710 T*VQ& operator++(T*VQ&);
1711 T*VQ& operator--(T*VQ&);
1712 T* operator++(T*VQ&, int);
1713 T* operator--(T*VQ&, int); */
1715 case POSTDECREMENT_EXPR
:
1716 case PREDECREMENT_EXPR
:
1717 if (TREE_CODE (type1
) == BOOLEAN_TYPE
)
1719 case POSTINCREMENT_EXPR
:
1720 case PREINCREMENT_EXPR
:
1721 if (ARITHMETIC_TYPE_P (type1
) || TYPE_PTROB_P (type1
))
1723 type1
= build_reference_type (type1
);
1728 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
1729 exist candidate operator functions of the form
1733 8 For every function type T, there exist candidate operator functions of
1735 T& operator*(T*); */
1738 if (TREE_CODE (type1
) == POINTER_TYPE
1739 && (TYPE_PTROB_P (type1
)
1740 || TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
))
1744 /* 9 For every type T, there exist candidate operator functions of the form
1747 10For every promoted arithmetic type T, there exist candidate operator
1748 functions of the form
1752 case UNARY_PLUS_EXPR
: /* unary + */
1753 if (TREE_CODE (type1
) == POINTER_TYPE
)
1756 if (ARITHMETIC_TYPE_P (type1
))
1760 /* 11For every promoted integral type T, there exist candidate operator
1761 functions of the form
1765 if (INTEGRAL_TYPE_P (type1
))
1769 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1770 is the same type as C2 or is a derived class of C2, T is a complete
1771 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1772 there exist candidate operator functions of the form
1773 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1774 where CV12 is the union of CV1 and CV2. */
1777 if (TREE_CODE (type1
) == POINTER_TYPE
1778 && TYPE_PTR_TO_MEMBER_P (type2
))
1780 tree c1
= TREE_TYPE (type1
);
1781 tree c2
= TYPE_PTRMEM_CLASS_TYPE (type2
);
1783 if (IS_AGGR_TYPE (c1
) && DERIVED_FROM_P (c2
, c1
)
1784 && (TYPE_PTRMEMFUNC_P (type2
)
1785 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2
))))
1790 /* 13For every pair of promoted arithmetic types L and R, there exist can-
1791 didate operator functions of the form
1796 bool operator<(L, R);
1797 bool operator>(L, R);
1798 bool operator<=(L, R);
1799 bool operator>=(L, R);
1800 bool operator==(L, R);
1801 bool operator!=(L, R);
1802 where LR is the result of the usual arithmetic conversions between
1805 14For every pair of types T and I, where T is a cv-qualified or cv-
1806 unqualified complete object type and I is a promoted integral type,
1807 there exist candidate operator functions of the form
1808 T* operator+(T*, I);
1809 T& operator[](T*, I);
1810 T* operator-(T*, I);
1811 T* operator+(I, T*);
1812 T& operator[](I, T*);
1814 15For every T, where T is a pointer to complete object type, there exist
1815 candidate operator functions of the form112)
1816 ptrdiff_t operator-(T, T);
1818 16For every pointer or enumeration type T, there exist candidate operator
1819 functions of the form
1820 bool operator<(T, T);
1821 bool operator>(T, T);
1822 bool operator<=(T, T);
1823 bool operator>=(T, T);
1824 bool operator==(T, T);
1825 bool operator!=(T, T);
1827 17For every pointer to member type T, there exist candidate operator
1828 functions of the form
1829 bool operator==(T, T);
1830 bool operator!=(T, T); */
1833 if (TYPE_PTROB_P (type1
) && TYPE_PTROB_P (type2
))
1835 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1837 type2
= ptrdiff_type_node
;
1841 case TRUNC_DIV_EXPR
:
1842 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1848 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
1849 || (TYPE_PTRMEM_P (type1
) && TYPE_PTRMEM_P (type2
)))
1851 if (TYPE_PTR_TO_MEMBER_P (type1
) && null_ptr_cst_p (args
[1]))
1856 if (TYPE_PTR_TO_MEMBER_P (type2
) && null_ptr_cst_p (args
[0]))
1868 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1870 if (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
1872 if (TREE_CODE (type1
) == ENUMERAL_TYPE
1873 && TREE_CODE (type2
) == ENUMERAL_TYPE
)
1875 if (TYPE_PTR_P (type1
)
1876 && null_ptr_cst_p (args
[1])
1877 && !uses_template_parms (type1
))
1882 if (null_ptr_cst_p (args
[0])
1883 && TYPE_PTR_P (type2
)
1884 && !uses_template_parms (type2
))
1892 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1895 if (INTEGRAL_TYPE_P (type1
) && TYPE_PTROB_P (type2
))
1897 type1
= ptrdiff_type_node
;
1900 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1902 type2
= ptrdiff_type_node
;
1907 /* 18For every pair of promoted integral types L and R, there exist candi-
1908 date operator functions of the form
1915 where LR is the result of the usual arithmetic conversions between
1918 case TRUNC_MOD_EXPR
:
1924 if (INTEGRAL_TYPE_P (type1
) && INTEGRAL_TYPE_P (type2
))
1928 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1929 type, VQ is either volatile or empty, and R is a promoted arithmetic
1930 type, there exist candidate operator functions of the form
1931 VQ L& operator=(VQ L&, R);
1932 VQ L& operator*=(VQ L&, R);
1933 VQ L& operator/=(VQ L&, R);
1934 VQ L& operator+=(VQ L&, R);
1935 VQ L& operator-=(VQ L&, R);
1937 20For every pair T, VQ), where T is any type and VQ is either volatile
1938 or empty, there exist candidate operator functions of the form
1939 T*VQ& operator=(T*VQ&, T*);
1941 21For every pair T, VQ), where T is a pointer to member type and VQ is
1942 either volatile or empty, there exist candidate operator functions of
1944 VQ T& operator=(VQ T&, T);
1946 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1947 unqualified complete object type, VQ is either volatile or empty, and
1948 I is a promoted integral type, there exist candidate operator func-
1950 T*VQ& operator+=(T*VQ&, I);
1951 T*VQ& operator-=(T*VQ&, I);
1953 23For every triple L, VQ, R), where L is an integral or enumeration
1954 type, VQ is either volatile or empty, and R is a promoted integral
1955 type, there exist candidate operator functions of the form
1957 VQ L& operator%=(VQ L&, R);
1958 VQ L& operator<<=(VQ L&, R);
1959 VQ L& operator>>=(VQ L&, R);
1960 VQ L& operator&=(VQ L&, R);
1961 VQ L& operator^=(VQ L&, R);
1962 VQ L& operator|=(VQ L&, R); */
1969 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1971 type2
= ptrdiff_type_node
;
1975 case TRUNC_DIV_EXPR
:
1976 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1980 case TRUNC_MOD_EXPR
:
1986 if (INTEGRAL_TYPE_P (type1
) && INTEGRAL_TYPE_P (type2
))
1991 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1993 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
1994 || (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
1995 || (TYPE_PTRMEM_P (type1
) && TYPE_PTRMEM_P (type2
))
1996 || ((TYPE_PTRMEMFUNC_P (type1
)
1997 || TREE_CODE (type1
) == POINTER_TYPE
)
1998 && null_ptr_cst_p (args
[1])))
2008 type1
= build_reference_type (type1
);
2014 For every pair of promoted arithmetic types L and R, there
2015 exist candidate operator functions of the form
2017 LR operator?(bool, L, R);
2019 where LR is the result of the usual arithmetic conversions
2020 between types L and R.
2022 For every type T, where T is a pointer or pointer-to-member
2023 type, there exist candidate operator functions of the form T
2024 operator?(bool, T, T); */
2026 if (promoted_arithmetic_type_p (type1
)
2027 && promoted_arithmetic_type_p (type2
))
2031 /* Otherwise, the types should be pointers. */
2032 if (!(TYPE_PTR_P (type1
) || TYPE_PTR_TO_MEMBER_P (type1
))
2033 || !(TYPE_PTR_P (type2
) || TYPE_PTR_TO_MEMBER_P (type2
)))
2036 /* We don't check that the two types are the same; the logic
2037 below will actually create two candidates; one in which both
2038 parameter types are TYPE1, and one in which both parameter
2046 /* If we're dealing with two pointer types or two enumeral types,
2047 we need candidates for both of them. */
2048 if (type2
&& !same_type_p (type1
, type2
)
2049 && TREE_CODE (type1
) == TREE_CODE (type2
)
2050 && (TREE_CODE (type1
) == REFERENCE_TYPE
2051 || (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
2052 || (TYPE_PTRMEM_P (type1
) && TYPE_PTRMEM_P (type2
))
2053 || TYPE_PTRMEMFUNC_P (type1
)
2054 || IS_AGGR_TYPE (type1
)
2055 || TREE_CODE (type1
) == ENUMERAL_TYPE
))
2057 build_builtin_candidate
2058 (candidates
, fnname
, type1
, type1
, args
, argtypes
, flags
);
2059 build_builtin_candidate
2060 (candidates
, fnname
, type2
, type2
, args
, argtypes
, flags
);
2064 build_builtin_candidate
2065 (candidates
, fnname
, type1
, type2
, args
, argtypes
, flags
);
2069 type_decays_to (tree type
)
2071 if (TREE_CODE (type
) == ARRAY_TYPE
)
2072 return build_pointer_type (TREE_TYPE (type
));
2073 if (TREE_CODE (type
) == FUNCTION_TYPE
)
2074 return build_pointer_type (type
);
2078 /* There are three conditions of builtin candidates:
2080 1) bool-taking candidates. These are the same regardless of the input.
2081 2) pointer-pair taking candidates. These are generated for each type
2082 one of the input types converts to.
2083 3) arithmetic candidates. According to the standard, we should generate
2084 all of these, but I'm trying not to...
2086 Here we generate a superset of the possible candidates for this particular
2087 case. That is a subset of the full set the standard defines, plus some
2088 other cases which the standard disallows. add_builtin_candidate will
2089 filter out the invalid set. */
2092 add_builtin_candidates (struct z_candidate
**candidates
, enum tree_code code
,
2093 enum tree_code code2
, tree fnname
, tree
*args
,
2098 tree type
, argtypes
[3];
2099 /* TYPES[i] is the set of possible builtin-operator parameter types
2100 we will consider for the Ith argument. These are represented as
2101 a TREE_LIST; the TREE_VALUE of each node is the potential
2105 for (i
= 0; i
< 3; ++i
)
2108 argtypes
[i
] = lvalue_type (args
[i
]);
2110 argtypes
[i
] = NULL_TREE
;
2115 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2116 and VQ is either volatile or empty, there exist candidate operator
2117 functions of the form
2118 VQ T& operator++(VQ T&); */
2120 case POSTINCREMENT_EXPR
:
2121 case PREINCREMENT_EXPR
:
2122 case POSTDECREMENT_EXPR
:
2123 case PREDECREMENT_EXPR
:
2128 /* 24There also exist candidate operator functions of the form
2129 bool operator!(bool);
2130 bool operator&&(bool, bool);
2131 bool operator||(bool, bool); */
2133 case TRUTH_NOT_EXPR
:
2134 build_builtin_candidate
2135 (candidates
, fnname
, boolean_type_node
,
2136 NULL_TREE
, args
, argtypes
, flags
);
2139 case TRUTH_ORIF_EXPR
:
2140 case TRUTH_ANDIF_EXPR
:
2141 build_builtin_candidate
2142 (candidates
, fnname
, boolean_type_node
,
2143 boolean_type_node
, args
, argtypes
, flags
);
2165 types
[0] = types
[1] = NULL_TREE
;
2167 for (i
= 0; i
< 2; ++i
)
2171 else if (IS_AGGR_TYPE (argtypes
[i
]))
2175 if (i
== 0 && code
== MODIFY_EXPR
&& code2
== NOP_EXPR
)
2178 convs
= lookup_conversions (argtypes
[i
]);
2180 if (code
== COND_EXPR
)
2182 if (real_lvalue_p (args
[i
]))
2183 types
[i
] = tree_cons
2184 (NULL_TREE
, build_reference_type (argtypes
[i
]), types
[i
]);
2186 types
[i
] = tree_cons
2187 (NULL_TREE
, TYPE_MAIN_VARIANT (argtypes
[i
]), types
[i
]);
2193 for (; convs
; convs
= TREE_CHAIN (convs
))
2195 type
= TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs
))));
2198 && (TREE_CODE (type
) != REFERENCE_TYPE
2199 || CP_TYPE_CONST_P (TREE_TYPE (type
))))
2202 if (code
== COND_EXPR
&& TREE_CODE (type
) == REFERENCE_TYPE
)
2203 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2205 type
= non_reference (type
);
2206 if (i
!= 0 || ! ref1
)
2208 type
= TYPE_MAIN_VARIANT (type_decays_to (type
));
2209 if (enum_p
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
2210 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2211 if (INTEGRAL_TYPE_P (type
))
2212 type
= type_promotes_to (type
);
2215 if (! value_member (type
, types
[i
]))
2216 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2221 if (code
== COND_EXPR
&& real_lvalue_p (args
[i
]))
2222 types
[i
] = tree_cons
2223 (NULL_TREE
, build_reference_type (argtypes
[i
]), types
[i
]);
2224 type
= non_reference (argtypes
[i
]);
2225 if (i
!= 0 || ! ref1
)
2227 type
= TYPE_MAIN_VARIANT (type_decays_to (type
));
2228 if (enum_p
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
2229 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2230 if (INTEGRAL_TYPE_P (type
))
2231 type
= type_promotes_to (type
);
2233 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2237 /* Run through the possible parameter types of both arguments,
2238 creating candidates with those parameter types. */
2239 for (; types
[0]; types
[0] = TREE_CHAIN (types
[0]))
2242 for (type
= types
[1]; type
; type
= TREE_CHAIN (type
))
2243 add_builtin_candidate
2244 (candidates
, code
, code2
, fnname
, TREE_VALUE (types
[0]),
2245 TREE_VALUE (type
), args
, argtypes
, flags
);
2247 add_builtin_candidate
2248 (candidates
, code
, code2
, fnname
, TREE_VALUE (types
[0]),
2249 NULL_TREE
, args
, argtypes
, flags
);
2254 /* If TMPL can be successfully instantiated as indicated by
2255 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2257 TMPL is the template. EXPLICIT_TARGS are any explicit template
2258 arguments. ARGLIST is the arguments provided at the call-site.
2259 The RETURN_TYPE is the desired type for conversion operators. If
2260 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2261 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
2262 add_conv_candidate. */
2264 static struct z_candidate
*
2265 add_template_candidate_real (struct z_candidate
**candidates
, tree tmpl
,
2266 tree ctype
, tree explicit_targs
, tree arglist
,
2267 tree return_type
, tree access_path
,
2268 tree conversion_path
, int flags
, tree obj
,
2269 unification_kind_t strict
)
2271 int ntparms
= DECL_NTPARMS (tmpl
);
2272 tree targs
= make_tree_vec (ntparms
);
2273 tree args_without_in_chrg
= arglist
;
2274 struct z_candidate
*cand
;
2278 /* We don't do deduction on the in-charge parameter, the VTT
2279 parameter or 'this'. */
2280 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl
))
2281 args_without_in_chrg
= TREE_CHAIN (args_without_in_chrg
);
2283 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl
)
2284 || DECL_BASE_CONSTRUCTOR_P (tmpl
))
2285 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl
)))
2286 args_without_in_chrg
= TREE_CHAIN (args_without_in_chrg
);
2288 i
= fn_type_unification (tmpl
, explicit_targs
, targs
,
2289 args_without_in_chrg
,
2290 return_type
, strict
, flags
);
2295 fn
= instantiate_template (tmpl
, targs
, tf_none
);
2296 if (fn
== error_mark_node
)
2301 A member function template is never instantiated to perform the
2302 copy of a class object to an object of its class type.
2304 It's a little unclear what this means; the standard explicitly
2305 does allow a template to be used to copy a class. For example,
2310 template <class T> A(const T&);
2313 void g () { A a (f ()); }
2315 the member template will be used to make the copy. The section
2316 quoted above appears in the paragraph that forbids constructors
2317 whose only parameter is (a possibly cv-qualified variant of) the
2318 class type, and a logical interpretation is that the intent was
2319 to forbid the instantiation of member templates which would then
2321 if (DECL_CONSTRUCTOR_P (fn
) && list_length (arglist
) == 2)
2323 tree arg_types
= FUNCTION_FIRST_USER_PARMTYPE (fn
);
2324 if (arg_types
&& same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types
)),
2329 if (obj
!= NULL_TREE
)
2330 /* Aha, this is a conversion function. */
2331 cand
= add_conv_candidate (candidates
, fn
, obj
, access_path
,
2332 conversion_path
, arglist
);
2334 cand
= add_function_candidate (candidates
, fn
, ctype
,
2335 arglist
, access_path
,
2336 conversion_path
, flags
);
2337 if (DECL_TI_TEMPLATE (fn
) != tmpl
)
2338 /* This situation can occur if a member template of a template
2339 class is specialized. Then, instantiate_template might return
2340 an instantiation of the specialization, in which case the
2341 DECL_TI_TEMPLATE field will point at the original
2342 specialization. For example:
2344 template <class T> struct S { template <class U> void f(U);
2345 template <> void f(int) {}; };
2349 Here, TMPL will be template <class U> S<double>::f(U).
2350 And, instantiate template will give us the specialization
2351 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2352 for this will point at template <class T> template <> S<T>::f(int),
2353 so that we can find the definition. For the purposes of
2354 overload resolution, however, we want the original TMPL. */
2355 cand
->template_decl
= tree_cons (tmpl
, targs
, NULL_TREE
);
2357 cand
->template_decl
= DECL_TEMPLATE_INFO (fn
);
2363 static struct z_candidate
*
2364 add_template_candidate (struct z_candidate
**candidates
, tree tmpl
, tree ctype
,
2365 tree explicit_targs
, tree arglist
, tree return_type
,
2366 tree access_path
, tree conversion_path
, int flags
,
2367 unification_kind_t strict
)
2370 add_template_candidate_real (candidates
, tmpl
, ctype
,
2371 explicit_targs
, arglist
, return_type
,
2372 access_path
, conversion_path
,
2373 flags
, NULL_TREE
, strict
);
2377 static struct z_candidate
*
2378 add_template_conv_candidate (struct z_candidate
**candidates
, tree tmpl
,
2379 tree obj
, tree arglist
, tree return_type
,
2380 tree access_path
, tree conversion_path
)
2383 add_template_candidate_real (candidates
, tmpl
, NULL_TREE
, NULL_TREE
,
2384 arglist
, return_type
, access_path
,
2385 conversion_path
, 0, obj
, DEDUCE_CONV
);
2388 /* The CANDS are the set of candidates that were considered for
2389 overload resolution. Return the set of viable candidates. If none
2390 of the candidates were viable, set *ANY_VIABLE_P to true. STRICT_P
2391 is true if a candidate should be considered viable only if it is
2394 static struct z_candidate
*
2395 splice_viable (struct z_candidate
*cands
,
2399 struct z_candidate
*viable
;
2400 struct z_candidate
**last_viable
;
2401 struct z_candidate
**cand
;
2404 last_viable
= &viable
;
2405 *any_viable_p
= false;
2410 struct z_candidate
*c
= *cand
;
2411 if (strict_p
? c
->viable
== 1 : c
->viable
)
2416 last_viable
= &c
->next
;
2417 *any_viable_p
= true;
2423 return viable
? viable
: cands
;
2427 any_strictly_viable (struct z_candidate
*cands
)
2429 for (; cands
; cands
= cands
->next
)
2430 if (cands
->viable
== 1)
2435 /* OBJ is being used in an expression like "OBJ.f (...)". In other
2436 words, it is about to become the "this" pointer for a member
2437 function call. Take the address of the object. */
2440 build_this (tree obj
)
2442 /* In a template, we are only concerned about the type of the
2443 expression, so we can take a shortcut. */
2444 if (processing_template_decl
)
2445 return build_address (obj
);
2447 return build_unary_op (ADDR_EXPR
, obj
, 0);
2450 /* Returns true iff functions are equivalent. Equivalent functions are
2451 not '==' only if one is a function-local extern function or if
2452 both are extern "C". */
2455 equal_functions (tree fn1
, tree fn2
)
2457 if (DECL_LOCAL_FUNCTION_P (fn1
) || DECL_LOCAL_FUNCTION_P (fn2
)
2458 || DECL_EXTERN_C_FUNCTION_P (fn1
))
2459 return decls_match (fn1
, fn2
);
2463 /* Print information about one overload candidate CANDIDATE. MSGSTR
2464 is the text to print before the candidate itself.
2466 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
2467 to have been run through gettext by the caller. This wart makes
2468 life simpler in print_z_candidates and for the translators. */
2471 print_z_candidate (const char *msgstr
, struct z_candidate
*candidate
)
2473 if (TREE_CODE (candidate
->fn
) == IDENTIFIER_NODE
)
2475 if (candidate
->num_convs
== 3)
2476 inform ("%s %D(%T, %T, %T) <built-in>", msgstr
, candidate
->fn
,
2477 candidate
->convs
[0]->type
,
2478 candidate
->convs
[1]->type
,
2479 candidate
->convs
[2]->type
);
2480 else if (candidate
->num_convs
== 2)
2481 inform ("%s %D(%T, %T) <built-in>", msgstr
, candidate
->fn
,
2482 candidate
->convs
[0]->type
,
2483 candidate
->convs
[1]->type
);
2485 inform ("%s %D(%T) <built-in>", msgstr
, candidate
->fn
,
2486 candidate
->convs
[0]->type
);
2488 else if (TYPE_P (candidate
->fn
))
2489 inform ("%s %T <conversion>", msgstr
, candidate
->fn
);
2490 else if (candidate
->viable
== -1)
2491 inform ("%s %+#D <near match>", msgstr
, candidate
->fn
);
2493 inform ("%s %+#D", msgstr
, candidate
->fn
);
2497 print_z_candidates (struct z_candidate
*candidates
)
2500 struct z_candidate
*cand1
;
2501 struct z_candidate
**cand2
;
2503 /* There may be duplicates in the set of candidates. We put off
2504 checking this condition as long as possible, since we have no way
2505 to eliminate duplicates from a set of functions in less than n^2
2506 time. Now we are about to emit an error message, so it is more
2507 permissible to go slowly. */
2508 for (cand1
= candidates
; cand1
; cand1
= cand1
->next
)
2510 tree fn
= cand1
->fn
;
2511 /* Skip builtin candidates and conversion functions. */
2512 if (TREE_CODE (fn
) != FUNCTION_DECL
)
2514 cand2
= &cand1
->next
;
2517 if (TREE_CODE ((*cand2
)->fn
) == FUNCTION_DECL
2518 && equal_functions (fn
, (*cand2
)->fn
))
2519 *cand2
= (*cand2
)->next
;
2521 cand2
= &(*cand2
)->next
;
2528 str
= _("candidates are:");
2529 print_z_candidate (str
, candidates
);
2530 if (candidates
->next
)
2532 /* Indent successive candidates by the width of the translation
2533 of the above string. */
2534 size_t len
= gcc_gettext_width (str
) + 1;
2535 char *spaces
= (char *) alloca (len
);
2536 memset (spaces
, ' ', len
-1);
2537 spaces
[len
- 1] = '\0';
2539 candidates
= candidates
->next
;
2542 print_z_candidate (spaces
, candidates
);
2543 candidates
= candidates
->next
;
2549 /* USER_SEQ is a user-defined conversion sequence, beginning with a
2550 USER_CONV. STD_SEQ is the standard conversion sequence applied to
2551 the result of the conversion function to convert it to the final
2552 desired type. Merge the two sequences into a single sequence,
2553 and return the merged sequence. */
2556 merge_conversion_sequences (conversion
*user_seq
, conversion
*std_seq
)
2560 gcc_assert (user_seq
->kind
== ck_user
);
2562 /* Find the end of the second conversion sequence. */
2564 while ((*t
)->kind
!= ck_identity
)
2565 t
= &((*t
)->u
.next
);
2567 /* Replace the identity conversion with the user conversion
2571 /* The entire sequence is a user-conversion sequence. */
2572 std_seq
->user_conv_p
= true;
2577 /* Returns the best overload candidate to perform the requested
2578 conversion. This function is used for three the overloading situations
2579 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2580 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2581 per [dcl.init.ref], so we ignore temporary bindings. */
2583 static struct z_candidate
*
2584 build_user_type_conversion_1 (tree totype
, tree expr
, int flags
)
2586 struct z_candidate
*candidates
, *cand
;
2587 tree fromtype
= TREE_TYPE (expr
);
2588 tree ctors
= NULL_TREE
;
2589 tree conv_fns
= NULL_TREE
;
2590 conversion
*conv
= NULL
;
2591 tree args
= NULL_TREE
;
2594 /* We represent conversion within a hierarchy using RVALUE_CONV and
2595 BASE_CONV, as specified by [over.best.ics]; these become plain
2596 constructor calls, as specified in [dcl.init]. */
2597 gcc_assert (!IS_AGGR_TYPE (fromtype
) || !IS_AGGR_TYPE (totype
)
2598 || !DERIVED_FROM_P (totype
, fromtype
));
2600 if (IS_AGGR_TYPE (totype
))
2601 ctors
= lookup_fnfields (totype
, complete_ctor_identifier
, 0);
2603 if (IS_AGGR_TYPE (fromtype
))
2604 conv_fns
= lookup_conversions (fromtype
);
2607 flags
|= LOOKUP_NO_CONVERSION
;
2613 ctors
= BASELINK_FUNCTIONS (ctors
);
2615 t
= build_int_cst (build_pointer_type (totype
), 0);
2616 args
= build_tree_list (NULL_TREE
, expr
);
2617 /* We should never try to call the abstract or base constructor
2619 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors
))
2620 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors
)));
2621 args
= tree_cons (NULL_TREE
, t
, args
);
2623 for (; ctors
; ctors
= OVL_NEXT (ctors
))
2625 tree ctor
= OVL_CURRENT (ctors
);
2626 if (DECL_NONCONVERTING_P (ctor
))
2629 if (TREE_CODE (ctor
) == TEMPLATE_DECL
)
2630 cand
= add_template_candidate (&candidates
, ctor
, totype
,
2631 NULL_TREE
, args
, NULL_TREE
,
2632 TYPE_BINFO (totype
),
2633 TYPE_BINFO (totype
),
2637 cand
= add_function_candidate (&candidates
, ctor
, totype
,
2638 args
, TYPE_BINFO (totype
),
2639 TYPE_BINFO (totype
),
2643 cand
->second_conv
= build_identity_conv (totype
, NULL_TREE
);
2647 args
= build_tree_list (NULL_TREE
, build_this (expr
));
2649 for (; conv_fns
; conv_fns
= TREE_CHAIN (conv_fns
))
2652 tree conversion_path
= TREE_PURPOSE (conv_fns
);
2653 int convflags
= LOOKUP_NO_CONVERSION
;
2655 /* If we are called to convert to a reference type, we are trying to
2656 find an lvalue binding, so don't even consider temporaries. If
2657 we don't find an lvalue binding, the caller will try again to
2658 look for a temporary binding. */
2659 if (TREE_CODE (totype
) == REFERENCE_TYPE
)
2660 convflags
|= LOOKUP_NO_TEMP_BIND
;
2662 for (fns
= TREE_VALUE (conv_fns
); fns
; fns
= OVL_NEXT (fns
))
2664 tree fn
= OVL_CURRENT (fns
);
2666 /* [over.match.funcs] For conversion functions, the function
2667 is considered to be a member of the class of the implicit
2668 object argument for the purpose of defining the type of
2669 the implicit object parameter.
2671 So we pass fromtype as CTYPE to add_*_candidate. */
2673 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2674 cand
= add_template_candidate (&candidates
, fn
, fromtype
,
2677 TYPE_BINFO (fromtype
),
2682 cand
= add_function_candidate (&candidates
, fn
, fromtype
,
2684 TYPE_BINFO (fromtype
),
2691 = implicit_conversion (totype
,
2692 TREE_TYPE (TREE_TYPE (cand
->fn
)),
2694 /*c_cast_p=*/false, convflags
);
2696 cand
->second_conv
= ics
;
2700 else if (candidates
->viable
== 1 && ics
->bad_p
)
2706 candidates
= splice_viable (candidates
, pedantic
, &any_viable_p
);
2710 cand
= tourney (candidates
);
2713 if (flags
& LOOKUP_COMPLAIN
)
2715 error ("conversion from %qT to %qT is ambiguous",
2717 print_z_candidates (candidates
);
2720 cand
= candidates
; /* any one will do */
2721 cand
->second_conv
= build_ambiguous_conv (totype
, expr
);
2722 cand
->second_conv
->user_conv_p
= true;
2723 if (!any_strictly_viable (candidates
))
2724 cand
->second_conv
->bad_p
= true;
2725 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
2726 ambiguous conversion is no worse than another user-defined
2732 /* Build the user conversion sequence. */
2735 (DECL_CONSTRUCTOR_P (cand
->fn
)
2736 ? totype
: non_reference (TREE_TYPE (TREE_TYPE (cand
->fn
)))),
2737 build_identity_conv (TREE_TYPE (expr
), expr
));
2740 /* Combine it with the second conversion sequence. */
2741 cand
->second_conv
= merge_conversion_sequences (conv
,
2744 if (cand
->viable
== -1)
2745 cand
->second_conv
->bad_p
= true;
2751 build_user_type_conversion (tree totype
, tree expr
, int flags
)
2753 struct z_candidate
*cand
2754 = build_user_type_conversion_1 (totype
, expr
, flags
);
2758 if (cand
->second_conv
->kind
== ck_ambig
)
2759 return error_mark_node
;
2760 expr
= convert_like (cand
->second_conv
, expr
);
2761 return convert_from_reference (expr
);
2766 /* Do any initial processing on the arguments to a function call. */
2769 resolve_args (tree args
)
2772 for (t
= args
; t
; t
= TREE_CHAIN (t
))
2774 tree arg
= TREE_VALUE (t
);
2776 if (error_operand_p (arg
))
2777 return error_mark_node
;
2778 else if (VOID_TYPE_P (TREE_TYPE (arg
)))
2780 error ("invalid use of void expression");
2781 return error_mark_node
;
2783 else if (invalid_nonstatic_memfn_p (arg
))
2784 return error_mark_node
;
2789 /* Perform overload resolution on FN, which is called with the ARGS.
2791 Return the candidate function selected by overload resolution, or
2792 NULL if the event that overload resolution failed. In the case
2793 that overload resolution fails, *CANDIDATES will be the set of
2794 candidates considered, and ANY_VIABLE_P will be set to true or
2795 false to indicate whether or not any of the candidates were
2798 The ARGS should already have gone through RESOLVE_ARGS before this
2799 function is called. */
2801 static struct z_candidate
*
2802 perform_overload_resolution (tree fn
,
2804 struct z_candidate
**candidates
,
2807 struct z_candidate
*cand
;
2808 tree explicit_targs
= NULL_TREE
;
2809 int template_only
= 0;
2812 *any_viable_p
= true;
2814 /* Check FN and ARGS. */
2815 gcc_assert (TREE_CODE (fn
) == FUNCTION_DECL
2816 || TREE_CODE (fn
) == TEMPLATE_DECL
2817 || TREE_CODE (fn
) == OVERLOAD
2818 || TREE_CODE (fn
) == TEMPLATE_ID_EXPR
);
2819 gcc_assert (!args
|| TREE_CODE (args
) == TREE_LIST
);
2821 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
2823 explicit_targs
= TREE_OPERAND (fn
, 1);
2824 fn
= TREE_OPERAND (fn
, 0);
2828 /* Add the various candidate functions. */
2829 add_candidates (fn
, args
, explicit_targs
, template_only
,
2830 /*conversion_path=*/NULL_TREE
,
2831 /*access_path=*/NULL_TREE
,
2835 *candidates
= splice_viable (*candidates
, pedantic
, any_viable_p
);
2839 cand
= tourney (*candidates
);
2843 /* Return an expression for a call to FN (a namespace-scope function,
2844 or a static member function) with the ARGS. */
2847 build_new_function_call (tree fn
, tree args
, bool koenig_p
)
2849 struct z_candidate
*candidates
, *cand
;
2854 args
= resolve_args (args
);
2855 if (args
== error_mark_node
)
2856 return error_mark_node
;
2858 /* If this function was found without using argument dependent
2859 lookup, then we want to ignore any undeclared friend
2865 fn
= remove_hidden_names (fn
);
2868 error ("no matching function for call to %<%D(%A)%>",
2869 DECL_NAME (OVL_CURRENT (orig_fn
)), args
);
2870 return error_mark_node
;
2874 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2875 p
= conversion_obstack_alloc (0);
2877 cand
= perform_overload_resolution (fn
, args
, &candidates
, &any_viable_p
);
2881 if (!any_viable_p
&& candidates
&& ! candidates
->next
)
2882 return build_function_call (candidates
->fn
, args
);
2883 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
2884 fn
= TREE_OPERAND (fn
, 0);
2886 error ("no matching function for call to %<%D(%A)%>",
2887 DECL_NAME (OVL_CURRENT (fn
)), args
);
2889 error ("call of overloaded %<%D(%A)%> is ambiguous",
2890 DECL_NAME (OVL_CURRENT (fn
)), args
);
2892 print_z_candidates (candidates
);
2893 result
= error_mark_node
;
2896 result
= build_over_call (cand
, LOOKUP_NORMAL
);
2898 /* Free all the conversions we allocated. */
2899 obstack_free (&conversion_obstack
, p
);
2904 /* Build a call to a global operator new. FNNAME is the name of the
2905 operator (either "operator new" or "operator new[]") and ARGS are
2906 the arguments provided. *SIZE points to the total number of bytes
2907 required by the allocation, and is updated if that is changed here.
2908 *COOKIE_SIZE is non-NULL if a cookie should be used. If this
2909 function determines that no cookie should be used, after all,
2910 *COOKIE_SIZE is set to NULL_TREE. If FN is non-NULL, it will be
2911 set, upon return, to the allocation function called. */
2914 build_operator_new_call (tree fnname
, tree args
,
2915 tree
*size
, tree
*cookie_size
,
2919 struct z_candidate
*candidates
;
2920 struct z_candidate
*cand
;
2925 args
= tree_cons (NULL_TREE
, *size
, args
);
2926 args
= resolve_args (args
);
2927 if (args
== error_mark_node
)
2934 If this lookup fails to find the name, or if the allocated type
2935 is not a class type, the allocation function's name is looked
2936 up in the global scope.
2938 we disregard block-scope declarations of "operator new". */
2939 fns
= lookup_function_nonclass (fnname
, args
, /*block_p=*/false);
2941 /* Figure out what function is being called. */
2942 cand
= perform_overload_resolution (fns
, args
, &candidates
, &any_viable_p
);
2944 /* If no suitable function could be found, issue an error message
2949 error ("no matching function for call to %<%D(%A)%>",
2950 DECL_NAME (OVL_CURRENT (fns
)), args
);
2952 error ("call of overloaded %<%D(%A)%> is ambiguous",
2953 DECL_NAME (OVL_CURRENT (fns
)), args
);
2955 print_z_candidates (candidates
);
2956 return error_mark_node
;
2959 /* If a cookie is required, add some extra space. Whether
2960 or not a cookie is required cannot be determined until
2961 after we know which function was called. */
2964 bool use_cookie
= true;
2965 if (!abi_version_at_least (2))
2967 tree placement
= TREE_CHAIN (args
);
2968 /* In G++ 3.2, the check was implemented incorrectly; it
2969 looked at the placement expression, rather than the
2970 type of the function. */
2971 if (placement
&& !TREE_CHAIN (placement
)
2972 && same_type_p (TREE_TYPE (TREE_VALUE (placement
)),
2980 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (cand
->fn
));
2981 /* Skip the size_t parameter. */
2982 arg_types
= TREE_CHAIN (arg_types
);
2983 /* Check the remaining parameters (if any). */
2985 && TREE_CHAIN (arg_types
) == void_list_node
2986 && same_type_p (TREE_VALUE (arg_types
),
2990 /* If we need a cookie, adjust the number of bytes allocated. */
2993 /* Update the total size. */
2994 *size
= size_binop (PLUS_EXPR
, *size
, *cookie_size
);
2995 /* Update the argument list to reflect the adjusted size. */
2996 TREE_VALUE (args
) = *size
;
2999 *cookie_size
= NULL_TREE
;
3002 /* Tell our caller which function we decided to call. */
3006 /* Build the CALL_EXPR. */
3007 return build_over_call (cand
, LOOKUP_NORMAL
);
3011 build_object_call (tree obj
, tree args
)
3013 struct z_candidate
*candidates
= 0, *cand
;
3014 tree fns
, convs
, mem_args
= NULL_TREE
;
3015 tree type
= TREE_TYPE (obj
);
3017 tree result
= NULL_TREE
;
3020 if (TYPE_PTRMEMFUNC_P (type
))
3022 /* It's no good looking for an overloaded operator() on a
3023 pointer-to-member-function. */
3024 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj
);
3025 return error_mark_node
;
3028 if (TYPE_BINFO (type
))
3030 fns
= lookup_fnfields (TYPE_BINFO (type
), ansi_opname (CALL_EXPR
), 1);
3031 if (fns
== error_mark_node
)
3032 return error_mark_node
;
3037 args
= resolve_args (args
);
3039 if (args
== error_mark_node
)
3040 return error_mark_node
;
3042 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3043 p
= conversion_obstack_alloc (0);
3047 tree base
= BINFO_TYPE (BASELINK_BINFO (fns
));
3048 mem_args
= tree_cons (NULL_TREE
, build_this (obj
), args
);
3050 for (fns
= BASELINK_FUNCTIONS (fns
); fns
; fns
= OVL_NEXT (fns
))
3052 tree fn
= OVL_CURRENT (fns
);
3053 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
3054 add_template_candidate (&candidates
, fn
, base
, NULL_TREE
,
3055 mem_args
, NULL_TREE
,
3058 LOOKUP_NORMAL
, DEDUCE_CALL
);
3060 add_function_candidate
3061 (&candidates
, fn
, base
, mem_args
, TYPE_BINFO (type
),
3062 TYPE_BINFO (type
), LOOKUP_NORMAL
);
3066 convs
= lookup_conversions (type
);
3068 for (; convs
; convs
= TREE_CHAIN (convs
))
3070 tree fns
= TREE_VALUE (convs
);
3071 tree totype
= TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns
)));
3073 if ((TREE_CODE (totype
) == POINTER_TYPE
3074 && TREE_CODE (TREE_TYPE (totype
)) == FUNCTION_TYPE
)
3075 || (TREE_CODE (totype
) == REFERENCE_TYPE
3076 && TREE_CODE (TREE_TYPE (totype
)) == FUNCTION_TYPE
)
3077 || (TREE_CODE (totype
) == REFERENCE_TYPE
3078 && TREE_CODE (TREE_TYPE (totype
)) == POINTER_TYPE
3079 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype
))) == FUNCTION_TYPE
))
3080 for (; fns
; fns
= OVL_NEXT (fns
))
3082 tree fn
= OVL_CURRENT (fns
);
3083 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
3084 add_template_conv_candidate
3085 (&candidates
, fn
, obj
, args
, totype
,
3086 /*access_path=*/NULL_TREE
,
3087 /*conversion_path=*/NULL_TREE
);
3089 add_conv_candidate (&candidates
, fn
, obj
, args
,
3090 /*conversion_path=*/NULL_TREE
,
3091 /*access_path=*/NULL_TREE
);
3095 candidates
= splice_viable (candidates
, pedantic
, &any_viable_p
);
3098 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj
), args
);
3099 print_z_candidates (candidates
);
3100 result
= error_mark_node
;
3104 cand
= tourney (candidates
);
3107 error ("call of %<(%T) (%A)%> is ambiguous", TREE_TYPE (obj
), args
);
3108 print_z_candidates (candidates
);
3109 result
= error_mark_node
;
3111 /* Since cand->fn will be a type, not a function, for a conversion
3112 function, we must be careful not to unconditionally look at
3114 else if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
3115 && DECL_OVERLOADED_OPERATOR_P (cand
->fn
) == CALL_EXPR
)
3116 result
= build_over_call (cand
, LOOKUP_NORMAL
);
3119 obj
= convert_like_with_context (cand
->convs
[0], obj
, cand
->fn
, -1);
3120 obj
= convert_from_reference (obj
);
3121 result
= build_function_call (obj
, args
);
3125 /* Free all the conversions we allocated. */
3126 obstack_free (&conversion_obstack
, p
);
3132 op_error (enum tree_code code
, enum tree_code code2
,
3133 tree arg1
, tree arg2
, tree arg3
, const char *problem
)
3137 if (code
== MODIFY_EXPR
)
3138 opname
= assignment_operator_name_info
[code2
].name
;
3140 opname
= operator_name_info
[code
].name
;
3145 error ("%s for ternary %<operator?:%> in %<%E ? %E : %E%>",
3146 problem
, arg1
, arg2
, arg3
);
3149 case POSTINCREMENT_EXPR
:
3150 case POSTDECREMENT_EXPR
:
3151 error ("%s for %<operator%s%> in %<%E%s%>", problem
, opname
, arg1
, opname
);
3155 error ("%s for %<operator[]%> in %<%E[%E]%>", problem
, arg1
, arg2
);
3160 error ("%s for %qs in %<%s %E%>", problem
, opname
, opname
, arg1
);
3165 error ("%s for %<operator%s%> in %<%E %s %E%>",
3166 problem
, opname
, arg1
, opname
, arg2
);
3168 error ("%s for %<operator%s%> in %<%s%E%>",
3169 problem
, opname
, opname
, arg1
);
3174 /* Return the implicit conversion sequence that could be used to
3175 convert E1 to E2 in [expr.cond]. */
3178 conditional_conversion (tree e1
, tree e2
)
3180 tree t1
= non_reference (TREE_TYPE (e1
));
3181 tree t2
= non_reference (TREE_TYPE (e2
));
3187 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
3188 implicitly converted (clause _conv_) to the type "reference to
3189 T2", subject to the constraint that in the conversion the
3190 reference must bind directly (_dcl.init.ref_) to E1. */
3191 if (real_lvalue_p (e2
))
3193 conv
= implicit_conversion (build_reference_type (t2
),
3197 LOOKUP_NO_TEMP_BIND
);
3204 If E1 and E2 have class type, and the underlying class types are
3205 the same or one is a base class of the other: E1 can be converted
3206 to match E2 if the class of T2 is the same type as, or a base
3207 class of, the class of T1, and the cv-qualification of T2 is the
3208 same cv-qualification as, or a greater cv-qualification than, the
3209 cv-qualification of T1. If the conversion is applied, E1 is
3210 changed to an rvalue of type T2 that still refers to the original
3211 source class object (or the appropriate subobject thereof). */
3212 if (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
3213 && ((good_base
= DERIVED_FROM_P (t2
, t1
)) || DERIVED_FROM_P (t1
, t2
)))
3215 if (good_base
&& at_least_as_qualified_p (t2
, t1
))
3217 conv
= build_identity_conv (t1
, e1
);
3218 if (!same_type_p (TYPE_MAIN_VARIANT (t1
),
3219 TYPE_MAIN_VARIANT (t2
)))
3220 conv
= build_conv (ck_base
, t2
, conv
);
3222 conv
= build_conv (ck_rvalue
, t2
, conv
);
3231 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
3232 converted to the type that expression E2 would have if E2 were
3233 converted to an rvalue (or the type it has, if E2 is an rvalue). */
3234 return implicit_conversion (t2
, t1
, e1
, /*c_cast_p=*/false,
3238 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
3239 arguments to the conditional expression. */
3242 build_conditional_expr (tree arg1
, tree arg2
, tree arg3
)
3246 tree result
= NULL_TREE
;
3247 tree result_type
= NULL_TREE
;
3248 bool lvalue_p
= true;
3249 struct z_candidate
*candidates
= 0;
3250 struct z_candidate
*cand
;
3253 /* As a G++ extension, the second argument to the conditional can be
3254 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
3255 c'.) If the second operand is omitted, make sure it is
3256 calculated only once. */
3260 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
3262 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
3263 if (real_lvalue_p (arg1
))
3264 arg2
= arg1
= stabilize_reference (arg1
);
3266 arg2
= arg1
= save_expr (arg1
);
3271 The first expr ession is implicitly converted to bool (clause
3273 arg1
= perform_implicit_conversion (boolean_type_node
, arg1
);
3275 /* If something has already gone wrong, just pass that fact up the
3277 if (error_operand_p (arg1
)
3278 || error_operand_p (arg2
)
3279 || error_operand_p (arg3
))
3280 return error_mark_node
;
3284 If either the second or the third operand has type (possibly
3285 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
3286 array-to-pointer (_conv.array_), and function-to-pointer
3287 (_conv.func_) standard conversions are performed on the second
3288 and third operands. */
3289 arg2_type
= unlowered_expr_type (arg2
);
3290 arg3_type
= unlowered_expr_type (arg3
);
3291 if (VOID_TYPE_P (arg2_type
) || VOID_TYPE_P (arg3_type
))
3293 /* Do the conversions. We don't these for `void' type arguments
3294 since it can't have any effect and since decay_conversion
3295 does not handle that case gracefully. */
3296 if (!VOID_TYPE_P (arg2_type
))
3297 arg2
= decay_conversion (arg2
);
3298 if (!VOID_TYPE_P (arg3_type
))
3299 arg3
= decay_conversion (arg3
);
3300 arg2_type
= TREE_TYPE (arg2
);
3301 arg3_type
= TREE_TYPE (arg3
);
3305 One of the following shall hold:
3307 --The second or the third operand (but not both) is a
3308 throw-expression (_except.throw_); the result is of the
3309 type of the other and is an rvalue.
3311 --Both the second and the third operands have type void; the
3312 result is of type void and is an rvalue.
3314 We must avoid calling force_rvalue for expressions of type
3315 "void" because it will complain that their value is being
3317 if (TREE_CODE (arg2
) == THROW_EXPR
3318 && TREE_CODE (arg3
) != THROW_EXPR
)
3320 if (!VOID_TYPE_P (arg3_type
))
3321 arg3
= force_rvalue (arg3
);
3322 arg3_type
= TREE_TYPE (arg3
);
3323 result_type
= arg3_type
;
3325 else if (TREE_CODE (arg2
) != THROW_EXPR
3326 && TREE_CODE (arg3
) == THROW_EXPR
)
3328 if (!VOID_TYPE_P (arg2_type
))
3329 arg2
= force_rvalue (arg2
);
3330 arg2_type
= TREE_TYPE (arg2
);
3331 result_type
= arg2_type
;
3333 else if (VOID_TYPE_P (arg2_type
) && VOID_TYPE_P (arg3_type
))
3334 result_type
= void_type_node
;
3337 if (VOID_TYPE_P (arg2_type
))
3338 error ("second operand to the conditional operator "
3339 "is of type %<void%>, "
3340 "but the third operand is neither a throw-expression "
3341 "nor of type %<void%>");
3343 error ("third operand to the conditional operator "
3344 "is of type %<void%>, "
3345 "but the second operand is neither a throw-expression "
3346 "nor of type %<void%>");
3347 return error_mark_node
;
3351 goto valid_operands
;
3355 Otherwise, if the second and third operand have different types,
3356 and either has (possibly cv-qualified) class type, an attempt is
3357 made to convert each of those operands to the type of the other. */
3358 else if (!same_type_p (arg2_type
, arg3_type
)
3359 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)))
3364 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3365 p
= conversion_obstack_alloc (0);
3367 conv2
= conditional_conversion (arg2
, arg3
);
3368 conv3
= conditional_conversion (arg3
, arg2
);
3372 If both can be converted, or one can be converted but the
3373 conversion is ambiguous, the program is ill-formed. If
3374 neither can be converted, the operands are left unchanged and
3375 further checking is performed as described below. If exactly
3376 one conversion is possible, that conversion is applied to the
3377 chosen operand and the converted operand is used in place of
3378 the original operand for the remainder of this section. */
3379 if ((conv2
&& !conv2
->bad_p
3380 && conv3
&& !conv3
->bad_p
)
3381 || (conv2
&& conv2
->kind
== ck_ambig
)
3382 || (conv3
&& conv3
->kind
== ck_ambig
))
3384 error ("operands to ?: have different types %qT and %qT",
3385 arg2_type
, arg3_type
);
3386 result
= error_mark_node
;
3388 else if (conv2
&& (!conv2
->bad_p
|| !conv3
))
3390 arg2
= convert_like (conv2
, arg2
);
3391 arg2
= convert_from_reference (arg2
);
3392 arg2_type
= TREE_TYPE (arg2
);
3393 /* Even if CONV2 is a valid conversion, the result of the
3394 conversion may be invalid. For example, if ARG3 has type
3395 "volatile X", and X does not have a copy constructor
3396 accepting a "volatile X&", then even if ARG2 can be
3397 converted to X, the conversion will fail. */
3398 if (error_operand_p (arg2
))
3399 result
= error_mark_node
;
3401 else if (conv3
&& (!conv3
->bad_p
|| !conv2
))
3403 arg3
= convert_like (conv3
, arg3
);
3404 arg3
= convert_from_reference (arg3
);
3405 arg3_type
= TREE_TYPE (arg3
);
3406 if (error_operand_p (arg3
))
3407 result
= error_mark_node
;
3410 /* Free all the conversions we allocated. */
3411 obstack_free (&conversion_obstack
, p
);
3416 /* If, after the conversion, both operands have class type,
3417 treat the cv-qualification of both operands as if it were the
3418 union of the cv-qualification of the operands.
3420 The standard is not clear about what to do in this
3421 circumstance. For example, if the first operand has type
3422 "const X" and the second operand has a user-defined
3423 conversion to "volatile X", what is the type of the second
3424 operand after this step? Making it be "const X" (matching
3425 the first operand) seems wrong, as that discards the
3426 qualification without actually performing a copy. Leaving it
3427 as "volatile X" seems wrong as that will result in the
3428 conditional expression failing altogether, even though,
3429 according to this step, the one operand could be converted to
3430 the type of the other. */
3431 if ((conv2
|| conv3
)
3432 && CLASS_TYPE_P (arg2_type
)
3433 && TYPE_QUALS (arg2_type
) != TYPE_QUALS (arg3_type
))
3434 arg2_type
= arg3_type
=
3435 cp_build_qualified_type (arg2_type
,
3436 TYPE_QUALS (arg2_type
)
3437 | TYPE_QUALS (arg3_type
));
3442 If the second and third operands are lvalues and have the same
3443 type, the result is of that type and is an lvalue. */
3444 if (real_lvalue_p (arg2
)
3445 && real_lvalue_p (arg3
)
3446 && same_type_p (arg2_type
, arg3_type
))
3448 result_type
= arg2_type
;
3449 goto valid_operands
;
3454 Otherwise, the result is an rvalue. If the second and third
3455 operand do not have the same type, and either has (possibly
3456 cv-qualified) class type, overload resolution is used to
3457 determine the conversions (if any) to be applied to the operands
3458 (_over.match.oper_, _over.built_). */
3460 if (!same_type_p (arg2_type
, arg3_type
)
3461 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)))
3467 /* Rearrange the arguments so that add_builtin_candidate only has
3468 to know about two args. In build_builtin_candidates, the
3469 arguments are unscrambled. */
3473 add_builtin_candidates (&candidates
,
3476 ansi_opname (COND_EXPR
),
3482 If the overload resolution fails, the program is
3484 candidates
= splice_viable (candidates
, pedantic
, &any_viable_p
);
3487 op_error (COND_EXPR
, NOP_EXPR
, arg1
, arg2
, arg3
, "no match");
3488 print_z_candidates (candidates
);
3489 return error_mark_node
;
3491 cand
= tourney (candidates
);
3494 op_error (COND_EXPR
, NOP_EXPR
, arg1
, arg2
, arg3
, "no match");
3495 print_z_candidates (candidates
);
3496 return error_mark_node
;
3501 Otherwise, the conversions thus determined are applied, and
3502 the converted operands are used in place of the original
3503 operands for the remainder of this section. */
3504 conv
= cand
->convs
[0];
3505 arg1
= convert_like (conv
, arg1
);
3506 conv
= cand
->convs
[1];
3507 arg2
= convert_like (conv
, arg2
);
3508 conv
= cand
->convs
[2];
3509 arg3
= convert_like (conv
, arg3
);
3514 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3515 and function-to-pointer (_conv.func_) standard conversions are
3516 performed on the second and third operands.
3518 We need to force the lvalue-to-rvalue conversion here for class types,
3519 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3520 that isn't wrapped with a TARGET_EXPR plays havoc with exception
3523 arg2
= force_rvalue (arg2
);
3524 if (!CLASS_TYPE_P (arg2_type
))
3525 arg2_type
= TREE_TYPE (arg2
);
3527 arg3
= force_rvalue (arg3
);
3528 if (!CLASS_TYPE_P (arg2_type
))
3529 arg3_type
= TREE_TYPE (arg3
);
3531 if (arg2
== error_mark_node
|| arg3
== error_mark_node
)
3532 return error_mark_node
;
3536 After those conversions, one of the following shall hold:
3538 --The second and third operands have the same type; the result is of
3540 if (same_type_p (arg2_type
, arg3_type
))
3541 result_type
= arg2_type
;
3544 --The second and third operands have arithmetic or enumeration
3545 type; the usual arithmetic conversions are performed to bring
3546 them to a common type, and the result is of that type. */
3547 else if ((ARITHMETIC_TYPE_P (arg2_type
)
3548 || TREE_CODE (arg2_type
) == ENUMERAL_TYPE
)
3549 && (ARITHMETIC_TYPE_P (arg3_type
)
3550 || TREE_CODE (arg3_type
) == ENUMERAL_TYPE
))
3552 /* In this case, there is always a common type. */
3553 result_type
= type_after_usual_arithmetic_conversions (arg2_type
,
3556 if (TREE_CODE (arg2_type
) == ENUMERAL_TYPE
3557 && TREE_CODE (arg3_type
) == ENUMERAL_TYPE
)
3558 warning (0, "enumeral mismatch in conditional expression: %qT vs %qT",
3559 arg2_type
, arg3_type
);
3560 else if (extra_warnings
3561 && ((TREE_CODE (arg2_type
) == ENUMERAL_TYPE
3562 && !same_type_p (arg3_type
, type_promotes_to (arg2_type
)))
3563 || (TREE_CODE (arg3_type
) == ENUMERAL_TYPE
3564 && !same_type_p (arg2_type
, type_promotes_to (arg3_type
)))))
3565 warning (0, "enumeral and non-enumeral type in conditional expression");
3567 arg2
= perform_implicit_conversion (result_type
, arg2
);
3568 arg3
= perform_implicit_conversion (result_type
, arg3
);
3572 --The second and third operands have pointer type, or one has
3573 pointer type and the other is a null pointer constant; pointer
3574 conversions (_conv.ptr_) and qualification conversions
3575 (_conv.qual_) are performed to bring them to their composite
3576 pointer type (_expr.rel_). The result is of the composite
3579 --The second and third operands have pointer to member type, or
3580 one has pointer to member type and the other is a null pointer
3581 constant; pointer to member conversions (_conv.mem_) and
3582 qualification conversions (_conv.qual_) are performed to bring
3583 them to a common type, whose cv-qualification shall match the
3584 cv-qualification of either the second or the third operand.
3585 The result is of the common type. */
3586 else if ((null_ptr_cst_p (arg2
)
3587 && (TYPE_PTR_P (arg3_type
) || TYPE_PTR_TO_MEMBER_P (arg3_type
)))
3588 || (null_ptr_cst_p (arg3
)
3589 && (TYPE_PTR_P (arg2_type
) || TYPE_PTR_TO_MEMBER_P (arg2_type
)))
3590 || (TYPE_PTR_P (arg2_type
) && TYPE_PTR_P (arg3_type
))
3591 || (TYPE_PTRMEM_P (arg2_type
) && TYPE_PTRMEM_P (arg3_type
))
3592 || (TYPE_PTRMEMFUNC_P (arg2_type
) && TYPE_PTRMEMFUNC_P (arg3_type
)))
3594 result_type
= composite_pointer_type (arg2_type
, arg3_type
, arg2
,
3595 arg3
, "conditional expression");
3596 if (result_type
== error_mark_node
)
3597 return error_mark_node
;
3598 arg2
= perform_implicit_conversion (result_type
, arg2
);
3599 arg3
= perform_implicit_conversion (result_type
, arg3
);
3604 error ("operands to ?: have different types %qT and %qT",
3605 arg2_type
, arg3_type
);
3606 return error_mark_node
;
3610 result
= fold_if_not_in_template (build3 (COND_EXPR
, result_type
, arg1
,
3612 /* We can't use result_type below, as fold might have returned a
3617 /* Expand both sides into the same slot, hopefully the target of
3618 the ?: expression. We used to check for TARGET_EXPRs here,
3619 but now we sometimes wrap them in NOP_EXPRs so the test would
3621 if (CLASS_TYPE_P (TREE_TYPE (result
)))
3622 result
= get_target_expr (result
);
3623 /* If this expression is an rvalue, but might be mistaken for an
3624 lvalue, we must add a NON_LVALUE_EXPR. */
3625 result
= rvalue (result
);
3631 /* OPERAND is an operand to an expression. Perform necessary steps
3632 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
3636 prep_operand (tree operand
)
3640 if (CLASS_TYPE_P (TREE_TYPE (operand
))
3641 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand
)))
3642 /* Make sure the template type is instantiated now. */
3643 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand
)));
3649 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
3650 OVERLOAD) to the CANDIDATES, returning an updated list of
3651 CANDIDATES. The ARGS are the arguments provided to the call,
3652 without any implicit object parameter. The EXPLICIT_TARGS are
3653 explicit template arguments provided. TEMPLATE_ONLY is true if
3654 only template functions should be considered. CONVERSION_PATH,
3655 ACCESS_PATH, and FLAGS are as for add_function_candidate. */
3658 add_candidates (tree fns
, tree args
,
3659 tree explicit_targs
, bool template_only
,
3660 tree conversion_path
, tree access_path
,
3662 struct z_candidate
**candidates
)
3665 tree non_static_args
;
3667 ctype
= conversion_path
? BINFO_TYPE (conversion_path
) : NULL_TREE
;
3668 /* Delay creating the implicit this parameter until it is needed. */
3669 non_static_args
= NULL_TREE
;
3676 fn
= OVL_CURRENT (fns
);
3677 /* Figure out which set of arguments to use. */
3678 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
))
3680 /* If this function is a non-static member, prepend the implicit
3681 object parameter. */
3682 if (!non_static_args
)
3683 non_static_args
= tree_cons (NULL_TREE
,
3684 build_this (TREE_VALUE (args
)),
3686 fn_args
= non_static_args
;
3689 /* Otherwise, just use the list of arguments provided. */
3692 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
3693 add_template_candidate (candidates
,
3703 else if (!template_only
)
3704 add_function_candidate (candidates
,
3711 fns
= OVL_NEXT (fns
);
3716 build_new_op (enum tree_code code
, int flags
, tree arg1
, tree arg2
, tree arg3
,
3719 struct z_candidate
*candidates
= 0, *cand
;
3720 tree arglist
, fnname
;
3722 tree result
= NULL_TREE
;
3723 bool result_valid_p
= false;
3724 enum tree_code code2
= NOP_EXPR
;
3729 bool expl_eq_arg1
= false;
3731 if (error_operand_p (arg1
)
3732 || error_operand_p (arg2
)
3733 || error_operand_p (arg3
))
3734 return error_mark_node
;
3736 if (code
== MODIFY_EXPR
)
3738 code2
= TREE_CODE (arg3
);
3740 fnname
= ansi_assopname (code2
);
3743 fnname
= ansi_opname (code
);
3745 arg1
= prep_operand (arg1
);
3751 case VEC_DELETE_EXPR
:
3753 /* Use build_op_new_call and build_op_delete_call instead. */
3757 return build_object_call (arg1
, arg2
);
3759 case TRUTH_ORIF_EXPR
:
3760 case TRUTH_ANDIF_EXPR
:
3761 case TRUTH_AND_EXPR
:
3763 if (COMPARISON_CLASS_P (arg1
))
3764 expl_eq_arg1
= true;
3769 arg2
= prep_operand (arg2
);
3770 arg3
= prep_operand (arg3
);
3772 if (code
== COND_EXPR
)
3774 if (arg2
== NULL_TREE
3775 || TREE_CODE (TREE_TYPE (arg2
)) == VOID_TYPE
3776 || TREE_CODE (TREE_TYPE (arg3
)) == VOID_TYPE
3777 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2
))
3778 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3
))))
3781 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1
))
3782 && (! arg2
|| ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2
))))
3785 if (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
)
3786 arg2
= integer_zero_node
;
3788 arglist
= NULL_TREE
;
3790 arglist
= tree_cons (NULL_TREE
, arg3
, arglist
);
3792 arglist
= tree_cons (NULL_TREE
, arg2
, arglist
);
3793 arglist
= tree_cons (NULL_TREE
, arg1
, arglist
);
3795 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3796 p
= conversion_obstack_alloc (0);
3798 /* Add namespace-scope operators to the list of functions to
3800 add_candidates (lookup_function_nonclass (fnname
, arglist
, /*block_p=*/true),
3801 arglist
, NULL_TREE
, false, NULL_TREE
, NULL_TREE
,
3802 flags
, &candidates
);
3803 /* Add class-member operators to the candidate set. */
3804 if (CLASS_TYPE_P (TREE_TYPE (arg1
)))
3808 fns
= lookup_fnfields (TREE_TYPE (arg1
), fnname
, 1);
3809 if (fns
== error_mark_node
)
3811 result
= error_mark_node
;
3812 goto user_defined_result_ready
;
3815 add_candidates (BASELINK_FUNCTIONS (fns
), arglist
,
3817 BASELINK_BINFO (fns
),
3818 TYPE_BINFO (TREE_TYPE (arg1
)),
3819 flags
, &candidates
);
3822 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3823 to know about two args; a builtin candidate will always have a first
3824 parameter of type bool. We'll handle that in
3825 build_builtin_candidate. */
3826 if (code
== COND_EXPR
)
3836 args
[2] = NULL_TREE
;
3839 add_builtin_candidates (&candidates
, code
, code2
, fnname
, args
, flags
);
3845 /* For these, the built-in candidates set is empty
3846 [over.match.oper]/3. We don't want non-strict matches
3847 because exact matches are always possible with built-in
3848 operators. The built-in candidate set for COMPONENT_REF
3849 would be empty too, but since there are no such built-in
3850 operators, we accept non-strict matches for them. */
3855 strict_p
= pedantic
;
3859 candidates
= splice_viable (candidates
, strict_p
, &any_viable_p
);
3864 case POSTINCREMENT_EXPR
:
3865 case POSTDECREMENT_EXPR
:
3866 /* Look for an `operator++ (int)'. If they didn't have
3867 one, then we fall back to the old way of doing things. */
3868 if (flags
& LOOKUP_COMPLAIN
)
3869 pedwarn ("no %<%D(int)%> declared for postfix %qs, "
3870 "trying prefix operator instead",
3872 operator_name_info
[code
].name
);
3873 if (code
== POSTINCREMENT_EXPR
)
3874 code
= PREINCREMENT_EXPR
;
3876 code
= PREDECREMENT_EXPR
;
3877 result
= build_new_op (code
, flags
, arg1
, NULL_TREE
, NULL_TREE
,
3881 /* The caller will deal with these. */
3886 result_valid_p
= true;
3890 if (flags
& LOOKUP_COMPLAIN
)
3892 op_error (code
, code2
, arg1
, arg2
, arg3
, "no match");
3893 print_z_candidates (candidates
);
3895 result
= error_mark_node
;
3901 cand
= tourney (candidates
);
3904 if (flags
& LOOKUP_COMPLAIN
)
3906 op_error (code
, code2
, arg1
, arg2
, arg3
, "ambiguous overload");
3907 print_z_candidates (candidates
);
3909 result
= error_mark_node
;
3911 else if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
)
3914 *overloaded_p
= true;
3916 result
= build_over_call (cand
, LOOKUP_NORMAL
);
3920 /* Give any warnings we noticed during overload resolution. */
3923 struct candidate_warning
*w
;
3924 for (w
= cand
->warnings
; w
; w
= w
->next
)
3925 joust (cand
, w
->loser
, 1);
3928 /* Check for comparison of different enum types. */
3937 if (TREE_CODE (TREE_TYPE (arg1
)) == ENUMERAL_TYPE
3938 && TREE_CODE (TREE_TYPE (arg2
)) == ENUMERAL_TYPE
3939 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1
))
3940 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2
))))
3942 warning (0, "comparison between %q#T and %q#T",
3943 TREE_TYPE (arg1
), TREE_TYPE (arg2
));
3950 /* We need to strip any leading REF_BIND so that bitfields
3951 don't cause errors. This should not remove any important
3952 conversions, because builtins don't apply to class
3953 objects directly. */
3954 conv
= cand
->convs
[0];
3955 if (conv
->kind
== ck_ref_bind
)
3956 conv
= conv
->u
.next
;
3957 arg1
= convert_like (conv
, arg1
);
3960 conv
= cand
->convs
[1];
3961 if (conv
->kind
== ck_ref_bind
)
3962 conv
= conv
->u
.next
;
3963 arg2
= convert_like (conv
, arg2
);
3967 conv
= cand
->convs
[2];
3968 if (conv
->kind
== ck_ref_bind
)
3969 conv
= conv
->u
.next
;
3970 arg3
= convert_like (conv
, arg3
);
3975 warn_logical_operator (code
, arg1
, arg2
);
3976 expl_eq_arg1
= true;
3981 user_defined_result_ready
:
3983 /* Free all the conversions we allocated. */
3984 obstack_free (&conversion_obstack
, p
);
3986 if (result
|| result_valid_p
)
3993 return build_modify_expr (arg1
, code2
, arg2
);
3996 return build_indirect_ref (arg1
, "unary *");
3998 case TRUTH_ANDIF_EXPR
:
3999 case TRUTH_ORIF_EXPR
:
4000 case TRUTH_AND_EXPR
:
4003 warn_logical_operator (code
, arg1
, arg2
);
4007 case TRUNC_DIV_EXPR
:
4018 case TRUNC_MOD_EXPR
:
4022 return cp_build_binary_op (code
, arg1
, arg2
);
4024 case UNARY_PLUS_EXPR
:
4027 case TRUTH_NOT_EXPR
:
4028 case PREINCREMENT_EXPR
:
4029 case POSTINCREMENT_EXPR
:
4030 case PREDECREMENT_EXPR
:
4031 case POSTDECREMENT_EXPR
:
4034 return build_unary_op (code
, arg1
, candidates
!= 0);
4037 return build_array_ref (arg1
, arg2
);
4040 return build_conditional_expr (arg1
, arg2
, arg3
);
4043 return build_m_component_ref (build_indirect_ref (arg1
, NULL
), arg2
);
4045 /* The caller will deal with these. */
4057 /* Build a call to operator delete. This has to be handled very specially,
4058 because the restrictions on what signatures match are different from all
4059 other call instances. For a normal delete, only a delete taking (void *)
4060 or (void *, size_t) is accepted. For a placement delete, only an exact
4061 match with the placement new is accepted.
4063 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
4064 ADDR is the pointer to be deleted.
4065 SIZE is the size of the memory block to be deleted.
4066 GLOBAL_P is true if the delete-expression should not consider
4067 class-specific delete operators.
4068 PLACEMENT is the corresponding placement new call, or NULL_TREE.
4070 If this call to "operator delete" is being generated as part to
4071 deallocate memory allocated via a new-expression (as per [expr.new]
4072 which requires that if the initialization throws an exception then
4073 we call a deallocation function), then ALLOC_FN is the allocation
4077 build_op_delete_call (enum tree_code code
, tree addr
, tree size
,
4078 bool global_p
, tree placement
,
4081 tree fn
= NULL_TREE
;
4082 tree fns
, fnname
, argtypes
, type
;
4085 if (addr
== error_mark_node
)
4086 return error_mark_node
;
4088 type
= strip_array_types (TREE_TYPE (TREE_TYPE (addr
)));
4090 fnname
= ansi_opname (code
);
4092 if (CLASS_TYPE_P (type
)
4093 && COMPLETE_TYPE_P (complete_type (type
))
4097 If the result of the lookup is ambiguous or inaccessible, or if
4098 the lookup selects a placement deallocation function, the
4099 program is ill-formed.
4101 Therefore, we ask lookup_fnfields to complain about ambiguity. */
4103 fns
= lookup_fnfields (TYPE_BINFO (type
), fnname
, 1);
4104 if (fns
== error_mark_node
)
4105 return error_mark_node
;
4110 if (fns
== NULL_TREE
)
4111 fns
= lookup_name_nonclass (fnname
);
4113 /* Strip const and volatile from addr. */
4114 addr
= cp_convert (ptr_type_node
, addr
);
4118 /* Get the parameter types for the allocation function that is
4120 gcc_assert (alloc_fn
!= NULL_TREE
);
4121 argtypes
= TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn
)));
4125 /* First try it without the size argument. */
4126 argtypes
= void_list_node
;
4129 /* We make two tries at finding a matching `operator delete'. On
4130 the first pass, we look for a one-operator (or placement)
4131 operator delete. If we're not doing placement delete, then on
4132 the second pass we look for a two-argument delete. */
4133 for (pass
= 0; pass
< (placement
? 1 : 2); ++pass
)
4135 /* Go through the `operator delete' functions looking for one
4136 with a matching type. */
4137 for (fn
= BASELINK_P (fns
) ? BASELINK_FUNCTIONS (fns
) : fns
;
4143 /* The first argument must be "void *". */
4144 t
= TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn
)));
4145 if (!same_type_p (TREE_VALUE (t
), ptr_type_node
))
4148 /* On the first pass, check the rest of the arguments. */
4154 if (!same_type_p (TREE_VALUE (a
), TREE_VALUE (t
)))
4162 /* On the second pass, look for a function with exactly two
4163 arguments: "void *" and "size_t". */
4165 /* For "operator delete(void *, ...)" there will be
4166 no second argument, but we will not get an exact
4169 && same_type_p (TREE_VALUE (t
), size_type_node
)
4170 && TREE_CHAIN (t
) == void_list_node
)
4174 /* If we found a match, we're done. */
4179 /* If we have a matching function, call it. */
4182 /* Make sure we have the actual function, and not an
4184 fn
= OVL_CURRENT (fn
);
4186 /* If the FN is a member function, make sure that it is
4188 if (DECL_CLASS_SCOPE_P (fn
))
4189 perform_or_defer_access_check (TYPE_BINFO (type
), fn
, fn
);
4193 /* The placement args might not be suitable for overload
4194 resolution at this point, so build the call directly. */
4195 int nargs
= call_expr_nargs (placement
);
4196 tree
*argarray
= (tree
*) alloca (nargs
* sizeof (tree
));
4199 for (i
= 1; i
< nargs
; i
++)
4200 argarray
[i
] = CALL_EXPR_ARG (placement
, i
);
4202 return build_cxx_call (fn
, nargs
, argarray
);
4208 args
= tree_cons (NULL_TREE
, addr
, NULL_TREE
);
4210 args
= tree_cons (NULL_TREE
, addr
,
4211 build_tree_list (NULL_TREE
, size
));
4212 return build_function_call (fn
, args
);
4218 If no unambiguous matching deallocation function can be found,
4219 propagating the exception does not cause the object's memory to
4224 warning (0, "no corresponding deallocation function for `%D'",
4229 error ("no suitable %<operator %s%> for %qT",
4230 operator_name_info
[(int)code
].name
, type
);
4231 return error_mark_node
;
4234 /* If the current scope isn't allowed to access DECL along
4235 BASETYPE_PATH, give an error. The most derived class in
4236 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
4237 the declaration to use in the error diagnostic. */
4240 enforce_access (tree basetype_path
, tree decl
, tree diag_decl
)
4242 gcc_assert (TREE_CODE (basetype_path
) == TREE_BINFO
);
4244 if (!accessible_p (basetype_path
, decl
, true))
4246 if (TREE_PRIVATE (decl
))
4247 error ("%q+#D is private", diag_decl
);
4248 else if (TREE_PROTECTED (decl
))
4249 error ("%q+#D is protected", diag_decl
);
4251 error ("%q+#D is inaccessible", diag_decl
);
4252 error ("within this context");
4259 /* Check that a callable constructor to initialize a temporary of
4260 TYPE from an EXPR exists. */
4263 check_constructor_callable (tree type
, tree expr
)
4265 build_special_member_call (NULL_TREE
,
4266 complete_ctor_identifier
,
4267 build_tree_list (NULL_TREE
, expr
),
4269 LOOKUP_NORMAL
| LOOKUP_ONLYCONVERTING
4270 | LOOKUP_NO_CONVERSION
4271 | LOOKUP_CONSTRUCTOR_CALLABLE
);
4274 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
4275 bitwise or of LOOKUP_* values. If any errors are warnings are
4276 generated, set *DIAGNOSTIC_FN to "error" or "warning",
4277 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
4281 build_temp (tree expr
, tree type
, int flags
,
4282 diagnostic_fn_t
*diagnostic_fn
)
4286 savew
= warningcount
, savee
= errorcount
;
4287 expr
= build_special_member_call (NULL_TREE
,
4288 complete_ctor_identifier
,
4289 build_tree_list (NULL_TREE
, expr
),
4291 if (warningcount
> savew
)
4292 *diagnostic_fn
= warning0
;
4293 else if (errorcount
> savee
)
4294 *diagnostic_fn
= error
;
4296 *diagnostic_fn
= NULL
;
4300 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
4301 EXPR is implicitly converted to type TOTYPE.
4302 FN and ARGNUM are used for diagnostics. */
4305 conversion_null_warnings (tree totype
, tree expr
, tree fn
, int argnum
)
4307 tree t
= non_reference (totype
);
4309 /* Issue warnings about peculiar, but valid, uses of NULL. */
4310 if (expr
== null_node
&& TREE_CODE (t
) != BOOLEAN_TYPE
&& ARITHMETIC_TYPE_P (t
))
4313 warning (OPT_Wconversion
, "passing NULL to non-pointer argument %P of %qD",
4316 warning (OPT_Wconversion
, "converting to non-pointer type %qT from NULL", t
);
4319 /* Issue warnings if "false" is converted to a NULL pointer */
4320 else if (expr
== boolean_false_node
&& fn
&& POINTER_TYPE_P (t
))
4321 warning (OPT_Wconversion
,
4322 "converting %<false%> to pointer type for argument %P of %qD",
4326 /* Perform the conversions in CONVS on the expression EXPR. FN and
4327 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
4328 indicates the `this' argument of a method. INNER is nonzero when
4329 being called to continue a conversion chain. It is negative when a
4330 reference binding will be applied, positive otherwise. If
4331 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
4332 conversions will be emitted if appropriate. If C_CAST_P is true,
4333 this conversion is coming from a C-style cast; in that case,
4334 conversions to inaccessible bases are permitted. */
4337 convert_like_real (conversion
*convs
, tree expr
, tree fn
, int argnum
,
4338 int inner
, bool issue_conversion_warnings
,
4341 tree totype
= convs
->type
;
4342 diagnostic_fn_t diagnostic_fn
;
4345 && convs
->kind
!= ck_user
4346 && convs
->kind
!= ck_ambig
4347 && convs
->kind
!= ck_ref_bind
)
4349 conversion
*t
= convs
;
4350 for (; t
; t
= convs
->u
.next
)
4352 if (t
->kind
== ck_user
|| !t
->bad_p
)
4354 expr
= convert_like_real (t
, expr
, fn
, argnum
, 1,
4355 /*issue_conversion_warnings=*/false,
4356 /*c_cast_p=*/false);
4359 else if (t
->kind
== ck_ambig
)
4360 return convert_like_real (t
, expr
, fn
, argnum
, 1,
4361 /*issue_conversion_warnings=*/false,
4362 /*c_cast_p=*/false);
4363 else if (t
->kind
== ck_identity
)
4366 pedwarn ("invalid conversion from %qT to %qT", TREE_TYPE (expr
), totype
);
4368 pedwarn (" initializing argument %P of %qD", argnum
, fn
);
4369 return cp_convert (totype
, expr
);
4372 if (issue_conversion_warnings
)
4373 conversion_null_warnings (totype
, expr
, fn
, argnum
);
4375 switch (convs
->kind
)
4379 struct z_candidate
*cand
= convs
->cand
;
4380 tree convfn
= cand
->fn
;
4382 expr
= build_over_call (cand
, LOOKUP_NORMAL
);
4384 /* If this is a constructor or a function returning an aggr type,
4385 we need to build up a TARGET_EXPR. */
4386 if (DECL_CONSTRUCTOR_P (convfn
))
4387 expr
= build_cplus_new (totype
, expr
);
4389 /* The result of the call is then used to direct-initialize the object
4390 that is the destination of the copy-initialization. [dcl.init]
4392 Note that this step is not reflected in the conversion sequence;
4393 it affects the semantics when we actually perform the
4394 conversion, but is not considered during overload resolution.
4396 If the target is a class, that means call a ctor. */
4397 if (IS_AGGR_TYPE (totype
)
4398 && (inner
>= 0 || !lvalue_p (expr
)))
4402 /* Core issue 84, now a DR, says that we don't
4403 allow UDCs for these args (which deliberately
4404 breaks copy-init of an auto_ptr<Base> from an
4405 auto_ptr<Derived>). */
4406 LOOKUP_NORMAL
|LOOKUP_ONLYCONVERTING
|LOOKUP_NO_CONVERSION
,
4413 (" initializing argument %P of %qD from result of %qD",
4414 argnum
, fn
, convfn
);
4417 (" initializing temporary from result of %qD", convfn
);
4419 expr
= build_cplus_new (totype
, expr
);
4424 if (type_unknown_p (expr
))
4425 expr
= instantiate_type (totype
, expr
, tf_warning_or_error
);
4426 /* Convert a constant to its underlying value, unless we are
4427 about to bind it to a reference, in which case we need to
4428 leave it as an lvalue. */
4430 expr
= decl_constant_value (expr
);
4431 if (convs
->check_copy_constructor_p
)
4432 check_constructor_callable (totype
, expr
);
4435 /* Call build_user_type_conversion again for the error. */
4436 return build_user_type_conversion
4437 (totype
, convs
->u
.expr
, LOOKUP_NORMAL
);
4443 expr
= convert_like_real (convs
->u
.next
, expr
, fn
, argnum
,
4444 convs
->kind
== ck_ref_bind
? -1 : 1,
4445 convs
->kind
== ck_ref_bind
? issue_conversion_warnings
: false,
4447 if (expr
== error_mark_node
)
4448 return error_mark_node
;
4450 switch (convs
->kind
)
4453 expr
= convert_bitfield_to_declared_type (expr
);
4454 if (! IS_AGGR_TYPE (totype
))
4456 /* Else fall through. */
4458 if (convs
->kind
== ck_base
&& !convs
->need_temporary_p
)
4460 /* We are going to bind a reference directly to a base-class
4461 subobject of EXPR. */
4462 if (convs
->check_copy_constructor_p
)
4463 check_constructor_callable (TREE_TYPE (expr
), expr
);
4464 /* Build an expression for `*((base*) &expr)'. */
4465 expr
= build_unary_op (ADDR_EXPR
, expr
, 0);
4466 expr
= convert_to_base (expr
, build_pointer_type (totype
),
4467 !c_cast_p
, /*nonnull=*/true);
4468 expr
= build_indirect_ref (expr
, "implicit conversion");
4472 /* Copy-initialization where the cv-unqualified version of the source
4473 type is the same class as, or a derived class of, the class of the
4474 destination [is treated as direct-initialization]. [dcl.init] */
4475 expr
= build_temp (expr
, totype
, LOOKUP_NORMAL
|LOOKUP_ONLYCONVERTING
,
4477 if (diagnostic_fn
&& fn
)
4478 diagnostic_fn (" initializing argument %P of %qD", argnum
, fn
);
4479 return build_cplus_new (totype
, expr
);
4483 tree ref_type
= totype
;
4485 /* If necessary, create a temporary.
4487 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
4488 that need temporaries, even when their types are reference
4489 compatible with the type of reference being bound, so the
4490 upcoming call to build_unary_op (ADDR_EXPR, expr, ...)
4492 if (convs
->need_temporary_p
4493 || TREE_CODE (expr
) == CONSTRUCTOR
4494 || TREE_CODE (expr
) == VA_ARG_EXPR
)
4496 tree type
= convs
->u
.next
->type
;
4497 cp_lvalue_kind lvalue
= real_lvalue_p (expr
);
4499 if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type
))
4500 && !TYPE_REF_IS_RVALUE (ref_type
))
4502 /* If the reference is volatile or non-const, we
4503 cannot create a temporary. */
4504 if (lvalue
& clk_bitfield
)
4505 error ("cannot bind bitfield %qE to %qT",
4507 else if (lvalue
& clk_packed
)
4508 error ("cannot bind packed field %qE to %qT",
4511 error ("cannot bind rvalue %qE to %qT", expr
, ref_type
);
4512 return error_mark_node
;
4514 /* If the source is a packed field, and we must use a copy
4515 constructor, then building the target expr will require
4516 binding the field to the reference parameter to the
4517 copy constructor, and we'll end up with an infinite
4518 loop. If we can use a bitwise copy, then we'll be
4520 if ((lvalue
& clk_packed
)
4521 && CLASS_TYPE_P (type
)
4522 && !TYPE_HAS_TRIVIAL_INIT_REF (type
))
4524 error ("cannot bind packed field %qE to %qT",
4526 return error_mark_node
;
4528 expr
= build_target_expr_with_type (expr
, type
);
4531 /* Take the address of the thing to which we will bind the
4533 expr
= build_unary_op (ADDR_EXPR
, expr
, 1);
4534 if (expr
== error_mark_node
)
4535 return error_mark_node
;
4537 /* Convert it to a pointer to the type referred to by the
4538 reference. This will adjust the pointer if a derived to
4539 base conversion is being performed. */
4540 expr
= cp_convert (build_pointer_type (TREE_TYPE (ref_type
)),
4542 /* Convert the pointer to the desired reference type. */
4543 return build_nop (ref_type
, expr
);
4547 return decay_conversion (expr
);
4550 /* Warn about deprecated conversion if appropriate. */
4551 string_conv_p (totype
, expr
, 1);
4556 expr
= convert_to_base (expr
, totype
, !c_cast_p
,
4558 return build_nop (totype
, expr
);
4561 return convert_ptrmem (totype
, expr
, /*allow_inverse_p=*/false,
4568 if (issue_conversion_warnings
)
4569 expr
= convert_and_check (totype
, expr
);
4571 expr
= convert (totype
, expr
);
4576 /* Build a call to __builtin_trap. */
4579 call_builtin_trap (void)
4581 tree fn
= implicit_built_in_decls
[BUILT_IN_TRAP
];
4583 gcc_assert (fn
!= NULL
);
4584 fn
= build_call_n (fn
, 0);
4588 /* ARG is being passed to a varargs function. Perform any conversions
4589 required. Return the converted value. */
4592 convert_arg_to_ellipsis (tree arg
)
4596 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4597 standard conversions are performed. */
4598 arg
= decay_conversion (arg
);
4601 If the argument has integral or enumeration type that is subject
4602 to the integral promotions (_conv.prom_), or a floating point
4603 type that is subject to the floating point promotion
4604 (_conv.fpprom_), the value of the argument is converted to the
4605 promoted type before the call. */
4606 if (TREE_CODE (TREE_TYPE (arg
)) == REAL_TYPE
4607 && (TYPE_PRECISION (TREE_TYPE (arg
))
4608 < TYPE_PRECISION (double_type_node
)))
4609 arg
= convert_to_real (double_type_node
, arg
);
4610 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg
)))
4611 arg
= perform_integral_promotions (arg
);
4613 arg
= require_complete_type (arg
);
4615 if (arg
!= error_mark_node
4616 && !pod_type_p (TREE_TYPE (arg
)))
4618 /* Undefined behavior [expr.call] 5.2.2/7. We used to just warn
4619 here and do a bitwise copy, but now cp_expr_size will abort if we
4621 If the call appears in the context of a sizeof expression,
4622 there is no need to emit a warning, since the expression won't be
4623 evaluated. We keep the builtin_trap just as a safety check. */
4624 if (!skip_evaluation
)
4625 warning (0, "cannot pass objects of non-POD type %q#T through %<...%>; "
4626 "call will abort at runtime", TREE_TYPE (arg
));
4627 arg
= call_builtin_trap ();
4628 arg
= build2 (COMPOUND_EXPR
, integer_type_node
, arg
,
4635 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4638 build_x_va_arg (tree expr
, tree type
)
4640 if (processing_template_decl
)
4641 return build_min (VA_ARG_EXPR
, type
, expr
);
4643 type
= complete_type_or_else (type
, NULL_TREE
);
4645 if (expr
== error_mark_node
|| !type
)
4646 return error_mark_node
;
4648 if (! pod_type_p (type
))
4650 /* Remove reference types so we don't ICE later on. */
4651 tree type1
= non_reference (type
);
4652 /* Undefined behavior [expr.call] 5.2.2/7. */
4653 warning (0, "cannot receive objects of non-POD type %q#T through %<...%>; "
4654 "call will abort at runtime", type
);
4655 expr
= convert (build_pointer_type (type1
), null_node
);
4656 expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr
),
4657 call_builtin_trap (), expr
);
4658 expr
= build_indirect_ref (expr
, NULL
);
4662 return build_va_arg (expr
, type
);
4665 /* TYPE has been given to va_arg. Apply the default conversions which
4666 would have happened when passed via ellipsis. Return the promoted
4667 type, or the passed type if there is no change. */
4670 cxx_type_promotes_to (tree type
)
4674 /* Perform the array-to-pointer and function-to-pointer
4676 type
= type_decays_to (type
);
4678 promote
= type_promotes_to (type
);
4679 if (same_type_p (type
, promote
))
4685 /* ARG is a default argument expression being passed to a parameter of
4686 the indicated TYPE, which is a parameter to FN. Do any required
4687 conversions. Return the converted value. */
4690 convert_default_arg (tree type
, tree arg
, tree fn
, int parmnum
)
4692 /* If the ARG is an unparsed default argument expression, the
4693 conversion cannot be performed. */
4694 if (TREE_CODE (arg
) == DEFAULT_ARG
)
4696 error ("the default argument for parameter %d of %qD has "
4697 "not yet been parsed",
4699 return error_mark_node
;
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
);
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
);
4731 /* Returns the type which will really be used for passing an argument of
4735 type_passed_as (tree type
)
4737 /* Pass classes with copy ctors by invisible reference. */
4738 if (TREE_ADDRESSABLE (type
))
4740 type
= build_reference_type (type
);
4741 /* There are no other pointers to this temporary. */
4742 type
= build_qualified_type (type
, TYPE_QUAL_RESTRICT
);
4744 else if (targetm
.calls
.promote_prototypes (type
)
4745 && INTEGRAL_TYPE_P (type
)
4746 && COMPLETE_TYPE_P (type
)
4747 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type
),
4748 TYPE_SIZE (integer_type_node
)))
4749 type
= integer_type_node
;
4754 /* Actually perform the appropriate conversion. */
4757 convert_for_arg_passing (tree type
, tree val
)
4761 /* If VAL is a bitfield, then -- since it has already been converted
4762 to TYPE -- it cannot have a precision greater than TYPE.
4764 If it has a smaller precision, we must widen it here. For
4765 example, passing "int f:3;" to a function expecting an "int" will
4766 not result in any conversion before this point.
4768 If the precision is the same we must not risk widening. For
4769 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
4770 often have type "int", even though the C++ type for the field is
4771 "long long". If the value is being passed to a function
4772 expecting an "int", then no conversions will be required. But,
4773 if we call convert_bitfield_to_declared_type, the bitfield will
4774 be converted to "long long". */
4775 bitfield_type
= is_bitfield_expr_with_lowered_type (val
);
4777 && TYPE_PRECISION (TREE_TYPE (val
)) < TYPE_PRECISION (type
))
4778 val
= convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type
), val
);
4780 if (val
== error_mark_node
)
4782 /* Pass classes with copy ctors by invisible reference. */
4783 else if (TREE_ADDRESSABLE (type
))
4784 val
= build1 (ADDR_EXPR
, build_reference_type (type
), val
);
4785 else if (targetm
.calls
.promote_prototypes (type
)
4786 && INTEGRAL_TYPE_P (type
)
4787 && COMPLETE_TYPE_P (type
)
4788 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type
),
4789 TYPE_SIZE (integer_type_node
)))
4790 val
= perform_integral_promotions (val
);
4791 if (warn_missing_format_attribute
)
4793 tree rhstype
= TREE_TYPE (val
);
4794 const enum tree_code coder
= TREE_CODE (rhstype
);
4795 const enum tree_code codel
= TREE_CODE (type
);
4796 if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
4798 && check_missing_format_attribute (type
, rhstype
))
4799 warning (OPT_Wmissing_format_attribute
,
4800 "argument of function call might be a candidate for a format attribute");
4805 /* Returns true iff FN is a function with magic varargs, i.e. ones for
4806 which no conversions at all should be done. This is true for some
4807 builtins which don't act like normal functions. */
4810 magic_varargs_p (tree fn
)
4812 if (DECL_BUILT_IN (fn
))
4813 switch (DECL_FUNCTION_CODE (fn
))
4815 case BUILT_IN_CLASSIFY_TYPE
:
4816 case BUILT_IN_CONSTANT_P
:
4817 case BUILT_IN_NEXT_ARG
:
4818 case BUILT_IN_STDARG_START
:
4819 case BUILT_IN_VA_START
:
4823 return lookup_attribute ("type generic",
4824 TYPE_ATTRIBUTES (TREE_TYPE (fn
))) != 0;
4830 /* Subroutine of the various build_*_call functions. Overload resolution
4831 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4832 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4833 bitmask of various LOOKUP_* flags which apply to the call itself. */
4836 build_over_call (struct z_candidate
*cand
, int flags
)
4839 tree args
= cand
->args
;
4840 conversion
**convs
= cand
->convs
;
4842 tree parm
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
4851 /* In a template, there is no need to perform all of the work that
4852 is normally done. We are only interested in the type of the call
4853 expression, i.e., the return type of the function. Any semantic
4854 errors will be deferred until the template is instantiated. */
4855 if (processing_template_decl
)
4859 return_type
= TREE_TYPE (TREE_TYPE (fn
));
4860 expr
= build_call_list (return_type
, fn
, args
);
4861 if (TREE_THIS_VOLATILE (fn
) && cfun
)
4862 current_function_returns_abnormally
= 1;
4863 if (!VOID_TYPE_P (return_type
))
4864 require_complete_type (return_type
);
4865 return convert_from_reference (expr
);
4868 /* Give any warnings we noticed during overload resolution. */
4871 struct candidate_warning
*w
;
4872 for (w
= cand
->warnings
; w
; w
= w
->next
)
4873 joust (cand
, w
->loser
, 1);
4876 if (DECL_FUNCTION_MEMBER_P (fn
))
4878 /* If FN is a template function, two cases must be considered.
4883 template <class T> void f();
4885 template <class T> struct B {
4889 struct C : A, B<int> {
4891 using B<int>::g; // #2
4894 In case #1 where `A::f' is a member template, DECL_ACCESS is
4895 recorded in the primary template but not in its specialization.
4896 We check access of FN using its primary template.
4898 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
4899 because it is a member of class template B, DECL_ACCESS is
4900 recorded in the specialization `B<int>::g'. We cannot use its
4901 primary template because `B<T>::g' and `B<int>::g' may have
4902 different access. */
4903 if (DECL_TEMPLATE_INFO (fn
)
4904 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn
)))
4905 perform_or_defer_access_check (cand
->access_path
,
4906 DECL_TI_TEMPLATE (fn
), fn
);
4908 perform_or_defer_access_check (cand
->access_path
, fn
, fn
);
4911 if (args
&& TREE_CODE (args
) != TREE_LIST
)
4912 args
= build_tree_list (NULL_TREE
, args
);
4915 /* Find maximum size of vector to hold converted arguments. */
4916 parmlen
= list_length (parm
);
4917 nargs
= list_length (args
);
4918 if (parmlen
> nargs
)
4920 argarray
= (tree
*) alloca (nargs
* sizeof (tree
));
4922 /* The implicit parameters to a constructor are not considered by overload
4923 resolution, and must be of the proper type. */
4924 if (DECL_CONSTRUCTOR_P (fn
))
4926 argarray
[j
++] = TREE_VALUE (arg
);
4927 arg
= TREE_CHAIN (arg
);
4928 parm
= TREE_CHAIN (parm
);
4929 /* We should never try to call the abstract constructor. */
4930 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn
));
4932 if (DECL_HAS_VTT_PARM_P (fn
))
4934 argarray
[j
++] = TREE_VALUE (arg
);
4935 arg
= TREE_CHAIN (arg
);
4936 parm
= TREE_CHAIN (parm
);
4939 /* Bypass access control for 'this' parameter. */
4940 else if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
)
4942 tree parmtype
= TREE_VALUE (parm
);
4943 tree argtype
= TREE_TYPE (TREE_VALUE (arg
));
4947 if (convs
[i
]->bad_p
)
4948 pedwarn ("passing %qT as %<this%> argument of %q#D discards qualifiers",
4949 TREE_TYPE (argtype
), fn
);
4951 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4952 X is called for an object that is not of type X, or of a type
4953 derived from X, the behavior is undefined.
4955 So we can assume that anything passed as 'this' is non-null, and
4956 optimize accordingly. */
4957 gcc_assert (TREE_CODE (parmtype
) == POINTER_TYPE
);
4958 /* Convert to the base in which the function was declared. */
4959 gcc_assert (cand
->conversion_path
!= NULL_TREE
);
4960 converted_arg
= build_base_path (PLUS_EXPR
,
4962 cand
->conversion_path
,
4964 /* Check that the base class is accessible. */
4965 if (!accessible_base_p (TREE_TYPE (argtype
),
4966 BINFO_TYPE (cand
->conversion_path
), true))
4967 error ("%qT is not an accessible base of %qT",
4968 BINFO_TYPE (cand
->conversion_path
),
4969 TREE_TYPE (argtype
));
4970 /* If fn was found by a using declaration, the conversion path
4971 will be to the derived class, not the base declaring fn. We
4972 must convert from derived to base. */
4973 base_binfo
= lookup_base (TREE_TYPE (TREE_TYPE (converted_arg
)),
4974 TREE_TYPE (parmtype
), ba_unique
, NULL
);
4975 converted_arg
= build_base_path (PLUS_EXPR
, converted_arg
,
4978 argarray
[j
++] = converted_arg
;
4979 parm
= TREE_CHAIN (parm
);
4980 arg
= TREE_CHAIN (arg
);
4986 parm
= TREE_CHAIN (parm
), arg
= TREE_CHAIN (arg
), ++i
)
4988 tree type
= TREE_VALUE (parm
);
4992 /* Don't make a copy here if build_call is going to. */
4993 if (conv
->kind
== ck_rvalue
4994 && !TREE_ADDRESSABLE (complete_type (type
)))
4995 conv
= conv
->u
.next
;
4997 val
= convert_like_with_context
4998 (conv
, TREE_VALUE (arg
), fn
, i
- is_method
);
5000 val
= convert_for_arg_passing (type
, val
);
5001 argarray
[j
++] = val
;
5004 /* Default arguments */
5005 for (; parm
&& parm
!= void_list_node
; parm
= TREE_CHAIN (parm
), i
++)
5006 argarray
[j
++] = convert_default_arg (TREE_VALUE (parm
),
5007 TREE_PURPOSE (parm
),
5010 for (; arg
; arg
= TREE_CHAIN (arg
))
5012 tree a
= TREE_VALUE (arg
);
5013 if (magic_varargs_p (fn
))
5014 /* Do no conversions for magic varargs. */;
5016 a
= convert_arg_to_ellipsis (a
);
5020 gcc_assert (j
<= nargs
);
5023 check_function_arguments (TYPE_ATTRIBUTES (TREE_TYPE (fn
)),
5024 nargs
, argarray
, TYPE_ARG_TYPES (TREE_TYPE (fn
)));
5026 /* Avoid actually calling copy constructors and copy assignment operators,
5029 if (! flag_elide_constructors
)
5030 /* Do things the hard way. */;
5031 else if (cand
->num_convs
== 1
5032 && (DECL_COPY_CONSTRUCTOR_P (fn
)
5033 || DECL_MOVE_CONSTRUCTOR_P (fn
)))
5036 arg
= argarray
[num_artificial_parms_for (fn
)];
5038 /* Pull out the real argument, disregarding const-correctness. */
5040 while (TREE_CODE (targ
) == NOP_EXPR
5041 || TREE_CODE (targ
) == NON_LVALUE_EXPR
5042 || TREE_CODE (targ
) == CONVERT_EXPR
)
5043 targ
= TREE_OPERAND (targ
, 0);
5044 if (TREE_CODE (targ
) == ADDR_EXPR
)
5046 targ
= TREE_OPERAND (targ
, 0);
5047 if (!same_type_ignoring_top_level_qualifiers_p
5048 (TREE_TYPE (TREE_TYPE (arg
)), TREE_TYPE (targ
)))
5057 arg
= build_indirect_ref (arg
, 0);
5059 /* [class.copy]: the copy constructor is implicitly defined even if
5060 the implementation elided its use. */
5061 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn
)))
5064 /* If we're creating a temp and we already have one, don't create a
5065 new one. If we're not creating a temp but we get one, use
5066 INIT_EXPR to collapse the temp into our target. Otherwise, if the
5067 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
5068 temp or an INIT_EXPR otherwise. */
5069 if (integer_zerop (TREE_VALUE (args
)))
5071 if (TREE_CODE (arg
) == TARGET_EXPR
)
5073 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn
)))
5074 return build_target_expr_with_type (arg
, DECL_CONTEXT (fn
));
5076 else if (TREE_CODE (arg
) == TARGET_EXPR
5077 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn
)))
5079 tree to
= stabilize_reference
5080 (build_indirect_ref (TREE_VALUE (args
), 0));
5082 val
= build2 (INIT_EXPR
, DECL_CONTEXT (fn
), to
, arg
);
5086 else if (DECL_OVERLOADED_OPERATOR_P (fn
) == NOP_EXPR
5088 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn
)))
5090 tree to
= stabilize_reference
5091 (build_indirect_ref (argarray
[0], 0));
5092 tree type
= TREE_TYPE (to
);
5093 tree as_base
= CLASSTYPE_AS_BASE (type
);
5096 if (tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (as_base
)))
5098 arg
= build_indirect_ref (arg
, 0);
5099 val
= build2 (MODIFY_EXPR
, TREE_TYPE (to
), to
, arg
);
5103 /* We must only copy the non-tail padding parts.
5104 Use __builtin_memcpy for the bitwise copy. */
5106 tree arg0
, arg1
, arg2
, t
;
5108 arg2
= TYPE_SIZE_UNIT (as_base
);
5110 arg0
= build_unary_op (ADDR_EXPR
, to
, 0);
5111 t
= implicit_built_in_decls
[BUILT_IN_MEMCPY
];
5112 t
= build_call_n (t
, 3, arg0
, arg1
, arg2
);
5114 t
= convert (TREE_TYPE (arg0
), t
);
5115 val
= build_indirect_ref (t
, 0);
5123 if (DECL_VINDEX (fn
) && (flags
& LOOKUP_NONVIRTUAL
) == 0)
5126 tree binfo
= lookup_base (TREE_TYPE (TREE_TYPE (argarray
[0])),
5129 gcc_assert (binfo
&& binfo
!= error_mark_node
);
5131 argarray
[0] = build_base_path (PLUS_EXPR
, argarray
[0], binfo
, 1);
5132 if (TREE_SIDE_EFFECTS (argarray
[0]))
5133 argarray
[0] = save_expr (argarray
[0]);
5134 t
= build_pointer_type (TREE_TYPE (fn
));
5135 if (DECL_CONTEXT (fn
) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn
)))
5136 fn
= build_java_interface_fn_ref (fn
, argarray
[0]);
5138 fn
= build_vfn_ref (argarray
[0], DECL_VINDEX (fn
));
5141 else if (DECL_INLINE (fn
))
5142 fn
= inline_conversion (fn
);
5144 fn
= build_addr_func (fn
);
5146 return build_cxx_call (fn
, nargs
, argarray
);
5149 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
5150 This function performs no overload resolution, conversion, or other
5151 high-level operations. */
5154 build_cxx_call (tree fn
, int nargs
, tree
*argarray
)
5158 fn
= build_call_a (fn
, nargs
, argarray
);
5160 /* If this call might throw an exception, note that fact. */
5161 fndecl
= get_callee_fndecl (fn
);
5162 if ((!fndecl
|| !TREE_NOTHROW (fndecl
))
5163 && at_function_scope_p ()
5165 cp_function_chain
->can_throw
= 1;
5167 /* Some built-in function calls will be evaluated at compile-time in
5169 fn
= fold_if_not_in_template (fn
);
5171 if (VOID_TYPE_P (TREE_TYPE (fn
)))
5174 fn
= require_complete_type (fn
);
5175 if (fn
== error_mark_node
)
5176 return error_mark_node
;
5178 if (IS_AGGR_TYPE (TREE_TYPE (fn
)))
5179 fn
= build_cplus_new (TREE_TYPE (fn
), fn
);
5180 return convert_from_reference (fn
);
5183 static GTY(()) tree java_iface_lookup_fn
;
5185 /* Make an expression which yields the address of the Java interface
5186 method FN. This is achieved by generating a call to libjava's
5187 _Jv_LookupInterfaceMethodIdx(). */
5190 build_java_interface_fn_ref (tree fn
, tree instance
)
5192 tree lookup_fn
, method
, idx
;
5193 tree klass_ref
, iface
, iface_ref
;
5196 if (!java_iface_lookup_fn
)
5198 tree endlink
= build_void_list_node ();
5199 tree t
= tree_cons (NULL_TREE
, ptr_type_node
,
5200 tree_cons (NULL_TREE
, ptr_type_node
,
5201 tree_cons (NULL_TREE
, java_int_type_node
,
5203 java_iface_lookup_fn
5204 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx",
5205 build_function_type (ptr_type_node
, t
),
5206 0, NOT_BUILT_IN
, NULL
, NULL_TREE
);
5209 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
5210 This is the first entry in the vtable. */
5211 klass_ref
= build_vtbl_ref (build_indirect_ref (instance
, 0),
5214 /* Get the java.lang.Class pointer for the interface being called. */
5215 iface
= DECL_CONTEXT (fn
);
5216 iface_ref
= lookup_field (iface
, get_identifier ("class$"), 0, false);
5217 if (!iface_ref
|| TREE_CODE (iface_ref
) != VAR_DECL
5218 || DECL_CONTEXT (iface_ref
) != iface
)
5220 error ("could not find class$ field in java interface type %qT",
5222 return error_mark_node
;
5224 iface_ref
= build_address (iface_ref
);
5225 iface_ref
= convert (build_pointer_type (iface
), iface_ref
);
5227 /* Determine the itable index of FN. */
5229 for (method
= TYPE_METHODS (iface
); method
; method
= TREE_CHAIN (method
))
5231 if (!DECL_VIRTUAL_P (method
))
5237 idx
= build_int_cst (NULL_TREE
, i
);
5239 lookup_fn
= build1 (ADDR_EXPR
,
5240 build_pointer_type (TREE_TYPE (java_iface_lookup_fn
)),
5241 java_iface_lookup_fn
);
5242 return build_call_nary (ptr_type_node
, lookup_fn
,
5243 3, klass_ref
, iface_ref
, idx
);
5246 /* Returns the value to use for the in-charge parameter when making a
5247 call to a function with the indicated NAME.
5249 FIXME:Can't we find a neater way to do this mapping? */
5252 in_charge_arg_for_name (tree name
)
5254 if (name
== base_ctor_identifier
5255 || name
== base_dtor_identifier
)
5256 return integer_zero_node
;
5257 else if (name
== complete_ctor_identifier
)
5258 return integer_one_node
;
5259 else if (name
== complete_dtor_identifier
)
5260 return integer_two_node
;
5261 else if (name
== deleting_dtor_identifier
)
5262 return integer_three_node
;
5264 /* This function should only be called with one of the names listed
5270 /* Build a call to a constructor, destructor, or an assignment
5271 operator for INSTANCE, an expression with class type. NAME
5272 indicates the special member function to call; ARGS are the
5273 arguments. BINFO indicates the base of INSTANCE that is to be
5274 passed as the `this' parameter to the member function called.
5276 FLAGS are the LOOKUP_* flags to use when processing the call.
5278 If NAME indicates a complete object constructor, INSTANCE may be
5279 NULL_TREE. In this case, the caller will call build_cplus_new to
5280 store the newly constructed object into a VAR_DECL. */
5283 build_special_member_call (tree instance
, tree name
, tree args
,
5284 tree binfo
, int flags
)
5287 /* The type of the subobject to be constructed or destroyed. */
5290 gcc_assert (name
== complete_ctor_identifier
5291 || name
== base_ctor_identifier
5292 || name
== complete_dtor_identifier
5293 || name
== base_dtor_identifier
5294 || name
== deleting_dtor_identifier
5295 || name
== ansi_assopname (NOP_EXPR
));
5298 /* Resolve the name. */
5299 if (!complete_type_or_else (binfo
, NULL_TREE
))
5300 return error_mark_node
;
5302 binfo
= TYPE_BINFO (binfo
);
5305 gcc_assert (binfo
!= NULL_TREE
);
5307 class_type
= BINFO_TYPE (binfo
);
5309 /* Handle the special case where INSTANCE is NULL_TREE. */
5310 if (name
== complete_ctor_identifier
&& !instance
)
5312 instance
= build_int_cst (build_pointer_type (class_type
), 0);
5313 instance
= build1 (INDIRECT_REF
, class_type
, instance
);
5317 if (name
== complete_dtor_identifier
5318 || name
== base_dtor_identifier
5319 || name
== deleting_dtor_identifier
)
5320 gcc_assert (args
== NULL_TREE
);
5322 /* Convert to the base class, if necessary. */
5323 if (!same_type_ignoring_top_level_qualifiers_p
5324 (TREE_TYPE (instance
), BINFO_TYPE (binfo
)))
5326 if (name
!= ansi_assopname (NOP_EXPR
))
5327 /* For constructors and destructors, either the base is
5328 non-virtual, or it is virtual but we are doing the
5329 conversion from a constructor or destructor for the
5330 complete object. In either case, we can convert
5332 instance
= convert_to_base_statically (instance
, binfo
);
5334 /* However, for assignment operators, we must convert
5335 dynamically if the base is virtual. */
5336 instance
= build_base_path (PLUS_EXPR
, instance
,
5337 binfo
, /*nonnull=*/1);
5341 gcc_assert (instance
!= NULL_TREE
);
5343 fns
= lookup_fnfields (binfo
, name
, 1);
5345 /* When making a call to a constructor or destructor for a subobject
5346 that uses virtual base classes, pass down a pointer to a VTT for
5348 if ((name
== base_ctor_identifier
5349 || name
== base_dtor_identifier
)
5350 && CLASSTYPE_VBASECLASSES (class_type
))
5355 /* If the current function is a complete object constructor
5356 or destructor, then we fetch the VTT directly.
5357 Otherwise, we look it up using the VTT we were given. */
5358 vtt
= TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type
));
5359 vtt
= decay_conversion (vtt
);
5360 vtt
= build3 (COND_EXPR
, TREE_TYPE (vtt
),
5361 build2 (EQ_EXPR
, boolean_type_node
,
5362 current_in_charge_parm
, integer_zero_node
),
5365 gcc_assert (BINFO_SUBVTT_INDEX (binfo
));
5366 sub_vtt
= build2 (POINTER_PLUS_EXPR
, TREE_TYPE (vtt
), vtt
,
5367 BINFO_SUBVTT_INDEX (binfo
));
5369 args
= tree_cons (NULL_TREE
, sub_vtt
, args
);
5372 return build_new_method_call (instance
, fns
, args
,
5373 TYPE_BINFO (BINFO_TYPE (binfo
)),
5374 flags
, /*fn=*/NULL
);
5377 /* Return the NAME, as a C string. The NAME indicates a function that
5378 is a member of TYPE. *FREE_P is set to true if the caller must
5379 free the memory returned.
5381 Rather than go through all of this, we should simply set the names
5382 of constructors and destructors appropriately, and dispense with
5383 ctor_identifier, dtor_identifier, etc. */
5386 name_as_c_string (tree name
, tree type
, bool *free_p
)
5390 /* Assume that we will not allocate memory. */
5392 /* Constructors and destructors are special. */
5393 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
5396 = CONST_CAST (char *, IDENTIFIER_POINTER (constructor_name (type
)));
5397 /* For a destructor, add the '~'. */
5398 if (name
== complete_dtor_identifier
5399 || name
== base_dtor_identifier
5400 || name
== deleting_dtor_identifier
)
5402 pretty_name
= concat ("~", pretty_name
, NULL
);
5403 /* Remember that we need to free the memory allocated. */
5407 else if (IDENTIFIER_TYPENAME_P (name
))
5409 pretty_name
= concat ("operator ",
5410 type_as_string (TREE_TYPE (name
),
5411 TFF_PLAIN_IDENTIFIER
),
5413 /* Remember that we need to free the memory allocated. */
5417 pretty_name
= CONST_CAST (char *, IDENTIFIER_POINTER (name
));
5422 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
5423 be set, upon return, to the function called. */
5426 build_new_method_call (tree instance
, tree fns
, tree args
,
5427 tree conversion_path
, int flags
,
5430 struct z_candidate
*candidates
= 0, *cand
;
5431 tree explicit_targs
= NULL_TREE
;
5432 tree basetype
= NULL_TREE
;
5435 tree mem_args
= NULL_TREE
, instance_ptr
;
5441 int template_only
= 0;
5448 gcc_assert (instance
!= NULL_TREE
);
5450 /* We don't know what function we're going to call, yet. */
5454 if (error_operand_p (instance
)
5455 || error_operand_p (fns
)
5456 || args
== error_mark_node
)
5457 return error_mark_node
;
5459 if (!BASELINK_P (fns
))
5461 error ("call to non-function %qD", fns
);
5462 return error_mark_node
;
5465 orig_instance
= instance
;
5469 /* Dismantle the baselink to collect all the information we need. */
5470 if (!conversion_path
)
5471 conversion_path
= BASELINK_BINFO (fns
);
5472 access_binfo
= BASELINK_ACCESS_BINFO (fns
);
5473 optype
= BASELINK_OPTYPE (fns
);
5474 fns
= BASELINK_FUNCTIONS (fns
);
5475 if (TREE_CODE (fns
) == TEMPLATE_ID_EXPR
)
5477 explicit_targs
= TREE_OPERAND (fns
, 1);
5478 fns
= TREE_OPERAND (fns
, 0);
5481 gcc_assert (TREE_CODE (fns
) == FUNCTION_DECL
5482 || TREE_CODE (fns
) == TEMPLATE_DECL
5483 || TREE_CODE (fns
) == OVERLOAD
);
5484 fn
= get_first_fn (fns
);
5485 name
= DECL_NAME (fn
);
5487 basetype
= TYPE_MAIN_VARIANT (TREE_TYPE (instance
));
5488 gcc_assert (CLASS_TYPE_P (basetype
));
5490 if (processing_template_decl
)
5492 instance
= build_non_dependent_expr (instance
);
5493 args
= build_non_dependent_args (orig_args
);
5496 /* The USER_ARGS are the arguments we will display to users if an
5497 error occurs. The USER_ARGS should not include any
5498 compiler-generated arguments. The "this" pointer hasn't been
5499 added yet. However, we must remove the VTT pointer if this is a
5500 call to a base-class constructor or destructor. */
5502 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
5504 /* Callers should explicitly indicate whether they want to construct
5505 the complete object or just the part without virtual bases. */
5506 gcc_assert (name
!= ctor_identifier
);
5507 /* Similarly for destructors. */
5508 gcc_assert (name
!= dtor_identifier
);
5509 /* Remove the VTT pointer, if present. */
5510 if ((name
== base_ctor_identifier
|| name
== base_dtor_identifier
)
5511 && CLASSTYPE_VBASECLASSES (basetype
))
5512 user_args
= TREE_CHAIN (user_args
);
5515 /* Process the argument list. */
5516 args
= resolve_args (args
);
5517 if (args
== error_mark_node
)
5518 return error_mark_node
;
5520 instance_ptr
= build_this (instance
);
5522 /* It's OK to call destructors and constructors on cv-qualified objects.
5523 Therefore, convert the INSTANCE_PTR to the unqualified type, if
5525 if (DECL_DESTRUCTOR_P (fn
)
5526 || DECL_CONSTRUCTOR_P (fn
))
5528 tree type
= build_pointer_type (basetype
);
5529 if (!same_type_p (type
, TREE_TYPE (instance_ptr
)))
5530 instance_ptr
= build_nop (type
, instance_ptr
);
5532 if (DECL_DESTRUCTOR_P (fn
))
5533 name
= complete_dtor_identifier
;
5535 class_type
= (conversion_path
? BINFO_TYPE (conversion_path
) : NULL_TREE
);
5536 mem_args
= tree_cons (NULL_TREE
, instance_ptr
, args
);
5538 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5539 p
= conversion_obstack_alloc (0);
5541 for (fn
= fns
; fn
; fn
= OVL_NEXT (fn
))
5543 tree t
= OVL_CURRENT (fn
);
5546 /* We can end up here for copy-init of same or base class. */
5547 if ((flags
& LOOKUP_ONLYCONVERTING
)
5548 && DECL_NONCONVERTING_P (t
))
5551 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t
))
5552 this_arglist
= mem_args
;
5554 this_arglist
= args
;
5556 if (TREE_CODE (t
) == TEMPLATE_DECL
)
5557 /* A member template. */
5558 add_template_candidate (&candidates
, t
,
5561 this_arglist
, optype
,
5566 else if (! template_only
)
5567 add_function_candidate (&candidates
, t
,
5575 candidates
= splice_viable (candidates
, pedantic
, &any_viable_p
);
5578 if (!COMPLETE_TYPE_P (basetype
))
5579 cxx_incomplete_type_error (instance_ptr
, basetype
);
5585 pretty_name
= name_as_c_string (name
, basetype
, &free_p
);
5586 error ("no matching function for call to %<%T::%s(%A)%#V%>",
5587 basetype
, pretty_name
, user_args
,
5588 TREE_TYPE (TREE_TYPE (instance_ptr
)));
5592 print_z_candidates (candidates
);
5593 call
= error_mark_node
;
5597 cand
= tourney (candidates
);
5603 pretty_name
= name_as_c_string (name
, basetype
, &free_p
);
5604 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name
,
5606 print_z_candidates (candidates
);
5609 call
= error_mark_node
;
5615 if (!(flags
& LOOKUP_NONVIRTUAL
)
5616 && DECL_PURE_VIRTUAL_P (fn
)
5617 && instance
== current_class_ref
5618 && (DECL_CONSTRUCTOR_P (current_function_decl
)
5619 || DECL_DESTRUCTOR_P (current_function_decl
)))
5620 /* This is not an error, it is runtime undefined
5622 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl
) ?
5623 "abstract virtual %q#D called from constructor"
5624 : "abstract virtual %q#D called from destructor"),
5627 if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
5628 && is_dummy_object (instance_ptr
))
5630 error ("cannot call member function %qD without object",
5632 call
= error_mark_node
;
5636 if (DECL_VINDEX (fn
) && ! (flags
& LOOKUP_NONVIRTUAL
)
5637 && resolves_to_fixed_type_p (instance
, 0))
5638 flags
|= LOOKUP_NONVIRTUAL
;
5639 /* Now we know what function is being called. */
5642 /* Build the actual CALL_EXPR. */
5643 call
= build_over_call (cand
, flags
);
5644 /* In an expression of the form `a->f()' where `f' turns
5645 out to be a static member function, `a' is
5646 none-the-less evaluated. */
5647 if (TREE_CODE (TREE_TYPE (fn
)) != METHOD_TYPE
5648 && !is_dummy_object (instance_ptr
)
5649 && TREE_SIDE_EFFECTS (instance_ptr
))
5650 call
= build2 (COMPOUND_EXPR
, TREE_TYPE (call
),
5651 instance_ptr
, call
);
5652 else if (call
!= error_mark_node
5653 && DECL_DESTRUCTOR_P (cand
->fn
)
5654 && !VOID_TYPE_P (TREE_TYPE (call
)))
5655 /* An explicit call of the form "x->~X()" has type
5656 "void". However, on platforms where destructors
5657 return "this" (i.e., those where
5658 targetm.cxx.cdtor_returns_this is true), such calls
5659 will appear to have a return value of pointer type
5660 to the low-level call machinery. We do not want to
5661 change the low-level machinery, since we want to be
5662 able to optimize "delete f()" on such platforms as
5663 "operator delete(~X(f()))" (rather than generating
5664 "t = f(), ~X(t), operator delete (t)"). */
5665 call
= build_nop (void_type_node
, call
);
5670 if (processing_template_decl
&& call
!= error_mark_node
)
5671 call
= (build_min_non_dep_call_list
5673 build_min_nt (COMPONENT_REF
, orig_instance
, orig_fns
, NULL_TREE
),
5676 /* Free all the conversions we allocated. */
5677 obstack_free (&conversion_obstack
, p
);
5682 /* Returns true iff standard conversion sequence ICS1 is a proper
5683 subsequence of ICS2. */
5686 is_subseq (conversion
*ics1
, conversion
*ics2
)
5688 /* We can assume that a conversion of the same code
5689 between the same types indicates a subsequence since we only get
5690 here if the types we are converting from are the same. */
5692 while (ics1
->kind
== ck_rvalue
5693 || ics1
->kind
== ck_lvalue
)
5694 ics1
= ics1
->u
.next
;
5698 while (ics2
->kind
== ck_rvalue
5699 || ics2
->kind
== ck_lvalue
)
5700 ics2
= ics2
->u
.next
;
5702 if (ics2
->kind
== ck_user
5703 || ics2
->kind
== ck_ambig
5704 || ics2
->kind
== ck_identity
)
5705 /* At this point, ICS1 cannot be a proper subsequence of
5706 ICS2. We can get a USER_CONV when we are comparing the
5707 second standard conversion sequence of two user conversion
5711 ics2
= ics2
->u
.next
;
5713 if (ics2
->kind
== ics1
->kind
5714 && same_type_p (ics2
->type
, ics1
->type
)
5715 && same_type_p (ics2
->u
.next
->type
,
5716 ics1
->u
.next
->type
))
5721 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
5722 be any _TYPE nodes. */
5725 is_properly_derived_from (tree derived
, tree base
)
5727 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived
))
5728 || !IS_AGGR_TYPE_CODE (TREE_CODE (base
)))
5731 /* We only allow proper derivation here. The DERIVED_FROM_P macro
5732 considers every class derived from itself. */
5733 return (!same_type_ignoring_top_level_qualifiers_p (derived
, base
)
5734 && DERIVED_FROM_P (base
, derived
));
5737 /* We build the ICS for an implicit object parameter as a pointer
5738 conversion sequence. However, such a sequence should be compared
5739 as if it were a reference conversion sequence. If ICS is the
5740 implicit conversion sequence for an implicit object parameter,
5741 modify it accordingly. */
5744 maybe_handle_implicit_object (conversion
**ics
)
5748 /* [over.match.funcs]
5750 For non-static member functions, the type of the
5751 implicit object parameter is "reference to cv X"
5752 where X is the class of which the function is a
5753 member and cv is the cv-qualification on the member
5754 function declaration. */
5755 conversion
*t
= *ics
;
5756 tree reference_type
;
5758 /* The `this' parameter is a pointer to a class type. Make the
5759 implicit conversion talk about a reference to that same class
5761 reference_type
= TREE_TYPE (t
->type
);
5762 reference_type
= build_reference_type (reference_type
);
5764 if (t
->kind
== ck_qual
)
5766 if (t
->kind
== ck_ptr
)
5768 t
= build_identity_conv (TREE_TYPE (t
->type
), NULL_TREE
);
5769 t
= direct_reference_binding (reference_type
, t
);
5771 t
->rvaluedness_matches_p
= 0;
5776 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
5777 and return the initial reference binding conversion. Otherwise,
5778 leave *ICS unchanged and return NULL. */
5781 maybe_handle_ref_bind (conversion
**ics
)
5783 if ((*ics
)->kind
== ck_ref_bind
)
5785 conversion
*old_ics
= *ics
;
5786 *ics
= old_ics
->u
.next
;
5787 (*ics
)->user_conv_p
= old_ics
->user_conv_p
;
5788 (*ics
)->bad_p
= old_ics
->bad_p
;
5795 /* Compare two implicit conversion sequences according to the rules set out in
5796 [over.ics.rank]. Return values:
5798 1: ics1 is better than ics2
5799 -1: ics2 is better than ics1
5800 0: ics1 and ics2 are indistinguishable */
5803 compare_ics (conversion
*ics1
, conversion
*ics2
)
5809 tree deref_from_type1
= NULL_TREE
;
5810 tree deref_from_type2
= NULL_TREE
;
5811 tree deref_to_type1
= NULL_TREE
;
5812 tree deref_to_type2
= NULL_TREE
;
5813 conversion_rank rank1
, rank2
;
5815 /* REF_BINDING is nonzero if the result of the conversion sequence
5816 is a reference type. In that case REF_CONV is the reference
5817 binding conversion. */
5818 conversion
*ref_conv1
;
5819 conversion
*ref_conv2
;
5821 /* Handle implicit object parameters. */
5822 maybe_handle_implicit_object (&ics1
);
5823 maybe_handle_implicit_object (&ics2
);
5825 /* Handle reference parameters. */
5826 ref_conv1
= maybe_handle_ref_bind (&ics1
);
5827 ref_conv2
= maybe_handle_ref_bind (&ics2
);
5831 When comparing the basic forms of implicit conversion sequences (as
5832 defined in _over.best.ics_)
5834 --a standard conversion sequence (_over.ics.scs_) is a better
5835 conversion sequence than a user-defined conversion sequence
5836 or an ellipsis conversion sequence, and
5838 --a user-defined conversion sequence (_over.ics.user_) is a
5839 better conversion sequence than an ellipsis conversion sequence
5840 (_over.ics.ellipsis_). */
5841 rank1
= CONVERSION_RANK (ics1
);
5842 rank2
= CONVERSION_RANK (ics2
);
5846 else if (rank1
< rank2
)
5849 if (rank1
== cr_bad
)
5851 /* XXX Isn't this an extension? */
5852 /* Both ICS are bad. We try to make a decision based on what
5853 would have happened if they'd been good. */
5854 if (ics1
->user_conv_p
> ics2
->user_conv_p
5855 || ics1
->rank
> ics2
->rank
)
5857 else if (ics1
->user_conv_p
< ics2
->user_conv_p
5858 || ics1
->rank
< ics2
->rank
)
5861 /* We couldn't make up our minds; try to figure it out below. */
5864 if (ics1
->ellipsis_p
)
5865 /* Both conversions are ellipsis conversions. */
5868 /* User-defined conversion sequence U1 is a better conversion sequence
5869 than another user-defined conversion sequence U2 if they contain the
5870 same user-defined conversion operator or constructor and if the sec-
5871 ond standard conversion sequence of U1 is better than the second
5872 standard conversion sequence of U2. */
5874 if (ics1
->user_conv_p
)
5879 for (t1
= ics1
; t1
->kind
!= ck_user
; t1
= t1
->u
.next
)
5880 if (t1
->kind
== ck_ambig
)
5882 for (t2
= ics2
; t2
->kind
!= ck_user
; t2
= t2
->u
.next
)
5883 if (t2
->kind
== ck_ambig
)
5886 if (t1
->cand
->fn
!= t2
->cand
->fn
)
5889 /* We can just fall through here, after setting up
5890 FROM_TYPE1 and FROM_TYPE2. */
5891 from_type1
= t1
->type
;
5892 from_type2
= t2
->type
;
5899 /* We're dealing with two standard conversion sequences.
5903 Standard conversion sequence S1 is a better conversion
5904 sequence than standard conversion sequence S2 if
5906 --S1 is a proper subsequence of S2 (comparing the conversion
5907 sequences in the canonical form defined by _over.ics.scs_,
5908 excluding any Lvalue Transformation; the identity
5909 conversion sequence is considered to be a subsequence of
5910 any non-identity conversion sequence */
5913 while (t1
->kind
!= ck_identity
)
5915 from_type1
= t1
->type
;
5918 while (t2
->kind
!= ck_identity
)
5920 from_type2
= t2
->type
;
5923 if (same_type_p (from_type1
, from_type2
))
5925 if (is_subseq (ics1
, ics2
))
5927 if (is_subseq (ics2
, ics1
))
5930 /* Otherwise, one sequence cannot be a subsequence of the other; they
5931 don't start with the same type. This can happen when comparing the
5932 second standard conversion sequence in two user-defined conversion
5939 --the rank of S1 is better than the rank of S2 (by the rules
5942 Standard conversion sequences are ordered by their ranks: an Exact
5943 Match is a better conversion than a Promotion, which is a better
5944 conversion than a Conversion.
5946 Two conversion sequences with the same rank are indistinguishable
5947 unless one of the following rules applies:
5949 --A conversion that is not a conversion of a pointer, or pointer
5950 to member, to bool is better than another conversion that is such
5953 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
5954 so that we do not have to check it explicitly. */
5955 if (ics1
->rank
< ics2
->rank
)
5957 else if (ics2
->rank
< ics1
->rank
)
5960 to_type1
= ics1
->type
;
5961 to_type2
= ics2
->type
;
5963 if (TYPE_PTR_P (from_type1
)
5964 && TYPE_PTR_P (from_type2
)
5965 && TYPE_PTR_P (to_type1
)
5966 && TYPE_PTR_P (to_type2
))
5968 deref_from_type1
= TREE_TYPE (from_type1
);
5969 deref_from_type2
= TREE_TYPE (from_type2
);
5970 deref_to_type1
= TREE_TYPE (to_type1
);
5971 deref_to_type2
= TREE_TYPE (to_type2
);
5973 /* The rules for pointers to members A::* are just like the rules
5974 for pointers A*, except opposite: if B is derived from A then
5975 A::* converts to B::*, not vice versa. For that reason, we
5976 switch the from_ and to_ variables here. */
5977 else if ((TYPE_PTRMEM_P (from_type1
) && TYPE_PTRMEM_P (from_type2
)
5978 && TYPE_PTRMEM_P (to_type1
) && TYPE_PTRMEM_P (to_type2
))
5979 || (TYPE_PTRMEMFUNC_P (from_type1
)
5980 && TYPE_PTRMEMFUNC_P (from_type2
)
5981 && TYPE_PTRMEMFUNC_P (to_type1
)
5982 && TYPE_PTRMEMFUNC_P (to_type2
)))
5984 deref_to_type1
= TYPE_PTRMEM_CLASS_TYPE (from_type1
);
5985 deref_to_type2
= TYPE_PTRMEM_CLASS_TYPE (from_type2
);
5986 deref_from_type1
= TYPE_PTRMEM_CLASS_TYPE (to_type1
);
5987 deref_from_type2
= TYPE_PTRMEM_CLASS_TYPE (to_type2
);
5990 if (deref_from_type1
!= NULL_TREE
5991 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1
))
5992 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2
)))
5994 /* This was one of the pointer or pointer-like conversions.
5998 --If class B is derived directly or indirectly from class A,
5999 conversion of B* to A* is better than conversion of B* to
6000 void*, and conversion of A* to void* is better than
6001 conversion of B* to void*. */
6002 if (TREE_CODE (deref_to_type1
) == VOID_TYPE
6003 && TREE_CODE (deref_to_type2
) == VOID_TYPE
)
6005 if (is_properly_derived_from (deref_from_type1
,
6008 else if (is_properly_derived_from (deref_from_type2
,
6012 else if (TREE_CODE (deref_to_type1
) == VOID_TYPE
6013 || TREE_CODE (deref_to_type2
) == VOID_TYPE
)
6015 if (same_type_p (deref_from_type1
, deref_from_type2
))
6017 if (TREE_CODE (deref_to_type2
) == VOID_TYPE
)
6019 if (is_properly_derived_from (deref_from_type1
,
6023 /* We know that DEREF_TO_TYPE1 is `void' here. */
6024 else if (is_properly_derived_from (deref_from_type1
,
6029 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1
))
6030 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2
)))
6034 --If class B is derived directly or indirectly from class A
6035 and class C is derived directly or indirectly from B,
6037 --conversion of C* to B* is better than conversion of C* to
6040 --conversion of B* to A* is better than conversion of C* to
6042 if (same_type_p (deref_from_type1
, deref_from_type2
))
6044 if (is_properly_derived_from (deref_to_type1
,
6047 else if (is_properly_derived_from (deref_to_type2
,
6051 else if (same_type_p (deref_to_type1
, deref_to_type2
))
6053 if (is_properly_derived_from (deref_from_type2
,
6056 else if (is_properly_derived_from (deref_from_type1
,
6062 else if (CLASS_TYPE_P (non_reference (from_type1
))
6063 && same_type_p (from_type1
, from_type2
))
6065 tree from
= non_reference (from_type1
);
6069 --binding of an expression of type C to a reference of type
6070 B& is better than binding an expression of type C to a
6071 reference of type A&
6073 --conversion of C to B is better than conversion of C to A, */
6074 if (is_properly_derived_from (from
, to_type1
)
6075 && is_properly_derived_from (from
, to_type2
))
6077 if (is_properly_derived_from (to_type1
, to_type2
))
6079 else if (is_properly_derived_from (to_type2
, to_type1
))
6083 else if (CLASS_TYPE_P (non_reference (to_type1
))
6084 && same_type_p (to_type1
, to_type2
))
6086 tree to
= non_reference (to_type1
);
6090 --binding of an expression of type B to a reference of type
6091 A& is better than binding an expression of type C to a
6092 reference of type A&,
6094 --conversion of B to A is better than conversion of C to A */
6095 if (is_properly_derived_from (from_type1
, to
)
6096 && is_properly_derived_from (from_type2
, to
))
6098 if (is_properly_derived_from (from_type2
, from_type1
))
6100 else if (is_properly_derived_from (from_type1
, from_type2
))
6107 --S1 and S2 differ only in their qualification conversion and yield
6108 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
6109 qualification signature of type T1 is a proper subset of the cv-
6110 qualification signature of type T2 */
6111 if (ics1
->kind
== ck_qual
6112 && ics2
->kind
== ck_qual
6113 && same_type_p (from_type1
, from_type2
))
6114 return comp_cv_qual_signature (to_type1
, to_type2
);
6118 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
6119 to an implicit object parameter, and either S1 binds an lvalue reference
6120 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
6121 reference to an rvalue and S2 binds an lvalue reference
6122 (C++0x draft standard, 13.3.3.2)
6124 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
6125 types to which the references refer are the same type except for
6126 top-level cv-qualifiers, and the type to which the reference
6127 initialized by S2 refers is more cv-qualified than the type to
6128 which the reference initialized by S1 refers */
6130 if (ref_conv1
&& ref_conv2
)
6132 if (!ref_conv1
->this_p
&& !ref_conv2
->this_p
6133 && (TYPE_REF_IS_RVALUE (ref_conv1
->type
)
6134 != TYPE_REF_IS_RVALUE (ref_conv2
->type
)))
6136 if (ref_conv1
->rvaluedness_matches_p
)
6138 if (ref_conv2
->rvaluedness_matches_p
)
6142 if (same_type_ignoring_top_level_qualifiers_p (to_type1
, to_type2
))
6143 return comp_cv_qualification (TREE_TYPE (ref_conv2
->type
),
6144 TREE_TYPE (ref_conv1
->type
));
6147 /* Neither conversion sequence is better than the other. */
6151 /* The source type for this standard conversion sequence. */
6154 source_type (conversion
*t
)
6156 for (;; t
= t
->u
.next
)
6158 if (t
->kind
== ck_user
6159 || t
->kind
== ck_ambig
6160 || t
->kind
== ck_identity
)
6166 /* Note a warning about preferring WINNER to LOSER. We do this by storing
6167 a pointer to LOSER and re-running joust to produce the warning if WINNER
6168 is actually used. */
6171 add_warning (struct z_candidate
*winner
, struct z_candidate
*loser
)
6173 candidate_warning
*cw
= (candidate_warning
*)
6174 conversion_obstack_alloc (sizeof (candidate_warning
));
6176 cw
->next
= winner
->warnings
;
6177 winner
->warnings
= cw
;
6180 /* Compare two candidates for overloading as described in
6181 [over.match.best]. Return values:
6183 1: cand1 is better than cand2
6184 -1: cand2 is better than cand1
6185 0: cand1 and cand2 are indistinguishable */
6188 joust (struct z_candidate
*cand1
, struct z_candidate
*cand2
, bool warn
)
6191 int off1
= 0, off2
= 0;
6195 /* Candidates that involve bad conversions are always worse than those
6197 if (cand1
->viable
> cand2
->viable
)
6199 if (cand1
->viable
< cand2
->viable
)
6202 /* If we have two pseudo-candidates for conversions to the same type,
6203 or two candidates for the same function, arbitrarily pick one. */
6204 if (cand1
->fn
== cand2
->fn
6205 && (IS_TYPE_OR_DECL_P (cand1
->fn
)))
6208 /* a viable function F1
6209 is defined to be a better function than another viable function F2 if
6210 for all arguments i, ICSi(F1) is not a worse conversion sequence than
6211 ICSi(F2), and then */
6213 /* for some argument j, ICSj(F1) is a better conversion sequence than
6216 /* For comparing static and non-static member functions, we ignore
6217 the implicit object parameter of the non-static function. The
6218 standard says to pretend that the static function has an object
6219 parm, but that won't work with operator overloading. */
6220 len
= cand1
->num_convs
;
6221 if (len
!= cand2
->num_convs
)
6223 int static_1
= DECL_STATIC_FUNCTION_P (cand1
->fn
);
6224 int static_2
= DECL_STATIC_FUNCTION_P (cand2
->fn
);
6226 gcc_assert (static_1
!= static_2
);
6237 for (i
= 0; i
< len
; ++i
)
6239 conversion
*t1
= cand1
->convs
[i
+ off1
];
6240 conversion
*t2
= cand2
->convs
[i
+ off2
];
6241 int comp
= compare_ics (t1
, t2
);
6246 && (CONVERSION_RANK (t1
) + CONVERSION_RANK (t2
)
6247 == cr_std
+ cr_promotion
)
6248 && t1
->kind
== ck_std
6249 && t2
->kind
== ck_std
6250 && TREE_CODE (t1
->type
) == INTEGER_TYPE
6251 && TREE_CODE (t2
->type
) == INTEGER_TYPE
6252 && (TYPE_PRECISION (t1
->type
)
6253 == TYPE_PRECISION (t2
->type
))
6254 && (TYPE_UNSIGNED (t1
->u
.next
->type
)
6255 || (TREE_CODE (t1
->u
.next
->type
)
6258 tree type
= t1
->u
.next
->type
;
6260 struct z_candidate
*w
, *l
;
6262 type1
= t1
->type
, type2
= t2
->type
,
6263 w
= cand1
, l
= cand2
;
6265 type1
= t2
->type
, type2
= t1
->type
,
6266 w
= cand2
, l
= cand1
;
6270 warning (OPT_Wsign_promo
, "passing %qT chooses %qT over %qT",
6271 type
, type1
, type2
);
6272 warning (OPT_Wsign_promo
, " in call to %qD", w
->fn
);
6278 if (winner
&& comp
!= winner
)
6287 /* warn about confusing overload resolution for user-defined conversions,
6288 either between a constructor and a conversion op, or between two
6290 if (winner
&& warn_conversion
&& cand1
->second_conv
6291 && (!DECL_CONSTRUCTOR_P (cand1
->fn
) || !DECL_CONSTRUCTOR_P (cand2
->fn
))
6292 && winner
!= compare_ics (cand1
->second_conv
, cand2
->second_conv
))
6294 struct z_candidate
*w
, *l
;
6295 bool give_warning
= false;
6298 w
= cand1
, l
= cand2
;
6300 w
= cand2
, l
= cand1
;
6302 /* We don't want to complain about `X::operator T1 ()'
6303 beating `X::operator T2 () const', when T2 is a no less
6304 cv-qualified version of T1. */
6305 if (DECL_CONTEXT (w
->fn
) == DECL_CONTEXT (l
->fn
)
6306 && !DECL_CONSTRUCTOR_P (w
->fn
) && !DECL_CONSTRUCTOR_P (l
->fn
))
6308 tree t
= TREE_TYPE (TREE_TYPE (l
->fn
));
6309 tree f
= TREE_TYPE (TREE_TYPE (w
->fn
));
6311 if (TREE_CODE (t
) == TREE_CODE (f
) && POINTER_TYPE_P (t
))
6316 if (!comp_ptr_ttypes (t
, f
))
6317 give_warning
= true;
6320 give_warning
= true;
6326 tree source
= source_type (w
->convs
[0]);
6327 if (! DECL_CONSTRUCTOR_P (w
->fn
))
6328 source
= TREE_TYPE (source
);
6329 warning (OPT_Wconversion
, "choosing %qD over %qD", w
->fn
, l
->fn
);
6330 warning (OPT_Wconversion
, " for conversion from %qT to %qT",
6331 source
, w
->second_conv
->type
);
6332 inform (" because conversion sequence for the argument is better");
6342 F1 is a non-template function and F2 is a template function
6345 if (!cand1
->template_decl
&& cand2
->template_decl
)
6347 else if (cand1
->template_decl
&& !cand2
->template_decl
)
6351 F1 and F2 are template functions and the function template for F1 is
6352 more specialized than the template for F2 according to the partial
6355 if (cand1
->template_decl
&& cand2
->template_decl
)
6357 winner
= more_specialized_fn
6358 (TI_TEMPLATE (cand1
->template_decl
),
6359 TI_TEMPLATE (cand2
->template_decl
),
6360 /* [temp.func.order]: The presence of unused ellipsis and default
6361 arguments has no effect on the partial ordering of function
6362 templates. add_function_candidate() will not have
6363 counted the "this" argument for constructors. */
6364 cand1
->num_convs
+ DECL_CONSTRUCTOR_P (cand1
->fn
));
6370 the context is an initialization by user-defined conversion (see
6371 _dcl.init_ and _over.match.user_) and the standard conversion
6372 sequence from the return type of F1 to the destination type (i.e.,
6373 the type of the entity being initialized) is a better conversion
6374 sequence than the standard conversion sequence from the return type
6375 of F2 to the destination type. */
6377 if (cand1
->second_conv
)
6379 winner
= compare_ics (cand1
->second_conv
, cand2
->second_conv
);
6384 /* Check whether we can discard a builtin candidate, either because we
6385 have two identical ones or matching builtin and non-builtin candidates.
6387 (Pedantically in the latter case the builtin which matched the user
6388 function should not be added to the overload set, but we spot it here.
6391 ... the builtin candidates include ...
6392 - do not have the same parameter type list as any non-template
6393 non-member candidate. */
6395 if (TREE_CODE (cand1
->fn
) == IDENTIFIER_NODE
6396 || TREE_CODE (cand2
->fn
) == IDENTIFIER_NODE
)
6398 for (i
= 0; i
< len
; ++i
)
6399 if (!same_type_p (cand1
->convs
[i
]->type
,
6400 cand2
->convs
[i
]->type
))
6402 if (i
== cand1
->num_convs
)
6404 if (cand1
->fn
== cand2
->fn
)
6405 /* Two built-in candidates; arbitrarily pick one. */
6407 else if (TREE_CODE (cand1
->fn
) == IDENTIFIER_NODE
)
6408 /* cand1 is built-in; prefer cand2. */
6411 /* cand2 is built-in; prefer cand1. */
6416 /* If the two functions are the same (this can happen with declarations
6417 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
6418 if (DECL_P (cand1
->fn
) && DECL_P (cand2
->fn
)
6419 && equal_functions (cand1
->fn
, cand2
->fn
))
6424 /* Extension: If the worst conversion for one candidate is worse than the
6425 worst conversion for the other, take the first. */
6428 conversion_rank rank1
= cr_identity
, rank2
= cr_identity
;
6429 struct z_candidate
*w
= 0, *l
= 0;
6431 for (i
= 0; i
< len
; ++i
)
6433 if (CONVERSION_RANK (cand1
->convs
[i
+off1
]) > rank1
)
6434 rank1
= CONVERSION_RANK (cand1
->convs
[i
+off1
]);
6435 if (CONVERSION_RANK (cand2
->convs
[i
+ off2
]) > rank2
)
6436 rank2
= CONVERSION_RANK (cand2
->convs
[i
+ off2
]);
6439 winner
= 1, w
= cand1
, l
= cand2
;
6441 winner
= -1, w
= cand2
, l
= cand1
;
6447 ISO C++ says that these are ambiguous, even \
6448 though the worst conversion for the first is better than \
6449 the worst conversion for the second:");
6450 print_z_candidate (_("candidate 1:"), w
);
6451 print_z_candidate (_("candidate 2:"), l
);
6459 gcc_assert (!winner
);
6463 /* Given a list of candidates for overloading, find the best one, if any.
6464 This algorithm has a worst case of O(2n) (winner is last), and a best
6465 case of O(n/2) (totally ambiguous); much better than a sorting
6468 static struct z_candidate
*
6469 tourney (struct z_candidate
*candidates
)
6471 struct z_candidate
*champ
= candidates
, *challenger
;
6473 int champ_compared_to_predecessor
= 0;
6475 /* Walk through the list once, comparing each current champ to the next
6476 candidate, knocking out a candidate or two with each comparison. */
6478 for (challenger
= champ
->next
; challenger
; )
6480 fate
= joust (champ
, challenger
, 0);
6482 challenger
= challenger
->next
;
6487 champ
= challenger
->next
;
6490 champ_compared_to_predecessor
= 0;
6495 champ_compared_to_predecessor
= 1;
6498 challenger
= champ
->next
;
6502 /* Make sure the champ is better than all the candidates it hasn't yet
6503 been compared to. */
6505 for (challenger
= candidates
;
6507 && !(champ_compared_to_predecessor
&& challenger
->next
== champ
);
6508 challenger
= challenger
->next
)
6510 fate
= joust (champ
, challenger
, 0);
6518 /* Returns nonzero if things of type FROM can be converted to TO. */
6521 can_convert (tree to
, tree from
)
6523 return can_convert_arg (to
, from
, NULL_TREE
, LOOKUP_NORMAL
);
6526 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
6529 can_convert_arg (tree to
, tree from
, tree arg
, int flags
)
6535 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6536 p
= conversion_obstack_alloc (0);
6538 t
= implicit_conversion (to
, from
, arg
, /*c_cast_p=*/false,
6540 ok_p
= (t
&& !t
->bad_p
);
6542 /* Free all the conversions we allocated. */
6543 obstack_free (&conversion_obstack
, p
);
6548 /* Like can_convert_arg, but allows dubious conversions as well. */
6551 can_convert_arg_bad (tree to
, tree from
, tree arg
)
6556 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6557 p
= conversion_obstack_alloc (0);
6558 /* Try to perform the conversion. */
6559 t
= implicit_conversion (to
, from
, arg
, /*c_cast_p=*/false,
6561 /* Free all the conversions we allocated. */
6562 obstack_free (&conversion_obstack
, p
);
6567 /* Convert EXPR to TYPE. Return the converted expression.
6569 Note that we allow bad conversions here because by the time we get to
6570 this point we are committed to doing the conversion. If we end up
6571 doing a bad conversion, convert_like will complain. */
6574 perform_implicit_conversion (tree type
, tree expr
)
6579 if (error_operand_p (expr
))
6580 return error_mark_node
;
6582 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6583 p
= conversion_obstack_alloc (0);
6585 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
6590 error ("could not convert %qE to %qT", expr
, type
);
6591 expr
= error_mark_node
;
6593 else if (processing_template_decl
)
6595 /* In a template, we are only concerned about determining the
6596 type of non-dependent expressions, so we do not have to
6597 perform the actual conversion. */
6598 if (TREE_TYPE (expr
) != type
)
6599 expr
= build_nop (type
, expr
);
6602 expr
= convert_like (conv
, expr
);
6604 /* Free all the conversions we allocated. */
6605 obstack_free (&conversion_obstack
, p
);
6610 /* Convert EXPR to TYPE (as a direct-initialization) if that is
6611 permitted. If the conversion is valid, the converted expression is
6612 returned. Otherwise, NULL_TREE is returned, except in the case
6613 that TYPE is a class type; in that case, an error is issued. If
6614 C_CAST_P is true, then this direction initialization is taking
6615 place as part of a static_cast being attempted as part of a C-style
6619 perform_direct_initialization_if_possible (tree type
,
6626 if (type
== error_mark_node
|| error_operand_p (expr
))
6627 return error_mark_node
;
6630 If the destination type is a (possibly cv-qualified) class type:
6632 -- If the initialization is direct-initialization ...,
6633 constructors are considered. ... If no constructor applies, or
6634 the overload resolution is ambiguous, the initialization is
6636 if (CLASS_TYPE_P (type
))
6638 expr
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
6639 build_tree_list (NULL_TREE
, expr
),
6640 type
, LOOKUP_NORMAL
);
6641 return build_cplus_new (type
, expr
);
6644 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6645 p
= conversion_obstack_alloc (0);
6647 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
6650 if (!conv
|| conv
->bad_p
)
6653 expr
= convert_like_real (conv
, expr
, NULL_TREE
, 0, 0,
6654 /*issue_conversion_warnings=*/false,
6657 /* Free all the conversions we allocated. */
6658 obstack_free (&conversion_obstack
, p
);
6663 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
6664 is being bound to a temporary. Create and return a new VAR_DECL
6665 with the indicated TYPE; this variable will store the value to
6666 which the reference is bound. */
6669 make_temporary_var_for_ref_to_temp (tree decl
, tree type
)
6673 /* Create the variable. */
6674 var
= create_temporary_var (type
);
6676 /* Register the variable. */
6677 if (TREE_STATIC (decl
))
6679 /* Namespace-scope or local static; give it a mangled name. */
6682 TREE_STATIC (var
) = 1;
6683 name
= mangle_ref_init_variable (decl
);
6684 DECL_NAME (var
) = name
;
6685 SET_DECL_ASSEMBLER_NAME (var
, name
);
6686 var
= pushdecl_top_level (var
);
6689 /* Create a new cleanup level if necessary. */
6690 maybe_push_cleanup_level (type
);
6695 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
6696 initializing a variable of that TYPE. If DECL is non-NULL, it is
6697 the VAR_DECL being initialized with the EXPR. (In that case, the
6698 type of DECL will be TYPE.) If DECL is non-NULL, then CLEANUP must
6699 also be non-NULL, and with *CLEANUP initialized to NULL. Upon
6700 return, if *CLEANUP is no longer NULL, it will be an expression
6701 that should be pushed as a cleanup after the returned expression
6702 is used to initialize DECL.
6704 Return the converted expression. */
6707 initialize_reference (tree type
, tree expr
, tree decl
, tree
*cleanup
)
6712 if (type
== error_mark_node
|| error_operand_p (expr
))
6713 return error_mark_node
;
6715 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6716 p
= conversion_obstack_alloc (0);
6718 conv
= reference_binding (type
, TREE_TYPE (expr
), expr
, /*c_cast_p=*/false,
6720 if (!conv
|| conv
->bad_p
)
6722 if (!(TYPE_QUALS (TREE_TYPE (type
)) & TYPE_QUAL_CONST
)
6723 && !real_lvalue_p (expr
))
6724 error ("invalid initialization of non-const reference of "
6725 "type %qT from a temporary of type %qT",
6726 type
, TREE_TYPE (expr
));
6728 error ("invalid initialization of reference of type "
6729 "%qT from expression of type %qT", type
,
6731 return error_mark_node
;
6734 /* If DECL is non-NULL, then this special rule applies:
6738 The temporary to which the reference is bound or the temporary
6739 that is the complete object to which the reference is bound
6740 persists for the lifetime of the reference.
6742 The temporaries created during the evaluation of the expression
6743 initializing the reference, except the temporary to which the
6744 reference is bound, are destroyed at the end of the
6745 full-expression in which they are created.
6747 In that case, we store the converted expression into a new
6748 VAR_DECL in a new scope.
6750 However, we want to be careful not to create temporaries when
6751 they are not required. For example, given:
6754 struct D : public B {};
6758 there is no need to copy the return value from "f"; we can just
6759 extend its lifetime. Similarly, given:
6762 struct T { operator S(); };
6766 we can extend the lifetime of the return value of the conversion
6768 gcc_assert (conv
->kind
== ck_ref_bind
);
6772 tree base_conv_type
;
6774 /* Skip over the REF_BIND. */
6775 conv
= conv
->u
.next
;
6776 /* If the next conversion is a BASE_CONV, skip that too -- but
6777 remember that the conversion was required. */
6778 if (conv
->kind
== ck_base
)
6780 if (conv
->check_copy_constructor_p
)
6781 check_constructor_callable (TREE_TYPE (expr
), expr
);
6782 base_conv_type
= conv
->type
;
6783 conv
= conv
->u
.next
;
6786 base_conv_type
= NULL_TREE
;
6787 /* Perform the remainder of the conversion. */
6788 expr
= convert_like_real (conv
, expr
,
6789 /*fn=*/NULL_TREE
, /*argnum=*/0,
6791 /*issue_conversion_warnings=*/true,
6792 /*c_cast_p=*/false);
6793 if (error_operand_p (expr
))
6794 expr
= error_mark_node
;
6797 if (!real_lvalue_p (expr
))
6802 /* Create the temporary variable. */
6803 type
= TREE_TYPE (expr
);
6804 var
= make_temporary_var_for_ref_to_temp (decl
, type
);
6805 layout_decl (var
, 0);
6806 /* If the rvalue is the result of a function call it will be
6807 a TARGET_EXPR. If it is some other construct (such as a
6808 member access expression where the underlying object is
6809 itself the result of a function call), turn it into a
6810 TARGET_EXPR here. It is important that EXPR be a
6811 TARGET_EXPR below since otherwise the INIT_EXPR will
6812 attempt to make a bitwise copy of EXPR to initialize
6814 if (TREE_CODE (expr
) != TARGET_EXPR
)
6815 expr
= get_target_expr (expr
);
6816 /* Create the INIT_EXPR that will initialize the temporary
6818 init
= build2 (INIT_EXPR
, type
, var
, expr
);
6819 if (at_function_scope_p ())
6821 add_decl_expr (var
);
6822 *cleanup
= cxx_maybe_build_cleanup (var
);
6824 /* We must be careful to destroy the temporary only
6825 after its initialization has taken place. If the
6826 initialization throws an exception, then the
6827 destructor should not be run. We cannot simply
6828 transform INIT into something like:
6830 (INIT, ({ CLEANUP_STMT; }))
6832 because emit_local_var always treats the
6833 initializer as a full-expression. Thus, the
6834 destructor would run too early; it would run at the
6835 end of initializing the reference variable, rather
6836 than at the end of the block enclosing the
6839 The solution is to pass back a cleanup expression
6840 which the caller is responsible for attaching to
6841 the statement tree. */
6845 rest_of_decl_compilation (var
, /*toplev=*/1, at_eof
);
6846 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
6847 static_aggregates
= tree_cons (NULL_TREE
, var
,
6850 /* Use its address to initialize the reference variable. */
6851 expr
= build_address (var
);
6853 expr
= convert_to_base (expr
,
6854 build_pointer_type (base_conv_type
),
6855 /*check_access=*/true,
6857 expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr
), init
, expr
);
6860 /* Take the address of EXPR. */
6861 expr
= build_unary_op (ADDR_EXPR
, expr
, 0);
6862 /* If a BASE_CONV was required, perform it now. */
6864 expr
= (perform_implicit_conversion
6865 (build_pointer_type (base_conv_type
), expr
));
6866 expr
= build_nop (type
, expr
);
6870 /* Perform the conversion. */
6871 expr
= convert_like (conv
, expr
);
6873 /* Free all the conversions we allocated. */
6874 obstack_free (&conversion_obstack
, p
);
6879 #include "gt-cp-call.h"