* doc/invoke.texi (Optimize Options): Document -frename-registers
[official-gcc.git] / gcc / cp / call.c
blobb4f4dbbcab03643cb5765a5baec20eb23ddd3fb8
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 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 GCC.
9 GCC 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)
12 any later version.
14 GCC 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 GCC; 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. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "cp-tree.h"
33 #include "output.h"
34 #include "flags.h"
35 #include "rtl.h"
36 #include "toplev.h"
37 #include "expr.h"
38 #include "diagnostic.h"
39 #include "intl.h"
40 #include "target.h"
41 #include "convert.h"
43 /* The various kinds of conversion. */
45 typedef enum conversion_kind {
46 ck_identity,
47 ck_lvalue,
48 ck_qual,
49 ck_std,
50 ck_ptr,
51 ck_pmem,
52 ck_base,
53 ck_ref_bind,
54 ck_user,
55 ck_ambig,
56 ck_rvalue
57 } conversion_kind;
59 /* The rank of the conversion. Order of the enumerals matters; better
60 conversions should come earlier in the list. */
62 typedef enum conversion_rank {
63 cr_identity,
64 cr_exact,
65 cr_promotion,
66 cr_std,
67 cr_pbool,
68 cr_user,
69 cr_ellipsis,
70 cr_bad
71 } conversion_rank;
73 /* An implicit conversion sequence, in the sense of [over.best.ics].
74 The first conversion to be performed is at the end of the chain.
75 That conversion is always an cr_identity conversion. */
77 typedef struct conversion conversion;
78 struct conversion {
79 /* The kind of conversion represented by this step. */
80 conversion_kind kind;
81 /* The rank of this conversion. */
82 conversion_rank rank;
83 BOOL_BITFIELD user_conv_p : 1;
84 BOOL_BITFIELD ellipsis_p : 1;
85 BOOL_BITFIELD this_p : 1;
86 BOOL_BITFIELD bad_p : 1;
87 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
88 temporary should be created to hold the result of the
89 conversion. */
90 BOOL_BITFIELD need_temporary_p : 1;
91 /* If KIND is ck_identity or ck_base_conv, true to indicate that the
92 copy constructor must be accessible, even though it is not being
93 used. */
94 BOOL_BITFIELD check_copy_constructor_p : 1;
95 /* The type of the expression resulting from the conversion. */
96 tree type;
97 union {
98 /* The next conversion in the chain. Since the conversions are
99 arranged from outermost to innermost, the NEXT conversion will
100 actually be performed before this conversion. This variant is
101 used only when KIND is neither ck_identity nor ck_ambig. */
102 conversion *next;
103 /* The expression at the beginning of the conversion chain. This
104 variant is used only if KIND is ck_identity or ck_ambig. */
105 tree expr;
106 } u;
107 /* The function candidate corresponding to this conversion
108 sequence. This field is only used if KIND is ck_user. */
109 struct z_candidate *cand;
112 #define CONVERSION_RANK(NODE) \
113 ((NODE)->bad_p ? cr_bad \
114 : (NODE)->ellipsis_p ? cr_ellipsis \
115 : (NODE)->user_conv_p ? cr_user \
116 : (NODE)->rank)
118 static struct obstack conversion_obstack;
119 static bool conversion_obstack_initialized;
121 static struct z_candidate * tourney (struct z_candidate *);
122 static int equal_functions (tree, tree);
123 static int joust (struct z_candidate *, struct z_candidate *, bool);
124 static int compare_ics (conversion *, conversion *);
125 static tree build_over_call (struct z_candidate *, int);
126 static tree build_java_interface_fn_ref (tree, tree);
127 #define convert_like(CONV, EXPR) \
128 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
129 /*issue_conversion_warnings=*/true)
130 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
131 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
132 /*issue_conversion_warnings=*/true)
133 static tree convert_like_real (conversion *, tree, tree, int, int, bool);
134 static void op_error (enum tree_code, enum tree_code, tree, tree,
135 tree, const char *);
136 static tree build_object_call (tree, tree);
137 static tree resolve_args (tree);
138 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
139 static void print_z_candidate (const char *, struct z_candidate *);
140 static void print_z_candidates (struct z_candidate *);
141 static tree build_this (tree);
142 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
143 static bool any_strictly_viable (struct z_candidate *);
144 static struct z_candidate *add_template_candidate
145 (struct z_candidate **, tree, tree, tree, tree, tree,
146 tree, tree, int, unification_kind_t);
147 static struct z_candidate *add_template_candidate_real
148 (struct z_candidate **, tree, tree, tree, tree, tree,
149 tree, tree, int, tree, unification_kind_t);
150 static struct z_candidate *add_template_conv_candidate
151 (struct z_candidate **, tree, tree, tree, tree, tree, tree);
152 static void add_builtin_candidates
153 (struct z_candidate **, enum tree_code, enum tree_code,
154 tree, tree *, int);
155 static void add_builtin_candidate
156 (struct z_candidate **, enum tree_code, enum tree_code,
157 tree, tree, tree, tree *, tree *, int);
158 static bool is_complete (tree);
159 static void build_builtin_candidate
160 (struct z_candidate **, tree, tree, tree, tree *, tree *,
161 int);
162 static struct z_candidate *add_conv_candidate
163 (struct z_candidate **, tree, tree, tree, tree, tree);
164 static struct z_candidate *add_function_candidate
165 (struct z_candidate **, tree, tree, tree, tree, tree, int);
166 static conversion *implicit_conversion (tree, tree, tree, int);
167 static conversion *standard_conversion (tree, tree, tree);
168 static conversion *reference_binding (tree, tree, tree, int);
169 static conversion *build_conv (conversion_kind, tree, conversion *);
170 static bool is_subseq (conversion *, conversion *);
171 static tree maybe_handle_ref_bind (conversion **);
172 static void maybe_handle_implicit_object (conversion **);
173 static struct z_candidate *add_candidate
174 (struct z_candidate **, tree, tree, size_t,
175 conversion **, tree, tree, int);
176 static tree source_type (conversion *);
177 static void add_warning (struct z_candidate *, struct z_candidate *);
178 static bool reference_related_p (tree, tree);
179 static bool reference_compatible_p (tree, tree);
180 static conversion *convert_class_to_reference (tree, tree, tree);
181 static conversion *direct_reference_binding (tree, conversion *);
182 static bool promoted_arithmetic_type_p (tree);
183 static conversion *conditional_conversion (tree, tree);
184 static char *name_as_c_string (tree, tree, bool *);
185 static tree call_builtin_trap (void);
186 static tree prep_operand (tree);
187 static void add_candidates (tree, tree, tree, bool, tree, tree,
188 int, struct z_candidate **);
189 static conversion *merge_conversion_sequences (conversion *, conversion *);
190 static bool magic_varargs_p (tree);
191 static tree build_temp (tree, tree, int, void (**)(const char *, ...));
192 static void check_constructor_callable (tree, tree);
194 tree
195 build_vfield_ref (tree datum, tree type)
197 if (datum == error_mark_node)
198 return error_mark_node;
200 if (TREE_CODE (TREE_TYPE (datum)) == REFERENCE_TYPE)
201 datum = convert_from_reference (datum);
203 if (TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
204 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (datum), type))
205 datum = convert_to_base (datum, type, /*check_access=*/false);
207 return build (COMPONENT_REF, TREE_TYPE (TYPE_VFIELD (type)),
208 datum, TYPE_VFIELD (type), NULL_TREE);
211 /* Returns nonzero iff the destructor name specified in NAME
212 (a BIT_NOT_EXPR) matches BASETYPE. The operand of NAME can take many
213 forms... */
215 bool
216 check_dtor_name (tree basetype, tree name)
218 name = TREE_OPERAND (name, 0);
220 /* Just accept something we've already complained about. */
221 if (name == error_mark_node)
222 return true;
224 if (TREE_CODE (name) == TYPE_DECL)
225 name = TREE_TYPE (name);
226 else if (TYPE_P (name))
227 /* OK */;
228 else if (TREE_CODE (name) == IDENTIFIER_NODE)
230 if ((IS_AGGR_TYPE (basetype) && name == constructor_name (basetype))
231 || (TREE_CODE (basetype) == ENUMERAL_TYPE
232 && name == TYPE_IDENTIFIER (basetype)))
233 name = basetype;
234 else
235 name = get_type_value (name);
237 /* In the case of:
239 template <class T> struct S { ~S(); };
240 int i;
241 i.~S();
243 NAME will be a class template. */
244 else if (DECL_CLASS_TEMPLATE_P (name))
245 return false;
246 else
247 abort ();
249 if (name && TYPE_MAIN_VARIANT (basetype) == TYPE_MAIN_VARIANT (name))
250 return true;
251 return false;
254 /* We want the address of a function or method. We avoid creating a
255 pointer-to-member function. */
257 tree
258 build_addr_func (tree function)
260 tree type = TREE_TYPE (function);
262 /* We have to do these by hand to avoid real pointer to member
263 functions. */
264 if (TREE_CODE (type) == METHOD_TYPE)
266 if (TREE_CODE (function) == OFFSET_REF)
268 tree object = build_address (TREE_OPERAND (function, 0));
269 return get_member_function_from_ptrfunc (&object,
270 TREE_OPERAND (function, 1));
272 function = build_address (function);
274 else
275 function = decay_conversion (function);
277 return function;
280 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
281 POINTER_TYPE to those. Note, pointer to member function types
282 (TYPE_PTRMEMFUNC_P) must be handled by our callers. */
284 tree
285 build_call (tree function, tree parms)
287 int is_constructor = 0;
288 int nothrow;
289 tree tmp;
290 tree decl;
291 tree result_type;
292 tree fntype;
294 function = build_addr_func (function);
296 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
298 sorry ("unable to call pointer to member function here");
299 return error_mark_node;
302 fntype = TREE_TYPE (TREE_TYPE (function));
303 result_type = TREE_TYPE (fntype);
305 if (TREE_CODE (function) == ADDR_EXPR
306 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
307 decl = TREE_OPERAND (function, 0);
308 else
309 decl = NULL_TREE;
311 /* We check both the decl and the type; a function may be known not to
312 throw without being declared throw(). */
313 nothrow = ((decl && TREE_NOTHROW (decl))
314 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
316 if (decl && TREE_THIS_VOLATILE (decl) && cfun)
317 current_function_returns_abnormally = 1;
319 if (decl && TREE_DEPRECATED (decl))
320 warn_deprecated_use (decl);
321 require_complete_eh_spec_types (fntype, decl);
323 if (decl && DECL_CONSTRUCTOR_P (decl))
324 is_constructor = 1;
326 if (decl && ! TREE_USED (decl))
328 /* We invoke build_call directly for several library functions.
329 These may have been declared normally if we're building libgcc,
330 so we can't just check DECL_ARTIFICIAL. */
331 if (DECL_ARTIFICIAL (decl)
332 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "__", 2))
333 mark_used (decl);
334 else
335 abort ();
338 /* Don't pass empty class objects by value. This is useful
339 for tags in STL, which are used to control overload resolution.
340 We don't need to handle other cases of copying empty classes. */
341 if (! decl || ! DECL_BUILT_IN (decl))
342 for (tmp = parms; tmp; tmp = TREE_CHAIN (tmp))
343 if (is_empty_class (TREE_TYPE (TREE_VALUE (tmp)))
344 && ! TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (tmp))))
346 tree t = build (EMPTY_CLASS_EXPR, TREE_TYPE (TREE_VALUE (tmp)));
347 TREE_VALUE (tmp) = build (COMPOUND_EXPR, TREE_TYPE (t),
348 TREE_VALUE (tmp), t);
351 function = build (CALL_EXPR, result_type, function, parms, NULL_TREE);
352 TREE_HAS_CONSTRUCTOR (function) = is_constructor;
353 TREE_NOTHROW (function) = nothrow;
355 return function;
358 /* Build something of the form ptr->method (args)
359 or object.method (args). This can also build
360 calls to constructors, and find friends.
362 Member functions always take their class variable
363 as a pointer.
365 INSTANCE is a class instance.
367 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
369 PARMS help to figure out what that NAME really refers to.
371 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
372 down to the real instance type to use for access checking. We need this
373 information to get protected accesses correct.
375 FLAGS is the logical disjunction of zero or more LOOKUP_
376 flags. See cp-tree.h for more info.
378 If this is all OK, calls build_function_call with the resolved
379 member function.
381 This function must also handle being called to perform
382 initialization, promotion/coercion of arguments, and
383 instantiation of default parameters.
385 Note that NAME may refer to an instance variable name. If
386 `operator()()' is defined for the type of that field, then we return
387 that result. */
389 /* New overloading code. */
391 typedef struct z_candidate z_candidate;
393 typedef struct candidate_warning candidate_warning;
394 struct candidate_warning {
395 z_candidate *loser;
396 candidate_warning *next;
399 struct z_candidate {
400 /* The FUNCTION_DECL that will be called if this candidate is
401 selected by overload resolution. */
402 tree fn;
403 /* The arguments to use when calling this function. */
404 tree args;
405 /* The implicit conversion sequences for each of the arguments to
406 FN. */
407 conversion **convs;
408 /* The number of implicit conversion sequences. */
409 size_t num_convs;
410 /* If FN is a user-defined conversion, the standard conversion
411 sequence from the type returned by FN to the desired destination
412 type. */
413 conversion *second_conv;
414 int viable;
415 /* If FN is a member function, the binfo indicating the path used to
416 qualify the name of FN at the call site. This path is used to
417 determine whether or not FN is accessible if it is selected by
418 overload resolution. The DECL_CONTEXT of FN will always be a
419 (possibly improper) base of this binfo. */
420 tree access_path;
421 /* If FN is a non-static member function, the binfo indicating the
422 subobject to which the `this' pointer should be converted if FN
423 is selected by overload resolution. The type pointed to the by
424 the `this' pointer must correspond to the most derived class
425 indicated by the CONVERSION_PATH. */
426 tree conversion_path;
427 tree template;
428 candidate_warning *warnings;
429 z_candidate *next;
432 bool
433 null_ptr_cst_p (tree t)
435 /* [conv.ptr]
437 A null pointer constant is an integral constant expression
438 (_expr.const_) rvalue of integer type that evaluates to zero. */
439 if (t == null_node
440 || (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t)))
441 return true;
442 return false;
446 /* Returns nonzero if PARMLIST consists of only default parms and/or
447 ellipsis. */
449 bool
450 sufficient_parms_p (tree parmlist)
452 for (; parmlist && parmlist != void_list_node;
453 parmlist = TREE_CHAIN (parmlist))
454 if (!TREE_PURPOSE (parmlist))
455 return false;
456 return true;
459 /* Allocate N bytes of memory from the conversion obstack. The memory
460 is zeroed before being returned. */
462 static void *
463 conversion_obstack_alloc (size_t n)
465 void *p;
466 if (!conversion_obstack_initialized)
468 gcc_obstack_init (&conversion_obstack);
469 conversion_obstack_initialized = true;
471 p = obstack_alloc (&conversion_obstack, n);
472 memset (p, 0, n);
473 return p;
476 /* Dynamically allocate a conversion. */
478 static conversion *
479 alloc_conversion (conversion_kind kind)
481 conversion *c;
482 c = conversion_obstack_alloc (sizeof (conversion));
483 c->kind = kind;
484 return c;
487 #ifdef ENABLE_CHECKING
489 /* Make sure that all memory on the conversion obstack has been
490 freed. */
492 void
493 validate_conversion_obstack (void)
495 if (conversion_obstack_initialized)
496 my_friendly_assert ((obstack_next_free (&conversion_obstack)
497 == obstack_base (&conversion_obstack)),
498 20040208);
501 #endif /* ENABLE_CHECKING */
503 /* Dynamically allocate an array of N conversions. */
505 static conversion **
506 alloc_conversions (size_t n)
508 return conversion_obstack_alloc (n * sizeof (conversion *));
511 static conversion *
512 build_conv (conversion_kind code, tree type, conversion *from)
514 conversion *t;
515 conversion_rank rank = CONVERSION_RANK (from);
517 /* We can't use buildl1 here because CODE could be USER_CONV, which
518 takes two arguments. In that case, the caller is responsible for
519 filling in the second argument. */
520 t = alloc_conversion (code);
521 t->type = type;
522 t->u.next = from;
524 switch (code)
526 case ck_ptr:
527 case ck_pmem:
528 case ck_base:
529 case ck_std:
530 if (rank < cr_std)
531 rank = cr_std;
532 break;
534 case ck_qual:
535 if (rank < cr_exact)
536 rank = cr_exact;
537 break;
539 default:
540 break;
542 t->rank = rank;
543 t->user_conv_p = (code == ck_user || from->user_conv_p);
544 t->bad_p = from->bad_p;
545 return t;
548 /* Build a representation of the identity conversion from EXPR to
549 itself. The TYPE should match the the type of EXPR, if EXPR is
550 non-NULL. */
552 static conversion *
553 build_identity_conv (tree type, tree expr)
555 conversion *c;
557 c = alloc_conversion (ck_identity);
558 c->type = type;
559 c->u.expr = expr;
561 return c;
564 /* Converting from EXPR to TYPE was ambiguous in the sense that there
565 were multiple user-defined conversions to accomplish the job.
566 Build a conversion that indicates that ambiguity. */
568 static conversion *
569 build_ambiguous_conv (tree type, tree expr)
571 conversion *c;
573 c = alloc_conversion (ck_ambig);
574 c->type = type;
575 c->u.expr = expr;
577 return c;
580 tree
581 strip_top_quals (tree t)
583 if (TREE_CODE (t) == ARRAY_TYPE)
584 return t;
585 return cp_build_qualified_type (t, 0);
588 /* Returns the standard conversion path (see [conv]) from type FROM to type
589 TO, if any. For proper handling of null pointer constants, you must
590 also pass the expression EXPR to convert from. */
592 static conversion *
593 standard_conversion (tree to, tree from, tree expr)
595 enum tree_code fcode, tcode;
596 conversion *conv;
597 bool fromref = false;
599 to = non_reference (to);
600 if (TREE_CODE (from) == REFERENCE_TYPE)
602 fromref = true;
603 from = TREE_TYPE (from);
605 to = strip_top_quals (to);
606 from = strip_top_quals (from);
608 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
609 && expr && type_unknown_p (expr))
611 expr = instantiate_type (to, expr, tf_conv);
612 if (expr == error_mark_node)
613 return NULL;
614 from = TREE_TYPE (expr);
617 fcode = TREE_CODE (from);
618 tcode = TREE_CODE (to);
620 conv = build_identity_conv (from, expr);
621 if (fcode == FUNCTION_TYPE)
623 from = build_pointer_type (from);
624 fcode = TREE_CODE (from);
625 conv = build_conv (ck_lvalue, from, conv);
627 else if (fcode == ARRAY_TYPE)
629 from = build_pointer_type (TREE_TYPE (from));
630 fcode = TREE_CODE (from);
631 conv = build_conv (ck_lvalue, from, conv);
633 else if (fromref || (expr && lvalue_p (expr)))
634 conv = build_conv (ck_rvalue, from, conv);
636 /* Allow conversion between `__complex__' data types. */
637 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
639 /* The standard conversion sequence to convert FROM to TO is
640 the standard conversion sequence to perform componentwise
641 conversion. */
642 conversion *part_conv = standard_conversion
643 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE);
645 if (part_conv)
647 conv = build_conv (part_conv->kind, to, conv);
648 conv->rank = part_conv->rank;
650 else
651 conv = NULL;
653 return conv;
656 if (same_type_p (from, to))
657 return conv;
659 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
660 && expr && null_ptr_cst_p (expr))
661 conv = build_conv (ck_std, to, conv);
662 else if (tcode == POINTER_TYPE && fcode == POINTER_TYPE
663 && TREE_CODE (TREE_TYPE (to)) == VECTOR_TYPE
664 && TREE_CODE (TREE_TYPE (from)) == VECTOR_TYPE
665 && vector_types_convertible_p (TREE_TYPE (to), TREE_TYPE (from)))
666 conv = build_conv (ck_std, to, conv);
667 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
668 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
670 /* For backwards brain damage compatibility, allow interconversion of
671 pointers and integers with a pedwarn. */
672 conv = build_conv (ck_std, to, conv);
673 conv->bad_p = true;
675 else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE)
677 /* For backwards brain damage compatibility, allow interconversion of
678 enums and integers with a pedwarn. */
679 conv = build_conv (ck_std, to, conv);
680 conv->bad_p = true;
682 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
683 || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
685 tree to_pointee;
686 tree from_pointee;
688 if (tcode == POINTER_TYPE
689 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
690 TREE_TYPE (to)))
692 else if (VOID_TYPE_P (TREE_TYPE (to))
693 && !TYPE_PTRMEM_P (from)
694 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
696 from = build_pointer_type
697 (cp_build_qualified_type (void_type_node,
698 cp_type_quals (TREE_TYPE (from))));
699 conv = build_conv (ck_ptr, from, conv);
701 else if (TYPE_PTRMEM_P (from))
703 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
704 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
706 if (DERIVED_FROM_P (fbase, tbase)
707 && (same_type_ignoring_top_level_qualifiers_p
708 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
709 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
711 from = build_ptrmem_type (tbase,
712 TYPE_PTRMEM_POINTED_TO_TYPE (from));
713 conv = build_conv (ck_pmem, from, conv);
716 else if (IS_AGGR_TYPE (TREE_TYPE (from))
717 && IS_AGGR_TYPE (TREE_TYPE (to))
718 /* [conv.ptr]
720 An rvalue of type "pointer to cv D," where D is a
721 class type, can be converted to an rvalue of type
722 "pointer to cv B," where B is a base class (clause
723 _class.derived_) of D. If B is an inaccessible
724 (clause _class.access_) or ambiguous
725 (_class.member.lookup_) base class of D, a program
726 that necessitates this conversion is ill-formed. */
727 /* Therefore, we use DERIVED_FROM_P, and not
728 ACCESSIBLY_UNIQUELY_DERIVED_FROM_P, in this test. */
729 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
731 from =
732 cp_build_qualified_type (TREE_TYPE (to),
733 cp_type_quals (TREE_TYPE (from)));
734 from = build_pointer_type (from);
735 conv = build_conv (ck_ptr, from, conv);
738 if (tcode == POINTER_TYPE)
740 to_pointee = TREE_TYPE (to);
741 from_pointee = TREE_TYPE (from);
743 else
745 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
746 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
749 if (same_type_p (from, to))
750 /* OK */;
751 else if (comp_ptr_ttypes (to_pointee, from_pointee))
752 conv = build_conv (ck_qual, to, conv);
753 else if (expr && string_conv_p (to, expr, 0))
754 /* converting from string constant to char *. */
755 conv = build_conv (ck_qual, to, conv);
756 else if (ptr_reasonably_similar (to_pointee, from_pointee))
758 conv = build_conv (ck_ptr, to, conv);
759 conv->bad_p = true;
761 else
762 return NULL;
764 from = to;
766 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
768 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
769 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
770 tree fbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn)));
771 tree tbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn)));
773 if (!DERIVED_FROM_P (fbase, tbase)
774 || !same_type_p (TREE_TYPE (fromfn), TREE_TYPE (tofn))
775 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
776 TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
777 || cp_type_quals (fbase) != cp_type_quals (tbase))
778 return 0;
780 from = cp_build_qualified_type (tbase, cp_type_quals (fbase));
781 from = build_method_type_directly (from,
782 TREE_TYPE (fromfn),
783 TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
784 from = build_ptrmemfunc_type (build_pointer_type (from));
785 conv = build_conv (ck_pmem, from, conv);
787 else if (tcode == BOOLEAN_TYPE)
789 /* [conv.bool]
791 An rvalue of arithmetic, enumeration, pointer, or pointer to
792 member type can be converted to an rvalue of type bool. */
793 if (ARITHMETIC_TYPE_P (from)
794 || fcode == ENUMERAL_TYPE
795 || fcode == POINTER_TYPE
796 || TYPE_PTR_TO_MEMBER_P (from))
798 conv = build_conv (ck_std, to, conv);
799 if (fcode == POINTER_TYPE
800 || TYPE_PTRMEM_P (from)
801 || (TYPE_PTRMEMFUNC_P (from)
802 && conv->rank < cr_pbool))
803 conv->rank = cr_pbool;
804 return conv;
807 return NULL;
809 /* We don't check for ENUMERAL_TYPE here because there are no standard
810 conversions to enum type. */
811 else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
812 || tcode == REAL_TYPE)
814 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
815 return 0;
816 conv = build_conv (ck_std, to, conv);
818 /* Give this a better rank if it's a promotion. */
819 if (same_type_p (to, type_promotes_to (from))
820 && conv->u.next->rank <= cr_promotion)
821 conv->rank = cr_promotion;
823 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
824 && vector_types_convertible_p (from, to))
825 return build_conv (ck_std, to, conv);
826 else if (IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
827 && is_properly_derived_from (from, to))
829 if (conv->kind == ck_rvalue)
830 conv = conv->u.next;
831 conv = build_conv (ck_base, to, conv);
832 /* The derived-to-base conversion indicates the initialization
833 of a parameter with base type from an object of a derived
834 type. A temporary object is created to hold the result of
835 the conversion. */
836 conv->need_temporary_p = true;
838 else
839 return NULL;
841 return conv;
844 /* Returns nonzero if T1 is reference-related to T2. */
846 static bool
847 reference_related_p (tree t1, tree t2)
849 t1 = TYPE_MAIN_VARIANT (t1);
850 t2 = TYPE_MAIN_VARIANT (t2);
852 /* [dcl.init.ref]
854 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
855 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
856 of T2. */
857 return (same_type_p (t1, t2)
858 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
859 && DERIVED_FROM_P (t1, t2)));
862 /* Returns nonzero if T1 is reference-compatible with T2. */
864 static bool
865 reference_compatible_p (tree t1, tree t2)
867 /* [dcl.init.ref]
869 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
870 reference-related to T2 and cv1 is the same cv-qualification as,
871 or greater cv-qualification than, cv2. */
872 return (reference_related_p (t1, t2)
873 && at_least_as_qualified_p (t1, t2));
876 /* Determine whether or not the EXPR (of class type S) can be
877 converted to T as in [over.match.ref]. */
879 static conversion *
880 convert_class_to_reference (tree t, tree s, tree expr)
882 tree conversions;
883 tree arglist;
884 conversion *conv;
885 tree reference_type;
886 struct z_candidate *candidates;
887 struct z_candidate *cand;
888 bool any_viable_p;
890 conversions = lookup_conversions (s);
891 if (!conversions)
892 return NULL;
894 /* [over.match.ref]
896 Assuming that "cv1 T" is the underlying type of the reference
897 being initialized, and "cv S" is the type of the initializer
898 expression, with S a class type, the candidate functions are
899 selected as follows:
901 --The conversion functions of S and its base classes are
902 considered. Those that are not hidden within S and yield type
903 "reference to cv2 T2", where "cv1 T" is reference-compatible
904 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
906 The argument list has one argument, which is the initializer
907 expression. */
909 candidates = 0;
911 /* Conceptually, we should take the address of EXPR and put it in
912 the argument list. Unfortunately, however, that can result in
913 error messages, which we should not issue now because we are just
914 trying to find a conversion operator. Therefore, we use NULL,
915 cast to the appropriate type. */
916 arglist = build_int_2 (0, 0);
917 TREE_TYPE (arglist) = build_pointer_type (s);
918 arglist = build_tree_list (NULL_TREE, arglist);
920 reference_type = build_reference_type (t);
922 while (conversions)
924 tree fns = TREE_VALUE (conversions);
926 for (; fns; fns = OVL_NEXT (fns))
928 tree f = OVL_CURRENT (fns);
929 tree t2 = TREE_TYPE (TREE_TYPE (f));
931 cand = NULL;
933 /* If this is a template function, try to get an exact
934 match. */
935 if (TREE_CODE (f) == TEMPLATE_DECL)
937 cand = add_template_candidate (&candidates,
938 f, s,
939 NULL_TREE,
940 arglist,
941 reference_type,
942 TYPE_BINFO (s),
943 TREE_PURPOSE (conversions),
944 LOOKUP_NORMAL,
945 DEDUCE_CONV);
947 if (cand)
949 /* Now, see if the conversion function really returns
950 an lvalue of the appropriate type. From the
951 point of view of unification, simply returning an
952 rvalue of the right type is good enough. */
953 f = cand->fn;
954 t2 = TREE_TYPE (TREE_TYPE (f));
955 if (TREE_CODE (t2) != REFERENCE_TYPE
956 || !reference_compatible_p (t, TREE_TYPE (t2)))
958 candidates = candidates->next;
959 cand = NULL;
963 else if (TREE_CODE (t2) == REFERENCE_TYPE
964 && reference_compatible_p (t, TREE_TYPE (t2)))
965 cand = add_function_candidate (&candidates, f, s, arglist,
966 TYPE_BINFO (s),
967 TREE_PURPOSE (conversions),
968 LOOKUP_NORMAL);
970 if (cand)
972 conversion *identity_conv;
973 /* Build a standard conversion sequence indicating the
974 binding from the reference type returned by the
975 function to the desired REFERENCE_TYPE. */
976 identity_conv
977 = build_identity_conv (TREE_TYPE (TREE_TYPE
978 (TREE_TYPE (cand->fn))),
979 NULL_TREE);
980 cand->second_conv
981 = (direct_reference_binding
982 (reference_type, identity_conv));
983 cand->second_conv->bad_p |= cand->convs[0]->bad_p;
986 conversions = TREE_CHAIN (conversions);
989 candidates = splice_viable (candidates, pedantic, &any_viable_p);
990 /* If none of the conversion functions worked out, let our caller
991 know. */
992 if (!any_viable_p)
993 return NULL;
995 cand = tourney (candidates);
996 if (!cand)
997 return NULL;
999 /* Now that we know that this is the function we're going to use fix
1000 the dummy first argument. */
1001 cand->args = tree_cons (NULL_TREE,
1002 build_this (expr),
1003 TREE_CHAIN (cand->args));
1005 /* Build a user-defined conversion sequence representing the
1006 conversion. */
1007 conv = build_conv (ck_user,
1008 TREE_TYPE (TREE_TYPE (cand->fn)),
1009 build_identity_conv (TREE_TYPE (expr), expr));
1010 conv->cand = cand;
1012 /* Merge it with the standard conversion sequence from the
1013 conversion function's return type to the desired type. */
1014 cand->second_conv = merge_conversion_sequences (conv, cand->second_conv);
1016 if (cand->viable == -1)
1017 conv->bad_p = true;
1019 return cand->second_conv;
1022 /* A reference of the indicated TYPE is being bound directly to the
1023 expression represented by the implicit conversion sequence CONV.
1024 Return a conversion sequence for this binding. */
1026 static conversion *
1027 direct_reference_binding (tree type, conversion *conv)
1029 tree t;
1031 my_friendly_assert (TREE_CODE (type) == REFERENCE_TYPE, 20030306);
1032 my_friendly_assert (TREE_CODE (conv->type) != REFERENCE_TYPE, 20030306);
1034 t = TREE_TYPE (type);
1036 /* [over.ics.rank]
1038 When a parameter of reference type binds directly
1039 (_dcl.init.ref_) to an argument expression, the implicit
1040 conversion sequence is the identity conversion, unless the
1041 argument expression has a type that is a derived class of the
1042 parameter type, in which case the implicit conversion sequence is
1043 a derived-to-base Conversion.
1045 If the parameter binds directly to the result of applying a
1046 conversion function to the argument expression, the implicit
1047 conversion sequence is a user-defined conversion sequence
1048 (_over.ics.user_), with the second standard conversion sequence
1049 either an identity conversion or, if the conversion function
1050 returns an entity of a type that is a derived class of the
1051 parameter type, a derived-to-base conversion. */
1052 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1054 /* Represent the derived-to-base conversion. */
1055 conv = build_conv (ck_base, t, conv);
1056 /* We will actually be binding to the base-class subobject in
1057 the derived class, so we mark this conversion appropriately.
1058 That way, convert_like knows not to generate a temporary. */
1059 conv->need_temporary_p = false;
1061 return build_conv (ck_ref_bind, type, conv);
1064 /* Returns the conversion path from type FROM to reference type TO for
1065 purposes of reference binding. For lvalue binding, either pass a
1066 reference type to FROM or an lvalue expression to EXPR. If the
1067 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1068 the conversion returned. */
1070 static conversion *
1071 reference_binding (tree rto, tree rfrom, tree expr, int flags)
1073 conversion *conv = NULL;
1074 tree to = TREE_TYPE (rto);
1075 tree from = rfrom;
1076 bool related_p;
1077 bool compatible_p;
1078 cp_lvalue_kind lvalue_p = clk_none;
1080 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1082 expr = instantiate_type (to, expr, tf_none);
1083 if (expr == error_mark_node)
1084 return NULL;
1085 from = TREE_TYPE (expr);
1088 if (TREE_CODE (from) == REFERENCE_TYPE)
1090 /* Anything with reference type is an lvalue. */
1091 lvalue_p = clk_ordinary;
1092 from = TREE_TYPE (from);
1094 else if (expr)
1095 lvalue_p = real_lvalue_p (expr);
1097 /* Figure out whether or not the types are reference-related and
1098 reference compatible. We have do do this after stripping
1099 references from FROM. */
1100 related_p = reference_related_p (to, from);
1101 compatible_p = reference_compatible_p (to, from);
1103 if (lvalue_p && compatible_p)
1105 /* [dcl.init.ref]
1107 If the initializer expression
1109 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1110 is reference-compatible with "cv2 T2,"
1112 the reference is bound directly to the initializer expression
1113 lvalue. */
1114 conv = build_identity_conv (from, expr);
1115 conv = direct_reference_binding (rto, conv);
1116 if ((lvalue_p & clk_bitfield) != 0
1117 || ((lvalue_p & clk_packed) != 0 && !TYPE_PACKED (to)))
1118 /* For the purposes of overload resolution, we ignore the fact
1119 this expression is a bitfield or packed field. (In particular,
1120 [over.ics.ref] says specifically that a function with a
1121 non-const reference parameter is viable even if the
1122 argument is a bitfield.)
1124 However, when we actually call the function we must create
1125 a temporary to which to bind the reference. If the
1126 reference is volatile, or isn't const, then we cannot make
1127 a temporary, so we just issue an error when the conversion
1128 actually occurs. */
1129 conv->need_temporary_p = true;
1131 return conv;
1133 else if (CLASS_TYPE_P (from) && !(flags & LOOKUP_NO_CONVERSION))
1135 /* [dcl.init.ref]
1137 If the initializer expression
1139 -- has a class type (i.e., T2 is a class type) can be
1140 implicitly converted to an lvalue of type "cv3 T3," where
1141 "cv1 T1" is reference-compatible with "cv3 T3". (this
1142 conversion is selected by enumerating the applicable
1143 conversion functions (_over.match.ref_) and choosing the
1144 best one through overload resolution. (_over.match_).
1146 the reference is bound to the lvalue result of the conversion
1147 in the second case. */
1148 conv = convert_class_to_reference (to, from, expr);
1149 if (conv)
1150 return conv;
1153 /* From this point on, we conceptually need temporaries, even if we
1154 elide them. Only the cases above are "direct bindings". */
1155 if (flags & LOOKUP_NO_TEMP_BIND)
1156 return NULL;
1158 /* [over.ics.rank]
1160 When a parameter of reference type is not bound directly to an
1161 argument expression, the conversion sequence is the one required
1162 to convert the argument expression to the underlying type of the
1163 reference according to _over.best.ics_. Conceptually, this
1164 conversion sequence corresponds to copy-initializing a temporary
1165 of the underlying type with the argument expression. Any
1166 difference in top-level cv-qualification is subsumed by the
1167 initialization itself and does not constitute a conversion. */
1169 /* [dcl.init.ref]
1171 Otherwise, the reference shall be to a non-volatile const type. */
1172 if (!CP_TYPE_CONST_NON_VOLATILE_P (to))
1173 return NULL;
1175 /* [dcl.init.ref]
1177 If the initializer expression is an rvalue, with T2 a class type,
1178 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1179 is bound in one of the following ways:
1181 -- The reference is bound to the object represented by the rvalue
1182 or to a sub-object within that object.
1184 -- ...
1186 We use the first alternative. The implicit conversion sequence
1187 is supposed to be same as we would obtain by generating a
1188 temporary. Fortunately, if the types are reference compatible,
1189 then this is either an identity conversion or the derived-to-base
1190 conversion, just as for direct binding. */
1191 if (CLASS_TYPE_P (from) && compatible_p)
1193 conv = build_identity_conv (from, expr);
1194 conv = direct_reference_binding (rto, conv);
1195 if (!(flags & LOOKUP_CONSTRUCTOR_CALLABLE))
1196 conv->u.next->check_copy_constructor_p = true;
1197 return conv;
1200 /* [dcl.init.ref]
1202 Otherwise, a temporary of type "cv1 T1" is created and
1203 initialized from the initializer expression using the rules for a
1204 non-reference copy initialization. If T1 is reference-related to
1205 T2, cv1 must be the same cv-qualification as, or greater
1206 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1207 if (related_p && !at_least_as_qualified_p (to, from))
1208 return NULL;
1210 conv = implicit_conversion (to, from, expr, flags);
1211 if (!conv)
1212 return NULL;
1214 conv = build_conv (ck_ref_bind, rto, conv);
1215 /* This reference binding, unlike those above, requires the
1216 creation of a temporary. */
1217 conv->need_temporary_p = true;
1219 return conv;
1222 /* Returns the implicit conversion sequence (see [over.ics]) from type FROM
1223 to type TO. The optional expression EXPR may affect the conversion.
1224 FLAGS are the usual overloading flags. Only LOOKUP_NO_CONVERSION is
1225 significant. */
1227 static conversion *
1228 implicit_conversion (tree to, tree from, tree expr, int flags)
1230 conversion *conv;
1232 if (from == error_mark_node || to == error_mark_node
1233 || expr == error_mark_node)
1234 return NULL;
1236 if (TREE_CODE (to) == REFERENCE_TYPE)
1237 conv = reference_binding (to, from, expr, flags);
1238 else
1239 conv = standard_conversion (to, from, expr);
1241 if (conv)
1242 return conv;
1244 if (expr != NULL_TREE
1245 && (IS_AGGR_TYPE (from)
1246 || IS_AGGR_TYPE (to))
1247 && (flags & LOOKUP_NO_CONVERSION) == 0)
1249 struct z_candidate *cand;
1251 cand = build_user_type_conversion_1
1252 (to, expr, LOOKUP_ONLYCONVERTING);
1253 if (cand)
1254 conv = cand->second_conv;
1256 /* We used to try to bind a reference to a temporary here, but that
1257 is now handled by the recursive call to this function at the end
1258 of reference_binding. */
1259 return conv;
1262 return NULL;
1265 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1266 functions. */
1268 static struct z_candidate *
1269 add_candidate (struct z_candidate **candidates,
1270 tree fn, tree args,
1271 size_t num_convs, conversion **convs,
1272 tree access_path, tree conversion_path,
1273 int viable)
1275 struct z_candidate *cand
1276 = conversion_obstack_alloc (sizeof (struct z_candidate));
1278 cand->fn = fn;
1279 cand->args = args;
1280 cand->convs = convs;
1281 cand->num_convs = num_convs;
1282 cand->access_path = access_path;
1283 cand->conversion_path = conversion_path;
1284 cand->viable = viable;
1285 cand->next = *candidates;
1286 *candidates = cand;
1288 return cand;
1291 /* Create an overload candidate for the function or method FN called with
1292 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
1293 to implicit_conversion.
1295 CTYPE, if non-NULL, is the type we want to pretend this function
1296 comes from for purposes of overload resolution. */
1298 static struct z_candidate *
1299 add_function_candidate (struct z_candidate **candidates,
1300 tree fn, tree ctype, tree arglist,
1301 tree access_path, tree conversion_path,
1302 int flags)
1304 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1305 int i, len;
1306 conversion **convs;
1307 tree parmnode, argnode;
1308 tree orig_arglist;
1309 int viable = 1;
1311 /* Built-in functions that haven't been declared don't really
1312 exist. */
1313 if (DECL_ANTICIPATED (fn))
1314 return NULL;
1316 /* The `this', `in_chrg' and VTT arguments to constructors are not
1317 considered in overload resolution. */
1318 if (DECL_CONSTRUCTOR_P (fn))
1320 parmlist = skip_artificial_parms_for (fn, parmlist);
1321 orig_arglist = arglist;
1322 arglist = skip_artificial_parms_for (fn, arglist);
1324 else
1325 orig_arglist = arglist;
1327 len = list_length (arglist);
1328 convs = alloc_conversions (len);
1330 /* 13.3.2 - Viable functions [over.match.viable]
1331 First, to be a viable function, a candidate function shall have enough
1332 parameters to agree in number with the arguments in the list.
1334 We need to check this first; otherwise, checking the ICSes might cause
1335 us to produce an ill-formed template instantiation. */
1337 parmnode = parmlist;
1338 for (i = 0; i < len; ++i)
1340 if (parmnode == NULL_TREE || parmnode == void_list_node)
1341 break;
1342 parmnode = TREE_CHAIN (parmnode);
1345 if (i < len && parmnode)
1346 viable = 0;
1348 /* Make sure there are default args for the rest of the parms. */
1349 else if (!sufficient_parms_p (parmnode))
1350 viable = 0;
1352 if (! viable)
1353 goto out;
1355 /* Second, for F to be a viable function, there shall exist for each
1356 argument an implicit conversion sequence that converts that argument
1357 to the corresponding parameter of F. */
1359 parmnode = parmlist;
1360 argnode = arglist;
1362 for (i = 0; i < len; ++i)
1364 tree arg = TREE_VALUE (argnode);
1365 tree argtype = lvalue_type (arg);
1366 conversion *t;
1367 int is_this;
1369 if (parmnode == void_list_node)
1370 break;
1372 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1373 && ! DECL_CONSTRUCTOR_P (fn));
1375 if (parmnode)
1377 tree parmtype = TREE_VALUE (parmnode);
1379 /* The type of the implicit object parameter ('this') for
1380 overload resolution is not always the same as for the
1381 function itself; conversion functions are considered to
1382 be members of the class being converted, and functions
1383 introduced by a using-declaration are considered to be
1384 members of the class that uses them.
1386 Since build_over_call ignores the ICS for the `this'
1387 parameter, we can just change the parm type. */
1388 if (ctype && is_this)
1390 parmtype
1391 = build_qualified_type (ctype,
1392 TYPE_QUALS (TREE_TYPE (parmtype)));
1393 parmtype = build_pointer_type (parmtype);
1396 t = implicit_conversion (parmtype, argtype, arg, flags);
1398 else
1400 t = build_identity_conv (argtype, arg);
1401 t->ellipsis_p = true;
1404 if (t && is_this)
1405 t->this_p = true;
1407 convs[i] = t;
1408 if (! t)
1410 viable = 0;
1411 break;
1414 if (t->bad_p)
1415 viable = -1;
1417 if (parmnode)
1418 parmnode = TREE_CHAIN (parmnode);
1419 argnode = TREE_CHAIN (argnode);
1422 out:
1423 return add_candidate (candidates, fn, orig_arglist, len, convs,
1424 access_path, conversion_path, 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 (struct z_candidate **candidates, tree fn, tree obj,
1440 tree arglist, tree access_path, tree conversion_path)
1442 tree totype = TREE_TYPE (TREE_TYPE (fn));
1443 int i, len, viable, flags;
1444 tree parmlist, parmnode, argnode;
1445 conversion **convs;
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 = alloc_conversions (len);
1453 parmnode = parmlist;
1454 argnode = arglist;
1455 viable = 1;
1456 flags = LOOKUP_NORMAL;
1458 /* Don't bother looking up the same type twice. */
1459 if (*candidates && (*candidates)->fn == totype)
1460 return NULL;
1462 for (i = 0; i < len; ++i)
1464 tree arg = i == 0 ? obj : TREE_VALUE (argnode);
1465 tree argtype = lvalue_type (arg);
1466 conversion *t;
1468 if (i == 0)
1469 t = implicit_conversion (totype, argtype, arg, flags);
1470 else if (parmnode == void_list_node)
1471 break;
1472 else if (parmnode)
1473 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg, flags);
1474 else
1476 t = build_identity_conv (argtype, arg);
1477 t->ellipsis_p = true;
1480 convs[i] = t;
1481 if (! t)
1482 break;
1484 if (t->bad_p)
1485 viable = -1;
1487 if (i == 0)
1488 continue;
1490 if (parmnode)
1491 parmnode = TREE_CHAIN (parmnode);
1492 argnode = TREE_CHAIN (argnode);
1495 if (i < len)
1496 viable = 0;
1498 if (!sufficient_parms_p (parmnode))
1499 viable = 0;
1501 return add_candidate (candidates, totype, arglist, len, convs,
1502 access_path, conversion_path, viable);
1505 static void
1506 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
1507 tree type1, tree type2, tree *args, tree *argtypes,
1508 int flags)
1510 conversion *t;
1511 conversion **convs;
1512 size_t num_convs;
1513 int viable = 1, i;
1514 tree types[2];
1516 types[0] = type1;
1517 types[1] = type2;
1519 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
1520 convs = alloc_conversions (num_convs);
1522 for (i = 0; i < 2; ++i)
1524 if (! args[i])
1525 break;
1527 t = implicit_conversion (types[i], argtypes[i], args[i], flags);
1528 if (! t)
1530 viable = 0;
1531 /* We need something for printing the candidate. */
1532 t = build_identity_conv (types[i], NULL_TREE);
1534 else if (t->bad_p)
1535 viable = 0;
1536 convs[i] = t;
1539 /* For COND_EXPR we rearranged the arguments; undo that now. */
1540 if (args[2])
1542 convs[2] = convs[1];
1543 convs[1] = convs[0];
1544 t = implicit_conversion (boolean_type_node, argtypes[2], args[2], flags);
1545 if (t)
1546 convs[0] = t;
1547 else
1548 viable = 0;
1551 add_candidate (candidates, fnname, /*args=*/NULL_TREE,
1552 num_convs, convs,
1553 /*access_path=*/NULL_TREE,
1554 /*conversion_path=*/NULL_TREE,
1555 viable);
1558 static bool
1559 is_complete (tree t)
1561 return COMPLETE_TYPE_P (complete_type (t));
1564 /* Returns nonzero if TYPE is a promoted arithmetic type. */
1566 static bool
1567 promoted_arithmetic_type_p (tree type)
1569 /* [over.built]
1571 In this section, the term promoted integral type is used to refer
1572 to those integral types which are preserved by integral promotion
1573 (including e.g. int and long but excluding e.g. char).
1574 Similarly, the term promoted arithmetic type refers to promoted
1575 integral types plus floating types. */
1576 return ((INTEGRAL_TYPE_P (type)
1577 && same_type_p (type_promotes_to (type), type))
1578 || TREE_CODE (type) == REAL_TYPE);
1581 /* Create any builtin operator overload candidates for the operator in
1582 question given the converted operand types TYPE1 and TYPE2. The other
1583 args are passed through from add_builtin_candidates to
1584 build_builtin_candidate.
1586 TYPE1 and TYPE2 may not be permissible, and we must filter them.
1587 If CODE is requires candidates operands of the same type of the kind
1588 of which TYPE1 and TYPE2 are, we add both candidates
1589 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
1591 static void
1592 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
1593 enum tree_code code2, tree fnname, tree type1,
1594 tree type2, tree *args, tree *argtypes, int flags)
1596 switch (code)
1598 case POSTINCREMENT_EXPR:
1599 case POSTDECREMENT_EXPR:
1600 args[1] = integer_zero_node;
1601 type2 = integer_type_node;
1602 break;
1603 default:
1604 break;
1607 switch (code)
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)
1631 return;
1632 case POSTINCREMENT_EXPR:
1633 case PREINCREMENT_EXPR:
1634 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
1636 type1 = build_reference_type (type1);
1637 break;
1639 return;
1641 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
1642 exist candidate operator functions of the form
1644 T& operator*(T*);
1646 8 For every function type T, there exist candidate operator functions of
1647 the form
1648 T& operator*(T*); */
1650 case INDIRECT_REF:
1651 if (TREE_CODE (type1) == POINTER_TYPE
1652 && (TYPE_PTROB_P (type1)
1653 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
1654 break;
1655 return;
1657 /* 9 For every type T, there exist candidate operator functions of the form
1658 T* operator+(T*);
1660 10For every promoted arithmetic type T, there exist candidate operator
1661 functions of the form
1662 T operator+(T);
1663 T operator-(T); */
1665 case CONVERT_EXPR: /* unary + */
1666 if (TREE_CODE (type1) == POINTER_TYPE)
1667 break;
1668 case NEGATE_EXPR:
1669 if (ARITHMETIC_TYPE_P (type1))
1670 break;
1671 return;
1673 /* 11For every promoted integral type T, there exist candidate operator
1674 functions of the form
1675 T operator~(T); */
1677 case BIT_NOT_EXPR:
1678 if (INTEGRAL_TYPE_P (type1))
1679 break;
1680 return;
1682 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1683 is the same type as C2 or is a derived class of C2, T is a complete
1684 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1685 there exist candidate operator functions of the form
1686 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1687 where CV12 is the union of CV1 and CV2. */
1689 case MEMBER_REF:
1690 if (TREE_CODE (type1) == POINTER_TYPE
1691 && TYPE_PTR_TO_MEMBER_P (type2))
1693 tree c1 = TREE_TYPE (type1);
1694 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
1696 if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
1697 && (TYPE_PTRMEMFUNC_P (type2)
1698 || is_complete (TREE_TYPE (TREE_TYPE (type2)))))
1699 break;
1701 return;
1703 /* 13For every pair of promoted arithmetic types L and R, there exist can-
1704 didate operator functions of the form
1705 LR operator*(L, R);
1706 LR operator/(L, R);
1707 LR operator+(L, R);
1708 LR operator-(L, R);
1709 bool operator<(L, R);
1710 bool operator>(L, R);
1711 bool operator<=(L, R);
1712 bool operator>=(L, R);
1713 bool operator==(L, R);
1714 bool operator!=(L, R);
1715 where LR is the result of the usual arithmetic conversions between
1716 types L and R.
1718 14For every pair of types T and I, where T is a cv-qualified or cv-
1719 unqualified complete object type and I is a promoted integral type,
1720 there exist candidate operator functions of the form
1721 T* operator+(T*, I);
1722 T& operator[](T*, I);
1723 T* operator-(T*, I);
1724 T* operator+(I, T*);
1725 T& operator[](I, T*);
1727 15For every T, where T is a pointer to complete object type, there exist
1728 candidate operator functions of the form112)
1729 ptrdiff_t operator-(T, T);
1731 16For every pointer or enumeration type T, there exist candidate operator
1732 functions of the form
1733 bool operator<(T, T);
1734 bool operator>(T, T);
1735 bool operator<=(T, T);
1736 bool operator>=(T, T);
1737 bool operator==(T, T);
1738 bool operator!=(T, T);
1740 17For every pointer to member type T, there exist candidate operator
1741 functions of the form
1742 bool operator==(T, T);
1743 bool operator!=(T, T); */
1745 case MINUS_EXPR:
1746 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
1747 break;
1748 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1750 type2 = ptrdiff_type_node;
1751 break;
1753 case MULT_EXPR:
1754 case TRUNC_DIV_EXPR:
1755 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1756 break;
1757 return;
1759 case EQ_EXPR:
1760 case NE_EXPR:
1761 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1762 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
1763 break;
1764 if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
1766 type2 = type1;
1767 break;
1769 if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
1771 type1 = type2;
1772 break;
1774 /* Fall through. */
1775 case LT_EXPR:
1776 case GT_EXPR:
1777 case LE_EXPR:
1778 case GE_EXPR:
1779 case MAX_EXPR:
1780 case MIN_EXPR:
1781 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1782 break;
1783 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1784 break;
1785 if (TREE_CODE (type1) == ENUMERAL_TYPE && TREE_CODE (type2) == ENUMERAL_TYPE)
1786 break;
1787 if (TYPE_PTR_P (type1) && null_ptr_cst_p (args[1]))
1789 type2 = type1;
1790 break;
1792 if (null_ptr_cst_p (args[0]) && TYPE_PTR_P (type2))
1794 type1 = type2;
1795 break;
1797 return;
1799 case PLUS_EXPR:
1800 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1801 break;
1802 case ARRAY_REF:
1803 if (INTEGRAL_TYPE_P (type1) && TYPE_PTROB_P (type2))
1805 type1 = ptrdiff_type_node;
1806 break;
1808 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1810 type2 = ptrdiff_type_node;
1811 break;
1813 return;
1815 /* 18For every pair of promoted integral types L and R, there exist candi-
1816 date operator functions of the form
1817 LR operator%(L, R);
1818 LR operator&(L, R);
1819 LR operator^(L, R);
1820 LR operator|(L, R);
1821 L operator<<(L, R);
1822 L operator>>(L, R);
1823 where LR is the result of the usual arithmetic conversions between
1824 types L and R. */
1826 case TRUNC_MOD_EXPR:
1827 case BIT_AND_EXPR:
1828 case BIT_IOR_EXPR:
1829 case BIT_XOR_EXPR:
1830 case LSHIFT_EXPR:
1831 case RSHIFT_EXPR:
1832 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1833 break;
1834 return;
1836 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1837 type, VQ is either volatile or empty, and R is a promoted arithmetic
1838 type, there exist candidate operator functions of the form
1839 VQ L& operator=(VQ L&, R);
1840 VQ L& operator*=(VQ L&, R);
1841 VQ L& operator/=(VQ L&, R);
1842 VQ L& operator+=(VQ L&, R);
1843 VQ L& operator-=(VQ L&, R);
1845 20For every pair T, VQ), where T is any type and VQ is either volatile
1846 or empty, there exist candidate operator functions of the form
1847 T*VQ& operator=(T*VQ&, T*);
1849 21For every pair T, VQ), where T is a pointer to member type and VQ is
1850 either volatile or empty, there exist candidate operator functions of
1851 the form
1852 VQ T& operator=(VQ T&, T);
1854 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1855 unqualified complete object type, VQ is either volatile or empty, and
1856 I is a promoted integral type, there exist candidate operator func-
1857 tions of the form
1858 T*VQ& operator+=(T*VQ&, I);
1859 T*VQ& operator-=(T*VQ&, I);
1861 23For every triple L, VQ, R), where L is an integral or enumeration
1862 type, VQ is either volatile or empty, and R is a promoted integral
1863 type, there exist candidate operator functions of the form
1865 VQ L& operator%=(VQ L&, R);
1866 VQ L& operator<<=(VQ L&, R);
1867 VQ L& operator>>=(VQ L&, R);
1868 VQ L& operator&=(VQ L&, R);
1869 VQ L& operator^=(VQ L&, R);
1870 VQ L& operator|=(VQ L&, R); */
1872 case MODIFY_EXPR:
1873 switch (code2)
1875 case PLUS_EXPR:
1876 case MINUS_EXPR:
1877 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1879 type2 = ptrdiff_type_node;
1880 break;
1882 case MULT_EXPR:
1883 case TRUNC_DIV_EXPR:
1884 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1885 break;
1886 return;
1888 case TRUNC_MOD_EXPR:
1889 case BIT_AND_EXPR:
1890 case BIT_IOR_EXPR:
1891 case BIT_XOR_EXPR:
1892 case LSHIFT_EXPR:
1893 case RSHIFT_EXPR:
1894 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1895 break;
1896 return;
1898 case NOP_EXPR:
1899 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1900 break;
1901 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1902 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1903 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1904 || ((TYPE_PTRMEMFUNC_P (type1)
1905 || TREE_CODE (type1) == POINTER_TYPE)
1906 && null_ptr_cst_p (args[1])))
1908 type2 = type1;
1909 break;
1911 return;
1913 default:
1914 abort ();
1916 type1 = build_reference_type (type1);
1917 break;
1919 case COND_EXPR:
1920 /* [over.built]
1922 For every pair of promoted arithmetic types L and R, there
1923 exist candidate operator functions of the form
1925 LR operator?(bool, L, R);
1927 where LR is the result of the usual arithmetic conversions
1928 between types L and R.
1930 For every type T, where T is a pointer or pointer-to-member
1931 type, there exist candidate operator functions of the form T
1932 operator?(bool, T, T); */
1934 if (promoted_arithmetic_type_p (type1)
1935 && promoted_arithmetic_type_p (type2))
1936 /* That's OK. */
1937 break;
1939 /* Otherwise, the types should be pointers. */
1940 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
1941 || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
1942 return;
1944 /* We don't check that the two types are the same; the logic
1945 below will actually create two candidates; one in which both
1946 parameter types are TYPE1, and one in which both parameter
1947 types are TYPE2. */
1948 break;
1950 default:
1951 abort ();
1954 /* If we're dealing with two pointer types or two enumeral types,
1955 we need candidates for both of them. */
1956 if (type2 && !same_type_p (type1, type2)
1957 && TREE_CODE (type1) == TREE_CODE (type2)
1958 && (TREE_CODE (type1) == REFERENCE_TYPE
1959 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1960 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1961 || TYPE_PTRMEMFUNC_P (type1)
1962 || IS_AGGR_TYPE (type1)
1963 || TREE_CODE (type1) == ENUMERAL_TYPE))
1965 build_builtin_candidate
1966 (candidates, fnname, type1, type1, args, argtypes, flags);
1967 build_builtin_candidate
1968 (candidates, fnname, type2, type2, args, argtypes, flags);
1969 return;
1972 build_builtin_candidate
1973 (candidates, fnname, type1, type2, args, argtypes, flags);
1976 tree
1977 type_decays_to (tree type)
1979 if (TREE_CODE (type) == ARRAY_TYPE)
1980 return build_pointer_type (TREE_TYPE (type));
1981 if (TREE_CODE (type) == FUNCTION_TYPE)
1982 return build_pointer_type (type);
1983 return type;
1986 /* There are three conditions of builtin candidates:
1988 1) bool-taking candidates. These are the same regardless of the input.
1989 2) pointer-pair taking candidates. These are generated for each type
1990 one of the input types converts to.
1991 3) arithmetic candidates. According to the standard, we should generate
1992 all of these, but I'm trying not to...
1994 Here we generate a superset of the possible candidates for this particular
1995 case. That is a subset of the full set the standard defines, plus some
1996 other cases which the standard disallows. add_builtin_candidate will
1997 filter out the invalid set. */
1999 static void
2000 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2001 enum tree_code code2, tree fnname, tree *args,
2002 int flags)
2004 int ref1, i;
2005 int enum_p = 0;
2006 tree type, argtypes[3];
2007 /* TYPES[i] is the set of possible builtin-operator parameter types
2008 we will consider for the Ith argument. These are represented as
2009 a TREE_LIST; the TREE_VALUE of each node is the potential
2010 parameter type. */
2011 tree types[2];
2013 for (i = 0; i < 3; ++i)
2015 if (args[i])
2016 argtypes[i] = lvalue_type (args[i]);
2017 else
2018 argtypes[i] = NULL_TREE;
2021 switch (code)
2023 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2024 and VQ is either volatile or empty, there exist candidate operator
2025 functions of the form
2026 VQ T& operator++(VQ T&); */
2028 case POSTINCREMENT_EXPR:
2029 case PREINCREMENT_EXPR:
2030 case POSTDECREMENT_EXPR:
2031 case PREDECREMENT_EXPR:
2032 case MODIFY_EXPR:
2033 ref1 = 1;
2034 break;
2036 /* 24There also exist candidate operator functions of the form
2037 bool operator!(bool);
2038 bool operator&&(bool, bool);
2039 bool operator||(bool, bool); */
2041 case TRUTH_NOT_EXPR:
2042 build_builtin_candidate
2043 (candidates, fnname, boolean_type_node,
2044 NULL_TREE, args, argtypes, flags);
2045 return;
2047 case TRUTH_ORIF_EXPR:
2048 case TRUTH_ANDIF_EXPR:
2049 build_builtin_candidate
2050 (candidates, fnname, boolean_type_node,
2051 boolean_type_node, args, argtypes, flags);
2052 return;
2054 case ADDR_EXPR:
2055 case COMPOUND_EXPR:
2056 case COMPONENT_REF:
2057 return;
2059 case COND_EXPR:
2060 case EQ_EXPR:
2061 case NE_EXPR:
2062 case LT_EXPR:
2063 case LE_EXPR:
2064 case GT_EXPR:
2065 case GE_EXPR:
2066 enum_p = 1;
2067 /* Fall through. */
2069 default:
2070 ref1 = 0;
2073 types[0] = types[1] = NULL_TREE;
2075 for (i = 0; i < 2; ++i)
2077 if (! args[i])
2079 else if (IS_AGGR_TYPE (argtypes[i]))
2081 tree convs;
2083 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2084 return;
2086 convs = lookup_conversions (argtypes[i]);
2088 if (code == COND_EXPR)
2090 if (real_lvalue_p (args[i]))
2091 types[i] = tree_cons
2092 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2094 types[i] = tree_cons
2095 (NULL_TREE, TYPE_MAIN_VARIANT (argtypes[i]), types[i]);
2098 else if (! convs)
2099 return;
2101 for (; convs; convs = TREE_CHAIN (convs))
2103 type = TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs))));
2105 if (i == 0 && ref1
2106 && (TREE_CODE (type) != REFERENCE_TYPE
2107 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2108 continue;
2110 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2111 types[i] = tree_cons (NULL_TREE, type, types[i]);
2113 type = non_reference (type);
2114 if (i != 0 || ! ref1)
2116 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2117 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2118 types[i] = tree_cons (NULL_TREE, type, types[i]);
2119 if (INTEGRAL_TYPE_P (type))
2120 type = type_promotes_to (type);
2123 if (! value_member (type, types[i]))
2124 types[i] = tree_cons (NULL_TREE, type, types[i]);
2127 else
2129 if (code == COND_EXPR && real_lvalue_p (args[i]))
2130 types[i] = tree_cons
2131 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2132 type = non_reference (argtypes[i]);
2133 if (i != 0 || ! ref1)
2135 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2136 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2137 types[i] = tree_cons (NULL_TREE, type, types[i]);
2138 if (INTEGRAL_TYPE_P (type))
2139 type = type_promotes_to (type);
2141 types[i] = tree_cons (NULL_TREE, type, types[i]);
2145 /* Run through the possible parameter types of both arguments,
2146 creating candidates with those parameter types. */
2147 for (; types[0]; types[0] = TREE_CHAIN (types[0]))
2149 if (types[1])
2150 for (type = types[1]; type; type = TREE_CHAIN (type))
2151 add_builtin_candidate
2152 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2153 TREE_VALUE (type), args, argtypes, flags);
2154 else
2155 add_builtin_candidate
2156 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2157 NULL_TREE, args, argtypes, flags);
2160 return;
2164 /* If TMPL can be successfully instantiated as indicated by
2165 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2167 TMPL is the template. EXPLICIT_TARGS are any explicit template
2168 arguments. ARGLIST is the arguments provided at the call-site.
2169 The RETURN_TYPE is the desired type for conversion operators. If
2170 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2171 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
2172 add_conv_candidate. */
2174 static struct z_candidate*
2175 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2176 tree ctype, tree explicit_targs, tree arglist,
2177 tree return_type, tree access_path,
2178 tree conversion_path, int flags, tree obj,
2179 unification_kind_t strict)
2181 int ntparms = DECL_NTPARMS (tmpl);
2182 tree targs = make_tree_vec (ntparms);
2183 tree args_without_in_chrg = arglist;
2184 struct z_candidate *cand;
2185 int i;
2186 tree fn;
2188 /* We don't do deduction on the in-charge parameter, the VTT
2189 parameter or 'this'. */
2190 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2191 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2193 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2194 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2195 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (tmpl)))
2196 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2198 i = fn_type_unification (tmpl, explicit_targs, targs,
2199 args_without_in_chrg,
2200 return_type, strict, -1);
2202 if (i != 0)
2203 return NULL;
2205 fn = instantiate_template (tmpl, targs, tf_none);
2206 if (fn == error_mark_node)
2207 return NULL;
2209 /* In [class.copy]:
2211 A member function template is never instantiated to perform the
2212 copy of a class object to an object of its class type.
2214 It's a little unclear what this means; the standard explicitly
2215 does allow a template to be used to copy a class. For example,
2218 struct A {
2219 A(A&);
2220 template <class T> A(const T&);
2222 const A f ();
2223 void g () { A a (f ()); }
2225 the member template will be used to make the copy. The section
2226 quoted above appears in the paragraph that forbids constructors
2227 whose only parameter is (a possibly cv-qualified variant of) the
2228 class type, and a logical interpretation is that the intent was
2229 to forbid the instantiation of member templates which would then
2230 have that form. */
2231 if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2)
2233 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2234 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2235 ctype))
2236 return NULL;
2239 if (obj != NULL_TREE)
2240 /* Aha, this is a conversion function. */
2241 cand = add_conv_candidate (candidates, fn, obj, access_path,
2242 conversion_path, arglist);
2243 else
2244 cand = add_function_candidate (candidates, fn, ctype,
2245 arglist, access_path,
2246 conversion_path, flags);
2247 if (DECL_TI_TEMPLATE (fn) != tmpl)
2248 /* This situation can occur if a member template of a template
2249 class is specialized. Then, instantiate_template might return
2250 an instantiation of the specialization, in which case the
2251 DECL_TI_TEMPLATE field will point at the original
2252 specialization. For example:
2254 template <class T> struct S { template <class U> void f(U);
2255 template <> void f(int) {}; };
2256 S<double> sd;
2257 sd.f(3);
2259 Here, TMPL will be template <class U> S<double>::f(U).
2260 And, instantiate template will give us the specialization
2261 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2262 for this will point at template <class T> template <> S<T>::f(int),
2263 so that we can find the definition. For the purposes of
2264 overload resolution, however, we want the original TMPL. */
2265 cand->template = tree_cons (tmpl, targs, NULL_TREE);
2266 else
2267 cand->template = DECL_TEMPLATE_INFO (fn);
2269 return cand;
2273 static struct z_candidate *
2274 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
2275 tree explicit_targs, tree arglist, tree return_type,
2276 tree access_path, tree conversion_path, int flags,
2277 unification_kind_t strict)
2279 return
2280 add_template_candidate_real (candidates, tmpl, ctype,
2281 explicit_targs, arglist, return_type,
2282 access_path, conversion_path,
2283 flags, NULL_TREE, strict);
2287 static struct z_candidate *
2288 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
2289 tree obj, tree arglist, tree return_type,
2290 tree access_path, tree conversion_path)
2292 return
2293 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
2294 arglist, return_type, access_path,
2295 conversion_path, 0, obj, DEDUCE_CONV);
2298 /* The CANDS are the set of candidates that were considered for
2299 overload resolution. Return the set of viable candidates. If none
2300 of the candidates were viable, set *ANY_VIABLE_P to true. STRICT_P
2301 is true if a candidate should be considered viable only if it is
2302 strictly viable. */
2304 static struct z_candidate*
2305 splice_viable (struct z_candidate *cands,
2306 bool strict_p,
2307 bool *any_viable_p)
2309 struct z_candidate *viable;
2310 struct z_candidate **last_viable;
2311 struct z_candidate **cand;
2313 viable = NULL;
2314 last_viable = &viable;
2315 *any_viable_p = false;
2317 cand = &cands;
2318 while (*cand)
2320 struct z_candidate *c = *cand;
2321 if (strict_p ? c->viable == 1 : c->viable)
2323 *last_viable = c;
2324 *cand = c->next;
2325 c->next = NULL;
2326 last_viable = &c->next;
2327 *any_viable_p = true;
2329 else
2330 cand = &c->next;
2333 return viable ? viable : cands;
2336 static bool
2337 any_strictly_viable (struct z_candidate *cands)
2339 for (; cands; cands = cands->next)
2340 if (cands->viable == 1)
2341 return true;
2342 return false;
2345 static tree
2346 build_this (tree obj)
2348 /* Fix this to work on non-lvalues. */
2349 return build_unary_op (ADDR_EXPR, obj, 0);
2352 /* Returns true iff functions are equivalent. Equivalent functions are
2353 not '==' only if one is a function-local extern function or if
2354 both are extern "C". */
2356 static inline int
2357 equal_functions (tree fn1, tree fn2)
2359 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
2360 || DECL_EXTERN_C_FUNCTION_P (fn1))
2361 return decls_match (fn1, fn2);
2362 return fn1 == fn2;
2365 /* Print information about one overload candidate CANDIDATE. MSGSTR
2366 is the text to print before the candidate itself.
2368 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
2369 to have been run through gettext by the caller. This wart makes
2370 life simpler in print_z_candidates and for the translators. */
2372 static void
2373 print_z_candidate (const char *msgstr, struct z_candidate *candidate)
2375 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
2377 if (candidate->num_convs == 3)
2378 inform ("%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn,
2379 candidate->convs[0]->type,
2380 candidate->convs[1]->type,
2381 candidate->convs[2]->type);
2382 else if (candidate->num_convs == 2)
2383 inform ("%s %D(%T, %T) <built-in>", msgstr, candidate->fn,
2384 candidate->convs[0]->type,
2385 candidate->convs[1]->type);
2386 else
2387 inform ("%s %D(%T) <built-in>", msgstr, candidate->fn,
2388 candidate->convs[0]->type);
2390 else if (TYPE_P (candidate->fn))
2391 inform ("%s %T <conversion>", msgstr, candidate->fn);
2392 else if (candidate->viable == -1)
2393 inform ("%J%s %+#D <near match>", candidate->fn, msgstr, candidate->fn);
2394 else
2395 inform ("%J%s %+#D", candidate->fn, msgstr, candidate->fn);
2398 static void
2399 print_z_candidates (struct z_candidate *candidates)
2401 const char *str;
2402 struct z_candidate *cand1;
2403 struct z_candidate **cand2;
2405 /* There may be duplicates in the set of candidates. We put off
2406 checking this condition as long as possible, since we have no way
2407 to eliminate duplicates from a set of functions in less than n^2
2408 time. Now we are about to emit an error message, so it is more
2409 permissible to go slowly. */
2410 for (cand1 = candidates; cand1; cand1 = cand1->next)
2412 tree fn = cand1->fn;
2413 /* Skip builtin candidates and conversion functions. */
2414 if (TREE_CODE (fn) != FUNCTION_DECL)
2415 continue;
2416 cand2 = &cand1->next;
2417 while (*cand2)
2419 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
2420 && equal_functions (fn, (*cand2)->fn))
2421 *cand2 = (*cand2)->next;
2422 else
2423 cand2 = &(*cand2)->next;
2427 if (!candidates)
2428 return;
2430 str = _("candidates are:");
2431 print_z_candidate (str, candidates);
2432 if (candidates->next)
2434 /* Indent successive candidates by the width of the translation
2435 of the above string. */
2436 size_t len = gcc_gettext_width (str) + 1;
2437 char *spaces = alloca (len);
2438 memset (spaces, ' ', len-1);
2439 spaces[len - 1] = '\0';
2441 candidates = candidates->next;
2444 print_z_candidate (spaces, candidates);
2445 candidates = candidates->next;
2447 while (candidates);
2451 /* USER_SEQ is a user-defined conversion sequence, beginning with a
2452 USER_CONV. STD_SEQ is the standard conversion sequence applied to
2453 the result of the conversion function to convert it to the final
2454 desired type. Merge the the two sequences into a single sequence,
2455 and return the merged sequence. */
2457 static conversion *
2458 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
2460 conversion **t;
2462 my_friendly_assert (user_seq->kind == ck_user, 20030306);
2464 /* Find the end of the second conversion sequence. */
2465 t = &(std_seq);
2466 while ((*t)->kind != ck_identity)
2467 t = &((*t)->u.next);
2469 /* Replace the identity conversion with the user conversion
2470 sequence. */
2471 *t = user_seq;
2473 /* The entire sequence is a user-conversion sequence. */
2474 std_seq->user_conv_p = true;
2476 return std_seq;
2479 /* Returns the best overload candidate to perform the requested
2480 conversion. This function is used for three the overloading situations
2481 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2482 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2483 per [dcl.init.ref], so we ignore temporary bindings. */
2485 static struct z_candidate *
2486 build_user_type_conversion_1 (tree totype, tree expr, int flags)
2488 struct z_candidate *candidates, *cand;
2489 tree fromtype = TREE_TYPE (expr);
2490 tree ctors = NULL_TREE;
2491 tree conv_fns = NULL_TREE;
2492 conversion *conv = NULL;
2493 tree args = NULL_TREE;
2494 bool any_viable_p;
2496 /* We represent conversion within a hierarchy using RVALUE_CONV and
2497 BASE_CONV, as specified by [over.best.ics]; these become plain
2498 constructor calls, as specified in [dcl.init]. */
2499 my_friendly_assert (!IS_AGGR_TYPE (fromtype) || !IS_AGGR_TYPE (totype)
2500 || !DERIVED_FROM_P (totype, fromtype), 20011226);
2502 if (IS_AGGR_TYPE (totype))
2503 ctors = lookup_fnfields (TYPE_BINFO (totype),
2504 complete_ctor_identifier,
2507 if (IS_AGGR_TYPE (fromtype))
2508 conv_fns = lookup_conversions (fromtype);
2510 candidates = 0;
2511 flags |= LOOKUP_NO_CONVERSION;
2513 if (ctors)
2515 tree t;
2517 ctors = BASELINK_FUNCTIONS (ctors);
2519 t = build_int_2 (0, 0);
2520 TREE_TYPE (t) = build_pointer_type (totype);
2521 args = build_tree_list (NULL_TREE, expr);
2522 /* We should never try to call the abstract or base constructor
2523 from here. */
2524 my_friendly_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
2525 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)),
2526 20011226);
2527 args = tree_cons (NULL_TREE, t, args);
2529 for (; ctors; ctors = OVL_NEXT (ctors))
2531 tree ctor = OVL_CURRENT (ctors);
2532 if (DECL_NONCONVERTING_P (ctor))
2533 continue;
2535 if (TREE_CODE (ctor) == TEMPLATE_DECL)
2536 cand = add_template_candidate (&candidates, ctor, totype,
2537 NULL_TREE, args, NULL_TREE,
2538 TYPE_BINFO (totype),
2539 TYPE_BINFO (totype),
2540 flags,
2541 DEDUCE_CALL);
2542 else
2543 cand = add_function_candidate (&candidates, ctor, totype,
2544 args, TYPE_BINFO (totype),
2545 TYPE_BINFO (totype),
2546 flags);
2548 if (cand)
2549 cand->second_conv = build_identity_conv (totype, NULL_TREE);
2552 if (conv_fns)
2553 args = build_tree_list (NULL_TREE, build_this (expr));
2555 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
2557 tree fns;
2558 tree conversion_path = TREE_PURPOSE (conv_fns);
2559 int convflags = LOOKUP_NO_CONVERSION;
2561 /* If we are called to convert to a reference type, we are trying to
2562 find an lvalue binding, so don't even consider temporaries. If
2563 we don't find an lvalue binding, the caller will try again to
2564 look for a temporary binding. */
2565 if (TREE_CODE (totype) == REFERENCE_TYPE)
2566 convflags |= LOOKUP_NO_TEMP_BIND;
2568 for (fns = TREE_VALUE (conv_fns); fns; fns = OVL_NEXT (fns))
2570 tree fn = OVL_CURRENT (fns);
2572 /* [over.match.funcs] For conversion functions, the function
2573 is considered to be a member of the class of the implicit
2574 object argument for the purpose of defining the type of
2575 the implicit object parameter.
2577 So we pass fromtype as CTYPE to add_*_candidate. */
2579 if (TREE_CODE (fn) == TEMPLATE_DECL)
2580 cand = add_template_candidate (&candidates, fn, fromtype,
2581 NULL_TREE,
2582 args, totype,
2583 TYPE_BINFO (fromtype),
2584 conversion_path,
2585 flags,
2586 DEDUCE_CONV);
2587 else
2588 cand = add_function_candidate (&candidates, fn, fromtype,
2589 args,
2590 TYPE_BINFO (fromtype),
2591 conversion_path,
2592 flags);
2594 if (cand)
2596 conversion *ics
2597 = implicit_conversion (totype,
2598 TREE_TYPE (TREE_TYPE (cand->fn)),
2599 0, convflags);
2601 cand->second_conv = ics;
2603 if (!ics)
2604 cand->viable = 0;
2605 else if (candidates->viable == 1 && ics->bad_p)
2606 cand->viable = -1;
2611 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2612 if (!any_viable_p)
2613 return 0;
2615 cand = tourney (candidates);
2616 if (cand == 0)
2618 if (flags & LOOKUP_COMPLAIN)
2620 error ("conversion from `%T' to `%T' is ambiguous",
2621 fromtype, totype);
2622 print_z_candidates (candidates);
2625 cand = candidates; /* any one will do */
2626 cand->second_conv = build_ambiguous_conv (totype, expr);
2627 cand->second_conv->user_conv_p = true;
2628 if (!any_strictly_viable (candidates))
2629 cand->second_conv->bad_p = true;
2630 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
2631 ambiguous conversion is no worse than another user-defined
2632 conversion. */
2634 return cand;
2637 /* Build the user conversion sequence. */
2638 conv = build_conv
2639 (ck_user,
2640 (DECL_CONSTRUCTOR_P (cand->fn)
2641 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
2642 build_identity_conv (TREE_TYPE (expr), expr));
2643 conv->cand = cand;
2645 /* Combine it with the second conversion sequence. */
2646 cand->second_conv = merge_conversion_sequences (conv,
2647 cand->second_conv);
2649 if (cand->viable == -1)
2650 cand->second_conv->bad_p = true;
2652 return cand;
2655 tree
2656 build_user_type_conversion (tree totype, tree expr, int flags)
2658 struct z_candidate *cand
2659 = build_user_type_conversion_1 (totype, expr, flags);
2661 if (cand)
2663 if (cand->second_conv->kind == ck_ambig)
2664 return error_mark_node;
2665 return convert_from_reference (convert_like (cand->second_conv, expr));
2667 return NULL_TREE;
2670 /* Do any initial processing on the arguments to a function call. */
2672 static tree
2673 resolve_args (tree args)
2675 tree t;
2676 for (t = args; t; t = TREE_CHAIN (t))
2678 tree arg = TREE_VALUE (t);
2680 if (arg == error_mark_node)
2681 return error_mark_node;
2682 else if (VOID_TYPE_P (TREE_TYPE (arg)))
2684 error ("invalid use of void expression");
2685 return error_mark_node;
2687 arg = convert_from_reference (arg);
2688 TREE_VALUE (t) = arg;
2690 return args;
2693 /* Perform overload resolution on FN, which is called with the ARGS.
2695 Return the candidate function selected by overload resolution, or
2696 NULL if the event that overload resolution failed. In the case
2697 that overload resolution fails, *CANDIDATES will be the set of
2698 candidates considered, and ANY_VIABLE_P will be set to true or
2699 false to indicate whether or not any of the candidates were
2700 viable.
2702 The ARGS should already have gone through RESOLVE_ARGS before this
2703 function is called. */
2705 static struct z_candidate *
2706 perform_overload_resolution (tree fn,
2707 tree args,
2708 struct z_candidate **candidates,
2709 bool *any_viable_p)
2711 struct z_candidate *cand;
2712 tree explicit_targs = NULL_TREE;
2713 int template_only = 0;
2715 *candidates = NULL;
2716 *any_viable_p = true;
2718 /* Check FN and ARGS. */
2719 my_friendly_assert (TREE_CODE (fn) == FUNCTION_DECL
2720 || TREE_CODE (fn) == TEMPLATE_DECL
2721 || TREE_CODE (fn) == OVERLOAD
2722 || TREE_CODE (fn) == TEMPLATE_ID_EXPR,
2723 20020712);
2724 my_friendly_assert (!args || TREE_CODE (args) == TREE_LIST,
2725 20020712);
2727 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2729 explicit_targs = TREE_OPERAND (fn, 1);
2730 fn = TREE_OPERAND (fn, 0);
2731 template_only = 1;
2734 /* Add the various candidate functions. */
2735 add_candidates (fn, args, explicit_targs, template_only,
2736 /*conversion_path=*/NULL_TREE,
2737 /*access_path=*/NULL_TREE,
2738 LOOKUP_NORMAL,
2739 candidates);
2741 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
2742 if (!*any_viable_p)
2743 return NULL;
2745 cand = tourney (*candidates);
2746 return cand;
2749 /* Return an expression for a call to FN (a namespace-scope function,
2750 or a static member function) with the ARGS. */
2752 tree
2753 build_new_function_call (tree fn, tree args)
2755 struct z_candidate *candidates, *cand;
2756 bool any_viable_p;
2757 void *p;
2758 tree result;
2760 args = resolve_args (args);
2761 if (args == error_mark_node)
2762 return error_mark_node;
2764 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2765 p = conversion_obstack_alloc (0);
2767 cand = perform_overload_resolution (fn, args, &candidates, &any_viable_p);
2769 if (!cand)
2771 if (!any_viable_p && candidates && ! candidates->next)
2772 return build_function_call (candidates->fn, args);
2773 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2774 fn = TREE_OPERAND (fn, 0);
2775 if (!any_viable_p)
2776 error ("no matching function for call to `%D(%A)'",
2777 DECL_NAME (OVL_CURRENT (fn)), args);
2778 else
2779 error ("call of overloaded `%D(%A)' is ambiguous",
2780 DECL_NAME (OVL_CURRENT (fn)), args);
2781 if (candidates)
2782 print_z_candidates (candidates);
2783 result = error_mark_node;
2785 else
2786 result = build_over_call (cand, LOOKUP_NORMAL);
2788 /* Free all the conversions we allocated. */
2789 obstack_free (&conversion_obstack, p);
2791 return result;
2794 /* Build a call to a global operator new. FNNAME is the name of the
2795 operator (either "operator new" or "operator new[]") and ARGS are
2796 the arguments provided. *SIZE points to the total number of bytes
2797 required by the allocation, and is updated if that is changed here.
2798 *COOKIE_SIZE is non-NULL if a cookie should be used. If this
2799 function determines that no cookie should be used, after all,
2800 *COOKIE_SIZE is set to NULL_TREE. */
2802 tree
2803 build_operator_new_call (tree fnname, tree args, tree *size, tree *cookie_size)
2805 tree fns;
2806 struct z_candidate *candidates;
2807 struct z_candidate *cand;
2808 bool any_viable_p;
2810 args = tree_cons (NULL_TREE, *size, args);
2811 args = resolve_args (args);
2812 if (args == error_mark_node)
2813 return args;
2815 /* Based on:
2817 [expr.new]
2819 If this lookup fails to find the name, or if the allocated type
2820 is not a class type, the allocation function's name is looked
2821 up in the global scope.
2823 we disregard block-scope declarations of "operator new". */
2824 fns = lookup_function_nonclass (fnname, args, /*block_p=*/false);
2826 /* Figure out what function is being called. */
2827 cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p);
2829 /* If no suitable function could be found, issue an error message
2830 and give up. */
2831 if (!cand)
2833 if (!any_viable_p)
2834 error ("no matching function for call to `%D(%A)'",
2835 DECL_NAME (OVL_CURRENT (fns)), args);
2836 else
2837 error ("call of overloaded `%D(%A)' is ambiguous",
2838 DECL_NAME (OVL_CURRENT (fns)), args);
2839 if (candidates)
2840 print_z_candidates (candidates);
2841 return error_mark_node;
2844 /* If a cookie is required, add some extra space. Whether
2845 or not a cookie is required cannot be determined until
2846 after we know which function was called. */
2847 if (*cookie_size)
2849 bool use_cookie = true;
2850 if (!abi_version_at_least (2))
2852 tree placement = TREE_CHAIN (args);
2853 /* In G++ 3.2, the check was implemented incorrectly; it
2854 looked at the placement expression, rather than the
2855 type of the function. */
2856 if (placement && !TREE_CHAIN (placement)
2857 && same_type_p (TREE_TYPE (TREE_VALUE (placement)),
2858 ptr_type_node))
2859 use_cookie = false;
2861 else
2863 tree arg_types;
2865 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
2866 /* Skip the size_t parameter. */
2867 arg_types = TREE_CHAIN (arg_types);
2868 /* Check the remaining parameters (if any). */
2869 if (arg_types
2870 && TREE_CHAIN (arg_types) == void_list_node
2871 && same_type_p (TREE_VALUE (arg_types),
2872 ptr_type_node))
2873 use_cookie = false;
2875 /* If we need a cookie, adjust the number of bytes allocated. */
2876 if (use_cookie)
2878 /* Update the total size. */
2879 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
2880 /* Update the argument list to reflect the adjusted size. */
2881 TREE_VALUE (args) = *size;
2883 else
2884 *cookie_size = NULL_TREE;
2887 /* Build the CALL_EXPR. */
2888 return build_over_call (cand, LOOKUP_NORMAL);
2891 static tree
2892 build_object_call (tree obj, tree args)
2894 struct z_candidate *candidates = 0, *cand;
2895 tree fns, convs, mem_args = NULL_TREE;
2896 tree type = TREE_TYPE (obj);
2897 bool any_viable_p;
2898 tree result = NULL_TREE;
2899 void *p;
2901 if (TYPE_PTRMEMFUNC_P (type))
2903 /* It's no good looking for an overloaded operator() on a
2904 pointer-to-member-function. */
2905 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
2906 return error_mark_node;
2909 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
2910 if (fns == error_mark_node)
2911 return error_mark_node;
2913 args = resolve_args (args);
2915 if (args == error_mark_node)
2916 return error_mark_node;
2918 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2919 p = conversion_obstack_alloc (0);
2921 if (fns)
2923 tree base = BINFO_TYPE (BASELINK_BINFO (fns));
2924 mem_args = tree_cons (NULL_TREE, build_this (obj), args);
2926 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
2928 tree fn = OVL_CURRENT (fns);
2929 if (TREE_CODE (fn) == TEMPLATE_DECL)
2930 add_template_candidate (&candidates, fn, base, NULL_TREE,
2931 mem_args, NULL_TREE,
2932 TYPE_BINFO (type),
2933 TYPE_BINFO (type),
2934 LOOKUP_NORMAL, DEDUCE_CALL);
2935 else
2936 add_function_candidate
2937 (&candidates, fn, base, mem_args, TYPE_BINFO (type),
2938 TYPE_BINFO (type), LOOKUP_NORMAL);
2942 convs = lookup_conversions (type);
2944 for (; convs; convs = TREE_CHAIN (convs))
2946 tree fns = TREE_VALUE (convs);
2947 tree totype = TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns)));
2949 if ((TREE_CODE (totype) == POINTER_TYPE
2950 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2951 || (TREE_CODE (totype) == REFERENCE_TYPE
2952 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2953 || (TREE_CODE (totype) == REFERENCE_TYPE
2954 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
2955 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
2956 for (; fns; fns = OVL_NEXT (fns))
2958 tree fn = OVL_CURRENT (fns);
2959 if (TREE_CODE (fn) == TEMPLATE_DECL)
2960 add_template_conv_candidate
2961 (&candidates, fn, obj, args, totype,
2962 /*access_path=*/NULL_TREE,
2963 /*conversion_path=*/NULL_TREE);
2964 else
2965 add_conv_candidate (&candidates, fn, obj, args,
2966 /*conversion_path=*/NULL_TREE,
2967 /*access_path=*/NULL_TREE);
2971 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2972 if (!any_viable_p)
2974 error ("no match for call to `(%T) (%A)'", TREE_TYPE (obj), args);
2975 print_z_candidates (candidates);
2976 result = error_mark_node;
2978 else
2980 cand = tourney (candidates);
2981 if (cand == 0)
2983 error ("call of `(%T) (%A)' is ambiguous", TREE_TYPE (obj), args);
2984 print_z_candidates (candidates);
2985 result = error_mark_node;
2987 /* Since cand->fn will be a type, not a function, for a conversion
2988 function, we must be careful not to unconditionally look at
2989 DECL_NAME here. */
2990 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
2991 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
2992 result = build_over_call (cand, LOOKUP_NORMAL);
2993 else
2995 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1);
2996 result = build_function_call (obj, args);
3000 /* Free all the conversions we allocated. */
3001 obstack_free (&conversion_obstack, p);
3003 return result;
3006 static void
3007 op_error (enum tree_code code, enum tree_code code2,
3008 tree arg1, tree arg2, tree arg3, const char *problem)
3010 const char *opname;
3012 if (code == MODIFY_EXPR)
3013 opname = assignment_operator_name_info[code2].name;
3014 else
3015 opname = operator_name_info[code].name;
3017 switch (code)
3019 case COND_EXPR:
3020 error ("%s for ternary 'operator?:' in '%E ? %E : %E'",
3021 problem, arg1, arg2, arg3);
3022 break;
3024 case POSTINCREMENT_EXPR:
3025 case POSTDECREMENT_EXPR:
3026 error ("%s for 'operator%s' in '%E%s'", problem, opname, arg1, opname);
3027 break;
3029 case ARRAY_REF:
3030 error ("%s for 'operator[]' in '%E[%E]'", problem, arg1, arg2);
3031 break;
3033 case REALPART_EXPR:
3034 case IMAGPART_EXPR:
3035 error ("%s for '%s' in '%s %E'", problem, opname, opname, arg1);
3036 break;
3038 default:
3039 if (arg2)
3040 error ("%s for 'operator%s' in '%E %s %E'",
3041 problem, opname, arg1, opname, arg2);
3042 else
3043 error ("%s for 'operator%s' in '%s%E'",
3044 problem, opname, opname, arg1);
3045 break;
3049 /* Return the implicit conversion sequence that could be used to
3050 convert E1 to E2 in [expr.cond]. */
3052 static conversion *
3053 conditional_conversion (tree e1, tree e2)
3055 tree t1 = non_reference (TREE_TYPE (e1));
3056 tree t2 = non_reference (TREE_TYPE (e2));
3057 conversion *conv;
3058 bool good_base;
3060 /* [expr.cond]
3062 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
3063 implicitly converted (clause _conv_) to the type "reference to
3064 T2", subject to the constraint that in the conversion the
3065 reference must bind directly (_dcl.init.ref_) to E1. */
3066 if (real_lvalue_p (e2))
3068 conv = implicit_conversion (build_reference_type (t2),
3071 LOOKUP_NO_TEMP_BIND);
3072 if (conv)
3073 return conv;
3076 /* [expr.cond]
3078 If E1 and E2 have class type, and the underlying class types are
3079 the same or one is a base class of the other: E1 can be converted
3080 to match E2 if the class of T2 is the same type as, or a base
3081 class of, the class of T1, and the cv-qualification of T2 is the
3082 same cv-qualification as, or a greater cv-qualification than, the
3083 cv-qualification of T1. If the conversion is applied, E1 is
3084 changed to an rvalue of type T2 that still refers to the original
3085 source class object (or the appropriate subobject thereof). */
3086 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
3087 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
3089 if (good_base && at_least_as_qualified_p (t2, t1))
3091 conv = build_identity_conv (t1, e1);
3092 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
3093 TYPE_MAIN_VARIANT (t2)))
3094 conv = build_conv (ck_base, t2, conv);
3095 else
3096 conv = build_conv (ck_rvalue, t2, conv);
3097 return conv;
3099 else
3100 return NULL;
3102 else
3103 /* [expr.cond]
3105 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
3106 converted to the type that expression E2 would have if E2 were
3107 converted to an rvalue (or the type it has, if E2 is an rvalue). */
3108 return implicit_conversion (t2, t1, e1, LOOKUP_NORMAL);
3111 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
3112 arguments to the conditional expression. */
3114 tree
3115 build_conditional_expr (tree arg1, tree arg2, tree arg3)
3117 tree arg2_type;
3118 tree arg3_type;
3119 tree result = NULL_TREE;
3120 tree result_type = NULL_TREE;
3121 bool lvalue_p = true;
3122 struct z_candidate *candidates = 0;
3123 struct z_candidate *cand;
3124 void *p;
3126 /* As a G++ extension, the second argument to the conditional can be
3127 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
3128 c'.) If the second operand is omitted, make sure it is
3129 calculated only once. */
3130 if (!arg2)
3132 if (pedantic)
3133 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
3135 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
3136 if (real_lvalue_p (arg1))
3137 arg2 = arg1 = stabilize_reference (arg1);
3138 else
3139 arg2 = arg1 = save_expr (arg1);
3142 /* [expr.cond]
3144 The first expr ession is implicitly converted to bool (clause
3145 _conv_). */
3146 arg1 = perform_implicit_conversion (boolean_type_node, arg1);
3148 /* If something has already gone wrong, just pass that fact up the
3149 tree. */
3150 if (error_operand_p (arg1)
3151 || error_operand_p (arg2)
3152 || error_operand_p (arg3))
3153 return error_mark_node;
3155 /* [expr.cond]
3157 If either the second or the third operand has type (possibly
3158 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
3159 array-to-pointer (_conv.array_), and function-to-pointer
3160 (_conv.func_) standard conversions are performed on the second
3161 and third operands. */
3162 arg2_type = TREE_TYPE (arg2);
3163 arg3_type = TREE_TYPE (arg3);
3164 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
3166 /* Do the conversions. We don't these for `void' type arguments
3167 since it can't have any effect and since decay_conversion
3168 does not handle that case gracefully. */
3169 if (!VOID_TYPE_P (arg2_type))
3170 arg2 = decay_conversion (arg2);
3171 if (!VOID_TYPE_P (arg3_type))
3172 arg3 = decay_conversion (arg3);
3173 arg2_type = TREE_TYPE (arg2);
3174 arg3_type = TREE_TYPE (arg3);
3176 /* [expr.cond]
3178 One of the following shall hold:
3180 --The second or the third operand (but not both) is a
3181 throw-expression (_except.throw_); the result is of the
3182 type of the other and is an rvalue.
3184 --Both the second and the third operands have type void; the
3185 result is of type void and is an rvalue.
3187 We must avoid calling force_rvalue for expressions of type
3188 "void" because it will complain that their value is being
3189 used. */
3190 if (TREE_CODE (arg2) == THROW_EXPR
3191 && TREE_CODE (arg3) != THROW_EXPR)
3193 if (!VOID_TYPE_P (arg3_type))
3194 arg3 = force_rvalue (arg3);
3195 arg3_type = TREE_TYPE (arg3);
3196 result_type = arg3_type;
3198 else if (TREE_CODE (arg2) != THROW_EXPR
3199 && TREE_CODE (arg3) == THROW_EXPR)
3201 if (!VOID_TYPE_P (arg2_type))
3202 arg2 = force_rvalue (arg2);
3203 arg2_type = TREE_TYPE (arg2);
3204 result_type = arg2_type;
3206 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
3207 result_type = void_type_node;
3208 else
3210 error ("`%E' has type `void' and is not a throw-expression",
3211 VOID_TYPE_P (arg2_type) ? arg2 : arg3);
3212 return error_mark_node;
3215 lvalue_p = false;
3216 goto valid_operands;
3218 /* [expr.cond]
3220 Otherwise, if the second and third operand have different types,
3221 and either has (possibly cv-qualified) class type, an attempt is
3222 made to convert each of those operands to the type of the other. */
3223 else if (!same_type_p (arg2_type, arg3_type)
3224 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3226 conversion *conv2;
3227 conversion *conv3;
3229 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3230 p = conversion_obstack_alloc (0);
3232 conv2 = conditional_conversion (arg2, arg3);
3233 conv3 = conditional_conversion (arg3, arg2);
3235 /* [expr.cond]
3237 If both can be converted, or one can be converted but the
3238 conversion is ambiguous, the program is ill-formed. If
3239 neither can be converted, the operands are left unchanged and
3240 further checking is performed as described below. If exactly
3241 one conversion is possible, that conversion is applied to the
3242 chosen operand and the converted operand is used in place of
3243 the original operand for the remainder of this section. */
3244 if ((conv2 && !conv2->bad_p
3245 && conv3 && !conv3->bad_p)
3246 || (conv2 && conv2->kind == ck_ambig)
3247 || (conv3 && conv3->kind == ck_ambig))
3249 error ("operands to ?: have different types");
3250 result = error_mark_node;
3252 else if (conv2 && !conv2->bad_p)
3254 arg2 = convert_like (conv2, arg2);
3255 arg2 = convert_from_reference (arg2);
3256 arg2_type = TREE_TYPE (arg2);
3258 else if (conv3 && !conv3->bad_p)
3260 arg3 = convert_like (conv3, arg3);
3261 arg3 = convert_from_reference (arg3);
3262 arg3_type = TREE_TYPE (arg3);
3265 /* Free all the conversions we allocated. */
3266 obstack_free (&conversion_obstack, p);
3268 if (result)
3269 return result;
3271 /* If, after the conversion, both operands have class type,
3272 treat the cv-qualification of both operands as if it were the
3273 union of the cv-qualification of the operands.
3275 The standard is not clear about what to do in this
3276 circumstance. For example, if the first operand has type
3277 "const X" and the second operand has a user-defined
3278 conversion to "volatile X", what is the type of the second
3279 operand after this step? Making it be "const X" (matching
3280 the first operand) seems wrong, as that discards the
3281 qualification without actually performing a copy. Leaving it
3282 as "volatile X" seems wrong as that will result in the
3283 conditional expression failing altogether, even though,
3284 according to this step, the one operand could be converted to
3285 the type of the other. */
3286 if ((conv2 || conv3)
3287 && CLASS_TYPE_P (arg2_type)
3288 && TYPE_QUALS (arg2_type) != TYPE_QUALS (arg3_type))
3289 arg2_type = arg3_type =
3290 cp_build_qualified_type (arg2_type,
3291 TYPE_QUALS (arg2_type)
3292 | TYPE_QUALS (arg3_type));
3295 /* [expr.cond]
3297 If the second and third operands are lvalues and have the same
3298 type, the result is of that type and is an lvalue. */
3299 if (real_lvalue_p (arg2)
3300 && real_lvalue_p (arg3)
3301 && same_type_p (arg2_type, arg3_type))
3303 result_type = arg2_type;
3304 goto valid_operands;
3307 /* [expr.cond]
3309 Otherwise, the result is an rvalue. If the second and third
3310 operand do not have the same type, and either has (possibly
3311 cv-qualified) class type, overload resolution is used to
3312 determine the conversions (if any) to be applied to the operands
3313 (_over.match.oper_, _over.built_). */
3314 lvalue_p = false;
3315 if (!same_type_p (arg2_type, arg3_type)
3316 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3318 tree args[3];
3319 conversion *conv;
3320 bool any_viable_p;
3322 /* Rearrange the arguments so that add_builtin_candidate only has
3323 to know about two args. In build_builtin_candidates, the
3324 arguments are unscrambled. */
3325 args[0] = arg2;
3326 args[1] = arg3;
3327 args[2] = arg1;
3328 add_builtin_candidates (&candidates,
3329 COND_EXPR,
3330 NOP_EXPR,
3331 ansi_opname (COND_EXPR),
3332 args,
3333 LOOKUP_NORMAL);
3335 /* [expr.cond]
3337 If the overload resolution fails, the program is
3338 ill-formed. */
3339 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3340 if (!any_viable_p)
3342 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3343 print_z_candidates (candidates);
3344 return error_mark_node;
3346 cand = tourney (candidates);
3347 if (!cand)
3349 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3350 print_z_candidates (candidates);
3351 return error_mark_node;
3354 /* [expr.cond]
3356 Otherwise, the conversions thus determined are applied, and
3357 the converted operands are used in place of the original
3358 operands for the remainder of this section. */
3359 conv = cand->convs[0];
3360 arg1 = convert_like (conv, arg1);
3361 conv = cand->convs[1];
3362 arg2 = convert_like (conv, arg2);
3363 conv = cand->convs[2];
3364 arg3 = convert_like (conv, arg3);
3367 /* [expr.cond]
3369 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3370 and function-to-pointer (_conv.func_) standard conversions are
3371 performed on the second and third operands.
3373 We need to force the lvalue-to-rvalue conversion here for class types,
3374 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3375 that isn't wrapped with a TARGET_EXPR plays havoc with exception
3376 regions. */
3378 arg2 = force_rvalue (arg2);
3379 if (!CLASS_TYPE_P (arg2_type))
3380 arg2_type = TREE_TYPE (arg2);
3382 arg3 = force_rvalue (arg3);
3383 if (!CLASS_TYPE_P (arg2_type))
3384 arg3_type = TREE_TYPE (arg3);
3386 if (arg2 == error_mark_node || arg3 == error_mark_node)
3387 return error_mark_node;
3389 /* [expr.cond]
3391 After those conversions, one of the following shall hold:
3393 --The second and third operands have the same type; the result is of
3394 that type. */
3395 if (same_type_p (arg2_type, arg3_type))
3396 result_type = arg2_type;
3397 /* [expr.cond]
3399 --The second and third operands have arithmetic or enumeration
3400 type; the usual arithmetic conversions are performed to bring
3401 them to a common type, and the result is of that type. */
3402 else if ((ARITHMETIC_TYPE_P (arg2_type)
3403 || TREE_CODE (arg2_type) == ENUMERAL_TYPE)
3404 && (ARITHMETIC_TYPE_P (arg3_type)
3405 || TREE_CODE (arg3_type) == ENUMERAL_TYPE))
3407 /* In this case, there is always a common type. */
3408 result_type = type_after_usual_arithmetic_conversions (arg2_type,
3409 arg3_type);
3411 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
3412 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
3413 warning ("enumeral mismatch in conditional expression: `%T' vs `%T'",
3414 arg2_type, arg3_type);
3415 else if (extra_warnings
3416 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
3417 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
3418 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
3419 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
3420 warning ("enumeral and non-enumeral type in conditional expression");
3422 arg2 = perform_implicit_conversion (result_type, arg2);
3423 arg3 = perform_implicit_conversion (result_type, arg3);
3425 /* [expr.cond]
3427 --The second and third operands have pointer type, or one has
3428 pointer type and the other is a null pointer constant; pointer
3429 conversions (_conv.ptr_) and qualification conversions
3430 (_conv.qual_) are performed to bring them to their composite
3431 pointer type (_expr.rel_). The result is of the composite
3432 pointer type.
3434 --The second and third operands have pointer to member type, or
3435 one has pointer to member type and the other is a null pointer
3436 constant; pointer to member conversions (_conv.mem_) and
3437 qualification conversions (_conv.qual_) are performed to bring
3438 them to a common type, whose cv-qualification shall match the
3439 cv-qualification of either the second or the third operand.
3440 The result is of the common type. */
3441 else if ((null_ptr_cst_p (arg2)
3442 && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
3443 || (null_ptr_cst_p (arg3)
3444 && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
3445 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
3446 || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
3447 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
3449 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
3450 arg3, "conditional expression");
3451 if (result_type == error_mark_node)
3452 return error_mark_node;
3453 arg2 = perform_implicit_conversion (result_type, arg2);
3454 arg3 = perform_implicit_conversion (result_type, arg3);
3457 if (!result_type)
3459 error ("operands to ?: have different types");
3460 return error_mark_node;
3463 valid_operands:
3464 result = fold (build (COND_EXPR, result_type, arg1, arg2, arg3));
3465 /* We can't use result_type below, as fold might have returned a
3466 throw_expr. */
3468 /* Expand both sides into the same slot, hopefully the target of the
3469 ?: expression. We used to check for TARGET_EXPRs here, but now we
3470 sometimes wrap them in NOP_EXPRs so the test would fail. */
3471 if (!lvalue_p && CLASS_TYPE_P (TREE_TYPE (result)))
3472 result = get_target_expr (result);
3474 /* If this expression is an rvalue, but might be mistaken for an
3475 lvalue, we must add a NON_LVALUE_EXPR. */
3476 if (!lvalue_p && real_lvalue_p (result))
3477 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
3479 return result;
3482 /* OPERAND is an operand to an expression. Perform necessary steps
3483 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
3484 returned. */
3486 static tree
3487 prep_operand (tree operand)
3489 if (operand)
3491 operand = convert_from_reference (operand);
3492 if (CLASS_TYPE_P (TREE_TYPE (operand))
3493 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
3494 /* Make sure the template type is instantiated now. */
3495 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
3498 return operand;
3501 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
3502 OVERLOAD) to the CANDIDATES, returning an updated list of
3503 CANDIDATES. The ARGS are the arguments provided to the call,
3504 without any implicit object parameter. The EXPLICIT_TARGS are
3505 explicit template arguments provided. TEMPLATE_ONLY is true if
3506 only template functions should be considered. CONVERSION_PATH,
3507 ACCESS_PATH, and FLAGS are as for add_function_candidate. */
3509 static void
3510 add_candidates (tree fns, tree args,
3511 tree explicit_targs, bool template_only,
3512 tree conversion_path, tree access_path,
3513 int flags,
3514 struct z_candidate **candidates)
3516 tree ctype;
3517 tree non_static_args;
3519 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
3520 /* Delay creating the implicit this parameter until it is needed. */
3521 non_static_args = NULL_TREE;
3523 while (fns)
3525 tree fn;
3526 tree fn_args;
3528 fn = OVL_CURRENT (fns);
3529 /* Figure out which set of arguments to use. */
3530 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
3532 /* If this function is a non-static member, prepend the implicit
3533 object parameter. */
3534 if (!non_static_args)
3535 non_static_args = tree_cons (NULL_TREE,
3536 build_this (TREE_VALUE (args)),
3537 TREE_CHAIN (args));
3538 fn_args = non_static_args;
3540 else
3541 /* Otherwise, just use the list of arguments provided. */
3542 fn_args = args;
3544 if (TREE_CODE (fn) == TEMPLATE_DECL)
3545 add_template_candidate (candidates,
3546 fn,
3547 ctype,
3548 explicit_targs,
3549 fn_args,
3550 NULL_TREE,
3551 access_path,
3552 conversion_path,
3553 flags,
3554 DEDUCE_CALL);
3555 else if (!template_only)
3556 add_function_candidate (candidates,
3558 ctype,
3559 fn_args,
3560 access_path,
3561 conversion_path,
3562 flags);
3563 fns = OVL_NEXT (fns);
3567 tree
3568 build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
3569 bool *overloaded_p)
3571 struct z_candidate *candidates = 0, *cand;
3572 tree arglist, fnname;
3573 tree args[3];
3574 tree result = NULL_TREE;
3575 bool result_valid_p = false;
3576 enum tree_code code2 = NOP_EXPR;
3577 conversion *conv;
3578 void *p;
3579 bool strict_p;
3580 bool any_viable_p;
3582 if (error_operand_p (arg1)
3583 || error_operand_p (arg2)
3584 || error_operand_p (arg3))
3585 return error_mark_node;
3587 if (code == MODIFY_EXPR)
3589 code2 = TREE_CODE (arg3);
3590 arg3 = NULL_TREE;
3591 fnname = ansi_assopname (code2);
3593 else
3594 fnname = ansi_opname (code);
3596 arg1 = prep_operand (arg1);
3598 switch (code)
3600 case NEW_EXPR:
3601 case VEC_NEW_EXPR:
3602 case VEC_DELETE_EXPR:
3603 case DELETE_EXPR:
3604 /* Use build_op_new_call and build_op_delete_call instead. */
3605 abort ();
3607 case CALL_EXPR:
3608 return build_object_call (arg1, arg2);
3610 default:
3611 break;
3614 arg2 = prep_operand (arg2);
3615 arg3 = prep_operand (arg3);
3617 if (code == COND_EXPR)
3619 if (arg2 == NULL_TREE
3620 || TREE_CODE (TREE_TYPE (arg2)) == VOID_TYPE
3621 || TREE_CODE (TREE_TYPE (arg3)) == VOID_TYPE
3622 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))
3623 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3))))
3624 goto builtin;
3626 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
3627 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
3628 goto builtin;
3630 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
3631 arg2 = integer_zero_node;
3633 arglist = NULL_TREE;
3634 if (arg3)
3635 arglist = tree_cons (NULL_TREE, arg3, arglist);
3636 if (arg2)
3637 arglist = tree_cons (NULL_TREE, arg2, arglist);
3638 arglist = tree_cons (NULL_TREE, arg1, arglist);
3640 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3641 p = conversion_obstack_alloc (0);
3643 /* Add namespace-scope operators to the list of functions to
3644 consider. */
3645 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
3646 arglist, NULL_TREE, false, NULL_TREE, NULL_TREE,
3647 flags, &candidates);
3648 /* Add class-member operators to the candidate set. */
3649 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
3651 tree fns;
3653 fns = lookup_fnfields (TYPE_BINFO (TREE_TYPE (arg1)), fnname, 1);
3654 if (fns == error_mark_node)
3656 result = error_mark_node;
3657 goto user_defined_result_ready;
3659 if (fns)
3660 add_candidates (BASELINK_FUNCTIONS (fns), arglist,
3661 NULL_TREE, false,
3662 BASELINK_BINFO (fns),
3663 TYPE_BINFO (TREE_TYPE (arg1)),
3664 flags, &candidates);
3667 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3668 to know about two args; a builtin candidate will always have a first
3669 parameter of type bool. We'll handle that in
3670 build_builtin_candidate. */
3671 if (code == COND_EXPR)
3673 args[0] = arg2;
3674 args[1] = arg3;
3675 args[2] = arg1;
3677 else
3679 args[0] = arg1;
3680 args[1] = arg2;
3681 args[2] = NULL_TREE;
3684 add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
3686 switch (code)
3688 case COMPOUND_EXPR:
3689 case ADDR_EXPR:
3690 /* For these, the built-in candidates set is empty
3691 [over.match.oper]/3. We don't want non-strict matches
3692 because exact matches are always possible with built-in
3693 operators. The built-in candidate set for COMPONENT_REF
3694 would be empty too, but since there are no such built-in
3695 operators, we accept non-strict matches for them. */
3696 strict_p = true;
3697 break;
3699 default:
3700 strict_p = pedantic;
3701 break;
3704 candidates = splice_viable (candidates, strict_p, &any_viable_p);
3705 if (!any_viable_p)
3707 switch (code)
3709 case POSTINCREMENT_EXPR:
3710 case POSTDECREMENT_EXPR:
3711 /* Look for an `operator++ (int)'. If they didn't have
3712 one, then we fall back to the old way of doing things. */
3713 if (flags & LOOKUP_COMPLAIN)
3714 pedwarn ("no `%D(int)' declared for postfix `%s', trying prefix operator instead",
3715 fnname,
3716 operator_name_info[code].name);
3717 if (code == POSTINCREMENT_EXPR)
3718 code = PREINCREMENT_EXPR;
3719 else
3720 code = PREDECREMENT_EXPR;
3721 result = build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE,
3722 overloaded_p);
3723 break;
3725 /* The caller will deal with these. */
3726 case ADDR_EXPR:
3727 case COMPOUND_EXPR:
3728 case COMPONENT_REF:
3729 result = NULL_TREE;
3730 result_valid_p = true;
3731 break;
3733 default:
3734 if (flags & LOOKUP_COMPLAIN)
3736 op_error (code, code2, arg1, arg2, arg3, "no match");
3737 print_z_candidates (candidates);
3739 result = error_mark_node;
3740 break;
3743 else
3745 cand = tourney (candidates);
3746 if (cand == 0)
3748 if (flags & LOOKUP_COMPLAIN)
3750 op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
3751 print_z_candidates (candidates);
3753 result = error_mark_node;
3755 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
3757 if (overloaded_p)
3758 *overloaded_p = true;
3760 if (warn_synth
3761 && fnname == ansi_assopname (NOP_EXPR)
3762 && DECL_ARTIFICIAL (cand->fn)
3763 && candidates->next
3764 && ! candidates->next->next)
3766 warning ("using synthesized `%#D' for copy assignment",
3767 cand->fn);
3768 cp_warning_at (" where cfront would use `%#D'",
3769 cand == candidates
3770 ? candidates->next->fn
3771 : candidates->fn);
3774 result = build_over_call (cand, LOOKUP_NORMAL);
3776 else
3778 /* Give any warnings we noticed during overload resolution. */
3779 if (cand->warnings)
3781 struct candidate_warning *w;
3782 for (w = cand->warnings; w; w = w->next)
3783 joust (cand, w->loser, 1);
3786 /* Check for comparison of different enum types. */
3787 switch (code)
3789 case GT_EXPR:
3790 case LT_EXPR:
3791 case GE_EXPR:
3792 case LE_EXPR:
3793 case EQ_EXPR:
3794 case NE_EXPR:
3795 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
3796 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
3797 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
3798 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
3800 warning ("comparison between `%#T' and `%#T'",
3801 TREE_TYPE (arg1), TREE_TYPE (arg2));
3803 break;
3804 default:
3805 break;
3808 /* We need to strip any leading REF_BIND so that bitfields
3809 don't cause errors. This should not remove any important
3810 conversions, because builtins don't apply to class
3811 objects directly. */
3812 conv = cand->convs[0];
3813 if (conv->kind == ck_ref_bind)
3814 conv = conv->u.next;
3815 arg1 = convert_like (conv, arg1);
3816 if (arg2)
3818 conv = cand->convs[1];
3819 if (conv->kind == ck_ref_bind)
3820 conv = conv->u.next;
3821 arg2 = convert_like (conv, arg2);
3823 if (arg3)
3825 conv = cand->convs[2];
3826 if (conv->kind == ck_ref_bind)
3827 conv = conv->u.next;
3828 arg3 = convert_like (conv, arg3);
3833 user_defined_result_ready:
3835 /* Free all the conversions we allocated. */
3836 obstack_free (&conversion_obstack, p);
3838 if (result || result_valid_p)
3839 return result;
3841 builtin:
3842 switch (code)
3844 case MODIFY_EXPR:
3845 return build_modify_expr (arg1, code2, arg2);
3847 case INDIRECT_REF:
3848 return build_indirect_ref (arg1, "unary *");
3850 case PLUS_EXPR:
3851 case MINUS_EXPR:
3852 case MULT_EXPR:
3853 case TRUNC_DIV_EXPR:
3854 case GT_EXPR:
3855 case LT_EXPR:
3856 case GE_EXPR:
3857 case LE_EXPR:
3858 case EQ_EXPR:
3859 case NE_EXPR:
3860 case MAX_EXPR:
3861 case MIN_EXPR:
3862 case LSHIFT_EXPR:
3863 case RSHIFT_EXPR:
3864 case TRUNC_MOD_EXPR:
3865 case BIT_AND_EXPR:
3866 case BIT_IOR_EXPR:
3867 case BIT_XOR_EXPR:
3868 case TRUTH_ANDIF_EXPR:
3869 case TRUTH_ORIF_EXPR:
3870 return cp_build_binary_op (code, arg1, arg2);
3872 case CONVERT_EXPR:
3873 case NEGATE_EXPR:
3874 case BIT_NOT_EXPR:
3875 case TRUTH_NOT_EXPR:
3876 case PREINCREMENT_EXPR:
3877 case POSTINCREMENT_EXPR:
3878 case PREDECREMENT_EXPR:
3879 case POSTDECREMENT_EXPR:
3880 case REALPART_EXPR:
3881 case IMAGPART_EXPR:
3882 return build_unary_op (code, arg1, candidates != 0);
3884 case ARRAY_REF:
3885 return build_array_ref (arg1, arg2);
3887 case COND_EXPR:
3888 return build_conditional_expr (arg1, arg2, arg3);
3890 case MEMBER_REF:
3891 return build_m_component_ref (build_indirect_ref (arg1, NULL), arg2);
3893 /* The caller will deal with these. */
3894 case ADDR_EXPR:
3895 case COMPONENT_REF:
3896 case COMPOUND_EXPR:
3897 return NULL_TREE;
3899 default:
3900 abort ();
3901 return NULL_TREE;
3905 /* Build a call to operator delete. This has to be handled very specially,
3906 because the restrictions on what signatures match are different from all
3907 other call instances. For a normal delete, only a delete taking (void *)
3908 or (void *, size_t) is accepted. For a placement delete, only an exact
3909 match with the placement new is accepted.
3911 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
3912 ADDR is the pointer to be deleted.
3913 SIZE is the size of the memory block to be deleted.
3914 GLOBAL_P is true if the delete-expression should not consider
3915 class-specific delete operators.
3916 PLACEMENT is the corresponding placement new call, or NULL_TREE. */
3918 tree
3919 build_op_delete_call (enum tree_code code, tree addr, tree size,
3920 bool global_p, tree placement)
3922 tree fn = NULL_TREE;
3923 tree fns, fnname, argtypes, args, type;
3924 int pass;
3926 if (addr == error_mark_node)
3927 return error_mark_node;
3929 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
3931 fnname = ansi_opname (code);
3933 if (IS_AGGR_TYPE (type) && !global_p)
3934 /* In [class.free]
3936 If the result of the lookup is ambiguous or inaccessible, or if
3937 the lookup selects a placement deallocation function, the
3938 program is ill-formed.
3940 Therefore, we ask lookup_fnfields to complain about ambiguity. */
3942 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
3943 if (fns == error_mark_node)
3944 return error_mark_node;
3946 else
3947 fns = NULL_TREE;
3949 if (fns == NULL_TREE)
3950 fns = lookup_name_nonclass (fnname);
3952 if (placement)
3954 tree alloc_fn;
3955 tree call_expr;
3957 /* Find the allocation function that is being called. */
3958 call_expr = placement;
3959 /* Extract the function. */
3960 alloc_fn = get_callee_fndecl (call_expr);
3961 my_friendly_assert (alloc_fn != NULL_TREE, 20020327);
3962 /* Then the second parm type. */
3963 argtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
3964 /* Also the second argument. */
3965 args = TREE_CHAIN (TREE_OPERAND (call_expr, 1));
3967 else
3969 /* First try it without the size argument. */
3970 argtypes = void_list_node;
3971 args = NULL_TREE;
3974 /* Strip const and volatile from addr. */
3975 addr = cp_convert (ptr_type_node, addr);
3977 /* We make two tries at finding a matching `operator delete'. On
3978 the first pass, we look for a one-operator (or placement)
3979 operator delete. If we're not doing placement delete, then on
3980 the second pass we look for a two-argument delete. */
3981 for (pass = 0; pass < (placement ? 1 : 2); ++pass)
3983 /* Go through the `operator delete' functions looking for one
3984 with a matching type. */
3985 for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
3986 fn;
3987 fn = OVL_NEXT (fn))
3989 tree t;
3991 /* The first argument must be "void *". */
3992 t = TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn)));
3993 if (!same_type_p (TREE_VALUE (t), ptr_type_node))
3994 continue;
3995 t = TREE_CHAIN (t);
3996 /* On the first pass, check the rest of the arguments. */
3997 if (pass == 0)
3999 tree a = argtypes;
4000 while (a && t)
4002 if (!same_type_p (TREE_VALUE (a), TREE_VALUE (t)))
4003 break;
4004 a = TREE_CHAIN (a);
4005 t = TREE_CHAIN (t);
4007 if (!a && !t)
4008 break;
4010 /* On the second pass, the second argument must be
4011 "size_t". */
4012 else if (pass == 1
4013 && same_type_p (TREE_VALUE (t), sizetype)
4014 && TREE_CHAIN (t) == void_list_node)
4015 break;
4018 /* If we found a match, we're done. */
4019 if (fn)
4020 break;
4023 /* If we have a matching function, call it. */
4024 if (fn)
4026 /* Make sure we have the actual function, and not an
4027 OVERLOAD. */
4028 fn = OVL_CURRENT (fn);
4030 /* If the FN is a member function, make sure that it is
4031 accessible. */
4032 if (DECL_CLASS_SCOPE_P (fn))
4033 perform_or_defer_access_check (TYPE_BINFO (type), fn);
4035 if (pass == 0)
4036 args = tree_cons (NULL_TREE, addr, args);
4037 else
4038 args = tree_cons (NULL_TREE, addr,
4039 build_tree_list (NULL_TREE, size));
4041 if (placement)
4043 /* The placement args might not be suitable for overload
4044 resolution at this point, so build the call directly. */
4045 mark_used (fn);
4046 return build_cxx_call (fn, args);
4048 else
4049 return build_function_call (fn, args);
4052 /* If we are doing placement delete we do nothing if we don't find a
4053 matching op delete. */
4054 if (placement)
4055 return NULL_TREE;
4057 error ("no suitable `operator %s' for `%T'",
4058 operator_name_info[(int)code].name, type);
4059 return error_mark_node;
4062 /* If the current scope isn't allowed to access DECL along
4063 BASETYPE_PATH, give an error. The most derived class in
4064 BASETYPE_PATH is the one used to qualify DECL. */
4066 bool
4067 enforce_access (tree basetype_path, tree decl)
4069 my_friendly_assert (TREE_CODE (basetype_path) == TREE_BINFO, 20030624);
4071 if (!accessible_p (basetype_path, decl))
4073 if (TREE_PRIVATE (decl))
4074 cp_error_at ("`%+#D' is private", decl);
4075 else if (TREE_PROTECTED (decl))
4076 cp_error_at ("`%+#D' is protected", decl);
4077 else
4078 cp_error_at ("`%+#D' is inaccessible", decl);
4079 error ("within this context");
4080 return false;
4083 return true;
4086 /* Check that a callable constructor to initialize a temporary of
4087 TYPE from an EXPR exists. */
4089 static void
4090 check_constructor_callable (tree type, tree expr)
4092 build_special_member_call (NULL_TREE,
4093 complete_ctor_identifier,
4094 build_tree_list (NULL_TREE, expr),
4095 TYPE_BINFO (type),
4096 LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING
4097 | LOOKUP_CONSTRUCTOR_CALLABLE);
4100 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
4101 bitwise or of LOOKUP_* values. If any errors are warnings are
4102 generated, set *DIAGNOSTIC_FN to "error" or "warning",
4103 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
4104 to NULL. */
4106 static tree
4107 build_temp (tree expr, tree type, int flags,
4108 void (**diagnostic_fn)(const char *, ...))
4110 int savew, savee;
4112 savew = warningcount, savee = errorcount;
4113 expr = build_special_member_call (NULL_TREE,
4114 complete_ctor_identifier,
4115 build_tree_list (NULL_TREE, expr),
4116 TYPE_BINFO (type),
4117 flags);
4118 if (warningcount > savew)
4119 *diagnostic_fn = warning;
4120 else if (errorcount > savee)
4121 *diagnostic_fn = error;
4122 else
4123 *diagnostic_fn = NULL;
4124 return expr;
4128 /* Perform the conversions in CONVS on the expression EXPR. FN and
4129 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
4130 indicates the `this' argument of a method. INNER is nonzero when
4131 being called to continue a conversion chain. It is negative when a
4132 reference binding will be applied, positive otherwise. If
4133 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
4134 conversions will be emitted if appropriate. */
4136 static tree
4137 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
4138 int inner, bool issue_conversion_warnings)
4140 tree totype = convs->type;
4141 void (*diagnostic_fn)(const char *, ...);
4143 if (convs->bad_p
4144 && convs->kind != ck_user
4145 && convs->kind != ck_ambig
4146 && convs->kind != ck_ref_bind)
4148 conversion *t = convs;
4149 for (; t; t = convs->u.next)
4151 if (t->kind == ck_user || !t->bad_p)
4153 expr = convert_like_real (t, expr, fn, argnum, 1,
4154 /*issue_conversion_warnings=*/false);
4155 break;
4157 else if (t->kind == ck_ambig)
4158 return convert_like_real (t, expr, fn, argnum, 1,
4159 /*issue_conversion_warnings=*/false);
4160 else if (t->kind == ck_identity)
4161 break;
4163 pedwarn ("invalid conversion from `%T' to `%T'", TREE_TYPE (expr), totype);
4164 if (fn)
4165 pedwarn (" initializing argument %P of `%D'", argnum, fn);
4166 return cp_convert (totype, expr);
4169 if (issue_conversion_warnings)
4170 expr = dubious_conversion_warnings
4171 (totype, expr, "converting", fn, argnum);
4172 switch (convs->kind)
4174 case ck_user:
4176 struct z_candidate *cand = convs->cand;
4177 tree convfn = cand->fn;
4178 tree args;
4180 if (DECL_CONSTRUCTOR_P (convfn))
4182 tree t = build_int_2 (0, 0);
4183 TREE_TYPE (t) = build_pointer_type (DECL_CONTEXT (convfn));
4185 args = build_tree_list (NULL_TREE, expr);
4186 if (DECL_HAS_IN_CHARGE_PARM_P (convfn)
4187 || DECL_HAS_VTT_PARM_P (convfn))
4188 /* We should never try to call the abstract or base constructor
4189 from here. */
4190 abort ();
4191 args = tree_cons (NULL_TREE, t, args);
4193 else
4194 args = build_this (expr);
4195 expr = build_over_call (cand, LOOKUP_NORMAL);
4197 /* If this is a constructor or a function returning an aggr type,
4198 we need to build up a TARGET_EXPR. */
4199 if (DECL_CONSTRUCTOR_P (convfn))
4200 expr = build_cplus_new (totype, expr);
4202 /* The result of the call is then used to direct-initialize the object
4203 that is the destination of the copy-initialization. [dcl.init]
4205 Note that this step is not reflected in the conversion sequence;
4206 it affects the semantics when we actually perform the
4207 conversion, but is not considered during overload resolution.
4209 If the target is a class, that means call a ctor. */
4210 if (IS_AGGR_TYPE (totype)
4211 && (inner >= 0 || !lvalue_p (expr)))
4213 expr = (build_temp
4214 (expr, totype,
4215 /* Core issue 84, now a DR, says that we don't
4216 allow UDCs for these args (which deliberately
4217 breaks copy-init of an auto_ptr<Base> from an
4218 auto_ptr<Derived>). */
4219 LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION,
4220 &diagnostic_fn));
4222 if (diagnostic_fn)
4224 if (fn)
4225 diagnostic_fn
4226 (" initializing argument %P of `%D' from result of `%D'",
4227 argnum, fn, convfn);
4228 else
4229 diagnostic_fn
4230 (" initializing temporary from result of `%D'", convfn);
4232 expr = build_cplus_new (totype, expr);
4234 return expr;
4236 case ck_identity:
4237 if (type_unknown_p (expr))
4238 expr = instantiate_type (totype, expr, tf_error | tf_warning);
4239 /* Convert a non-array constant variable to its underlying value, unless we
4240 are about to bind it to a reference, in which case we need to
4241 leave it as an lvalue. */
4242 if (inner >= 0
4243 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
4244 expr = decl_constant_value (expr);
4245 if (convs->check_copy_constructor_p)
4246 check_constructor_callable (totype, expr);
4247 return expr;
4248 case ck_ambig:
4249 /* Call build_user_type_conversion again for the error. */
4250 return build_user_type_conversion
4251 (totype, convs->u.expr, LOOKUP_NORMAL);
4253 default:
4254 break;
4257 expr = convert_like_real (convs->u.next, expr, fn, argnum,
4258 convs->kind == ck_ref_bind ? -1 : 1,
4259 /*issue_conversion_warnings=*/false);
4260 if (expr == error_mark_node)
4261 return error_mark_node;
4263 switch (convs->kind)
4265 case ck_rvalue:
4266 if (! IS_AGGR_TYPE (totype))
4267 return expr;
4268 /* Else fall through. */
4269 case ck_base:
4270 if (convs->kind == ck_base && !convs->need_temporary_p)
4272 /* We are going to bind a reference directly to a base-class
4273 subobject of EXPR. */
4274 if (convs->check_copy_constructor_p)
4275 check_constructor_callable (TREE_TYPE (expr), expr);
4276 /* Build an expression for `*((base*) &expr)'. */
4277 expr = build_unary_op (ADDR_EXPR, expr, 0);
4278 expr = perform_implicit_conversion (build_pointer_type (totype),
4279 expr);
4280 expr = build_indirect_ref (expr, "implicit conversion");
4281 return expr;
4284 /* Copy-initialization where the cv-unqualified version of the source
4285 type is the same class as, or a derived class of, the class of the
4286 destination [is treated as direct-initialization]. [dcl.init] */
4287 expr = build_temp (expr, totype, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING,
4288 &diagnostic_fn);
4289 if (diagnostic_fn && fn)
4290 diagnostic_fn (" initializing argument %P of `%D'", argnum, fn);
4291 return build_cplus_new (totype, expr);
4293 case ck_ref_bind:
4295 tree ref_type = totype;
4297 /* If necessary, create a temporary. */
4298 if (convs->need_temporary_p || !lvalue_p (expr))
4300 tree type = convs->u.next->type;
4302 if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
4304 /* If the reference is volatile or non-const, we
4305 cannot create a temporary. */
4306 cp_lvalue_kind lvalue = real_lvalue_p (expr);
4308 if (lvalue & clk_bitfield)
4309 error ("cannot bind bitfield `%E' to `%T'",
4310 expr, ref_type);
4311 else if (lvalue & clk_packed)
4312 error ("cannot bind packed field `%E' to `%T'",
4313 expr, ref_type);
4314 else
4315 error ("cannot bind rvalue `%E' to `%T'", expr, ref_type);
4316 return error_mark_node;
4318 expr = build_target_expr_with_type (expr, type);
4321 /* Take the address of the thing to which we will bind the
4322 reference. */
4323 expr = build_unary_op (ADDR_EXPR, expr, 1);
4324 if (expr == error_mark_node)
4325 return error_mark_node;
4327 /* Convert it to a pointer to the type referred to by the
4328 reference. This will adjust the pointer if a derived to
4329 base conversion is being performed. */
4330 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
4331 expr);
4332 /* Convert the pointer to the desired reference type. */
4333 return build_nop (ref_type, expr);
4336 case ck_lvalue:
4337 return decay_conversion (expr);
4339 case ck_qual:
4340 /* Warn about deprecated conversion if appropriate. */
4341 string_conv_p (totype, expr, 1);
4342 break;
4344 default:
4345 break;
4347 return ocp_convert (totype, expr, CONV_IMPLICIT,
4348 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
4351 /* Build a call to __builtin_trap. */
4353 static tree
4354 call_builtin_trap (void)
4356 tree fn = implicit_built_in_decls[BUILT_IN_TRAP];
4358 my_friendly_assert (fn != NULL, 20030927);
4359 fn = build_call (fn, NULL_TREE);
4360 return fn;
4363 /* ARG is being passed to a varargs function. Perform any conversions
4364 required. Return the converted value. */
4366 tree
4367 convert_arg_to_ellipsis (tree arg)
4369 /* [expr.call]
4371 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4372 standard conversions are performed. */
4373 arg = decay_conversion (arg);
4374 /* [expr.call]
4376 If the argument has integral or enumeration type that is subject
4377 to the integral promotions (_conv.prom_), or a floating point
4378 type that is subject to the floating point promotion
4379 (_conv.fpprom_), the value of the argument is converted to the
4380 promoted type before the call. */
4381 if (TREE_CODE (TREE_TYPE (arg)) == REAL_TYPE
4382 && (TYPE_PRECISION (TREE_TYPE (arg))
4383 < TYPE_PRECISION (double_type_node)))
4384 arg = convert_to_real (double_type_node, arg);
4385 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg)))
4386 arg = perform_integral_promotions (arg);
4388 arg = require_complete_type (arg);
4390 if (arg != error_mark_node
4391 && !pod_type_p (TREE_TYPE (arg)))
4393 /* Undefined behavior [expr.call] 5.2.2/7. We used to just warn
4394 here and do a bitwise copy, but now cp_expr_size will abort if we
4395 try to do that.
4396 If the call appears in the context of a sizeof expression,
4397 there is no need to emit a warning, since the expression won't be
4398 evaluated. We keep the builtin_trap just as a safety check. */
4399 if (!skip_evaluation)
4400 warning ("cannot pass objects of non-POD type `%#T' through `...'; "
4401 "call will abort at runtime", TREE_TYPE (arg));
4402 arg = call_builtin_trap ();
4403 arg = build (COMPOUND_EXPR, integer_type_node, arg,
4404 integer_zero_node);
4407 return arg;
4410 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4412 tree
4413 build_x_va_arg (tree expr, tree type)
4415 if (processing_template_decl)
4416 return build_min (VA_ARG_EXPR, type, expr);
4418 type = complete_type_or_else (type, NULL_TREE);
4420 if (expr == error_mark_node || !type)
4421 return error_mark_node;
4423 if (! pod_type_p (type))
4425 /* Undefined behavior [expr.call] 5.2.2/7. */
4426 warning ("cannot receive objects of non-POD type `%#T' through `...'; \
4427 call will abort at runtime",
4428 type);
4429 expr = convert (build_pointer_type (type), null_node);
4430 expr = build (COMPOUND_EXPR, TREE_TYPE (expr),
4431 call_builtin_trap (), expr);
4432 expr = build_indirect_ref (expr, NULL);
4433 return expr;
4436 return build_va_arg (expr, type);
4439 /* TYPE has been given to va_arg. Apply the default conversions which
4440 would have happened when passed via ellipsis. Return the promoted
4441 type, or the passed type if there is no change. */
4443 tree
4444 cxx_type_promotes_to (tree type)
4446 tree promote;
4448 /* Perform the array-to-pointer and function-to-pointer
4449 conversions. */
4450 type = type_decays_to (type);
4452 promote = type_promotes_to (type);
4453 if (same_type_p (type, promote))
4454 promote = type;
4456 return promote;
4459 /* ARG is a default argument expression being passed to a parameter of
4460 the indicated TYPE, which is a parameter to FN. Do any required
4461 conversions. Return the converted value. */
4463 tree
4464 convert_default_arg (tree type, tree arg, tree fn, int parmnum)
4466 /* If the ARG is an unparsed default argument expression, the
4467 conversion cannot be performed. */
4468 if (TREE_CODE (arg) == DEFAULT_ARG)
4470 error ("the default argument for parameter %d of `%D' has "
4471 "not yet been parsed",
4472 parmnum, fn);
4473 return error_mark_node;
4476 if (fn && DECL_TEMPLATE_INFO (fn))
4477 arg = tsubst_default_argument (fn, type, arg);
4479 arg = break_out_target_exprs (arg);
4481 if (TREE_CODE (arg) == CONSTRUCTOR)
4483 arg = digest_init (type, arg, 0);
4484 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4485 "default argument", fn, parmnum);
4487 else
4489 /* This could get clobbered by the following call. */
4490 if (TREE_HAS_CONSTRUCTOR (arg))
4491 arg = copy_node (arg);
4493 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4494 "default argument", fn, parmnum);
4495 arg = convert_for_arg_passing (type, arg);
4498 return arg;
4501 /* Returns the type which will really be used for passing an argument of
4502 type TYPE. */
4504 tree
4505 type_passed_as (tree type)
4507 /* Pass classes with copy ctors by invisible reference. */
4508 if (TREE_ADDRESSABLE (type))
4509 type = build_reference_type (type);
4510 else if (targetm.calls.promote_prototypes (type)
4511 && INTEGRAL_TYPE_P (type)
4512 && COMPLETE_TYPE_P (type)
4513 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4514 TYPE_SIZE (integer_type_node)))
4515 type = integer_type_node;
4517 return type;
4520 /* Actually perform the appropriate conversion. */
4522 tree
4523 convert_for_arg_passing (tree type, tree val)
4525 if (val == error_mark_node)
4527 /* Pass classes with copy ctors by invisible reference. */
4528 else if (TREE_ADDRESSABLE (type))
4529 val = build1 (ADDR_EXPR, build_reference_type (type), val);
4530 else if (targetm.calls.promote_prototypes (type)
4531 && INTEGRAL_TYPE_P (type)
4532 && COMPLETE_TYPE_P (type)
4533 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4534 TYPE_SIZE (integer_type_node)))
4535 val = perform_integral_promotions (val);
4536 return val;
4539 /* Returns true iff FN is a function with magic varargs, i.e. ones for
4540 which no conversions at all should be done. This is true for some
4541 builtins which don't act like normal functions. */
4543 static bool
4544 magic_varargs_p (tree fn)
4546 if (DECL_BUILT_IN (fn))
4547 switch (DECL_FUNCTION_CODE (fn))
4549 case BUILT_IN_CLASSIFY_TYPE:
4550 case BUILT_IN_CONSTANT_P:
4551 case BUILT_IN_NEXT_ARG:
4552 case BUILT_IN_STDARG_START:
4553 case BUILT_IN_VA_START:
4554 return true;
4556 default:;
4559 return false;
4562 /* Subroutine of the various build_*_call functions. Overload resolution
4563 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4564 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4565 bitmask of various LOOKUP_* flags which apply to the call itself. */
4567 static tree
4568 build_over_call (struct z_candidate *cand, int flags)
4570 tree fn = cand->fn;
4571 tree args = cand->args;
4572 conversion **convs = cand->convs;
4573 conversion *conv;
4574 tree converted_args = NULL_TREE;
4575 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
4576 tree arg, val;
4577 int i = 0;
4578 int is_method = 0;
4580 /* In a template, there is no need to perform all of the work that
4581 is normally done. We are only interested in the type of the call
4582 expression, i.e., the return type of the function. Any semantic
4583 errors will be deferred until the template is instantiated. */
4584 if (processing_template_decl)
4586 tree expr;
4587 tree return_type;
4588 return_type = TREE_TYPE (TREE_TYPE (fn));
4589 expr = build (CALL_EXPR, return_type, fn, args, NULL_TREE);
4590 if (TREE_THIS_VOLATILE (fn) && cfun)
4591 current_function_returns_abnormally = 1;
4592 if (!VOID_TYPE_P (return_type))
4593 require_complete_type (return_type);
4594 return convert_from_reference (expr);
4597 /* Give any warnings we noticed during overload resolution. */
4598 if (cand->warnings)
4600 struct candidate_warning *w;
4601 for (w = cand->warnings; w; w = w->next)
4602 joust (cand, w->loser, 1);
4605 if (DECL_FUNCTION_MEMBER_P (fn))
4607 /* If FN is a template function, two cases must be considered.
4608 For example:
4610 struct A {
4611 protected:
4612 template <class T> void f();
4614 template <class T> struct B {
4615 protected:
4616 void g();
4618 struct C : A, B<int> {
4619 using A::f; // #1
4620 using B<int>::g; // #2
4623 In case #1 where `A::f' is a member template, DECL_ACCESS is
4624 recorded in the primary template but not in its specialization.
4625 We check access of FN using its primary template.
4627 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
4628 because it is a member of class template B, DECL_ACCESS is
4629 recorded in the specialization `B<int>::g'. We cannot use its
4630 primary template because `B<T>::g' and `B<int>::g' may have
4631 different access. */
4632 if (DECL_TEMPLATE_INFO (fn)
4633 && is_member_template (DECL_TI_TEMPLATE (fn)))
4634 perform_or_defer_access_check (cand->access_path,
4635 DECL_TI_TEMPLATE (fn));
4636 else
4637 perform_or_defer_access_check (cand->access_path, fn);
4640 if (args && TREE_CODE (args) != TREE_LIST)
4641 args = build_tree_list (NULL_TREE, args);
4642 arg = args;
4644 /* The implicit parameters to a constructor are not considered by overload
4645 resolution, and must be of the proper type. */
4646 if (DECL_CONSTRUCTOR_P (fn))
4648 converted_args = tree_cons (NULL_TREE, TREE_VALUE (arg), converted_args);
4649 arg = TREE_CHAIN (arg);
4650 parm = TREE_CHAIN (parm);
4651 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
4652 /* We should never try to call the abstract constructor. */
4653 abort ();
4654 if (DECL_HAS_VTT_PARM_P (fn))
4656 converted_args = tree_cons
4657 (NULL_TREE, TREE_VALUE (arg), converted_args);
4658 arg = TREE_CHAIN (arg);
4659 parm = TREE_CHAIN (parm);
4662 /* Bypass access control for 'this' parameter. */
4663 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4665 tree parmtype = TREE_VALUE (parm);
4666 tree argtype = TREE_TYPE (TREE_VALUE (arg));
4667 tree converted_arg;
4668 tree base_binfo;
4670 if (convs[i]->bad_p)
4671 pedwarn ("passing `%T' as `this' argument of `%#D' discards qualifiers",
4672 TREE_TYPE (argtype), fn);
4674 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4675 X is called for an object that is not of type X, or of a type
4676 derived from X, the behavior is undefined.
4678 So we can assume that anything passed as 'this' is non-null, and
4679 optimize accordingly. */
4680 my_friendly_assert (TREE_CODE (parmtype) == POINTER_TYPE, 19990811);
4681 /* Convert to the base in which the function was declared. */
4682 my_friendly_assert (cand->conversion_path != NULL_TREE, 20020730);
4683 converted_arg = build_base_path (PLUS_EXPR,
4684 TREE_VALUE (arg),
4685 cand->conversion_path,
4687 /* Check that the base class is accessible. */
4688 if (!accessible_base_p (TREE_TYPE (argtype),
4689 BINFO_TYPE (cand->conversion_path)))
4690 error ("`%T' is not an accessible base of `%T'",
4691 BINFO_TYPE (cand->conversion_path),
4692 TREE_TYPE (argtype));
4693 /* If fn was found by a using declaration, the conversion path
4694 will be to the derived class, not the base declaring fn. We
4695 must convert from derived to base. */
4696 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
4697 TREE_TYPE (parmtype), ba_ignore, NULL);
4698 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
4699 base_binfo, 1);
4701 converted_args = tree_cons (NULL_TREE, converted_arg, converted_args);
4702 parm = TREE_CHAIN (parm);
4703 arg = TREE_CHAIN (arg);
4704 ++i;
4705 is_method = 1;
4708 for (; arg && parm;
4709 parm = TREE_CHAIN (parm), arg = TREE_CHAIN (arg), ++i)
4711 tree type = TREE_VALUE (parm);
4713 conv = convs[i];
4714 val = convert_like_with_context
4715 (conv, TREE_VALUE (arg), fn, i - is_method);
4717 val = convert_for_arg_passing (type, val);
4718 converted_args = tree_cons (NULL_TREE, val, converted_args);
4721 /* Default arguments */
4722 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
4723 converted_args
4724 = tree_cons (NULL_TREE,
4725 convert_default_arg (TREE_VALUE (parm),
4726 TREE_PURPOSE (parm),
4727 fn, i - is_method),
4728 converted_args);
4730 /* Ellipsis */
4731 for (; arg; arg = TREE_CHAIN (arg))
4733 tree a = TREE_VALUE (arg);
4734 if (magic_varargs_p (fn))
4735 /* Do no conversions for magic varargs. */;
4736 else
4737 a = convert_arg_to_ellipsis (a);
4738 converted_args = tree_cons (NULL_TREE, a, converted_args);
4741 converted_args = nreverse (converted_args);
4743 check_function_arguments (TYPE_ATTRIBUTES (TREE_TYPE (fn)),
4744 converted_args);
4746 /* Avoid actually calling copy constructors and copy assignment operators,
4747 if possible. */
4749 if (! flag_elide_constructors)
4750 /* Do things the hard way. */;
4751 else if (cand->num_convs == 1 && DECL_COPY_CONSTRUCTOR_P (fn))
4753 tree targ;
4754 arg = skip_artificial_parms_for (fn, converted_args);
4755 arg = TREE_VALUE (arg);
4757 /* Pull out the real argument, disregarding const-correctness. */
4758 targ = arg;
4759 while (TREE_CODE (targ) == NOP_EXPR
4760 || TREE_CODE (targ) == NON_LVALUE_EXPR
4761 || TREE_CODE (targ) == CONVERT_EXPR)
4762 targ = TREE_OPERAND (targ, 0);
4763 if (TREE_CODE (targ) == ADDR_EXPR)
4765 targ = TREE_OPERAND (targ, 0);
4766 if (!same_type_ignoring_top_level_qualifiers_p
4767 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
4768 targ = NULL_TREE;
4770 else
4771 targ = NULL_TREE;
4773 if (targ)
4774 arg = targ;
4775 else
4776 arg = build_indirect_ref (arg, 0);
4778 /* [class.copy]: the copy constructor is implicitly defined even if
4779 the implementation elided its use. */
4780 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
4781 mark_used (fn);
4783 /* If we're creating a temp and we already have one, don't create a
4784 new one. If we're not creating a temp but we get one, use
4785 INIT_EXPR to collapse the temp into our target. Otherwise, if the
4786 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
4787 temp or an INIT_EXPR otherwise. */
4788 if (integer_zerop (TREE_VALUE (args)))
4790 if (TREE_CODE (arg) == TARGET_EXPR)
4791 return arg;
4792 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
4793 return build_target_expr_with_type (arg, DECL_CONTEXT (fn));
4795 else if (TREE_CODE (arg) == TARGET_EXPR
4796 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
4798 tree to = stabilize_reference
4799 (build_indirect_ref (TREE_VALUE (args), 0));
4801 val = build (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
4802 return val;
4805 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
4806 && copy_fn_p (fn)
4807 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
4809 tree to = stabilize_reference
4810 (build_indirect_ref (TREE_VALUE (converted_args), 0));
4811 tree type = TREE_TYPE (to);
4812 tree as_base = CLASSTYPE_AS_BASE (type);
4814 arg = TREE_VALUE (TREE_CHAIN (converted_args));
4815 if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
4817 arg = build_indirect_ref (arg, 0);
4818 val = build (MODIFY_EXPR, TREE_TYPE (to), to, arg);
4820 else
4822 /* We must only copy the non-tail padding parts.
4823 Use __builtin_memcpy for the bitwise copy. */
4825 tree args, t;
4827 args = tree_cons (NULL, TYPE_SIZE_UNIT (as_base), NULL);
4828 args = tree_cons (NULL, arg, args);
4829 t = build_unary_op (ADDR_EXPR, to, 0);
4830 args = tree_cons (NULL, t, args);
4831 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
4832 t = build_call (t, args);
4834 t = convert (TREE_TYPE (TREE_VALUE (args)), t);
4835 val = build_indirect_ref (t, 0);
4838 return val;
4841 mark_used (fn);
4843 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
4845 tree t, *p = &TREE_VALUE (converted_args);
4846 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (*p)),
4847 DECL_CONTEXT (fn),
4848 ba_any, NULL);
4849 my_friendly_assert (binfo && binfo != error_mark_node, 20010730);
4851 *p = build_base_path (PLUS_EXPR, *p, binfo, 1);
4852 if (TREE_SIDE_EFFECTS (*p))
4853 *p = save_expr (*p);
4854 t = build_pointer_type (TREE_TYPE (fn));
4855 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
4856 fn = build_java_interface_fn_ref (fn, *p);
4857 else
4858 fn = build_vfn_ref (*p, DECL_VINDEX (fn));
4859 TREE_TYPE (fn) = t;
4861 else if (DECL_INLINE (fn))
4862 fn = inline_conversion (fn);
4863 else
4864 fn = build_addr_func (fn);
4866 return build_cxx_call (fn, converted_args);
4869 /* Build and return a call to FN, using ARGS. This function performs
4870 no overload resolution, conversion, or other high-level
4871 operations. */
4873 tree
4874 build_cxx_call (tree fn, tree args)
4876 tree fndecl;
4878 fn = build_call (fn, args);
4880 /* If this call might throw an exception, note that fact. */
4881 fndecl = get_callee_fndecl (fn);
4882 if ((!fndecl || !TREE_NOTHROW (fndecl))
4883 && at_function_scope_p ()
4884 && cfun)
4885 cp_function_chain->can_throw = 1;
4887 /* Some built-in function calls will be evaluated at compile-time in
4888 fold (). */
4889 fn = fold (fn);
4891 if (VOID_TYPE_P (TREE_TYPE (fn)))
4892 return fn;
4894 fn = require_complete_type (fn);
4895 if (fn == error_mark_node)
4896 return error_mark_node;
4898 if (IS_AGGR_TYPE (TREE_TYPE (fn)))
4899 fn = build_cplus_new (TREE_TYPE (fn), fn);
4900 return convert_from_reference (fn);
4903 static GTY(()) tree java_iface_lookup_fn;
4905 /* Make an expression which yields the address of the Java interface
4906 method FN. This is achieved by generating a call to libjava's
4907 _Jv_LookupInterfaceMethodIdx(). */
4909 static tree
4910 build_java_interface_fn_ref (tree fn, tree instance)
4912 tree lookup_args, lookup_fn, method, idx;
4913 tree klass_ref, iface, iface_ref;
4914 int i;
4916 if (!java_iface_lookup_fn)
4918 tree endlink = build_void_list_node ();
4919 tree t = tree_cons (NULL_TREE, ptr_type_node,
4920 tree_cons (NULL_TREE, ptr_type_node,
4921 tree_cons (NULL_TREE, java_int_type_node,
4922 endlink)));
4923 java_iface_lookup_fn
4924 = builtin_function ("_Jv_LookupInterfaceMethodIdx",
4925 build_function_type (ptr_type_node, t),
4926 0, NOT_BUILT_IN, NULL, NULL_TREE);
4929 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
4930 This is the first entry in the vtable. */
4931 klass_ref = build_vtbl_ref (build_indirect_ref (instance, 0),
4932 integer_zero_node);
4934 /* Get the java.lang.Class pointer for the interface being called. */
4935 iface = DECL_CONTEXT (fn);
4936 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
4937 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
4938 || DECL_CONTEXT (iface_ref) != iface)
4940 error ("could not find class$ field in java interface type `%T'",
4941 iface);
4942 return error_mark_node;
4944 iface_ref = build_address (iface_ref);
4945 iface_ref = convert (build_pointer_type (iface), iface_ref);
4947 /* Determine the itable index of FN. */
4948 i = 1;
4949 for (method = TYPE_METHODS (iface); method; method = TREE_CHAIN (method))
4951 if (!DECL_VIRTUAL_P (method))
4952 continue;
4953 if (fn == method)
4954 break;
4955 i++;
4957 idx = build_int_2 (i, 0);
4959 lookup_args = tree_cons (NULL_TREE, klass_ref,
4960 tree_cons (NULL_TREE, iface_ref,
4961 build_tree_list (NULL_TREE, idx)));
4962 lookup_fn = build1 (ADDR_EXPR,
4963 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
4964 java_iface_lookup_fn);
4965 return build (CALL_EXPR, ptr_type_node, lookup_fn, lookup_args, NULL_TREE);
4968 /* Returns the value to use for the in-charge parameter when making a
4969 call to a function with the indicated NAME. */
4971 tree
4972 in_charge_arg_for_name (tree name)
4974 if (name == base_ctor_identifier
4975 || name == base_dtor_identifier)
4976 return integer_zero_node;
4977 else if (name == complete_ctor_identifier)
4978 return integer_one_node;
4979 else if (name == complete_dtor_identifier)
4980 return integer_two_node;
4981 else if (name == deleting_dtor_identifier)
4982 return integer_three_node;
4984 /* This function should only be called with one of the names listed
4985 above. */
4986 abort ();
4987 return NULL_TREE;
4990 /* Build a call to a constructor, destructor, or an assignment
4991 operator for INSTANCE, an expression with class type. NAME
4992 indicates the special member function to call; ARGS are the
4993 arguments. BINFO indicates the base of INSTANCE that is to be
4994 passed as the `this' parameter to the member function called.
4996 FLAGS are the LOOKUP_* flags to use when processing the call.
4998 If NAME indicates a complete object constructor, INSTANCE may be
4999 NULL_TREE. In this case, the caller will call build_cplus_new to
5000 store the newly constructed object into a VAR_DECL. */
5002 tree
5003 build_special_member_call (tree instance, tree name, tree args,
5004 tree binfo, int flags)
5006 tree fns;
5007 /* The type of the subobject to be constructed or destroyed. */
5008 tree class_type;
5010 my_friendly_assert (name == complete_ctor_identifier
5011 || name == base_ctor_identifier
5012 || name == complete_dtor_identifier
5013 || name == base_dtor_identifier
5014 || name == deleting_dtor_identifier
5015 || name == ansi_assopname (NOP_EXPR),
5016 20020712);
5017 my_friendly_assert (binfo != NULL_TREE, 20020712);
5019 class_type = BINFO_TYPE (binfo);
5021 /* Handle the special case where INSTANCE is NULL_TREE. */
5022 if (name == complete_ctor_identifier && !instance)
5024 instance = build_int_2 (0, 0);
5025 TREE_TYPE (instance) = build_pointer_type (class_type);
5026 instance = build1 (INDIRECT_REF, class_type, instance);
5028 else
5030 if (name == complete_dtor_identifier
5031 || name == base_dtor_identifier
5032 || name == deleting_dtor_identifier)
5033 my_friendly_assert (args == NULL_TREE, 20020712);
5035 /* Convert to the base class, if necessary. */
5036 if (!same_type_ignoring_top_level_qualifiers_p
5037 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
5039 if (name != ansi_assopname (NOP_EXPR))
5040 /* For constructors and destructors, either the base is
5041 non-virtual, or it is virtual but we are doing the
5042 conversion from a constructor or destructor for the
5043 complete object. In either case, we can convert
5044 statically. */
5045 instance = convert_to_base_statically (instance, binfo);
5046 else
5047 /* However, for assignment operators, we must convert
5048 dynamically if the base is virtual. */
5049 instance = build_base_path (PLUS_EXPR, instance,
5050 binfo, /*nonnull=*/1);
5054 my_friendly_assert (instance != NULL_TREE, 20020712);
5056 /* Resolve the name. */
5057 if (!complete_type_or_else (BINFO_TYPE (binfo), NULL_TREE))
5058 return error_mark_node;
5060 fns = lookup_fnfields (binfo, name, 1);
5062 /* When making a call to a constructor or destructor for a subobject
5063 that uses virtual base classes, pass down a pointer to a VTT for
5064 the subobject. */
5065 if ((name == base_ctor_identifier
5066 || name == base_dtor_identifier)
5067 && TYPE_USES_VIRTUAL_BASECLASSES (class_type))
5069 tree vtt;
5070 tree sub_vtt;
5072 /* If the current function is a complete object constructor
5073 or destructor, then we fetch the VTT directly.
5074 Otherwise, we look it up using the VTT we were given. */
5075 vtt = TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type));
5076 vtt = decay_conversion (vtt);
5077 vtt = build (COND_EXPR, TREE_TYPE (vtt),
5078 build (EQ_EXPR, boolean_type_node,
5079 current_in_charge_parm, integer_zero_node),
5080 current_vtt_parm,
5081 vtt);
5082 my_friendly_assert (BINFO_SUBVTT_INDEX (binfo), 20010110);
5083 sub_vtt = build (PLUS_EXPR, TREE_TYPE (vtt), vtt,
5084 BINFO_SUBVTT_INDEX (binfo));
5086 args = tree_cons (NULL_TREE, sub_vtt, args);
5089 return build_new_method_call (instance, fns, args,
5090 TYPE_BINFO (BINFO_TYPE (binfo)),
5091 flags);
5094 /* Return the NAME, as a C string. The NAME indicates a function that
5095 is a member of TYPE. *FREE_P is set to true if the caller must
5096 free the memory returned.
5098 Rather than go through all of this, we should simply set the names
5099 of constructors and destructors appropriately, and dispense with
5100 ctor_identifier, dtor_identifier, etc. */
5102 static char *
5103 name_as_c_string (tree name, tree type, bool *free_p)
5105 char *pretty_name;
5107 /* Assume that we will not allocate memory. */
5108 *free_p = false;
5109 /* Constructors and destructors are special. */
5110 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
5112 pretty_name
5113 = (char *) IDENTIFIER_POINTER (constructor_name (type));
5114 /* For a destructor, add the '~'. */
5115 if (name == complete_dtor_identifier
5116 || name == base_dtor_identifier
5117 || name == deleting_dtor_identifier)
5119 pretty_name = concat ("~", pretty_name, NULL);
5120 /* Remember that we need to free the memory allocated. */
5121 *free_p = true;
5124 else if (IDENTIFIER_TYPENAME_P (name))
5126 pretty_name = concat ("operator ",
5127 type_as_string (TREE_TYPE (name),
5128 TFF_PLAIN_IDENTIFIER),
5129 NULL);
5130 /* Remember that we need to free the memory allocated. */
5131 *free_p = true;
5133 else
5134 pretty_name = (char *) IDENTIFIER_POINTER (name);
5136 return pretty_name;
5139 /* Build a call to "INSTANCE.FN (ARGS)". */
5141 tree
5142 build_new_method_call (tree instance, tree fns, tree args,
5143 tree conversion_path, int flags)
5145 struct z_candidate *candidates = 0, *cand;
5146 tree explicit_targs = NULL_TREE;
5147 tree basetype = NULL_TREE;
5148 tree access_binfo;
5149 tree optype;
5150 tree mem_args = NULL_TREE, instance_ptr;
5151 tree name;
5152 tree user_args;
5153 tree call;
5154 tree fn;
5155 tree class_type;
5156 int template_only = 0;
5157 bool any_viable_p;
5158 tree orig_instance;
5159 tree orig_fns;
5160 tree orig_args;
5161 void *p;
5163 my_friendly_assert (instance != NULL_TREE, 20020729);
5165 if (error_operand_p (instance)
5166 || error_operand_p (fns)
5167 || args == error_mark_node)
5168 return error_mark_node;
5170 orig_instance = instance;
5171 orig_fns = fns;
5172 orig_args = args;
5174 if (processing_template_decl)
5176 instance = build_non_dependent_expr (instance);
5177 if (!BASELINK_P (fns)
5178 && TREE_CODE (fns) != PSEUDO_DTOR_EXPR
5179 && TREE_TYPE (fns) != unknown_type_node)
5180 fns = build_non_dependent_expr (fns);
5181 args = build_non_dependent_args (orig_args);
5184 /* Process the argument list. */
5185 user_args = args;
5186 args = resolve_args (args);
5187 if (args == error_mark_node)
5188 return error_mark_node;
5190 if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
5191 instance = convert_from_reference (instance);
5192 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
5193 instance_ptr = build_this (instance);
5195 if (!BASELINK_P (fns))
5197 error ("call to non-function `%D'", fns);
5198 return error_mark_node;
5201 if (!conversion_path)
5202 conversion_path = BASELINK_BINFO (fns);
5203 access_binfo = BASELINK_ACCESS_BINFO (fns);
5204 optype = BASELINK_OPTYPE (fns);
5205 fns = BASELINK_FUNCTIONS (fns);
5207 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
5209 explicit_targs = TREE_OPERAND (fns, 1);
5210 fns = TREE_OPERAND (fns, 0);
5211 template_only = 1;
5214 my_friendly_assert (TREE_CODE (fns) == FUNCTION_DECL
5215 || TREE_CODE (fns) == TEMPLATE_DECL
5216 || TREE_CODE (fns) == OVERLOAD,
5217 20020712);
5219 /* XXX this should be handled before we get here. */
5220 if (! IS_AGGR_TYPE (basetype))
5222 if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
5223 error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
5224 fns, instance, basetype);
5226 return error_mark_node;
5229 fn = get_first_fn (fns);
5230 name = DECL_NAME (fn);
5232 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
5234 /* Callers should explicitly indicate whether they want to construct
5235 the complete object or just the part without virtual bases. */
5236 my_friendly_assert (name != ctor_identifier, 20000408);
5237 /* Similarly for destructors. */
5238 my_friendly_assert (name != dtor_identifier, 20000408);
5241 /* It's OK to call destructors on cv-qualified objects. Therefore,
5242 convert the INSTANCE_PTR to the unqualified type, if necessary. */
5243 if (DECL_DESTRUCTOR_P (fn))
5245 tree type = build_pointer_type (basetype);
5246 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
5247 instance_ptr = build_nop (type, instance_ptr);
5250 class_type = (conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE);
5251 mem_args = tree_cons (NULL_TREE, instance_ptr, args);
5253 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5254 p = conversion_obstack_alloc (0);
5256 for (fn = fns; fn; fn = OVL_NEXT (fn))
5258 tree t = OVL_CURRENT (fn);
5259 tree this_arglist;
5261 /* We can end up here for copy-init of same or base class. */
5262 if ((flags & LOOKUP_ONLYCONVERTING)
5263 && DECL_NONCONVERTING_P (t))
5264 continue;
5266 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
5267 this_arglist = mem_args;
5268 else
5269 this_arglist = args;
5271 if (TREE_CODE (t) == TEMPLATE_DECL)
5272 /* A member template. */
5273 add_template_candidate (&candidates, t,
5274 class_type,
5275 explicit_targs,
5276 this_arglist, optype,
5277 access_binfo,
5278 conversion_path,
5279 flags,
5280 DEDUCE_CALL);
5281 else if (! template_only)
5282 add_function_candidate (&candidates, t,
5283 class_type,
5284 this_arglist,
5285 access_binfo,
5286 conversion_path,
5287 flags);
5290 candidates = splice_viable (candidates, pedantic, &any_viable_p);
5291 if (!any_viable_p)
5293 if (!COMPLETE_TYPE_P (basetype))
5294 cxx_incomplete_type_error (instance_ptr, basetype);
5295 else
5297 char *pretty_name;
5298 bool free_p;
5300 pretty_name = name_as_c_string (name, basetype, &free_p);
5301 error ("no matching function for call to `%T::%s(%A)%#V'",
5302 basetype, pretty_name, user_args,
5303 TREE_TYPE (TREE_TYPE (instance_ptr)));
5304 if (free_p)
5305 free (pretty_name);
5307 print_z_candidates (candidates);
5308 call = error_mark_node;
5310 else
5312 cand = tourney (candidates);
5313 if (cand == 0)
5315 char *pretty_name;
5316 bool free_p;
5318 pretty_name = name_as_c_string (name, basetype, &free_p);
5319 error ("call of overloaded `%s(%A)' is ambiguous", pretty_name,
5320 user_args);
5321 print_z_candidates (candidates);
5322 if (free_p)
5323 free (pretty_name);
5324 call = error_mark_node;
5326 else
5328 if (DECL_PURE_VIRTUAL_P (cand->fn)
5329 && instance == current_class_ref
5330 && (DECL_CONSTRUCTOR_P (current_function_decl)
5331 || DECL_DESTRUCTOR_P (current_function_decl))
5332 && ! (flags & LOOKUP_NONVIRTUAL)
5333 && value_member (cand->fn, CLASSTYPE_PURE_VIRTUALS (basetype)))
5334 error ((DECL_CONSTRUCTOR_P (current_function_decl) ?
5335 "abstract virtual `%#D' called from constructor"
5336 : "abstract virtual `%#D' called from destructor"),
5337 cand->fn);
5338 if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
5339 && is_dummy_object (instance_ptr))
5341 error ("cannot call member function `%D' without object",
5342 cand->fn);
5343 call = error_mark_node;
5345 else
5347 if (DECL_VINDEX (cand->fn) && ! (flags & LOOKUP_NONVIRTUAL)
5348 && resolves_to_fixed_type_p (instance, 0))
5349 flags |= LOOKUP_NONVIRTUAL;
5351 call = build_over_call (cand, flags);
5353 /* In an expression of the form `a->f()' where `f' turns
5354 out to be a static member function, `a' is
5355 none-the-less evaluated. */
5356 if (TREE_CODE (TREE_TYPE (cand->fn)) != METHOD_TYPE
5357 && !is_dummy_object (instance_ptr)
5358 && TREE_SIDE_EFFECTS (instance))
5359 call = build (COMPOUND_EXPR, TREE_TYPE (call),
5360 instance, call);
5365 if (processing_template_decl && call != error_mark_node)
5366 call = (build_min_non_dep
5367 (CALL_EXPR, call,
5368 build_min_nt (COMPONENT_REF, orig_instance, orig_fns, NULL_TREE),
5369 orig_args, NULL_TREE));
5371 /* Free all the conversions we allocated. */
5372 obstack_free (&conversion_obstack, p);
5374 return call;
5377 /* Returns true iff standard conversion sequence ICS1 is a proper
5378 subsequence of ICS2. */
5380 static bool
5381 is_subseq (conversion *ics1, conversion *ics2)
5383 /* We can assume that a conversion of the same code
5384 between the same types indicates a subsequence since we only get
5385 here if the types we are converting from are the same. */
5387 while (ics1->kind == ck_rvalue
5388 || ics1->kind == ck_lvalue)
5389 ics1 = ics1->u.next;
5391 while (1)
5393 while (ics2->kind == ck_rvalue
5394 || ics2->kind == ck_lvalue)
5395 ics2 = ics2->u.next;
5397 if (ics2->kind == ck_user
5398 || ics2->kind == ck_ambig
5399 || ics2->kind == ck_identity)
5400 /* At this point, ICS1 cannot be a proper subsequence of
5401 ICS2. We can get a USER_CONV when we are comparing the
5402 second standard conversion sequence of two user conversion
5403 sequences. */
5404 return false;
5406 ics2 = ics2->u.next;
5408 if (ics2->kind == ics1->kind
5409 && same_type_p (ics2->type, ics1->type)
5410 && same_type_p (ics2->u.next->type,
5411 ics1->u.next->type))
5412 return true;
5416 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
5417 be any _TYPE nodes. */
5419 bool
5420 is_properly_derived_from (tree derived, tree base)
5422 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived))
5423 || !IS_AGGR_TYPE_CODE (TREE_CODE (base)))
5424 return false;
5426 /* We only allow proper derivation here. The DERIVED_FROM_P macro
5427 considers every class derived from itself. */
5428 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
5429 && DERIVED_FROM_P (base, derived));
5432 /* We build the ICS for an implicit object parameter as a pointer
5433 conversion sequence. However, such a sequence should be compared
5434 as if it were a reference conversion sequence. If ICS is the
5435 implicit conversion sequence for an implicit object parameter,
5436 modify it accordingly. */
5438 static void
5439 maybe_handle_implicit_object (conversion **ics)
5441 if ((*ics)->this_p)
5443 /* [over.match.funcs]
5445 For non-static member functions, the type of the
5446 implicit object parameter is "reference to cv X"
5447 where X is the class of which the function is a
5448 member and cv is the cv-qualification on the member
5449 function declaration. */
5450 conversion *t = *ics;
5451 tree reference_type;
5453 /* The `this' parameter is a pointer to a class type. Make the
5454 implicit conversion talk about a reference to that same class
5455 type. */
5456 reference_type = TREE_TYPE (t->type);
5457 reference_type = build_reference_type (reference_type);
5459 if (t->kind == ck_qual)
5460 t = t->u.next;
5461 if (t->kind == ck_ptr)
5462 t = t->u.next;
5463 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
5464 t = direct_reference_binding (reference_type, t);
5465 *ics = t;
5469 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
5470 and return the type to which the reference refers. Otherwise,
5471 leave *ICS unchanged and return NULL_TREE. */
5473 static tree
5474 maybe_handle_ref_bind (conversion **ics)
5476 if ((*ics)->kind == ck_ref_bind)
5478 conversion *old_ics = *ics;
5479 tree type = TREE_TYPE (old_ics->type);
5480 *ics = old_ics->u.next;
5481 (*ics)->user_conv_p = old_ics->user_conv_p;
5482 (*ics)->bad_p = old_ics->bad_p;
5483 return type;
5486 return NULL_TREE;
5489 /* Compare two implicit conversion sequences according to the rules set out in
5490 [over.ics.rank]. Return values:
5492 1: ics1 is better than ics2
5493 -1: ics2 is better than ics1
5494 0: ics1 and ics2 are indistinguishable */
5496 static int
5497 compare_ics (conversion *ics1, conversion *ics2)
5499 tree from_type1;
5500 tree from_type2;
5501 tree to_type1;
5502 tree to_type2;
5503 tree deref_from_type1 = NULL_TREE;
5504 tree deref_from_type2 = NULL_TREE;
5505 tree deref_to_type1 = NULL_TREE;
5506 tree deref_to_type2 = NULL_TREE;
5507 conversion_rank rank1, rank2;
5509 /* REF_BINDING is nonzero if the result of the conversion sequence
5510 is a reference type. In that case TARGET_TYPE is the
5511 type referred to by the reference. */
5512 tree target_type1;
5513 tree target_type2;
5515 /* Handle implicit object parameters. */
5516 maybe_handle_implicit_object (&ics1);
5517 maybe_handle_implicit_object (&ics2);
5519 /* Handle reference parameters. */
5520 target_type1 = maybe_handle_ref_bind (&ics1);
5521 target_type2 = maybe_handle_ref_bind (&ics2);
5523 /* [over.ics.rank]
5525 When comparing the basic forms of implicit conversion sequences (as
5526 defined in _over.best.ics_)
5528 --a standard conversion sequence (_over.ics.scs_) is a better
5529 conversion sequence than a user-defined conversion sequence
5530 or an ellipsis conversion sequence, and
5532 --a user-defined conversion sequence (_over.ics.user_) is a
5533 better conversion sequence than an ellipsis conversion sequence
5534 (_over.ics.ellipsis_). */
5535 rank1 = CONVERSION_RANK (ics1);
5536 rank2 = CONVERSION_RANK (ics2);
5538 if (rank1 > rank2)
5539 return -1;
5540 else if (rank1 < rank2)
5541 return 1;
5543 if (rank1 == cr_bad)
5545 /* XXX Isn't this an extension? */
5546 /* Both ICS are bad. We try to make a decision based on what
5547 would have happened if they'd been good. */
5548 if (ics1->user_conv_p > ics2->user_conv_p
5549 || ics1->rank > ics2->rank)
5550 return -1;
5551 else if (ics1->user_conv_p < ics2->user_conv_p
5552 || ics1->rank < ics2->rank)
5553 return 1;
5555 /* We couldn't make up our minds; try to figure it out below. */
5558 if (ics1->ellipsis_p)
5559 /* Both conversions are ellipsis conversions. */
5560 return 0;
5562 /* User-defined conversion sequence U1 is a better conversion sequence
5563 than another user-defined conversion sequence U2 if they contain the
5564 same user-defined conversion operator or constructor and if the sec-
5565 ond standard conversion sequence of U1 is better than the second
5566 standard conversion sequence of U2. */
5568 if (ics1->user_conv_p)
5570 conversion *t1;
5571 conversion *t2;
5573 for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next)
5574 if (t1->kind == ck_ambig)
5575 return 0;
5576 for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next)
5577 if (t2->kind == ck_ambig)
5578 return 0;
5580 if (t1->cand->fn != t2->cand->fn)
5581 return 0;
5583 /* We can just fall through here, after setting up
5584 FROM_TYPE1 and FROM_TYPE2. */
5585 from_type1 = t1->type;
5586 from_type2 = t2->type;
5588 else
5590 conversion *t1;
5591 conversion *t2;
5593 /* We're dealing with two standard conversion sequences.
5595 [over.ics.rank]
5597 Standard conversion sequence S1 is a better conversion
5598 sequence than standard conversion sequence S2 if
5600 --S1 is a proper subsequence of S2 (comparing the conversion
5601 sequences in the canonical form defined by _over.ics.scs_,
5602 excluding any Lvalue Transformation; the identity
5603 conversion sequence is considered to be a subsequence of
5604 any non-identity conversion sequence */
5606 t1 = ics1;
5607 while (t1->kind != ck_identity)
5608 t1 = t1->u.next;
5609 from_type1 = t1->type;
5611 t2 = ics2;
5612 while (t2->kind != ck_identity)
5613 t2 = t2->u.next;
5614 from_type2 = t2->type;
5617 if (same_type_p (from_type1, from_type2))
5619 if (is_subseq (ics1, ics2))
5620 return 1;
5621 if (is_subseq (ics2, ics1))
5622 return -1;
5624 /* Otherwise, one sequence cannot be a subsequence of the other; they
5625 don't start with the same type. This can happen when comparing the
5626 second standard conversion sequence in two user-defined conversion
5627 sequences. */
5629 /* [over.ics.rank]
5631 Or, if not that,
5633 --the rank of S1 is better than the rank of S2 (by the rules
5634 defined below):
5636 Standard conversion sequences are ordered by their ranks: an Exact
5637 Match is a better conversion than a Promotion, which is a better
5638 conversion than a Conversion.
5640 Two conversion sequences with the same rank are indistinguishable
5641 unless one of the following rules applies:
5643 --A conversion that is not a conversion of a pointer, or pointer
5644 to member, to bool is better than another conversion that is such
5645 a conversion.
5647 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
5648 so that we do not have to check it explicitly. */
5649 if (ics1->rank < ics2->rank)
5650 return 1;
5651 else if (ics2->rank < ics1->rank)
5652 return -1;
5654 to_type1 = ics1->type;
5655 to_type2 = ics2->type;
5657 if (TYPE_PTR_P (from_type1)
5658 && TYPE_PTR_P (from_type2)
5659 && TYPE_PTR_P (to_type1)
5660 && TYPE_PTR_P (to_type2))
5662 deref_from_type1 = TREE_TYPE (from_type1);
5663 deref_from_type2 = TREE_TYPE (from_type2);
5664 deref_to_type1 = TREE_TYPE (to_type1);
5665 deref_to_type2 = TREE_TYPE (to_type2);
5667 /* The rules for pointers to members A::* are just like the rules
5668 for pointers A*, except opposite: if B is derived from A then
5669 A::* converts to B::*, not vice versa. For that reason, we
5670 switch the from_ and to_ variables here. */
5671 else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
5672 && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
5673 || (TYPE_PTRMEMFUNC_P (from_type1)
5674 && TYPE_PTRMEMFUNC_P (from_type2)
5675 && TYPE_PTRMEMFUNC_P (to_type1)
5676 && TYPE_PTRMEMFUNC_P (to_type2)))
5678 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
5679 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
5680 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
5681 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
5684 if (deref_from_type1 != NULL_TREE
5685 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1))
5686 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2)))
5688 /* This was one of the pointer or pointer-like conversions.
5690 [over.ics.rank]
5692 --If class B is derived directly or indirectly from class A,
5693 conversion of B* to A* is better than conversion of B* to
5694 void*, and conversion of A* to void* is better than
5695 conversion of B* to void*. */
5696 if (TREE_CODE (deref_to_type1) == VOID_TYPE
5697 && TREE_CODE (deref_to_type2) == VOID_TYPE)
5699 if (is_properly_derived_from (deref_from_type1,
5700 deref_from_type2))
5701 return -1;
5702 else if (is_properly_derived_from (deref_from_type2,
5703 deref_from_type1))
5704 return 1;
5706 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
5707 || TREE_CODE (deref_to_type2) == VOID_TYPE)
5709 if (same_type_p (deref_from_type1, deref_from_type2))
5711 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
5713 if (is_properly_derived_from (deref_from_type1,
5714 deref_to_type1))
5715 return 1;
5717 /* We know that DEREF_TO_TYPE1 is `void' here. */
5718 else if (is_properly_derived_from (deref_from_type1,
5719 deref_to_type2))
5720 return -1;
5723 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1))
5724 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2)))
5726 /* [over.ics.rank]
5728 --If class B is derived directly or indirectly from class A
5729 and class C is derived directly or indirectly from B,
5731 --conversion of C* to B* is better than conversion of C* to
5732 A*,
5734 --conversion of B* to A* is better than conversion of C* to
5735 A* */
5736 if (same_type_p (deref_from_type1, deref_from_type2))
5738 if (is_properly_derived_from (deref_to_type1,
5739 deref_to_type2))
5740 return 1;
5741 else if (is_properly_derived_from (deref_to_type2,
5742 deref_to_type1))
5743 return -1;
5745 else if (same_type_p (deref_to_type1, deref_to_type2))
5747 if (is_properly_derived_from (deref_from_type2,
5748 deref_from_type1))
5749 return 1;
5750 else if (is_properly_derived_from (deref_from_type1,
5751 deref_from_type2))
5752 return -1;
5756 else if (CLASS_TYPE_P (non_reference (from_type1))
5757 && same_type_p (from_type1, from_type2))
5759 tree from = non_reference (from_type1);
5761 /* [over.ics.rank]
5763 --binding of an expression of type C to a reference of type
5764 B& is better than binding an expression of type C to a
5765 reference of type A&
5767 --conversion of C to B is better than conversion of C to A, */
5768 if (is_properly_derived_from (from, to_type1)
5769 && is_properly_derived_from (from, to_type2))
5771 if (is_properly_derived_from (to_type1, to_type2))
5772 return 1;
5773 else if (is_properly_derived_from (to_type2, to_type1))
5774 return -1;
5777 else if (CLASS_TYPE_P (non_reference (to_type1))
5778 && same_type_p (to_type1, to_type2))
5780 tree to = non_reference (to_type1);
5782 /* [over.ics.rank]
5784 --binding of an expression of type B to a reference of type
5785 A& is better than binding an expression of type C to a
5786 reference of type A&,
5788 --conversion of B to A is better than conversion of C to A */
5789 if (is_properly_derived_from (from_type1, to)
5790 && is_properly_derived_from (from_type2, to))
5792 if (is_properly_derived_from (from_type2, from_type1))
5793 return 1;
5794 else if (is_properly_derived_from (from_type1, from_type2))
5795 return -1;
5799 /* [over.ics.rank]
5801 --S1 and S2 differ only in their qualification conversion and yield
5802 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
5803 qualification signature of type T1 is a proper subset of the cv-
5804 qualification signature of type T2 */
5805 if (ics1->kind == ck_qual
5806 && ics2->kind == ck_qual
5807 && same_type_p (from_type1, from_type2))
5808 return comp_cv_qual_signature (to_type1, to_type2);
5810 /* [over.ics.rank]
5812 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
5813 types to which the references refer are the same type except for
5814 top-level cv-qualifiers, and the type to which the reference
5815 initialized by S2 refers is more cv-qualified than the type to
5816 which the reference initialized by S1 refers */
5818 if (target_type1 && target_type2
5819 && same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
5820 return comp_cv_qualification (target_type2, target_type1);
5822 /* Neither conversion sequence is better than the other. */
5823 return 0;
5826 /* The source type for this standard conversion sequence. */
5828 static tree
5829 source_type (conversion *t)
5831 for (;; t = t->u.next)
5833 if (t->kind == ck_user
5834 || t->kind == ck_ambig
5835 || t->kind == ck_identity)
5836 return t->type;
5838 abort ();
5841 /* Note a warning about preferring WINNER to LOSER. We do this by storing
5842 a pointer to LOSER and re-running joust to produce the warning if WINNER
5843 is actually used. */
5845 static void
5846 add_warning (struct z_candidate *winner, struct z_candidate *loser)
5848 candidate_warning *cw;
5850 cw = conversion_obstack_alloc (sizeof (candidate_warning));
5851 cw->loser = loser;
5852 cw->next = winner->warnings;
5853 winner->warnings = cw;
5856 /* Compare two candidates for overloading as described in
5857 [over.match.best]. Return values:
5859 1: cand1 is better than cand2
5860 -1: cand2 is better than cand1
5861 0: cand1 and cand2 are indistinguishable */
5863 static int
5864 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
5866 int winner = 0;
5867 int off1 = 0, off2 = 0;
5868 size_t i;
5869 size_t len;
5871 /* Candidates that involve bad conversions are always worse than those
5872 that don't. */
5873 if (cand1->viable > cand2->viable)
5874 return 1;
5875 if (cand1->viable < cand2->viable)
5876 return -1;
5878 /* If we have two pseudo-candidates for conversions to the same type,
5879 or two candidates for the same function, arbitrarily pick one. */
5880 if (cand1->fn == cand2->fn
5881 && (TYPE_P (cand1->fn) || DECL_P (cand1->fn)))
5882 return 1;
5884 /* a viable function F1
5885 is defined to be a better function than another viable function F2 if
5886 for all arguments i, ICSi(F1) is not a worse conversion sequence than
5887 ICSi(F2), and then */
5889 /* for some argument j, ICSj(F1) is a better conversion sequence than
5890 ICSj(F2) */
5892 /* For comparing static and non-static member functions, we ignore
5893 the implicit object parameter of the non-static function. The
5894 standard says to pretend that the static function has an object
5895 parm, but that won't work with operator overloading. */
5896 len = cand1->num_convs;
5897 if (len != cand2->num_convs)
5899 if (DECL_STATIC_FUNCTION_P (cand1->fn)
5900 && ! DECL_STATIC_FUNCTION_P (cand2->fn))
5901 off2 = 1;
5902 else if (! DECL_STATIC_FUNCTION_P (cand1->fn)
5903 && DECL_STATIC_FUNCTION_P (cand2->fn))
5905 off1 = 1;
5906 --len;
5908 else
5909 abort ();
5912 for (i = 0; i < len; ++i)
5914 conversion *t1 = cand1->convs[i + off1];
5915 conversion *t2 = cand2->convs[i + off2];
5916 int comp = compare_ics (t1, t2);
5918 if (comp != 0)
5920 if (warn_sign_promo
5921 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
5922 == cr_std + cr_promotion)
5923 && t1->kind == ck_std
5924 && t2->kind == ck_std
5925 && TREE_CODE (t1->type) == INTEGER_TYPE
5926 && TREE_CODE (t2->type) == INTEGER_TYPE
5927 && (TYPE_PRECISION (t1->type)
5928 == TYPE_PRECISION (t2->type))
5929 && (TYPE_UNSIGNED (t1->u.next->type)
5930 || (TREE_CODE (t1->u.next->type)
5931 == ENUMERAL_TYPE)))
5933 tree type = t1->u.next->type;
5934 tree type1, type2;
5935 struct z_candidate *w, *l;
5936 if (comp > 0)
5937 type1 = t1->type, type2 = t2->type,
5938 w = cand1, l = cand2;
5939 else
5940 type1 = t2->type, type2 = t1->type,
5941 w = cand2, l = cand1;
5943 if (warn)
5945 warning ("passing `%T' chooses `%T' over `%T'",
5946 type, type1, type2);
5947 warning (" in call to `%D'", w->fn);
5949 else
5950 add_warning (w, l);
5953 if (winner && comp != winner)
5955 winner = 0;
5956 goto tweak;
5958 winner = comp;
5962 /* warn about confusing overload resolution for user-defined conversions,
5963 either between a constructor and a conversion op, or between two
5964 conversion ops. */
5965 if (winner && warn_conversion && cand1->second_conv
5966 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
5967 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
5969 struct z_candidate *w, *l;
5970 bool give_warning = false;
5972 if (winner == 1)
5973 w = cand1, l = cand2;
5974 else
5975 w = cand2, l = cand1;
5977 /* We don't want to complain about `X::operator T1 ()'
5978 beating `X::operator T2 () const', when T2 is a no less
5979 cv-qualified version of T1. */
5980 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
5981 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
5983 tree t = TREE_TYPE (TREE_TYPE (l->fn));
5984 tree f = TREE_TYPE (TREE_TYPE (w->fn));
5986 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
5988 t = TREE_TYPE (t);
5989 f = TREE_TYPE (f);
5991 if (!comp_ptr_ttypes (t, f))
5992 give_warning = true;
5994 else
5995 give_warning = true;
5997 if (!give_warning)
5998 /*NOP*/;
5999 else if (warn)
6001 tree source = source_type (w->convs[0]);
6002 if (! DECL_CONSTRUCTOR_P (w->fn))
6003 source = TREE_TYPE (source);
6004 warning ("choosing `%D' over `%D'", w->fn, l->fn);
6005 warning (" for conversion from `%T' to `%T'",
6006 source, w->second_conv->type);
6007 warning (" because conversion sequence for the argument is better");
6009 else
6010 add_warning (w, l);
6013 if (winner)
6014 return winner;
6016 /* or, if not that,
6017 F1 is a non-template function and F2 is a template function
6018 specialization. */
6020 if (! cand1->template && cand2->template)
6021 return 1;
6022 else if (cand1->template && ! cand2->template)
6023 return -1;
6025 /* or, if not that,
6026 F1 and F2 are template functions and the function template for F1 is
6027 more specialized than the template for F2 according to the partial
6028 ordering rules. */
6030 if (cand1->template && cand2->template)
6032 winner = more_specialized
6033 (TI_TEMPLATE (cand1->template), TI_TEMPLATE (cand2->template),
6034 DEDUCE_ORDER,
6035 /* Tell the deduction code how many real function arguments
6036 we saw, not counting the implicit 'this' argument. But,
6037 add_function_candidate() suppresses the "this" argument
6038 for constructors.
6040 [temp.func.order]: The presence of unused ellipsis and default
6041 arguments has no effect on the partial ordering of function
6042 templates. */
6043 cand1->num_convs
6044 - (DECL_NONSTATIC_MEMBER_FUNCTION_P (cand1->fn)
6045 - DECL_CONSTRUCTOR_P (cand1->fn)));
6046 if (winner)
6047 return winner;
6050 /* or, if not that,
6051 the context is an initialization by user-defined conversion (see
6052 _dcl.init_ and _over.match.user_) and the standard conversion
6053 sequence from the return type of F1 to the destination type (i.e.,
6054 the type of the entity being initialized) is a better conversion
6055 sequence than the standard conversion sequence from the return type
6056 of F2 to the destination type. */
6058 if (cand1->second_conv)
6060 winner = compare_ics (cand1->second_conv, cand2->second_conv);
6061 if (winner)
6062 return winner;
6065 /* Check whether we can discard a builtin candidate, either because we
6066 have two identical ones or matching builtin and non-builtin candidates.
6068 (Pedantically in the latter case the builtin which matched the user
6069 function should not be added to the overload set, but we spot it here.
6071 [over.match.oper]
6072 ... the builtin candidates include ...
6073 - do not have the same parameter type list as any non-template
6074 non-member candidate. */
6076 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
6077 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
6079 for (i = 0; i < len; ++i)
6080 if (!same_type_p (cand1->convs[i]->type,
6081 cand2->convs[i]->type))
6082 break;
6083 if (i == cand1->num_convs)
6085 if (cand1->fn == cand2->fn)
6086 /* Two built-in candidates; arbitrarily pick one. */
6087 return 1;
6088 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
6089 /* cand1 is built-in; prefer cand2. */
6090 return -1;
6091 else
6092 /* cand2 is built-in; prefer cand1. */
6093 return 1;
6097 /* If the two functions are the same (this can happen with declarations
6098 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
6099 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
6100 && equal_functions (cand1->fn, cand2->fn))
6101 return 1;
6103 tweak:
6105 /* Extension: If the worst conversion for one candidate is worse than the
6106 worst conversion for the other, take the first. */
6107 if (!pedantic)
6109 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
6110 struct z_candidate *w = 0, *l = 0;
6112 for (i = 0; i < len; ++i)
6114 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
6115 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
6116 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
6117 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
6119 if (rank1 < rank2)
6120 winner = 1, w = cand1, l = cand2;
6121 if (rank1 > rank2)
6122 winner = -1, w = cand2, l = cand1;
6123 if (winner)
6125 if (warn)
6127 pedwarn ("\
6128 ISO C++ says that these are ambiguous, even \
6129 though the worst conversion for the first is better than \
6130 the worst conversion for the second:");
6131 print_z_candidate (_("candidate 1:"), w);
6132 print_z_candidate (_("candidate 2:"), l);
6134 else
6135 add_warning (w, l);
6136 return winner;
6140 my_friendly_assert (!winner, 20010121);
6141 return 0;
6144 /* Given a list of candidates for overloading, find the best one, if any.
6145 This algorithm has a worst case of O(2n) (winner is last), and a best
6146 case of O(n/2) (totally ambiguous); much better than a sorting
6147 algorithm. */
6149 static struct z_candidate *
6150 tourney (struct z_candidate *candidates)
6152 struct z_candidate *champ = candidates, *challenger;
6153 int fate;
6154 int champ_compared_to_predecessor = 0;
6156 /* Walk through the list once, comparing each current champ to the next
6157 candidate, knocking out a candidate or two with each comparison. */
6159 for (challenger = champ->next; challenger; )
6161 fate = joust (champ, challenger, 0);
6162 if (fate == 1)
6163 challenger = challenger->next;
6164 else
6166 if (fate == 0)
6168 champ = challenger->next;
6169 if (champ == 0)
6170 return 0;
6171 champ_compared_to_predecessor = 0;
6173 else
6175 champ = challenger;
6176 champ_compared_to_predecessor = 1;
6179 challenger = champ->next;
6183 /* Make sure the champ is better than all the candidates it hasn't yet
6184 been compared to. */
6186 for (challenger = candidates;
6187 challenger != champ
6188 && !(champ_compared_to_predecessor && challenger->next == champ);
6189 challenger = challenger->next)
6191 fate = joust (champ, challenger, 0);
6192 if (fate != 1)
6193 return 0;
6196 return champ;
6199 /* Returns nonzero if things of type FROM can be converted to TO. */
6201 bool
6202 can_convert (tree to, tree from)
6204 return can_convert_arg (to, from, NULL_TREE);
6207 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
6209 bool
6210 can_convert_arg (tree to, tree from, tree arg)
6212 conversion *t;
6213 void *p;
6214 bool ok_p;
6216 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6217 p = conversion_obstack_alloc (0);
6219 t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
6220 ok_p = (t && !t->bad_p);
6222 /* Free all the conversions we allocated. */
6223 obstack_free (&conversion_obstack, p);
6225 return ok_p;
6228 /* Like can_convert_arg, but allows dubious conversions as well. */
6230 bool
6231 can_convert_arg_bad (tree to, tree from, tree arg)
6233 conversion *t;
6234 void *p;
6236 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6237 p = conversion_obstack_alloc (0);
6238 /* Try to perform the conversion. */
6239 t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
6240 /* Free all the conversions we allocated. */
6241 obstack_free (&conversion_obstack, p);
6243 return t != NULL;
6246 /* Convert EXPR to TYPE. Return the converted expression.
6248 Note that we allow bad conversions here because by the time we get to
6249 this point we are committed to doing the conversion. If we end up
6250 doing a bad conversion, convert_like will complain. */
6252 tree
6253 perform_implicit_conversion (tree type, tree expr)
6255 conversion *conv;
6256 void *p;
6258 if (error_operand_p (expr))
6259 return error_mark_node;
6261 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6262 p = conversion_obstack_alloc (0);
6264 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
6265 LOOKUP_NORMAL);
6266 if (!conv)
6268 error ("could not convert `%E' to `%T'", expr, type);
6269 expr = error_mark_node;
6271 else
6272 expr = convert_like (conv, expr);
6274 /* Free all the conversions we allocated. */
6275 obstack_free (&conversion_obstack, p);
6277 return expr;
6280 /* Convert EXPR to TYPE (as a direct-initialization) if that is
6281 permitted. If the conversion is valid, the converted expression is
6282 returned. Otherwise, NULL_TREE is returned, except in the case
6283 that TYPE is a class type; in that case, an error is issued. */
6285 tree
6286 perform_direct_initialization_if_possible (tree type, tree expr)
6288 conversion *conv;
6289 void *p;
6291 if (type == error_mark_node || error_operand_p (expr))
6292 return error_mark_node;
6293 /* [dcl.init]
6295 If the destination type is a (possibly cv-qualified) class type:
6297 -- If the initialization is direct-initialization ...,
6298 constructors are considered. ... If no constructor applies, or
6299 the overload resolution is ambiguous, the initialization is
6300 ill-formed. */
6301 if (CLASS_TYPE_P (type))
6303 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6304 build_tree_list (NULL_TREE, expr),
6305 TYPE_BINFO (type),
6306 LOOKUP_NORMAL);
6307 return build_cplus_new (type, expr);
6310 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6311 p = conversion_obstack_alloc (0);
6313 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
6314 LOOKUP_NORMAL);
6315 if (!conv || conv->bad_p)
6316 expr = NULL_TREE;
6317 else
6318 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
6319 /*issue_conversion_warnings=*/false);
6321 /* Free all the conversions we allocated. */
6322 obstack_free (&conversion_obstack, p);
6324 return expr;
6327 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
6328 is being bound to a temporary. Create and return a new VAR_DECL
6329 with the indicated TYPE; this variable will store the value to
6330 which the reference is bound. */
6332 tree
6333 make_temporary_var_for_ref_to_temp (tree decl, tree type)
6335 tree var;
6337 /* Create the variable. */
6338 var = build_decl (VAR_DECL, NULL_TREE, type);
6339 DECL_ARTIFICIAL (var) = 1;
6340 TREE_USED (var) = 1;
6342 /* Register the variable. */
6343 if (TREE_STATIC (decl))
6345 /* Namespace-scope or local static; give it a mangled name. */
6346 tree name;
6348 TREE_STATIC (var) = 1;
6349 name = mangle_ref_init_variable (decl);
6350 DECL_NAME (var) = name;
6351 SET_DECL_ASSEMBLER_NAME (var, name);
6352 var = pushdecl_top_level (var);
6354 else
6356 /* Create a new cleanup level if necessary. */
6357 maybe_push_cleanup_level (type);
6358 /* Don't push unnamed temps. Do set DECL_CONTEXT, though. */
6359 DECL_CONTEXT (var) = current_function_decl;
6362 return var;
6365 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
6366 initializing a variable of that TYPE. If DECL is non-NULL, it is
6367 the VAR_DECL being initialized with the EXPR. (In that case, the
6368 type of DECL will be TYPE.) If DECL is non-NULL, then CLEANUP must
6369 also be non-NULL, and with *CLEANUP initialized to NULL. Upon
6370 return, if *CLEANUP is no longer NULL, it will be an expression
6371 that should be pushed as a cleanup after the returned expression
6372 is used to initialize DECL.
6374 Return the converted expression. */
6376 tree
6377 initialize_reference (tree type, tree expr, tree decl, tree *cleanup)
6379 conversion *conv;
6380 void *p;
6382 if (type == error_mark_node || error_operand_p (expr))
6383 return error_mark_node;
6385 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6386 p = conversion_obstack_alloc (0);
6388 conv = reference_binding (type, TREE_TYPE (expr), expr, LOOKUP_NORMAL);
6389 if (!conv || conv->bad_p)
6391 if (!(TYPE_QUALS (TREE_TYPE (type)) & TYPE_QUAL_CONST)
6392 && !real_lvalue_p (expr))
6393 error ("invalid initialization of non-const reference of "
6394 "type '%T' from a temporary of type '%T'",
6395 type, TREE_TYPE (expr));
6396 else
6397 error ("invalid initialization of reference of type "
6398 "'%T' from expression of type '%T'", type,
6399 TREE_TYPE (expr));
6400 return error_mark_node;
6403 /* If DECL is non-NULL, then this special rule applies:
6405 [class.temporary]
6407 The temporary to which the reference is bound or the temporary
6408 that is the complete object to which the reference is bound
6409 persists for the lifetime of the reference.
6411 The temporaries created during the evaluation of the expression
6412 initializing the reference, except the temporary to which the
6413 reference is bound, are destroyed at the end of the
6414 full-expression in which they are created.
6416 In that case, we store the converted expression into a new
6417 VAR_DECL in a new scope.
6419 However, we want to be careful not to create temporaries when
6420 they are not required. For example, given:
6422 struct B {};
6423 struct D : public B {};
6424 D f();
6425 const B& b = f();
6427 there is no need to copy the return value from "f"; we can just
6428 extend its lifetime. Similarly, given:
6430 struct S {};
6431 struct T { operator S(); };
6432 T t;
6433 const S& s = t;
6435 we can extend the lifetime of the return value of the conversion
6436 operator. */
6437 my_friendly_assert (conv->kind == ck_ref_bind, 20030302);
6438 if (decl)
6440 tree var;
6441 tree base_conv_type;
6443 /* Skip over the REF_BIND. */
6444 conv = conv->u.next;
6445 /* If the next conversion is a BASE_CONV, skip that too -- but
6446 remember that the conversion was required. */
6447 if (conv->kind == ck_base && conv->need_temporary_p)
6449 if (conv->check_copy_constructor_p)
6450 check_constructor_callable (TREE_TYPE (expr), expr);
6451 base_conv_type = conv->type;
6452 conv = conv->u.next;
6454 else
6455 base_conv_type = NULL_TREE;
6456 /* Perform the remainder of the conversion. */
6457 expr = convert_like_real (conv, expr,
6458 /*fn=*/NULL_TREE, /*argnum=*/0,
6459 /*inner=*/-1,
6460 /*issue_conversion_warnings=*/true);
6461 if (!real_lvalue_p (expr))
6463 tree init;
6464 tree type;
6466 /* Create the temporary variable. */
6467 type = TREE_TYPE (expr);
6468 var = make_temporary_var_for_ref_to_temp (decl, type);
6469 layout_decl (var, 0);
6470 /* If the rvalue is the result of a function call it will be
6471 a TARGET_EXPR. If it is some other construct (such as a
6472 member access expression where the underlying object is
6473 itself the result of a function call), turn it into a
6474 TARGET_EXPR here. It is important that EXPR be a
6475 TARGET_EXPR below since otherwise the INIT_EXPR will
6476 attempt to make a bitwise copy of EXPR to initialize
6477 VAR. */
6478 if (TREE_CODE (expr) != TARGET_EXPR)
6479 expr = get_target_expr (expr);
6480 /* Create the INIT_EXPR that will initialize the temporary
6481 variable. */
6482 init = build (INIT_EXPR, type, var, expr);
6483 if (at_function_scope_p ())
6485 add_decl_expr (var);
6486 *cleanup = cxx_maybe_build_cleanup (var);
6488 /* We must be careful to destroy the temporary only
6489 after its initialization has taken place. If the
6490 initialization throws an exception, then the
6491 destructor should not be run. We cannot simply
6492 transform INIT into something like:
6494 (INIT, ({ CLEANUP_STMT; }))
6496 because emit_local_var always treats the
6497 initializer as a full-expression. Thus, the
6498 destructor would run too early; it would run at the
6499 end of initializing the reference variable, rather
6500 than at the end of the block enclosing the
6501 reference variable.
6503 The solution is to pass back a cleanup expression
6504 which the caller is responsible for attaching to
6505 the statement tree. */
6507 else
6509 rest_of_decl_compilation (var, NULL, /*toplev=*/1, at_eof);
6510 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6511 static_aggregates = tree_cons (NULL_TREE, var,
6512 static_aggregates);
6514 /* Use its address to initialize the reference variable. */
6515 expr = build_address (var);
6516 expr = build (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
6518 else
6519 /* Take the address of EXPR. */
6520 expr = build_unary_op (ADDR_EXPR, expr, 0);
6521 /* If a BASE_CONV was required, perform it now. */
6522 if (base_conv_type)
6523 expr = (perform_implicit_conversion
6524 (build_pointer_type (base_conv_type), expr));
6525 expr = build_nop (type, expr);
6527 else
6528 /* Perform the conversion. */
6529 expr = convert_like (conv, expr);
6531 /* Free all the conversions we allocated. */
6532 obstack_free (&conversion_obstack, p);
6534 return expr;
6537 #include "gt-cp-call.h"