PR c++/11786
[official-gcc.git] / gcc / cp / call.c
blobbc7e3b8ab5bd0a72cff7f40a99764990f9210150
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 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 static tree build_field_call (tree, tree, tree);
44 static struct z_candidate * tourney (struct z_candidate *);
45 static int equal_functions (tree, tree);
46 static int joust (struct z_candidate *, struct z_candidate *, bool);
47 static int compare_ics (tree, tree);
48 static tree build_over_call (struct z_candidate *, int);
49 static tree build_java_interface_fn_ref (tree, tree);
50 #define convert_like(CONV, EXPR) \
51 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
52 /*issue_conversion_warnings=*/true)
53 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
54 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
55 /*issue_conversion_warnings=*/true)
56 static tree convert_like_real (tree, tree, tree, int, int, bool);
57 static void op_error (enum tree_code, enum tree_code, tree, tree,
58 tree, const char *);
59 static tree build_object_call (tree, tree);
60 static tree resolve_args (tree);
61 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
62 static void print_z_candidate (const char *, struct z_candidate *);
63 static void print_z_candidates (struct z_candidate *);
64 static tree build_this (tree);
65 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
66 static bool any_strictly_viable (struct z_candidate *);
67 static struct z_candidate *add_template_candidate
68 (struct z_candidate **, tree, tree, tree, tree, tree,
69 tree, tree, int, unification_kind_t);
70 static struct z_candidate *add_template_candidate_real
71 (struct z_candidate **, tree, tree, tree, tree, tree,
72 tree, tree, int, tree, unification_kind_t);
73 static struct z_candidate *add_template_conv_candidate
74 (struct z_candidate **, tree, tree, tree, tree, tree, tree);
75 static void add_builtin_candidates
76 (struct z_candidate **, enum tree_code, enum tree_code,
77 tree, tree *, int);
78 static void add_builtin_candidate
79 (struct z_candidate **, enum tree_code, enum tree_code,
80 tree, tree, tree, tree *, tree *, int);
81 static bool is_complete (tree);
82 static void build_builtin_candidate
83 (struct z_candidate **, tree, tree, tree, tree *, tree *,
84 int);
85 static struct z_candidate *add_conv_candidate
86 (struct z_candidate **, tree, tree, tree, tree, tree);
87 static struct z_candidate *add_function_candidate
88 (struct z_candidate **, tree, tree, tree, tree, tree, int);
89 static tree implicit_conversion (tree, tree, tree, int);
90 static tree standard_conversion (tree, tree, tree);
91 static tree reference_binding (tree, tree, tree, int);
92 static tree build_conv (enum tree_code, tree, tree);
93 static bool is_subseq (tree, tree);
94 static tree maybe_handle_ref_bind (tree *);
95 static void maybe_handle_implicit_object (tree *);
96 static struct z_candidate *add_candidate
97 (struct z_candidate **, tree, tree, tree, tree, tree, int);
98 static tree source_type (tree);
99 static void add_warning (struct z_candidate *, struct z_candidate *);
100 static bool reference_related_p (tree, tree);
101 static bool reference_compatible_p (tree, tree);
102 static tree convert_class_to_reference (tree, tree, tree);
103 static tree direct_reference_binding (tree, tree);
104 static bool promoted_arithmetic_type_p (tree);
105 static tree conditional_conversion (tree, tree);
106 static char *name_as_c_string (tree, tree, bool *);
107 static tree call_builtin_trap (void);
108 static tree prep_operand (tree);
109 static void add_candidates (tree, tree, tree, bool, tree, tree,
110 int, struct z_candidate **);
111 static tree merge_conversion_sequences (tree, tree);
113 tree
114 build_vfield_ref (tree datum, tree type)
116 if (datum == error_mark_node)
117 return error_mark_node;
119 if (TREE_CODE (TREE_TYPE (datum)) == REFERENCE_TYPE)
120 datum = convert_from_reference (datum);
122 if (TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
123 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (datum), type))
124 datum = convert_to_base (datum, type, /*check_access=*/false);
126 return build (COMPONENT_REF, TREE_TYPE (TYPE_VFIELD (type)),
127 datum, TYPE_VFIELD (type));
130 /* Build a call to a member of an object. I.e., one that overloads
131 operator ()(), or is a pointer-to-function or pointer-to-method. */
133 static tree
134 build_field_call (tree instance_ptr, tree decl, tree parms)
136 tree instance;
138 if (decl == error_mark_node || decl == NULL_TREE)
139 return decl;
141 if (TREE_CODE (decl) == FIELD_DECL || TREE_CODE (decl) == VAR_DECL)
143 /* If it's a field, try overloading operator (),
144 or calling if the field is a pointer-to-function. */
145 instance = build_indirect_ref (instance_ptr, NULL);
146 instance = build_class_member_access_expr (instance, decl,
147 /*access_path=*/NULL_TREE,
148 /*preserve_reference=*/false);
150 if (instance == error_mark_node)
151 return error_mark_node;
153 if (IS_AGGR_TYPE (TREE_TYPE (instance)))
154 return build_new_op (CALL_EXPR, LOOKUP_NORMAL,
155 instance, parms, NULL_TREE);
156 else if (TREE_CODE (TREE_TYPE (instance)) == FUNCTION_TYPE
157 || (TREE_CODE (TREE_TYPE (instance)) == POINTER_TYPE
158 && (TREE_CODE (TREE_TYPE (TREE_TYPE (instance)))
159 == FUNCTION_TYPE)))
160 return build_function_call (instance, parms);
163 return NULL_TREE;
166 /* Returns nonzero iff the destructor name specified in NAME
167 (a BIT_NOT_EXPR) matches BASETYPE. The operand of NAME can take many
168 forms... */
170 bool
171 check_dtor_name (tree basetype, tree name)
173 name = TREE_OPERAND (name, 0);
175 /* Just accept something we've already complained about. */
176 if (name == error_mark_node)
177 return true;
179 if (TREE_CODE (name) == TYPE_DECL)
180 name = TREE_TYPE (name);
181 else if (TYPE_P (name))
182 /* OK */;
183 else if (TREE_CODE (name) == IDENTIFIER_NODE)
185 if ((IS_AGGR_TYPE (basetype) && name == constructor_name (basetype))
186 || (TREE_CODE (basetype) == ENUMERAL_TYPE
187 && name == TYPE_IDENTIFIER (basetype)))
188 name = basetype;
189 else
190 name = get_type_value (name);
192 /* In the case of:
194 template <class T> struct S { ~S(); };
195 int i;
196 i.~S();
198 NAME will be a class template. */
199 else if (DECL_CLASS_TEMPLATE_P (name))
200 return false;
201 else
202 abort ();
204 if (name && TYPE_MAIN_VARIANT (basetype) == TYPE_MAIN_VARIANT (name))
205 return true;
206 return false;
209 /* We want the address of a function or method. We avoid creating a
210 pointer-to-member function. */
212 tree
213 build_addr_func (tree function)
215 tree type = TREE_TYPE (function);
217 /* We have to do these by hand to avoid real pointer to member
218 functions. */
219 if (TREE_CODE (type) == METHOD_TYPE)
221 if (TREE_CODE (function) == OFFSET_REF)
223 tree object = build_address (TREE_OPERAND (function, 0));
224 return get_member_function_from_ptrfunc (&object,
225 TREE_OPERAND (function, 1));
227 function = build_address (function);
229 else
230 function = decay_conversion (function);
232 return function;
235 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
236 POINTER_TYPE to those. Note, pointer to member function types
237 (TYPE_PTRMEMFUNC_P) must be handled by our callers. */
239 tree
240 build_call (tree function, tree parms)
242 int is_constructor = 0;
243 int nothrow;
244 tree tmp;
245 tree decl;
246 tree result_type;
247 tree fntype;
249 function = build_addr_func (function);
251 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
253 sorry ("unable to call pointer to member function here");
254 return error_mark_node;
257 fntype = TREE_TYPE (TREE_TYPE (function));
258 result_type = TREE_TYPE (fntype);
260 if (TREE_CODE (function) == ADDR_EXPR
261 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
262 decl = TREE_OPERAND (function, 0);
263 else
264 decl = NULL_TREE;
266 /* We check both the decl and the type; a function may be known not to
267 throw without being declared throw(). */
268 nothrow = ((decl && TREE_NOTHROW (decl))
269 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
271 if (decl && TREE_THIS_VOLATILE (decl) && cfun)
272 current_function_returns_abnormally = 1;
274 if (decl && TREE_DEPRECATED (decl))
275 warn_deprecated_use (decl);
276 require_complete_eh_spec_types (fntype, decl);
278 if (decl && DECL_CONSTRUCTOR_P (decl))
279 is_constructor = 1;
281 if (decl && ! TREE_USED (decl))
283 /* We invoke build_call directly for several library functions.
284 These may have been declared normally if we're building libgcc,
285 so we can't just check DECL_ARTIFICIAL. */
286 if (DECL_ARTIFICIAL (decl)
287 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "__", 2))
288 mark_used (decl);
289 else
290 abort ();
293 /* Don't pass empty class objects by value. This is useful
294 for tags in STL, which are used to control overload resolution.
295 We don't need to handle other cases of copying empty classes. */
296 if (! decl || ! DECL_BUILT_IN (decl))
297 for (tmp = parms; tmp; tmp = TREE_CHAIN (tmp))
298 if (is_empty_class (TREE_TYPE (TREE_VALUE (tmp)))
299 && ! TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (tmp))))
301 tree t = build (EMPTY_CLASS_EXPR, TREE_TYPE (TREE_VALUE (tmp)));
302 TREE_VALUE (tmp) = build (COMPOUND_EXPR, TREE_TYPE (t),
303 TREE_VALUE (tmp), t);
306 function = build (CALL_EXPR, result_type, function, parms);
307 TREE_HAS_CONSTRUCTOR (function) = is_constructor;
308 TREE_NOTHROW (function) = nothrow;
310 return function;
313 /* Build something of the form ptr->method (args)
314 or object.method (args). This can also build
315 calls to constructors, and find friends.
317 Member functions always take their class variable
318 as a pointer.
320 INSTANCE is a class instance.
322 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
324 PARMS help to figure out what that NAME really refers to.
326 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
327 down to the real instance type to use for access checking. We need this
328 information to get protected accesses correct.
330 FLAGS is the logical disjunction of zero or more LOOKUP_
331 flags. See cp-tree.h for more info.
333 If this is all OK, calls build_function_call with the resolved
334 member function.
336 This function must also handle being called to perform
337 initialization, promotion/coercion of arguments, and
338 instantiation of default parameters.
340 Note that NAME may refer to an instance variable name. If
341 `operator()()' is defined for the type of that field, then we return
342 that result. */
344 #ifdef GATHER_STATISTICS
345 extern int n_build_method_call;
346 #endif
348 tree
349 build_method_call (tree instance, tree name, tree parms,
350 tree basetype_path, int flags)
352 tree fn;
353 tree object_type;
354 tree template_args = NULL_TREE;
355 bool has_template_args = false;
357 #ifdef GATHER_STATISTICS
358 n_build_method_call++;
359 #endif
361 if (error_operand_p (instance)
362 || name == error_mark_node
363 || parms == error_mark_node)
364 return error_mark_node;
366 my_friendly_assert (!processing_template_decl, 20030707);
368 if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
369 instance = convert_from_reference (instance);
370 object_type = TREE_TYPE (instance);
372 if (TREE_CODE (name) == BIT_NOT_EXPR)
374 tree instance_ptr;
376 if (parms)
377 error ("destructors take no parameters");
379 if (! check_dtor_name (object_type, name))
380 error
381 ("destructor name `~%T' does not match type `%T' of expression",
382 TREE_OPERAND (name, 0), object_type);
384 if (! TYPE_HAS_DESTRUCTOR (complete_type (object_type)))
385 return convert_to_void (instance, /*implicit=*/NULL);
386 instance = default_conversion (instance);
387 instance_ptr = build_unary_op (ADDR_EXPR, instance, 0);
388 return build_delete (build_pointer_type (object_type),
389 instance_ptr, sfk_complete_destructor,
390 LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0);
393 if (!CLASS_TYPE_P (object_type))
395 if ((flags & LOOKUP_COMPLAIN)
396 && TREE_TYPE (instance) != error_mark_node)
397 error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
398 name, instance, object_type);
399 return error_mark_node;
402 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
404 template_args = TREE_OPERAND (name, 1);
405 has_template_args = true;
406 name = TREE_OPERAND (name, 0);
408 if (TREE_CODE (name) == OVERLOAD)
409 name = DECL_NAME (get_first_fn (name));
410 else if (DECL_P (name))
411 name = DECL_NAME (name);
412 if (has_template_args)
413 fn = lookup_fnfields (object_type, name, /*protect=*/2);
414 else
415 fn = lookup_member (object_type, name, /*protect=*/2, /*want_type=*/false);
417 if (fn && TREE_CODE (fn) == TREE_LIST)
419 error ("request for member `%D' is ambiguous", name);
420 print_candidates (fn);
421 return error_mark_node;
424 /* If the name could not be found, issue an error. */
425 if (!fn)
426 return unqualified_name_lookup_error (name);
428 if (BASELINK_P (fn) && has_template_args)
429 BASELINK_FUNCTIONS (fn)
430 = build_nt (TEMPLATE_ID_EXPR,
431 BASELINK_FUNCTIONS (fn),
432 template_args);
433 if (BASELINK_P (fn) && basetype_path)
434 BASELINK_ACCESS_BINFO (fn) = basetype_path;
436 return build_new_method_call (instance, fn, parms,
437 /*conversion_path=*/NULL_TREE, flags);
440 /* New overloading code. */
442 struct z_candidate GTY(()) {
443 /* The FUNCTION_DECL that will be called if this candidate is
444 selected by overload resolution. */
445 tree fn;
446 /* The arguments to use when calling this function. */
447 tree args;
448 /* The implicit conversion sequences for each of the arguments to
449 FN. */
450 tree convs;
451 /* If FN is a user-defined conversion, the standard conversion
452 sequence from the type returned by FN to the desired destination
453 type. */
454 tree second_conv;
455 int viable;
456 /* If FN is a member function, the binfo indicating the path used to
457 qualify the name of FN at the call site. This path is used to
458 determine whether or not FN is accessible if it is selected by
459 overload resolution. The DECL_CONTEXT of FN will always be a
460 (possibly improper) base of this binfo. */
461 tree access_path;
462 /* If FN is a non-static member function, the binfo indicating the
463 subobject to which the `this' pointer should be converted if FN
464 is selected by overload resolution. The type pointed to the by
465 the `this' pointer must correspond to the most derived class
466 indicated by the CONVERSION_PATH. */
467 tree conversion_path;
468 tree template;
469 tree warnings;
470 struct z_candidate *next;
473 #define IDENTITY_RANK 0
474 #define EXACT_RANK 1
475 #define PROMO_RANK 2
476 #define STD_RANK 3
477 #define PBOOL_RANK 4
478 #define USER_RANK 5
479 #define ELLIPSIS_RANK 6
480 #define BAD_RANK 7
482 #define ICS_RANK(NODE) \
483 (ICS_BAD_FLAG (NODE) ? BAD_RANK \
484 : ICS_ELLIPSIS_FLAG (NODE) ? ELLIPSIS_RANK \
485 : ICS_USER_FLAG (NODE) ? USER_RANK \
486 : ICS_STD_RANK (NODE))
488 #define ICS_STD_RANK(NODE) TREE_COMPLEXITY (NODE)
490 #define ICS_USER_FLAG(NODE) TREE_LANG_FLAG_0 (NODE)
491 #define ICS_ELLIPSIS_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
492 #define ICS_THIS_FLAG(NODE) TREE_LANG_FLAG_2 (NODE)
493 #define ICS_BAD_FLAG(NODE) TREE_LANG_FLAG_3 (NODE)
495 /* In a REF_BIND or a BASE_CONV, this indicates that a temporary
496 should be created to hold the result of the conversion. */
497 #define NEED_TEMPORARY_P(NODE) TREE_LANG_FLAG_4 (NODE)
499 #define USER_CONV_CAND(NODE) WRAPPER_ZC (TREE_OPERAND (NODE, 1))
500 #define USER_CONV_FN(NODE) (USER_CONV_CAND (NODE)->fn)
502 bool
503 null_ptr_cst_p (tree t)
505 /* [conv.ptr]
507 A null pointer constant is an integral constant expression
508 (_expr.const_) rvalue of integer type that evaluates to zero. */
509 if (t == null_node
510 || (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t)))
511 return true;
512 return false;
516 /* Returns nonzero if PARMLIST consists of only default parms and/or
517 ellipsis. */
519 bool
520 sufficient_parms_p (tree parmlist)
522 for (; parmlist && parmlist != void_list_node;
523 parmlist = TREE_CHAIN (parmlist))
524 if (!TREE_PURPOSE (parmlist))
525 return false;
526 return true;
529 static tree
530 build_conv (enum tree_code code, tree type, tree from)
532 tree t;
533 int rank = ICS_STD_RANK (from);
535 /* We can't use buildl1 here because CODE could be USER_CONV, which
536 takes two arguments. In that case, the caller is responsible for
537 filling in the second argument. */
538 t = make_node (code);
539 TREE_TYPE (t) = type;
540 TREE_OPERAND (t, 0) = from;
542 switch (code)
544 case PTR_CONV:
545 case PMEM_CONV:
546 case BASE_CONV:
547 case STD_CONV:
548 if (rank < STD_RANK)
549 rank = STD_RANK;
550 break;
552 case QUAL_CONV:
553 if (rank < EXACT_RANK)
554 rank = EXACT_RANK;
556 default:
557 break;
559 ICS_STD_RANK (t) = rank;
560 ICS_USER_FLAG (t) = (code == USER_CONV || ICS_USER_FLAG (from));
561 ICS_BAD_FLAG (t) = ICS_BAD_FLAG (from);
562 return t;
565 tree
566 strip_top_quals (tree t)
568 if (TREE_CODE (t) == ARRAY_TYPE)
569 return t;
570 return cp_build_qualified_type (t, 0);
573 /* Returns the standard conversion path (see [conv]) from type FROM to type
574 TO, if any. For proper handling of null pointer constants, you must
575 also pass the expression EXPR to convert from. */
577 static tree
578 standard_conversion (tree to, tree from, tree expr)
580 enum tree_code fcode, tcode;
581 tree conv;
582 bool fromref = false;
584 to = non_reference (to);
585 if (TREE_CODE (from) == REFERENCE_TYPE)
587 fromref = true;
588 from = TREE_TYPE (from);
590 to = strip_top_quals (to);
591 from = strip_top_quals (from);
593 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
594 && expr && type_unknown_p (expr))
596 expr = instantiate_type (to, expr, tf_none);
597 if (expr == error_mark_node)
598 return NULL_TREE;
599 from = TREE_TYPE (expr);
602 fcode = TREE_CODE (from);
603 tcode = TREE_CODE (to);
605 conv = build1 (IDENTITY_CONV, from, expr);
607 if (fcode == FUNCTION_TYPE)
609 from = build_pointer_type (from);
610 fcode = TREE_CODE (from);
611 conv = build_conv (LVALUE_CONV, from, conv);
613 else if (fcode == ARRAY_TYPE)
615 from = build_pointer_type (TREE_TYPE (from));
616 fcode = TREE_CODE (from);
617 conv = build_conv (LVALUE_CONV, from, conv);
619 else if (fromref || (expr && lvalue_p (expr)))
620 conv = build_conv (RVALUE_CONV, from, conv);
622 /* Allow conversion between `__complex__' data types */
623 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
625 /* The standard conversion sequence to convert FROM to TO is
626 the standard conversion sequence to perform componentwise
627 conversion. */
628 tree part_conv = standard_conversion
629 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE);
631 if (part_conv)
633 conv = build_conv (TREE_CODE (part_conv), to, conv);
634 ICS_STD_RANK (conv) = ICS_STD_RANK (part_conv);
636 else
637 conv = NULL_TREE;
639 return conv;
642 if (same_type_p (from, to))
643 return conv;
645 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
646 && expr && null_ptr_cst_p (expr))
647 conv = build_conv (STD_CONV, to, conv);
648 else if (tcode == POINTER_TYPE && fcode == POINTER_TYPE
649 && TREE_CODE (TREE_TYPE (to)) == VECTOR_TYPE
650 && TREE_CODE (TREE_TYPE (from)) == VECTOR_TYPE
651 && ((*targetm.vector_opaque_p) (TREE_TYPE (to))
652 || (*targetm.vector_opaque_p) (TREE_TYPE (from))))
653 conv = build_conv (STD_CONV, to, conv);
654 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
655 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
657 /* For backwards brain damage compatibility, allow interconversion of
658 pointers and integers with a pedwarn. */
659 conv = build_conv (STD_CONV, to, conv);
660 ICS_BAD_FLAG (conv) = 1;
662 else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE)
664 /* For backwards brain damage compatibility, allow interconversion of
665 enums and integers with a pedwarn. */
666 conv = build_conv (STD_CONV, to, conv);
667 ICS_BAD_FLAG (conv) = 1;
669 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
670 || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
672 tree to_pointee;
673 tree from_pointee;
675 if (tcode == POINTER_TYPE
676 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
677 TREE_TYPE (to)))
679 else if (VOID_TYPE_P (TREE_TYPE (to))
680 && !TYPE_PTRMEM_P (from)
681 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
683 from = build_pointer_type
684 (cp_build_qualified_type (void_type_node,
685 cp_type_quals (TREE_TYPE (from))));
686 conv = build_conv (PTR_CONV, from, conv);
688 else if (TYPE_PTRMEM_P (from))
690 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
691 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
693 if (DERIVED_FROM_P (fbase, tbase)
694 && (same_type_ignoring_top_level_qualifiers_p
695 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
696 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
698 from = build_ptrmem_type (tbase,
699 TYPE_PTRMEM_POINTED_TO_TYPE (from));
700 conv = build_conv (PMEM_CONV, from, conv);
703 else if (IS_AGGR_TYPE (TREE_TYPE (from))
704 && IS_AGGR_TYPE (TREE_TYPE (to))
705 /* [conv.ptr]
707 An rvalue of type "pointer to cv D," where D is a
708 class type, can be converted to an rvalue of type
709 "pointer to cv B," where B is a base class (clause
710 _class.derived_) of D. If B is an inaccessible
711 (clause _class.access_) or ambiguous
712 (_class.member.lookup_) base class of D, a program
713 that necessitates this conversion is ill-formed. */
714 /* Therefore, we use DERIVED_FROM_P, and not
715 ACESSIBLY_UNIQUELY_DERIVED_FROM_P, in this test. */
716 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
718 from =
719 cp_build_qualified_type (TREE_TYPE (to),
720 cp_type_quals (TREE_TYPE (from)));
721 from = build_pointer_type (from);
722 conv = build_conv (PTR_CONV, from, conv);
725 if (tcode == POINTER_TYPE)
727 to_pointee = TREE_TYPE (to);
728 from_pointee = TREE_TYPE (from);
730 else
732 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
733 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
736 if (same_type_p (from, to))
737 /* OK */;
738 else if (comp_ptr_ttypes (to_pointee, from_pointee))
739 conv = build_conv (QUAL_CONV, to, conv);
740 else if (expr && string_conv_p (to, expr, 0))
741 /* converting from string constant to char *. */
742 conv = build_conv (QUAL_CONV, to, conv);
743 else if (ptr_reasonably_similar (to_pointee, from_pointee))
745 conv = build_conv (PTR_CONV, to, conv);
746 ICS_BAD_FLAG (conv) = 1;
748 else
749 return 0;
751 from = to;
753 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
755 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
756 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
757 tree fbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn)));
758 tree tbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn)));
760 if (!DERIVED_FROM_P (fbase, tbase)
761 || !same_type_p (TREE_TYPE (fromfn), TREE_TYPE (tofn))
762 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
763 TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
764 || cp_type_quals (fbase) != cp_type_quals (tbase))
765 return 0;
767 from = cp_build_qualified_type (tbase, cp_type_quals (fbase));
768 from = build_method_type_directly (from,
769 TREE_TYPE (fromfn),
770 TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
771 from = build_ptrmemfunc_type (build_pointer_type (from));
772 conv = build_conv (PMEM_CONV, from, conv);
774 else if (tcode == BOOLEAN_TYPE)
776 /* [conv.bool]
778 An rvalue of arithmetic, enumeration, pointer, or pointer to
779 member type can be converted to an rvalue of type bool. */
780 if (ARITHMETIC_TYPE_P (from)
781 || fcode == ENUMERAL_TYPE
782 || fcode == POINTER_TYPE
783 || TYPE_PTR_TO_MEMBER_P (from))
785 conv = build_conv (STD_CONV, to, conv);
786 if (fcode == POINTER_TYPE
787 || TYPE_PTRMEM_P (from)
788 || (TYPE_PTRMEMFUNC_P (from)
789 && ICS_STD_RANK (conv) < PBOOL_RANK))
790 ICS_STD_RANK (conv) = PBOOL_RANK;
791 return conv;
794 return NULL_TREE;
796 /* We don't check for ENUMERAL_TYPE here because there are no standard
797 conversions to enum type. */
798 else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
799 || tcode == REAL_TYPE)
801 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
802 return 0;
803 conv = build_conv (STD_CONV, to, conv);
805 /* Give this a better rank if it's a promotion. */
806 if (same_type_p (to, type_promotes_to (from))
807 && ICS_STD_RANK (TREE_OPERAND (conv, 0)) <= PROMO_RANK)
808 ICS_STD_RANK (conv) = PROMO_RANK;
810 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
811 && ((*targetm.vector_opaque_p) (from)
812 || (*targetm.vector_opaque_p) (to)))
813 return build_conv (STD_CONV, to, conv);
814 else if (IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
815 && is_properly_derived_from (from, to))
817 if (TREE_CODE (conv) == RVALUE_CONV)
818 conv = TREE_OPERAND (conv, 0);
819 conv = build_conv (BASE_CONV, to, conv);
820 /* The derived-to-base conversion indicates the initialization
821 of a parameter with base type from an object of a derived
822 type. A temporary object is created to hold the result of
823 the conversion. */
824 NEED_TEMPORARY_P (conv) = 1;
826 else
827 return 0;
829 return conv;
832 /* Returns nonzero if T1 is reference-related to T2. */
834 static bool
835 reference_related_p (tree t1, tree t2)
837 t1 = TYPE_MAIN_VARIANT (t1);
838 t2 = TYPE_MAIN_VARIANT (t2);
840 /* [dcl.init.ref]
842 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
843 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
844 of T2. */
845 return (same_type_p (t1, t2)
846 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
847 && DERIVED_FROM_P (t1, t2)));
850 /* Returns nonzero if T1 is reference-compatible with T2. */
852 static bool
853 reference_compatible_p (tree t1, tree t2)
855 /* [dcl.init.ref]
857 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
858 reference-related to T2 and cv1 is the same cv-qualification as,
859 or greater cv-qualification than, cv2. */
860 return (reference_related_p (t1, t2)
861 && at_least_as_qualified_p (t1, t2));
864 /* Determine whether or not the EXPR (of class type S) can be
865 converted to T as in [over.match.ref]. */
867 static tree
868 convert_class_to_reference (tree t, tree s, tree expr)
870 tree conversions;
871 tree arglist;
872 tree conv;
873 tree reference_type;
874 struct z_candidate *candidates;
875 struct z_candidate *cand;
876 bool any_viable_p;
878 conversions = lookup_conversions (s);
879 if (!conversions)
880 return NULL_TREE;
882 /* [over.match.ref]
884 Assuming that "cv1 T" is the underlying type of the reference
885 being initialized, and "cv S" is the type of the initializer
886 expression, with S a class type, the candidate functions are
887 selected as follows:
889 --The conversion functions of S and its base classes are
890 considered. Those that are not hidden within S and yield type
891 "reference to cv2 T2", where "cv1 T" is reference-compatible
892 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
894 The argument list has one argument, which is the initializer
895 expression. */
897 candidates = 0;
899 /* Conceptually, we should take the address of EXPR and put it in
900 the argument list. Unfortunately, however, that can result in
901 error messages, which we should not issue now because we are just
902 trying to find a conversion operator. Therefore, we use NULL,
903 cast to the appropriate type. */
904 arglist = build_int_2 (0, 0);
905 TREE_TYPE (arglist) = build_pointer_type (s);
906 arglist = build_tree_list (NULL_TREE, arglist);
908 reference_type = build_reference_type (t);
910 while (conversions)
912 tree fns = TREE_VALUE (conversions);
914 for (; fns; fns = OVL_NEXT (fns))
916 tree f = OVL_CURRENT (fns);
917 tree t2 = TREE_TYPE (TREE_TYPE (f));
919 cand = NULL;
921 /* If this is a template function, try to get an exact
922 match. */
923 if (TREE_CODE (f) == TEMPLATE_DECL)
925 cand = add_template_candidate (&candidates,
926 f, s,
927 NULL_TREE,
928 arglist,
929 reference_type,
930 TYPE_BINFO (s),
931 TREE_PURPOSE (conversions),
932 LOOKUP_NORMAL,
933 DEDUCE_CONV);
935 if (cand)
937 /* Now, see if the conversion function really returns
938 an lvalue of the appropriate type. From the
939 point of view of unification, simply returning an
940 rvalue of the right type is good enough. */
941 f = cand->fn;
942 t2 = TREE_TYPE (TREE_TYPE (f));
943 if (TREE_CODE (t2) != REFERENCE_TYPE
944 || !reference_compatible_p (t, TREE_TYPE (t2)))
946 candidates = candidates->next;
947 cand = NULL;
951 else if (TREE_CODE (t2) == REFERENCE_TYPE
952 && reference_compatible_p (t, TREE_TYPE (t2)))
953 cand = add_function_candidate (&candidates, f, s, arglist,
954 TYPE_BINFO (s),
955 TREE_PURPOSE (conversions),
956 LOOKUP_NORMAL);
958 if (cand)
959 /* Build a standard conversion sequence indicating the
960 binding from the reference type returned by the
961 function to the desired REFERENCE_TYPE. */
962 cand->second_conv
963 = (direct_reference_binding
964 (reference_type,
965 build1 (IDENTITY_CONV,
966 TREE_TYPE (TREE_TYPE (TREE_TYPE (cand->fn))),
967 NULL_TREE)));
969 conversions = TREE_CHAIN (conversions);
972 candidates = splice_viable (candidates, pedantic, &any_viable_p);
973 /* If none of the conversion functions worked out, let our caller
974 know. */
975 if (!any_viable_p)
976 return NULL_TREE;
978 cand = tourney (candidates);
979 if (!cand)
980 return NULL_TREE;
982 /* Now that we know that this is the function we're going to use fix
983 the dummy first argument. */
984 cand->args = tree_cons (NULL_TREE,
985 build_this (expr),
986 TREE_CHAIN (cand->args));
988 /* Build a user-defined conversion sequence representing the
989 conversion. */
990 conv = build_conv (USER_CONV,
991 TREE_TYPE (TREE_TYPE (cand->fn)),
992 build1 (IDENTITY_CONV, TREE_TYPE (expr), expr));
993 TREE_OPERAND (conv, 1) = build_zc_wrapper (cand);
995 /* Merge it with the standard conversion sequence from the
996 conversion function's return type to the desired type. */
997 cand->second_conv = merge_conversion_sequences (conv, cand->second_conv);
999 if (cand->viable == -1)
1000 ICS_BAD_FLAG (conv) = 1;
1002 return cand->second_conv;
1005 /* A reference of the indicated TYPE is being bound directly to the
1006 expression represented by the implicit conversion sequence CONV.
1007 Return a conversion sequence for this binding. */
1009 static tree
1010 direct_reference_binding (tree type, tree conv)
1012 tree t;
1014 my_friendly_assert (TREE_CODE (type) == REFERENCE_TYPE, 20030306);
1015 my_friendly_assert (TREE_CODE (TREE_TYPE (conv)) != REFERENCE_TYPE,
1016 20030306);
1018 t = TREE_TYPE (type);
1020 /* [over.ics.rank]
1022 When a parameter of reference type binds directly
1023 (_dcl.init.ref_) to an argument expression, the implicit
1024 conversion sequence is the identity conversion, unless the
1025 argument expression has a type that is a derived class of the
1026 parameter type, in which case the implicit conversion sequence is
1027 a derived-to-base Conversion.
1029 If the parameter binds directly to the result of applying a
1030 conversion function to the argument expression, the implicit
1031 conversion sequence is a user-defined conversion sequence
1032 (_over.ics.user_), with the second standard conversion sequence
1033 either an identity conversion or, if the conversion function
1034 returns an entity of a type that is a derived class of the
1035 parameter type, a derived-to-base conversion. */
1036 if (!same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (conv)))
1038 /* Represent the derived-to-base conversion. */
1039 conv = build_conv (BASE_CONV, t, conv);
1040 /* We will actually be binding to the base-class subobject in
1041 the derived class, so we mark this conversion appropriately.
1042 That way, convert_like knows not to generate a temporary. */
1043 NEED_TEMPORARY_P (conv) = 0;
1045 return build_conv (REF_BIND, type, conv);
1048 /* Returns the conversion path from type FROM to reference type TO for
1049 purposes of reference binding. For lvalue binding, either pass a
1050 reference type to FROM or an lvalue expression to EXPR. If the
1051 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1052 the conversion returned. */
1054 static tree
1055 reference_binding (tree rto, tree rfrom, tree expr, int flags)
1057 tree conv = NULL_TREE;
1058 tree to = TREE_TYPE (rto);
1059 tree from = rfrom;
1060 bool related_p;
1061 bool compatible_p;
1062 cp_lvalue_kind lvalue_p = clk_none;
1064 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1066 expr = instantiate_type (to, expr, tf_none);
1067 if (expr == error_mark_node)
1068 return NULL_TREE;
1069 from = TREE_TYPE (expr);
1072 if (TREE_CODE (from) == REFERENCE_TYPE)
1074 /* Anything with reference type is an lvalue. */
1075 lvalue_p = clk_ordinary;
1076 from = TREE_TYPE (from);
1078 else if (expr)
1079 lvalue_p = real_lvalue_p (expr);
1081 /* Figure out whether or not the types are reference-related and
1082 reference compatible. We have do do this after stripping
1083 references from FROM. */
1084 related_p = reference_related_p (to, from);
1085 compatible_p = reference_compatible_p (to, from);
1087 if (lvalue_p && compatible_p)
1089 /* [dcl.init.ref]
1091 If the initializer expression
1093 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1094 is reference-compatible with "cv2 T2,"
1096 the reference is bound directly to the initializer expression
1097 lvalue. */
1098 conv = build1 (IDENTITY_CONV, from, expr);
1099 conv = direct_reference_binding (rto, conv);
1100 if ((lvalue_p & clk_bitfield) != 0
1101 || ((lvalue_p & clk_packed) != 0 && !TYPE_PACKED (to)))
1102 /* For the purposes of overload resolution, we ignore the fact
1103 this expression is a bitfield or packed field. (In particular,
1104 [over.ics.ref] says specifically that a function with a
1105 non-const reference parameter is viable even if the
1106 argument is a bitfield.)
1108 However, when we actually call the function we must create
1109 a temporary to which to bind the reference. If the
1110 reference is volatile, or isn't const, then we cannot make
1111 a temporary, so we just issue an error when the conversion
1112 actually occurs. */
1113 NEED_TEMPORARY_P (conv) = 1;
1115 return conv;
1117 else if (CLASS_TYPE_P (from) && !(flags & LOOKUP_NO_CONVERSION))
1119 /* [dcl.init.ref]
1121 If the initializer expression
1123 -- has a class type (i.e., T2 is a class type) can be
1124 implicitly converted to an lvalue of type "cv3 T3," where
1125 "cv1 T1" is reference-compatible with "cv3 T3". (this
1126 conversion is selected by enumerating the applicable
1127 conversion functions (_over.match.ref_) and choosing the
1128 best one through overload resolution. (_over.match_).
1130 the reference is bound to the lvalue result of the conversion
1131 in the second case. */
1132 conv = convert_class_to_reference (to, from, expr);
1133 if (conv)
1134 return conv;
1137 /* From this point on, we conceptually need temporaries, even if we
1138 elide them. Only the cases above are "direct bindings". */
1139 if (flags & LOOKUP_NO_TEMP_BIND)
1140 return NULL_TREE;
1142 /* [over.ics.rank]
1144 When a parameter of reference type is not bound directly to an
1145 argument expression, the conversion sequence is the one required
1146 to convert the argument expression to the underlying type of the
1147 reference according to _over.best.ics_. Conceptually, this
1148 conversion sequence corresponds to copy-initializing a temporary
1149 of the underlying type with the argument expression. Any
1150 difference in top-level cv-qualification is subsumed by the
1151 initialization itself and does not constitute a conversion. */
1153 /* [dcl.init.ref]
1155 Otherwise, the reference shall be to a non-volatile const type. */
1156 if (!CP_TYPE_CONST_NON_VOLATILE_P (to))
1157 return NULL_TREE;
1159 /* [dcl.init.ref]
1161 If the initializer expression is an rvalue, with T2 a class type,
1162 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1163 is bound in one of the following ways:
1165 -- The reference is bound to the object represented by the rvalue
1166 or to a sub-object within that object.
1168 -- ...
1170 We use the first alternative. The implicit conversion sequence
1171 is supposed to be same as we would obtain by generating a
1172 temporary. Fortunately, if the types are reference compatible,
1173 then this is either an identity conversion or the derived-to-base
1174 conversion, just as for direct binding. */
1175 if (CLASS_TYPE_P (from) && compatible_p)
1177 conv = build1 (IDENTITY_CONV, from, expr);
1178 return direct_reference_binding (rto, conv);
1181 /* [dcl.init.ref]
1183 Otherwise, a temporary of type "cv1 T1" is created and
1184 initialized from the initializer expression using the rules for a
1185 non-reference copy initialization. If T1 is reference-related to
1186 T2, cv1 must be the same cv-qualification as, or greater
1187 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1188 if (related_p && !at_least_as_qualified_p (to, from))
1189 return NULL_TREE;
1191 conv = implicit_conversion (to, from, expr, flags);
1192 if (!conv)
1193 return NULL_TREE;
1195 conv = build_conv (REF_BIND, rto, conv);
1196 /* This reference binding, unlike those above, requires the
1197 creation of a temporary. */
1198 NEED_TEMPORARY_P (conv) = 1;
1200 return conv;
1203 /* Returns the implicit conversion sequence (see [over.ics]) from type FROM
1204 to type TO. The optional expression EXPR may affect the conversion.
1205 FLAGS are the usual overloading flags. Only LOOKUP_NO_CONVERSION is
1206 significant. */
1208 static tree
1209 implicit_conversion (tree to, tree from, tree expr, int flags)
1211 tree conv;
1213 if (from == error_mark_node || to == error_mark_node
1214 || expr == error_mark_node)
1215 return NULL_TREE;
1217 if (TREE_CODE (to) == REFERENCE_TYPE)
1218 conv = reference_binding (to, from, expr, flags);
1219 else
1220 conv = standard_conversion (to, from, expr);
1222 if (conv)
1223 return conv;
1225 if (expr != NULL_TREE
1226 && (IS_AGGR_TYPE (from)
1227 || IS_AGGR_TYPE (to))
1228 && (flags & LOOKUP_NO_CONVERSION) == 0)
1230 struct z_candidate *cand;
1232 cand = build_user_type_conversion_1
1233 (to, expr, LOOKUP_ONLYCONVERTING);
1234 if (cand)
1235 conv = cand->second_conv;
1237 /* We used to try to bind a reference to a temporary here, but that
1238 is now handled by the recursive call to this function at the end
1239 of reference_binding. */
1240 return conv;
1243 return NULL_TREE;
1246 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1247 functions. */
1249 static struct z_candidate *
1250 add_candidate (struct z_candidate **candidates,
1251 tree fn, tree args, tree convs, tree access_path,
1252 tree conversion_path, int viable)
1254 struct z_candidate *cand = ggc_alloc_cleared (sizeof (struct z_candidate));
1256 cand->fn = fn;
1257 cand->args = args;
1258 cand->convs = convs;
1259 cand->access_path = access_path;
1260 cand->conversion_path = conversion_path;
1261 cand->viable = viable;
1262 cand->next = *candidates;
1263 *candidates = cand;
1265 return cand;
1268 /* Create an overload candidate for the function or method FN called with
1269 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
1270 to implicit_conversion.
1272 CTYPE, if non-NULL, is the type we want to pretend this function
1273 comes from for purposes of overload resolution. */
1275 static struct z_candidate *
1276 add_function_candidate (struct z_candidate **candidates,
1277 tree fn, tree ctype, tree arglist,
1278 tree access_path, tree conversion_path,
1279 int flags)
1281 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1282 int i, len;
1283 tree convs;
1284 tree parmnode, argnode;
1285 tree orig_arglist;
1286 int viable = 1;
1288 /* Built-in functions that haven't been declared don't really
1289 exist. */
1290 if (DECL_ANTICIPATED (fn))
1291 return NULL;
1293 /* The `this', `in_chrg' and VTT arguments to constructors are not
1294 considered in overload resolution. */
1295 if (DECL_CONSTRUCTOR_P (fn))
1297 parmlist = skip_artificial_parms_for (fn, parmlist);
1298 orig_arglist = arglist;
1299 arglist = skip_artificial_parms_for (fn, arglist);
1301 else
1302 orig_arglist = arglist;
1304 len = list_length (arglist);
1305 convs = make_tree_vec (len);
1307 /* 13.3.2 - Viable functions [over.match.viable]
1308 First, to be a viable function, a candidate function shall have enough
1309 parameters to agree in number with the arguments in the list.
1311 We need to check this first; otherwise, checking the ICSes might cause
1312 us to produce an ill-formed template instantiation. */
1314 parmnode = parmlist;
1315 for (i = 0; i < len; ++i)
1317 if (parmnode == NULL_TREE || parmnode == void_list_node)
1318 break;
1319 parmnode = TREE_CHAIN (parmnode);
1322 if (i < len && parmnode)
1323 viable = 0;
1325 /* Make sure there are default args for the rest of the parms. */
1326 else if (!sufficient_parms_p (parmnode))
1327 viable = 0;
1329 if (! viable)
1330 goto out;
1332 /* Second, for F to be a viable function, there shall exist for each
1333 argument an implicit conversion sequence that converts that argument
1334 to the corresponding parameter of F. */
1336 parmnode = parmlist;
1337 argnode = arglist;
1339 for (i = 0; i < len; ++i)
1341 tree arg = TREE_VALUE (argnode);
1342 tree argtype = lvalue_type (arg);
1343 tree t;
1344 int is_this;
1346 if (parmnode == void_list_node)
1347 break;
1349 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1350 && ! DECL_CONSTRUCTOR_P (fn));
1352 if (parmnode)
1354 tree parmtype = TREE_VALUE (parmnode);
1356 /* The type of the implicit object parameter ('this') for
1357 overload resolution is not always the same as for the
1358 function itself; conversion functions are considered to
1359 be members of the class being converted, and functions
1360 introduced by a using-declaration are considered to be
1361 members of the class that uses them.
1363 Since build_over_call ignores the ICS for the `this'
1364 parameter, we can just change the parm type. */
1365 if (ctype && is_this)
1367 parmtype
1368 = build_qualified_type (ctype,
1369 TYPE_QUALS (TREE_TYPE (parmtype)));
1370 parmtype = build_pointer_type (parmtype);
1373 t = implicit_conversion (parmtype, argtype, arg, flags);
1375 else
1377 t = build1 (IDENTITY_CONV, argtype, arg);
1378 ICS_ELLIPSIS_FLAG (t) = 1;
1381 if (t && is_this)
1382 ICS_THIS_FLAG (t) = 1;
1384 TREE_VEC_ELT (convs, i) = t;
1385 if (! t)
1387 viable = 0;
1388 break;
1391 if (ICS_BAD_FLAG (t))
1392 viable = -1;
1394 if (parmnode)
1395 parmnode = TREE_CHAIN (parmnode);
1396 argnode = TREE_CHAIN (argnode);
1399 out:
1400 return add_candidate (candidates, fn, orig_arglist, convs, access_path,
1401 conversion_path, viable);
1404 /* Create an overload candidate for the conversion function FN which will
1405 be invoked for expression OBJ, producing a pointer-to-function which
1406 will in turn be called with the argument list ARGLIST, and add it to
1407 CANDIDATES. FLAGS is passed on to implicit_conversion.
1409 Actually, we don't really care about FN; we care about the type it
1410 converts to. There may be multiple conversion functions that will
1411 convert to that type, and we rely on build_user_type_conversion_1 to
1412 choose the best one; so when we create our candidate, we record the type
1413 instead of the function. */
1415 static struct z_candidate *
1416 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
1417 tree arglist, tree access_path, tree conversion_path)
1419 tree totype = TREE_TYPE (TREE_TYPE (fn));
1420 int i, len, viable, flags;
1421 tree parmlist, convs, parmnode, argnode;
1423 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
1424 parmlist = TREE_TYPE (parmlist);
1425 parmlist = TYPE_ARG_TYPES (parmlist);
1427 len = list_length (arglist) + 1;
1428 convs = make_tree_vec (len);
1429 parmnode = parmlist;
1430 argnode = arglist;
1431 viable = 1;
1432 flags = LOOKUP_NORMAL;
1434 /* Don't bother looking up the same type twice. */
1435 if (*candidates && (*candidates)->fn == totype)
1436 return NULL;
1438 for (i = 0; i < len; ++i)
1440 tree arg = i == 0 ? obj : TREE_VALUE (argnode);
1441 tree argtype = lvalue_type (arg);
1442 tree t;
1444 if (i == 0)
1445 t = implicit_conversion (totype, argtype, arg, flags);
1446 else if (parmnode == void_list_node)
1447 break;
1448 else if (parmnode)
1449 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg, flags);
1450 else
1452 t = build1 (IDENTITY_CONV, argtype, arg);
1453 ICS_ELLIPSIS_FLAG (t) = 1;
1456 TREE_VEC_ELT (convs, i) = t;
1457 if (! t)
1458 break;
1460 if (ICS_BAD_FLAG (t))
1461 viable = -1;
1463 if (i == 0)
1464 continue;
1466 if (parmnode)
1467 parmnode = TREE_CHAIN (parmnode);
1468 argnode = TREE_CHAIN (argnode);
1471 if (i < len)
1472 viable = 0;
1474 if (!sufficient_parms_p (parmnode))
1475 viable = 0;
1477 return add_candidate (candidates, totype, arglist, convs, access_path,
1478 conversion_path, viable);
1481 static void
1482 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
1483 tree type1, tree type2, tree *args, tree *argtypes,
1484 int flags)
1486 tree t, convs;
1487 int viable = 1, i;
1488 tree types[2];
1490 types[0] = type1;
1491 types[1] = type2;
1493 convs = make_tree_vec (args[2] ? 3 : (args[1] ? 2 : 1));
1495 for (i = 0; i < 2; ++i)
1497 if (! args[i])
1498 break;
1500 t = implicit_conversion (types[i], argtypes[i], args[i], flags);
1501 if (! t)
1503 viable = 0;
1504 /* We need something for printing the candidate. */
1505 t = build1 (IDENTITY_CONV, types[i], NULL_TREE);
1507 else if (ICS_BAD_FLAG (t))
1508 viable = 0;
1509 TREE_VEC_ELT (convs, i) = t;
1512 /* For COND_EXPR we rearranged the arguments; undo that now. */
1513 if (args[2])
1515 TREE_VEC_ELT (convs, 2) = TREE_VEC_ELT (convs, 1);
1516 TREE_VEC_ELT (convs, 1) = TREE_VEC_ELT (convs, 0);
1517 t = implicit_conversion (boolean_type_node, argtypes[2], args[2], flags);
1518 if (t)
1519 TREE_VEC_ELT (convs, 0) = t;
1520 else
1521 viable = 0;
1524 add_candidate (candidates, fnname, /*args=*/NULL_TREE, convs,
1525 /*access_path=*/NULL_TREE,
1526 /*conversion_path=*/NULL_TREE,
1527 viable);
1530 static bool
1531 is_complete (tree t)
1533 return COMPLETE_TYPE_P (complete_type (t));
1536 /* Returns nonzero if TYPE is a promoted arithmetic type. */
1538 static bool
1539 promoted_arithmetic_type_p (tree type)
1541 /* [over.built]
1543 In this section, the term promoted integral type is used to refer
1544 to those integral types which are preserved by integral promotion
1545 (including e.g. int and long but excluding e.g. char).
1546 Similarly, the term promoted arithmetic type refers to promoted
1547 integral types plus floating types. */
1548 return ((INTEGRAL_TYPE_P (type)
1549 && same_type_p (type_promotes_to (type), type))
1550 || TREE_CODE (type) == REAL_TYPE);
1553 /* Create any builtin operator overload candidates for the operator in
1554 question given the converted operand types TYPE1 and TYPE2. The other
1555 args are passed through from add_builtin_candidates to
1556 build_builtin_candidate.
1558 TYPE1 and TYPE2 may not be permissible, and we must filter them.
1559 If CODE is requires candidates operands of the same type of the kind
1560 of which TYPE1 and TYPE2 are, we add both candidates
1561 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
1563 static void
1564 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
1565 enum tree_code code2, tree fnname, tree type1,
1566 tree type2, tree *args, tree *argtypes, int flags)
1568 switch (code)
1570 case POSTINCREMENT_EXPR:
1571 case POSTDECREMENT_EXPR:
1572 args[1] = integer_zero_node;
1573 type2 = integer_type_node;
1574 break;
1575 default:
1576 break;
1579 switch (code)
1582 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1583 and VQ is either volatile or empty, there exist candidate operator
1584 functions of the form
1585 VQ T& operator++(VQ T&);
1586 T operator++(VQ T&, int);
1587 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
1588 type other than bool, and VQ is either volatile or empty, there exist
1589 candidate operator functions of the form
1590 VQ T& operator--(VQ T&);
1591 T operator--(VQ T&, int);
1592 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
1593 complete object type, and VQ is either volatile or empty, there exist
1594 candidate operator functions of the form
1595 T*VQ& operator++(T*VQ&);
1596 T*VQ& operator--(T*VQ&);
1597 T* operator++(T*VQ&, int);
1598 T* operator--(T*VQ&, int); */
1600 case POSTDECREMENT_EXPR:
1601 case PREDECREMENT_EXPR:
1602 if (TREE_CODE (type1) == BOOLEAN_TYPE)
1603 return;
1604 case POSTINCREMENT_EXPR:
1605 case PREINCREMENT_EXPR:
1606 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
1608 type1 = build_reference_type (type1);
1609 break;
1611 return;
1613 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
1614 exist candidate operator functions of the form
1616 T& operator*(T*);
1618 8 For every function type T, there exist candidate operator functions of
1619 the form
1620 T& operator*(T*); */
1622 case INDIRECT_REF:
1623 if (TREE_CODE (type1) == POINTER_TYPE
1624 && (TYPE_PTROB_P (type1)
1625 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
1626 break;
1627 return;
1629 /* 9 For every type T, there exist candidate operator functions of the form
1630 T* operator+(T*);
1632 10For every promoted arithmetic type T, there exist candidate operator
1633 functions of the form
1634 T operator+(T);
1635 T operator-(T); */
1637 case CONVERT_EXPR: /* unary + */
1638 if (TREE_CODE (type1) == POINTER_TYPE)
1639 break;
1640 case NEGATE_EXPR:
1641 if (ARITHMETIC_TYPE_P (type1))
1642 break;
1643 return;
1645 /* 11For every promoted integral type T, there exist candidate operator
1646 functions of the form
1647 T operator~(T); */
1649 case BIT_NOT_EXPR:
1650 if (INTEGRAL_TYPE_P (type1))
1651 break;
1652 return;
1654 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1655 is the same type as C2 or is a derived class of C2, T is a complete
1656 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1657 there exist candidate operator functions of the form
1658 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1659 where CV12 is the union of CV1 and CV2. */
1661 case MEMBER_REF:
1662 if (TREE_CODE (type1) == POINTER_TYPE
1663 && TYPE_PTR_TO_MEMBER_P (type2))
1665 tree c1 = TREE_TYPE (type1);
1666 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
1668 if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
1669 && (TYPE_PTRMEMFUNC_P (type2)
1670 || is_complete (TREE_TYPE (TREE_TYPE (type2)))))
1671 break;
1673 return;
1675 /* 13For every pair of promoted arithmetic types L and R, there exist can-
1676 didate operator functions of the form
1677 LR operator*(L, R);
1678 LR operator/(L, R);
1679 LR operator+(L, R);
1680 LR operator-(L, R);
1681 bool operator<(L, R);
1682 bool operator>(L, R);
1683 bool operator<=(L, R);
1684 bool operator>=(L, R);
1685 bool operator==(L, R);
1686 bool operator!=(L, R);
1687 where LR is the result of the usual arithmetic conversions between
1688 types L and R.
1690 14For every pair of types T and I, where T is a cv-qualified or cv-
1691 unqualified complete object type and I is a promoted integral type,
1692 there exist candidate operator functions of the form
1693 T* operator+(T*, I);
1694 T& operator[](T*, I);
1695 T* operator-(T*, I);
1696 T* operator+(I, T*);
1697 T& operator[](I, T*);
1699 15For every T, where T is a pointer to complete object type, there exist
1700 candidate operator functions of the form112)
1701 ptrdiff_t operator-(T, T);
1703 16For every pointer or enumeration type T, there exist candidate operator
1704 functions of the form
1705 bool operator<(T, T);
1706 bool operator>(T, T);
1707 bool operator<=(T, T);
1708 bool operator>=(T, T);
1709 bool operator==(T, T);
1710 bool operator!=(T, T);
1712 17For every pointer to member type T, there exist candidate operator
1713 functions of the form
1714 bool operator==(T, T);
1715 bool operator!=(T, T); */
1717 case MINUS_EXPR:
1718 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
1719 break;
1720 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1722 type2 = ptrdiff_type_node;
1723 break;
1725 case MULT_EXPR:
1726 case TRUNC_DIV_EXPR:
1727 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1728 break;
1729 return;
1731 case EQ_EXPR:
1732 case NE_EXPR:
1733 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1734 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
1735 break;
1736 if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
1738 type2 = type1;
1739 break;
1741 if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
1743 type1 = type2;
1744 break;
1746 /* FALLTHROUGH */
1747 case LT_EXPR:
1748 case GT_EXPR:
1749 case LE_EXPR:
1750 case GE_EXPR:
1751 case MAX_EXPR:
1752 case MIN_EXPR:
1753 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1754 break;
1755 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1756 break;
1757 if (TREE_CODE (type1) == ENUMERAL_TYPE && TREE_CODE (type2) == ENUMERAL_TYPE)
1758 break;
1759 if (TYPE_PTR_P (type1) && null_ptr_cst_p (args[1]))
1761 type2 = type1;
1762 break;
1764 if (null_ptr_cst_p (args[0]) && TYPE_PTR_P (type2))
1766 type1 = type2;
1767 break;
1769 return;
1771 case PLUS_EXPR:
1772 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1773 break;
1774 case ARRAY_REF:
1775 if (INTEGRAL_TYPE_P (type1) && TYPE_PTROB_P (type2))
1777 type1 = ptrdiff_type_node;
1778 break;
1780 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1782 type2 = ptrdiff_type_node;
1783 break;
1785 return;
1787 /* 18For every pair of promoted integral types L and R, there exist candi-
1788 date operator functions of the form
1789 LR operator%(L, R);
1790 LR operator&(L, R);
1791 LR operator^(L, R);
1792 LR operator|(L, R);
1793 L operator<<(L, R);
1794 L operator>>(L, R);
1795 where LR is the result of the usual arithmetic conversions between
1796 types L and R. */
1798 case TRUNC_MOD_EXPR:
1799 case BIT_AND_EXPR:
1800 case BIT_IOR_EXPR:
1801 case BIT_XOR_EXPR:
1802 case LSHIFT_EXPR:
1803 case RSHIFT_EXPR:
1804 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1805 break;
1806 return;
1808 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1809 type, VQ is either volatile or empty, and R is a promoted arithmetic
1810 type, there exist candidate operator functions of the form
1811 VQ L& operator=(VQ L&, R);
1812 VQ L& operator*=(VQ L&, R);
1813 VQ L& operator/=(VQ L&, R);
1814 VQ L& operator+=(VQ L&, R);
1815 VQ L& operator-=(VQ L&, R);
1817 20For every pair T, VQ), where T is any type and VQ is either volatile
1818 or empty, there exist candidate operator functions of the form
1819 T*VQ& operator=(T*VQ&, T*);
1821 21For every pair T, VQ), where T is a pointer to member type and VQ is
1822 either volatile or empty, there exist candidate operator functions of
1823 the form
1824 VQ T& operator=(VQ T&, T);
1826 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1827 unqualified complete object type, VQ is either volatile or empty, and
1828 I is a promoted integral type, there exist candidate operator func-
1829 tions of the form
1830 T*VQ& operator+=(T*VQ&, I);
1831 T*VQ& operator-=(T*VQ&, I);
1833 23For every triple L, VQ, R), where L is an integral or enumeration
1834 type, VQ is either volatile or empty, and R is a promoted integral
1835 type, there exist candidate operator functions of the form
1837 VQ L& operator%=(VQ L&, R);
1838 VQ L& operator<<=(VQ L&, R);
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); */
1844 case MODIFY_EXPR:
1845 switch (code2)
1847 case PLUS_EXPR:
1848 case MINUS_EXPR:
1849 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
1851 type2 = ptrdiff_type_node;
1852 break;
1854 case MULT_EXPR:
1855 case TRUNC_DIV_EXPR:
1856 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1857 break;
1858 return;
1860 case TRUNC_MOD_EXPR:
1861 case BIT_AND_EXPR:
1862 case BIT_IOR_EXPR:
1863 case BIT_XOR_EXPR:
1864 case LSHIFT_EXPR:
1865 case RSHIFT_EXPR:
1866 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1867 break;
1868 return;
1870 case NOP_EXPR:
1871 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1872 break;
1873 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1874 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1875 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1876 || ((TYPE_PTRMEMFUNC_P (type1)
1877 || TREE_CODE (type1) == POINTER_TYPE)
1878 && null_ptr_cst_p (args[1])))
1880 type2 = type1;
1881 break;
1883 return;
1885 default:
1886 abort ();
1888 type1 = build_reference_type (type1);
1889 break;
1891 case COND_EXPR:
1892 /* [over.built]
1894 For every pair of promoted arithmetic types L and R, there
1895 exist candidate operator functions of the form
1897 LR operator?(bool, L, R);
1899 where LR is the result of the usual arithmetic conversions
1900 between types L and R.
1902 For every type T, where T is a pointer or pointer-to-member
1903 type, there exist candidate operator functions of the form T
1904 operator?(bool, T, T); */
1906 if (promoted_arithmetic_type_p (type1)
1907 && promoted_arithmetic_type_p (type2))
1908 /* That's OK. */
1909 break;
1911 /* Otherwise, the types should be pointers. */
1912 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
1913 || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
1914 return;
1916 /* We don't check that the two types are the same; the logic
1917 below will actually create two candidates; one in which both
1918 parameter types are TYPE1, and one in which both parameter
1919 types are TYPE2. */
1920 break;
1922 default:
1923 abort ();
1926 /* If we're dealing with two pointer types or two enumeral types,
1927 we need candidates for both of them. */
1928 if (type2 && !same_type_p (type1, type2)
1929 && TREE_CODE (type1) == TREE_CODE (type2)
1930 && (TREE_CODE (type1) == REFERENCE_TYPE
1931 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1932 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1933 || TYPE_PTRMEMFUNC_P (type1)
1934 || IS_AGGR_TYPE (type1)
1935 || TREE_CODE (type1) == ENUMERAL_TYPE))
1937 build_builtin_candidate
1938 (candidates, fnname, type1, type1, args, argtypes, flags);
1939 build_builtin_candidate
1940 (candidates, fnname, type2, type2, args, argtypes, flags);
1941 return;
1944 build_builtin_candidate
1945 (candidates, fnname, type1, type2, args, argtypes, flags);
1948 tree
1949 type_decays_to (tree type)
1951 if (TREE_CODE (type) == ARRAY_TYPE)
1952 return build_pointer_type (TREE_TYPE (type));
1953 if (TREE_CODE (type) == FUNCTION_TYPE)
1954 return build_pointer_type (type);
1955 return type;
1958 /* There are three conditions of builtin candidates:
1960 1) bool-taking candidates. These are the same regardless of the input.
1961 2) pointer-pair taking candidates. These are generated for each type
1962 one of the input types converts to.
1963 3) arithmetic candidates. According to the standard, we should generate
1964 all of these, but I'm trying not to...
1966 Here we generate a superset of the possible candidates for this particular
1967 case. That is a subset of the full set the standard defines, plus some
1968 other cases which the standard disallows. add_builtin_candidate will
1969 filter out the invalid set. */
1971 static void
1972 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
1973 enum tree_code code2, tree fnname, tree *args,
1974 int flags)
1976 int ref1, i;
1977 int enum_p = 0;
1978 tree type, argtypes[3];
1979 /* TYPES[i] is the set of possible builtin-operator parameter types
1980 we will consider for the Ith argument. These are represented as
1981 a TREE_LIST; the TREE_VALUE of each node is the potential
1982 parameter type. */
1983 tree types[2];
1985 for (i = 0; i < 3; ++i)
1987 if (args[i])
1988 argtypes[i] = lvalue_type (args[i]);
1989 else
1990 argtypes[i] = NULL_TREE;
1993 switch (code)
1995 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1996 and VQ is either volatile or empty, there exist candidate operator
1997 functions of the form
1998 VQ T& operator++(VQ T&); */
2000 case POSTINCREMENT_EXPR:
2001 case PREINCREMENT_EXPR:
2002 case POSTDECREMENT_EXPR:
2003 case PREDECREMENT_EXPR:
2004 case MODIFY_EXPR:
2005 ref1 = 1;
2006 break;
2008 /* 24There also exist candidate operator functions of the form
2009 bool operator!(bool);
2010 bool operator&&(bool, bool);
2011 bool operator||(bool, bool); */
2013 case TRUTH_NOT_EXPR:
2014 build_builtin_candidate
2015 (candidates, fnname, boolean_type_node,
2016 NULL_TREE, args, argtypes, flags);
2017 return;
2019 case TRUTH_ORIF_EXPR:
2020 case TRUTH_ANDIF_EXPR:
2021 build_builtin_candidate
2022 (candidates, fnname, boolean_type_node,
2023 boolean_type_node, args, argtypes, flags);
2024 return;
2026 case ADDR_EXPR:
2027 case COMPOUND_EXPR:
2028 case COMPONENT_REF:
2029 return;
2031 case COND_EXPR:
2032 case EQ_EXPR:
2033 case NE_EXPR:
2034 case LT_EXPR:
2035 case LE_EXPR:
2036 case GT_EXPR:
2037 case GE_EXPR:
2038 enum_p = 1;
2039 /* FALLTHROUGH */
2041 default:
2042 ref1 = 0;
2045 types[0] = types[1] = NULL_TREE;
2047 for (i = 0; i < 2; ++i)
2049 if (! args[i])
2051 else if (IS_AGGR_TYPE (argtypes[i]))
2053 tree convs;
2055 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2056 return;
2058 convs = lookup_conversions (argtypes[i]);
2060 if (code == COND_EXPR)
2062 if (real_lvalue_p (args[i]))
2063 types[i] = tree_cons
2064 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2066 types[i] = tree_cons
2067 (NULL_TREE, TYPE_MAIN_VARIANT (argtypes[i]), types[i]);
2070 else if (! convs)
2071 return;
2073 for (; convs; convs = TREE_CHAIN (convs))
2075 type = TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs))));
2077 if (i == 0 && ref1
2078 && (TREE_CODE (type) != REFERENCE_TYPE
2079 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2080 continue;
2082 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2083 types[i] = tree_cons (NULL_TREE, type, types[i]);
2085 type = non_reference (type);
2086 if (i != 0 || ! ref1)
2088 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2089 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2090 types[i] = tree_cons (NULL_TREE, type, types[i]);
2091 if (INTEGRAL_TYPE_P (type))
2092 type = type_promotes_to (type);
2095 if (! value_member (type, types[i]))
2096 types[i] = tree_cons (NULL_TREE, type, types[i]);
2099 else
2101 if (code == COND_EXPR && real_lvalue_p (args[i]))
2102 types[i] = tree_cons
2103 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2104 type = non_reference (argtypes[i]);
2105 if (i != 0 || ! ref1)
2107 type = TYPE_MAIN_VARIANT (type_decays_to (type));
2108 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2109 types[i] = tree_cons (NULL_TREE, type, types[i]);
2110 if (INTEGRAL_TYPE_P (type))
2111 type = type_promotes_to (type);
2113 types[i] = tree_cons (NULL_TREE, type, types[i]);
2117 /* Run through the possible parameter types of both arguments,
2118 creating candidates with those parameter types. */
2119 for (; types[0]; types[0] = TREE_CHAIN (types[0]))
2121 if (types[1])
2122 for (type = types[1]; type; type = TREE_CHAIN (type))
2123 add_builtin_candidate
2124 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2125 TREE_VALUE (type), args, argtypes, flags);
2126 else
2127 add_builtin_candidate
2128 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2129 NULL_TREE, args, argtypes, flags);
2132 return;
2136 /* If TMPL can be successfully instantiated as indicated by
2137 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2139 TMPL is the template. EXPLICIT_TARGS are any explicit template
2140 arguments. ARGLIST is the arguments provided at the call-site.
2141 The RETURN_TYPE is the desired type for conversion operators. If
2142 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2143 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
2144 add_conv_candidate. */
2146 static struct z_candidate*
2147 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2148 tree ctype, tree explicit_targs, tree arglist,
2149 tree return_type, tree access_path,
2150 tree conversion_path, int flags, tree obj,
2151 unification_kind_t strict)
2153 int ntparms = DECL_NTPARMS (tmpl);
2154 tree targs = make_tree_vec (ntparms);
2155 tree args_without_in_chrg = arglist;
2156 struct z_candidate *cand;
2157 int i;
2158 tree fn;
2160 /* We don't do deduction on the in-charge parameter, the VTT
2161 parameter or 'this'. */
2162 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2163 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2165 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2166 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2167 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (tmpl)))
2168 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2170 i = fn_type_unification (tmpl, explicit_targs, targs,
2171 args_without_in_chrg,
2172 return_type, strict, -1);
2174 if (i != 0)
2175 return NULL;
2177 fn = instantiate_template (tmpl, targs, tf_none);
2178 if (fn == error_mark_node)
2179 return NULL;
2181 /* In [class.copy]:
2183 A member function template is never instantiated to perform the
2184 copy of a class object to an object of its class type.
2186 It's a little unclear what this means; the standard explicitly
2187 does allow a template to be used to copy a class. For example,
2190 struct A {
2191 A(A&);
2192 template <class T> A(const T&);
2194 const A f ();
2195 void g () { A a (f ()); }
2197 the member template will be used to make the copy. The section
2198 quoted above appears in the paragraph that forbids constructors
2199 whose only parameter is (a possibly cv-qualified variant of) the
2200 class type, and a logical interpretation is that the intent was
2201 to forbid the instantiation of member templates which would then
2202 have that form. */
2203 if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2)
2205 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2206 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2207 ctype))
2208 return NULL;
2211 if (obj != NULL_TREE)
2212 /* Aha, this is a conversion function. */
2213 cand = add_conv_candidate (candidates, fn, obj, access_path,
2214 conversion_path, arglist);
2215 else
2216 cand = add_function_candidate (candidates, fn, ctype,
2217 arglist, access_path,
2218 conversion_path, flags);
2219 if (DECL_TI_TEMPLATE (fn) != tmpl)
2220 /* This situation can occur if a member template of a template
2221 class is specialized. Then, instantiate_template might return
2222 an instantiation of the specialization, in which case the
2223 DECL_TI_TEMPLATE field will point at the original
2224 specialization. For example:
2226 template <class T> struct S { template <class U> void f(U);
2227 template <> void f(int) {}; };
2228 S<double> sd;
2229 sd.f(3);
2231 Here, TMPL will be template <class U> S<double>::f(U).
2232 And, instantiate template will give us the specialization
2233 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2234 for this will point at template <class T> template <> S<T>::f(int),
2235 so that we can find the definition. For the purposes of
2236 overload resolution, however, we want the original TMPL. */
2237 cand->template = tree_cons (tmpl, targs, NULL_TREE);
2238 else
2239 cand->template = DECL_TEMPLATE_INFO (fn);
2241 return cand;
2245 static struct z_candidate *
2246 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
2247 tree explicit_targs, tree arglist, tree return_type,
2248 tree access_path, tree conversion_path, int flags,
2249 unification_kind_t strict)
2251 return
2252 add_template_candidate_real (candidates, tmpl, ctype,
2253 explicit_targs, arglist, return_type,
2254 access_path, conversion_path,
2255 flags, NULL_TREE, strict);
2259 static struct z_candidate *
2260 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
2261 tree obj, tree arglist, tree return_type,
2262 tree access_path, tree conversion_path)
2264 return
2265 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
2266 arglist, return_type, access_path,
2267 conversion_path, 0, obj, DEDUCE_CONV);
2270 /* The CANDS are the set of candidates that were considered for
2271 overload resolution. Return the set of viable candidates. If none
2272 of the candidates were viable, set *ANY_VIABLE_P to true. STRICT_P
2273 is true if a candidate should be considered viable only if it is
2274 strictly viable. */
2276 static struct z_candidate*
2277 splice_viable (struct z_candidate *cands,
2278 bool strict_p,
2279 bool *any_viable_p)
2281 struct z_candidate *viable;
2282 struct z_candidate **last_viable;
2283 struct z_candidate **cand;
2285 viable = NULL;
2286 last_viable = &viable;
2287 *any_viable_p = false;
2289 cand = &cands;
2290 while (*cand)
2292 struct z_candidate *c = *cand;
2293 if (strict_p ? c->viable == 1 : c->viable)
2295 *last_viable = c;
2296 *cand = c->next;
2297 c->next = NULL;
2298 last_viable = &c->next;
2299 *any_viable_p = true;
2301 else
2302 cand = &c->next;
2305 return viable ? viable : cands;
2308 static bool
2309 any_strictly_viable (struct z_candidate *cands)
2311 for (; cands; cands = cands->next)
2312 if (cands->viable == 1)
2313 return true;
2314 return false;
2317 static tree
2318 build_this (tree obj)
2320 /* Fix this to work on non-lvalues. */
2321 return build_unary_op (ADDR_EXPR, obj, 0);
2324 /* Returns true iff functions are equivalent. Equivalent functions are
2325 not '==' only if one is a function-local extern function or if
2326 both are extern "C". */
2328 static inline int
2329 equal_functions (tree fn1, tree fn2)
2331 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
2332 || DECL_EXTERN_C_FUNCTION_P (fn1))
2333 return decls_match (fn1, fn2);
2334 return fn1 == fn2;
2337 /* Print information about one overload candidate CANDIDATE. MSGSTR
2338 is the text to print before the candidate itself.
2340 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
2341 to have been run through gettext by the caller. This wart makes
2342 life simpler in print_z_candidates and for the translators. */
2344 static void
2345 print_z_candidate (const char *msgstr, struct z_candidate *candidate)
2347 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
2349 if (TREE_VEC_LENGTH (candidate->convs) == 3)
2350 inform ("%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn,
2351 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 0)),
2352 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 1)),
2353 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 2)));
2354 else if (TREE_VEC_LENGTH (candidate->convs) == 2)
2355 inform ("%s %D(%T, %T) <built-in>", msgstr, candidate->fn,
2356 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 0)),
2357 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 1)));
2358 else
2359 inform ("%s %D(%T) <built-in>", msgstr, candidate->fn,
2360 TREE_TYPE (TREE_VEC_ELT (candidate->convs, 0)));
2362 else if (TYPE_P (candidate->fn))
2363 inform ("%s %T <conversion>", msgstr, candidate->fn);
2364 else if (candidate->viable == -1)
2365 inform ("%H%s %+#D <near match>",
2366 &DECL_SOURCE_LOCATION (candidate->fn), msgstr, candidate->fn);
2367 else
2368 inform ("%H%s %+#D",
2369 &DECL_SOURCE_LOCATION (candidate->fn), msgstr, candidate->fn);
2372 static void
2373 print_z_candidates (struct z_candidate *candidates)
2375 const char *str;
2376 struct z_candidate *cand1;
2377 struct z_candidate **cand2;
2379 /* There may be duplicates in the set of candidates. We put off
2380 checking this condition as long as possible, since we have no way
2381 to eliminate duplicates from a set of functions in less than n^2
2382 time. Now we are about to emit an error message, so it is more
2383 permissible to go slowly. */
2384 for (cand1 = candidates; cand1; cand1 = cand1->next)
2386 tree fn = cand1->fn;
2387 /* Skip builtin candidates and conversion functions. */
2388 if (TREE_CODE (fn) != FUNCTION_DECL)
2389 continue;
2390 cand2 = &cand1->next;
2391 while (*cand2)
2393 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
2394 && equal_functions (fn, (*cand2)->fn))
2395 *cand2 = (*cand2)->next;
2396 else
2397 cand2 = &(*cand2)->next;
2401 if (!candidates)
2402 return;
2404 str = _("candidates are:");
2405 print_z_candidate (str, candidates);
2406 if (candidates->next)
2408 /* Indent successive candidates by the width of the translation
2409 of the above string. */
2410 size_t len = gcc_gettext_width (str) + 1;
2411 char *spaces = alloca (len);
2412 memset (spaces, ' ', len-1);
2413 spaces[len - 1] = '\0';
2415 candidates = candidates->next;
2418 print_z_candidate (spaces, candidates);
2419 candidates = candidates->next;
2421 while (candidates);
2425 /* USER_SEQ is a user-defined conversion sequence, beginning with a
2426 USER_CONV. STD_SEQ is the standard conversion sequence applied to
2427 the result of the conversion function to convert it to the final
2428 desired type. Merge the the two sequences into a single sequence,
2429 and return the merged sequence. */
2431 static tree
2432 merge_conversion_sequences (tree user_seq, tree std_seq)
2434 tree *t;
2436 my_friendly_assert (TREE_CODE (user_seq) == USER_CONV,
2437 20030306);
2439 /* Find the end of the second conversion sequence. */
2440 t = &(std_seq);
2441 while (TREE_CODE (*t) != IDENTITY_CONV)
2442 t = &TREE_OPERAND (*t, 0);
2444 /* Replace the identity conversion with the user conversion
2445 sequence. */
2446 *t = user_seq;
2448 /* The entire sequence is a user-conversion sequence. */
2449 ICS_USER_FLAG (std_seq) = 1;
2451 return std_seq;
2454 /* Returns the best overload candidate to perform the requested
2455 conversion. This function is used for three the overloading situations
2456 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2457 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2458 per [dcl.init.ref], so we ignore temporary bindings. */
2460 static struct z_candidate *
2461 build_user_type_conversion_1 (tree totype, tree expr, int flags)
2463 struct z_candidate *candidates, *cand;
2464 tree fromtype = TREE_TYPE (expr);
2465 tree ctors = NULL_TREE, convs = NULL_TREE;
2466 tree args = NULL_TREE;
2467 bool any_viable_p;
2469 /* We represent conversion within a hierarchy using RVALUE_CONV and
2470 BASE_CONV, as specified by [over.best.ics]; these become plain
2471 constructor calls, as specified in [dcl.init]. */
2472 my_friendly_assert (!IS_AGGR_TYPE (fromtype) || !IS_AGGR_TYPE (totype)
2473 || !DERIVED_FROM_P (totype, fromtype), 20011226);
2475 if (IS_AGGR_TYPE (totype))
2476 ctors = lookup_fnfields (TYPE_BINFO (totype),
2477 complete_ctor_identifier,
2480 if (IS_AGGR_TYPE (fromtype))
2481 convs = lookup_conversions (fromtype);
2483 candidates = 0;
2484 flags |= LOOKUP_NO_CONVERSION;
2486 if (ctors)
2488 tree t;
2490 ctors = BASELINK_FUNCTIONS (ctors);
2492 t = build_int_2 (0, 0);
2493 TREE_TYPE (t) = build_pointer_type (totype);
2494 args = build_tree_list (NULL_TREE, expr);
2495 /* We should never try to call the abstract or base constructor
2496 from here. */
2497 my_friendly_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
2498 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)),
2499 20011226);
2500 args = tree_cons (NULL_TREE, t, args);
2502 for (; ctors; ctors = OVL_NEXT (ctors))
2504 tree ctor = OVL_CURRENT (ctors);
2505 if (DECL_NONCONVERTING_P (ctor))
2506 continue;
2508 if (TREE_CODE (ctor) == TEMPLATE_DECL)
2509 cand = add_template_candidate (&candidates, ctor, totype,
2510 NULL_TREE, args, NULL_TREE,
2511 TYPE_BINFO (totype),
2512 TYPE_BINFO (totype),
2513 flags,
2514 DEDUCE_CALL);
2515 else
2516 cand = add_function_candidate (&candidates, ctor, totype,
2517 args, TYPE_BINFO (totype),
2518 TYPE_BINFO (totype),
2519 flags);
2521 if (cand)
2522 cand->second_conv = build1 (IDENTITY_CONV, totype, NULL_TREE);
2525 if (convs)
2526 args = build_tree_list (NULL_TREE, build_this (expr));
2528 for (; convs; convs = TREE_CHAIN (convs))
2530 tree fns;
2531 tree conversion_path = TREE_PURPOSE (convs);
2532 int convflags = LOOKUP_NO_CONVERSION;
2534 /* If we are called to convert to a reference type, we are trying to
2535 find an lvalue binding, so don't even consider temporaries. If
2536 we don't find an lvalue binding, the caller will try again to
2537 look for a temporary binding. */
2538 if (TREE_CODE (totype) == REFERENCE_TYPE)
2539 convflags |= LOOKUP_NO_TEMP_BIND;
2541 for (fns = TREE_VALUE (convs); fns; fns = OVL_NEXT (fns))
2543 tree fn = OVL_CURRENT (fns);
2545 /* [over.match.funcs] For conversion functions, the function
2546 is considered to be a member of the class of the implicit
2547 object argument for the purpose of defining the type of
2548 the implicit object parameter.
2550 So we pass fromtype as CTYPE to add_*_candidate. */
2552 if (TREE_CODE (fn) == TEMPLATE_DECL)
2553 cand = add_template_candidate (&candidates, fn, fromtype,
2554 NULL_TREE,
2555 args, totype,
2556 TYPE_BINFO (fromtype),
2557 conversion_path,
2558 flags,
2559 DEDUCE_CONV);
2560 else
2561 cand = add_function_candidate (&candidates, fn, fromtype,
2562 args,
2563 TYPE_BINFO (fromtype),
2564 conversion_path,
2565 flags);
2567 if (cand)
2569 tree ics = implicit_conversion (totype,
2570 TREE_TYPE (TREE_TYPE (cand->fn)),
2571 0, convflags);
2573 cand->second_conv = ics;
2575 if (ics == NULL_TREE)
2576 cand->viable = 0;
2577 else if (candidates->viable == 1 && ICS_BAD_FLAG (ics))
2578 cand->viable = -1;
2583 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2584 if (!any_viable_p)
2585 return 0;
2587 cand = tourney (candidates);
2588 if (cand == 0)
2590 if (flags & LOOKUP_COMPLAIN)
2592 error ("conversion from `%T' to `%T' is ambiguous",
2593 fromtype, totype);
2594 print_z_candidates (candidates);
2597 cand = candidates; /* any one will do */
2598 cand->second_conv = build1 (AMBIG_CONV, totype, expr);
2599 ICS_USER_FLAG (cand->second_conv) = 1;
2600 if (!any_strictly_viable (candidates))
2601 ICS_BAD_FLAG (cand->second_conv) = 1;
2602 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
2603 ambiguous conversion is no worse than another user-defined
2604 conversion. */
2606 return cand;
2609 /* Build the user conversion sequence. */
2610 convs = build_conv
2611 (USER_CONV,
2612 (DECL_CONSTRUCTOR_P (cand->fn)
2613 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
2614 build1 (IDENTITY_CONV, TREE_TYPE (expr), expr));
2615 TREE_OPERAND (convs, 1) = build_zc_wrapper (cand);
2617 /* Combine it with the second conversion sequence. */
2618 cand->second_conv = merge_conversion_sequences (convs,
2619 cand->second_conv);
2621 if (cand->viable == -1)
2622 ICS_BAD_FLAG (cand->second_conv) = 1;
2624 return cand;
2627 tree
2628 build_user_type_conversion (tree totype, tree expr, int flags)
2630 struct z_candidate *cand
2631 = build_user_type_conversion_1 (totype, expr, flags);
2633 if (cand)
2635 if (TREE_CODE (cand->second_conv) == AMBIG_CONV)
2636 return error_mark_node;
2637 return convert_from_reference (convert_like (cand->second_conv, expr));
2639 return NULL_TREE;
2642 /* Do any initial processing on the arguments to a function call. */
2644 static tree
2645 resolve_args (tree args)
2647 tree t;
2648 for (t = args; t; t = TREE_CHAIN (t))
2650 tree arg = TREE_VALUE (t);
2652 if (arg == error_mark_node)
2653 return error_mark_node;
2654 else if (VOID_TYPE_P (TREE_TYPE (arg)))
2656 error ("invalid use of void expression");
2657 return error_mark_node;
2659 arg = convert_from_reference (arg);
2660 TREE_VALUE (t) = arg;
2662 return args;
2665 /* Perform overload resolution on FN, which is called with the ARGS.
2667 Return the candidate function selected by overload resolution, or
2668 NULL if the event that overload resolution failed. In the case
2669 that overload resolution fails, *CANDIDATES will be the set of
2670 candidates considered, and ANY_VIABLE_P will be set to true or
2671 false to indicate whether or not any of the candidates were
2672 viable.
2674 The ARGS should already have gone through RESOLVE_ARGS before this
2675 function is called. */
2677 static struct z_candidate *
2678 perform_overload_resolution (tree fn,
2679 tree args,
2680 struct z_candidate **candidates,
2681 bool *any_viable_p)
2683 struct z_candidate *cand;
2684 tree explicit_targs = NULL_TREE;
2685 int template_only = 0;
2687 *candidates = NULL;
2688 *any_viable_p = true;
2690 /* Check FN and ARGS. */
2691 my_friendly_assert (TREE_CODE (fn) == FUNCTION_DECL
2692 || TREE_CODE (fn) == TEMPLATE_DECL
2693 || TREE_CODE (fn) == OVERLOAD
2694 || TREE_CODE (fn) == TEMPLATE_ID_EXPR,
2695 20020712);
2696 my_friendly_assert (!args || TREE_CODE (args) == TREE_LIST,
2697 20020712);
2699 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2701 explicit_targs = TREE_OPERAND (fn, 1);
2702 fn = TREE_OPERAND (fn, 0);
2703 template_only = 1;
2706 /* Add the various candidate functions. */
2707 add_candidates (fn, args, explicit_targs, template_only,
2708 /*conversion_path=*/NULL_TREE,
2709 /*access_path=*/NULL_TREE,
2710 LOOKUP_NORMAL,
2711 candidates);
2713 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
2714 if (!*any_viable_p)
2715 return NULL;
2717 cand = tourney (*candidates);
2718 return cand;
2721 /* Return an expression for a call to FN (a namespace-scope function,
2722 or a static member function) with the ARGS. */
2724 tree
2725 build_new_function_call (tree fn, tree args)
2727 struct z_candidate *candidates, *cand;
2728 bool any_viable_p;
2730 args = resolve_args (args);
2731 if (args == error_mark_node)
2732 return error_mark_node;
2734 cand = perform_overload_resolution (fn, args, &candidates, &any_viable_p);
2736 if (!cand)
2738 if (!any_viable_p && candidates && ! candidates->next)
2739 return build_function_call (candidates->fn, args);
2740 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2741 fn = TREE_OPERAND (fn, 0);
2742 if (!any_viable_p)
2743 error ("no matching function for call to `%D(%A)'",
2744 DECL_NAME (OVL_CURRENT (fn)), args);
2745 else
2746 error ("call of overloaded `%D(%A)' is ambiguous",
2747 DECL_NAME (OVL_CURRENT (fn)), args);
2748 if (candidates)
2749 print_z_candidates (candidates);
2750 return error_mark_node;
2753 return build_over_call (cand, LOOKUP_NORMAL);
2756 /* Build a call to a global operator new. FNNAME is the name of the
2757 operator (either "operator new" or "operator new[]") and ARGS are
2758 the arguments provided. *SIZE points to the total number of bytes
2759 required by the allocation, and is updated if that is changed here.
2760 *COOKIE_SIZE is non-NULL if a cookie should be used. If this
2761 function determines that no cookie should be used, after all,
2762 *COOKIE_SIZE is set to NULL_TREE. */
2764 tree
2765 build_operator_new_call (tree fnname, tree args, tree *size, tree *cookie_size)
2767 tree fns;
2768 struct z_candidate *candidates;
2769 struct z_candidate *cand;
2770 bool any_viable_p;
2772 args = tree_cons (NULL_TREE, *size, args);
2773 args = resolve_args (args);
2774 if (args == error_mark_node)
2775 return args;
2777 fns = lookup_function_nonclass (fnname, args);
2779 /* Figure out what function is being called. */
2780 cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p);
2782 /* If no suitable function could be found, issue an error message
2783 and give up. */
2784 if (!cand)
2786 if (!any_viable_p)
2787 error ("no matching function for call to `%D(%A)'",
2788 DECL_NAME (OVL_CURRENT (fns)), args);
2789 else
2790 error ("call of overloaded `%D(%A)' is ambiguous",
2791 DECL_NAME (OVL_CURRENT (fns)), args);
2792 if (candidates)
2793 print_z_candidates (candidates);
2794 return error_mark_node;
2797 /* If a cookie is required, add some extra space. Whether
2798 or not a cookie is required cannot be determined until
2799 after we know which function was called. */
2800 if (*cookie_size)
2802 bool use_cookie = true;
2803 if (!abi_version_at_least (2))
2805 tree placement = TREE_CHAIN (args);
2806 /* In G++ 3.2, the check was implemented incorrectly; it
2807 looked at the placement expression, rather than the
2808 type of the function. */
2809 if (placement && !TREE_CHAIN (placement)
2810 && same_type_p (TREE_TYPE (TREE_VALUE (placement)),
2811 ptr_type_node))
2812 use_cookie = false;
2814 else
2816 tree arg_types;
2818 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
2819 /* Skip the size_t parameter. */
2820 arg_types = TREE_CHAIN (arg_types);
2821 /* Check the remaining parameters (if any). */
2822 if (arg_types
2823 && TREE_CHAIN (arg_types) == void_list_node
2824 && same_type_p (TREE_VALUE (arg_types),
2825 ptr_type_node))
2826 use_cookie = false;
2828 /* If we need a cookie, adjust the number of bytes allocated. */
2829 if (use_cookie)
2831 /* Update the total size. */
2832 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
2833 /* Update the argument list to reflect the adjusted size. */
2834 TREE_VALUE (args) = *size;
2836 else
2837 *cookie_size = NULL_TREE;
2840 /* Build the CALL_EXPR. */
2841 return build_over_call (cand, LOOKUP_NORMAL);
2844 static tree
2845 build_object_call (tree obj, tree args)
2847 struct z_candidate *candidates = 0, *cand;
2848 tree fns, convs, mem_args = NULL_TREE;
2849 tree type = TREE_TYPE (obj);
2850 bool any_viable_p;
2852 if (TYPE_PTRMEMFUNC_P (type))
2854 /* It's no good looking for an overloaded operator() on a
2855 pointer-to-member-function. */
2856 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
2857 return error_mark_node;
2860 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
2861 if (fns == error_mark_node)
2862 return error_mark_node;
2864 args = resolve_args (args);
2866 if (args == error_mark_node)
2867 return error_mark_node;
2869 if (fns)
2871 tree base = BINFO_TYPE (BASELINK_BINFO (fns));
2872 mem_args = tree_cons (NULL_TREE, build_this (obj), args);
2874 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
2876 tree fn = OVL_CURRENT (fns);
2877 if (TREE_CODE (fn) == TEMPLATE_DECL)
2878 add_template_candidate (&candidates, fn, base, NULL_TREE,
2879 mem_args, NULL_TREE,
2880 TYPE_BINFO (type),
2881 TYPE_BINFO (type),
2882 LOOKUP_NORMAL, DEDUCE_CALL);
2883 else
2884 add_function_candidate
2885 (&candidates, fn, base, mem_args, TYPE_BINFO (type),
2886 TYPE_BINFO (type), LOOKUP_NORMAL);
2890 convs = lookup_conversions (type);
2892 for (; convs; convs = TREE_CHAIN (convs))
2894 tree fns = TREE_VALUE (convs);
2895 tree totype = TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns)));
2897 if ((TREE_CODE (totype) == POINTER_TYPE
2898 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2899 || (TREE_CODE (totype) == REFERENCE_TYPE
2900 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2901 || (TREE_CODE (totype) == REFERENCE_TYPE
2902 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
2903 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
2904 for (; fns; fns = OVL_NEXT (fns))
2906 tree fn = OVL_CURRENT (fns);
2907 if (TREE_CODE (fn) == TEMPLATE_DECL)
2908 add_template_conv_candidate
2909 (&candidates, fn, obj, args, totype,
2910 /*access_path=*/NULL_TREE,
2911 /*conversion_path=*/NULL_TREE);
2912 else
2913 add_conv_candidate (&candidates, fn, obj, args,
2914 /*conversion_path=*/NULL_TREE,
2915 /*access_path=*/NULL_TREE);
2919 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2920 if (!any_viable_p)
2922 error ("no match for call to `(%T) (%A)'", TREE_TYPE (obj), args);
2923 print_z_candidates (candidates);
2924 return error_mark_node;
2927 cand = tourney (candidates);
2928 if (cand == 0)
2930 error ("call of `(%T) (%A)' is ambiguous", TREE_TYPE (obj), args);
2931 print_z_candidates (candidates);
2932 return error_mark_node;
2935 /* Since cand->fn will be a type, not a function, for a conversion
2936 function, we must be careful not to unconditionally look at
2937 DECL_NAME here. */
2938 if (TREE_CODE (cand->fn) == FUNCTION_DECL
2939 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
2940 return build_over_call (cand, LOOKUP_NORMAL);
2942 obj = convert_like_with_context
2943 (TREE_VEC_ELT (cand->convs, 0), obj, cand->fn, -1);
2945 /* FIXME */
2946 return build_function_call (obj, args);
2949 static void
2950 op_error (enum tree_code code, enum tree_code code2,
2951 tree arg1, tree arg2, tree arg3, const char *problem)
2953 const char *opname;
2955 if (code == MODIFY_EXPR)
2956 opname = assignment_operator_name_info[code2].name;
2957 else
2958 opname = operator_name_info[code].name;
2960 switch (code)
2962 case COND_EXPR:
2963 error ("%s for ternary 'operator?:' in '%E ? %E : %E'",
2964 problem, arg1, arg2, arg3);
2965 break;
2967 case POSTINCREMENT_EXPR:
2968 case POSTDECREMENT_EXPR:
2969 error ("%s for 'operator%s' in '%E%s'", problem, opname, arg1, opname);
2970 break;
2972 case ARRAY_REF:
2973 error ("%s for 'operator[]' in '%E[%E]'", problem, arg1, arg2);
2974 break;
2976 case REALPART_EXPR:
2977 case IMAGPART_EXPR:
2978 error ("%s for '%s' in '%s %E'", problem, opname, opname, arg1);
2979 break;
2981 default:
2982 if (arg2)
2983 error ("%s for 'operator%s' in '%E %s %E'",
2984 problem, opname, arg1, opname, arg2);
2985 else
2986 error ("%s for 'operator%s' in '%s%E'",
2987 problem, opname, opname, arg1);
2988 break;
2992 /* Return the implicit conversion sequence that could be used to
2993 convert E1 to E2 in [expr.cond]. */
2995 static tree
2996 conditional_conversion (tree e1, tree e2)
2998 tree t1 = non_reference (TREE_TYPE (e1));
2999 tree t2 = non_reference (TREE_TYPE (e2));
3000 tree conv;
3001 bool good_base;
3003 /* [expr.cond]
3005 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
3006 implicitly converted (clause _conv_) to the type "reference to
3007 T2", subject to the constraint that in the conversion the
3008 reference must bind directly (_dcl.init.ref_) to E1. */
3009 if (real_lvalue_p (e2))
3011 conv = implicit_conversion (build_reference_type (t2),
3014 LOOKUP_NO_TEMP_BIND);
3015 if (conv)
3016 return conv;
3019 /* [expr.cond]
3021 If E1 and E2 have class type, and the underlying class types are
3022 the same or one is a base class of the other: E1 can be converted
3023 to match E2 if the class of T2 is the same type as, or a base
3024 class of, the class of T1, and the cv-qualification of T2 is the
3025 same cv-qualification as, or a greater cv-qualification than, the
3026 cv-qualification of T1. If the conversion is applied, E1 is
3027 changed to an rvalue of type T2 that still refers to the original
3028 source class object (or the appropriate subobject thereof).
3030 FIXME we can't express an rvalue that refers to the original object;
3031 we have to create a new one. */
3032 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
3033 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
3035 if (good_base && at_least_as_qualified_p (t2, t1))
3037 conv = build1 (IDENTITY_CONV, t1, e1);
3038 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
3039 TYPE_MAIN_VARIANT (t2)))
3041 conv = build_conv (BASE_CONV, t2, conv);
3042 NEED_TEMPORARY_P (conv) = 1;
3044 else
3045 conv = build_conv (RVALUE_CONV, t2, conv);
3046 return conv;
3048 else
3049 return NULL_TREE;
3051 else
3052 /* [expr.cond]
3054 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
3055 converted to the type that expression E2 would have if E2 were
3056 converted to an rvalue (or the type it has, if E2 is an rvalue). */
3057 return implicit_conversion (t2, t1, e1, LOOKUP_NORMAL);
3060 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
3061 arguments to the conditional expression. */
3063 tree
3064 build_conditional_expr (tree arg1, tree arg2, tree arg3)
3066 tree arg2_type;
3067 tree arg3_type;
3068 tree result;
3069 tree result_type = NULL_TREE;
3070 bool lvalue_p = true;
3071 struct z_candidate *candidates = 0;
3072 struct z_candidate *cand;
3074 /* As a G++ extension, the second argument to the conditional can be
3075 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
3076 c'.) If the second operand is omitted, make sure it is
3077 calculated only once. */
3078 if (!arg2)
3080 if (pedantic)
3081 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
3083 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
3084 if (real_lvalue_p (arg1))
3085 arg2 = arg1 = stabilize_reference (arg1);
3086 else
3087 arg2 = arg1 = save_expr (arg1);
3090 /* [expr.cond]
3092 The first expr ession is implicitly converted to bool (clause
3093 _conv_). */
3094 arg1 = perform_implicit_conversion (boolean_type_node, arg1);
3096 /* If something has already gone wrong, just pass that fact up the
3097 tree. */
3098 if (error_operand_p (arg1)
3099 || error_operand_p (arg2)
3100 || error_operand_p (arg3))
3101 return error_mark_node;
3103 /* [expr.cond]
3105 If either the second or the third operand has type (possibly
3106 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
3107 array-to-pointer (_conv.array_), and function-to-pointer
3108 (_conv.func_) standard conversions are performed on the second
3109 and third operands. */
3110 arg2_type = TREE_TYPE (arg2);
3111 arg3_type = TREE_TYPE (arg3);
3112 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
3114 /* Do the conversions. We don't these for `void' type arguments
3115 since it can't have any effect and since decay_conversion
3116 does not handle that case gracefully. */
3117 if (!VOID_TYPE_P (arg2_type))
3118 arg2 = decay_conversion (arg2);
3119 if (!VOID_TYPE_P (arg3_type))
3120 arg3 = decay_conversion (arg3);
3121 arg2_type = TREE_TYPE (arg2);
3122 arg3_type = TREE_TYPE (arg3);
3124 /* [expr.cond]
3126 One of the following shall hold:
3128 --The second or the third operand (but not both) is a
3129 throw-expression (_except.throw_); the result is of the
3130 type of the other and is an rvalue.
3132 --Both the second and the third operands have type void; the
3133 result is of type void and is an rvalue. */
3134 if ((TREE_CODE (arg2) == THROW_EXPR)
3135 ^ (TREE_CODE (arg3) == THROW_EXPR))
3136 result_type = ((TREE_CODE (arg2) == THROW_EXPR)
3137 ? arg3_type : arg2_type);
3138 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
3139 result_type = void_type_node;
3140 else
3142 error ("`%E' has type `void' and is not a throw-expression",
3143 VOID_TYPE_P (arg2_type) ? arg2 : arg3);
3144 return error_mark_node;
3147 lvalue_p = false;
3148 goto valid_operands;
3150 /* [expr.cond]
3152 Otherwise, if the second and third operand have different types,
3153 and either has (possibly cv-qualified) class type, an attempt is
3154 made to convert each of those operands to the type of the other. */
3155 else if (!same_type_p (arg2_type, arg3_type)
3156 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3158 tree conv2 = conditional_conversion (arg2, arg3);
3159 tree conv3 = conditional_conversion (arg3, arg2);
3161 /* [expr.cond]
3163 If both can be converted, or one can be converted but the
3164 conversion is ambiguous, the program is ill-formed. If
3165 neither can be converted, the operands are left unchanged and
3166 further checking is performed as described below. If exactly
3167 one conversion is possible, that conversion is applied to the
3168 chosen operand and the converted operand is used in place of
3169 the original operand for the remainder of this section. */
3170 if ((conv2 && !ICS_BAD_FLAG (conv2)
3171 && conv3 && !ICS_BAD_FLAG (conv3))
3172 || (conv2 && TREE_CODE (conv2) == AMBIG_CONV)
3173 || (conv3 && TREE_CODE (conv3) == AMBIG_CONV))
3175 error ("operands to ?: have different types");
3176 return error_mark_node;
3178 else if (conv2 && !ICS_BAD_FLAG (conv2))
3180 arg2 = convert_like (conv2, arg2);
3181 arg2 = convert_from_reference (arg2);
3182 if (!same_type_p (TREE_TYPE (arg2), arg3_type)
3183 && CLASS_TYPE_P (arg3_type))
3184 /* The types need to match if we're converting to a class type.
3185 If not, we don't care about cv-qual mismatches, since
3186 non-class rvalues are not cv-qualified. */
3187 abort ();
3188 arg2_type = TREE_TYPE (arg2);
3190 else if (conv3 && !ICS_BAD_FLAG (conv3))
3192 arg3 = convert_like (conv3, arg3);
3193 arg3 = convert_from_reference (arg3);
3194 if (!same_type_p (TREE_TYPE (arg3), arg2_type)
3195 && CLASS_TYPE_P (arg2_type))
3196 abort ();
3197 arg3_type = TREE_TYPE (arg3);
3201 /* [expr.cond]
3203 If the second and third operands are lvalues and have the same
3204 type, the result is of that type and is an lvalue. */
3205 if (real_lvalue_p (arg2)
3206 && real_lvalue_p (arg3)
3207 && same_type_p (arg2_type, arg3_type))
3209 result_type = arg2_type;
3210 goto valid_operands;
3213 /* [expr.cond]
3215 Otherwise, the result is an rvalue. If the second and third
3216 operand do not have the same type, and either has (possibly
3217 cv-qualified) class type, overload resolution is used to
3218 determine the conversions (if any) to be applied to the operands
3219 (_over.match.oper_, _over.built_). */
3220 lvalue_p = false;
3221 if (!same_type_p (arg2_type, arg3_type)
3222 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3224 tree args[3];
3225 tree conv;
3226 bool any_viable_p;
3228 /* Rearrange the arguments so that add_builtin_candidate only has
3229 to know about two args. In build_builtin_candidates, the
3230 arguments are unscrambled. */
3231 args[0] = arg2;
3232 args[1] = arg3;
3233 args[2] = arg1;
3234 add_builtin_candidates (&candidates,
3235 COND_EXPR,
3236 NOP_EXPR,
3237 ansi_opname (COND_EXPR),
3238 args,
3239 LOOKUP_NORMAL);
3241 /* [expr.cond]
3243 If the overload resolution fails, the program is
3244 ill-formed. */
3245 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3246 if (!any_viable_p)
3248 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3249 print_z_candidates (candidates);
3250 return error_mark_node;
3252 cand = tourney (candidates);
3253 if (!cand)
3255 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3256 print_z_candidates (candidates);
3257 return error_mark_node;
3260 /* [expr.cond]
3262 Otherwise, the conversions thus determined are applied, and
3263 the converted operands are used in place of the original
3264 operands for the remainder of this section. */
3265 conv = TREE_VEC_ELT (cand->convs, 0);
3266 arg1 = convert_like (conv, arg1);
3267 conv = TREE_VEC_ELT (cand->convs, 1);
3268 arg2 = convert_like (conv, arg2);
3269 conv = TREE_VEC_ELT (cand->convs, 2);
3270 arg3 = convert_like (conv, arg3);
3273 /* [expr.cond]
3275 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3276 and function-to-pointer (_conv.func_) standard conversions are
3277 performed on the second and third operands.
3279 We need to force the lvalue-to-rvalue conversion here for class types,
3280 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3281 that isn't wrapped with a TARGET_EXPR plays havoc with exception
3282 regions.
3284 We use ocp_convert rather than build_user_type_conversion because the
3285 latter returns NULL_TREE on failure, while the former gives an error. */
3287 arg2 = force_rvalue (arg2);
3288 arg2_type = TREE_TYPE (arg2);
3290 arg3 = force_rvalue (arg3);
3291 arg3_type = TREE_TYPE (arg3);
3293 if (arg2 == error_mark_node || arg3 == error_mark_node)
3294 return error_mark_node;
3296 /* [expr.cond]
3298 After those conversions, one of the following shall hold:
3300 --The second and third operands have the same type; the result is of
3301 that type. */
3302 if (same_type_p (arg2_type, arg3_type))
3303 result_type = arg2_type;
3304 /* [expr.cond]
3306 --The second and third operands have arithmetic or enumeration
3307 type; the usual arithmetic conversions are performed to bring
3308 them to a common type, and the result is of that type. */
3309 else if ((ARITHMETIC_TYPE_P (arg2_type)
3310 || TREE_CODE (arg2_type) == ENUMERAL_TYPE)
3311 && (ARITHMETIC_TYPE_P (arg3_type)
3312 || TREE_CODE (arg3_type) == ENUMERAL_TYPE))
3314 /* In this case, there is always a common type. */
3315 result_type = type_after_usual_arithmetic_conversions (arg2_type,
3316 arg3_type);
3318 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
3319 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
3320 warning ("enumeral mismatch in conditional expression: `%T' vs `%T'",
3321 arg2_type, arg3_type);
3322 else if (extra_warnings
3323 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
3324 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
3325 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
3326 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
3327 warning ("enumeral and non-enumeral type in conditional expression");
3329 arg2 = perform_implicit_conversion (result_type, arg2);
3330 arg3 = perform_implicit_conversion (result_type, arg3);
3332 /* [expr.cond]
3334 --The second and third operands have pointer type, or one has
3335 pointer type and the other is a null pointer constant; pointer
3336 conversions (_conv.ptr_) and qualification conversions
3337 (_conv.qual_) are performed to bring them to their composite
3338 pointer type (_expr.rel_). The result is of the composite
3339 pointer type.
3341 --The second and third operands have pointer to member type, or
3342 one has pointer to member type and the other is a null pointer
3343 constant; pointer to member conversions (_conv.mem_) and
3344 qualification conversions (_conv.qual_) are performed to bring
3345 them to a common type, whose cv-qualification shall match the
3346 cv-qualification of either the second or the third operand.
3347 The result is of the common type. */
3348 else if ((null_ptr_cst_p (arg2)
3349 && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
3350 || (null_ptr_cst_p (arg3)
3351 && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
3352 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
3353 || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
3354 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
3356 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
3357 arg3, "conditional expression");
3358 if (result_type == error_mark_node)
3359 return error_mark_node;
3360 arg2 = perform_implicit_conversion (result_type, arg2);
3361 arg3 = perform_implicit_conversion (result_type, arg3);
3364 if (!result_type)
3366 error ("operands to ?: have different types");
3367 return error_mark_node;
3370 valid_operands:
3371 result = fold (build (COND_EXPR, result_type, arg1, arg2, arg3));
3372 /* We can't use result_type below, as fold might have returned a
3373 throw_expr. */
3375 /* Expand both sides into the same slot, hopefully the target of the
3376 ?: expression. We used to check for TARGET_EXPRs here, but now we
3377 sometimes wrap them in NOP_EXPRs so the test would fail. */
3378 if (!lvalue_p && IS_AGGR_TYPE (TREE_TYPE (result)))
3379 result = get_target_expr (result);
3381 /* If this expression is an rvalue, but might be mistaken for an
3382 lvalue, we must add a NON_LVALUE_EXPR. */
3383 if (!lvalue_p && real_lvalue_p (result))
3384 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
3386 return result;
3389 /* OPERAND is an operand to an expression. Perform necessary steps
3390 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
3391 returned. */
3393 static tree
3394 prep_operand (tree operand)
3396 if (operand)
3398 operand = convert_from_reference (operand);
3399 if (CLASS_TYPE_P (TREE_TYPE (operand))
3400 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
3401 /* Make sure the template type is instantiated now. */
3402 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
3405 return operand;
3408 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
3409 OVERLOAD) to the CANDIDATES, returning an updated list of
3410 CANDIDATES. The ARGS are the arguments provided to the call,
3411 without any implicit object parameter. The EXPLICIT_TARGS are
3412 explicit template arguments provided. TEMPLATE_ONLY is true if
3413 only template fucntions should be considered. CONVERSION_PATH,
3414 ACCESS_PATH, and FLAGS are as for add_function_candidate. */
3416 static void
3417 add_candidates (tree fns, tree args,
3418 tree explicit_targs, bool template_only,
3419 tree conversion_path, tree access_path,
3420 int flags,
3421 struct z_candidate **candidates)
3423 tree ctype;
3424 tree non_static_args;
3426 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
3427 /* Delay creating the implicit this parameter until it is needed. */
3428 non_static_args = NULL_TREE;
3430 while (fns)
3432 tree fn;
3433 tree fn_args;
3435 fn = OVL_CURRENT (fns);
3436 /* Figure out which set of arguments to use. */
3437 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
3439 /* If this function is a non-static member, prepend the implicit
3440 object parameter. */
3441 if (!non_static_args)
3442 non_static_args = tree_cons (NULL_TREE,
3443 build_this (TREE_VALUE (args)),
3444 TREE_CHAIN (args));
3445 fn_args = non_static_args;
3447 else
3448 /* Otherwise, just use the list of arguments provided. */
3449 fn_args = args;
3451 if (TREE_CODE (fn) == TEMPLATE_DECL)
3452 add_template_candidate (candidates,
3453 fn,
3454 ctype,
3455 explicit_targs,
3456 fn_args,
3457 NULL_TREE,
3458 access_path,
3459 conversion_path,
3460 flags,
3461 DEDUCE_CALL);
3462 else if (!template_only)
3463 add_function_candidate (candidates,
3465 ctype,
3466 fn_args,
3467 access_path,
3468 conversion_path,
3469 flags);
3470 fns = OVL_NEXT (fns);
3474 tree
3475 build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3)
3477 struct z_candidate *candidates = 0, *cand;
3478 tree arglist, fnname;
3479 tree args[3];
3480 enum tree_code code2 = NOP_EXPR;
3481 tree conv;
3482 bool strict_p;
3483 bool any_viable_p;
3485 if (error_operand_p (arg1)
3486 || error_operand_p (arg2)
3487 || error_operand_p (arg3))
3488 return error_mark_node;
3490 if (code == MODIFY_EXPR)
3492 code2 = TREE_CODE (arg3);
3493 arg3 = NULL_TREE;
3494 fnname = ansi_assopname (code2);
3496 else
3497 fnname = ansi_opname (code);
3499 arg1 = prep_operand (arg1);
3501 switch (code)
3503 case NEW_EXPR:
3504 case VEC_NEW_EXPR:
3505 case VEC_DELETE_EXPR:
3506 case DELETE_EXPR:
3507 /* Use build_op_new_call and build_op_delete_call instead. */
3508 abort ();
3510 case CALL_EXPR:
3511 return build_object_call (arg1, arg2);
3513 default:
3514 break;
3517 arg2 = prep_operand (arg2);
3518 arg3 = prep_operand (arg3);
3520 if (code == COND_EXPR)
3522 if (arg2 == NULL_TREE
3523 || TREE_CODE (TREE_TYPE (arg2)) == VOID_TYPE
3524 || TREE_CODE (TREE_TYPE (arg3)) == VOID_TYPE
3525 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))
3526 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3))))
3527 goto builtin;
3529 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
3530 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
3531 goto builtin;
3533 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
3534 arg2 = integer_zero_node;
3536 arglist = NULL_TREE;
3537 if (arg3)
3538 arglist = tree_cons (NULL_TREE, arg3, arglist);
3539 if (arg2)
3540 arglist = tree_cons (NULL_TREE, arg2, arglist);
3541 arglist = tree_cons (NULL_TREE, arg1, arglist);
3543 /* Add namespace-scope operators to the list of functions to
3544 consider. */
3545 add_candidates (lookup_function_nonclass (fnname, arglist),
3546 arglist, NULL_TREE, false, NULL_TREE, NULL_TREE,
3547 flags, &candidates);
3548 /* Add class-member operators to the candidate set. */
3549 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
3551 tree fns;
3553 fns = lookup_fnfields (TYPE_BINFO (TREE_TYPE (arg1)), fnname, 1);
3554 if (fns == error_mark_node)
3555 return fns;
3556 if (fns)
3557 add_candidates (BASELINK_FUNCTIONS (fns), arglist,
3558 NULL_TREE, false,
3559 BASELINK_BINFO (fns),
3560 TYPE_BINFO (TREE_TYPE (arg1)),
3561 flags, &candidates);
3564 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3565 to know about two args; a builtin candidate will always have a first
3566 parameter of type bool. We'll handle that in
3567 build_builtin_candidate. */
3568 if (code == COND_EXPR)
3570 args[0] = arg2;
3571 args[1] = arg3;
3572 args[2] = arg1;
3574 else
3576 args[0] = arg1;
3577 args[1] = arg2;
3578 args[2] = NULL_TREE;
3581 add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
3583 switch (code)
3585 case COMPOUND_EXPR:
3586 case ADDR_EXPR:
3587 /* For these, the built-in candidates set is empty
3588 [over.match.oper]/3. We don't want non-strict matches
3589 because exact matches are always possible with built-in
3590 operators. The built-in candidate set for COMPONENT_REF
3591 would be empty too, but since there are no such built-in
3592 operators, we accept non-strict matches for them. */
3593 strict_p = true;
3594 break;
3596 default:
3597 strict_p = pedantic;
3598 break;
3601 candidates = splice_viable (candidates, strict_p, &any_viable_p);
3602 if (!any_viable_p)
3604 switch (code)
3606 case POSTINCREMENT_EXPR:
3607 case POSTDECREMENT_EXPR:
3608 /* Look for an `operator++ (int)'. If they didn't have
3609 one, then we fall back to the old way of doing things. */
3610 if (flags & LOOKUP_COMPLAIN)
3611 pedwarn ("no `%D(int)' declared for postfix `%s', trying prefix operator instead",
3612 fnname,
3613 operator_name_info[code].name);
3614 if (code == POSTINCREMENT_EXPR)
3615 code = PREINCREMENT_EXPR;
3616 else
3617 code = PREDECREMENT_EXPR;
3618 return build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE);
3620 /* The caller will deal with these. */
3621 case ADDR_EXPR:
3622 case COMPOUND_EXPR:
3623 case COMPONENT_REF:
3624 return NULL_TREE;
3626 default:
3627 break;
3629 if (flags & LOOKUP_COMPLAIN)
3631 op_error (code, code2, arg1, arg2, arg3, "no match");
3632 print_z_candidates (candidates);
3634 return error_mark_node;
3637 cand = tourney (candidates);
3638 if (cand == 0)
3640 if (flags & LOOKUP_COMPLAIN)
3642 op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
3643 print_z_candidates (candidates);
3645 return error_mark_node;
3648 if (TREE_CODE (cand->fn) == FUNCTION_DECL)
3650 if (warn_synth
3651 && fnname == ansi_assopname (NOP_EXPR)
3652 && DECL_ARTIFICIAL (cand->fn)
3653 && candidates->next
3654 && ! candidates->next->next)
3656 warning ("using synthesized `%#D' for copy assignment",
3657 cand->fn);
3658 cp_warning_at (" where cfront would use `%#D'",
3659 cand == candidates
3660 ? candidates->next->fn
3661 : candidates->fn);
3664 return build_over_call (cand, LOOKUP_NORMAL);
3667 /* Check for comparison of different enum types. */
3668 switch (code)
3670 case GT_EXPR:
3671 case LT_EXPR:
3672 case GE_EXPR:
3673 case LE_EXPR:
3674 case EQ_EXPR:
3675 case NE_EXPR:
3676 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
3677 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
3678 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
3679 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
3681 warning ("comparison between `%#T' and `%#T'",
3682 TREE_TYPE (arg1), TREE_TYPE (arg2));
3684 break;
3685 default:
3686 break;
3689 /* We need to strip any leading REF_BIND so that bitfields don't cause
3690 errors. This should not remove any important conversions, because
3691 builtins don't apply to class objects directly. */
3692 conv = TREE_VEC_ELT (cand->convs, 0);
3693 if (TREE_CODE (conv) == REF_BIND)
3694 conv = TREE_OPERAND (conv, 0);
3695 arg1 = convert_like (conv, arg1);
3696 if (arg2)
3698 conv = TREE_VEC_ELT (cand->convs, 1);
3699 if (TREE_CODE (conv) == REF_BIND)
3700 conv = TREE_OPERAND (conv, 0);
3701 arg2 = convert_like (conv, arg2);
3703 if (arg3)
3705 conv = TREE_VEC_ELT (cand->convs, 2);
3706 if (TREE_CODE (conv) == REF_BIND)
3707 conv = TREE_OPERAND (conv, 0);
3708 arg3 = convert_like (conv, arg3);
3711 builtin:
3712 switch (code)
3714 case MODIFY_EXPR:
3715 return build_modify_expr (arg1, code2, arg2);
3717 case INDIRECT_REF:
3718 return build_indirect_ref (arg1, "unary *");
3720 case PLUS_EXPR:
3721 case MINUS_EXPR:
3722 case MULT_EXPR:
3723 case TRUNC_DIV_EXPR:
3724 case GT_EXPR:
3725 case LT_EXPR:
3726 case GE_EXPR:
3727 case LE_EXPR:
3728 case EQ_EXPR:
3729 case NE_EXPR:
3730 case MAX_EXPR:
3731 case MIN_EXPR:
3732 case LSHIFT_EXPR:
3733 case RSHIFT_EXPR:
3734 case TRUNC_MOD_EXPR:
3735 case BIT_AND_EXPR:
3736 case BIT_IOR_EXPR:
3737 case BIT_XOR_EXPR:
3738 case TRUTH_ANDIF_EXPR:
3739 case TRUTH_ORIF_EXPR:
3740 return cp_build_binary_op (code, arg1, arg2);
3742 case CONVERT_EXPR:
3743 case NEGATE_EXPR:
3744 case BIT_NOT_EXPR:
3745 case TRUTH_NOT_EXPR:
3746 case PREINCREMENT_EXPR:
3747 case POSTINCREMENT_EXPR:
3748 case PREDECREMENT_EXPR:
3749 case POSTDECREMENT_EXPR:
3750 case REALPART_EXPR:
3751 case IMAGPART_EXPR:
3752 return build_unary_op (code, arg1, candidates != 0);
3754 case ARRAY_REF:
3755 return build_array_ref (arg1, arg2);
3757 case COND_EXPR:
3758 return build_conditional_expr (arg1, arg2, arg3);
3760 case MEMBER_REF:
3761 return build_m_component_ref
3762 (build_indirect_ref (arg1, NULL), arg2);
3764 /* The caller will deal with these. */
3765 case ADDR_EXPR:
3766 case COMPONENT_REF:
3767 case COMPOUND_EXPR:
3768 return NULL_TREE;
3770 default:
3771 abort ();
3772 return NULL_TREE;
3776 /* Build a call to operator delete. This has to be handled very specially,
3777 because the restrictions on what signatures match are different from all
3778 other call instances. For a normal delete, only a delete taking (void *)
3779 or (void *, size_t) is accepted. For a placement delete, only an exact
3780 match with the placement new is accepted.
3782 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
3783 ADDR is the pointer to be deleted.
3784 SIZE is the size of the memory block to be deleted.
3785 FLAGS are the usual overloading flags.
3786 PLACEMENT is the corresponding placement new call, or NULL_TREE. */
3788 tree
3789 build_op_delete_call (enum tree_code code, tree addr, tree size,
3790 int flags, tree placement)
3792 tree fn = NULL_TREE;
3793 tree fns, fnname, argtypes, args, type;
3794 int pass;
3796 if (addr == error_mark_node)
3797 return error_mark_node;
3799 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
3801 fnname = ansi_opname (code);
3803 if (IS_AGGR_TYPE (type) && ! (flags & LOOKUP_GLOBAL))
3804 /* In [class.free]
3806 If the result of the lookup is ambiguous or inaccessible, or if
3807 the lookup selects a placement deallocation function, the
3808 program is ill-formed.
3810 Therefore, we ask lookup_fnfields to complain ambout ambiguity. */
3812 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
3813 if (fns == error_mark_node)
3814 return error_mark_node;
3816 else
3817 fns = NULL_TREE;
3819 if (fns == NULL_TREE)
3820 fns = lookup_name_nonclass (fnname);
3822 if (placement)
3824 tree alloc_fn;
3825 tree call_expr;
3827 /* Find the allocation function that is being called. */
3828 call_expr = placement;
3829 /* Sometimes we have a COMPOUND_EXPR, rather than a simple
3830 CALL_EXPR. */
3831 while (TREE_CODE (call_expr) == COMPOUND_EXPR)
3832 call_expr = TREE_OPERAND (call_expr, 1);
3833 /* Extract the function. */
3834 alloc_fn = get_callee_fndecl (call_expr);
3835 my_friendly_assert (alloc_fn != NULL_TREE, 20020327);
3836 /* Then the second parm type. */
3837 argtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
3838 /* Also the second argument. */
3839 args = TREE_CHAIN (TREE_OPERAND (call_expr, 1));
3841 else
3843 /* First try it without the size argument. */
3844 argtypes = void_list_node;
3845 args = NULL_TREE;
3848 /* Strip const and volatile from addr. */
3849 addr = cp_convert (ptr_type_node, addr);
3851 /* We make two tries at finding a matching `operator delete'. On
3852 the first pass, we look for a one-operator (or placement)
3853 operator delete. If we're not doing placement delete, then on
3854 the second pass we look for a two-argument delete. */
3855 for (pass = 0; pass < (placement ? 1 : 2); ++pass)
3857 /* Go through the `operator delete' functions looking for one
3858 with a matching type. */
3859 for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
3860 fn;
3861 fn = OVL_NEXT (fn))
3863 tree t;
3865 /* The first argument must be "void *". */
3866 t = TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn)));
3867 if (!same_type_p (TREE_VALUE (t), ptr_type_node))
3868 continue;
3869 t = TREE_CHAIN (t);
3870 /* On the first pass, check the rest of the arguments. */
3871 if (pass == 0)
3873 while (argtypes && t)
3875 if (!same_type_p (TREE_VALUE (argtypes),
3876 TREE_VALUE (t)))
3877 break;
3878 argtypes = TREE_CHAIN (argtypes);
3879 t = TREE_CHAIN (t);
3881 if (!argtypes && !t)
3882 break;
3884 /* On the second pass, the second argument must be
3885 "size_t". */
3886 else if (pass == 1
3887 && same_type_p (TREE_VALUE (t), sizetype)
3888 && TREE_CHAIN (t) == void_list_node)
3889 break;
3892 /* If we found a match, we're done. */
3893 if (fn)
3894 break;
3897 /* If we have a matching function, call it. */
3898 if (fn)
3900 /* Make sure we have the actual function, and not an
3901 OVERLOAD. */
3902 fn = OVL_CURRENT (fn);
3904 /* If the FN is a member function, make sure that it is
3905 accessible. */
3906 if (DECL_CLASS_SCOPE_P (fn))
3907 perform_or_defer_access_check (TYPE_BINFO (type), fn);
3909 if (pass == 0)
3910 args = tree_cons (NULL_TREE, addr, args);
3911 else
3912 args = tree_cons (NULL_TREE, addr,
3913 build_tree_list (NULL_TREE, size));
3915 return build_function_call (fn, args);
3918 /* If we are doing placement delete we do nothing if we don't find a
3919 matching op delete. */
3920 if (placement)
3921 return NULL_TREE;
3923 error ("no suitable `operator %s' for `%T'",
3924 operator_name_info[(int)code].name, type);
3925 return error_mark_node;
3928 /* If the current scope isn't allowed to access DECL along
3929 BASETYPE_PATH, give an error. The most derived class in
3930 BASETYPE_PATH is the one used to qualify DECL. */
3932 bool
3933 enforce_access (tree basetype_path, tree decl)
3935 my_friendly_assert (TREE_CODE (basetype_path) == TREE_VEC, 20030624);
3937 if (!accessible_p (basetype_path, decl))
3939 if (TREE_PRIVATE (decl))
3940 cp_error_at ("`%+#D' is private", decl);
3941 else if (TREE_PROTECTED (decl))
3942 cp_error_at ("`%+#D' is protected", decl);
3943 else
3944 cp_error_at ("`%+#D' is inaccessible", decl);
3945 error ("within this context");
3946 return false;
3949 return true;
3952 /* Perform the conversions in CONVS on the expression EXPR. FN and
3953 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
3954 indicates the `this' argument of a method. INNER is nonzero when
3955 being called to continue a conversion chain. It is negative when a
3956 reference binding will be applied, positive otherwise. If
3957 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
3958 conversions will be emitted if appropriate. */
3960 static tree
3961 convert_like_real (tree convs, tree expr, tree fn, int argnum, int inner,
3962 bool issue_conversion_warnings)
3964 int savew, savee;
3966 tree totype = TREE_TYPE (convs);
3968 if (ICS_BAD_FLAG (convs)
3969 && TREE_CODE (convs) != USER_CONV
3970 && TREE_CODE (convs) != AMBIG_CONV
3971 && TREE_CODE (convs) != REF_BIND)
3973 tree t = convs;
3974 for (; t; t = TREE_OPERAND (t, 0))
3976 if (TREE_CODE (t) == USER_CONV || !ICS_BAD_FLAG (t))
3978 expr = convert_like_real (t, expr, fn, argnum, 1,
3979 /*issue_conversion_warnings=*/false);
3980 break;
3982 else if (TREE_CODE (t) == AMBIG_CONV)
3983 return convert_like_real (t, expr, fn, argnum, 1,
3984 /*issue_conversion_warnings=*/false);
3985 else if (TREE_CODE (t) == IDENTITY_CONV)
3986 break;
3988 pedwarn ("invalid conversion from `%T' to `%T'", TREE_TYPE (expr), totype);
3989 if (fn)
3990 pedwarn (" initializing argument %P of `%D'", argnum, fn);
3991 return cp_convert (totype, expr);
3994 if (issue_conversion_warnings)
3995 expr = dubious_conversion_warnings
3996 (totype, expr, "argument", fn, argnum);
3997 switch (TREE_CODE (convs))
3999 case USER_CONV:
4001 struct z_candidate *cand = USER_CONV_CAND (convs);
4002 tree convfn = cand->fn;
4003 tree args;
4005 if (DECL_CONSTRUCTOR_P (convfn))
4007 tree t = build_int_2 (0, 0);
4008 TREE_TYPE (t) = build_pointer_type (DECL_CONTEXT (convfn));
4010 args = build_tree_list (NULL_TREE, expr);
4011 if (DECL_HAS_IN_CHARGE_PARM_P (convfn)
4012 || DECL_HAS_VTT_PARM_P (convfn))
4013 /* We should never try to call the abstract or base constructor
4014 from here. */
4015 abort ();
4016 args = tree_cons (NULL_TREE, t, args);
4018 else
4019 args = build_this (expr);
4020 expr = build_over_call (cand, LOOKUP_NORMAL);
4022 /* If this is a constructor or a function returning an aggr type,
4023 we need to build up a TARGET_EXPR. */
4024 if (DECL_CONSTRUCTOR_P (convfn))
4025 expr = build_cplus_new (totype, expr);
4027 /* The result of the call is then used to direct-initialize the object
4028 that is the destination of the copy-initialization. [dcl.init]
4030 Note that this step is not reflected in the conversion sequence;
4031 it affects the semantics when we actually perform the
4032 conversion, but is not considered during overload resolution.
4034 If the target is a class, that means call a ctor. */
4035 if (IS_AGGR_TYPE (totype)
4036 && (inner >= 0 || !lvalue_p (expr)))
4038 savew = warningcount, savee = errorcount;
4039 expr = build_special_member_call
4040 (NULL_TREE, complete_ctor_identifier,
4041 build_tree_list (NULL_TREE, expr), TYPE_BINFO (totype),
4042 /* Core issue 84, now a DR, says that we don't allow UDCs
4043 for these args (which deliberately breaks copy-init of an
4044 auto_ptr<Base> from an auto_ptr<Derived>). */
4045 LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION);
4047 /* Tell the user where this failing constructor call came from. */
4048 if (fn)
4050 if (warningcount > savew)
4051 warning
4052 (" initializing argument %P of `%D' from result of `%D'",
4053 argnum, fn, convfn);
4054 else if (errorcount > savee)
4055 error
4056 (" initializing argument %P of `%D' from result of `%D'",
4057 argnum, fn, convfn);
4059 else
4061 if (warningcount > savew)
4062 warning (" initializing temporary from result of `%D'",
4063 convfn);
4064 else if (errorcount > savee)
4065 error (" initializing temporary from result of `%D'",
4066 convfn);
4068 expr = build_cplus_new (totype, expr);
4070 return expr;
4072 case IDENTITY_CONV:
4073 if (type_unknown_p (expr))
4074 expr = instantiate_type (totype, expr, tf_error | tf_warning);
4075 /* Convert a non-array constant variable to its underlying value, unless we
4076 are about to bind it to a reference, in which case we need to
4077 leave it as an lvalue. */
4078 if (inner >= 0
4079 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
4080 expr = decl_constant_value (expr);
4081 return expr;
4082 case AMBIG_CONV:
4083 /* Call build_user_type_conversion again for the error. */
4084 return build_user_type_conversion
4085 (totype, TREE_OPERAND (convs, 0), LOOKUP_NORMAL);
4087 default:
4088 break;
4091 expr = convert_like_real (TREE_OPERAND (convs, 0), expr, fn, argnum,
4092 TREE_CODE (convs) == REF_BIND ? -1 : 1,
4093 /*issue_conversion_warnings=*/false);
4094 if (expr == error_mark_node)
4095 return error_mark_node;
4097 switch (TREE_CODE (convs))
4099 case RVALUE_CONV:
4100 if (! IS_AGGR_TYPE (totype))
4101 return expr;
4102 /* else fall through */
4103 case BASE_CONV:
4104 if (TREE_CODE (convs) == BASE_CONV && !NEED_TEMPORARY_P (convs))
4106 /* We are going to bind a reference directly to a base-class
4107 subobject of EXPR. */
4108 tree base_ptr = build_pointer_type (totype);
4110 /* Build an expression for `*((base*) &expr)'. */
4111 expr = build_unary_op (ADDR_EXPR, expr, 0);
4112 expr = perform_implicit_conversion (base_ptr, expr);
4113 expr = build_indirect_ref (expr, "implicit conversion");
4114 return expr;
4117 /* Copy-initialization where the cv-unqualified version of the source
4118 type is the same class as, or a derived class of, the class of the
4119 destination [is treated as direct-initialization]. [dcl.init] */
4120 savew = warningcount, savee = errorcount;
4121 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
4122 build_tree_list (NULL_TREE, expr),
4123 TYPE_BINFO (totype),
4124 LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING);
4125 if (fn)
4127 if (warningcount > savew)
4128 warning (" initializing argument %P of `%D'", argnum, fn);
4129 else if (errorcount > savee)
4130 error (" initializing argument %P of `%D'", argnum, fn);
4132 return build_cplus_new (totype, expr);
4134 case REF_BIND:
4136 tree ref_type = totype;
4138 /* If necessary, create a temporary. */
4139 if (NEED_TEMPORARY_P (convs) || !lvalue_p (expr))
4141 tree type = TREE_TYPE (TREE_OPERAND (convs, 0));
4143 if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
4145 /* If the reference is volatile or non-const, we
4146 cannot create a temporary. */
4147 cp_lvalue_kind lvalue = real_lvalue_p (expr);
4149 if (lvalue & clk_bitfield)
4150 error ("cannot bind bitfield `%E' to `%T'",
4151 expr, ref_type);
4152 else if (lvalue & clk_packed)
4153 error ("cannot bind packed field `%E' to `%T'",
4154 expr, ref_type);
4155 else
4156 error ("cannot bind rvalue `%E' to `%T'", expr, ref_type);
4157 return error_mark_node;
4159 expr = build_target_expr_with_type (expr, type);
4162 /* Take the address of the thing to which we will bind the
4163 reference. */
4164 expr = build_unary_op (ADDR_EXPR, expr, 1);
4165 if (expr == error_mark_node)
4166 return error_mark_node;
4168 /* Convert it to a pointer to the type referred to by the
4169 reference. This will adjust the pointer if a derived to
4170 base conversion is being performed. */
4171 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
4172 expr);
4173 /* Convert the pointer to the desired reference type. */
4174 return build_nop (ref_type, expr);
4177 case LVALUE_CONV:
4178 return decay_conversion (expr);
4180 case QUAL_CONV:
4181 /* Warn about deprecated conversion if appropriate. */
4182 string_conv_p (totype, expr, 1);
4183 break;
4185 default:
4186 break;
4188 return ocp_convert (totype, expr, CONV_IMPLICIT,
4189 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
4192 /* Build a call to __builtin_trap which can be used in an expression. */
4194 static tree
4195 call_builtin_trap (void)
4197 tree fn = get_identifier ("__builtin_trap");
4198 if (IDENTIFIER_GLOBAL_VALUE (fn))
4199 fn = IDENTIFIER_GLOBAL_VALUE (fn);
4200 else
4201 abort ();
4203 fn = build_call (fn, NULL_TREE);
4204 fn = build (COMPOUND_EXPR, integer_type_node, fn, integer_zero_node);
4205 return fn;
4208 /* ARG is being passed to a varargs function. Perform any conversions
4209 required. Return the converted value. */
4211 tree
4212 convert_arg_to_ellipsis (tree arg)
4214 /* [expr.call]
4216 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4217 standard conversions are performed. */
4218 arg = decay_conversion (arg);
4219 /* [expr.call]
4221 If the argument has integral or enumeration type that is subject
4222 to the integral promotions (_conv.prom_), or a floating point
4223 type that is subject to the floating point promotion
4224 (_conv.fpprom_), the value of the argument is converted to the
4225 promoted type before the call. */
4226 if (TREE_CODE (TREE_TYPE (arg)) == REAL_TYPE
4227 && (TYPE_PRECISION (TREE_TYPE (arg))
4228 < TYPE_PRECISION (double_type_node)))
4229 arg = convert_to_real (double_type_node, arg);
4230 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg)))
4231 arg = perform_integral_promotions (arg);
4233 arg = require_complete_type (arg);
4235 if (arg != error_mark_node && ! pod_type_p (TREE_TYPE (arg)))
4237 /* Undefined behavior [expr.call] 5.2.2/7. We used to just warn
4238 here and do a bitwise copy, but now cp_expr_size will abort if we
4239 try to do that. */
4240 warning ("cannot pass objects of non-POD type `%#T' through `...'; \
4241 call will abort at runtime",
4242 TREE_TYPE (arg));
4243 arg = call_builtin_trap ();
4246 return arg;
4249 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4251 tree
4252 build_x_va_arg (tree expr, tree type)
4254 if (processing_template_decl)
4255 return build_min (VA_ARG_EXPR, type, expr);
4257 type = complete_type_or_else (type, NULL_TREE);
4259 if (expr == error_mark_node || !type)
4260 return error_mark_node;
4262 if (! pod_type_p (type))
4264 /* Undefined behavior [expr.call] 5.2.2/7. */
4265 warning ("cannot receive objects of non-POD type `%#T' through `...'",
4266 type);
4269 return build_va_arg (expr, type);
4272 /* TYPE has been given to va_arg. Apply the default conversions which
4273 would have happened when passed via ellipsis. Return the promoted
4274 type, or the passed type if there is no change. */
4276 tree
4277 cxx_type_promotes_to (tree type)
4279 tree promote;
4281 if (TREE_CODE (type) == ARRAY_TYPE)
4282 return build_pointer_type (TREE_TYPE (type));
4284 if (TREE_CODE (type) == FUNCTION_TYPE)
4285 return build_pointer_type (type);
4287 promote = type_promotes_to (type);
4288 if (same_type_p (type, promote))
4289 promote = type;
4291 return promote;
4294 /* ARG is a default argument expression being passed to a parameter of
4295 the indicated TYPE, which is a parameter to FN. Do any required
4296 conversions. Return the converted value. */
4298 tree
4299 convert_default_arg (tree type, tree arg, tree fn, int parmnum)
4301 /* If the ARG is an unparsed default argument expression, the
4302 conversion cannot be performed. */
4303 if (TREE_CODE (arg) == DEFAULT_ARG)
4305 error ("the default argument for parameter %d of `%D' has "
4306 "not yet been parsed",
4307 parmnum, fn);
4308 return error_mark_node;
4311 if (fn && DECL_TEMPLATE_INFO (fn))
4312 arg = tsubst_default_argument (fn, type, arg);
4314 arg = break_out_target_exprs (arg);
4316 if (TREE_CODE (arg) == CONSTRUCTOR)
4318 arg = digest_init (type, arg, 0);
4319 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4320 "default argument", fn, parmnum);
4322 else
4324 /* This could get clobbered by the following call. */
4325 if (TREE_HAS_CONSTRUCTOR (arg))
4326 arg = copy_node (arg);
4328 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
4329 "default argument", fn, parmnum);
4330 arg = convert_for_arg_passing (type, arg);
4333 return arg;
4336 /* Returns the type which will really be used for passing an argument of
4337 type TYPE. */
4339 tree
4340 type_passed_as (tree type)
4342 /* Pass classes with copy ctors by invisible reference. */
4343 if (TREE_ADDRESSABLE (type))
4344 type = build_reference_type (type);
4345 else if (PROMOTE_PROTOTYPES
4346 && INTEGRAL_TYPE_P (type)
4347 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4348 TYPE_SIZE (integer_type_node)))
4349 type = integer_type_node;
4351 return type;
4354 /* Actually perform the appropriate conversion. */
4356 tree
4357 convert_for_arg_passing (tree type, tree val)
4359 if (val == error_mark_node)
4361 /* Pass classes with copy ctors by invisible reference. */
4362 else if (TREE_ADDRESSABLE (type))
4363 val = build1 (ADDR_EXPR, build_reference_type (type), val);
4364 else if (PROMOTE_PROTOTYPES
4365 && INTEGRAL_TYPE_P (type)
4366 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4367 TYPE_SIZE (integer_type_node)))
4368 val = perform_integral_promotions (val);
4369 return val;
4372 /* Subroutine of the various build_*_call functions. Overload resolution
4373 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4374 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4375 bitmask of various LOOKUP_* flags which apply to the call itself. */
4377 static tree
4378 build_over_call (struct z_candidate *cand, int flags)
4380 tree fn = cand->fn;
4381 tree args = cand->args;
4382 tree convs = cand->convs;
4383 tree converted_args = NULL_TREE;
4384 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
4385 tree conv, arg, val;
4386 int i = 0;
4387 int is_method = 0;
4389 /* Give any warnings we noticed during overload resolution. */
4390 if (cand->warnings)
4391 for (val = cand->warnings; val; val = TREE_CHAIN (val))
4392 joust (cand, WRAPPER_ZC (TREE_VALUE (val)), 1);
4394 if (DECL_FUNCTION_MEMBER_P (fn))
4395 perform_or_defer_access_check (cand->access_path, fn);
4397 if (args && TREE_CODE (args) != TREE_LIST)
4398 args = build_tree_list (NULL_TREE, args);
4399 arg = args;
4401 /* The implicit parameters to a constructor are not considered by overload
4402 resolution, and must be of the proper type. */
4403 if (DECL_CONSTRUCTOR_P (fn))
4405 converted_args = tree_cons (NULL_TREE, TREE_VALUE (arg), converted_args);
4406 arg = TREE_CHAIN (arg);
4407 parm = TREE_CHAIN (parm);
4408 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
4409 /* We should never try to call the abstract constructor. */
4410 abort ();
4411 if (DECL_HAS_VTT_PARM_P (fn))
4413 converted_args = tree_cons
4414 (NULL_TREE, TREE_VALUE (arg), converted_args);
4415 arg = TREE_CHAIN (arg);
4416 parm = TREE_CHAIN (parm);
4419 /* Bypass access control for 'this' parameter. */
4420 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4422 tree parmtype = TREE_VALUE (parm);
4423 tree argtype = TREE_TYPE (TREE_VALUE (arg));
4424 tree converted_arg;
4425 tree base_binfo;
4427 if (ICS_BAD_FLAG (TREE_VEC_ELT (convs, i)))
4428 pedwarn ("passing `%T' as `this' argument of `%#D' discards qualifiers",
4429 TREE_TYPE (argtype), fn);
4431 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4432 X is called for an object that is not of type X, or of a type
4433 derived from X, the behavior is undefined.
4435 So we can assume that anything passed as 'this' is non-null, and
4436 optimize accordingly. */
4437 my_friendly_assert (TREE_CODE (parmtype) == POINTER_TYPE, 19990811);
4438 /* Convert to the base in which the function was declared. */
4439 my_friendly_assert (cand->conversion_path != NULL_TREE, 20020730);
4440 converted_arg = build_base_path (PLUS_EXPR,
4441 TREE_VALUE (arg),
4442 cand->conversion_path,
4444 /* Check that the base class is accessible. */
4445 if (!accessible_base_p (TREE_TYPE (argtype),
4446 BINFO_TYPE (cand->conversion_path)))
4447 error ("`%T' is not an accessible base of `%T'",
4448 BINFO_TYPE (cand->conversion_path),
4449 TREE_TYPE (argtype));
4450 /* If fn was found by a using declaration, the conversion path
4451 will be to the derived class, not the base declaring fn. We
4452 must convert from derived to base. */
4453 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
4454 TREE_TYPE (parmtype), ba_ignore, NULL);
4455 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
4456 base_binfo, 1);
4458 converted_args = tree_cons (NULL_TREE, converted_arg, converted_args);
4459 parm = TREE_CHAIN (parm);
4460 arg = TREE_CHAIN (arg);
4461 ++i;
4462 is_method = 1;
4465 for (; arg && parm;
4466 parm = TREE_CHAIN (parm), arg = TREE_CHAIN (arg), ++i)
4468 tree type = TREE_VALUE (parm);
4470 conv = TREE_VEC_ELT (convs, i);
4471 val = convert_like_with_context
4472 (conv, TREE_VALUE (arg), fn, i - is_method);
4474 val = convert_for_arg_passing (type, val);
4475 converted_args = tree_cons (NULL_TREE, val, converted_args);
4478 /* Default arguments */
4479 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
4480 converted_args
4481 = tree_cons (NULL_TREE,
4482 convert_default_arg (TREE_VALUE (parm),
4483 TREE_PURPOSE (parm),
4484 fn, i - is_method),
4485 converted_args);
4487 /* Ellipsis */
4488 for (; arg; arg = TREE_CHAIN (arg))
4489 converted_args
4490 = tree_cons (NULL_TREE,
4491 convert_arg_to_ellipsis (TREE_VALUE (arg)),
4492 converted_args);
4494 converted_args = nreverse (converted_args);
4496 if (warn_format)
4497 check_function_format (NULL, TYPE_ATTRIBUTES (TREE_TYPE (fn)),
4498 converted_args);
4500 /* Avoid actually calling copy constructors and copy assignment operators,
4501 if possible. */
4503 if (! flag_elide_constructors)
4504 /* Do things the hard way. */;
4505 else if (TREE_VEC_LENGTH (convs) == 1
4506 && DECL_COPY_CONSTRUCTOR_P (fn))
4508 tree targ;
4509 arg = skip_artificial_parms_for (fn, converted_args);
4510 arg = TREE_VALUE (arg);
4512 /* Pull out the real argument, disregarding const-correctness. */
4513 targ = arg;
4514 while (TREE_CODE (targ) == NOP_EXPR
4515 || TREE_CODE (targ) == NON_LVALUE_EXPR
4516 || TREE_CODE (targ) == CONVERT_EXPR)
4517 targ = TREE_OPERAND (targ, 0);
4518 if (TREE_CODE (targ) == ADDR_EXPR)
4520 targ = TREE_OPERAND (targ, 0);
4521 if (!same_type_ignoring_top_level_qualifiers_p
4522 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
4523 targ = NULL_TREE;
4525 else
4526 targ = NULL_TREE;
4528 if (targ)
4529 arg = targ;
4530 else
4531 arg = build_indirect_ref (arg, 0);
4533 /* [class.copy]: the copy constructor is implicitly defined even if
4534 the implementation elided its use. */
4535 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
4536 mark_used (fn);
4538 /* If we're creating a temp and we already have one, don't create a
4539 new one. If we're not creating a temp but we get one, use
4540 INIT_EXPR to collapse the temp into our target. Otherwise, if the
4541 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
4542 temp or an INIT_EXPR otherwise. */
4543 if (integer_zerop (TREE_VALUE (args)))
4545 if (TREE_CODE (arg) == TARGET_EXPR)
4546 return arg;
4547 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
4548 return build_target_expr_with_type (arg, DECL_CONTEXT (fn));
4550 else if (TREE_CODE (arg) == TARGET_EXPR
4551 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
4553 tree address;
4554 tree to = stabilize_reference
4555 (build_indirect_ref (TREE_VALUE (args), 0));
4557 val = build (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
4558 address = build_unary_op (ADDR_EXPR, val, 0);
4559 /* Avoid a warning about this expression, if the address is
4560 never used. */
4561 TREE_USED (address) = 1;
4562 return address;
4565 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
4566 && copy_fn_p (fn)
4567 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
4569 tree to = stabilize_reference
4570 (build_indirect_ref (TREE_VALUE (converted_args), 0));
4572 arg = build_indirect_ref (TREE_VALUE (TREE_CHAIN (converted_args)), 0);
4573 val = build (MODIFY_EXPR, TREE_TYPE (to), to, arg);
4574 return val;
4577 mark_used (fn);
4579 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
4581 tree t, *p = &TREE_VALUE (converted_args);
4582 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (*p)),
4583 DECL_CONTEXT (fn),
4584 ba_any, NULL);
4585 my_friendly_assert (binfo && binfo != error_mark_node, 20010730);
4587 *p = build_base_path (PLUS_EXPR, *p, binfo, 1);
4588 if (TREE_SIDE_EFFECTS (*p))
4589 *p = save_expr (*p);
4590 t = build_pointer_type (TREE_TYPE (fn));
4591 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
4592 fn = build_java_interface_fn_ref (fn, *p);
4593 else
4594 fn = build_vfn_ref (build_indirect_ref (*p, 0), DECL_VINDEX (fn));
4595 TREE_TYPE (fn) = t;
4597 else if (DECL_INLINE (fn))
4598 fn = inline_conversion (fn);
4599 else
4600 fn = build_addr_func (fn);
4602 return build_cxx_call (fn, args, converted_args);
4605 /* Build and return a call to FN, using the the CONVERTED_ARGS. ARGS
4606 gives the original form of the arguments. This function performs
4607 no overload resolution, conversion, or other high-level
4608 operations. */
4610 tree
4611 build_cxx_call(tree fn, tree args, tree converted_args)
4613 tree fndecl;
4615 /* Recognize certain built-in functions so we can make tree-codes
4616 other than CALL_EXPR. We do this when it enables fold-const.c
4617 to do something useful. */
4618 if (TREE_CODE (fn) == ADDR_EXPR
4619 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
4620 && DECL_BUILT_IN (TREE_OPERAND (fn, 0)))
4622 tree exp;
4623 exp = expand_tree_builtin (TREE_OPERAND (fn, 0), args, converted_args);
4624 if (exp)
4625 return exp;
4628 fn = build_call (fn, converted_args);
4630 /* If this call might throw an exception, note that fact. */
4631 fndecl = get_callee_fndecl (fn);
4632 if ((!fndecl || !TREE_NOTHROW (fndecl))
4633 && at_function_scope_p ()
4634 && cfun)
4635 cp_function_chain->can_throw = 1;
4637 /* Some built-in function calls will be evaluated at compile-time in
4638 fold (). */
4639 fn = fold (fn);
4641 if (VOID_TYPE_P (TREE_TYPE (fn)))
4642 return fn;
4644 fn = require_complete_type (fn);
4645 if (fn == error_mark_node)
4646 return error_mark_node;
4648 if (IS_AGGR_TYPE (TREE_TYPE (fn)))
4649 fn = build_cplus_new (TREE_TYPE (fn), fn);
4650 return convert_from_reference (fn);
4653 static GTY(()) tree java_iface_lookup_fn;
4655 /* Make an expression which yields the address of the Java interface
4656 method FN. This is achieved by generating a call to libjava's
4657 _Jv_LookupInterfaceMethodIdx(). */
4659 static tree
4660 build_java_interface_fn_ref (tree fn, tree instance)
4662 tree lookup_args, lookup_fn, method, idx;
4663 tree klass_ref, iface, iface_ref;
4664 int i;
4666 if (!java_iface_lookup_fn)
4668 tree endlink = build_void_list_node ();
4669 tree t = tree_cons (NULL_TREE, ptr_type_node,
4670 tree_cons (NULL_TREE, ptr_type_node,
4671 tree_cons (NULL_TREE, java_int_type_node,
4672 endlink)));
4673 java_iface_lookup_fn
4674 = builtin_function ("_Jv_LookupInterfaceMethodIdx",
4675 build_function_type (ptr_type_node, t),
4676 0, NOT_BUILT_IN, NULL, NULL_TREE);
4679 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
4680 This is the first entry in the vtable. */
4681 klass_ref = build_vtbl_ref (build_indirect_ref (instance, 0),
4682 integer_zero_node);
4684 /* Get the java.lang.Class pointer for the interface being called. */
4685 iface = DECL_CONTEXT (fn);
4686 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
4687 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
4688 || DECL_CONTEXT (iface_ref) != iface)
4690 error ("could not find class$ field in java interface type `%T'",
4691 iface);
4692 return error_mark_node;
4694 iface_ref = build1 (ADDR_EXPR, build_pointer_type (iface), iface_ref);
4696 /* Determine the itable index of FN. */
4697 i = 1;
4698 for (method = TYPE_METHODS (iface); method; method = TREE_CHAIN (method))
4700 if (!DECL_VIRTUAL_P (method))
4701 continue;
4702 if (fn == method)
4703 break;
4704 i++;
4706 idx = build_int_2 (i, 0);
4708 lookup_args = tree_cons (NULL_TREE, klass_ref,
4709 tree_cons (NULL_TREE, iface_ref,
4710 build_tree_list (NULL_TREE, idx)));
4711 lookup_fn = build1 (ADDR_EXPR,
4712 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
4713 java_iface_lookup_fn);
4714 return build (CALL_EXPR, ptr_type_node, lookup_fn, lookup_args, NULL_TREE);
4717 /* Returns the value to use for the in-charge parameter when making a
4718 call to a function with the indicated NAME. */
4720 tree
4721 in_charge_arg_for_name (tree name)
4723 if (name == base_ctor_identifier
4724 || name == base_dtor_identifier)
4725 return integer_zero_node;
4726 else if (name == complete_ctor_identifier)
4727 return integer_one_node;
4728 else if (name == complete_dtor_identifier)
4729 return integer_two_node;
4730 else if (name == deleting_dtor_identifier)
4731 return integer_three_node;
4733 /* This function should only be called with one of the names listed
4734 above. */
4735 abort ();
4736 return NULL_TREE;
4739 /* Build a call to a constructor, destructor, or an assignment
4740 operator for INSTANCE, an expression with class type. NAME
4741 indicates the special member function to call; ARGS are the
4742 arguments. BINFO indicates the base of INSTANCE that is to be
4743 passed as the `this' parameter to the member function called.
4745 FLAGS are the LOOKUP_* flags to use when processing the call.
4747 If NAME indicates a complete object constructor, INSTANCE may be
4748 NULL_TREE. In this case, the caller will call build_cplus_new to
4749 store the newly constructed object into a VAR_DECL. */
4751 tree
4752 build_special_member_call (tree instance, tree name, tree args,
4753 tree binfo, int flags)
4755 tree fns;
4756 /* The type of the subobject to be constructed or destroyed. */
4757 tree class_type;
4759 my_friendly_assert (name == complete_ctor_identifier
4760 || name == base_ctor_identifier
4761 || name == complete_dtor_identifier
4762 || name == base_dtor_identifier
4763 || name == deleting_dtor_identifier
4764 || name == ansi_assopname (NOP_EXPR),
4765 20020712);
4766 my_friendly_assert (binfo != NULL_TREE, 20020712);
4768 class_type = BINFO_TYPE (binfo);
4770 /* Handle the special case where INSTANCE is NULL_TREE. */
4771 if (name == complete_ctor_identifier && !instance)
4773 instance = build_int_2 (0, 0);
4774 TREE_TYPE (instance) = build_pointer_type (class_type);
4775 instance = build1 (INDIRECT_REF, class_type, instance);
4777 else
4779 if (name == complete_dtor_identifier
4780 || name == base_dtor_identifier
4781 || name == deleting_dtor_identifier)
4782 my_friendly_assert (args == NULL_TREE, 20020712);
4784 /* We must perform the conversion here so that we do not
4785 subsequently check to see whether BINFO is an accessible
4786 base. (It is OK for a constructor to call a constructor in
4787 an inaccessible base as long as the constructor being called
4788 is accessible.) */
4789 if (!same_type_ignoring_top_level_qualifiers_p
4790 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
4791 instance = convert_to_base_statically (instance, binfo);
4794 my_friendly_assert (instance != NULL_TREE, 20020712);
4796 /* Resolve the name. */
4797 if (!complete_type_or_else (BINFO_TYPE (binfo), NULL_TREE))
4798 return error_mark_node;
4800 fns = lookup_fnfields (binfo, name, 1);
4802 /* When making a call to a constructor or destructor for a subobject
4803 that uses virtual base classes, pass down a pointer to a VTT for
4804 the subobject. */
4805 if ((name == base_ctor_identifier
4806 || name == base_dtor_identifier)
4807 && TYPE_USES_VIRTUAL_BASECLASSES (class_type))
4809 tree vtt;
4810 tree sub_vtt;
4812 /* If the current function is a complete object constructor
4813 or destructor, then we fetch the VTT directly.
4814 Otherwise, we look it up using the VTT we were given. */
4815 vtt = TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type));
4816 vtt = decay_conversion (vtt);
4817 vtt = build (COND_EXPR, TREE_TYPE (vtt),
4818 build (EQ_EXPR, boolean_type_node,
4819 current_in_charge_parm, integer_zero_node),
4820 current_vtt_parm,
4821 vtt);
4822 my_friendly_assert (BINFO_SUBVTT_INDEX (binfo), 20010110);
4823 sub_vtt = build (PLUS_EXPR, TREE_TYPE (vtt), vtt,
4824 BINFO_SUBVTT_INDEX (binfo));
4826 args = tree_cons (NULL_TREE, sub_vtt, args);
4829 return build_new_method_call (instance, fns, args,
4830 TYPE_BINFO (BINFO_TYPE (binfo)),
4831 flags);
4834 /* Return the NAME, as a C string. The NAME indicates a function that
4835 is a member of TYPE. *FREE_P is set to true if the caller must
4836 free the memory returned.
4838 Rather than go through all of this, we should simply set the names
4839 of constructors and destructors appropriately, and dispense with
4840 ctor_identifier, dtor_identifier, etc. */
4842 static char *
4843 name_as_c_string (tree name, tree type, bool *free_p)
4845 char *pretty_name;
4847 /* Assume that we will not allocate memory. */
4848 *free_p = false;
4849 /* Constructors and destructors are special. */
4850 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
4852 pretty_name
4853 = (char *) IDENTIFIER_POINTER (constructor_name (type));
4854 /* For a destructor, add the '~'. */
4855 if (name == complete_dtor_identifier
4856 || name == base_dtor_identifier
4857 || name == deleting_dtor_identifier)
4859 pretty_name = concat ("~", pretty_name, NULL);
4860 /* Remember that we need to free the memory allocated. */
4861 *free_p = true;
4864 else
4865 pretty_name = (char *) IDENTIFIER_POINTER (name);
4867 return pretty_name;
4870 /* Build a call to "INSTANCE.FN (ARGS)". */
4872 tree
4873 build_new_method_call (tree instance, tree fns, tree args,
4874 tree conversion_path, int flags)
4876 struct z_candidate *candidates = 0, *cand;
4877 tree explicit_targs = NULL_TREE;
4878 tree basetype = NULL_TREE;
4879 tree access_binfo;
4880 tree optype;
4881 tree mem_args = NULL_TREE, instance_ptr;
4882 tree name;
4883 tree user_args;
4884 tree call;
4885 tree fn;
4886 tree class_type;
4887 int template_only = 0;
4888 bool any_viable_p;
4889 tree orig_instance;
4890 tree orig_fns;
4891 tree orig_args;
4893 my_friendly_assert (instance != NULL_TREE, 20020729);
4895 if (error_operand_p (instance)
4896 || error_operand_p (fns)
4897 || args == error_mark_node)
4898 return error_mark_node;
4900 orig_instance = instance;
4901 orig_fns = fns;
4902 orig_args = args;
4904 if (processing_template_decl)
4906 instance = build_non_dependent_expr (instance);
4907 if (!BASELINK_P (fns)
4908 && TREE_CODE (fns) != PSEUDO_DTOR_EXPR
4909 && TREE_TYPE (fns) != unknown_type_node)
4910 fns = build_non_dependent_expr (fns);
4911 args = build_non_dependent_args (orig_args);
4914 /* Process the argument list. */
4915 user_args = args;
4916 args = resolve_args (args);
4917 if (args == error_mark_node)
4918 return error_mark_node;
4920 if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
4921 instance = convert_from_reference (instance);
4922 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
4923 instance_ptr = build_this (instance);
4925 if (!BASELINK_P (fns))
4927 call = build_field_call (instance_ptr, fns, args);
4928 if (call)
4929 goto finish;
4930 error ("call to non-function `%D'", fns);
4931 return error_mark_node;
4934 if (!conversion_path)
4935 conversion_path = BASELINK_BINFO (fns);
4936 access_binfo = BASELINK_ACCESS_BINFO (fns);
4937 optype = BASELINK_OPTYPE (fns);
4938 fns = BASELINK_FUNCTIONS (fns);
4940 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
4942 explicit_targs = TREE_OPERAND (fns, 1);
4943 fns = TREE_OPERAND (fns, 0);
4944 template_only = 1;
4947 my_friendly_assert (TREE_CODE (fns) == FUNCTION_DECL
4948 || TREE_CODE (fns) == TEMPLATE_DECL
4949 || TREE_CODE (fns) == OVERLOAD,
4950 20020712);
4952 /* XXX this should be handled before we get here. */
4953 if (! IS_AGGR_TYPE (basetype))
4955 if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
4956 error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
4957 fns, instance, basetype);
4959 return error_mark_node;
4962 fn = get_first_fn (fns);
4963 name = DECL_NAME (fn);
4965 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
4967 /* Callers should explicitly indicate whether they want to construct
4968 the complete object or just the part without virtual bases. */
4969 my_friendly_assert (name != ctor_identifier, 20000408);
4970 /* Similarly for destructors. */
4971 my_friendly_assert (name != dtor_identifier, 20000408);
4974 /* It's OK to call destructors on cv-qualified objects. Therefore,
4975 convert the INSTANCE_PTR to the unqualified type, if necessary. */
4976 if (DECL_DESTRUCTOR_P (fn))
4978 tree type = build_pointer_type (basetype);
4979 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
4980 instance_ptr = build_nop (type, instance_ptr);
4983 class_type = (conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE);
4984 mem_args = tree_cons (NULL_TREE, instance_ptr, args);
4986 for (fn = fns; fn; fn = OVL_NEXT (fn))
4988 tree t = OVL_CURRENT (fn);
4989 tree this_arglist;
4991 /* We can end up here for copy-init of same or base class. */
4992 if ((flags & LOOKUP_ONLYCONVERTING)
4993 && DECL_NONCONVERTING_P (t))
4994 continue;
4996 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
4997 this_arglist = mem_args;
4998 else
4999 this_arglist = args;
5001 if (TREE_CODE (t) == TEMPLATE_DECL)
5002 /* A member template. */
5003 add_template_candidate (&candidates, t,
5004 class_type,
5005 explicit_targs,
5006 this_arglist, optype,
5007 access_binfo,
5008 conversion_path,
5009 flags,
5010 DEDUCE_CALL);
5011 else if (! template_only)
5012 add_function_candidate (&candidates, t,
5013 class_type,
5014 this_arglist,
5015 access_binfo,
5016 conversion_path,
5017 flags);
5020 candidates = splice_viable (candidates, pedantic, &any_viable_p);
5021 if (!any_viable_p)
5023 /* XXX will LOOKUP_SPECULATIVELY be needed when this is done? */
5024 if (flags & LOOKUP_SPECULATIVELY)
5025 return NULL_TREE;
5026 if (!COMPLETE_TYPE_P (basetype))
5027 cxx_incomplete_type_error (instance_ptr, basetype);
5028 else
5030 char *pretty_name;
5031 bool free_p;
5033 pretty_name = name_as_c_string (name, basetype, &free_p);
5034 error ("no matching function for call to `%T::%s(%A)%#V'",
5035 basetype, pretty_name, user_args,
5036 TREE_TYPE (TREE_TYPE (instance_ptr)));
5037 if (free_p)
5038 free (pretty_name);
5040 print_z_candidates (candidates);
5041 return error_mark_node;
5044 cand = tourney (candidates);
5045 if (cand == 0)
5047 char *pretty_name;
5048 bool free_p;
5050 pretty_name = name_as_c_string (name, basetype, &free_p);
5051 error ("call of overloaded `%s(%A)' is ambiguous", pretty_name,
5052 user_args);
5053 print_z_candidates (candidates);
5054 if (free_p)
5055 free (pretty_name);
5056 return error_mark_node;
5059 if (DECL_PURE_VIRTUAL_P (cand->fn)
5060 && instance == current_class_ref
5061 && (DECL_CONSTRUCTOR_P (current_function_decl)
5062 || DECL_DESTRUCTOR_P (current_function_decl))
5063 && ! (flags & LOOKUP_NONVIRTUAL)
5064 && value_member (cand->fn, CLASSTYPE_PURE_VIRTUALS (basetype)))
5065 error ((DECL_CONSTRUCTOR_P (current_function_decl) ?
5066 "abstract virtual `%#D' called from constructor"
5067 : "abstract virtual `%#D' called from destructor"),
5068 cand->fn);
5069 if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
5070 && is_dummy_object (instance_ptr))
5072 error ("cannot call member function `%D' without object", cand->fn);
5073 return error_mark_node;
5076 if (DECL_VINDEX (cand->fn) && ! (flags & LOOKUP_NONVIRTUAL)
5077 && resolves_to_fixed_type_p (instance, 0))
5078 flags |= LOOKUP_NONVIRTUAL;
5080 if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE)
5081 call = build_over_call (cand, flags);
5082 else
5084 call = build_over_call (cand, flags);
5085 /* In an expression of the form `a->f()' where `f' turns out to
5086 be a static member function, `a' is none-the-less evaluated. */
5087 if (!is_dummy_object (instance_ptr) && TREE_SIDE_EFFECTS (instance))
5088 call = build (COMPOUND_EXPR, TREE_TYPE (call), instance, call);
5090 finish:;
5092 if (processing_template_decl && call != error_mark_node)
5093 return build_min_non_dep
5094 (CALL_EXPR, call,
5095 build_min_nt (COMPONENT_REF, orig_instance, orig_fns),
5096 orig_args);
5097 return call;
5100 /* Returns true iff standard conversion sequence ICS1 is a proper
5101 subsequence of ICS2. */
5103 static bool
5104 is_subseq (tree ics1, tree ics2)
5106 /* We can assume that a conversion of the same code
5107 between the same types indicates a subsequence since we only get
5108 here if the types we are converting from are the same. */
5110 while (TREE_CODE (ics1) == RVALUE_CONV
5111 || TREE_CODE (ics1) == LVALUE_CONV)
5112 ics1 = TREE_OPERAND (ics1, 0);
5114 while (1)
5116 while (TREE_CODE (ics2) == RVALUE_CONV
5117 || TREE_CODE (ics2) == LVALUE_CONV)
5118 ics2 = TREE_OPERAND (ics2, 0);
5120 if (TREE_CODE (ics2) == USER_CONV
5121 || TREE_CODE (ics2) == AMBIG_CONV
5122 || TREE_CODE (ics2) == IDENTITY_CONV)
5123 /* At this point, ICS1 cannot be a proper subsequence of
5124 ICS2. We can get a USER_CONV when we are comparing the
5125 second standard conversion sequence of two user conversion
5126 sequences. */
5127 return false;
5129 ics2 = TREE_OPERAND (ics2, 0);
5131 if (TREE_CODE (ics2) == TREE_CODE (ics1)
5132 && same_type_p (TREE_TYPE (ics2), TREE_TYPE (ics1))
5133 && same_type_p (TREE_TYPE (TREE_OPERAND (ics2, 0)),
5134 TREE_TYPE (TREE_OPERAND (ics1, 0))))
5135 return true;
5139 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
5140 be any _TYPE nodes. */
5142 bool
5143 is_properly_derived_from (tree derived, tree base)
5145 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived))
5146 || !IS_AGGR_TYPE_CODE (TREE_CODE (base)))
5147 return false;
5149 /* We only allow proper derivation here. The DERIVED_FROM_P macro
5150 considers every class derived from itself. */
5151 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
5152 && DERIVED_FROM_P (base, derived));
5155 /* We build the ICS for an implicit object parameter as a pointer
5156 conversion sequence. However, such a sequence should be compared
5157 as if it were a reference conversion sequence. If ICS is the
5158 implicit conversion sequence for an implicit object parameter,
5159 modify it accordingly. */
5161 static void
5162 maybe_handle_implicit_object (tree *ics)
5164 if (ICS_THIS_FLAG (*ics))
5166 /* [over.match.funcs]
5168 For non-static member functions, the type of the
5169 implicit object parameter is "reference to cv X"
5170 where X is the class of which the function is a
5171 member and cv is the cv-qualification on the member
5172 function declaration. */
5173 tree t = *ics;
5174 tree reference_type;
5176 /* The `this' parameter is a pointer to a class type. Make the
5177 implicit conversion talk about a reference to that same class
5178 type. */
5179 reference_type = TREE_TYPE (TREE_TYPE (*ics));
5180 reference_type = build_reference_type (reference_type);
5182 if (TREE_CODE (t) == QUAL_CONV)
5183 t = TREE_OPERAND (t, 0);
5184 if (TREE_CODE (t) == PTR_CONV)
5185 t = TREE_OPERAND (t, 0);
5186 t = build1 (IDENTITY_CONV, TREE_TYPE (TREE_TYPE (t)), NULL_TREE);
5187 t = direct_reference_binding (reference_type, t);
5188 *ics = t;
5192 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
5193 and return the type to which the reference refers. Otherwise,
5194 leave *ICS unchanged and return NULL_TREE. */
5196 static tree
5197 maybe_handle_ref_bind (tree *ics)
5199 if (TREE_CODE (*ics) == REF_BIND)
5201 tree old_ics = *ics;
5202 tree type = TREE_TYPE (TREE_TYPE (old_ics));
5203 *ics = TREE_OPERAND (old_ics, 0);
5204 ICS_USER_FLAG (*ics) = ICS_USER_FLAG (old_ics);
5205 ICS_BAD_FLAG (*ics) = ICS_BAD_FLAG (old_ics);
5206 return type;
5209 return NULL_TREE;
5212 /* Compare two implicit conversion sequences according to the rules set out in
5213 [over.ics.rank]. Return values:
5215 1: ics1 is better than ics2
5216 -1: ics2 is better than ics1
5217 0: ics1 and ics2 are indistinguishable */
5219 static int
5220 compare_ics (tree ics1, tree ics2)
5222 tree from_type1;
5223 tree from_type2;
5224 tree to_type1;
5225 tree to_type2;
5226 tree deref_from_type1 = NULL_TREE;
5227 tree deref_from_type2 = NULL_TREE;
5228 tree deref_to_type1 = NULL_TREE;
5229 tree deref_to_type2 = NULL_TREE;
5230 int rank1, rank2;
5232 /* REF_BINDING is nonzero if the result of the conversion sequence
5233 is a reference type. In that case TARGET_TYPE is the
5234 type referred to by the reference. */
5235 tree target_type1;
5236 tree target_type2;
5238 /* Handle implicit object parameters. */
5239 maybe_handle_implicit_object (&ics1);
5240 maybe_handle_implicit_object (&ics2);
5242 /* Handle reference parameters. */
5243 target_type1 = maybe_handle_ref_bind (&ics1);
5244 target_type2 = maybe_handle_ref_bind (&ics2);
5246 /* [over.ics.rank]
5248 When comparing the basic forms of implicit conversion sequences (as
5249 defined in _over.best.ics_)
5251 --a standard conversion sequence (_over.ics.scs_) is a better
5252 conversion sequence than a user-defined conversion sequence
5253 or an ellipsis conversion sequence, and
5255 --a user-defined conversion sequence (_over.ics.user_) is a
5256 better conversion sequence than an ellipsis conversion sequence
5257 (_over.ics.ellipsis_). */
5258 rank1 = ICS_RANK (ics1);
5259 rank2 = ICS_RANK (ics2);
5261 if (rank1 > rank2)
5262 return -1;
5263 else if (rank1 < rank2)
5264 return 1;
5266 if (rank1 == BAD_RANK)
5268 /* XXX Isn't this an extension? */
5269 /* Both ICS are bad. We try to make a decision based on what
5270 would have happenned if they'd been good. */
5271 if (ICS_USER_FLAG (ics1) > ICS_USER_FLAG (ics2)
5272 || ICS_STD_RANK (ics1) > ICS_STD_RANK (ics2))
5273 return -1;
5274 else if (ICS_USER_FLAG (ics1) < ICS_USER_FLAG (ics2)
5275 || ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
5276 return 1;
5278 /* We couldn't make up our minds; try to figure it out below. */
5281 if (ICS_ELLIPSIS_FLAG (ics1))
5282 /* Both conversions are ellipsis conversions. */
5283 return 0;
5285 /* User-defined conversion sequence U1 is a better conversion sequence
5286 than another user-defined conversion sequence U2 if they contain the
5287 same user-defined conversion operator or constructor and if the sec-
5288 ond standard conversion sequence of U1 is better than the second
5289 standard conversion sequence of U2. */
5291 if (ICS_USER_FLAG (ics1))
5293 tree t1, t2;
5295 for (t1 = ics1; TREE_CODE (t1) != USER_CONV; t1 = TREE_OPERAND (t1, 0))
5296 if (TREE_CODE (t1) == AMBIG_CONV)
5297 return 0;
5298 for (t2 = ics2; TREE_CODE (t2) != USER_CONV; t2 = TREE_OPERAND (t2, 0))
5299 if (TREE_CODE (t2) == AMBIG_CONV)
5300 return 0;
5302 if (USER_CONV_FN (t1) != USER_CONV_FN (t2))
5303 return 0;
5305 /* We can just fall through here, after setting up
5306 FROM_TYPE1 and FROM_TYPE2. */
5307 from_type1 = TREE_TYPE (t1);
5308 from_type2 = TREE_TYPE (t2);
5310 else
5312 /* We're dealing with two standard conversion sequences.
5314 [over.ics.rank]
5316 Standard conversion sequence S1 is a better conversion
5317 sequence than standard conversion sequence S2 if
5319 --S1 is a proper subsequence of S2 (comparing the conversion
5320 sequences in the canonical form defined by _over.ics.scs_,
5321 excluding any Lvalue Transformation; the identity
5322 conversion sequence is considered to be a subsequence of
5323 any non-identity conversion sequence */
5325 from_type1 = ics1;
5326 while (TREE_CODE (from_type1) != IDENTITY_CONV)
5327 from_type1 = TREE_OPERAND (from_type1, 0);
5328 from_type1 = TREE_TYPE (from_type1);
5330 from_type2 = ics2;
5331 while (TREE_CODE (from_type2) != IDENTITY_CONV)
5332 from_type2 = TREE_OPERAND (from_type2, 0);
5333 from_type2 = TREE_TYPE (from_type2);
5336 if (same_type_p (from_type1, from_type2))
5338 if (is_subseq (ics1, ics2))
5339 return 1;
5340 if (is_subseq (ics2, ics1))
5341 return -1;
5343 /* Otherwise, one sequence cannot be a subsequence of the other; they
5344 don't start with the same type. This can happen when comparing the
5345 second standard conversion sequence in two user-defined conversion
5346 sequences. */
5348 /* [over.ics.rank]
5350 Or, if not that,
5352 --the rank of S1 is better than the rank of S2 (by the rules
5353 defined below):
5355 Standard conversion sequences are ordered by their ranks: an Exact
5356 Match is a better conversion than a Promotion, which is a better
5357 conversion than a Conversion.
5359 Two conversion sequences with the same rank are indistinguishable
5360 unless one of the following rules applies:
5362 --A conversion that is not a conversion of a pointer, or pointer
5363 to member, to bool is better than another conversion that is such
5364 a conversion.
5366 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
5367 so that we do not have to check it explicitly. */
5368 if (ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
5369 return 1;
5370 else if (ICS_STD_RANK (ics2) < ICS_STD_RANK (ics1))
5371 return -1;
5373 to_type1 = TREE_TYPE (ics1);
5374 to_type2 = TREE_TYPE (ics2);
5376 if (TYPE_PTR_P (from_type1)
5377 && TYPE_PTR_P (from_type2)
5378 && TYPE_PTR_P (to_type1)
5379 && TYPE_PTR_P (to_type2))
5381 deref_from_type1 = TREE_TYPE (from_type1);
5382 deref_from_type2 = TREE_TYPE (from_type2);
5383 deref_to_type1 = TREE_TYPE (to_type1);
5384 deref_to_type2 = TREE_TYPE (to_type2);
5386 /* The rules for pointers to members A::* are just like the rules
5387 for pointers A*, except opposite: if B is derived from A then
5388 A::* converts to B::*, not vice versa. For that reason, we
5389 switch the from_ and to_ variables here. */
5390 else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
5391 && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
5392 || (TYPE_PTRMEMFUNC_P (from_type1)
5393 && TYPE_PTRMEMFUNC_P (from_type2)
5394 && TYPE_PTRMEMFUNC_P (to_type1)
5395 && TYPE_PTRMEMFUNC_P (to_type2)))
5397 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
5398 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
5399 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
5400 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
5403 if (deref_from_type1 != NULL_TREE
5404 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1))
5405 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2)))
5407 /* This was one of the pointer or pointer-like conversions.
5409 [over.ics.rank]
5411 --If class B is derived directly or indirectly from class A,
5412 conversion of B* to A* is better than conversion of B* to
5413 void*, and conversion of A* to void* is better than
5414 conversion of B* to void*. */
5415 if (TREE_CODE (deref_to_type1) == VOID_TYPE
5416 && TREE_CODE (deref_to_type2) == VOID_TYPE)
5418 if (is_properly_derived_from (deref_from_type1,
5419 deref_from_type2))
5420 return -1;
5421 else if (is_properly_derived_from (deref_from_type2,
5422 deref_from_type1))
5423 return 1;
5425 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
5426 || TREE_CODE (deref_to_type2) == VOID_TYPE)
5428 if (same_type_p (deref_from_type1, deref_from_type2))
5430 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
5432 if (is_properly_derived_from (deref_from_type1,
5433 deref_to_type1))
5434 return 1;
5436 /* We know that DEREF_TO_TYPE1 is `void' here. */
5437 else if (is_properly_derived_from (deref_from_type1,
5438 deref_to_type2))
5439 return -1;
5442 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1))
5443 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2)))
5445 /* [over.ics.rank]
5447 --If class B is derived directly or indirectly from class A
5448 and class C is derived directly or indirectly from B,
5450 --conversion of C* to B* is better than conversion of C* to
5451 A*,
5453 --conversion of B* to A* is better than conversion of C* to
5454 A* */
5455 if (same_type_p (deref_from_type1, deref_from_type2))
5457 if (is_properly_derived_from (deref_to_type1,
5458 deref_to_type2))
5459 return 1;
5460 else if (is_properly_derived_from (deref_to_type2,
5461 deref_to_type1))
5462 return -1;
5464 else if (same_type_p (deref_to_type1, deref_to_type2))
5466 if (is_properly_derived_from (deref_from_type2,
5467 deref_from_type1))
5468 return 1;
5469 else if (is_properly_derived_from (deref_from_type1,
5470 deref_from_type2))
5471 return -1;
5475 else if (CLASS_TYPE_P (non_reference (from_type1))
5476 && same_type_p (from_type1, from_type2))
5478 tree from = non_reference (from_type1);
5480 /* [over.ics.rank]
5482 --binding of an expression of type C to a reference of type
5483 B& is better than binding an expression of type C to a
5484 reference of type A&
5486 --conversion of C to B is better than conversion of C to A, */
5487 if (is_properly_derived_from (from, to_type1)
5488 && is_properly_derived_from (from, to_type2))
5490 if (is_properly_derived_from (to_type1, to_type2))
5491 return 1;
5492 else if (is_properly_derived_from (to_type2, to_type1))
5493 return -1;
5496 else if (CLASS_TYPE_P (non_reference (to_type1))
5497 && same_type_p (to_type1, to_type2))
5499 tree to = non_reference (to_type1);
5501 /* [over.ics.rank]
5503 --binding of an expression of type B to a reference of type
5504 A& is better than binding an expression of type C to a
5505 reference of type A&,
5507 --onversion of B to A is better than conversion of C to A */
5508 if (is_properly_derived_from (from_type1, to)
5509 && is_properly_derived_from (from_type2, to))
5511 if (is_properly_derived_from (from_type2, from_type1))
5512 return 1;
5513 else if (is_properly_derived_from (from_type1, from_type2))
5514 return -1;
5518 /* [over.ics.rank]
5520 --S1 and S2 differ only in their qualification conversion and yield
5521 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
5522 qualification signature of type T1 is a proper subset of the cv-
5523 qualification signature of type T2 */
5524 if (TREE_CODE (ics1) == QUAL_CONV
5525 && TREE_CODE (ics2) == QUAL_CONV
5526 && same_type_p (from_type1, from_type2))
5527 return comp_cv_qual_signature (to_type1, to_type2);
5529 /* [over.ics.rank]
5531 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
5532 types to which the references refer are the same type except for
5533 top-level cv-qualifiers, and the type to which the reference
5534 initialized by S2 refers is more cv-qualified than the type to
5535 which the reference initialized by S1 refers */
5537 if (target_type1 && target_type2
5538 && same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
5539 return comp_cv_qualification (target_type2, target_type1);
5541 /* Neither conversion sequence is better than the other. */
5542 return 0;
5545 /* The source type for this standard conversion sequence. */
5547 static tree
5548 source_type (tree t)
5550 for (;; t = TREE_OPERAND (t, 0))
5552 if (TREE_CODE (t) == USER_CONV
5553 || TREE_CODE (t) == AMBIG_CONV
5554 || TREE_CODE (t) == IDENTITY_CONV)
5555 return TREE_TYPE (t);
5557 abort ();
5560 /* Note a warning about preferring WINNER to LOSER. We do this by storing
5561 a pointer to LOSER and re-running joust to produce the warning if WINNER
5562 is actually used. */
5564 static void
5565 add_warning (struct z_candidate *winner, struct z_candidate *loser)
5567 winner->warnings = tree_cons (NULL_TREE,
5568 build_zc_wrapper (loser),
5569 winner->warnings);
5572 /* Compare two candidates for overloading as described in
5573 [over.match.best]. Return values:
5575 1: cand1 is better than cand2
5576 -1: cand2 is better than cand1
5577 0: cand1 and cand2 are indistinguishable */
5579 static int
5580 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
5582 int winner = 0;
5583 int i, off1 = 0, off2 = 0, len;
5585 /* Candidates that involve bad conversions are always worse than those
5586 that don't. */
5587 if (cand1->viable > cand2->viable)
5588 return 1;
5589 if (cand1->viable < cand2->viable)
5590 return -1;
5592 /* If we have two pseudo-candidates for conversions to the same type,
5593 or two candidates for the same function, arbitrarily pick one. */
5594 if (cand1->fn == cand2->fn
5595 && (TYPE_P (cand1->fn) || DECL_P (cand1->fn)))
5596 return 1;
5598 /* a viable function F1
5599 is defined to be a better function than another viable function F2 if
5600 for all arguments i, ICSi(F1) is not a worse conversion sequence than
5601 ICSi(F2), and then */
5603 /* for some argument j, ICSj(F1) is a better conversion sequence than
5604 ICSj(F2) */
5606 /* For comparing static and non-static member functions, we ignore
5607 the implicit object parameter of the non-static function. The
5608 standard says to pretend that the static function has an object
5609 parm, but that won't work with operator overloading. */
5610 len = TREE_VEC_LENGTH (cand1->convs);
5611 if (len != TREE_VEC_LENGTH (cand2->convs))
5613 if (DECL_STATIC_FUNCTION_P (cand1->fn)
5614 && ! DECL_STATIC_FUNCTION_P (cand2->fn))
5615 off2 = 1;
5616 else if (! DECL_STATIC_FUNCTION_P (cand1->fn)
5617 && DECL_STATIC_FUNCTION_P (cand2->fn))
5619 off1 = 1;
5620 --len;
5622 else
5623 abort ();
5626 for (i = 0; i < len; ++i)
5628 tree t1 = TREE_VEC_ELT (cand1->convs, i+off1);
5629 tree t2 = TREE_VEC_ELT (cand2->convs, i+off2);
5630 int comp = compare_ics (t1, t2);
5632 if (comp != 0)
5634 if (warn_sign_promo
5635 && ICS_RANK (t1) + ICS_RANK (t2) == STD_RANK + PROMO_RANK
5636 && TREE_CODE (t1) == STD_CONV
5637 && TREE_CODE (t2) == STD_CONV
5638 && TREE_CODE (TREE_TYPE (t1)) == INTEGER_TYPE
5639 && TREE_CODE (TREE_TYPE (t2)) == INTEGER_TYPE
5640 && (TYPE_PRECISION (TREE_TYPE (t1))
5641 == TYPE_PRECISION (TREE_TYPE (t2)))
5642 && (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (t1, 0)))
5643 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (t1, 0)))
5644 == ENUMERAL_TYPE)))
5646 tree type = TREE_TYPE (TREE_OPERAND (t1, 0));
5647 tree type1, type2;
5648 struct z_candidate *w, *l;
5649 if (comp > 0)
5650 type1 = TREE_TYPE (t1), type2 = TREE_TYPE (t2),
5651 w = cand1, l = cand2;
5652 else
5653 type1 = TREE_TYPE (t2), type2 = TREE_TYPE (t1),
5654 w = cand2, l = cand1;
5656 if (warn)
5658 warning ("passing `%T' chooses `%T' over `%T'",
5659 type, type1, type2);
5660 warning (" in call to `%D'", w->fn);
5662 else
5663 add_warning (w, l);
5666 if (winner && comp != winner)
5668 winner = 0;
5669 goto tweak;
5671 winner = comp;
5675 /* warn about confusing overload resolution for user-defined conversions,
5676 either between a constructor and a conversion op, or between two
5677 conversion ops. */
5678 if (winner && warn_conversion && cand1->second_conv
5679 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
5680 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
5682 struct z_candidate *w, *l;
5683 bool give_warning = false;
5685 if (winner == 1)
5686 w = cand1, l = cand2;
5687 else
5688 w = cand2, l = cand1;
5690 /* We don't want to complain about `X::operator T1 ()'
5691 beating `X::operator T2 () const', when T2 is a no less
5692 cv-qualified version of T1. */
5693 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
5694 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
5696 tree t = TREE_TYPE (TREE_TYPE (l->fn));
5697 tree f = TREE_TYPE (TREE_TYPE (w->fn));
5699 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
5701 t = TREE_TYPE (t);
5702 f = TREE_TYPE (f);
5704 if (!comp_ptr_ttypes (t, f))
5705 give_warning = true;
5707 else
5708 give_warning = true;
5710 if (!give_warning)
5711 /*NOP*/;
5712 else if (warn)
5714 tree source = source_type (TREE_VEC_ELT (w->convs, 0));
5715 if (! DECL_CONSTRUCTOR_P (w->fn))
5716 source = TREE_TYPE (source);
5717 warning ("choosing `%D' over `%D'", w->fn, l->fn);
5718 warning (" for conversion from `%T' to `%T'",
5719 source, TREE_TYPE (w->second_conv));
5720 warning (" because conversion sequence for the argument is better");
5722 else
5723 add_warning (w, l);
5726 if (winner)
5727 return winner;
5729 /* or, if not that,
5730 F1 is a non-template function and F2 is a template function
5731 specialization. */
5733 if (! cand1->template && cand2->template)
5734 return 1;
5735 else if (cand1->template && ! cand2->template)
5736 return -1;
5738 /* or, if not that,
5739 F1 and F2 are template functions and the function template for F1 is
5740 more specialized than the template for F2 according to the partial
5741 ordering rules. */
5743 if (cand1->template && cand2->template)
5745 winner = more_specialized
5746 (TI_TEMPLATE (cand1->template), TI_TEMPLATE (cand2->template),
5747 DEDUCE_ORDER,
5748 /* Tell the deduction code how many real function arguments
5749 we saw, not counting the implicit 'this' argument. But,
5750 add_function_candidate() suppresses the "this" argument
5751 for constructors.
5753 [temp.func.order]: The presence of unused ellipsis and default
5754 arguments has no effect on the partial ordering of function
5755 templates. */
5756 TREE_VEC_LENGTH (cand1->convs)
5757 - (DECL_NONSTATIC_MEMBER_FUNCTION_P (cand1->fn)
5758 - DECL_CONSTRUCTOR_P (cand1->fn)));
5759 if (winner)
5760 return winner;
5763 /* or, if not that,
5764 the context is an initialization by user-defined conversion (see
5765 _dcl.init_ and _over.match.user_) and the standard conversion
5766 sequence from the return type of F1 to the destination type (i.e.,
5767 the type of the entity being initialized) is a better conversion
5768 sequence than the standard conversion sequence from the return type
5769 of F2 to the destination type. */
5771 if (cand1->second_conv)
5773 winner = compare_ics (cand1->second_conv, cand2->second_conv);
5774 if (winner)
5775 return winner;
5778 /* Check whether we can discard a builtin candidate, either because we
5779 have two identical ones or matching builtin and non-builtin candidates.
5781 (Pedantically in the latter case the builtin which matched the user
5782 function should not be added to the overload set, but we spot it here.
5784 [over.match.oper]
5785 ... the builtin candidates include ...
5786 - do not have the same parameter type list as any non-template
5787 non-member candidate. */
5789 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
5790 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
5792 for (i = 0; i < len; ++i)
5793 if (!same_type_p (TREE_TYPE (TREE_VEC_ELT (cand1->convs, i)),
5794 TREE_TYPE (TREE_VEC_ELT (cand2->convs, i))))
5795 break;
5796 if (i == TREE_VEC_LENGTH (cand1->convs))
5798 if (cand1->fn == cand2->fn)
5799 /* Two built-in candidates; arbitrarily pick one. */
5800 return 1;
5801 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
5802 /* cand1 is built-in; prefer cand2. */
5803 return -1;
5804 else
5805 /* cand2 is built-in; prefer cand1. */
5806 return 1;
5810 /* If the two functions are the same (this can happen with declarations
5811 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
5812 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
5813 && equal_functions (cand1->fn, cand2->fn))
5814 return 1;
5816 tweak:
5818 /* Extension: If the worst conversion for one candidate is worse than the
5819 worst conversion for the other, take the first. */
5820 if (!pedantic)
5822 int rank1 = IDENTITY_RANK, rank2 = IDENTITY_RANK;
5823 struct z_candidate *w = 0, *l = 0;
5825 for (i = 0; i < len; ++i)
5827 if (ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1)) > rank1)
5828 rank1 = ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1));
5829 if (ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2)) > rank2)
5830 rank2 = ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2));
5832 if (rank1 < rank2)
5833 winner = 1, w = cand1, l = cand2;
5834 if (rank1 > rank2)
5835 winner = -1, w = cand2, l = cand1;
5836 if (winner)
5838 if (warn)
5840 pedwarn ("\
5841 ISO C++ says that these are ambiguous, even \
5842 though the worst conversion for the first is better than \
5843 the worst conversion for the second:");
5844 print_z_candidate (_("candidate 1:"), w);
5845 print_z_candidate (_("candidate 2:"), l);
5847 else
5848 add_warning (w, l);
5849 return winner;
5853 my_friendly_assert (!winner, 20010121);
5854 return 0;
5857 /* Given a list of candidates for overloading, find the best one, if any.
5858 This algorithm has a worst case of O(2n) (winner is last), and a best
5859 case of O(n/2) (totally ambiguous); much better than a sorting
5860 algorithm. */
5862 static struct z_candidate *
5863 tourney (struct z_candidate *candidates)
5865 struct z_candidate *champ = candidates, *challenger;
5866 int fate;
5867 int champ_compared_to_predecessor = 0;
5869 /* Walk through the list once, comparing each current champ to the next
5870 candidate, knocking out a candidate or two with each comparison. */
5872 for (challenger = champ->next; challenger; )
5874 fate = joust (champ, challenger, 0);
5875 if (fate == 1)
5876 challenger = challenger->next;
5877 else
5879 if (fate == 0)
5881 champ = challenger->next;
5882 if (champ == 0)
5883 return 0;
5884 champ_compared_to_predecessor = 0;
5886 else
5888 champ = challenger;
5889 champ_compared_to_predecessor = 1;
5892 challenger = champ->next;
5896 /* Make sure the champ is better than all the candidates it hasn't yet
5897 been compared to. */
5899 for (challenger = candidates;
5900 challenger != champ
5901 && !(champ_compared_to_predecessor && challenger->next == champ);
5902 challenger = challenger->next)
5904 fate = joust (champ, challenger, 0);
5905 if (fate != 1)
5906 return 0;
5909 return champ;
5912 /* Returns nonzero if things of type FROM can be converted to TO. */
5914 bool
5915 can_convert (tree to, tree from)
5917 return can_convert_arg (to, from, NULL_TREE);
5920 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
5922 bool
5923 can_convert_arg (tree to, tree from, tree arg)
5925 tree t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
5926 return (t && ! ICS_BAD_FLAG (t));
5929 /* Like can_convert_arg, but allows dubious conversions as well. */
5931 bool
5932 can_convert_arg_bad (tree to, tree from, tree arg)
5934 return implicit_conversion (to, from, arg, LOOKUP_NORMAL) != 0;
5937 /* Convert EXPR to TYPE. Return the converted expression.
5939 Note that we allow bad conversions here because by the time we get to
5940 this point we are committed to doing the conversion. If we end up
5941 doing a bad conversion, convert_like will complain. */
5943 tree
5944 perform_implicit_conversion (tree type, tree expr)
5946 tree conv;
5948 if (error_operand_p (expr))
5949 return error_mark_node;
5950 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
5951 LOOKUP_NORMAL);
5952 if (!conv)
5954 error ("could not convert `%E' to `%T'", expr, type);
5955 return error_mark_node;
5958 return convert_like (conv, expr);
5961 /* Convert EXPR to TYPE (as a direct-initialization) if that is
5962 permitted. If the conversion is valid, the converted expression is
5963 returned. Otherwise, NULL_TREE is returned, except in the case
5964 that TYPE is a class type; in that case, an error is issued. */
5966 tree
5967 perform_direct_initialization_if_possible (tree type, tree expr)
5969 tree conv;
5971 if (type == error_mark_node || error_operand_p (expr))
5972 return error_mark_node;
5973 /* [dcl.init]
5975 If the destination type is a (possibly cv-qualified) class type:
5977 -- If the initialization is direct-initialization ...,
5978 constructors are considered. ... If no constructor applies, or
5979 the overload resolution is ambiguous, the initialization is
5980 ill-formed. */
5981 if (CLASS_TYPE_P (type))
5983 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
5984 build_tree_list (NULL_TREE, expr),
5985 TYPE_BINFO (type),
5986 LOOKUP_NORMAL);
5987 return build_cplus_new (type, expr);
5989 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
5990 LOOKUP_NORMAL);
5991 if (!conv || ICS_BAD_FLAG (conv))
5992 return NULL_TREE;
5993 return convert_like_real (conv, expr, NULL_TREE, 0, 0,
5994 /*issue_conversion_warnings=*/false);
5997 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
5998 is being bound to a temporary. Create and return a new VAR_DECL
5999 with the indicated TYPE; this variable will store the value to
6000 which the reference is bound. */
6002 tree
6003 make_temporary_var_for_ref_to_temp (tree decl, tree type)
6005 tree var;
6007 /* Create the variable. */
6008 var = build_decl (VAR_DECL, NULL_TREE, type);
6009 DECL_ARTIFICIAL (var) = 1;
6010 TREE_USED (var) = 1;
6012 /* Register the variable. */
6013 if (TREE_STATIC (decl))
6015 /* Namespace-scope or local static; give it a mangled name. */
6016 tree name;
6018 TREE_STATIC (var) = 1;
6019 name = mangle_ref_init_variable (decl);
6020 DECL_NAME (var) = name;
6021 SET_DECL_ASSEMBLER_NAME (var, name);
6022 var = pushdecl_top_level (var);
6024 else
6026 /* Create a new cleanup level if necessary. */
6027 maybe_push_cleanup_level (type);
6028 /* Don't push unnamed temps. Do set DECL_CONTEXT, though. */
6029 DECL_CONTEXT (var) = current_function_decl;
6032 return var;
6035 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
6036 initializing a variable of that TYPE. If DECL is non-NULL, it is
6037 the VAR_DECL being initialized with the EXPR. (In that case, the
6038 type of DECL will be TYPE.) If DECL is non-NULL, then CLEANUP must
6039 also be non-NULL, and with *CLEANUP initialized to NULL. Upon
6040 return, if *CLEANUP is no longer NULL, it will be a CLEANUP_STMT
6041 that should be inserted after the returned expression is used to
6042 initialize DECL.
6044 Return the converted expression. */
6046 tree
6047 initialize_reference (tree type, tree expr, tree decl, tree *cleanup)
6049 tree conv;
6051 if (type == error_mark_node || error_operand_p (expr))
6052 return error_mark_node;
6054 conv = reference_binding (type, TREE_TYPE (expr), expr, LOOKUP_NORMAL);
6055 if (!conv || ICS_BAD_FLAG (conv))
6057 if (!(TYPE_QUALS (TREE_TYPE (type)) & TYPE_QUAL_CONST)
6058 && !real_lvalue_p (expr))
6059 error ("invalid initialization of non-const reference of "
6060 "type '%T' from a temporary of type '%T'",
6061 type, TREE_TYPE (expr));
6062 else
6063 error ("could not convert `%E' to `%T'", expr, type);
6064 return error_mark_node;
6067 /* If DECL is non-NULL, then this special rule applies:
6069 [class.temporary]
6071 The temporary to which the reference is bound or the temporary
6072 that is the complete object to which the reference is bound
6073 persists for the lifetime of the reference.
6075 The temporaries created during the evaluation of the expression
6076 initializing the reference, except the temporary to which the
6077 reference is bound, are destroyed at the end of the
6078 full-expression in which they are created.
6080 In that case, we store the converted expression into a new
6081 VAR_DECL in a new scope.
6083 However, we want to be careful not to create temporaries when
6084 they are not required. For example, given:
6086 struct B {};
6087 struct D : public B {};
6088 D f();
6089 const B& b = f();
6091 there is no need to copy the return value from "f"; we can just
6092 extend its lifetime. Similarly, given:
6094 struct S {};
6095 struct T { operator S(); };
6096 T t;
6097 const S& s = t;
6099 we can extend the lifetime of the return value of the conversion
6100 operator. */
6101 my_friendly_assert (TREE_CODE (conv) == REF_BIND, 20030302);
6102 if (decl)
6104 tree var;
6105 tree base_conv_type;
6107 /* Skip over the REF_BIND. */
6108 conv = TREE_OPERAND (conv, 0);
6109 /* If the next conversion is a BASE_CONV, skip that too -- but
6110 remember that the conversion was required. */
6111 if (TREE_CODE (conv) == BASE_CONV && !NEED_TEMPORARY_P (conv))
6113 base_conv_type = TREE_TYPE (conv);
6114 conv = TREE_OPERAND (conv, 0);
6116 else
6117 base_conv_type = NULL_TREE;
6118 /* Perform the remainder of the conversion. */
6119 expr = convert_like (conv, expr);
6120 if (!real_lvalue_p (expr))
6122 tree init;
6123 tree type;
6125 /* Create the temporary variable. */
6126 type = TREE_TYPE (expr);
6127 var = make_temporary_var_for_ref_to_temp (decl, type);
6128 layout_decl (var, 0);
6129 /* Create the INIT_EXPR that will initialize the temporary
6130 variable. */
6131 init = build (INIT_EXPR, type, var, expr);
6132 if (at_function_scope_p ())
6134 add_decl_stmt (var);
6135 *cleanup = cxx_maybe_build_cleanup (var);
6136 if (*cleanup)
6137 /* We must be careful to destroy the temporary only
6138 after its initialization has taken place. If the
6139 initialization throws an exception, then the
6140 destructor should not be run. We cannot simply
6141 transform INIT into something like:
6143 (INIT, ({ CLEANUP_STMT; }))
6145 because emit_local_var always treats the
6146 initializer as a full-expression. Thus, the
6147 destructor would run too early; it would run at the
6148 end of initializing the reference variable, rather
6149 than at the end of the block enclosing the
6150 reference variable.
6152 The solution is to pass back a CLEANUP_STMT which
6153 the caller is responsible for attaching to the
6154 statement tree. */
6155 *cleanup = build_stmt (CLEANUP_STMT, var, *cleanup);
6157 else
6159 rest_of_decl_compilation (var, NULL, /*toplev=*/1, at_eof);
6160 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6161 static_aggregates = tree_cons (NULL_TREE, var,
6162 static_aggregates);
6164 /* Use its address to initialize the reference variable. */
6165 expr = build_address (var);
6166 expr = build (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
6168 else
6169 /* Take the address of EXPR. */
6170 expr = build_unary_op (ADDR_EXPR, expr, 0);
6171 /* If a BASE_CONV was required, perform it now. */
6172 if (base_conv_type)
6173 expr = (perform_implicit_conversion
6174 (build_pointer_type (base_conv_type), expr));
6175 return build_nop (type, expr);
6178 /* Perform the conversion. */
6179 return convert_like (conv, expr);
6182 #include "gt-cp-call.h"