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 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com) and
5 modified by Brendan Kehoe (brendan@cygnus.com).
7 This file is part of GNU CC.
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
25 /* High-level class interface. */
37 #include "diagnostic.h"
39 extern int inhibit_warnings
;
41 static tree build_new_method_call
PARAMS ((tree
, tree
, tree
, tree
, int));
43 static tree build_field_call
PARAMS ((tree
, tree
, tree
, tree
));
44 static struct z_candidate
* tourney
PARAMS ((struct z_candidate
*));
45 static int equal_functions
PARAMS ((tree
, tree
));
46 static int joust
PARAMS ((struct z_candidate
*, struct z_candidate
*, int));
47 static int compare_ics
PARAMS ((tree
, tree
));
48 static tree build_over_call
PARAMS ((struct z_candidate
*, tree
, int));
49 static tree build_java_interface_fn_ref
PARAMS ((tree
, tree
));
50 #define convert_like(CONV, EXPR) \
51 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0)
52 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
53 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0)
54 static tree convert_like_real
PARAMS ((tree
, tree
, tree
, int, int));
55 static void op_error
PARAMS ((enum tree_code
, enum tree_code
, tree
, tree
,
57 static tree build_object_call
PARAMS ((tree
, tree
));
58 static tree resolve_args
PARAMS ((tree
));
59 static struct z_candidate
* build_user_type_conversion_1
60 PARAMS ((tree
, tree
, int));
61 static void print_z_candidates
PARAMS ((struct z_candidate
*));
62 static tree build_this
PARAMS ((tree
));
63 static struct z_candidate
* splice_viable
PARAMS ((struct z_candidate
*));
64 static int any_viable
PARAMS ((struct z_candidate
*));
65 static struct z_candidate
* add_template_candidate
66 PARAMS ((struct z_candidate
*, tree
, tree
, tree
, tree
, tree
, int,
68 static struct z_candidate
* add_template_candidate_real
69 PARAMS ((struct z_candidate
*, tree
, tree
, tree
, tree
, tree
, int,
70 tree
, unification_kind_t
));
71 static struct z_candidate
* add_template_conv_candidate
72 PARAMS ((struct z_candidate
*, tree
, tree
, tree
, tree
));
73 static struct z_candidate
* add_builtin_candidates
74 PARAMS ((struct z_candidate
*, enum tree_code
, enum tree_code
,
76 static struct z_candidate
* add_builtin_candidate
77 PARAMS ((struct z_candidate
*, enum tree_code
, enum tree_code
,
78 tree
, tree
, tree
, tree
*, tree
*, int));
79 static int is_complete
PARAMS ((tree
));
80 static struct z_candidate
* build_builtin_candidate
81 PARAMS ((struct z_candidate
*, tree
, tree
, tree
, tree
*, tree
*,
83 static struct z_candidate
* add_conv_candidate
84 PARAMS ((struct z_candidate
*, tree
, tree
, tree
));
85 static struct z_candidate
* add_function_candidate
86 PARAMS ((struct z_candidate
*, tree
, tree
, tree
, int));
87 static tree implicit_conversion
PARAMS ((tree
, tree
, tree
, int));
88 static tree standard_conversion
PARAMS ((tree
, tree
, tree
));
89 static tree reference_binding
PARAMS ((tree
, tree
, tree
, int));
90 static tree non_reference
PARAMS ((tree
));
91 static tree build_conv
PARAMS ((enum tree_code
, tree
, tree
));
92 static int is_subseq
PARAMS ((tree
, tree
));
93 static tree maybe_handle_ref_bind
PARAMS ((tree
*));
94 static void maybe_handle_implicit_object
PARAMS ((tree
*));
95 static struct z_candidate
* add_candidate
PARAMS ((struct z_candidate
*,
97 static tree source_type
PARAMS ((tree
));
98 static void add_warning
PARAMS ((struct z_candidate
*, struct z_candidate
*));
99 static int reference_related_p
PARAMS ((tree
, tree
));
100 static int reference_compatible_p
PARAMS ((tree
, tree
));
101 static tree convert_class_to_reference
PARAMS ((tree
, tree
, tree
));
102 static tree direct_reference_binding
PARAMS ((tree
, tree
));
103 static int promoted_arithmetic_type_p
PARAMS ((tree
));
104 static tree conditional_conversion
PARAMS ((tree
, tree
));
107 build_vfield_ref (datum
, type
)
112 if (datum
== error_mark_node
)
113 return error_mark_node
;
115 if (TREE_CODE (TREE_TYPE (datum
)) == REFERENCE_TYPE
)
116 datum
= convert_from_reference (datum
);
118 if (! TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type
))
119 rval
= build (COMPONENT_REF
, TREE_TYPE (TYPE_VFIELD (type
)),
120 datum
, TYPE_VFIELD (type
));
122 rval
= build_component_ref (datum
, DECL_NAME (TYPE_VFIELD (type
)), NULL_TREE
, 0);
127 /* Build a call to a member of an object. I.e., one that overloads
128 operator ()(), or is a pointer-to-function or pointer-to-method. */
131 build_field_call (basetype_path
, instance_ptr
, name
, parms
)
132 tree basetype_path
, instance_ptr
, name
, parms
;
134 tree field
, instance
;
136 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
139 /* Speed up the common case. */
140 if (instance_ptr
== current_class_ptr
141 && IDENTIFIER_CLASS_VALUE (name
) == NULL_TREE
)
144 field
= lookup_field (basetype_path
, name
, 1, 0);
146 if (field
== error_mark_node
|| field
== NULL_TREE
)
149 if (TREE_CODE (field
) == FIELD_DECL
|| TREE_CODE (field
) == VAR_DECL
)
151 /* If it's a field, try overloading operator (),
152 or calling if the field is a pointer-to-function. */
153 instance
= build_indirect_ref (instance_ptr
, NULL
);
154 instance
= build_component_ref_1 (instance
, field
, 0);
156 if (instance
== error_mark_node
)
157 return error_mark_node
;
159 if (IS_AGGR_TYPE (TREE_TYPE (instance
)))
160 return build_opfncall (CALL_EXPR
, LOOKUP_NORMAL
,
161 instance
, parms
, NULL_TREE
);
162 else if (TREE_CODE (TREE_TYPE (instance
)) == FUNCTION_TYPE
163 || (TREE_CODE (TREE_TYPE (instance
)) == POINTER_TYPE
164 && (TREE_CODE (TREE_TYPE (TREE_TYPE (instance
)))
166 return build_function_call (instance
, parms
);
172 /* Returns nonzero iff the destructor name specified in NAME
173 (a BIT_NOT_EXPR) matches BASETYPE. The operand of NAME can take many
177 check_dtor_name (basetype
, name
)
180 name
= TREE_OPERAND (name
, 0);
182 /* Just accept something we've already complained about. */
183 if (name
== error_mark_node
)
186 if (TREE_CODE (name
) == TYPE_DECL
)
187 name
= TREE_TYPE (name
);
188 else if (TYPE_P (name
))
190 else if (TREE_CODE (name
) == IDENTIFIER_NODE
)
192 if ((IS_AGGR_TYPE (basetype
) && name
== constructor_name (basetype
))
193 || (TREE_CODE (basetype
) == ENUMERAL_TYPE
194 && name
== TYPE_IDENTIFIER (basetype
)))
197 name
= get_type_value (name
);
201 template <class T> struct S { ~S(); };
205 NAME will be a class template. */
206 else if (DECL_CLASS_TEMPLATE_P (name
))
211 if (name
&& TYPE_MAIN_VARIANT (basetype
) == TYPE_MAIN_VARIANT (name
))
216 /* Build a method call of the form `EXP->SCOPES::NAME (PARMS)'.
217 This is how virtual function calls are avoided. */
220 build_scoped_method_call (exp
, basetype
, name
, parms
)
221 tree exp
, basetype
, name
, parms
;
223 /* Because this syntactic form does not allow
224 a pointer to a base class to be `stolen',
225 we need not protect the derived->base conversion
228 @@ But we do have to check access privileges later. */
230 tree type
= TREE_TYPE (exp
);
232 if (type
== error_mark_node
233 || basetype
== error_mark_node
)
234 return error_mark_node
;
236 if (processing_template_decl
)
238 if (TREE_CODE (name
) == BIT_NOT_EXPR
239 && TREE_CODE (TREE_OPERAND (name
, 0)) == IDENTIFIER_NODE
)
241 tree type
= get_aggr_from_typedef (TREE_OPERAND (name
, 0), 0);
243 name
= build_min_nt (BIT_NOT_EXPR
, type
);
245 name
= build_min_nt (SCOPE_REF
, basetype
, name
);
246 return build_min_nt (METHOD_CALL_EXPR
, name
, exp
, parms
, NULL_TREE
);
249 if (TREE_CODE (type
) == REFERENCE_TYPE
)
250 type
= TREE_TYPE (type
);
252 if (TREE_CODE (basetype
) == TREE_VEC
)
255 basetype
= BINFO_TYPE (binfo
);
260 /* Check the destructor call syntax. */
261 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
263 /* We can get here if someone writes their destructor call like
264 `obj.NS::~T()'; this isn't really a scoped method call, so hand
266 if (TREE_CODE (basetype
) == NAMESPACE_DECL
)
267 return build_method_call (exp
, name
, parms
, NULL_TREE
, LOOKUP_NORMAL
);
269 if (! check_dtor_name (basetype
, name
))
270 error ("qualified type `%T' does not match destructor name `~%T'",
271 basetype
, TREE_OPERAND (name
, 0));
273 /* Destructors can be "called" for simple types; see 5.2.4 and 12.4 Note
274 that explicit ~int is caught in the parser; this deals with typedefs
275 and template parms. */
276 if (! IS_AGGR_TYPE (basetype
))
278 if (TYPE_MAIN_VARIANT (type
) != TYPE_MAIN_VARIANT (basetype
))
279 error ("type of `%E' does not match destructor type `%T' (type was `%T')",
280 exp
, basetype
, type
);
282 return cp_convert (void_type_node
, exp
);
286 if (TREE_CODE (basetype
) == NAMESPACE_DECL
)
288 error ("`%D' is a namespace", basetype
);
289 return error_mark_node
;
291 if (! is_aggr_type (basetype
, 1))
292 return error_mark_node
;
294 if (! IS_AGGR_TYPE (type
))
296 error ("base object `%E' of scoped method call is of non-aggregate type `%T'",
298 return error_mark_node
;
301 decl
= build_scoped_ref (exp
, basetype
, &binfo
);
305 /* Call to a destructor. */
306 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
308 if (! TYPE_HAS_DESTRUCTOR (TREE_TYPE (decl
)))
309 return cp_convert (void_type_node
, exp
);
311 return build_delete (TREE_TYPE (decl
), decl
,
312 sfk_complete_destructor
,
313 LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
,
317 /* Call to a method. */
318 return build_method_call (decl
, name
, parms
, binfo
,
319 LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
);
321 return error_mark_node
;
324 /* We want the address of a function or method. We avoid creating a
325 pointer-to-member function. */
328 build_addr_func (function
)
331 tree type
= TREE_TYPE (function
);
333 /* We have to do these by hand to avoid real pointer to member
335 if (TREE_CODE (type
) == METHOD_TYPE
)
339 type
= build_pointer_type (type
);
341 if (!cxx_mark_addressable (function
))
342 return error_mark_node
;
344 addr
= build1 (ADDR_EXPR
, type
, function
);
346 /* Address of a static or external variable or function counts
348 if (staticp (function
))
349 TREE_CONSTANT (addr
) = 1;
354 function
= default_conversion (function
);
359 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
360 POINTER_TYPE to those. Note, pointer to member function types
361 (TYPE_PTRMEMFUNC_P) must be handled by our callers. */
364 build_call (function
, parms
)
365 tree function
, parms
;
367 int is_constructor
= 0;
373 function
= build_addr_func (function
);
375 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function
)))
377 sorry ("unable to call pointer to member function here");
378 return error_mark_node
;
381 result_type
= TREE_TYPE (TREE_TYPE (TREE_TYPE (function
)));
383 if (TREE_CODE (function
) == ADDR_EXPR
384 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
385 decl
= TREE_OPERAND (function
, 0);
389 /* We check both the decl and the type; a function may be known not to
390 throw without being declared throw(). */
391 nothrow
= ((decl
&& TREE_NOTHROW (decl
))
392 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function
))));
394 if (decl
&& TREE_THIS_VOLATILE (decl
))
395 current_function_returns_abnormally
= 1;
397 if (decl
&& TREE_DEPRECATED (decl
))
398 warn_deprecated_use (decl
);
400 if (decl
&& DECL_CONSTRUCTOR_P (decl
))
403 if (decl
&& ! TREE_USED (decl
))
405 /* We invoke build_call directly for several library functions.
406 These may have been declared normally if we're building libgcc,
407 so we can't just check DECL_ARTIFICIAL. */
408 if (DECL_ARTIFICIAL (decl
)
409 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl
)), "__", 2))
415 /* Don't pass empty class objects by value. This is useful
416 for tags in STL, which are used to control overload resolution.
417 We don't need to handle other cases of copying empty classes. */
418 if (! decl
|| ! DECL_BUILT_IN (decl
))
419 for (tmp
= parms
; tmp
; tmp
= TREE_CHAIN (tmp
))
420 if (is_empty_class (TREE_TYPE (TREE_VALUE (tmp
)))
421 && ! TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (tmp
))))
423 tree t
= build (EMPTY_CLASS_EXPR
, TREE_TYPE (TREE_VALUE (tmp
)));
424 TREE_VALUE (tmp
) = build (COMPOUND_EXPR
, TREE_TYPE (t
),
425 TREE_VALUE (tmp
), t
);
428 function
= build_nt (CALL_EXPR
, function
, parms
, NULL_TREE
);
429 TREE_HAS_CONSTRUCTOR (function
) = is_constructor
;
430 TREE_TYPE (function
) = result_type
;
431 TREE_SIDE_EFFECTS (function
) = 1;
432 TREE_NOTHROW (function
) = nothrow
;
437 /* Build something of the form ptr->method (args)
438 or object.method (args). This can also build
439 calls to constructors, and find friends.
441 Member functions always take their class variable
444 INSTANCE is a class instance.
446 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
448 PARMS help to figure out what that NAME really refers to.
450 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
451 down to the real instance type to use for access checking. We need this
452 information to get protected accesses correct. This parameter is used
453 by build_member_call.
455 FLAGS is the logical disjunction of zero or more LOOKUP_
456 flags. See cp-tree.h for more info.
458 If this is all OK, calls build_function_call with the resolved
461 This function must also handle being called to perform
462 initialization, promotion/coercion of arguments, and
463 instantiation of default parameters.
465 Note that NAME may refer to an instance variable name. If
466 `operator()()' is defined for the type of that field, then we return
469 #ifdef GATHER_STATISTICS
470 extern int n_build_method_call
;
474 build_method_call (instance
, name
, parms
, basetype_path
, flags
)
475 tree instance
, name
, parms
, basetype_path
;
478 tree basetype
, instance_ptr
;
480 #ifdef GATHER_STATISTICS
481 n_build_method_call
++;
484 if (instance
== error_mark_node
485 || name
== error_mark_node
486 || parms
== error_mark_node
487 || (instance
!= NULL_TREE
&& TREE_TYPE (instance
) == error_mark_node
))
488 return error_mark_node
;
490 if (processing_template_decl
)
492 /* We need to process template parm names here so that tsubst catches
493 them properly. Other type names can wait. */
494 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
496 tree type
= NULL_TREE
;
498 if (TREE_CODE (TREE_OPERAND (name
, 0)) == IDENTIFIER_NODE
)
499 type
= get_aggr_from_typedef (TREE_OPERAND (name
, 0), 0);
500 else if (TREE_CODE (TREE_OPERAND (name
, 0)) == TYPE_DECL
)
501 type
= TREE_TYPE (TREE_OPERAND (name
, 0));
503 if (type
&& TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
504 name
= build_min_nt (BIT_NOT_EXPR
, type
);
507 return build_min_nt (METHOD_CALL_EXPR
, name
, instance
, parms
, NULL_TREE
);
510 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
513 error ("destructors take no parameters");
514 basetype
= TREE_TYPE (instance
);
515 if (TREE_CODE (basetype
) == REFERENCE_TYPE
)
516 basetype
= TREE_TYPE (basetype
);
518 if (! check_dtor_name (basetype
, name
))
520 ("destructor name `~%T' does not match type `%T' of expression",
521 TREE_OPERAND (name
, 0), basetype
);
523 if (! TYPE_HAS_DESTRUCTOR (complete_type (basetype
)))
524 return cp_convert (void_type_node
, instance
);
525 instance
= default_conversion (instance
);
526 instance_ptr
= build_unary_op (ADDR_EXPR
, instance
, 0);
527 return build_delete (build_pointer_type (basetype
),
528 instance_ptr
, sfk_complete_destructor
,
529 LOOKUP_NORMAL
|LOOKUP_DESTRUCTOR
, 0);
532 return build_new_method_call (instance
, name
, parms
, basetype_path
, flags
);
535 /* New overloading code. */
545 struct z_candidate
*next
;
548 #define IDENTITY_RANK 0
554 #define ELLIPSIS_RANK 6
557 #define ICS_RANK(NODE) \
558 (ICS_BAD_FLAG (NODE) ? BAD_RANK \
559 : ICS_ELLIPSIS_FLAG (NODE) ? ELLIPSIS_RANK \
560 : ICS_USER_FLAG (NODE) ? USER_RANK \
561 : ICS_STD_RANK (NODE))
563 #define ICS_STD_RANK(NODE) TREE_COMPLEXITY (NODE)
565 #define ICS_USER_FLAG(NODE) TREE_LANG_FLAG_0 (NODE)
566 #define ICS_ELLIPSIS_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
567 #define ICS_THIS_FLAG(NODE) TREE_LANG_FLAG_2 (NODE)
568 #define ICS_BAD_FLAG(NODE) TREE_LANG_FLAG_3 (NODE)
570 /* In a REF_BIND or a BASE_CONV, this indicates that a temporary
571 should be created to hold the result of the conversion. */
572 #define NEED_TEMPORARY_P(NODE) TREE_LANG_FLAG_4 (NODE)
574 #define USER_CONV_CAND(NODE) \
575 ((struct z_candidate *)WRAPPER_PTR (TREE_OPERAND (NODE, 1)))
576 #define USER_CONV_FN(NODE) (USER_CONV_CAND (NODE)->fn)
584 A null pointer constant is an integral constant expression
585 (_expr.const_) rvalue of integer type that evaluates to zero. */
587 || (CP_INTEGRAL_TYPE_P (TREE_TYPE (t
)) && integer_zerop (t
)))
593 /* Returns non-zero if PARMLIST consists of only default parms and/or
597 sufficient_parms_p (parmlist
)
600 for (; parmlist
&& parmlist
!= void_list_node
;
601 parmlist
= TREE_CHAIN (parmlist
))
602 if (!TREE_PURPOSE (parmlist
))
608 build_conv (code
, type
, from
)
613 int rank
= ICS_STD_RANK (from
);
615 /* We can't use buildl1 here because CODE could be USER_CONV, which
616 takes two arguments. In that case, the caller is responsible for
617 filling in the second argument. */
618 t
= make_node (code
);
619 TREE_TYPE (t
) = type
;
620 TREE_OPERAND (t
, 0) = from
;
633 if (rank
< EXACT_RANK
)
639 ICS_STD_RANK (t
) = rank
;
640 ICS_USER_FLAG (t
) = ICS_USER_FLAG (from
);
641 ICS_BAD_FLAG (t
) = ICS_BAD_FLAG (from
);
645 /* If T is a REFERENCE_TYPE return the type to which T refers.
646 Otherwise, return T itself. */
652 if (TREE_CODE (t
) == REFERENCE_TYPE
)
661 if (TREE_CODE (t
) == ARRAY_TYPE
)
663 return TYPE_MAIN_VARIANT (t
);
666 /* Returns the standard conversion path (see [conv]) from type FROM to type
667 TO, if any. For proper handling of null pointer constants, you must
668 also pass the expression EXPR to convert from. */
671 standard_conversion (to
, from
, expr
)
674 enum tree_code fcode
, tcode
;
678 if (TREE_CODE (to
) == REFERENCE_TYPE
)
680 if (TREE_CODE (from
) == REFERENCE_TYPE
)
683 from
= TREE_TYPE (from
);
685 to
= strip_top_quals (to
);
686 from
= strip_top_quals (from
);
688 if ((TYPE_PTRFN_P (to
) || TYPE_PTRMEMFUNC_P (to
))
689 && expr
&& type_unknown_p (expr
))
691 expr
= instantiate_type (to
, expr
, tf_none
);
692 if (expr
== error_mark_node
)
694 from
= TREE_TYPE (expr
);
697 fcode
= TREE_CODE (from
);
698 tcode
= TREE_CODE (to
);
700 conv
= build1 (IDENTITY_CONV
, from
, expr
);
702 if (fcode
== FUNCTION_TYPE
)
704 from
= build_pointer_type (from
);
705 fcode
= TREE_CODE (from
);
706 conv
= build_conv (LVALUE_CONV
, from
, conv
);
708 else if (fcode
== ARRAY_TYPE
)
710 from
= build_pointer_type (TREE_TYPE (from
));
711 fcode
= TREE_CODE (from
);
712 conv
= build_conv (LVALUE_CONV
, from
, conv
);
714 else if (fromref
|| (expr
&& lvalue_p (expr
)))
715 conv
= build_conv (RVALUE_CONV
, from
, conv
);
717 /* Allow conversion between `__complex__' data types */
718 if (tcode
== COMPLEX_TYPE
&& fcode
== COMPLEX_TYPE
)
720 /* The standard conversion sequence to convert FROM to TO is
721 the standard conversion sequence to perform componentwise
723 tree part_conv
= standard_conversion
724 (TREE_TYPE (to
), TREE_TYPE (from
), NULL_TREE
);
728 conv
= build_conv (TREE_CODE (part_conv
), to
, conv
);
729 ICS_STD_RANK (conv
) = ICS_STD_RANK (part_conv
);
737 if (same_type_p (from
, to
))
740 if ((tcode
== POINTER_TYPE
|| TYPE_PTRMEMFUNC_P (to
))
741 && expr
&& null_ptr_cst_p (expr
))
743 conv
= build_conv (STD_CONV
, to
, conv
);
745 else if ((tcode
== INTEGER_TYPE
&& fcode
== POINTER_TYPE
)
746 || (tcode
== POINTER_TYPE
&& fcode
== INTEGER_TYPE
))
748 /* For backwards brain damage compatibility, allow interconversion of
749 pointers and integers with a pedwarn. */
750 conv
= build_conv (STD_CONV
, to
, conv
);
751 ICS_BAD_FLAG (conv
) = 1;
753 else if (tcode
== ENUMERAL_TYPE
&& fcode
== INTEGER_TYPE
754 && TYPE_PRECISION (to
) == TYPE_PRECISION (from
))
756 /* For backwards brain damage compatibility, allow interconversion of
757 enums and integers with a pedwarn. */
758 conv
= build_conv (STD_CONV
, to
, conv
);
759 ICS_BAD_FLAG (conv
) = 1;
761 else if (tcode
== POINTER_TYPE
&& fcode
== POINTER_TYPE
)
763 enum tree_code ufcode
= TREE_CODE (TREE_TYPE (from
));
764 enum tree_code utcode
= TREE_CODE (TREE_TYPE (to
));
766 if (same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from
),
769 else if (utcode
== VOID_TYPE
&& ufcode
!= OFFSET_TYPE
770 && ufcode
!= FUNCTION_TYPE
)
772 from
= build_pointer_type
773 (cp_build_qualified_type (void_type_node
,
774 cp_type_quals (TREE_TYPE (from
))));
775 conv
= build_conv (PTR_CONV
, from
, conv
);
777 else if (ufcode
== OFFSET_TYPE
&& utcode
== OFFSET_TYPE
)
779 tree fbase
= TYPE_OFFSET_BASETYPE (TREE_TYPE (from
));
780 tree tbase
= TYPE_OFFSET_BASETYPE (TREE_TYPE (to
));
782 if (DERIVED_FROM_P (fbase
, tbase
)
783 && (same_type_ignoring_top_level_qualifiers_p
784 (TREE_TYPE (TREE_TYPE (from
)),
785 TREE_TYPE (TREE_TYPE (to
)))))
787 from
= build_offset_type (tbase
, TREE_TYPE (TREE_TYPE (from
)));
788 from
= build_pointer_type (from
);
789 conv
= build_conv (PMEM_CONV
, from
, conv
);
792 else if (IS_AGGR_TYPE (TREE_TYPE (from
))
793 && IS_AGGR_TYPE (TREE_TYPE (to
)))
795 if (DERIVED_FROM_P (TREE_TYPE (to
), TREE_TYPE (from
)))
798 cp_build_qualified_type (TREE_TYPE (to
),
799 cp_type_quals (TREE_TYPE (from
)));
800 from
= build_pointer_type (from
);
801 conv
= build_conv (PTR_CONV
, from
, conv
);
805 if (same_type_p (from
, to
))
807 else if (comp_ptr_ttypes (TREE_TYPE (to
), TREE_TYPE (from
)))
808 conv
= build_conv (QUAL_CONV
, to
, conv
);
809 else if (expr
&& string_conv_p (to
, expr
, 0))
810 /* converting from string constant to char *. */
811 conv
= build_conv (QUAL_CONV
, to
, conv
);
812 else if (ptr_reasonably_similar (TREE_TYPE (to
), TREE_TYPE (from
)))
814 conv
= build_conv (PTR_CONV
, to
, conv
);
815 ICS_BAD_FLAG (conv
) = 1;
822 else if (TYPE_PTRMEMFUNC_P (to
) && TYPE_PTRMEMFUNC_P (from
))
824 tree fromfn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from
));
825 tree tofn
= TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to
));
826 tree fbase
= TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn
)));
827 tree tbase
= TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn
)));
829 if (!DERIVED_FROM_P (fbase
, tbase
)
830 || !same_type_p (TREE_TYPE (fromfn
), TREE_TYPE (tofn
))
831 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn
)),
832 TREE_CHAIN (TYPE_ARG_TYPES (tofn
)))
833 || cp_type_quals (fbase
) != cp_type_quals (tbase
))
836 from
= cp_build_qualified_type (tbase
, cp_type_quals (fbase
));
837 from
= build_cplus_method_type (from
, TREE_TYPE (fromfn
),
838 TREE_CHAIN (TYPE_ARG_TYPES (fromfn
)));
839 from
= build_ptrmemfunc_type (build_pointer_type (from
));
840 conv
= build_conv (PMEM_CONV
, from
, conv
);
842 else if (tcode
== BOOLEAN_TYPE
)
844 if (! (INTEGRAL_CODE_P (fcode
) || fcode
== REAL_TYPE
845 || fcode
== POINTER_TYPE
|| TYPE_PTRMEMFUNC_P (from
)))
848 conv
= build_conv (STD_CONV
, to
, conv
);
849 if (fcode
== POINTER_TYPE
850 || (TYPE_PTRMEMFUNC_P (from
) && ICS_STD_RANK (conv
) < PBOOL_RANK
))
851 ICS_STD_RANK (conv
) = PBOOL_RANK
;
853 /* We don't check for ENUMERAL_TYPE here because there are no standard
854 conversions to enum type. */
855 else if (tcode
== INTEGER_TYPE
|| tcode
== BOOLEAN_TYPE
856 || tcode
== REAL_TYPE
)
858 if (! (INTEGRAL_CODE_P (fcode
) || fcode
== REAL_TYPE
))
860 conv
= build_conv (STD_CONV
, to
, conv
);
862 /* Give this a better rank if it's a promotion. */
863 if (to
== type_promotes_to (from
)
864 && ICS_STD_RANK (TREE_OPERAND (conv
, 0)) <= PROMO_RANK
)
865 ICS_STD_RANK (conv
) = PROMO_RANK
;
867 else if (IS_AGGR_TYPE (to
) && IS_AGGR_TYPE (from
)
868 && is_properly_derived_from (from
, to
))
870 if (TREE_CODE (conv
) == RVALUE_CONV
)
871 conv
= TREE_OPERAND (conv
, 0);
872 conv
= build_conv (BASE_CONV
, to
, conv
);
873 /* The derived-to-base conversion indicates the initialization
874 of a parameter with base type from an object of a derived
875 type. A temporary object is created to hold the result of
877 NEED_TEMPORARY_P (conv
) = 1;
885 /* Returns non-zero if T1 is reference-related to T2. */
888 reference_related_p (t1
, t2
)
892 t1
= TYPE_MAIN_VARIANT (t1
);
893 t2
= TYPE_MAIN_VARIANT (t2
);
897 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
898 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
900 return (same_type_p (t1
, t2
)
901 || (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
902 && DERIVED_FROM_P (t1
, t2
)));
905 /* Returns non-zero if T1 is reference-compatible with T2. */
908 reference_compatible_p (t1
, t2
)
914 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
915 reference-related to T2 and cv1 is the same cv-qualification as,
916 or greater cv-qualification than, cv2. */
917 return (reference_related_p (t1
, t2
)
918 && at_least_as_qualified_p (t1
, t2
));
921 /* Determine whether or not the EXPR (of class type S) can be
922 converted to T as in [over.match.ref]. */
925 convert_class_to_reference (t
, s
, expr
)
933 struct z_candidate
*candidates
;
934 struct z_candidate
*cand
;
938 Assuming that "cv1 T" is the underlying type of the reference
939 being initialized, and "cv S" is the type of the initializer
940 expression, with S a class type, the candidate functions are
943 --The conversion functions of S and its base classes are
944 considered. Those that are not hidden within S and yield type
945 "reference to cv2 T2", where "cv1 T" is reference-compatible
946 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
948 The argument list has one argument, which is the initializer
953 /* Conceptually, we should take the address of EXPR and put it in
954 the argument list. Unfortunately, however, that can result in
955 error messages, which we should not issue now because we are just
956 trying to find a conversion operator. Therefore, we use NULL,
957 cast to the appropriate type. */
958 arglist
= build_int_2 (0, 0);
959 TREE_TYPE (arglist
) = build_pointer_type (s
);
960 arglist
= build_tree_list (NULL_TREE
, arglist
);
962 for (conversions
= lookup_conversions (s
);
964 conversions
= TREE_CHAIN (conversions
))
966 tree fns
= TREE_VALUE (conversions
);
968 for (; fns
; fns
= OVL_NEXT (fns
))
970 tree f
= OVL_CURRENT (fns
);
971 tree t2
= TREE_TYPE (TREE_TYPE (f
));
972 struct z_candidate
*old_candidates
= candidates
;
974 /* If this is a template function, try to get an exact
976 if (TREE_CODE (f
) == TEMPLATE_DECL
)
979 = add_template_candidate (candidates
,
983 build_reference_type (t
),
987 if (candidates
!= old_candidates
)
989 /* Now, see if the conversion function really returns
990 an lvalue of the appropriate type. From the
991 point of view of unification, simply returning an
992 rvalue of the right type is good enough. */
994 t2
= TREE_TYPE (TREE_TYPE (f
));
995 if (TREE_CODE (t2
) != REFERENCE_TYPE
996 || !reference_compatible_p (t
, TREE_TYPE (t2
)))
997 candidates
= candidates
->next
;
1000 else if (TREE_CODE (t2
) == REFERENCE_TYPE
1001 && reference_compatible_p (t
, TREE_TYPE (t2
)))
1003 = add_function_candidate (candidates
, f
, s
, arglist
,
1006 if (candidates
!= old_candidates
)
1007 candidates
->basetype_path
= TYPE_BINFO (s
);
1011 /* If none of the conversion functions worked out, let our caller
1013 if (!any_viable (candidates
))
1016 candidates
= splice_viable (candidates
);
1017 cand
= tourney (candidates
);
1021 conv
= build1 (IDENTITY_CONV
, s
, expr
);
1022 conv
= build_conv (USER_CONV
, TREE_TYPE (TREE_TYPE (cand
->fn
)),
1024 TREE_OPERAND (conv
, 1) = build_ptr_wrapper (cand
);
1025 ICS_USER_FLAG (conv
) = 1;
1026 if (cand
->viable
== -1)
1027 ICS_BAD_FLAG (conv
) = 1;
1028 cand
->second_conv
= conv
;
1033 /* A reference of the indicated TYPE is being bound directly to the
1034 expression represented by the implicit conversion sequence CONV.
1035 Return a conversion sequence for this binding. */
1038 direct_reference_binding (type
, conv
)
1042 tree t
= TREE_TYPE (type
);
1046 When a parameter of reference type binds directly
1047 (_dcl.init.ref_) to an argument expression, the implicit
1048 conversion sequence is the identity conversion, unless the
1049 argument expression has a type that is a derived class of the
1050 parameter type, in which case the implicit conversion sequence is
1051 a derived-to-base Conversion.
1053 If the parameter binds directly to the result of applying a
1054 conversion function to the argument expression, the implicit
1055 conversion sequence is a user-defined conversion sequence
1056 (_over.ics.user_), with the second standard conversion sequence
1057 either an identity conversion or, if the conversion function
1058 returns an entity of a type that is a derived class of the
1059 parameter type, a derived-to-base conversion. */
1060 if (!same_type_ignoring_top_level_qualifiers_p (t
, TREE_TYPE (conv
)))
1062 /* Represent the derived-to-base conversion. */
1063 conv
= build_conv (BASE_CONV
, t
, conv
);
1064 /* We will actually be binding to the base-class subobject in
1065 the derived class, so we mark this conversion appropriately.
1066 That way, convert_like knows not to generate a temporary. */
1067 NEED_TEMPORARY_P (conv
) = 0;
1069 return build_conv (REF_BIND
, type
, conv
);
1072 /* Returns the conversion path from type FROM to reference type TO for
1073 purposes of reference binding. For lvalue binding, either pass a
1074 reference type to FROM or an lvalue expression to EXPR. If the
1075 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1076 the conversion returned. */
1079 reference_binding (rto
, rfrom
, expr
, flags
)
1080 tree rto
, rfrom
, expr
;
1083 tree conv
= NULL_TREE
;
1084 tree to
= TREE_TYPE (rto
);
1088 cp_lvalue_kind lvalue_p
= clk_none
;
1090 if (TREE_CODE (to
) == FUNCTION_TYPE
&& expr
&& type_unknown_p (expr
))
1092 expr
= instantiate_type (to
, expr
, tf_none
);
1093 if (expr
== error_mark_node
)
1095 from
= TREE_TYPE (expr
);
1098 if (TREE_CODE (from
) == REFERENCE_TYPE
)
1100 /* Anything with reference type is an lvalue. */
1101 lvalue_p
= clk_ordinary
;
1102 from
= TREE_TYPE (from
);
1105 lvalue_p
= real_lvalue_p (expr
);
1107 /* Figure out whether or not the types are reference-related and
1108 reference compatible. We have do do this after stripping
1109 references from FROM. */
1110 related_p
= reference_related_p (to
, from
);
1111 compatible_p
= reference_compatible_p (to
, from
);
1113 if (lvalue_p
&& compatible_p
)
1117 If the initializer expression
1119 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1120 is reference-compatible with "cv2 T2,"
1122 the reference is bound directly to the initializer exprssion
1124 conv
= build1 (IDENTITY_CONV
, from
, expr
);
1125 conv
= direct_reference_binding (rto
, conv
);
1126 if ((lvalue_p
& clk_bitfield
) != 0
1127 && CP_TYPE_CONST_NON_VOLATILE_P (to
))
1128 /* For the purposes of overload resolution, we ignore the fact
1129 this expression is a bitfield. (In particular,
1130 [over.ics.ref] says specifically that a function with a
1131 non-const reference parameter is viable even if the
1132 argument is a bitfield.)
1134 However, when we actually call the function we must create
1135 a temporary to which to bind the reference. If the
1136 reference is volatile, or isn't const, then we cannot make
1137 a temporary, so we just issue an error when the conversion
1139 NEED_TEMPORARY_P (conv
) = 1;
1142 else if (CLASS_TYPE_P (from
) && !(flags
& LOOKUP_NO_CONVERSION
))
1146 If the initializer exprsesion
1148 -- has a class type (i.e., T2 is a class type) can be
1149 implicitly converted to an lvalue of type "cv3 T3," where
1150 "cv1 T1" is reference-compatible with "cv3 T3". (this
1151 conversion is selected by enumerating the applicable
1152 conversion functions (_over.match.ref_) and choosing the
1153 best one through overload resolution. (_over.match_).
1155 the reference is bound to the lvalue result of the conversion
1156 in the second case. */
1157 conv
= convert_class_to_reference (to
, from
, expr
);
1159 return direct_reference_binding (rto
, conv
);
1162 /* From this point on, we conceptually need temporaries, even if we
1163 elide them. Only the cases above are "direct bindings". */
1164 if (flags
& LOOKUP_NO_TEMP_BIND
)
1169 When a parameter of reference type is not bound directly to an
1170 argument expression, the conversion sequence is the one required
1171 to convert the argument expression to the underlying type of the
1172 reference according to _over.best.ics_. Conceptually, this
1173 conversion sequence corresponds to copy-initializing a temporary
1174 of the underlying type with the argument expression. Any
1175 difference in top-level cv-qualification is subsumed by the
1176 initialization itself and does not constitute a conversion. */
1180 Otherwise, the reference shall be to a non-volatile const type. */
1181 if (!CP_TYPE_CONST_NON_VOLATILE_P (to
))
1186 If the initializer expression is an rvalue, with T2 a class type,
1187 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1188 is bound in one of the following ways:
1190 -- The reference is bound to the object represented by the rvalue
1191 or to a sub-object within that object.
1193 In this case, the implicit conversion sequence is supposed to be
1194 same as we would obtain by generating a temporary. Fortunately,
1195 if the types are reference compatible, then this is either an
1196 identity conversion or the derived-to-base conversion, just as
1197 for direct binding. */
1198 if (CLASS_TYPE_P (from
) && compatible_p
)
1200 conv
= build1 (IDENTITY_CONV
, from
, expr
);
1201 return direct_reference_binding (rto
, conv
);
1206 Otherwise, a temporary of type "cv1 T1" is created and
1207 initialized from the initializer expression using the rules for a
1208 non-reference copy initialization. If T1 is reference-related to
1209 T2, cv1 must be the same cv-qualification as, or greater
1210 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1211 if (related_p
&& !at_least_as_qualified_p (to
, from
))
1214 conv
= implicit_conversion (to
, from
, expr
, flags
);
1218 conv
= build_conv (REF_BIND
, rto
, conv
);
1219 /* This reference binding, unlike those above, requires the
1220 creation of a temporary. */
1221 NEED_TEMPORARY_P (conv
) = 1;
1226 /* Returns the implicit conversion sequence (see [over.ics]) from type FROM
1227 to type TO. The optional expression EXPR may affect the conversion.
1228 FLAGS are the usual overloading flags. Only LOOKUP_NO_CONVERSION is
1232 implicit_conversion (to
, from
, expr
, flags
)
1233 tree to
, from
, expr
;
1237 struct z_candidate
*cand
;
1239 /* Resolve expressions like `A::p' that we thought might become
1240 pointers-to-members. */
1241 if (expr
&& TREE_CODE (expr
) == OFFSET_REF
)
1243 expr
= resolve_offset_ref (expr
);
1244 from
= TREE_TYPE (expr
);
1247 if (from
== error_mark_node
|| to
== error_mark_node
1248 || expr
== error_mark_node
)
1251 /* Make sure both the FROM and TO types are complete so that
1252 user-defined conversions are available. */
1253 complete_type (from
);
1256 if (TREE_CODE (to
) == REFERENCE_TYPE
)
1257 conv
= reference_binding (to
, from
, expr
, flags
);
1259 conv
= standard_conversion (to
, from
, expr
);
1263 else if (expr
!= NULL_TREE
1264 && (IS_AGGR_TYPE (from
)
1265 || IS_AGGR_TYPE (to
))
1266 && (flags
& LOOKUP_NO_CONVERSION
) == 0)
1268 cand
= build_user_type_conversion_1
1269 (to
, expr
, LOOKUP_ONLYCONVERTING
);
1271 conv
= cand
->second_conv
;
1273 /* We used to try to bind a reference to a temporary here, but that
1274 is now handled by the recursive call to this function at the end
1275 of reference_binding. */
1281 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1284 static struct z_candidate
*
1285 add_candidate (candidates
, fn
, convs
, viable
)
1286 struct z_candidate
*candidates
;
1290 struct z_candidate
*cand
1291 = (struct z_candidate
*) ggc_alloc_cleared (sizeof (struct z_candidate
));
1294 cand
->convs
= convs
;
1295 cand
->viable
= viable
;
1296 cand
->next
= candidates
;
1301 /* Create an overload candidate for the function or method FN called with
1302 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
1303 to implicit_conversion.
1305 CTYPE, if non-NULL, is the type we want to pretend this function
1306 comes from for purposes of overload resolution. */
1308 static struct z_candidate
*
1309 add_function_candidate (candidates
, fn
, ctype
, arglist
, flags
)
1310 struct z_candidate
*candidates
;
1311 tree fn
, ctype
, arglist
;
1314 tree parmlist
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1317 tree parmnode
, argnode
;
1320 /* The `this', `in_chrg' and VTT arguments to constructors are not
1321 considered in overload resolution. */
1322 if (DECL_CONSTRUCTOR_P (fn
))
1324 parmlist
= skip_artificial_parms_for (fn
, parmlist
);
1325 arglist
= skip_artificial_parms_for (fn
, arglist
);
1328 len
= list_length (arglist
);
1329 convs
= make_tree_vec (len
);
1331 /* 13.3.2 - Viable functions [over.match.viable]
1332 First, to be a viable function, a candidate function shall have enough
1333 parameters to agree in number with the arguments in the list.
1335 We need to check this first; otherwise, checking the ICSes might cause
1336 us to produce an ill-formed template instantiation. */
1338 parmnode
= parmlist
;
1339 for (i
= 0; i
< len
; ++i
)
1341 if (parmnode
== NULL_TREE
|| parmnode
== void_list_node
)
1343 parmnode
= TREE_CHAIN (parmnode
);
1346 if (i
< len
&& parmnode
)
1349 /* Make sure there are default args for the rest of the parms. */
1350 else if (!sufficient_parms_p (parmnode
))
1356 /* Second, for F to be a viable function, there shall exist for each
1357 argument an implicit conversion sequence that converts that argument
1358 to the corresponding parameter of F. */
1360 parmnode
= parmlist
;
1363 for (i
= 0; i
< len
; ++i
)
1365 tree arg
= TREE_VALUE (argnode
);
1366 tree argtype
= lvalue_type (arg
);
1370 if (parmnode
== void_list_node
)
1373 is_this
= (i
== 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
)
1374 && ! DECL_CONSTRUCTOR_P (fn
));
1378 tree parmtype
= TREE_VALUE (parmnode
);
1380 /* The type of the implicit object parameter ('this') for
1381 overload resolution is not always the same as for the
1382 function itself; conversion functions are considered to
1383 be members of the class being converted, and functions
1384 introduced by a using-declaration are considered to be
1385 members of the class that uses them.
1387 Since build_over_call ignores the ICS for the `this'
1388 parameter, we can just change the parm type. */
1389 if (ctype
&& is_this
)
1392 = build_qualified_type (ctype
,
1393 TYPE_QUALS (TREE_TYPE (parmtype
)));
1394 parmtype
= build_pointer_type (parmtype
);
1397 t
= implicit_conversion (parmtype
, argtype
, arg
, flags
);
1401 t
= build1 (IDENTITY_CONV
, argtype
, arg
);
1402 ICS_ELLIPSIS_FLAG (t
) = 1;
1406 ICS_THIS_FLAG (t
) = 1;
1408 TREE_VEC_ELT (convs
, i
) = t
;
1415 if (ICS_BAD_FLAG (t
))
1419 parmnode
= TREE_CHAIN (parmnode
);
1420 argnode
= TREE_CHAIN (argnode
);
1424 return add_candidate (candidates
, fn
, convs
, viable
);
1427 /* Create an overload candidate for the conversion function FN which will
1428 be invoked for expression OBJ, producing a pointer-to-function which
1429 will in turn be called with the argument list ARGLIST, and add it to
1430 CANDIDATES. FLAGS is passed on to implicit_conversion.
1432 Actually, we don't really care about FN; we care about the type it
1433 converts to. There may be multiple conversion functions that will
1434 convert to that type, and we rely on build_user_type_conversion_1 to
1435 choose the best one; so when we create our candidate, we record the type
1436 instead of the function. */
1438 static struct z_candidate
*
1439 add_conv_candidate (candidates
, fn
, obj
, arglist
)
1440 struct z_candidate
*candidates
;
1441 tree fn
, obj
, arglist
;
1443 tree totype
= TREE_TYPE (TREE_TYPE (fn
));
1444 int i
, len
, viable
, flags
;
1445 tree parmlist
, convs
, parmnode
, argnode
;
1447 for (parmlist
= totype
; TREE_CODE (parmlist
) != FUNCTION_TYPE
; )
1448 parmlist
= TREE_TYPE (parmlist
);
1449 parmlist
= TYPE_ARG_TYPES (parmlist
);
1451 len
= list_length (arglist
) + 1;
1452 convs
= make_tree_vec (len
);
1453 parmnode
= parmlist
;
1456 flags
= LOOKUP_NORMAL
;
1458 /* Don't bother looking up the same type twice. */
1459 if (candidates
&& candidates
->fn
== totype
)
1462 for (i
= 0; i
< len
; ++i
)
1464 tree arg
= i
== 0 ? obj
: TREE_VALUE (argnode
);
1465 tree argtype
= lvalue_type (arg
);
1469 t
= implicit_conversion (totype
, argtype
, arg
, flags
);
1470 else if (parmnode
== void_list_node
)
1473 t
= implicit_conversion (TREE_VALUE (parmnode
), argtype
, arg
, flags
);
1476 t
= build1 (IDENTITY_CONV
, argtype
, arg
);
1477 ICS_ELLIPSIS_FLAG (t
) = 1;
1480 TREE_VEC_ELT (convs
, i
) = t
;
1484 if (ICS_BAD_FLAG (t
))
1491 parmnode
= TREE_CHAIN (parmnode
);
1492 argnode
= TREE_CHAIN (argnode
);
1498 if (!sufficient_parms_p (parmnode
))
1501 return add_candidate (candidates
, totype
, convs
, viable
);
1504 static struct z_candidate
*
1505 build_builtin_candidate (candidates
, fnname
, type1
, type2
,
1506 args
, argtypes
, flags
)
1507 struct z_candidate
*candidates
;
1508 tree fnname
, type1
, type2
, *args
, *argtypes
;
1519 convs
= make_tree_vec (args
[2] ? 3 : (args
[1] ? 2 : 1));
1521 for (i
= 0; i
< 2; ++i
)
1526 t
= implicit_conversion (types
[i
], argtypes
[i
], args
[i
], flags
);
1530 /* We need something for printing the candidate. */
1531 t
= build1 (IDENTITY_CONV
, types
[i
], NULL_TREE
);
1533 else if (ICS_BAD_FLAG (t
))
1535 TREE_VEC_ELT (convs
, i
) = t
;
1538 /* For COND_EXPR we rearranged the arguments; undo that now. */
1541 TREE_VEC_ELT (convs
, 2) = TREE_VEC_ELT (convs
, 1);
1542 TREE_VEC_ELT (convs
, 1) = TREE_VEC_ELT (convs
, 0);
1543 t
= implicit_conversion (boolean_type_node
, argtypes
[2], args
[2], flags
);
1545 TREE_VEC_ELT (convs
, 0) = t
;
1550 return add_candidate (candidates
, fnname
, convs
, viable
);
1557 return COMPLETE_TYPE_P (complete_type (t
));
1560 /* Returns non-zero if TYPE is a promoted arithmetic type. */
1563 promoted_arithmetic_type_p (type
)
1568 In this section, the term promoted integral type is used to refer
1569 to those integral types which are preserved by integral promotion
1570 (including e.g. int and long but excluding e.g. char).
1571 Similarly, the term promoted arithmetic type refers to promoted
1572 integral types plus floating types. */
1573 return ((INTEGRAL_TYPE_P (type
)
1574 && same_type_p (type_promotes_to (type
), type
))
1575 || TREE_CODE (type
) == REAL_TYPE
);
1578 /* Create any builtin operator overload candidates for the operator in
1579 question given the converted operand types TYPE1 and TYPE2. The other
1580 args are passed through from add_builtin_candidates to
1581 build_builtin_candidate.
1583 TYPE1 and TYPE2 may not be permissible, and we must filter them.
1584 If CODE is requires candidates operands of the same type of the kind
1585 of which TYPE1 and TYPE2 are, we add both candidates
1586 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
1588 static struct z_candidate
*
1589 add_builtin_candidate (candidates
, code
, code2
, fnname
, type1
, type2
,
1590 args
, argtypes
, flags
)
1591 struct z_candidate
*candidates
;
1592 enum tree_code code
, code2
;
1593 tree fnname
, type1
, type2
, *args
, *argtypes
;
1598 case POSTINCREMENT_EXPR
:
1599 case POSTDECREMENT_EXPR
:
1600 args
[1] = integer_zero_node
;
1601 type2
= integer_type_node
;
1610 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1611 and VQ is either volatile or empty, there exist candidate operator
1612 functions of the form
1613 VQ T& operator++(VQ T&);
1614 T operator++(VQ T&, int);
1615 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
1616 type other than bool, and VQ is either volatile or empty, there exist
1617 candidate operator functions of the form
1618 VQ T& operator--(VQ T&);
1619 T operator--(VQ T&, int);
1620 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
1621 complete object type, and VQ is either volatile or empty, there exist
1622 candidate operator functions of the form
1623 T*VQ& operator++(T*VQ&);
1624 T*VQ& operator--(T*VQ&);
1625 T* operator++(T*VQ&, int);
1626 T* operator--(T*VQ&, int); */
1628 case POSTDECREMENT_EXPR
:
1629 case PREDECREMENT_EXPR
:
1630 if (TREE_CODE (type1
) == BOOLEAN_TYPE
)
1632 case POSTINCREMENT_EXPR
:
1633 case PREINCREMENT_EXPR
:
1634 if (ARITHMETIC_TYPE_P (type1
) || TYPE_PTROB_P (type1
))
1636 type1
= build_reference_type (type1
);
1641 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
1642 exist candidate operator functions of the form
1646 8 For every function type T, there exist candidate operator functions of
1648 T& operator*(T*); */
1651 if (TREE_CODE (type1
) == POINTER_TYPE
1652 && (TYPE_PTROB_P (type1
)
1653 || TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
))
1657 /* 9 For every type T, there exist candidate operator functions of the form
1660 10For every promoted arithmetic type T, there exist candidate operator
1661 functions of the form
1665 case CONVERT_EXPR
: /* unary + */
1666 if (TREE_CODE (type1
) == POINTER_TYPE
1667 && TREE_CODE (TREE_TYPE (type1
)) != OFFSET_TYPE
)
1670 if (ARITHMETIC_TYPE_P (type1
))
1674 /* 11For every promoted integral type T, there exist candidate operator
1675 functions of the form
1679 if (INTEGRAL_TYPE_P (type1
))
1683 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1684 is the same type as C2 or is a derived class of C2, T is a complete
1685 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1686 there exist candidate operator functions of the form
1687 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1688 where CV12 is the union of CV1 and CV2. */
1691 if (TREE_CODE (type1
) == POINTER_TYPE
1692 && (TYPE_PTRMEMFUNC_P (type2
) || TYPE_PTRMEM_P (type2
)))
1694 tree c1
= TREE_TYPE (type1
);
1695 tree c2
= (TYPE_PTRMEMFUNC_P (type2
)
1696 ? TYPE_METHOD_BASETYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type2
)))
1697 : TYPE_OFFSET_BASETYPE (TREE_TYPE (type2
)));
1699 if (IS_AGGR_TYPE (c1
) && DERIVED_FROM_P (c2
, c1
)
1700 && (TYPE_PTRMEMFUNC_P (type2
)
1701 || is_complete (TREE_TYPE (TREE_TYPE (type2
)))))
1706 /* 13For every pair of promoted arithmetic types L and R, there exist can-
1707 didate operator functions of the form
1712 bool operator<(L, R);
1713 bool operator>(L, R);
1714 bool operator<=(L, R);
1715 bool operator>=(L, R);
1716 bool operator==(L, R);
1717 bool operator!=(L, R);
1718 where LR is the result of the usual arithmetic conversions between
1721 14For every pair of types T and I, where T is a cv-qualified or cv-
1722 unqualified complete object type and I is a promoted integral type,
1723 there exist candidate operator functions of the form
1724 T* operator+(T*, I);
1725 T& operator[](T*, I);
1726 T* operator-(T*, I);
1727 T* operator+(I, T*);
1728 T& operator[](I, T*);
1730 15For every T, where T is a pointer to complete object type, there exist
1731 candidate operator functions of the form112)
1732 ptrdiff_t operator-(T, T);
1734 16For every pointer or enumeration type T, there exist candidate operator
1735 functions of the form
1736 bool operator<(T, T);
1737 bool operator>(T, T);
1738 bool operator<=(T, T);
1739 bool operator>=(T, T);
1740 bool operator==(T, T);
1741 bool operator!=(T, T);
1743 17For every pointer to member type T, there exist candidate operator
1744 functions of the form
1745 bool operator==(T, T);
1746 bool operator!=(T, T); */
1749 if (TYPE_PTROB_P (type1
) && TYPE_PTROB_P (type2
))
1751 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1753 type2
= ptrdiff_type_node
;
1757 case TRUNC_DIV_EXPR
:
1758 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1764 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
1765 || (TYPE_PTRMEM_P (type1
) && TYPE_PTRMEM_P (type2
)))
1767 if ((TYPE_PTRMEMFUNC_P (type1
) || TYPE_PTRMEM_P (type1
))
1768 && null_ptr_cst_p (args
[1]))
1773 if ((TYPE_PTRMEMFUNC_P (type2
) || TYPE_PTRMEM_P (type2
))
1774 && null_ptr_cst_p (args
[0]))
1786 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1788 if (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
1790 if (TREE_CODE (type1
) == ENUMERAL_TYPE
&& TREE_CODE (type2
) == ENUMERAL_TYPE
)
1792 if (TYPE_PTR_P (type1
) && null_ptr_cst_p (args
[1]))
1797 if (null_ptr_cst_p (args
[0]) && TYPE_PTR_P (type2
))
1805 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1808 if (INTEGRAL_TYPE_P (type1
) && TYPE_PTROB_P (type2
))
1810 type1
= ptrdiff_type_node
;
1813 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1815 type2
= ptrdiff_type_node
;
1820 /* 18For every pair of promoted integral types L and R, there exist candi-
1821 date operator functions of the form
1828 where LR is the result of the usual arithmetic conversions between
1831 case TRUNC_MOD_EXPR
:
1837 if (INTEGRAL_TYPE_P (type1
) && INTEGRAL_TYPE_P (type2
))
1841 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1842 type, VQ is either volatile or empty, and R is a promoted arithmetic
1843 type, there exist candidate operator functions of the form
1844 VQ L& operator=(VQ L&, R);
1845 VQ L& operator*=(VQ L&, R);
1846 VQ L& operator/=(VQ L&, R);
1847 VQ L& operator+=(VQ L&, R);
1848 VQ L& operator-=(VQ L&, R);
1850 20For every pair T, VQ), where T is any type and VQ is either volatile
1851 or empty, there exist candidate operator functions of the form
1852 T*VQ& operator=(T*VQ&, T*);
1854 21For every pair T, VQ), where T is a pointer to member type and VQ is
1855 either volatile or empty, there exist candidate operator functions of
1857 VQ T& operator=(VQ T&, T);
1859 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1860 unqualified complete object type, VQ is either volatile or empty, and
1861 I is a promoted integral type, there exist candidate operator func-
1863 T*VQ& operator+=(T*VQ&, I);
1864 T*VQ& operator-=(T*VQ&, I);
1866 23For every triple L, VQ, R), where L is an integral or enumeration
1867 type, VQ is either volatile or empty, and R is a promoted integral
1868 type, there exist candidate operator functions of the form
1870 VQ L& operator%=(VQ L&, R);
1871 VQ L& operator<<=(VQ L&, R);
1872 VQ L& operator>>=(VQ L&, R);
1873 VQ L& operator&=(VQ L&, R);
1874 VQ L& operator^=(VQ L&, R);
1875 VQ L& operator|=(VQ L&, R); */
1882 if (TYPE_PTROB_P (type1
) && INTEGRAL_TYPE_P (type2
))
1884 type2
= ptrdiff_type_node
;
1888 case TRUNC_DIV_EXPR
:
1889 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1893 case TRUNC_MOD_EXPR
:
1899 if (INTEGRAL_TYPE_P (type1
) && INTEGRAL_TYPE_P (type2
))
1904 if (ARITHMETIC_TYPE_P (type1
) && ARITHMETIC_TYPE_P (type2
))
1906 if ((TYPE_PTRMEMFUNC_P (type1
) && TYPE_PTRMEMFUNC_P (type2
))
1907 || (TYPE_PTR_P (type1
) && TYPE_PTR_P (type2
))
1908 || (TYPE_PTRMEM_P (type1
) && TYPE_PTRMEM_P (type2
))
1909 || ((TYPE_PTRMEMFUNC_P (type1
)
1910 || TREE_CODE (type1
) == POINTER_TYPE
)
1911 && null_ptr_cst_p (args
[1])))
1921 type1
= build_reference_type (type1
);
1927 For every pair of promoted arithmetic types L and R, there
1928 exist candidate operator functions of the form
1930 LR operator?(bool, L, R);
1932 where LR is the result of the usual arithmetic conversions
1933 between types L and R.
1935 For every type T, where T is a pointer or pointer-to-member
1936 type, there exist candidate operator functions of the form T
1937 operator?(bool, T, T); */
1939 if (promoted_arithmetic_type_p (type1
)
1940 && promoted_arithmetic_type_p (type2
))
1944 /* Otherwise, the types should be pointers. */
1945 if (!(TREE_CODE (type1
) == POINTER_TYPE
1946 || TYPE_PTRMEM_P (type1
)
1947 || TYPE_PTRMEMFUNC_P (type1
))
1948 || !(TREE_CODE (type2
) == POINTER_TYPE
1949 || TYPE_PTRMEM_P (type2
)
1950 || TYPE_PTRMEMFUNC_P (type2
)))
1953 /* We don't check that the two types are the same; the logic
1954 below will actually create two candidates; one in which both
1955 parameter types are TYPE1, and one in which both parameter
1959 /* These arguments do not make for a legal overloaded operator. */
1966 /* If we're dealing with two pointer types or two enumeral types,
1967 we need candidates for both of them. */
1968 if (type2
&& !same_type_p (type1
, type2
)
1969 && TREE_CODE (type1
) == TREE_CODE (type2
)
1970 && (TREE_CODE (type1
) == REFERENCE_TYPE
1971 || (TREE_CODE (type1
) == POINTER_TYPE
1972 && TYPE_PTRMEM_P (type1
) == TYPE_PTRMEM_P (type2
))
1973 || TYPE_PTRMEMFUNC_P (type1
)
1974 || IS_AGGR_TYPE (type1
)
1975 || TREE_CODE (type1
) == ENUMERAL_TYPE
))
1977 candidates
= build_builtin_candidate
1978 (candidates
, fnname
, type1
, type1
, args
, argtypes
, flags
);
1979 return build_builtin_candidate
1980 (candidates
, fnname
, type2
, type2
, args
, argtypes
, flags
);
1983 return build_builtin_candidate
1984 (candidates
, fnname
, type1
, type2
, args
, argtypes
, flags
);
1988 type_decays_to (type
)
1991 if (TREE_CODE (type
) == ARRAY_TYPE
)
1992 return build_pointer_type (TREE_TYPE (type
));
1993 if (TREE_CODE (type
) == FUNCTION_TYPE
)
1994 return build_pointer_type (type
);
1998 /* There are three conditions of builtin candidates:
2000 1) bool-taking candidates. These are the same regardless of the input.
2001 2) pointer-pair taking candidates. These are generated for each type
2002 one of the input types converts to.
2003 3) arithmetic candidates. According to the standard, we should generate
2004 all of these, but I'm trying not to...
2006 Here we generate a superset of the possible candidates for this particular
2007 case. That is a subset of the full set the standard defines, plus some
2008 other cases which the standard disallows. add_builtin_candidate will
2009 filter out the illegal set. */
2011 static struct z_candidate
*
2012 add_builtin_candidates (candidates
, code
, code2
, fnname
, args
, flags
)
2013 struct z_candidate
*candidates
;
2014 enum tree_code code
, code2
;
2020 tree type
, argtypes
[3];
2021 /* TYPES[i] is the set of possible builtin-operator parameter types
2022 we will consider for the Ith argument. These are represented as
2023 a TREE_LIST; the TREE_VALUE of each node is the potential
2027 for (i
= 0; i
< 3; ++i
)
2030 argtypes
[i
] = lvalue_type (args
[i
]);
2032 argtypes
[i
] = NULL_TREE
;
2037 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2038 and VQ is either volatile or empty, there exist candidate operator
2039 functions of the form
2040 VQ T& operator++(VQ T&); */
2042 case POSTINCREMENT_EXPR
:
2043 case PREINCREMENT_EXPR
:
2044 case POSTDECREMENT_EXPR
:
2045 case PREDECREMENT_EXPR
:
2050 /* 24There also exist candidate operator functions of the form
2051 bool operator!(bool);
2052 bool operator&&(bool, bool);
2053 bool operator||(bool, bool); */
2055 case TRUTH_NOT_EXPR
:
2056 return build_builtin_candidate
2057 (candidates
, fnname
, boolean_type_node
,
2058 NULL_TREE
, args
, argtypes
, flags
);
2060 case TRUTH_ORIF_EXPR
:
2061 case TRUTH_ANDIF_EXPR
:
2062 return build_builtin_candidate
2063 (candidates
, fnname
, boolean_type_node
,
2064 boolean_type_node
, args
, argtypes
, flags
);
2085 types
[0] = types
[1] = NULL_TREE
;
2087 for (i
= 0; i
< 2; ++i
)
2091 else if (IS_AGGR_TYPE (argtypes
[i
]))
2095 if (i
== 0 && code
== MODIFY_EXPR
&& code2
== NOP_EXPR
)
2098 convs
= lookup_conversions (argtypes
[i
]);
2100 if (code
== COND_EXPR
)
2102 if (real_lvalue_p (args
[i
]))
2103 types
[i
] = tree_cons
2104 (NULL_TREE
, build_reference_type (argtypes
[i
]), types
[i
]);
2106 types
[i
] = tree_cons
2107 (NULL_TREE
, TYPE_MAIN_VARIANT (argtypes
[i
]), types
[i
]);
2113 for (; convs
; convs
= TREE_CHAIN (convs
))
2115 type
= TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs
))));
2118 && (TREE_CODE (type
) != REFERENCE_TYPE
2119 || CP_TYPE_CONST_P (TREE_TYPE (type
))))
2122 if (code
== COND_EXPR
&& TREE_CODE (type
) == REFERENCE_TYPE
)
2123 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2125 type
= non_reference (type
);
2126 if (i
!= 0 || ! ref1
)
2128 type
= TYPE_MAIN_VARIANT (type_decays_to (type
));
2129 if (enum_p
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
2130 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2131 if (INTEGRAL_TYPE_P (type
))
2132 type
= type_promotes_to (type
);
2135 if (! value_member (type
, types
[i
]))
2136 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2141 if (code
== COND_EXPR
&& real_lvalue_p (args
[i
]))
2142 types
[i
] = tree_cons
2143 (NULL_TREE
, build_reference_type (argtypes
[i
]), types
[i
]);
2144 type
= non_reference (argtypes
[i
]);
2145 if (i
!= 0 || ! ref1
)
2147 type
= TYPE_MAIN_VARIANT (type_decays_to (type
));
2148 if (enum_p
&& TREE_CODE (type
) == ENUMERAL_TYPE
)
2149 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2150 if (INTEGRAL_TYPE_P (type
))
2151 type
= type_promotes_to (type
);
2153 types
[i
] = tree_cons (NULL_TREE
, type
, types
[i
]);
2157 /* Run through the possible parameter types of both arguments,
2158 creating candidates with those parameter types. */
2159 for (; types
[0]; types
[0] = TREE_CHAIN (types
[0]))
2162 for (type
= types
[1]; type
; type
= TREE_CHAIN (type
))
2163 candidates
= add_builtin_candidate
2164 (candidates
, code
, code2
, fnname
, TREE_VALUE (types
[0]),
2165 TREE_VALUE (type
), args
, argtypes
, flags
);
2167 candidates
= add_builtin_candidate
2168 (candidates
, code
, code2
, fnname
, TREE_VALUE (types
[0]),
2169 NULL_TREE
, args
, argtypes
, flags
);
2176 /* If TMPL can be successfully instantiated as indicated by
2177 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2179 TMPL is the template. EXPLICIT_TARGS are any explicit template
2180 arguments. ARGLIST is the arguments provided at the call-site.
2181 The RETURN_TYPE is the desired type for conversion operators. If
2182 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2183 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
2184 add_conv_candidate. */
2186 static struct z_candidate
*
2187 add_template_candidate_real (candidates
, tmpl
, ctype
, explicit_targs
,
2188 arglist
, return_type
, flags
,
2190 struct z_candidate
*candidates
;
2191 tree tmpl
, ctype
, explicit_targs
, arglist
, return_type
;
2194 unification_kind_t strict
;
2196 int ntparms
= DECL_NTPARMS (tmpl
);
2197 tree targs
= make_tree_vec (ntparms
);
2198 tree args_without_in_chrg
= arglist
;
2199 struct z_candidate
*cand
;
2203 /* We don't do deduction on the in-charge parameter, the VTT
2204 parameter or 'this'. */
2205 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl
))
2206 args_without_in_chrg
= TREE_CHAIN (args_without_in_chrg
);
2208 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl
)
2209 || DECL_BASE_CONSTRUCTOR_P (tmpl
))
2210 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (tmpl
)))
2211 args_without_in_chrg
= TREE_CHAIN (args_without_in_chrg
);
2213 i
= fn_type_unification (tmpl
, explicit_targs
, targs
,
2214 args_without_in_chrg
,
2215 return_type
, strict
, -1);
2220 fn
= instantiate_template (tmpl
, targs
);
2221 if (fn
== error_mark_node
)
2226 A member function template is never instantiated to perform the
2227 copy of a class object to an object of its class type.
2229 It's a little unclear what this means; the standard explicitly
2230 does allow a template to be used to copy a class. For example,
2235 template <class T> A(const T&);
2238 void g () { A a (f ()); }
2240 the member template will be used to make the copy. The section
2241 quoted above appears in the paragraph that forbids constructors
2242 whose only parameter is (a possibly cv-qualified variant of) the
2243 class type, and a logical interpretation is that the intent was
2244 to forbid the instantiation of member templates which would then
2246 if (DECL_CONSTRUCTOR_P (fn
) && list_length (arglist
) == 2)
2248 tree arg_types
= FUNCTION_FIRST_USER_PARMTYPE (fn
);
2249 if (arg_types
&& same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types
)),
2254 if (obj
!= NULL_TREE
)
2255 /* Aha, this is a conversion function. */
2256 cand
= add_conv_candidate (candidates
, fn
, obj
, arglist
);
2258 cand
= add_function_candidate (candidates
, fn
, ctype
,
2260 if (DECL_TI_TEMPLATE (fn
) != tmpl
)
2261 /* This situation can occur if a member template of a template
2262 class is specialized. Then, instantiate_template might return
2263 an instantiation of the specialization, in which case the
2264 DECL_TI_TEMPLATE field will point at the original
2265 specialization. For example:
2267 template <class T> struct S { template <class U> void f(U);
2268 template <> void f(int) {}; };
2272 Here, TMPL will be template <class U> S<double>::f(U).
2273 And, instantiate template will give us the specialization
2274 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2275 for this will point at template <class T> template <> S<T>::f(int),
2276 so that we can find the definition. For the purposes of
2277 overload resolution, however, we want the original TMPL. */
2278 cand
->template = tree_cons (tmpl
, targs
, NULL_TREE
);
2280 cand
->template = DECL_TEMPLATE_INFO (fn
);
2286 static struct z_candidate
*
2287 add_template_candidate (candidates
, tmpl
, ctype
, explicit_targs
,
2288 arglist
, return_type
, flags
, strict
)
2289 struct z_candidate
*candidates
;
2290 tree tmpl
, ctype
, explicit_targs
, arglist
, return_type
;
2292 unification_kind_t strict
;
2295 add_template_candidate_real (candidates
, tmpl
, ctype
,
2296 explicit_targs
, arglist
, return_type
, flags
,
2301 static struct z_candidate
*
2302 add_template_conv_candidate (candidates
, tmpl
, obj
, arglist
, return_type
)
2303 struct z_candidate
*candidates
;
2304 tree tmpl
, obj
, arglist
, return_type
;
2307 add_template_candidate_real (candidates
, tmpl
, NULL_TREE
, NULL_TREE
,
2308 arglist
, return_type
, 0, obj
, DEDUCE_CONV
);
2314 struct z_candidate
*cands
;
2316 for (; cands
; cands
= cands
->next
)
2317 if (pedantic
? cands
->viable
== 1 : cands
->viable
)
2322 static struct z_candidate
*
2323 splice_viable (cands
)
2324 struct z_candidate
*cands
;
2326 struct z_candidate
**p
= &cands
;
2330 if (pedantic
? (*p
)->viable
== 1 : (*p
)->viable
)
2343 /* Fix this to work on non-lvalues. */
2344 return build_unary_op (ADDR_EXPR
, obj
, 0);
2348 print_z_candidates (candidates
)
2349 struct z_candidate
*candidates
;
2351 const char *str
= "candidates are:";
2352 for (; candidates
; candidates
= candidates
->next
)
2354 if (TREE_CODE (candidates
->fn
) == IDENTIFIER_NODE
)
2356 if (TREE_VEC_LENGTH (candidates
->convs
) == 3)
2357 error ("%s %D(%T, %T, %T) <built-in>", str
, candidates
->fn
,
2358 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 0)),
2359 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 1)),
2360 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 2)));
2361 else if (TREE_VEC_LENGTH (candidates
->convs
) == 2)
2362 error ("%s %D(%T, %T) <built-in>", str
, candidates
->fn
,
2363 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 0)),
2364 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 1)));
2366 error ("%s %D(%T) <built-in>", str
, candidates
->fn
,
2367 TREE_TYPE (TREE_VEC_ELT (candidates
->convs
, 0)));
2369 else if (TYPE_P (candidates
->fn
))
2370 error ("%s %T <conversion>", str
, candidates
->fn
);
2372 cp_error_at ("%s %+#D%s", str
, candidates
->fn
,
2373 candidates
->viable
== -1 ? " <near match>" : "");
2378 /* Returns the best overload candidate to perform the requested
2379 conversion. This function is used for three the overloading situations
2380 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2381 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2382 per [dcl.init.ref], so we ignore temporary bindings. */
2384 static struct z_candidate
*
2385 build_user_type_conversion_1 (totype
, expr
, flags
)
2389 struct z_candidate
*candidates
, *cand
;
2390 tree fromtype
= TREE_TYPE (expr
);
2391 tree ctors
= NULL_TREE
, convs
= NULL_TREE
, *p
;
2392 tree args
= NULL_TREE
;
2393 tree templates
= NULL_TREE
;
2395 /* We represent conversion within a hierarchy using RVALUE_CONV and
2396 BASE_CONV, as specified by [over.best.ics]; these become plain
2397 constructor calls, as specified in [dcl.init]. */
2398 my_friendly_assert (!IS_AGGR_TYPE (fromtype
) || !IS_AGGR_TYPE (totype
)
2399 || !DERIVED_FROM_P (totype
, fromtype
), 20011226);
2401 if (IS_AGGR_TYPE (totype
))
2402 ctors
= lookup_fnfields (TYPE_BINFO (totype
),
2403 complete_ctor_identifier
,
2406 if (IS_AGGR_TYPE (fromtype
))
2407 convs
= lookup_conversions (fromtype
);
2410 flags
|= LOOKUP_NO_CONVERSION
;
2416 ctors
= TREE_VALUE (ctors
);
2418 t
= build_int_2 (0, 0);
2419 TREE_TYPE (t
) = build_pointer_type (totype
);
2420 args
= build_tree_list (NULL_TREE
, expr
);
2421 /* We should never try to call the abstract or base constructor
2423 my_friendly_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors
))
2424 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors
)),
2426 args
= tree_cons (NULL_TREE
, t
, args
);
2428 for (; ctors
; ctors
= OVL_NEXT (ctors
))
2430 tree ctor
= OVL_CURRENT (ctors
);
2431 if (DECL_NONCONVERTING_P (ctor
))
2434 if (TREE_CODE (ctor
) == TEMPLATE_DECL
)
2436 templates
= tree_cons (NULL_TREE
, ctor
, templates
);
2438 add_template_candidate (candidates
, ctor
, totype
,
2439 NULL_TREE
, args
, NULL_TREE
, flags
,
2443 candidates
= add_function_candidate (candidates
, ctor
, totype
,
2448 candidates
->second_conv
= build1 (IDENTITY_CONV
, totype
, NULL_TREE
);
2449 candidates
->basetype_path
= TYPE_BINFO (totype
);
2454 args
= build_tree_list (NULL_TREE
, build_this (expr
));
2456 for (; convs
; convs
= TREE_CHAIN (convs
))
2458 tree fns
= TREE_VALUE (convs
);
2459 int convflags
= LOOKUP_NO_CONVERSION
;
2461 /* If we are called to convert to a reference type, we are trying to
2462 find an lvalue binding, so don't even consider temporaries. If
2463 we don't find an lvalue binding, the caller will try again to
2464 look for a temporary binding. */
2465 if (TREE_CODE (totype
) == REFERENCE_TYPE
)
2466 convflags
|= LOOKUP_NO_TEMP_BIND
;
2468 for (; fns
; fns
= OVL_NEXT (fns
))
2470 tree fn
= OVL_CURRENT (fns
);
2471 struct z_candidate
*old_candidates
= candidates
;
2473 /* [over.match.funcs] For conversion functions, the function
2474 is considered to be a member of the class of the implicit
2475 object argument for the purpose of defining the type of
2476 the implicit object parameter.
2478 So we pass fromtype as CTYPE to add_*_candidate. */
2480 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2482 templates
= tree_cons (NULL_TREE
, fn
, templates
);
2484 add_template_candidate (candidates
, fn
, fromtype
, NULL_TREE
,
2485 args
, totype
, flags
,
2489 candidates
= add_function_candidate (candidates
, fn
, fromtype
,
2492 if (candidates
!= old_candidates
)
2494 tree ics
= implicit_conversion
2495 (totype
, TREE_TYPE (TREE_TYPE (candidates
->fn
)),
2498 candidates
->second_conv
= ics
;
2499 candidates
->basetype_path
= TYPE_BINFO (fromtype
);
2501 if (ics
== NULL_TREE
)
2502 candidates
->viable
= 0;
2503 else if (candidates
->viable
== 1 && ICS_BAD_FLAG (ics
))
2504 candidates
->viable
= -1;
2509 if (! any_viable (candidates
))
2512 if (flags
& LOOKUP_COMPLAIN
)
2514 if (candidates
&& ! candidates
->next
)
2515 /* say why this one won't work or try to be loose */;
2517 error ("no viable candidates");
2524 candidates
= splice_viable (candidates
);
2525 cand
= tourney (candidates
);
2529 if (flags
& LOOKUP_COMPLAIN
)
2531 error ("conversion from `%T' to `%T' is ambiguous",
2533 print_z_candidates (candidates
);
2536 cand
= candidates
; /* any one will do */
2537 cand
->second_conv
= build1 (AMBIG_CONV
, totype
, expr
);
2538 ICS_USER_FLAG (cand
->second_conv
) = 1;
2539 ICS_BAD_FLAG (cand
->second_conv
) = 1;
2544 for (p
= &(cand
->second_conv
); TREE_CODE (*p
) != IDENTITY_CONV
; )
2545 p
= &(TREE_OPERAND (*p
, 0));
2549 (DECL_CONSTRUCTOR_P (cand
->fn
)
2550 ? totype
: non_reference (TREE_TYPE (TREE_TYPE (cand
->fn
)))),
2551 expr
, build_ptr_wrapper (cand
));
2553 ICS_USER_FLAG (cand
->second_conv
) = ICS_USER_FLAG (*p
) = 1;
2554 if (cand
->viable
== -1)
2555 ICS_BAD_FLAG (cand
->second_conv
) = ICS_BAD_FLAG (*p
) = 1;
2561 build_user_type_conversion (totype
, expr
, flags
)
2565 struct z_candidate
*cand
2566 = build_user_type_conversion_1 (totype
, expr
, flags
);
2570 if (TREE_CODE (cand
->second_conv
) == AMBIG_CONV
)
2571 return error_mark_node
;
2572 return convert_from_reference (convert_like (cand
->second_conv
, expr
));
2577 /* Do any initial processing on the arguments to a function call. */
2584 for (t
= args
; t
; t
= TREE_CHAIN (t
))
2586 tree arg
= TREE_VALUE (t
);
2588 if (arg
== error_mark_node
)
2589 return error_mark_node
;
2590 else if (VOID_TYPE_P (TREE_TYPE (arg
)))
2592 error ("invalid use of void expression");
2593 return error_mark_node
;
2595 else if (TREE_CODE (arg
) == OFFSET_REF
)
2596 arg
= resolve_offset_ref (arg
);
2597 arg
= convert_from_reference (arg
);
2598 TREE_VALUE (t
) = arg
;
2604 build_new_function_call (fn
, args
)
2607 struct z_candidate
*candidates
= 0, *cand
;
2608 tree explicit_targs
= NULL_TREE
;
2609 int template_only
= 0;
2611 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
2613 explicit_targs
= TREE_OPERAND (fn
, 1);
2614 fn
= TREE_OPERAND (fn
, 0);
2618 if (really_overloaded_fn (fn
))
2621 tree templates
= NULL_TREE
;
2623 args
= resolve_args (args
);
2625 if (args
== error_mark_node
)
2626 return error_mark_node
;
2628 for (t1
= fn
; t1
; t1
= OVL_CHAIN (t1
))
2630 tree t
= OVL_FUNCTION (t1
);
2632 if (TREE_CODE (t
) == TEMPLATE_DECL
)
2634 templates
= tree_cons (NULL_TREE
, t
, templates
);
2635 candidates
= add_template_candidate
2636 (candidates
, t
, NULL_TREE
, explicit_targs
, args
, NULL_TREE
,
2637 LOOKUP_NORMAL
, DEDUCE_CALL
);
2639 else if (! template_only
)
2640 candidates
= add_function_candidate
2641 (candidates
, t
, NULL_TREE
, args
, LOOKUP_NORMAL
);
2644 if (! any_viable (candidates
))
2646 if (candidates
&& ! candidates
->next
)
2647 return build_function_call (candidates
->fn
, args
);
2648 error ("no matching function for call to `%D(%A)'",
2649 DECL_NAME (OVL_FUNCTION (fn
)), args
);
2651 print_z_candidates (candidates
);
2652 return error_mark_node
;
2654 candidates
= splice_viable (candidates
);
2655 cand
= tourney (candidates
);
2659 error ("call of overloaded `%D(%A)' is ambiguous",
2660 DECL_NAME (OVL_FUNCTION (fn
)), args
);
2661 print_z_candidates (candidates
);
2662 return error_mark_node
;
2665 return build_over_call (cand
, args
, LOOKUP_NORMAL
);
2668 /* This is not really overloaded. */
2669 fn
= OVL_CURRENT (fn
);
2671 return build_function_call (fn
, args
);
2675 build_object_call (obj
, args
)
2678 struct z_candidate
*candidates
= 0, *cand
;
2679 tree fns
, convs
, mem_args
= NULL_TREE
;
2680 tree type
= TREE_TYPE (obj
);
2682 if (TYPE_PTRMEMFUNC_P (type
))
2684 /* It's no good looking for an overloaded operator() on a
2685 pointer-to-member-function. */
2686 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj
);
2687 return error_mark_node
;
2690 fns
= lookup_fnfields (TYPE_BINFO (type
), ansi_opname (CALL_EXPR
), 1);
2691 if (fns
== error_mark_node
)
2692 return error_mark_node
;
2694 args
= resolve_args (args
);
2696 if (args
== error_mark_node
)
2697 return error_mark_node
;
2701 tree base
= BINFO_TYPE (TREE_PURPOSE (fns
));
2702 mem_args
= tree_cons (NULL_TREE
, build_this (obj
), args
);
2704 for (fns
= TREE_VALUE (fns
); fns
; fns
= OVL_NEXT (fns
))
2706 tree fn
= OVL_CURRENT (fns
);
2707 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2710 = add_template_candidate (candidates
, fn
, base
, NULL_TREE
,
2711 mem_args
, NULL_TREE
,
2712 LOOKUP_NORMAL
, DEDUCE_CALL
);
2715 candidates
= add_function_candidate
2716 (candidates
, fn
, base
, mem_args
, LOOKUP_NORMAL
);
2719 candidates
->basetype_path
= TYPE_BINFO (type
);
2723 convs
= lookup_conversions (type
);
2725 for (; convs
; convs
= TREE_CHAIN (convs
))
2727 tree fns
= TREE_VALUE (convs
);
2728 tree totype
= TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns
)));
2730 if ((TREE_CODE (totype
) == POINTER_TYPE
2731 && TREE_CODE (TREE_TYPE (totype
)) == FUNCTION_TYPE
)
2732 || (TREE_CODE (totype
) == REFERENCE_TYPE
2733 && TREE_CODE (TREE_TYPE (totype
)) == FUNCTION_TYPE
)
2734 || (TREE_CODE (totype
) == REFERENCE_TYPE
2735 && TREE_CODE (TREE_TYPE (totype
)) == POINTER_TYPE
2736 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype
))) == FUNCTION_TYPE
))
2737 for (; fns
; fns
= OVL_NEXT (fns
))
2739 tree fn
= OVL_CURRENT (fns
);
2740 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2742 candidates
= add_template_conv_candidate (candidates
,
2749 candidates
= add_conv_candidate (candidates
, fn
, obj
, args
);
2753 if (! any_viable (candidates
))
2755 error ("no match for call to `(%T) (%A)'", TREE_TYPE (obj
), args
);
2756 print_z_candidates (candidates
);
2757 return error_mark_node
;
2760 candidates
= splice_viable (candidates
);
2761 cand
= tourney (candidates
);
2765 error ("call of `(%T) (%A)' is ambiguous", TREE_TYPE (obj
), args
);
2766 print_z_candidates (candidates
);
2767 return error_mark_node
;
2770 /* Since cand->fn will be a type, not a function, for a conversion
2771 function, we must be careful not to unconditionally look at
2773 if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
2774 && DECL_OVERLOADED_OPERATOR_P (cand
->fn
) == CALL_EXPR
)
2775 return build_over_call (cand
, mem_args
, LOOKUP_NORMAL
);
2777 obj
= convert_like_with_context
2778 (TREE_VEC_ELT (cand
->convs
, 0), obj
, cand
->fn
, -1);
2781 return build_function_call (obj
, args
);
2785 op_error (code
, code2
, arg1
, arg2
, arg3
, problem
)
2786 enum tree_code code
, code2
;
2787 tree arg1
, arg2
, arg3
;
2788 const char *problem
;
2792 if (code
== MODIFY_EXPR
)
2793 opname
= assignment_operator_name_info
[code2
].name
;
2795 opname
= operator_name_info
[code
].name
;
2800 error ("%s for `%T ? %T : %T' operator", problem
,
2801 error_type (arg1
), error_type (arg2
), error_type (arg3
));
2803 case POSTINCREMENT_EXPR
:
2804 case POSTDECREMENT_EXPR
:
2805 error ("%s for `%T %s' operator", problem
, error_type (arg1
), opname
);
2808 error ("%s for `%T [%T]' operator", problem
,
2809 error_type (arg1
), error_type (arg2
));
2813 error ("%s for `%T %s %T' operator", problem
,
2814 error_type (arg1
), opname
, error_type (arg2
));
2816 error ("%s for `%s %T' operator", problem
, opname
, error_type (arg1
));
2820 /* Return the implicit conversion sequence that could be used to
2821 convert E1 to E2 in [expr.cond]. */
2824 conditional_conversion (e1
, e2
)
2828 tree t1
= non_reference (TREE_TYPE (e1
));
2829 tree t2
= non_reference (TREE_TYPE (e2
));
2834 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
2835 implicitly converted (clause _conv_) to the type "reference to
2836 T2", subject to the constraint that in the conversion the
2837 reference must bind directly (_dcl.init.ref_) to E1. */
2838 if (real_lvalue_p (e2
))
2840 conv
= implicit_conversion (build_reference_type (t2
),
2843 LOOKUP_NO_TEMP_BIND
);
2850 If E1 and E2 have class type, and the underlying class types are
2851 the same or one is a base class of the other: E1 can be converted
2852 to match E2 if the class of T2 is the same type as, or a base
2853 class of, the class of T1, and the cv-qualification of T2 is the
2854 same cv-qualification as, or a greater cv-qualification than, the
2855 cv-qualification of T1. If the conversion is applied, E1 is
2856 changed to an rvalue of type T2 that still refers to the original
2857 source class object (or the appropriate subobject thereof). */
2858 if (CLASS_TYPE_P (t1
) && CLASS_TYPE_P (t2
)
2859 && same_or_base_type_p (TYPE_MAIN_VARIANT (t2
),
2860 TYPE_MAIN_VARIANT (t1
)))
2862 if (at_least_as_qualified_p (t2
, t1
))
2864 conv
= build1 (IDENTITY_CONV
, t1
, e1
);
2865 if (!same_type_p (TYPE_MAIN_VARIANT (t1
),
2866 TYPE_MAIN_VARIANT (t2
)))
2867 conv
= build_conv (BASE_CONV
, t2
, conv
);
2876 E1 can be converted to match E2 if E1 can be implicitly converted
2877 to the type that expression E2 would have if E2 were converted to
2878 an rvalue (or the type it has, if E2 is an rvalue). */
2879 return implicit_conversion (t2
, t1
, e1
, LOOKUP_NORMAL
);
2882 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
2883 arguments to the conditional expression. By the time this function
2884 is called, any suitable candidate functions are included in
2888 build_conditional_expr (arg1
, arg2
, arg3
)
2896 tree result_type
= NULL_TREE
;
2898 struct z_candidate
*candidates
= 0;
2899 struct z_candidate
*cand
;
2901 /* As a G++ extension, the second argument to the conditional can be
2902 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
2903 c'.) If the second operand is omitted, make sure it is
2904 calculated only once. */
2908 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
2909 arg1
= arg2
= save_expr (arg1
);
2914 The first expr ession is implicitly converted to bool (clause
2916 arg1
= cp_convert (boolean_type_node
, arg1
);
2918 /* If something has already gone wrong, just pass that fact up the
2920 if (arg1
== error_mark_node
2921 || arg2
== error_mark_node
2922 || arg3
== error_mark_node
2923 || TREE_TYPE (arg1
) == error_mark_node
2924 || TREE_TYPE (arg2
) == error_mark_node
2925 || TREE_TYPE (arg3
) == error_mark_node
)
2926 return error_mark_node
;
2930 If either the second or the third operand has type (possibly
2931 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
2932 array-to-pointer (_conv.array_), and function-to-pointer
2933 (_conv.func_) standard conversions are performed on the second
2934 and third operands. */
2935 arg2_type
= TREE_TYPE (arg2
);
2936 arg3_type
= TREE_TYPE (arg3
);
2937 if (VOID_TYPE_P (arg2_type
) || VOID_TYPE_P (arg3_type
))
2939 /* Do the conversions. We don't these for `void' type arguments
2940 since it can't have any effect and since decay_conversion
2941 does not handle that case gracefully. */
2942 if (!VOID_TYPE_P (arg2_type
))
2943 arg2
= decay_conversion (arg2
);
2944 if (!VOID_TYPE_P (arg3_type
))
2945 arg3
= decay_conversion (arg3
);
2946 arg2_type
= TREE_TYPE (arg2
);
2947 arg3_type
= TREE_TYPE (arg3
);
2951 One of the following shall hold:
2953 --The second or the third operand (but not both) is a
2954 throw-expression (_except.throw_); the result is of the
2955 type of the other and is an rvalue.
2957 --Both the second and the third operands have type void; the
2958 result is of type void and is an rvalue. */
2959 if ((TREE_CODE (arg2
) == THROW_EXPR
)
2960 ^ (TREE_CODE (arg3
) == THROW_EXPR
))
2961 result_type
= ((TREE_CODE (arg2
) == THROW_EXPR
)
2962 ? arg3_type
: arg2_type
);
2963 else if (VOID_TYPE_P (arg2_type
) && VOID_TYPE_P (arg3_type
))
2964 result_type
= void_type_node
;
2967 error ("`%E' has type `void' and is not a throw-expression",
2968 VOID_TYPE_P (arg2_type
) ? arg2
: arg3
);
2969 return error_mark_node
;
2973 goto valid_operands
;
2977 Otherwise, if the second and third operand have different types,
2978 and either has (possibly cv-qualified) class type, an attempt is
2979 made to convert each of those operands to the type of the other. */
2980 else if (!same_type_p (arg2_type
, arg3_type
)
2981 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)))
2983 tree conv2
= conditional_conversion (arg2
, arg3
);
2984 tree conv3
= conditional_conversion (arg3
, arg2
);
2988 If both can be converted, or one can be converted but the
2989 conversion is ambiguous, the program is ill-formed. If
2990 neither can be converted, the operands are left unchanged and
2991 further checking is performed as described below. If exactly
2992 one conversion is possible, that conversion is applied to the
2993 chosen operand and the converted operand is used in place of
2994 the original operand for the remainder of this section. */
2995 if ((conv2
&& !ICS_BAD_FLAG (conv2
)
2996 && conv3
&& !ICS_BAD_FLAG (conv3
))
2997 || (conv2
&& TREE_CODE (conv2
) == AMBIG_CONV
)
2998 || (conv3
&& TREE_CODE (conv3
) == AMBIG_CONV
))
3000 error ("operands to ?: have different types");
3001 return error_mark_node
;
3003 else if (conv2
&& !ICS_BAD_FLAG (conv2
))
3005 arg2
= convert_like (conv2
, arg2
);
3006 arg2
= convert_from_reference (arg2
);
3007 /* That may not quite have done the trick. If the two types
3008 are cv-qualified variants of one another, we will have
3009 just used an IDENTITY_CONV. (There's no conversion from
3010 an lvalue of one class type to an lvalue of another type,
3011 even a cv-qualified variant, and we don't want to lose
3012 lvalue-ness here.) So, we manually add a NOP_EXPR here
3014 if (!same_type_p (TREE_TYPE (arg2
), arg3_type
))
3015 arg2
= build1 (NOP_EXPR
, arg3_type
, arg2
);
3016 arg2_type
= TREE_TYPE (arg2
);
3018 else if (conv3
&& !ICS_BAD_FLAG (conv3
))
3020 arg3
= convert_like (conv3
, arg3
);
3021 arg3
= convert_from_reference (arg3
);
3022 if (!same_type_p (TREE_TYPE (arg3
), arg2_type
))
3023 arg3
= build1 (NOP_EXPR
, arg2_type
, arg3
);
3024 arg3_type
= TREE_TYPE (arg3
);
3030 If the second and third operands are lvalues and have the same
3031 type, the result is of that type and is an lvalue. */
3032 if (real_lvalue_p (arg2
) && real_lvalue_p (arg3
) &&
3033 same_type_p (arg2_type
, arg3_type
))
3035 result_type
= arg2_type
;
3036 goto valid_operands
;
3041 Otherwise, the result is an rvalue. If the second and third
3042 operand do not have the same type, and either has (possibly
3043 cv-qualified) class type, overload resolution is used to
3044 determine the conversions (if any) to be applied to the operands
3045 (_over.match.oper_, _over.built_). */
3047 if (!same_type_p (arg2_type
, arg3_type
)
3048 && (CLASS_TYPE_P (arg2_type
) || CLASS_TYPE_P (arg3_type
)))
3053 /* Rearrange the arguments so that add_builtin_candidate only has
3054 to know about two args. In build_builtin_candidates, the
3055 arguments are unscrambled. */
3059 candidates
= add_builtin_candidates (candidates
,
3062 ansi_opname (COND_EXPR
),
3068 If the overload resolution fails, the program is
3070 if (!any_viable (candidates
))
3072 op_error (COND_EXPR
, NOP_EXPR
, arg1
, arg2
, arg3
, "no match");
3073 print_z_candidates (candidates
);
3074 return error_mark_node
;
3076 candidates
= splice_viable (candidates
);
3077 cand
= tourney (candidates
);
3080 op_error (COND_EXPR
, NOP_EXPR
, arg1
, arg2
, arg3
, "no match");
3081 print_z_candidates (candidates
);
3082 return error_mark_node
;
3087 Otherwise, the conversions thus determined are applied, and
3088 the converted operands are used in place of the original
3089 operands for the remainder of this section. */
3090 conv
= TREE_VEC_ELT (cand
->convs
, 0);
3091 arg1
= convert_like (conv
, arg1
);
3092 conv
= TREE_VEC_ELT (cand
->convs
, 1);
3093 arg2
= convert_like (conv
, arg2
);
3094 conv
= TREE_VEC_ELT (cand
->convs
, 2);
3095 arg3
= convert_like (conv
, arg3
);
3100 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3101 and function-to-pointer (_conv.func_) standard conversions are
3102 performed on the second and third operands.
3104 We need to force the lvalue-to-rvalue conversion here for class types,
3105 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3106 that isn't wrapped with a TARGET_EXPR plays havoc with exception
3109 We use ocp_convert rather than build_user_type_conversion because the
3110 latter returns NULL_TREE on failure, while the former gives an error. */
3112 if (IS_AGGR_TYPE (TREE_TYPE (arg2
)) && real_lvalue_p (arg2
))
3113 arg2
= ocp_convert (TREE_TYPE (arg2
), arg2
,
3114 CONV_IMPLICIT
|CONV_FORCE_TEMP
, LOOKUP_NORMAL
);
3116 arg2
= decay_conversion (arg2
);
3117 arg2_type
= TREE_TYPE (arg2
);
3119 if (IS_AGGR_TYPE (TREE_TYPE (arg3
)) && real_lvalue_p (arg3
))
3120 arg3
= ocp_convert (TREE_TYPE (arg3
), arg3
,
3121 CONV_IMPLICIT
|CONV_FORCE_TEMP
, LOOKUP_NORMAL
);
3123 arg3
= decay_conversion (arg3
);
3124 arg3_type
= TREE_TYPE (arg3
);
3126 if (arg2
== error_mark_node
|| arg3
== error_mark_node
)
3127 return error_mark_node
;
3131 After those conversions, one of the following shall hold:
3133 --The second and third operands have the same type; the result is of
3135 if (same_type_p (arg2_type
, arg3_type
))
3136 result_type
= arg2_type
;
3139 --The second and third operands have arithmetic or enumeration
3140 type; the usual arithmetic conversions are performed to bring
3141 them to a common type, and the result is of that type. */
3142 else if ((ARITHMETIC_TYPE_P (arg2_type
)
3143 || TREE_CODE (arg2_type
) == ENUMERAL_TYPE
)
3144 && (ARITHMETIC_TYPE_P (arg3_type
)
3145 || TREE_CODE (arg3_type
) == ENUMERAL_TYPE
))
3147 /* In this case, there is always a common type. */
3148 result_type
= type_after_usual_arithmetic_conversions (arg2_type
,
3151 if (TREE_CODE (arg2_type
) == ENUMERAL_TYPE
3152 && TREE_CODE (arg3_type
) == ENUMERAL_TYPE
)
3153 warning ("enumeral mismatch in conditional expression: `%T' vs `%T'",
3154 arg2_type
, arg3_type
);
3155 else if (extra_warnings
3156 && ((TREE_CODE (arg2_type
) == ENUMERAL_TYPE
3157 && !same_type_p (arg3_type
, type_promotes_to (arg2_type
)))
3158 || (TREE_CODE (arg3_type
) == ENUMERAL_TYPE
3159 && !same_type_p (arg2_type
, type_promotes_to (arg3_type
)))))
3160 warning ("enumeral and non-enumeral type in conditional expression");
3162 arg2
= perform_implicit_conversion (result_type
, arg2
);
3163 arg3
= perform_implicit_conversion (result_type
, arg3
);
3167 --The second and third operands have pointer type, or one has
3168 pointer type and the other is a null pointer constant; pointer
3169 conversions (_conv.ptr_) and qualification conversions
3170 (_conv.qual_) are performed to bring them to their composite
3171 pointer type (_expr.rel_). The result is of the composite
3174 --The second and third operands have pointer to member type, or
3175 one has pointer to member type and the other is a null pointer
3176 constant; pointer to member conversions (_conv.mem_) and
3177 qualification conversions (_conv.qual_) are performed to bring
3178 them to a common type, whose cv-qualification shall match the
3179 cv-qualification of either the second or the third operand.
3180 The result is of the common type. */
3181 else if ((null_ptr_cst_p (arg2
)
3182 && (TYPE_PTR_P (arg3_type
) || TYPE_PTRMEM_P (arg3_type
)
3183 || TYPE_PTRMEMFUNC_P (arg3_type
)))
3184 || (null_ptr_cst_p (arg3
)
3185 && (TYPE_PTR_P (arg2_type
) || TYPE_PTRMEM_P (arg2_type
)
3186 || TYPE_PTRMEMFUNC_P (arg2_type
)))
3187 || (TYPE_PTR_P (arg2_type
) && TYPE_PTR_P (arg3_type
))
3188 || (TYPE_PTRMEM_P (arg2_type
) && TYPE_PTRMEM_P (arg3_type
))
3189 || (TYPE_PTRMEMFUNC_P (arg2_type
)
3190 && TYPE_PTRMEMFUNC_P (arg3_type
)))
3192 result_type
= composite_pointer_type (arg2_type
, arg3_type
, arg2
,
3193 arg3
, "conditional expression");
3194 arg2
= perform_implicit_conversion (result_type
, arg2
);
3195 arg3
= perform_implicit_conversion (result_type
, arg3
);
3200 error ("operands to ?: have different types");
3201 return error_mark_node
;
3205 result
= fold (build (COND_EXPR
, result_type
, arg1
, arg2
, arg3
));
3206 /* Expand both sides into the same slot, hopefully the target of the
3207 ?: expression. We used to check for TARGET_EXPRs here, but now we
3208 sometimes wrap them in NOP_EXPRs so the test would fail. */
3209 if (!lvalue_p
&& IS_AGGR_TYPE (result_type
))
3210 result
= build_target_expr_with_type (result
, result_type
);
3212 /* If this expression is an rvalue, but might be mistaken for an
3213 lvalue, we must add a NON_LVALUE_EXPR. */
3214 if (!lvalue_p
&& real_lvalue_p (result
))
3215 result
= build1 (NON_LVALUE_EXPR
, result_type
, result
);
3221 build_new_op (code
, flags
, arg1
, arg2
, arg3
)
3222 enum tree_code code
;
3224 tree arg1
, arg2
, arg3
;
3226 struct z_candidate
*candidates
= 0, *cand
;
3227 tree fns
, mem_arglist
= NULL_TREE
, arglist
, fnname
;
3228 enum tree_code code2
= NOP_EXPR
;
3229 tree templates
= NULL_TREE
;
3232 if (arg1
== error_mark_node
3233 || arg2
== error_mark_node
3234 || arg3
== error_mark_node
)
3235 return error_mark_node
;
3237 /* This can happen if a template takes all non-type parameters, e.g.
3238 undeclared_template<1, 5, 72>a; */
3239 if (code
== LT_EXPR
&& TREE_CODE (arg1
) == TEMPLATE_DECL
)
3241 error ("`%D' must be declared before use", arg1
);
3242 return error_mark_node
;
3245 if (code
== MODIFY_EXPR
)
3247 code2
= TREE_CODE (arg3
);
3249 fnname
= ansi_assopname (code2
);
3252 fnname
= ansi_opname (code
);
3254 if (TREE_CODE (arg1
) == OFFSET_REF
)
3255 arg1
= resolve_offset_ref (arg1
);
3256 arg1
= convert_from_reference (arg1
);
3262 case VEC_DELETE_EXPR
:
3264 /* Use build_op_new_call and build_op_delete_call instead. */
3268 return build_object_call (arg1
, arg2
);
3276 if (TREE_CODE (arg2
) == OFFSET_REF
)
3277 arg2
= resolve_offset_ref (arg2
);
3278 arg2
= convert_from_reference (arg2
);
3282 if (TREE_CODE (arg3
) == OFFSET_REF
)
3283 arg3
= resolve_offset_ref (arg3
);
3284 arg3
= convert_from_reference (arg3
);
3287 if (code
== COND_EXPR
)
3289 if (arg2
== NULL_TREE
3290 || TREE_CODE (TREE_TYPE (arg2
)) == VOID_TYPE
3291 || TREE_CODE (TREE_TYPE (arg3
)) == VOID_TYPE
3292 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2
))
3293 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3
))))
3296 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1
))
3297 && (! arg2
|| ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2
))))
3300 if (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
)
3301 arg2
= integer_zero_node
;
3303 arglist
= NULL_TREE
;
3305 arglist
= tree_cons (NULL_TREE
, arg3
, arglist
);
3307 arglist
= tree_cons (NULL_TREE
, arg2
, arglist
);
3308 arglist
= tree_cons (NULL_TREE
, arg1
, arglist
);
3310 fns
= lookup_function_nonclass (fnname
, arglist
);
3312 if (fns
&& TREE_CODE (fns
) == TREE_LIST
)
3313 fns
= TREE_VALUE (fns
);
3314 for (; fns
; fns
= OVL_NEXT (fns
))
3316 tree fn
= OVL_CURRENT (fns
);
3317 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
3319 templates
= tree_cons (NULL_TREE
, fn
, templates
);
3321 = add_template_candidate (candidates
, fn
, NULL_TREE
, NULL_TREE
,
3322 arglist
, TREE_TYPE (fnname
),
3323 flags
, DEDUCE_CALL
);
3326 candidates
= add_function_candidate (candidates
, fn
, NULL_TREE
,
3330 if (IS_AGGR_TYPE (TREE_TYPE (arg1
)))
3332 fns
= lookup_fnfields (TYPE_BINFO (TREE_TYPE (arg1
)), fnname
, 1);
3333 if (fns
== error_mark_node
)
3341 tree basetype
= BINFO_TYPE (TREE_PURPOSE (fns
));
3342 mem_arglist
= tree_cons (NULL_TREE
, build_this (arg1
), TREE_CHAIN (arglist
));
3343 for (fns
= TREE_VALUE (fns
); fns
; fns
= OVL_NEXT (fns
))
3345 tree fn
= OVL_CURRENT (fns
);
3348 if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
)
3349 this_arglist
= mem_arglist
;
3351 this_arglist
= arglist
;
3353 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
3355 /* A member template. */
3356 templates
= tree_cons (NULL_TREE
, fn
, templates
);
3358 = add_template_candidate (candidates
, fn
, basetype
, NULL_TREE
,
3359 this_arglist
, TREE_TYPE (fnname
),
3360 flags
, DEDUCE_CALL
);
3363 candidates
= add_function_candidate
3364 (candidates
, fn
, basetype
, this_arglist
, flags
);
3367 candidates
->basetype_path
= TYPE_BINFO (TREE_TYPE (arg1
));
3374 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3375 to know about two args; a builtin candidate will always have a first
3376 parameter of type bool. We'll handle that in
3377 build_builtin_candidate. */
3378 if (code
== COND_EXPR
)
3388 args
[2] = NULL_TREE
;
3391 candidates
= add_builtin_candidates
3392 (candidates
, code
, code2
, fnname
, args
, flags
);
3395 if (! any_viable (candidates
))
3399 case POSTINCREMENT_EXPR
:
3400 case POSTDECREMENT_EXPR
:
3401 /* Look for an `operator++ (int)'. If they didn't have
3402 one, then we fall back to the old way of doing things. */
3403 if (flags
& LOOKUP_COMPLAIN
)
3404 pedwarn ("no `%D(int)' declared for postfix `%s', trying prefix operator instead",
3406 operator_name_info
[code
].name
);
3407 if (code
== POSTINCREMENT_EXPR
)
3408 code
= PREINCREMENT_EXPR
;
3410 code
= PREDECREMENT_EXPR
;
3411 return build_new_op (code
, flags
, arg1
, NULL_TREE
, NULL_TREE
);
3413 /* The caller will deal with these. */
3422 if (flags
& LOOKUP_COMPLAIN
)
3424 op_error (code
, code2
, arg1
, arg2
, arg3
, "no match");
3425 print_z_candidates (candidates
);
3427 return error_mark_node
;
3429 candidates
= splice_viable (candidates
);
3430 cand
= tourney (candidates
);
3434 if (flags
& LOOKUP_COMPLAIN
)
3436 op_error (code
, code2
, arg1
, arg2
, arg3
, "ambiguous overload");
3437 print_z_candidates (candidates
);
3439 return error_mark_node
;
3442 if (TREE_CODE (cand
->fn
) == FUNCTION_DECL
)
3444 extern int warn_synth
;
3446 && fnname
== ansi_assopname (NOP_EXPR
)
3447 && DECL_ARTIFICIAL (cand
->fn
)
3449 && ! candidates
->next
->next
)
3451 warning ("using synthesized `%#D' for copy assignment",
3453 cp_warning_at (" where cfront would use `%#D'",
3455 ? candidates
->next
->fn
3459 return build_over_call
3461 TREE_CODE (TREE_TYPE (cand
->fn
)) == METHOD_TYPE
3462 ? mem_arglist
: arglist
,
3466 /* Check for comparison of different enum types. */
3475 if (TREE_CODE (TREE_TYPE (arg1
)) == ENUMERAL_TYPE
3476 && TREE_CODE (TREE_TYPE (arg2
)) == ENUMERAL_TYPE
3477 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1
))
3478 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2
))))
3480 warning ("comparison between `%#T' and `%#T'",
3481 TREE_TYPE (arg1
), TREE_TYPE (arg2
));
3488 /* We need to strip any leading REF_BIND so that bitfields don't cause
3489 errors. This should not remove any important conversions, because
3490 builtins don't apply to class objects directly. */
3491 conv
= TREE_VEC_ELT (cand
->convs
, 0);
3492 if (TREE_CODE (conv
) == REF_BIND
)
3493 conv
= TREE_OPERAND (conv
, 0);
3494 arg1
= convert_like (conv
, arg1
);
3497 conv
= TREE_VEC_ELT (cand
->convs
, 1);
3498 if (TREE_CODE (conv
) == REF_BIND
)
3499 conv
= TREE_OPERAND (conv
, 0);
3500 arg2
= convert_like (conv
, arg2
);
3504 conv
= TREE_VEC_ELT (cand
->convs
, 2);
3505 if (TREE_CODE (conv
) == REF_BIND
)
3506 conv
= TREE_OPERAND (conv
, 0);
3507 arg3
= convert_like (conv
, arg3
);
3514 return build_modify_expr (arg1
, code2
, arg2
);
3517 return build_indirect_ref (arg1
, "unary *");
3522 case TRUNC_DIV_EXPR
:
3533 case TRUNC_MOD_EXPR
:
3537 case TRUTH_ANDIF_EXPR
:
3538 case TRUTH_ORIF_EXPR
:
3539 return cp_build_binary_op (code
, arg1
, arg2
);
3544 case TRUTH_NOT_EXPR
:
3545 case PREINCREMENT_EXPR
:
3546 case POSTINCREMENT_EXPR
:
3547 case PREDECREMENT_EXPR
:
3548 case POSTDECREMENT_EXPR
:
3551 return build_unary_op (code
, arg1
, candidates
!= 0);
3554 return build_array_ref (arg1
, arg2
);
3557 return build_conditional_expr (arg1
, arg2
, arg3
);
3560 return build_m_component_ref
3561 (build_indirect_ref (arg1
, NULL
), arg2
);
3563 /* The caller will deal with these. */
3575 /* Build a call to operator delete. This has to be handled very specially,
3576 because the restrictions on what signatures match are different from all
3577 other call instances. For a normal delete, only a delete taking (void *)
3578 or (void *, size_t) is accepted. For a placement delete, only an exact
3579 match with the placement new is accepted.
3581 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
3582 ADDR is the pointer to be deleted.
3583 SIZE is the size of the memory block to be deleted.
3584 FLAGS are the usual overloading flags.
3585 PLACEMENT is the corresponding placement new call, or NULL_TREE. */
3588 build_op_delete_call (code
, addr
, size
, flags
, placement
)
3589 enum tree_code code
;
3590 tree addr
, size
, placement
;
3593 tree fn
= NULL_TREE
;
3594 tree fns
, fnname
, fntype
, argtypes
, args
, type
;
3597 if (addr
== error_mark_node
)
3598 return error_mark_node
;
3600 type
= TREE_TYPE (TREE_TYPE (addr
));
3601 while (TREE_CODE (type
) == ARRAY_TYPE
)
3602 type
= TREE_TYPE (type
);
3604 fnname
= ansi_opname (code
);
3606 if (IS_AGGR_TYPE (type
) && ! (flags
& LOOKUP_GLOBAL
))
3609 If the result of the lookup is ambiguous or inaccessible, or if
3610 the lookup selects a placement deallocation function, the
3611 program is ill-formed.
3613 Therefore, we ask lookup_fnfields to complain ambout ambiguity. */
3615 fns
= lookup_fnfields (TYPE_BINFO (type
), fnname
, 1);
3616 if (fns
== error_mark_node
)
3617 return error_mark_node
;
3622 if (fns
== NULL_TREE
)
3623 fns
= lookup_name_nonclass (fnname
);
3630 /* Find the allocation function that is being called. */
3631 call_expr
= placement
;
3632 /* Sometimes we have a COMPOUND_EXPR, rather than a simple
3634 while (TREE_CODE (call_expr
) == COMPOUND_EXPR
)
3635 call_expr
= TREE_OPERAND (call_expr
, 1);
3636 /* Extract the function. */
3637 alloc_fn
= get_callee_fndecl (call_expr
);
3638 my_friendly_assert (alloc_fn
!= NULL_TREE
, 20020327);
3639 /* Then the second parm type. */
3640 argtypes
= TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn
)));
3641 /* Also the second argument. */
3642 args
= TREE_CHAIN (TREE_OPERAND (call_expr
, 1));
3646 /* First try it without the size argument. */
3647 argtypes
= void_list_node
;
3651 /* Strip const and volatile from addr. */
3652 addr
= cp_convert (ptr_type_node
, addr
);
3654 /* We make two tries at finding a matching `operator delete'. On
3655 the first pass, we look for an one-operator (or placement)
3656 operator delete. If we're not doing placement delete, then on
3657 the second pass we look for a two-argument delete. */
3658 for (pass
= 0; pass
< (placement
? 1 : 2); ++pass
)
3661 argtypes
= tree_cons (NULL_TREE
, ptr_type_node
, argtypes
);
3663 /* Normal delete; now try to find a match including the size
3665 argtypes
= tree_cons (NULL_TREE
, ptr_type_node
,
3666 tree_cons (NULL_TREE
, sizetype
,
3668 fntype
= build_function_type (void_type_node
, argtypes
);
3670 /* Go through the `operator delete' functions looking for one
3671 with a matching type. */
3672 for (fn
= BASELINK_P (fns
) ? TREE_VALUE (fns
) : fns
;
3678 /* Exception specifications on the `delete' operator do not
3680 t
= build_exception_variant (TREE_TYPE (OVL_CURRENT (fn
)),
3682 /* We also don't compare attributes. We're really just
3683 trying to check the types of the first two parameters. */
3684 if (comptypes (t
, fntype
, COMPARE_NO_ATTRIBUTES
))
3688 /* If we found a match, we're done. */
3693 /* If we have a matching function, call it. */
3696 /* Make sure we have the actual function, and not an
3698 fn
= OVL_CURRENT (fn
);
3700 /* If the FN is a member function, make sure that it is
3702 if (DECL_CLASS_SCOPE_P (fn
))
3703 enforce_access (type
, fn
);
3706 args
= tree_cons (NULL_TREE
, addr
, args
);
3708 args
= tree_cons (NULL_TREE
, addr
,
3709 build_tree_list (NULL_TREE
, size
));
3711 return build_function_call (fn
, args
);
3714 /* If we are doing placement delete we do nothing if we don't find a
3715 matching op delete. */
3719 error ("no suitable `operator delete' for `%T'", type
);
3720 return error_mark_node
;
3723 /* If the current scope isn't allowed to access DECL along
3724 BASETYPE_PATH, give an error. The most derived class in
3725 BASETYPE_PATH is the one used to qualify DECL. */
3728 enforce_access (basetype_path
, decl
)
3734 accessible
= accessible_p (basetype_path
, decl
);
3737 if (TREE_PRIVATE (decl
))
3738 cp_error_at ("`%+#D' is private", decl
);
3739 else if (TREE_PROTECTED (decl
))
3740 cp_error_at ("`%+#D' is protected", decl
);
3742 cp_error_at ("`%+#D' is inaccessible", decl
);
3743 error ("within this context");
3750 /* Perform the conversions in CONVS on the expression EXPR.
3751 FN and ARGNUM are used for diagnostics. ARGNUM is zero based, -1
3752 indicates the `this' argument of a method. INNER is non-zero when
3753 being called to continue a conversion chain. It is negative when a
3754 reference binding will be applied, positive otherwise. */
3757 convert_like_real (convs
, expr
, fn
, argnum
, inner
)
3765 tree totype
= TREE_TYPE (convs
);
3767 if (ICS_BAD_FLAG (convs
)
3768 && TREE_CODE (convs
) != USER_CONV
3769 && TREE_CODE (convs
) != AMBIG_CONV
3770 && TREE_CODE (convs
) != REF_BIND
)
3773 for (; t
; t
= TREE_OPERAND (t
, 0))
3775 if (TREE_CODE (t
) == USER_CONV
|| !ICS_BAD_FLAG (t
))
3777 expr
= convert_like_real (t
, expr
, fn
, argnum
, 1);
3780 else if (TREE_CODE (t
) == AMBIG_CONV
)
3781 return convert_like_real (t
, expr
, fn
, argnum
, 1);
3782 else if (TREE_CODE (t
) == IDENTITY_CONV
)
3785 pedwarn ("invalid conversion from `%T' to `%T'", TREE_TYPE (expr
), totype
);
3787 pedwarn (" initializing argument %P of `%D'", argnum
, fn
);
3788 return cp_convert (totype
, expr
);
3792 expr
= dubious_conversion_warnings
3793 (totype
, expr
, "argument", fn
, argnum
);
3794 switch (TREE_CODE (convs
))
3798 struct z_candidate
*cand
3799 = WRAPPER_PTR (TREE_OPERAND (convs
, 1));
3800 tree convfn
= cand
->fn
;
3803 if (DECL_CONSTRUCTOR_P (convfn
))
3805 tree t
= build_int_2 (0, 0);
3806 TREE_TYPE (t
) = build_pointer_type (DECL_CONTEXT (convfn
));
3808 args
= build_tree_list (NULL_TREE
, expr
);
3809 if (DECL_HAS_IN_CHARGE_PARM_P (convfn
)
3810 || DECL_HAS_VTT_PARM_P (convfn
))
3811 /* We should never try to call the abstract or base constructor
3814 args
= tree_cons (NULL_TREE
, t
, args
);
3817 args
= build_this (expr
);
3818 expr
= build_over_call (cand
, args
, LOOKUP_NORMAL
);
3820 /* If this is a constructor or a function returning an aggr type,
3821 we need to build up a TARGET_EXPR. */
3822 if (DECL_CONSTRUCTOR_P (convfn
))
3823 expr
= build_cplus_new (totype
, expr
);
3825 /* The result of the call is then used to direct-initialize the object
3826 that is the destination of the copy-initialization. [dcl.init]
3828 Note that this step is not reflected in the conversion sequence;
3829 it affects the semantics when we actually perform the
3830 conversion, but is not considered during overload resolution.
3832 If the target is a class, that means call a ctor. */
3833 if (IS_AGGR_TYPE (totype
)
3834 && (inner
>= 0 || !lvalue_p (expr
)))
3836 savew
= warningcount
, savee
= errorcount
;
3837 expr
= build_new_method_call
3838 (NULL_TREE
, complete_ctor_identifier
,
3839 build_tree_list (NULL_TREE
, expr
), TYPE_BINFO (totype
),
3840 /* Core issue 84, now a DR, says that we don't allow UDCs
3841 for these args (which deliberately breaks copy-init of an
3842 auto_ptr<Base> from an auto_ptr<Derived>). */
3843 LOOKUP_NORMAL
|LOOKUP_ONLYCONVERTING
|LOOKUP_NO_CONVERSION
);
3845 /* Tell the user where this failing constructor call came from. */
3848 if (warningcount
> savew
)
3850 (" initializing argument %P of `%D' from result of `%D'",
3851 argnum
, fn
, convfn
);
3852 else if (errorcount
> savee
)
3854 (" initializing argument %P of `%D' from result of `%D'",
3855 argnum
, fn
, convfn
);
3859 if (warningcount
> savew
)
3860 warning (" initializing temporary from result of `%D'",
3862 else if (errorcount
> savee
)
3863 error (" initializing temporary from result of `%D'",
3866 expr
= build_cplus_new (totype
, expr
);
3871 if (type_unknown_p (expr
))
3872 expr
= instantiate_type (totype
, expr
, tf_error
| tf_warning
);
3875 /* Call build_user_type_conversion again for the error. */
3876 return build_user_type_conversion
3877 (totype
, TREE_OPERAND (convs
, 0), LOOKUP_NORMAL
);
3883 expr
= convert_like_real (TREE_OPERAND (convs
, 0), expr
, fn
, argnum
,
3884 TREE_CODE (convs
) == REF_BIND
? -1 : 1);
3885 if (expr
== error_mark_node
)
3886 return error_mark_node
;
3888 /* Convert a non-array constant variable to its underlying value, unless we
3889 are about to bind it to a reference, in which case we need to
3890 leave it as an lvalue. */
3891 if (TREE_CODE (convs
) != REF_BIND
3892 && TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
3893 expr
= decl_constant_value (expr
);
3895 switch (TREE_CODE (convs
))
3898 if (! IS_AGGR_TYPE (totype
))
3900 /* else fall through */
3902 if (TREE_CODE (convs
) == BASE_CONV
&& !NEED_TEMPORARY_P (convs
))
3904 /* We are going to bind a reference directly to a base-class
3905 subobject of EXPR. */
3906 tree base_ptr
= build_pointer_type (totype
);
3908 /* Build an expression for `*((base*) &expr)'. */
3909 expr
= build_unary_op (ADDR_EXPR
, expr
, 0);
3910 expr
= perform_implicit_conversion (base_ptr
, expr
);
3911 expr
= build_indirect_ref (expr
, "implicit conversion");
3915 /* Copy-initialization where the cv-unqualified version of the source
3916 type is the same class as, or a derived class of, the class of the
3917 destination [is treated as direct-initialization]. [dcl.init] */
3918 savew
= warningcount
, savee
= errorcount
;
3919 expr
= build_new_method_call (NULL_TREE
, complete_ctor_identifier
,
3920 build_tree_list (NULL_TREE
, expr
),
3921 TYPE_BINFO (totype
),
3922 LOOKUP_NORMAL
|LOOKUP_ONLYCONVERTING
);
3925 if (warningcount
> savew
)
3926 warning (" initializing argument %P of `%D'", argnum
, fn
);
3927 else if (errorcount
> savee
)
3928 error (" initializing argument %P of `%D'", argnum
, fn
);
3930 return build_cplus_new (totype
, expr
);
3934 tree ref_type
= totype
;
3936 /* If necessary, create a temporary. */
3937 if (NEED_TEMPORARY_P (convs
) || !lvalue_p (expr
))
3939 tree type
= TREE_TYPE (TREE_OPERAND (convs
, 0));
3940 expr
= build_target_expr_with_type (expr
, type
);
3943 /* Take the address of the thing to which we will bind the
3945 expr
= build_unary_op (ADDR_EXPR
, expr
, 1);
3946 if (expr
== error_mark_node
)
3947 return error_mark_node
;
3949 /* Convert it to a pointer to the type referred to by the
3950 reference. This will adjust the pointer if a derived to
3951 base conversion is being performed. */
3952 expr
= cp_convert (build_pointer_type (TREE_TYPE (ref_type
)),
3954 /* Convert the pointer to the desired reference type. */
3955 expr
= build1 (NOP_EXPR
, ref_type
, expr
);
3961 return decay_conversion (expr
);
3964 /* Warn about deprecated conversion if appropriate. */
3965 string_conv_p (totype
, expr
, 1);
3971 return ocp_convert (totype
, expr
, CONV_IMPLICIT
,
3972 LOOKUP_NORMAL
|LOOKUP_NO_CONVERSION
);
3975 /* ARG is being passed to a varargs function. Perform any conversions
3976 required. Array/function to pointer decay must have already happened.
3977 Return the converted value. */
3980 convert_arg_to_ellipsis (arg
)
3983 if (TREE_CODE (TREE_TYPE (arg
)) == REAL_TYPE
3984 && (TYPE_PRECISION (TREE_TYPE (arg
))
3985 < TYPE_PRECISION (double_type_node
)))
3986 /* Convert `float' to `double'. */
3987 arg
= cp_convert (double_type_node
, arg
);
3989 /* Convert `short' and `char' to full-size `int'. */
3990 arg
= default_conversion (arg
);
3992 arg
= require_complete_type (arg
);
3994 if (arg
!= error_mark_node
&& ! pod_type_p (TREE_TYPE (arg
)))
3996 /* Undefined behaviour [expr.call] 5.2.2/7. */
3997 warning ("cannot pass objects of non-POD type `%#T' through `...'",
4004 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4007 build_x_va_arg (expr
, type
)
4011 if (processing_template_decl
)
4012 return build_min (VA_ARG_EXPR
, type
, expr
);
4014 type
= complete_type_or_else (type
, NULL_TREE
);
4016 if (expr
== error_mark_node
|| !type
)
4017 return error_mark_node
;
4019 if (! pod_type_p (type
))
4021 /* Undefined behaviour [expr.call] 5.2.2/7. */
4022 warning ("cannot receive objects of non-POD type `%#T' through `...'",
4026 return build_va_arg (expr
, type
);
4029 /* TYPE has been given to va_arg. Apply the default conversions which
4030 would have happened when passed via ellipsis. Return the promoted
4031 type, or the passed type if there is no change. */
4034 cxx_type_promotes_to (type
)
4039 if (TREE_CODE (type
) == ARRAY_TYPE
)
4040 return build_pointer_type (TREE_TYPE (type
));
4042 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4043 return build_pointer_type (type
);
4045 promote
= type_promotes_to (type
);
4046 if (same_type_p (type
, promote
))
4052 /* ARG is a default argument expression being passed to a parameter of
4053 the indicated TYPE, which is a parameter to FN. Do any required
4054 conversions. Return the converted value. */
4057 convert_default_arg (type
, arg
, fn
, parmnum
)
4063 if (TREE_CODE (arg
) == DEFAULT_ARG
)
4065 /* When processing the default args for a class, we can find that
4066 there is an ordering constraint, and we call a function who's
4067 default args have not yet been converted. For instance,
4070 void Foo (A const & = A ());
4072 We must process A::A before A::Foo's default arg can be converted.
4073 Remember the dependent function, so do_pending_defargs can retry,
4075 unprocessed_defarg_fn (fn
);
4077 /* Don't return error_mark node, as we won't be able to distinguish
4078 genuine errors from this case, and that would lead to repeated
4079 diagnostics. Just make something of the right type. */
4080 return build1 (NOP_EXPR
, type
, integer_zero_node
);
4083 if (fn
&& DECL_TEMPLATE_INFO (fn
))
4084 arg
= tsubst_default_argument (fn
, type
, arg
);
4086 arg
= break_out_target_exprs (arg
);
4088 if (TREE_CODE (arg
) == CONSTRUCTOR
)
4090 arg
= digest_init (type
, arg
, 0);
4091 arg
= convert_for_initialization (0, type
, arg
, LOOKUP_NORMAL
,
4092 "default argument", fn
, parmnum
);
4096 /* This could get clobbered by the following call. */
4097 if (TREE_HAS_CONSTRUCTOR (arg
))
4098 arg
= copy_node (arg
);
4100 arg
= convert_for_initialization (0, type
, arg
, LOOKUP_NORMAL
,
4101 "default argument", fn
, parmnum
);
4102 if (PROMOTE_PROTOTYPES
4103 && INTEGRAL_TYPE_P (type
)
4104 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
4105 arg
= default_conversion (arg
);
4111 /* Subroutine of the various build_*_call functions. Overload resolution
4112 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4113 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4114 bitmask of various LOOKUP_* flags which apply to the call itself. */
4117 build_over_call (cand
, args
, flags
)
4118 struct z_candidate
*cand
;
4123 tree convs
= cand
->convs
;
4124 tree converted_args
= NULL_TREE
;
4125 tree parm
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
4126 tree conv
, arg
, val
;
4130 /* Give any warnings we noticed during overload resolution. */
4132 for (val
= cand
->warnings
; val
; val
= TREE_CHAIN (val
))
4133 joust (cand
, WRAPPER_PTR (TREE_VALUE (val
)), 1);
4135 if (DECL_FUNCTION_MEMBER_P (fn
))
4136 enforce_access (cand
->basetype_path
, fn
);
4138 if (args
&& TREE_CODE (args
) != TREE_LIST
)
4139 args
= build_tree_list (NULL_TREE
, args
);
4142 /* The implicit parameters to a constructor are not considered by overload
4143 resolution, and must be of the proper type. */
4144 if (DECL_CONSTRUCTOR_P (fn
))
4146 converted_args
= tree_cons (NULL_TREE
, TREE_VALUE (arg
), converted_args
);
4147 arg
= TREE_CHAIN (arg
);
4148 parm
= TREE_CHAIN (parm
);
4149 if (DECL_HAS_IN_CHARGE_PARM_P (fn
))
4150 /* We should never try to call the abstract constructor. */
4152 if (DECL_HAS_VTT_PARM_P (fn
))
4154 converted_args
= tree_cons
4155 (NULL_TREE
, TREE_VALUE (arg
), converted_args
);
4156 arg
= TREE_CHAIN (arg
);
4157 parm
= TREE_CHAIN (parm
);
4160 /* Bypass access control for 'this' parameter. */
4161 else if (TREE_CODE (TREE_TYPE (fn
)) == METHOD_TYPE
)
4163 tree parmtype
= TREE_VALUE (parm
);
4164 tree argtype
= TREE_TYPE (TREE_VALUE (arg
));
4166 if (ICS_BAD_FLAG (TREE_VEC_ELT (convs
, i
)))
4167 pedwarn ("passing `%T' as `this' argument of `%#D' discards qualifiers",
4168 TREE_TYPE (argtype
), fn
);
4170 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4171 X is called for an object that is not of type X, or of a type
4172 derived from X, the behavior is undefined.
4174 So we can assume that anything passed as 'this' is non-null, and
4175 optimize accordingly. */
4176 my_friendly_assert (TREE_CODE (parmtype
) == POINTER_TYPE
, 19990811);
4177 t
= lookup_base (TREE_TYPE (TREE_TYPE (TREE_VALUE (arg
))),
4178 TREE_TYPE (parmtype
), ba_ignore
, NULL
);
4179 t
= build_base_path (PLUS_EXPR
, TREE_VALUE (arg
), t
, 1);
4180 converted_args
= tree_cons (NULL_TREE
, t
, converted_args
);
4181 parm
= TREE_CHAIN (parm
);
4182 arg
= TREE_CHAIN (arg
);
4188 parm
= TREE_CHAIN (parm
), arg
= TREE_CHAIN (arg
), ++i
)
4190 tree type
= TREE_VALUE (parm
);
4192 conv
= TREE_VEC_ELT (convs
, i
);
4193 val
= convert_like_with_context
4194 (conv
, TREE_VALUE (arg
), fn
, i
- is_method
);
4196 if (PROMOTE_PROTOTYPES
4197 && INTEGRAL_TYPE_P (type
)
4198 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
4199 val
= default_conversion (val
);
4200 converted_args
= tree_cons (NULL_TREE
, val
, converted_args
);
4203 /* Default arguments */
4204 for (; parm
&& parm
!= void_list_node
; parm
= TREE_CHAIN (parm
), i
++)
4206 = tree_cons (NULL_TREE
,
4207 convert_default_arg (TREE_VALUE (parm
),
4208 TREE_PURPOSE (parm
),
4213 for (; arg
; arg
= TREE_CHAIN (arg
))
4215 = tree_cons (NULL_TREE
,
4216 convert_arg_to_ellipsis (TREE_VALUE (arg
)),
4219 converted_args
= nreverse (converted_args
);
4222 check_function_format (NULL
, TYPE_ATTRIBUTES (TREE_TYPE (fn
)),
4225 /* Avoid actually calling copy constructors and copy assignment operators,
4228 if (! flag_elide_constructors
)
4229 /* Do things the hard way. */;
4230 else if (TREE_VEC_LENGTH (convs
) == 1
4231 && DECL_COPY_CONSTRUCTOR_P (fn
))
4234 arg
= skip_artificial_parms_for (fn
, converted_args
);
4235 arg
= TREE_VALUE (arg
);
4237 /* Pull out the real argument, disregarding const-correctness. */
4239 while (TREE_CODE (targ
) == NOP_EXPR
4240 || TREE_CODE (targ
) == NON_LVALUE_EXPR
4241 || TREE_CODE (targ
) == CONVERT_EXPR
)
4242 targ
= TREE_OPERAND (targ
, 0);
4243 if (TREE_CODE (targ
) == ADDR_EXPR
)
4245 targ
= TREE_OPERAND (targ
, 0);
4246 if (!same_type_ignoring_top_level_qualifiers_p
4247 (TREE_TYPE (TREE_TYPE (arg
)), TREE_TYPE (targ
)))
4256 arg
= build_indirect_ref (arg
, 0);
4258 /* [class.copy]: the copy constructor is implicitly defined even if
4259 the implementation elided its use. */
4260 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn
)))
4263 /* If we're creating a temp and we already have one, don't create a
4264 new one. If we're not creating a temp but we get one, use
4265 INIT_EXPR to collapse the temp into our target. Otherwise, if the
4266 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
4267 temp or an INIT_EXPR otherwise. */
4268 if (integer_zerop (TREE_VALUE (args
)))
4270 if (! real_lvalue_p (arg
))
4272 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn
)))
4273 return build_target_expr_with_type (arg
, DECL_CONTEXT (fn
));
4275 else if ((!real_lvalue_p (arg
)
4276 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn
)))
4277 /* Empty classes have padding which can be hidden
4278 inside an (empty) base of the class. This must not
4279 be touched as it might overlay things. When the
4280 gcc core learns about empty classes, we can treat it
4281 like other classes. */
4282 && !(is_empty_class (DECL_CONTEXT (fn
))
4283 && TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn
))))
4286 tree to
= stabilize_reference
4287 (build_indirect_ref (TREE_VALUE (args
), 0));
4289 val
= build (INIT_EXPR
, DECL_CONTEXT (fn
), to
, arg
);
4290 address
= build_unary_op (ADDR_EXPR
, val
, 0);
4291 /* Avoid a warning about this expression, if the address is
4293 TREE_USED (address
) = 1;
4297 else if (DECL_OVERLOADED_OPERATOR_P (fn
) == NOP_EXPR
4299 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn
)))
4301 tree to
= stabilize_reference
4302 (build_indirect_ref (TREE_VALUE (converted_args
), 0));
4304 arg
= build_indirect_ref (TREE_VALUE (TREE_CHAIN (converted_args
)), 0);
4305 if (is_empty_class (TREE_TYPE (to
)))
4307 TREE_USED (arg
) = 1;
4309 val
= build (COMPOUND_EXPR
, DECL_CONTEXT (fn
), arg
, to
);
4310 /* Even though the assignment may not actually result in any
4311 code being generated, we do not want to warn about the
4312 assignment having no effect. That would be confusing to
4313 users who may be performing the assignment as part of a
4314 generic algorithm, for example.
4316 Ideally, the notions of having side-effects and of being
4317 useless would be orthogonal. */
4318 TREE_SIDE_EFFECTS (val
) = 1;
4319 TREE_NO_UNUSED_WARNING (val
) = 1;
4322 val
= build (MODIFY_EXPR
, TREE_TYPE (to
), to
, arg
);
4328 if (DECL_VINDEX (fn
) && (flags
& LOOKUP_NONVIRTUAL
) == 0)
4330 tree t
, *p
= &TREE_VALUE (converted_args
);
4331 tree binfo
= lookup_base (TREE_TYPE (TREE_TYPE (*p
)),
4332 DECL_VIRTUAL_CONTEXT (fn
),
4334 my_friendly_assert (binfo
&& binfo
!= error_mark_node
, 20010730);
4336 *p
= build_base_path (PLUS_EXPR
, *p
, binfo
, 1);
4337 if (TREE_SIDE_EFFECTS (*p
))
4338 *p
= save_expr (*p
);
4339 t
= build_pointer_type (TREE_TYPE (fn
));
4340 if (DECL_CONTEXT (fn
) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn
)))
4341 fn
= build_java_interface_fn_ref (fn
, *p
);
4343 fn
= build_vfn_ref (build_indirect_ref (*p
, 0), DECL_VINDEX (fn
));
4346 else if (DECL_INLINE (fn
))
4347 fn
= inline_conversion (fn
);
4349 fn
= build_addr_func (fn
);
4351 /* Recognize certain built-in functions so we can make tree-codes
4352 other than CALL_EXPR. We do this when it enables fold-const.c
4353 to do something useful. */
4355 if (TREE_CODE (fn
) == ADDR_EXPR
4356 && TREE_CODE (TREE_OPERAND (fn
, 0)) == FUNCTION_DECL
4357 && DECL_BUILT_IN (TREE_OPERAND (fn
, 0)))
4360 exp
= expand_tree_builtin (TREE_OPERAND (fn
, 0), args
, converted_args
);
4365 /* Some built-in function calls will be evaluated at
4366 compile-time in fold (). */
4367 fn
= fold (build_call (fn
, converted_args
));
4368 if (VOID_TYPE_P (TREE_TYPE (fn
)))
4370 fn
= require_complete_type (fn
);
4371 if (fn
== error_mark_node
)
4372 return error_mark_node
;
4373 if (IS_AGGR_TYPE (TREE_TYPE (fn
)))
4374 fn
= build_cplus_new (TREE_TYPE (fn
), fn
);
4375 return convert_from_reference (fn
);
4378 static tree java_iface_lookup_fn
;
4380 /* Make an expression which yields the address of the Java interface
4381 method FN. This is achieved by generating a call to libjava's
4382 _Jv_LookupInterfaceMethodIdx(). */
4385 build_java_interface_fn_ref (fn
, instance
)
4388 tree lookup_args
, lookup_fn
, method
, idx
;
4389 tree klass_ref
, iface
, iface_ref
;
4392 if (!java_iface_lookup_fn
)
4394 tree endlink
= build_void_list_node ();
4395 tree t
= tree_cons (NULL_TREE
, ptr_type_node
,
4396 tree_cons (NULL_TREE
, ptr_type_node
,
4397 tree_cons (NULL_TREE
, java_int_type_node
,
4399 java_iface_lookup_fn
4400 = builtin_function ("_Jv_LookupInterfaceMethodIdx",
4401 build_function_type (ptr_type_node
, t
),
4402 0, NOT_BUILT_IN
, NULL
);
4403 ggc_add_tree_root (&java_iface_lookup_fn
, 1);
4406 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
4407 This is the first entry in the vtable. */
4408 klass_ref
= build_vtbl_ref (build_indirect_ref (instance
, 0),
4411 /* Get the java.lang.Class pointer for the interface being called. */
4412 iface
= DECL_CONTEXT (fn
);
4413 iface_ref
= lookup_field (iface
, get_identifier ("class$"), 0, 0);
4414 if (!iface_ref
|| TREE_CODE (iface_ref
) != VAR_DECL
4415 || DECL_CONTEXT (iface_ref
) != iface
)
4417 error ("could not find class$ field in java interface type `%T'",
4419 return error_mark_node
;
4421 iface_ref
= build1 (ADDR_EXPR
, build_pointer_type (iface
), iface_ref
);
4423 /* Determine the itable index of FN. */
4425 for (method
= TYPE_METHODS (iface
); method
; method
= TREE_CHAIN (method
))
4427 if (!DECL_VIRTUAL_P (method
))
4433 idx
= build_int_2 (i
, 0);
4435 lookup_args
= tree_cons (NULL_TREE
, klass_ref
,
4436 tree_cons (NULL_TREE
, iface_ref
,
4437 build_tree_list (NULL_TREE
, idx
)));
4438 lookup_fn
= build1 (ADDR_EXPR
,
4439 build_pointer_type (TREE_TYPE (java_iface_lookup_fn
)),
4440 java_iface_lookup_fn
);
4441 return build (CALL_EXPR
, ptr_type_node
, lookup_fn
, lookup_args
, NULL_TREE
);
4444 /* Returns the value to use for the in-charge parameter when making a
4445 call to a function with the indicated NAME. */
4448 in_charge_arg_for_name (name
)
4451 if (name
== base_ctor_identifier
4452 || name
== base_dtor_identifier
)
4453 return integer_zero_node
;
4454 else if (name
== complete_ctor_identifier
)
4455 return integer_one_node
;
4456 else if (name
== complete_dtor_identifier
)
4457 return integer_two_node
;
4458 else if (name
== deleting_dtor_identifier
)
4459 return integer_three_node
;
4461 /* This function should only be called with one of the names listed
4468 build_new_method_call (instance
, name
, args
, basetype_path
, flags
)
4469 tree instance
, name
, args
, basetype_path
;
4472 struct z_candidate
*candidates
= 0, *cand
;
4473 tree explicit_targs
= NULL_TREE
;
4474 tree basetype
, mem_args
= NULL_TREE
, fns
, instance_ptr
;
4477 tree templates
= NULL_TREE
;
4479 int template_only
= 0;
4481 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
4483 explicit_targs
= TREE_OPERAND (name
, 1);
4484 name
= TREE_OPERAND (name
, 0);
4486 name
= DECL_NAME (name
);
4489 if (TREE_CODE (name
) == COMPONENT_REF
)
4490 name
= TREE_OPERAND (name
, 1);
4491 if (TREE_CODE (name
) == OVERLOAD
)
4492 name
= DECL_NAME (OVL_CURRENT (name
));
4499 args
= resolve_args (args
);
4501 if (args
== error_mark_node
)
4502 return error_mark_node
;
4504 if (instance
== NULL_TREE
)
4505 basetype
= BINFO_TYPE (basetype_path
);
4508 if (TREE_CODE (instance
) == OFFSET_REF
)
4509 instance
= resolve_offset_ref (instance
);
4510 if (TREE_CODE (TREE_TYPE (instance
)) == REFERENCE_TYPE
)
4511 instance
= convert_from_reference (instance
);
4512 basetype
= TYPE_MAIN_VARIANT (TREE_TYPE (instance
));
4514 /* XXX this should be handled before we get here. */
4515 if (! IS_AGGR_TYPE (basetype
))
4517 if ((flags
& LOOKUP_COMPLAIN
) && basetype
!= error_mark_node
)
4518 error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
4519 name
, instance
, basetype
);
4521 return error_mark_node
;
4525 if (basetype_path
== NULL_TREE
)
4526 basetype_path
= TYPE_BINFO (basetype
);
4530 instance_ptr
= build_this (instance
);
4532 if (! template_only
)
4534 /* XXX this should be handled before we get here. */
4535 fns
= build_field_call (basetype_path
, instance_ptr
, name
, args
);
4542 instance_ptr
= build_int_2 (0, 0);
4543 TREE_TYPE (instance_ptr
) = build_pointer_type (basetype
);
4546 /* Callers should explicitly indicate whether they want to construct
4547 the complete object or just the part without virtual bases. */
4548 my_friendly_assert (name
!= ctor_identifier
, 20000408);
4549 /* Similarly for destructors. */
4550 my_friendly_assert (name
!= dtor_identifier
, 20000408);
4552 if (IDENTIFIER_CTOR_OR_DTOR_P (name
))
4556 constructor_p
= (name
== complete_ctor_identifier
4557 || name
== base_ctor_identifier
);
4558 pretty_name
= (constructor_p
4559 ? constructor_name (basetype
) : dtor_identifier
);
4561 /* If we're a call to a constructor or destructor for a
4562 subobject that uses virtual base classes, then we need to
4563 pass down a pointer to a VTT for the subobject. */
4564 if ((name
== base_ctor_identifier
4565 || name
== base_dtor_identifier
)
4566 && TYPE_USES_VIRTUAL_BASECLASSES (basetype
))
4570 tree basebinfo
= basetype_path
;
4572 /* If the current function is a complete object constructor
4573 or destructor, then we fetch the VTT directly.
4574 Otherwise, we look it up using the VTT we were given. */
4575 vtt
= IDENTIFIER_GLOBAL_VALUE (get_vtt_name (current_class_type
));
4576 vtt
= decay_conversion (vtt
);
4577 vtt
= build (COND_EXPR
, TREE_TYPE (vtt
),
4578 build (EQ_EXPR
, boolean_type_node
,
4579 current_in_charge_parm
, integer_zero_node
),
4582 if (TREE_VIA_VIRTUAL (basebinfo
))
4583 basebinfo
= binfo_for_vbase (basetype
, current_class_type
);
4584 my_friendly_assert (BINFO_SUBVTT_INDEX (basebinfo
), 20010110);
4585 sub_vtt
= build (PLUS_EXPR
, TREE_TYPE (vtt
), vtt
,
4586 BINFO_SUBVTT_INDEX (basebinfo
));
4588 args
= tree_cons (NULL_TREE
, sub_vtt
, args
);
4594 fns
= lookup_fnfields (basetype_path
, name
, 1);
4596 if (fns
== error_mark_node
)
4597 return error_mark_node
;
4600 tree base
= BINFO_TYPE (TREE_PURPOSE (fns
));
4601 tree fn
= TREE_VALUE (fns
);
4602 mem_args
= tree_cons (NULL_TREE
, instance_ptr
, args
);
4603 for (; fn
; fn
= OVL_NEXT (fn
))
4605 tree t
= OVL_CURRENT (fn
);
4608 /* We can end up here for copy-init of same or base class. */
4609 if ((flags
& LOOKUP_ONLYCONVERTING
)
4610 && DECL_NONCONVERTING_P (t
))
4613 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t
))
4614 this_arglist
= mem_args
;
4616 this_arglist
= args
;
4618 if (TREE_CODE (t
) == TEMPLATE_DECL
)
4620 /* A member template. */
4621 templates
= tree_cons (NULL_TREE
, t
, templates
);
4623 add_template_candidate (candidates
, t
, base
, explicit_targs
,
4625 TREE_TYPE (name
), flags
, DEDUCE_CALL
);
4627 else if (! template_only
)
4628 candidates
= add_function_candidate (candidates
, t
, base
,
4629 this_arglist
, flags
);
4632 candidates
->basetype_path
= basetype_path
;
4636 if (! any_viable (candidates
))
4638 /* XXX will LOOKUP_SPECULATIVELY be needed when this is done? */
4639 if (flags
& LOOKUP_SPECULATIVELY
)
4641 if (!COMPLETE_TYPE_P (basetype
))
4642 cxx_incomplete_type_error (instance_ptr
, basetype
);
4644 error ("no matching function for call to `%T::%D(%A)%#V'",
4645 basetype
, pretty_name
, user_args
,
4646 TREE_TYPE (TREE_TYPE (instance_ptr
)));
4647 print_z_candidates (candidates
);
4648 return error_mark_node
;
4650 candidates
= splice_viable (candidates
);
4651 cand
= tourney (candidates
);
4655 error ("call of overloaded `%D(%A)' is ambiguous", pretty_name
,
4657 print_z_candidates (candidates
);
4658 return error_mark_node
;
4661 if (DECL_PURE_VIRTUAL_P (cand
->fn
)
4662 && instance
== current_class_ref
4663 && (DECL_CONSTRUCTOR_P (current_function_decl
)
4664 || DECL_DESTRUCTOR_P (current_function_decl
))
4665 && ! (flags
& LOOKUP_NONVIRTUAL
)
4666 && value_member (cand
->fn
, CLASSTYPE_PURE_VIRTUALS (basetype
)))
4667 error ((DECL_CONSTRUCTOR_P (current_function_decl
) ?
4668 "abstract virtual `%#D' called from constructor"
4669 : "abstract virtual `%#D' called from destructor"),
4671 if (TREE_CODE (TREE_TYPE (cand
->fn
)) == METHOD_TYPE
4672 && is_dummy_object (instance_ptr
))
4674 error ("cannot call member function `%D' without object", cand
->fn
);
4675 return error_mark_node
;
4678 if (DECL_VINDEX (cand
->fn
) && ! (flags
& LOOKUP_NONVIRTUAL
)
4679 && resolves_to_fixed_type_p (instance
, 0))
4680 flags
|= LOOKUP_NONVIRTUAL
;
4682 if (TREE_CODE (TREE_TYPE (cand
->fn
)) == METHOD_TYPE
)
4683 call
= build_over_call (cand
, mem_args
, flags
);
4686 call
= build_over_call (cand
, args
, flags
);
4687 /* Do evaluate the object parameter in a call to a static member
4689 if (TREE_SIDE_EFFECTS (instance
))
4690 call
= build (COMPOUND_EXPR
, TREE_TYPE (call
), instance
, call
);
4696 /* Returns non-zero iff standard conversion sequence ICS1 is a proper
4697 subsequence of ICS2. */
4700 is_subseq (ics1
, ics2
)
4703 /* We can assume that a conversion of the same code
4704 between the same types indicates a subsequence since we only get
4705 here if the types we are converting from are the same. */
4707 while (TREE_CODE (ics1
) == RVALUE_CONV
4708 || TREE_CODE (ics1
) == LVALUE_CONV
)
4709 ics1
= TREE_OPERAND (ics1
, 0);
4713 while (TREE_CODE (ics2
) == RVALUE_CONV
4714 || TREE_CODE (ics2
) == LVALUE_CONV
)
4715 ics2
= TREE_OPERAND (ics2
, 0);
4717 if (TREE_CODE (ics2
) == USER_CONV
4718 || TREE_CODE (ics2
) == AMBIG_CONV
4719 || TREE_CODE (ics2
) == IDENTITY_CONV
)
4720 /* At this point, ICS1 cannot be a proper subsequence of
4721 ICS2. We can get a USER_CONV when we are comparing the
4722 second standard conversion sequence of two user conversion
4726 ics2
= TREE_OPERAND (ics2
, 0);
4728 if (TREE_CODE (ics2
) == TREE_CODE (ics1
)
4729 && same_type_p (TREE_TYPE (ics2
), TREE_TYPE (ics1
))
4730 && same_type_p (TREE_TYPE (TREE_OPERAND (ics2
, 0)),
4731 TREE_TYPE (TREE_OPERAND (ics1
, 0))))
4736 /* Returns non-zero iff DERIVED is derived from BASE. The inputs may
4737 be any _TYPE nodes. */
4740 is_properly_derived_from (derived
, base
)
4744 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived
))
4745 || !IS_AGGR_TYPE_CODE (TREE_CODE (base
)))
4748 /* We only allow proper derivation here. The DERIVED_FROM_P macro
4749 considers every class derived from itself. */
4750 return (!same_type_ignoring_top_level_qualifiers_p (derived
, base
)
4751 && DERIVED_FROM_P (base
, derived
));
4754 /* We build the ICS for an implicit object parameter as a pointer
4755 conversion sequence. However, such a sequence should be compared
4756 as if it were a reference conversion sequence. If ICS is the
4757 implicit conversion sequence for an implicit object parameter,
4758 modify it accordingly. */
4761 maybe_handle_implicit_object (ics
)
4764 if (ICS_THIS_FLAG (*ics
))
4766 /* [over.match.funcs]
4768 For non-static member functions, the type of the
4769 implicit object parameter is "reference to cv X"
4770 where X is the class of which the function is a
4771 member and cv is the cv-qualification on the member
4772 function declaration. */
4774 tree reference_type
;
4776 /* The `this' parameter is a pointer to a class type. Make the
4777 implict conversion talk about a reference to that same class
4779 reference_type
= TREE_TYPE (TREE_TYPE (*ics
));
4780 reference_type
= build_reference_type (reference_type
);
4782 if (TREE_CODE (t
) == QUAL_CONV
)
4783 t
= TREE_OPERAND (t
, 0);
4784 if (TREE_CODE (t
) == PTR_CONV
)
4785 t
= TREE_OPERAND (t
, 0);
4786 t
= build1 (IDENTITY_CONV
, TREE_TYPE (TREE_TYPE (t
)), NULL_TREE
);
4787 t
= direct_reference_binding (reference_type
, t
);
4792 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
4793 and return the type to which the reference refers. Otherwise,
4794 leave *ICS unchanged and return NULL_TREE. */
4797 maybe_handle_ref_bind (ics
)
4800 if (TREE_CODE (*ics
) == REF_BIND
)
4802 tree old_ics
= *ics
;
4803 tree type
= TREE_TYPE (TREE_TYPE (old_ics
));
4804 *ics
= TREE_OPERAND (old_ics
, 0);
4805 ICS_USER_FLAG (*ics
) = ICS_USER_FLAG (old_ics
);
4806 ICS_BAD_FLAG (*ics
) = ICS_BAD_FLAG (old_ics
);
4813 /* Compare two implicit conversion sequences according to the rules set out in
4814 [over.ics.rank]. Return values:
4816 1: ics1 is better than ics2
4817 -1: ics2 is better than ics1
4818 0: ics1 and ics2 are indistinguishable */
4821 compare_ics (ics1
, ics2
)
4828 tree deref_from_type1
= NULL_TREE
;
4829 tree deref_from_type2
= NULL_TREE
;
4830 tree deref_to_type1
= NULL_TREE
;
4831 tree deref_to_type2
= NULL_TREE
;
4834 /* REF_BINDING is non-zero if the result of the conversion sequence
4835 is a reference type. In that case TARGET_TYPE is the
4836 type referred to by the reference. */
4840 /* Handle implicit object parameters. */
4841 maybe_handle_implicit_object (&ics1
);
4842 maybe_handle_implicit_object (&ics2
);
4844 /* Handle reference parameters. */
4845 target_type1
= maybe_handle_ref_bind (&ics1
);
4846 target_type2
= maybe_handle_ref_bind (&ics2
);
4850 When comparing the basic forms of implicit conversion sequences (as
4851 defined in _over.best.ics_)
4853 --a standard conversion sequence (_over.ics.scs_) is a better
4854 conversion sequence than a user-defined conversion sequence
4855 or an ellipsis conversion sequence, and
4857 --a user-defined conversion sequence (_over.ics.user_) is a
4858 better conversion sequence than an ellipsis conversion sequence
4859 (_over.ics.ellipsis_). */
4860 rank1
= ICS_RANK (ics1
);
4861 rank2
= ICS_RANK (ics2
);
4865 else if (rank1
< rank2
)
4868 if (rank1
== BAD_RANK
)
4870 /* XXX Isn't this an extension? */
4871 /* Both ICS are bad. We try to make a decision based on what
4872 would have happenned if they'd been good. */
4873 if (ICS_USER_FLAG (ics1
) > ICS_USER_FLAG (ics2
)
4874 || ICS_STD_RANK (ics1
) > ICS_STD_RANK (ics2
))
4876 else if (ICS_USER_FLAG (ics1
) < ICS_USER_FLAG (ics2
)
4877 || ICS_STD_RANK (ics1
) < ICS_STD_RANK (ics2
))
4880 /* We couldn't make up our minds; try to figure it out below. */
4883 if (ICS_ELLIPSIS_FLAG (ics1
))
4884 /* Both conversions are ellipsis conversions. */
4887 /* User-defined conversion sequence U1 is a better conversion sequence
4888 than another user-defined conversion sequence U2 if they contain the
4889 same user-defined conversion operator or constructor and if the sec-
4890 ond standard conversion sequence of U1 is better than the second
4891 standard conversion sequence of U2. */
4893 if (ICS_USER_FLAG (ics1
))
4897 for (t1
= ics1
; TREE_CODE (t1
) != USER_CONV
; t1
= TREE_OPERAND (t1
, 0))
4898 if (TREE_CODE (t1
) == AMBIG_CONV
)
4900 for (t2
= ics2
; TREE_CODE (t2
) != USER_CONV
; t2
= TREE_OPERAND (t2
, 0))
4901 if (TREE_CODE (t2
) == AMBIG_CONV
)
4904 if (USER_CONV_FN (t1
) != USER_CONV_FN (t2
))
4907 /* We can just fall through here, after setting up
4908 FROM_TYPE1 and FROM_TYPE2. */
4909 from_type1
= TREE_TYPE (t1
);
4910 from_type2
= TREE_TYPE (t2
);
4914 /* We're dealing with two standard conversion sequences.
4918 Standard conversion sequence S1 is a better conversion
4919 sequence than standard conversion sequence S2 if
4921 --S1 is a proper subsequence of S2 (comparing the conversion
4922 sequences in the canonical form defined by _over.ics.scs_,
4923 excluding any Lvalue Transformation; the identity
4924 conversion sequence is considered to be a subsequence of
4925 any non-identity conversion sequence */
4928 while (TREE_CODE (from_type1
) != IDENTITY_CONV
)
4929 from_type1
= TREE_OPERAND (from_type1
, 0);
4930 from_type1
= TREE_TYPE (from_type1
);
4933 while (TREE_CODE (from_type2
) != IDENTITY_CONV
)
4934 from_type2
= TREE_OPERAND (from_type2
, 0);
4935 from_type2
= TREE_TYPE (from_type2
);
4938 if (same_type_p (from_type1
, from_type2
))
4940 if (is_subseq (ics1
, ics2
))
4942 if (is_subseq (ics2
, ics1
))
4945 /* Otherwise, one sequence cannot be a subsequence of the other; they
4946 don't start with the same type. This can happen when comparing the
4947 second standard conversion sequence in two user-defined conversion
4954 --the rank of S1 is better than the rank of S2 (by the rules
4957 Standard conversion sequences are ordered by their ranks: an Exact
4958 Match is a better conversion than a Promotion, which is a better
4959 conversion than a Conversion.
4961 Two conversion sequences with the same rank are indistinguishable
4962 unless one of the following rules applies:
4964 --A conversion that is not a conversion of a pointer, or pointer
4965 to member, to bool is better than another conversion that is such
4968 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
4969 so that we do not have to check it explicitly. */
4970 if (ICS_STD_RANK (ics1
) < ICS_STD_RANK (ics2
))
4972 else if (ICS_STD_RANK (ics2
) < ICS_STD_RANK (ics1
))
4975 to_type1
= TREE_TYPE (ics1
);
4976 to_type2
= TREE_TYPE (ics2
);
4978 if (TYPE_PTR_P (from_type1
)
4979 && TYPE_PTR_P (from_type2
)
4980 && TYPE_PTR_P (to_type1
)
4981 && TYPE_PTR_P (to_type2
))
4983 deref_from_type1
= TREE_TYPE (from_type1
);
4984 deref_from_type2
= TREE_TYPE (from_type2
);
4985 deref_to_type1
= TREE_TYPE (to_type1
);
4986 deref_to_type2
= TREE_TYPE (to_type2
);
4988 /* The rules for pointers to members A::* are just like the rules
4989 for pointers A*, except opposite: if B is derived from A then
4990 A::* converts to B::*, not vice versa. For that reason, we
4991 switch the from_ and to_ variables here. */
4992 else if (TYPE_PTRMEM_P (from_type1
)
4993 && TYPE_PTRMEM_P (from_type2
)
4994 && TYPE_PTRMEM_P (to_type1
)
4995 && TYPE_PTRMEM_P (to_type2
))
4997 deref_to_type1
= TYPE_OFFSET_BASETYPE (TREE_TYPE (from_type1
));
4998 deref_to_type2
= TYPE_OFFSET_BASETYPE (TREE_TYPE (from_type2
));
4999 deref_from_type1
= TYPE_OFFSET_BASETYPE (TREE_TYPE (to_type1
));
5000 deref_from_type2
= TYPE_OFFSET_BASETYPE (TREE_TYPE (to_type2
));
5002 else if (TYPE_PTRMEMFUNC_P (from_type1
)
5003 && TYPE_PTRMEMFUNC_P (from_type2
)
5004 && TYPE_PTRMEMFUNC_P (to_type1
)
5005 && TYPE_PTRMEMFUNC_P (to_type2
))
5007 deref_to_type1
= TYPE_PTRMEMFUNC_OBJECT_TYPE (from_type1
);
5008 deref_to_type2
= TYPE_PTRMEMFUNC_OBJECT_TYPE (from_type2
);
5009 deref_from_type1
= TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type1
);
5010 deref_from_type2
= TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type2
);
5013 if (deref_from_type1
!= NULL_TREE
5014 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1
))
5015 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2
)))
5017 /* This was one of the pointer or pointer-like conversions.
5021 --If class B is derived directly or indirectly from class A,
5022 conversion of B* to A* is better than conversion of B* to
5023 void*, and conversion of A* to void* is better than
5024 conversion of B* to void*. */
5025 if (TREE_CODE (deref_to_type1
) == VOID_TYPE
5026 && TREE_CODE (deref_to_type2
) == VOID_TYPE
)
5028 if (is_properly_derived_from (deref_from_type1
,
5031 else if (is_properly_derived_from (deref_from_type2
,
5035 else if (TREE_CODE (deref_to_type1
) == VOID_TYPE
5036 || TREE_CODE (deref_to_type2
) == VOID_TYPE
)
5038 if (same_type_p (deref_from_type1
, deref_from_type2
))
5040 if (TREE_CODE (deref_to_type2
) == VOID_TYPE
)
5042 if (is_properly_derived_from (deref_from_type1
,
5046 /* We know that DEREF_TO_TYPE1 is `void' here. */
5047 else if (is_properly_derived_from (deref_from_type1
,
5052 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1
))
5053 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2
)))
5057 --If class B is derived directly or indirectly from class A
5058 and class C is derived directly or indirectly from B,
5060 --conversion of C* to B* is better than conversion of C* to
5063 --conversion of B* to A* is better than conversion of C* to
5065 if (same_type_p (deref_from_type1
, deref_from_type2
))
5067 if (is_properly_derived_from (deref_to_type1
,
5070 else if (is_properly_derived_from (deref_to_type2
,
5074 else if (same_type_p (deref_to_type1
, deref_to_type2
))
5076 if (is_properly_derived_from (deref_from_type2
,
5079 else if (is_properly_derived_from (deref_from_type1
,
5085 else if (CLASS_TYPE_P (non_reference (from_type1
))
5086 && same_type_p (from_type1
, from_type2
))
5088 tree from
= non_reference (from_type1
);
5092 --binding of an expression of type C to a reference of type
5093 B& is better than binding an expression of type C to a
5094 reference of type A&
5096 --conversion of C to B is better than conversion of C to A, */
5097 if (is_properly_derived_from (from
, to_type1
)
5098 && is_properly_derived_from (from
, to_type2
))
5100 if (is_properly_derived_from (to_type1
, to_type2
))
5102 else if (is_properly_derived_from (to_type2
, to_type1
))
5106 else if (CLASS_TYPE_P (non_reference (to_type1
))
5107 && same_type_p (to_type1
, to_type2
))
5109 tree to
= non_reference (to_type1
);
5113 --binding of an expression of type B to a reference of type
5114 A& is better than binding an expression of type C to a
5115 reference of type A&,
5117 --onversion of B to A is better than conversion of C to A */
5118 if (is_properly_derived_from (from_type1
, to
)
5119 && is_properly_derived_from (from_type2
, to
))
5121 if (is_properly_derived_from (from_type2
, from_type1
))
5123 else if (is_properly_derived_from (from_type1
, from_type2
))
5130 --S1 and S2 differ only in their qualification conversion and yield
5131 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
5132 qualification signature of type T1 is a proper subset of the cv-
5133 qualification signature of type T2 */
5134 if (TREE_CODE (ics1
) == QUAL_CONV
5135 && TREE_CODE (ics2
) == QUAL_CONV
5136 && same_type_p (from_type1
, from_type2
))
5137 return comp_cv_qual_signature (to_type1
, to_type2
);
5141 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
5142 types to which the references refer are the same type except for
5143 top-level cv-qualifiers, and the type to which the reference
5144 initialized by S2 refers is more cv-qualified than the type to
5145 which the reference initialized by S1 refers */
5147 if (target_type1
&& target_type2
5148 && same_type_ignoring_top_level_qualifiers_p (to_type1
, to_type2
))
5149 return comp_cv_qualification (target_type2
, target_type1
);
5151 /* Neither conversion sequence is better than the other. */
5155 /* The source type for this standard conversion sequence. */
5161 for (;; t
= TREE_OPERAND (t
, 0))
5163 if (TREE_CODE (t
) == USER_CONV
5164 || TREE_CODE (t
) == AMBIG_CONV
5165 || TREE_CODE (t
) == IDENTITY_CONV
)
5166 return TREE_TYPE (t
);
5171 /* Note a warning about preferring WINNER to LOSER. We do this by storing
5172 a pointer to LOSER and re-running joust to produce the warning if WINNER
5173 is actually used. */
5176 add_warning (winner
, loser
)
5177 struct z_candidate
*winner
, *loser
;
5179 winner
->warnings
= tree_cons (NULL_TREE
,
5180 build_ptr_wrapper (loser
),
5184 /* Returns true iff functions are equivalent. Equivalent functions are
5185 not '==' only if one is a function-local extern function or if
5186 both are extern "C". */
5189 equal_functions (fn1
, fn2
)
5193 if (DECL_LOCAL_FUNCTION_P (fn1
) || DECL_LOCAL_FUNCTION_P (fn2
)
5194 || DECL_EXTERN_C_FUNCTION_P (fn1
))
5195 return decls_match (fn1
, fn2
);
5199 /* Compare two candidates for overloading as described in
5200 [over.match.best]. Return values:
5202 1: cand1 is better than cand2
5203 -1: cand2 is better than cand1
5204 0: cand1 and cand2 are indistinguishable */
5207 joust (cand1
, cand2
, warn
)
5208 struct z_candidate
*cand1
, *cand2
;
5212 int i
, off1
= 0, off2
= 0, len
;
5214 /* Candidates that involve bad conversions are always worse than those
5216 if (cand1
->viable
> cand2
->viable
)
5218 if (cand1
->viable
< cand2
->viable
)
5221 /* If we have two pseudo-candidates for conversions to the same type,
5222 or two candidates for the same function, arbitrarily pick one. */
5223 if (cand1
->fn
== cand2
->fn
5224 && (TYPE_P (cand1
->fn
) || DECL_P (cand1
->fn
)))
5227 /* a viable function F1
5228 is defined to be a better function than another viable function F2 if
5229 for all arguments i, ICSi(F1) is not a worse conversion sequence than
5230 ICSi(F2), and then */
5232 /* for some argument j, ICSj(F1) is a better conversion sequence than
5235 /* For comparing static and non-static member functions, we ignore
5236 the implicit object parameter of the non-static function. The
5237 standard says to pretend that the static function has an object
5238 parm, but that won't work with operator overloading. */
5239 len
= TREE_VEC_LENGTH (cand1
->convs
);
5240 if (len
!= TREE_VEC_LENGTH (cand2
->convs
))
5242 if (DECL_STATIC_FUNCTION_P (cand1
->fn
)
5243 && ! DECL_STATIC_FUNCTION_P (cand2
->fn
))
5245 else if (! DECL_STATIC_FUNCTION_P (cand1
->fn
)
5246 && DECL_STATIC_FUNCTION_P (cand2
->fn
))
5255 for (i
= 0; i
< len
; ++i
)
5257 tree t1
= TREE_VEC_ELT (cand1
->convs
, i
+off1
);
5258 tree t2
= TREE_VEC_ELT (cand2
->convs
, i
+off2
);
5259 int comp
= compare_ics (t1
, t2
);
5264 && ICS_RANK (t1
) + ICS_RANK (t2
) == STD_RANK
+ PROMO_RANK
5265 && TREE_CODE (t1
) == STD_CONV
5266 && TREE_CODE (t2
) == STD_CONV
5267 && TREE_CODE (TREE_TYPE (t1
)) == INTEGER_TYPE
5268 && TREE_CODE (TREE_TYPE (t2
)) == INTEGER_TYPE
5269 && (TYPE_PRECISION (TREE_TYPE (t1
))
5270 == TYPE_PRECISION (TREE_TYPE (t2
)))
5271 && (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (t1
, 0)))
5272 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (t1
, 0)))
5275 tree type
= TREE_TYPE (TREE_OPERAND (t1
, 0));
5277 struct z_candidate
*w
, *l
;
5279 type1
= TREE_TYPE (t1
), type2
= TREE_TYPE (t2
),
5280 w
= cand1
, l
= cand2
;
5282 type1
= TREE_TYPE (t2
), type2
= TREE_TYPE (t1
),
5283 w
= cand2
, l
= cand1
;
5287 warning ("passing `%T' chooses `%T' over `%T'",
5288 type
, type1
, type2
);
5289 warning (" in call to `%D'", w
->fn
);
5295 if (winner
&& comp
!= winner
)
5304 /* warn about confusing overload resolution for user-defined conversions,
5305 either between a constructor and a conversion op, or between two
5307 if (winner
&& cand1
->second_conv
5308 && ((DECL_CONSTRUCTOR_P (cand1
->fn
)
5309 != DECL_CONSTRUCTOR_P (cand2
->fn
))
5310 /* Don't warn if the two conv ops convert to the same type... */
5311 || (! DECL_CONSTRUCTOR_P (cand1
->fn
)
5312 && ! same_type_p (TREE_TYPE (TREE_TYPE (cand1
->fn
)),
5313 TREE_TYPE (TREE_TYPE (cand2
->fn
))))))
5315 int comp
= compare_ics (cand1
->second_conv
, cand2
->second_conv
);
5318 struct z_candidate
*w
, *l
;
5321 w
= cand1
, l
= cand2
;
5323 w
= cand2
, l
= cand1
;
5324 if (DECL_CONTEXT (cand1
->fn
) == DECL_CONTEXT (cand2
->fn
)
5325 && ! DECL_CONSTRUCTOR_P (cand1
->fn
)
5326 && ! DECL_CONSTRUCTOR_P (cand2
->fn
)
5327 && (convn
= standard_conversion
5328 (TREE_TYPE (TREE_TYPE (l
->fn
)),
5329 TREE_TYPE (TREE_TYPE (w
->fn
)), NULL_TREE
))
5330 && TREE_CODE (convn
) == QUAL_CONV
)
5331 /* Don't complain about `operator char *()' beating
5332 `operator const char *() const'. */;
5335 tree source
= source_type (TREE_VEC_ELT (w
->convs
, 0));
5336 if (! DECL_CONSTRUCTOR_P (w
->fn
))
5337 source
= TREE_TYPE (source
);
5338 warning ("choosing `%D' over `%D'", w
->fn
, l
->fn
);
5339 warning (" for conversion from `%T' to `%T'",
5340 source
, TREE_TYPE (w
->second_conv
));
5341 warning (" because conversion sequence for the argument is better");
5352 F1 is a non-template function and F2 is a template function
5355 if (! cand1
->template && cand2
->template)
5357 else if (cand1
->template && ! cand2
->template)
5361 F1 and F2 are template functions and the function template for F1 is
5362 more specialized than the template for F2 according to the partial
5365 if (cand1
->template && cand2
->template)
5367 winner
= more_specialized
5368 (TI_TEMPLATE (cand1
->template), TI_TEMPLATE (cand2
->template),
5370 /* Tell the deduction code how many real function arguments
5371 we saw, not counting the implicit 'this' argument. But,
5372 add_function_candidate() suppresses the "this" argument
5375 [temp.func.order]: The presence of unused ellipsis and default
5376 arguments has no effect on the partial ordering of function
5378 TREE_VEC_LENGTH (cand1
->convs
)
5379 - (DECL_NONSTATIC_MEMBER_FUNCTION_P (cand1
->fn
)
5380 - DECL_CONSTRUCTOR_P (cand1
->fn
)));
5387 the context is an initialization by user-defined conversion (see
5388 _dcl.init_ and _over.match.user_) and the standard conversion
5389 sequence from the return type of F1 to the destination type (i.e.,
5390 the type of the entity being initialized) is a better conversion
5391 sequence than the standard conversion sequence from the return type
5392 of F2 to the destination type. */
5394 if (cand1
->second_conv
)
5396 winner
= compare_ics (cand1
->second_conv
, cand2
->second_conv
);
5401 /* Check whether we can discard a builtin candidate, either because we
5402 have two identical ones or matching builtin and non-builtin candidates.
5404 (Pedantically in the latter case the builtin which matched the user
5405 function should not be added to the overload set, but we spot it here.
5408 ... the builtin candidates include ...
5409 - do not have the same parameter type list as any non-template
5410 non-member candidate. */
5412 if (TREE_CODE (cand1
->fn
) == IDENTIFIER_NODE
5413 || TREE_CODE (cand2
->fn
) == IDENTIFIER_NODE
)
5415 for (i
= 0; i
< len
; ++i
)
5416 if (!same_type_p (TREE_TYPE (TREE_VEC_ELT (cand1
->convs
, i
)),
5417 TREE_TYPE (TREE_VEC_ELT (cand2
->convs
, i
))))
5419 if (i
== TREE_VEC_LENGTH (cand1
->convs
))
5421 if (cand1
->fn
== cand2
->fn
)
5422 /* Two built-in candidates; arbitrarily pick one. */
5424 else if (TREE_CODE (cand1
->fn
) == IDENTIFIER_NODE
)
5425 /* cand1 is built-in; prefer cand2. */
5428 /* cand2 is built-in; prefer cand1. */
5433 /* If the two functions are the same (this can happen with declarations
5434 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
5435 if (DECL_P (cand1
->fn
) && DECL_P (cand2
->fn
)
5436 && equal_functions (cand1
->fn
, cand2
->fn
))
5441 /* Extension: If the worst conversion for one candidate is worse than the
5442 worst conversion for the other, take the first. */
5445 int rank1
= IDENTITY_RANK
, rank2
= IDENTITY_RANK
;
5446 struct z_candidate
*w
= 0, *l
= 0;
5448 for (i
= 0; i
< len
; ++i
)
5450 if (ICS_RANK (TREE_VEC_ELT (cand1
->convs
, i
+off1
)) > rank1
)
5451 rank1
= ICS_RANK (TREE_VEC_ELT (cand1
->convs
, i
+off1
));
5452 if (ICS_RANK (TREE_VEC_ELT (cand2
->convs
, i
+off2
)) > rank2
)
5453 rank2
= ICS_RANK (TREE_VEC_ELT (cand2
->convs
, i
+off2
));
5456 winner
= 1, w
= cand1
, l
= cand2
;
5458 winner
= -1, w
= cand2
, l
= cand1
;
5463 pedwarn ("choosing `%D' over `%D'", w
->fn
, l
->fn
);
5465 " because worst conversion for the former is better than worst conversion for the latter");
5473 my_friendly_assert (!winner
, 20010121);
5477 /* Given a list of candidates for overloading, find the best one, if any.
5478 This algorithm has a worst case of O(2n) (winner is last), and a best
5479 case of O(n/2) (totally ambiguous); much better than a sorting
5482 static struct z_candidate
*
5483 tourney (candidates
)
5484 struct z_candidate
*candidates
;
5486 struct z_candidate
*champ
= candidates
, *challenger
;
5488 int champ_compared_to_predecessor
= 0;
5490 /* Walk through the list once, comparing each current champ to the next
5491 candidate, knocking out a candidate or two with each comparison. */
5493 for (challenger
= champ
->next
; challenger
; )
5495 fate
= joust (champ
, challenger
, 0);
5497 challenger
= challenger
->next
;
5502 champ
= challenger
->next
;
5505 champ_compared_to_predecessor
= 0;
5510 champ_compared_to_predecessor
= 1;
5513 challenger
= champ
->next
;
5517 /* Make sure the champ is better than all the candidates it hasn't yet
5518 been compared to. */
5520 for (challenger
= candidates
;
5522 && !(champ_compared_to_predecessor
&& challenger
->next
== champ
);
5523 challenger
= challenger
->next
)
5525 fate
= joust (champ
, challenger
, 0);
5533 /* Returns non-zero if things of type FROM can be converted to TO. */
5536 can_convert (to
, from
)
5539 return can_convert_arg (to
, from
, NULL_TREE
);
5542 /* Returns non-zero if ARG (of type FROM) can be converted to TO. */
5545 can_convert_arg (to
, from
, arg
)
5548 tree t
= implicit_conversion (to
, from
, arg
, LOOKUP_NORMAL
);
5549 return (t
&& ! ICS_BAD_FLAG (t
));
5552 /* Like can_convert_arg, but allows dubious conversions as well. */
5555 can_convert_arg_bad (to
, from
, arg
)
5558 tree t
= implicit_conversion (to
, from
, arg
, LOOKUP_NORMAL
);
5562 /* Convert EXPR to TYPE. Return the converted expression.
5564 Note that we allow bad conversions here because by the time we get to
5565 this point we are committed to doing the conversion. If we end up
5566 doing a bad conversion, convert_like will complain. */
5569 perform_implicit_conversion (type
, expr
)
5575 if (expr
== error_mark_node
)
5576 return error_mark_node
;
5577 conv
= implicit_conversion (type
, TREE_TYPE (expr
), expr
,
5581 error ("could not convert `%E' to `%T'", expr
, type
);
5582 return error_mark_node
;
5585 return convert_like (conv
, expr
);
5588 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
5589 initializing a variable of that TYPE. Return the converted
5593 initialize_reference (type
, expr
)
5599 conv
= reference_binding (type
, TREE_TYPE (expr
), expr
, LOOKUP_NORMAL
);
5600 if (!conv
|| ICS_BAD_FLAG (conv
))
5602 error ("could not convert `%E' to `%T'", expr
, type
);
5603 return error_mark_node
;
5606 return convert_like (conv
, expr
);