]> gcc.gnu.org Git - gcc.git/blob - gcc/cp/call.c
re PR c++/53524 (Bogus enum comparison warning)
[gcc.git] / gcc / cp / call.c
1 /* Functions related to invoking methods and overloaded functions.
2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010, 2011, 2012
5 Free Software Foundation, Inc.
6 Contributed by Michael Tiemann (tiemann@cygnus.com) and
7 modified by Brendan Kehoe (brendan@cygnus.com).
8
9 This file is part of GCC.
10
11 GCC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
15
16 GCC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
24
25
26 /* High-level class interface. */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "cp-tree.h"
34 #include "flags.h"
35 #include "toplev.h"
36 #include "diagnostic-core.h"
37 #include "intl.h"
38 #include "target.h"
39 #include "convert.h"
40 #include "langhooks.h"
41 #include "c-family/c-objc.h"
42 #include "timevar.h"
43
44 /* The various kinds of conversion. */
45
46 typedef enum conversion_kind {
47 ck_identity,
48 ck_lvalue,
49 ck_qual,
50 ck_std,
51 ck_ptr,
52 ck_pmem,
53 ck_base,
54 ck_ref_bind,
55 ck_user,
56 ck_ambig,
57 ck_list,
58 ck_aggr,
59 ck_rvalue
60 } conversion_kind;
61
62 /* The rank of the conversion. Order of the enumerals matters; better
63 conversions should come earlier in the list. */
64
65 typedef enum conversion_rank {
66 cr_identity,
67 cr_exact,
68 cr_promotion,
69 cr_std,
70 cr_pbool,
71 cr_user,
72 cr_ellipsis,
73 cr_bad
74 } conversion_rank;
75
76 /* An implicit conversion sequence, in the sense of [over.best.ics].
77 The first conversion to be performed is at the end of the chain.
78 That conversion is always a cr_identity conversion. */
79
80 typedef struct conversion conversion;
81 struct conversion {
82 /* The kind of conversion represented by this step. */
83 conversion_kind kind;
84 /* The rank of this conversion. */
85 conversion_rank rank;
86 BOOL_BITFIELD user_conv_p : 1;
87 BOOL_BITFIELD ellipsis_p : 1;
88 BOOL_BITFIELD this_p : 1;
89 /* True if this conversion would be permitted with a bending of
90 language standards, e.g. disregarding pointer qualifiers or
91 converting integers to pointers. */
92 BOOL_BITFIELD bad_p : 1;
93 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
94 temporary should be created to hold the result of the
95 conversion. */
96 BOOL_BITFIELD need_temporary_p : 1;
97 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
98 from a pointer-to-derived to pointer-to-base is being performed. */
99 BOOL_BITFIELD base_p : 1;
100 /* If KIND is ck_ref_bind, true when either an lvalue reference is
101 being bound to an lvalue expression or an rvalue reference is
102 being bound to an rvalue expression. If KIND is ck_rvalue,
103 true when we should treat an lvalue as an rvalue (12.8p33). If
104 KIND is ck_base, always false. */
105 BOOL_BITFIELD rvaluedness_matches_p: 1;
106 BOOL_BITFIELD check_narrowing: 1;
107 /* The type of the expression resulting from the conversion. */
108 tree type;
109 union {
110 /* The next conversion in the chain. Since the conversions are
111 arranged from outermost to innermost, the NEXT conversion will
112 actually be performed before this conversion. This variant is
113 used only when KIND is neither ck_identity, ck_ambig nor
114 ck_list. Please use the next_conversion function instead
115 of using this field directly. */
116 conversion *next;
117 /* The expression at the beginning of the conversion chain. This
118 variant is used only if KIND is ck_identity or ck_ambig. */
119 tree expr;
120 /* The array of conversions for an initializer_list, so this
121 variant is used only when KIN D is ck_list. */
122 conversion **list;
123 } u;
124 /* The function candidate corresponding to this conversion
125 sequence. This field is only used if KIND is ck_user. */
126 struct z_candidate *cand;
127 };
128
129 #define CONVERSION_RANK(NODE) \
130 ((NODE)->bad_p ? cr_bad \
131 : (NODE)->ellipsis_p ? cr_ellipsis \
132 : (NODE)->user_conv_p ? cr_user \
133 : (NODE)->rank)
134
135 #define BAD_CONVERSION_RANK(NODE) \
136 ((NODE)->ellipsis_p ? cr_ellipsis \
137 : (NODE)->user_conv_p ? cr_user \
138 : (NODE)->rank)
139
140 static struct obstack conversion_obstack;
141 static bool conversion_obstack_initialized;
142 struct rejection_reason;
143
144 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
145 static int equal_functions (tree, tree);
146 static int joust (struct z_candidate *, struct z_candidate *, bool,
147 tsubst_flags_t);
148 static int compare_ics (conversion *, conversion *);
149 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
150 static tree build_java_interface_fn_ref (tree, tree);
151 #define convert_like(CONV, EXPR, COMPLAIN) \
152 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
153 /*issue_conversion_warnings=*/true, \
154 /*c_cast_p=*/false, (COMPLAIN))
155 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
156 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
157 /*issue_conversion_warnings=*/true, \
158 /*c_cast_p=*/false, (COMPLAIN))
159 static tree convert_like_real (conversion *, tree, tree, int, int, bool,
160 bool, tsubst_flags_t);
161 static void op_error (location_t, enum tree_code, enum tree_code, tree,
162 tree, tree, bool);
163 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
164 tsubst_flags_t);
165 static void print_z_candidate (location_t, const char *, struct z_candidate *);
166 static void print_z_candidates (location_t, struct z_candidate *);
167 static tree build_this (tree);
168 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
169 static bool any_strictly_viable (struct z_candidate *);
170 static struct z_candidate *add_template_candidate
171 (struct z_candidate **, tree, tree, tree, tree, const VEC(tree,gc) *,
172 tree, tree, tree, int, unification_kind_t, tsubst_flags_t);
173 static struct z_candidate *add_template_candidate_real
174 (struct z_candidate **, tree, tree, tree, tree, const VEC(tree,gc) *,
175 tree, tree, tree, int, tree, unification_kind_t, tsubst_flags_t);
176 static struct z_candidate *add_template_conv_candidate
177 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
178 tree, tree, tsubst_flags_t);
179 static void add_builtin_candidates
180 (struct z_candidate **, enum tree_code, enum tree_code,
181 tree, tree *, int, tsubst_flags_t);
182 static void add_builtin_candidate
183 (struct z_candidate **, enum tree_code, enum tree_code,
184 tree, tree, tree, tree *, tree *, int, tsubst_flags_t);
185 static bool is_complete (tree);
186 static void build_builtin_candidate
187 (struct z_candidate **, tree, tree, tree, tree *, tree *,
188 int, tsubst_flags_t);
189 static struct z_candidate *add_conv_candidate
190 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
191 tree, tsubst_flags_t);
192 static struct z_candidate *add_function_candidate
193 (struct z_candidate **, tree, tree, tree, const VEC(tree,gc) *, tree,
194 tree, int, tsubst_flags_t);
195 static conversion *implicit_conversion (tree, tree, tree, bool, int,
196 tsubst_flags_t);
197 static conversion *standard_conversion (tree, tree, tree, bool, int);
198 static conversion *reference_binding (tree, tree, tree, bool, int,
199 tsubst_flags_t);
200 static conversion *build_conv (conversion_kind, tree, conversion *);
201 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
202 static conversion *next_conversion (conversion *);
203 static bool is_subseq (conversion *, conversion *);
204 static conversion *maybe_handle_ref_bind (conversion **);
205 static void maybe_handle_implicit_object (conversion **);
206 static struct z_candidate *add_candidate
207 (struct z_candidate **, tree, tree, const VEC(tree,gc) *, size_t,
208 conversion **, tree, tree, int, struct rejection_reason *);
209 static tree source_type (conversion *);
210 static void add_warning (struct z_candidate *, struct z_candidate *);
211 static bool reference_compatible_p (tree, tree);
212 static conversion *direct_reference_binding (tree, conversion *);
213 static bool promoted_arithmetic_type_p (tree);
214 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
215 static char *name_as_c_string (tree, tree, bool *);
216 static tree prep_operand (tree);
217 static void add_candidates (tree, tree, const VEC(tree,gc) *, tree, tree, bool,
218 tree, tree, int, struct z_candidate **,
219 tsubst_flags_t);
220 static conversion *merge_conversion_sequences (conversion *, conversion *);
221 static bool magic_varargs_p (tree);
222 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
223
224 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
225 NAME can take many forms... */
226
227 bool
228 check_dtor_name (tree basetype, tree name)
229 {
230 /* Just accept something we've already complained about. */
231 if (name == error_mark_node)
232 return true;
233
234 if (TREE_CODE (name) == TYPE_DECL)
235 name = TREE_TYPE (name);
236 else if (TYPE_P (name))
237 /* OK */;
238 else if (TREE_CODE (name) == IDENTIFIER_NODE)
239 {
240 if ((MAYBE_CLASS_TYPE_P (basetype)
241 && name == constructor_name (basetype))
242 || (TREE_CODE (basetype) == ENUMERAL_TYPE
243 && name == TYPE_IDENTIFIER (basetype)))
244 return true;
245 else
246 name = get_type_value (name);
247 }
248 else
249 {
250 /* In the case of:
251
252 template <class T> struct S { ~S(); };
253 int i;
254 i.~S();
255
256 NAME will be a class template. */
257 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
258 return false;
259 }
260
261 if (!name || name == error_mark_node)
262 return false;
263 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
264 }
265
266 /* We want the address of a function or method. We avoid creating a
267 pointer-to-member function. */
268
269 tree
270 build_addr_func (tree function, tsubst_flags_t complain)
271 {
272 tree type = TREE_TYPE (function);
273
274 /* We have to do these by hand to avoid real pointer to member
275 functions. */
276 if (TREE_CODE (type) == METHOD_TYPE)
277 {
278 if (TREE_CODE (function) == OFFSET_REF)
279 {
280 tree object = build_address (TREE_OPERAND (function, 0));
281 return get_member_function_from_ptrfunc (&object,
282 TREE_OPERAND (function, 1),
283 complain);
284 }
285 function = build_address (function);
286 }
287 else
288 function = decay_conversion (function, complain);
289
290 return function;
291 }
292
293 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
294 POINTER_TYPE to those. Note, pointer to member function types
295 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
296 two variants. build_call_a is the primitive taking an array of
297 arguments, while build_call_n is a wrapper that handles varargs. */
298
299 tree
300 build_call_n (tree function, int n, ...)
301 {
302 if (n == 0)
303 return build_call_a (function, 0, NULL);
304 else
305 {
306 tree *argarray = XALLOCAVEC (tree, n);
307 va_list ap;
308 int i;
309
310 va_start (ap, n);
311 for (i = 0; i < n; i++)
312 argarray[i] = va_arg (ap, tree);
313 va_end (ap);
314 return build_call_a (function, n, argarray);
315 }
316 }
317
318 /* Update various flags in cfun and the call itself based on what is being
319 called. Split out of build_call_a so that bot_manip can use it too. */
320
321 void
322 set_flags_from_callee (tree call)
323 {
324 int nothrow;
325 tree decl = get_callee_fndecl (call);
326
327 /* We check both the decl and the type; a function may be known not to
328 throw without being declared throw(). */
329 nothrow = ((decl && TREE_NOTHROW (decl))
330 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (call)))));
331
332 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
333 cp_function_chain->can_throw = 1;
334
335 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
336 current_function_returns_abnormally = 1;
337
338 TREE_NOTHROW (call) = nothrow;
339 }
340
341 tree
342 build_call_a (tree function, int n, tree *argarray)
343 {
344 tree decl;
345 tree result_type;
346 tree fntype;
347 int i;
348
349 function = build_addr_func (function, tf_warning_or_error);
350
351 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
352 fntype = TREE_TYPE (TREE_TYPE (function));
353 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
354 || TREE_CODE (fntype) == METHOD_TYPE);
355 result_type = TREE_TYPE (fntype);
356 /* An rvalue has no cv-qualifiers. */
357 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
358 result_type = cv_unqualified (result_type);
359
360 function = build_call_array_loc (input_location,
361 result_type, function, n, argarray);
362 set_flags_from_callee (function);
363
364 decl = get_callee_fndecl (function);
365
366 if (decl && !TREE_USED (decl))
367 {
368 /* We invoke build_call directly for several library
369 functions. These may have been declared normally if
370 we're building libgcc, so we can't just check
371 DECL_ARTIFICIAL. */
372 gcc_assert (DECL_ARTIFICIAL (decl)
373 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
374 "__", 2));
375 mark_used (decl);
376 }
377
378 if (decl && TREE_DEPRECATED (decl))
379 warn_deprecated_use (decl, NULL_TREE);
380 require_complete_eh_spec_types (fntype, decl);
381
382 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
383
384 /* Don't pass empty class objects by value. This is useful
385 for tags in STL, which are used to control overload resolution.
386 We don't need to handle other cases of copying empty classes. */
387 if (! decl || ! DECL_BUILT_IN (decl))
388 for (i = 0; i < n; i++)
389 {
390 tree arg = CALL_EXPR_ARG (function, i);
391 if (is_empty_class (TREE_TYPE (arg))
392 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
393 {
394 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
395 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
396 CALL_EXPR_ARG (function, i) = arg;
397 }
398 }
399
400 return function;
401 }
402
403 /* Build something of the form ptr->method (args)
404 or object.method (args). This can also build
405 calls to constructors, and find friends.
406
407 Member functions always take their class variable
408 as a pointer.
409
410 INSTANCE is a class instance.
411
412 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
413
414 PARMS help to figure out what that NAME really refers to.
415
416 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
417 down to the real instance type to use for access checking. We need this
418 information to get protected accesses correct.
419
420 FLAGS is the logical disjunction of zero or more LOOKUP_
421 flags. See cp-tree.h for more info.
422
423 If this is all OK, calls build_function_call with the resolved
424 member function.
425
426 This function must also handle being called to perform
427 initialization, promotion/coercion of arguments, and
428 instantiation of default parameters.
429
430 Note that NAME may refer to an instance variable name. If
431 `operator()()' is defined for the type of that field, then we return
432 that result. */
433
434 /* New overloading code. */
435
436 typedef struct z_candidate z_candidate;
437
438 typedef struct candidate_warning candidate_warning;
439 struct candidate_warning {
440 z_candidate *loser;
441 candidate_warning *next;
442 };
443
444 /* Information for providing diagnostics about why overloading failed. */
445
446 enum rejection_reason_code {
447 rr_none,
448 rr_arity,
449 rr_explicit_conversion,
450 rr_template_conversion,
451 rr_arg_conversion,
452 rr_bad_arg_conversion,
453 rr_template_unification,
454 rr_template_instantiation,
455 rr_invalid_copy
456 };
457
458 struct conversion_info {
459 /* The index of the argument, 0-based. */
460 int n_arg;
461 /* The type of the actual argument. */
462 tree from_type;
463 /* The type of the formal argument. */
464 tree to_type;
465 };
466
467 struct rejection_reason {
468 enum rejection_reason_code code;
469 union {
470 /* Information about an arity mismatch. */
471 struct {
472 /* The expected number of arguments. */
473 int expected;
474 /* The actual number of arguments in the call. */
475 int actual;
476 /* Whether the call was a varargs call. */
477 bool call_varargs_p;
478 } arity;
479 /* Information about an argument conversion mismatch. */
480 struct conversion_info conversion;
481 /* Same, but for bad argument conversions. */
482 struct conversion_info bad_conversion;
483 /* Information about template unification failures. These are the
484 parameters passed to fn_type_unification. */
485 struct {
486 tree tmpl;
487 tree explicit_targs;
488 tree targs;
489 const tree *args;
490 unsigned int nargs;
491 tree return_type;
492 unification_kind_t strict;
493 int flags;
494 } template_unification;
495 /* Information about template instantiation failures. These are the
496 parameters passed to instantiate_template. */
497 struct {
498 tree tmpl;
499 tree targs;
500 } template_instantiation;
501 } u;
502 };
503
504 struct z_candidate {
505 /* The FUNCTION_DECL that will be called if this candidate is
506 selected by overload resolution. */
507 tree fn;
508 /* If not NULL_TREE, the first argument to use when calling this
509 function. */
510 tree first_arg;
511 /* The rest of the arguments to use when calling this function. If
512 there are no further arguments this may be NULL or it may be an
513 empty vector. */
514 const VEC(tree,gc) *args;
515 /* The implicit conversion sequences for each of the arguments to
516 FN. */
517 conversion **convs;
518 /* The number of implicit conversion sequences. */
519 size_t num_convs;
520 /* If FN is a user-defined conversion, the standard conversion
521 sequence from the type returned by FN to the desired destination
522 type. */
523 conversion *second_conv;
524 int viable;
525 struct rejection_reason *reason;
526 /* If FN is a member function, the binfo indicating the path used to
527 qualify the name of FN at the call site. This path is used to
528 determine whether or not FN is accessible if it is selected by
529 overload resolution. The DECL_CONTEXT of FN will always be a
530 (possibly improper) base of this binfo. */
531 tree access_path;
532 /* If FN is a non-static member function, the binfo indicating the
533 subobject to which the `this' pointer should be converted if FN
534 is selected by overload resolution. The type pointed to by
535 the `this' pointer must correspond to the most derived class
536 indicated by the CONVERSION_PATH. */
537 tree conversion_path;
538 tree template_decl;
539 tree explicit_targs;
540 candidate_warning *warnings;
541 z_candidate *next;
542 };
543
544 /* Returns true iff T is a null pointer constant in the sense of
545 [conv.ptr]. */
546
547 bool
548 null_ptr_cst_p (tree t)
549 {
550 /* [conv.ptr]
551
552 A null pointer constant is an integral constant expression
553 (_expr.const_) rvalue of integer type that evaluates to zero or
554 an rvalue of type std::nullptr_t. */
555 if (NULLPTR_TYPE_P (TREE_TYPE (t)))
556 return true;
557 if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
558 {
559 /* Core issue 903 says only literal 0 is a null pointer constant. */
560 if (cxx_dialect < cxx0x)
561 t = integral_constant_value (t);
562 STRIP_NOPS (t);
563 if (integer_zerop (t) && !TREE_OVERFLOW (t))
564 return true;
565 }
566 return false;
567 }
568
569 /* Returns true iff T is a null member pointer value (4.11). */
570
571 bool
572 null_member_pointer_value_p (tree t)
573 {
574 tree type = TREE_TYPE (t);
575 if (!type)
576 return false;
577 else if (TYPE_PTRMEMFUNC_P (type))
578 return (TREE_CODE (t) == CONSTRUCTOR
579 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
580 else if (TYPE_PTRDATAMEM_P (type))
581 return integer_all_onesp (t);
582 else
583 return false;
584 }
585
586 /* Returns nonzero if PARMLIST consists of only default parms,
587 ellipsis, and/or undeduced parameter packs. */
588
589 bool
590 sufficient_parms_p (const_tree parmlist)
591 {
592 for (; parmlist && parmlist != void_list_node;
593 parmlist = TREE_CHAIN (parmlist))
594 if (!TREE_PURPOSE (parmlist)
595 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
596 return false;
597 return true;
598 }
599
600 /* Allocate N bytes of memory from the conversion obstack. The memory
601 is zeroed before being returned. */
602
603 static void *
604 conversion_obstack_alloc (size_t n)
605 {
606 void *p;
607 if (!conversion_obstack_initialized)
608 {
609 gcc_obstack_init (&conversion_obstack);
610 conversion_obstack_initialized = true;
611 }
612 p = obstack_alloc (&conversion_obstack, n);
613 memset (p, 0, n);
614 return p;
615 }
616
617 /* Allocate rejection reasons. */
618
619 static struct rejection_reason *
620 alloc_rejection (enum rejection_reason_code code)
621 {
622 struct rejection_reason *p;
623 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
624 p->code = code;
625 return p;
626 }
627
628 static struct rejection_reason *
629 arity_rejection (tree first_arg, int expected, int actual)
630 {
631 struct rejection_reason *r = alloc_rejection (rr_arity);
632 int adjust = first_arg != NULL_TREE;
633 r->u.arity.expected = expected - adjust;
634 r->u.arity.actual = actual - adjust;
635 return r;
636 }
637
638 static struct rejection_reason *
639 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
640 {
641 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
642 int adjust = first_arg != NULL_TREE;
643 r->u.conversion.n_arg = n_arg - adjust;
644 r->u.conversion.from_type = from;
645 r->u.conversion.to_type = to;
646 return r;
647 }
648
649 static struct rejection_reason *
650 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
651 {
652 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
653 int adjust = first_arg != NULL_TREE;
654 r->u.bad_conversion.n_arg = n_arg - adjust;
655 r->u.bad_conversion.from_type = from;
656 r->u.bad_conversion.to_type = to;
657 return r;
658 }
659
660 static struct rejection_reason *
661 explicit_conversion_rejection (tree from, tree to)
662 {
663 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
664 r->u.conversion.n_arg = 0;
665 r->u.conversion.from_type = from;
666 r->u.conversion.to_type = to;
667 return r;
668 }
669
670 static struct rejection_reason *
671 template_conversion_rejection (tree from, tree to)
672 {
673 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
674 r->u.conversion.n_arg = 0;
675 r->u.conversion.from_type = from;
676 r->u.conversion.to_type = to;
677 return r;
678 }
679
680 static struct rejection_reason *
681 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
682 const tree *args, unsigned int nargs,
683 tree return_type, unification_kind_t strict,
684 int flags)
685 {
686 size_t args_n_bytes = sizeof (*args) * nargs;
687 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
688 struct rejection_reason *r = alloc_rejection (rr_template_unification);
689 r->u.template_unification.tmpl = tmpl;
690 r->u.template_unification.explicit_targs = explicit_targs;
691 r->u.template_unification.targs = targs;
692 /* Copy args to our own storage. */
693 memcpy (args1, args, args_n_bytes);
694 r->u.template_unification.args = args1;
695 r->u.template_unification.nargs = nargs;
696 r->u.template_unification.return_type = return_type;
697 r->u.template_unification.strict = strict;
698 r->u.template_unification.flags = flags;
699 return r;
700 }
701
702 static struct rejection_reason *
703 template_unification_error_rejection (void)
704 {
705 return alloc_rejection (rr_template_unification);
706 }
707
708 static struct rejection_reason *
709 template_instantiation_rejection (tree tmpl, tree targs)
710 {
711 struct rejection_reason *r = alloc_rejection (rr_template_instantiation);
712 r->u.template_instantiation.tmpl = tmpl;
713 r->u.template_instantiation.targs = targs;
714 return r;
715 }
716
717 static struct rejection_reason *
718 invalid_copy_with_fn_template_rejection (void)
719 {
720 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
721 return r;
722 }
723
724 /* Dynamically allocate a conversion. */
725
726 static conversion *
727 alloc_conversion (conversion_kind kind)
728 {
729 conversion *c;
730 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
731 c->kind = kind;
732 return c;
733 }
734
735 #ifdef ENABLE_CHECKING
736
737 /* Make sure that all memory on the conversion obstack has been
738 freed. */
739
740 void
741 validate_conversion_obstack (void)
742 {
743 if (conversion_obstack_initialized)
744 gcc_assert ((obstack_next_free (&conversion_obstack)
745 == obstack_base (&conversion_obstack)));
746 }
747
748 #endif /* ENABLE_CHECKING */
749
750 /* Dynamically allocate an array of N conversions. */
751
752 static conversion **
753 alloc_conversions (size_t n)
754 {
755 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
756 }
757
758 static conversion *
759 build_conv (conversion_kind code, tree type, conversion *from)
760 {
761 conversion *t;
762 conversion_rank rank = CONVERSION_RANK (from);
763
764 /* Note that the caller is responsible for filling in t->cand for
765 user-defined conversions. */
766 t = alloc_conversion (code);
767 t->type = type;
768 t->u.next = from;
769
770 switch (code)
771 {
772 case ck_ptr:
773 case ck_pmem:
774 case ck_base:
775 case ck_std:
776 if (rank < cr_std)
777 rank = cr_std;
778 break;
779
780 case ck_qual:
781 if (rank < cr_exact)
782 rank = cr_exact;
783 break;
784
785 default:
786 break;
787 }
788 t->rank = rank;
789 t->user_conv_p = (code == ck_user || from->user_conv_p);
790 t->bad_p = from->bad_p;
791 t->base_p = false;
792 return t;
793 }
794
795 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
796 specialization of std::initializer_list<T>, if such a conversion is
797 possible. */
798
799 static conversion *
800 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
801 {
802 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
803 unsigned len = CONSTRUCTOR_NELTS (ctor);
804 conversion **subconvs = alloc_conversions (len);
805 conversion *t;
806 unsigned i;
807 tree val;
808
809 /* Within a list-initialization we can have more user-defined
810 conversions. */
811 flags &= ~LOOKUP_NO_CONVERSION;
812 /* But no narrowing conversions. */
813 flags |= LOOKUP_NO_NARROWING;
814
815 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
816 {
817 conversion *sub
818 = implicit_conversion (elttype, TREE_TYPE (val), val,
819 false, flags, complain);
820 if (sub == NULL)
821 return NULL;
822
823 subconvs[i] = sub;
824 }
825
826 t = alloc_conversion (ck_list);
827 t->type = type;
828 t->u.list = subconvs;
829 t->rank = cr_exact;
830
831 for (i = 0; i < len; ++i)
832 {
833 conversion *sub = subconvs[i];
834 if (sub->rank > t->rank)
835 t->rank = sub->rank;
836 if (sub->user_conv_p)
837 t->user_conv_p = true;
838 if (sub->bad_p)
839 t->bad_p = true;
840 }
841
842 return t;
843 }
844
845 /* Return the next conversion of the conversion chain (if applicable),
846 or NULL otherwise. Please use this function instead of directly
847 accessing fields of struct conversion. */
848
849 static conversion *
850 next_conversion (conversion *conv)
851 {
852 if (conv == NULL
853 || conv->kind == ck_identity
854 || conv->kind == ck_ambig
855 || conv->kind == ck_list)
856 return NULL;
857 return conv->u.next;
858 }
859
860 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
861 is a valid aggregate initializer for array type ATYPE. */
862
863 static bool
864 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
865 {
866 unsigned i;
867 tree elttype = TREE_TYPE (atype);
868 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
869 {
870 tree val = CONSTRUCTOR_ELT (ctor, i)->value;
871 bool ok;
872 if (TREE_CODE (elttype) == ARRAY_TYPE
873 && TREE_CODE (val) == CONSTRUCTOR)
874 ok = can_convert_array (elttype, val, flags, complain);
875 else
876 ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
877 complain);
878 if (!ok)
879 return false;
880 }
881 return true;
882 }
883
884 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
885 aggregate class, if such a conversion is possible. */
886
887 static conversion *
888 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
889 {
890 unsigned HOST_WIDE_INT i = 0;
891 conversion *c;
892 tree field = next_initializable_field (TYPE_FIELDS (type));
893 tree empty_ctor = NULL_TREE;
894
895 ctor = reshape_init (type, ctor, tf_none);
896 if (ctor == error_mark_node)
897 return NULL;
898
899 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
900 {
901 tree ftype = TREE_TYPE (field);
902 tree val;
903 bool ok;
904
905 if (i < CONSTRUCTOR_NELTS (ctor))
906 val = CONSTRUCTOR_ELT (ctor, i)->value;
907 else
908 {
909 if (empty_ctor == NULL_TREE)
910 empty_ctor = build_constructor (init_list_type_node, NULL);
911 val = empty_ctor;
912 }
913 ++i;
914
915 if (TREE_CODE (ftype) == ARRAY_TYPE
916 && TREE_CODE (val) == CONSTRUCTOR)
917 ok = can_convert_array (ftype, val, flags, complain);
918 else
919 ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
920 complain);
921
922 if (!ok)
923 return NULL;
924
925 if (TREE_CODE (type) == UNION_TYPE)
926 break;
927 }
928
929 if (i < CONSTRUCTOR_NELTS (ctor))
930 return NULL;
931
932 c = alloc_conversion (ck_aggr);
933 c->type = type;
934 c->rank = cr_exact;
935 c->user_conv_p = true;
936 c->u.next = NULL;
937 return c;
938 }
939
940 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
941 array type, if such a conversion is possible. */
942
943 static conversion *
944 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
945 {
946 conversion *c;
947 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
948 tree elttype = TREE_TYPE (type);
949 unsigned i;
950 tree val;
951 bool bad = false;
952 bool user = false;
953 enum conversion_rank rank = cr_exact;
954
955 if (TYPE_DOMAIN (type))
956 {
957 unsigned HOST_WIDE_INT alen = tree_low_cst (array_type_nelts_top (type), 1);
958 if (alen < len)
959 return NULL;
960 }
961
962 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
963 {
964 conversion *sub
965 = implicit_conversion (elttype, TREE_TYPE (val), val,
966 false, flags, complain);
967 if (sub == NULL)
968 return NULL;
969
970 if (sub->rank > rank)
971 rank = sub->rank;
972 if (sub->user_conv_p)
973 user = true;
974 if (sub->bad_p)
975 bad = true;
976 }
977
978 c = alloc_conversion (ck_aggr);
979 c->type = type;
980 c->rank = rank;
981 c->user_conv_p = user;
982 c->bad_p = bad;
983 c->u.next = NULL;
984 return c;
985 }
986
987 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
988 complex type, if such a conversion is possible. */
989
990 static conversion *
991 build_complex_conv (tree type, tree ctor, int flags,
992 tsubst_flags_t complain)
993 {
994 conversion *c;
995 unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
996 tree elttype = TREE_TYPE (type);
997 unsigned i;
998 tree val;
999 bool bad = false;
1000 bool user = false;
1001 enum conversion_rank rank = cr_exact;
1002
1003 if (len != 2)
1004 return NULL;
1005
1006 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1007 {
1008 conversion *sub
1009 = implicit_conversion (elttype, TREE_TYPE (val), val,
1010 false, flags, complain);
1011 if (sub == NULL)
1012 return NULL;
1013
1014 if (sub->rank > rank)
1015 rank = sub->rank;
1016 if (sub->user_conv_p)
1017 user = true;
1018 if (sub->bad_p)
1019 bad = true;
1020 }
1021
1022 c = alloc_conversion (ck_aggr);
1023 c->type = type;
1024 c->rank = rank;
1025 c->user_conv_p = user;
1026 c->bad_p = bad;
1027 c->u.next = NULL;
1028 return c;
1029 }
1030
1031 /* Build a representation of the identity conversion from EXPR to
1032 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
1033
1034 static conversion *
1035 build_identity_conv (tree type, tree expr)
1036 {
1037 conversion *c;
1038
1039 c = alloc_conversion (ck_identity);
1040 c->type = type;
1041 c->u.expr = expr;
1042
1043 return c;
1044 }
1045
1046 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1047 were multiple user-defined conversions to accomplish the job.
1048 Build a conversion that indicates that ambiguity. */
1049
1050 static conversion *
1051 build_ambiguous_conv (tree type, tree expr)
1052 {
1053 conversion *c;
1054
1055 c = alloc_conversion (ck_ambig);
1056 c->type = type;
1057 c->u.expr = expr;
1058
1059 return c;
1060 }
1061
1062 tree
1063 strip_top_quals (tree t)
1064 {
1065 if (TREE_CODE (t) == ARRAY_TYPE)
1066 return t;
1067 return cp_build_qualified_type (t, 0);
1068 }
1069
1070 /* Returns the standard conversion path (see [conv]) from type FROM to type
1071 TO, if any. For proper handling of null pointer constants, you must
1072 also pass the expression EXPR to convert from. If C_CAST_P is true,
1073 this conversion is coming from a C-style cast. */
1074
1075 static conversion *
1076 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1077 int flags)
1078 {
1079 enum tree_code fcode, tcode;
1080 conversion *conv;
1081 bool fromref = false;
1082 tree qualified_to;
1083
1084 to = non_reference (to);
1085 if (TREE_CODE (from) == REFERENCE_TYPE)
1086 {
1087 fromref = true;
1088 from = TREE_TYPE (from);
1089 }
1090 qualified_to = to;
1091 to = strip_top_quals (to);
1092 from = strip_top_quals (from);
1093
1094 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1095 && expr && type_unknown_p (expr))
1096 {
1097 tsubst_flags_t tflags = tf_conv;
1098 if (!(flags & LOOKUP_PROTECT))
1099 tflags |= tf_no_access_control;
1100 expr = instantiate_type (to, expr, tflags);
1101 if (expr == error_mark_node)
1102 return NULL;
1103 from = TREE_TYPE (expr);
1104 }
1105
1106 fcode = TREE_CODE (from);
1107 tcode = TREE_CODE (to);
1108
1109 conv = build_identity_conv (from, expr);
1110 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1111 {
1112 from = type_decays_to (from);
1113 fcode = TREE_CODE (from);
1114 conv = build_conv (ck_lvalue, from, conv);
1115 }
1116 else if (fromref || (expr && lvalue_p (expr)))
1117 {
1118 if (expr)
1119 {
1120 tree bitfield_type;
1121 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1122 if (bitfield_type)
1123 {
1124 from = strip_top_quals (bitfield_type);
1125 fcode = TREE_CODE (from);
1126 }
1127 }
1128 conv = build_conv (ck_rvalue, from, conv);
1129 if (flags & LOOKUP_PREFER_RVALUE)
1130 conv->rvaluedness_matches_p = true;
1131 }
1132
1133 /* Allow conversion between `__complex__' data types. */
1134 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1135 {
1136 /* The standard conversion sequence to convert FROM to TO is
1137 the standard conversion sequence to perform componentwise
1138 conversion. */
1139 conversion *part_conv = standard_conversion
1140 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
1141
1142 if (part_conv)
1143 {
1144 conv = build_conv (part_conv->kind, to, conv);
1145 conv->rank = part_conv->rank;
1146 }
1147 else
1148 conv = NULL;
1149
1150 return conv;
1151 }
1152
1153 if (same_type_p (from, to))
1154 {
1155 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1156 conv->type = qualified_to;
1157 return conv;
1158 }
1159
1160 /* [conv.ptr]
1161 A null pointer constant can be converted to a pointer type; ... A
1162 null pointer constant of integral type can be converted to an
1163 rvalue of type std::nullptr_t. */
1164 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1165 || NULLPTR_TYPE_P (to))
1166 && expr && null_ptr_cst_p (expr))
1167 conv = build_conv (ck_std, to, conv);
1168 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1169 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1170 {
1171 /* For backwards brain damage compatibility, allow interconversion of
1172 pointers and integers with a pedwarn. */
1173 conv = build_conv (ck_std, to, conv);
1174 conv->bad_p = true;
1175 }
1176 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1177 {
1178 /* For backwards brain damage compatibility, allow interconversion of
1179 enums and integers with a pedwarn. */
1180 conv = build_conv (ck_std, to, conv);
1181 conv->bad_p = true;
1182 }
1183 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1184 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1185 {
1186 tree to_pointee;
1187 tree from_pointee;
1188
1189 if (tcode == POINTER_TYPE
1190 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
1191 TREE_TYPE (to)))
1192 ;
1193 else if (VOID_TYPE_P (TREE_TYPE (to))
1194 && !TYPE_PTRDATAMEM_P (from)
1195 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
1196 {
1197 tree nfrom = TREE_TYPE (from);
1198 from = build_pointer_type
1199 (cp_build_qualified_type (void_type_node,
1200 cp_type_quals (nfrom)));
1201 conv = build_conv (ck_ptr, from, conv);
1202 }
1203 else if (TYPE_PTRDATAMEM_P (from))
1204 {
1205 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1206 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1207
1208 if (DERIVED_FROM_P (fbase, tbase)
1209 && (same_type_ignoring_top_level_qualifiers_p
1210 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
1211 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
1212 {
1213 from = build_ptrmem_type (tbase,
1214 TYPE_PTRMEM_POINTED_TO_TYPE (from));
1215 conv = build_conv (ck_pmem, from, conv);
1216 }
1217 else if (!same_type_p (fbase, tbase))
1218 return NULL;
1219 }
1220 else if (CLASS_TYPE_P (TREE_TYPE (from))
1221 && CLASS_TYPE_P (TREE_TYPE (to))
1222 /* [conv.ptr]
1223
1224 An rvalue of type "pointer to cv D," where D is a
1225 class type, can be converted to an rvalue of type
1226 "pointer to cv B," where B is a base class (clause
1227 _class.derived_) of D. If B is an inaccessible
1228 (clause _class.access_) or ambiguous
1229 (_class.member.lookup_) base class of D, a program
1230 that necessitates this conversion is ill-formed.
1231 Therefore, we use DERIVED_FROM_P, and do not check
1232 access or uniqueness. */
1233 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
1234 {
1235 from =
1236 cp_build_qualified_type (TREE_TYPE (to),
1237 cp_type_quals (TREE_TYPE (from)));
1238 from = build_pointer_type (from);
1239 conv = build_conv (ck_ptr, from, conv);
1240 conv->base_p = true;
1241 }
1242
1243 if (tcode == POINTER_TYPE)
1244 {
1245 to_pointee = TREE_TYPE (to);
1246 from_pointee = TREE_TYPE (from);
1247 }
1248 else
1249 {
1250 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1251 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1252 }
1253
1254 if (same_type_p (from, to))
1255 /* OK */;
1256 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1257 /* In a C-style cast, we ignore CV-qualification because we
1258 are allowed to perform a static_cast followed by a
1259 const_cast. */
1260 conv = build_conv (ck_qual, to, conv);
1261 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1262 conv = build_conv (ck_qual, to, conv);
1263 else if (expr && string_conv_p (to, expr, 0))
1264 /* converting from string constant to char *. */
1265 conv = build_conv (ck_qual, to, conv);
1266 /* Allow conversions among compatible ObjC pointer types (base
1267 conversions have been already handled above). */
1268 else if (c_dialect_objc ()
1269 && objc_compare_types (to, from, -4, NULL_TREE))
1270 conv = build_conv (ck_ptr, to, conv);
1271 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1272 {
1273 conv = build_conv (ck_ptr, to, conv);
1274 conv->bad_p = true;
1275 }
1276 else
1277 return NULL;
1278
1279 from = to;
1280 }
1281 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1282 {
1283 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1284 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1285 tree fbase = class_of_this_parm (fromfn);
1286 tree tbase = class_of_this_parm (tofn);
1287
1288 if (!DERIVED_FROM_P (fbase, tbase)
1289 || !same_type_p (static_fn_type (fromfn),
1290 static_fn_type (tofn)))
1291 return NULL;
1292
1293 from = build_memfn_type (fromfn, tbase, cp_type_quals (tbase));
1294 from = build_ptrmemfunc_type (build_pointer_type (from));
1295 conv = build_conv (ck_pmem, from, conv);
1296 conv->base_p = true;
1297 }
1298 else if (tcode == BOOLEAN_TYPE)
1299 {
1300 /* [conv.bool]
1301
1302 An rvalue of arithmetic, unscoped enumeration, pointer, or
1303 pointer to member type can be converted to an rvalue of type
1304 bool. ... An rvalue of type std::nullptr_t can be converted
1305 to an rvalue of type bool; */
1306 if (ARITHMETIC_TYPE_P (from)
1307 || UNSCOPED_ENUM_P (from)
1308 || fcode == POINTER_TYPE
1309 || TYPE_PTRMEM_P (from)
1310 || NULLPTR_TYPE_P (from))
1311 {
1312 conv = build_conv (ck_std, to, conv);
1313 if (fcode == POINTER_TYPE
1314 || TYPE_PTRDATAMEM_P (from)
1315 || (TYPE_PTRMEMFUNC_P (from)
1316 && conv->rank < cr_pbool)
1317 || NULLPTR_TYPE_P (from))
1318 conv->rank = cr_pbool;
1319 return conv;
1320 }
1321
1322 return NULL;
1323 }
1324 /* We don't check for ENUMERAL_TYPE here because there are no standard
1325 conversions to enum type. */
1326 /* As an extension, allow conversion to complex type. */
1327 else if (ARITHMETIC_TYPE_P (to))
1328 {
1329 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE)
1330 || SCOPED_ENUM_P (from))
1331 return NULL;
1332 conv = build_conv (ck_std, to, conv);
1333
1334 /* Give this a better rank if it's a promotion. */
1335 if (same_type_p (to, type_promotes_to (from))
1336 && next_conversion (conv)->rank <= cr_promotion)
1337 conv->rank = cr_promotion;
1338 }
1339 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1340 && vector_types_convertible_p (from, to, false))
1341 return build_conv (ck_std, to, conv);
1342 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1343 && is_properly_derived_from (from, to))
1344 {
1345 if (conv->kind == ck_rvalue)
1346 conv = next_conversion (conv);
1347 conv = build_conv (ck_base, to, conv);
1348 /* The derived-to-base conversion indicates the initialization
1349 of a parameter with base type from an object of a derived
1350 type. A temporary object is created to hold the result of
1351 the conversion unless we're binding directly to a reference. */
1352 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1353 }
1354 else
1355 return NULL;
1356
1357 if (flags & LOOKUP_NO_NARROWING)
1358 conv->check_narrowing = true;
1359
1360 return conv;
1361 }
1362
1363 /* Returns nonzero if T1 is reference-related to T2. */
1364
1365 bool
1366 reference_related_p (tree t1, tree t2)
1367 {
1368 if (t1 == error_mark_node || t2 == error_mark_node)
1369 return false;
1370
1371 t1 = TYPE_MAIN_VARIANT (t1);
1372 t2 = TYPE_MAIN_VARIANT (t2);
1373
1374 /* [dcl.init.ref]
1375
1376 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1377 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1378 of T2. */
1379 return (same_type_p (t1, t2)
1380 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1381 && DERIVED_FROM_P (t1, t2)));
1382 }
1383
1384 /* Returns nonzero if T1 is reference-compatible with T2. */
1385
1386 static bool
1387 reference_compatible_p (tree t1, tree t2)
1388 {
1389 /* [dcl.init.ref]
1390
1391 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
1392 reference-related to T2 and cv1 is the same cv-qualification as,
1393 or greater cv-qualification than, cv2. */
1394 return (reference_related_p (t1, t2)
1395 && at_least_as_qualified_p (t1, t2));
1396 }
1397
1398 /* A reference of the indicated TYPE is being bound directly to the
1399 expression represented by the implicit conversion sequence CONV.
1400 Return a conversion sequence for this binding. */
1401
1402 static conversion *
1403 direct_reference_binding (tree type, conversion *conv)
1404 {
1405 tree t;
1406
1407 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1408 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
1409
1410 t = TREE_TYPE (type);
1411
1412 /* [over.ics.rank]
1413
1414 When a parameter of reference type binds directly
1415 (_dcl.init.ref_) to an argument expression, the implicit
1416 conversion sequence is the identity conversion, unless the
1417 argument expression has a type that is a derived class of the
1418 parameter type, in which case the implicit conversion sequence is
1419 a derived-to-base Conversion.
1420
1421 If the parameter binds directly to the result of applying a
1422 conversion function to the argument expression, the implicit
1423 conversion sequence is a user-defined conversion sequence
1424 (_over.ics.user_), with the second standard conversion sequence
1425 either an identity conversion or, if the conversion function
1426 returns an entity of a type that is a derived class of the
1427 parameter type, a derived-to-base conversion. */
1428 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
1429 {
1430 /* Represent the derived-to-base conversion. */
1431 conv = build_conv (ck_base, t, conv);
1432 /* We will actually be binding to the base-class subobject in
1433 the derived class, so we mark this conversion appropriately.
1434 That way, convert_like knows not to generate a temporary. */
1435 conv->need_temporary_p = false;
1436 }
1437 return build_conv (ck_ref_bind, type, conv);
1438 }
1439
1440 /* Returns the conversion path from type FROM to reference type TO for
1441 purposes of reference binding. For lvalue binding, either pass a
1442 reference type to FROM or an lvalue expression to EXPR. If the
1443 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1444 the conversion returned. If C_CAST_P is true, this
1445 conversion is coming from a C-style cast. */
1446
1447 static conversion *
1448 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1449 tsubst_flags_t complain)
1450 {
1451 conversion *conv = NULL;
1452 tree to = TREE_TYPE (rto);
1453 tree from = rfrom;
1454 tree tfrom;
1455 bool related_p;
1456 bool compatible_p;
1457 cp_lvalue_kind gl_kind;
1458 bool is_lvalue;
1459
1460 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1461 {
1462 expr = instantiate_type (to, expr, tf_none);
1463 if (expr == error_mark_node)
1464 return NULL;
1465 from = TREE_TYPE (expr);
1466 }
1467
1468 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1469 {
1470 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1471 conv = implicit_conversion (to, from, expr, c_cast_p,
1472 flags, complain);
1473 if (!CLASS_TYPE_P (to)
1474 && CONSTRUCTOR_NELTS (expr) == 1)
1475 {
1476 expr = CONSTRUCTOR_ELT (expr, 0)->value;
1477 if (error_operand_p (expr))
1478 return NULL;
1479 from = TREE_TYPE (expr);
1480 }
1481 }
1482
1483 if (TREE_CODE (from) == REFERENCE_TYPE)
1484 {
1485 from = TREE_TYPE (from);
1486 if (!TYPE_REF_IS_RVALUE (rfrom)
1487 || TREE_CODE (from) == FUNCTION_TYPE)
1488 gl_kind = clk_ordinary;
1489 else
1490 gl_kind = clk_rvalueref;
1491 }
1492 else if (expr)
1493 {
1494 gl_kind = lvalue_kind (expr);
1495 if (gl_kind & clk_class)
1496 /* A class prvalue is not a glvalue. */
1497 gl_kind = clk_none;
1498 }
1499 else
1500 gl_kind = clk_none;
1501 is_lvalue = gl_kind && !(gl_kind & clk_rvalueref);
1502
1503 tfrom = from;
1504 if ((gl_kind & clk_bitfield) != 0)
1505 tfrom = unlowered_expr_type (expr);
1506
1507 /* Figure out whether or not the types are reference-related and
1508 reference compatible. We have do do this after stripping
1509 references from FROM. */
1510 related_p = reference_related_p (to, tfrom);
1511 /* If this is a C cast, first convert to an appropriately qualified
1512 type, so that we can later do a const_cast to the desired type. */
1513 if (related_p && c_cast_p
1514 && !at_least_as_qualified_p (to, tfrom))
1515 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1516 compatible_p = reference_compatible_p (to, tfrom);
1517
1518 /* Directly bind reference when target expression's type is compatible with
1519 the reference and expression is an lvalue. In DR391, the wording in
1520 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1521 const and rvalue references to rvalues of compatible class type.
1522 We should also do direct bindings for non-class xvalues. */
1523 if (compatible_p
1524 && (is_lvalue
1525 || (((CP_TYPE_CONST_NON_VOLATILE_P (to)
1526 && !(flags & LOOKUP_NO_RVAL_BIND))
1527 || TYPE_REF_IS_RVALUE (rto))
1528 && (gl_kind
1529 || (!(flags & LOOKUP_NO_TEMP_BIND)
1530 && (CLASS_TYPE_P (from)
1531 || TREE_CODE (from) == ARRAY_TYPE))))))
1532 {
1533 /* [dcl.init.ref]
1534
1535 If the initializer expression
1536
1537 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1538 is reference-compatible with "cv2 T2,"
1539
1540 the reference is bound directly to the initializer expression
1541 lvalue.
1542
1543 [...]
1544 If the initializer expression is an rvalue, with T2 a class type,
1545 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1546 is bound to the object represented by the rvalue or to a sub-object
1547 within that object. */
1548
1549 conv = build_identity_conv (tfrom, expr);
1550 conv = direct_reference_binding (rto, conv);
1551
1552 if (flags & LOOKUP_PREFER_RVALUE)
1553 /* The top-level caller requested that we pretend that the lvalue
1554 be treated as an rvalue. */
1555 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1556 else if (TREE_CODE (rfrom) == REFERENCE_TYPE)
1557 /* Handle rvalue reference to function properly. */
1558 conv->rvaluedness_matches_p
1559 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1560 else
1561 conv->rvaluedness_matches_p
1562 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1563
1564 if ((gl_kind & clk_bitfield) != 0
1565 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1566 /* For the purposes of overload resolution, we ignore the fact
1567 this expression is a bitfield or packed field. (In particular,
1568 [over.ics.ref] says specifically that a function with a
1569 non-const reference parameter is viable even if the
1570 argument is a bitfield.)
1571
1572 However, when we actually call the function we must create
1573 a temporary to which to bind the reference. If the
1574 reference is volatile, or isn't const, then we cannot make
1575 a temporary, so we just issue an error when the conversion
1576 actually occurs. */
1577 conv->need_temporary_p = true;
1578
1579 /* Don't allow binding of lvalues (other than function lvalues) to
1580 rvalue references. */
1581 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1582 && TREE_CODE (to) != FUNCTION_TYPE
1583 && !(flags & LOOKUP_PREFER_RVALUE))
1584 conv->bad_p = true;
1585
1586 return conv;
1587 }
1588 /* [class.conv.fct] A conversion function is never used to convert a
1589 (possibly cv-qualified) object to the (possibly cv-qualified) same
1590 object type (or a reference to it), to a (possibly cv-qualified) base
1591 class of that type (or a reference to it).... */
1592 else if (CLASS_TYPE_P (from) && !related_p
1593 && !(flags & LOOKUP_NO_CONVERSION))
1594 {
1595 /* [dcl.init.ref]
1596
1597 If the initializer expression
1598
1599 -- has a class type (i.e., T2 is a class type) can be
1600 implicitly converted to an lvalue of type "cv3 T3," where
1601 "cv1 T1" is reference-compatible with "cv3 T3". (this
1602 conversion is selected by enumerating the applicable
1603 conversion functions (_over.match.ref_) and choosing the
1604 best one through overload resolution. (_over.match_).
1605
1606 the reference is bound to the lvalue result of the conversion
1607 in the second case. */
1608 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1609 complain);
1610 if (cand)
1611 return cand->second_conv;
1612 }
1613
1614 /* From this point on, we conceptually need temporaries, even if we
1615 elide them. Only the cases above are "direct bindings". */
1616 if (flags & LOOKUP_NO_TEMP_BIND)
1617 return NULL;
1618
1619 /* [over.ics.rank]
1620
1621 When a parameter of reference type is not bound directly to an
1622 argument expression, the conversion sequence is the one required
1623 to convert the argument expression to the underlying type of the
1624 reference according to _over.best.ics_. Conceptually, this
1625 conversion sequence corresponds to copy-initializing a temporary
1626 of the underlying type with the argument expression. Any
1627 difference in top-level cv-qualification is subsumed by the
1628 initialization itself and does not constitute a conversion. */
1629
1630 /* [dcl.init.ref]
1631
1632 Otherwise, the reference shall be to a non-volatile const type.
1633
1634 Under C++0x, [8.5.3/5 dcl.init.ref] it may also be an rvalue reference */
1635 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1636 return NULL;
1637
1638 /* [dcl.init.ref]
1639
1640 Otherwise, a temporary of type "cv1 T1" is created and
1641 initialized from the initializer expression using the rules for a
1642 non-reference copy initialization. If T1 is reference-related to
1643 T2, cv1 must be the same cv-qualification as, or greater
1644 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1645 if (related_p && !at_least_as_qualified_p (to, from))
1646 return NULL;
1647
1648 /* We're generating a temporary now, but don't bind any more in the
1649 conversion (specifically, don't slice the temporary returned by a
1650 conversion operator). */
1651 flags |= LOOKUP_NO_TEMP_BIND;
1652
1653 /* Core issue 899: When [copy-]initializing a temporary to be bound
1654 to the first parameter of a copy constructor (12.8) called with
1655 a single argument in the context of direct-initialization,
1656 explicit conversion functions are also considered.
1657
1658 So don't set LOOKUP_ONLYCONVERTING in that case. */
1659 if (!(flags & LOOKUP_COPY_PARM))
1660 flags |= LOOKUP_ONLYCONVERTING;
1661
1662 if (!conv)
1663 conv = implicit_conversion (to, from, expr, c_cast_p,
1664 flags, complain);
1665 if (!conv)
1666 return NULL;
1667
1668 conv = build_conv (ck_ref_bind, rto, conv);
1669 /* This reference binding, unlike those above, requires the
1670 creation of a temporary. */
1671 conv->need_temporary_p = true;
1672 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1673
1674 return conv;
1675 }
1676
1677 /* Returns the implicit conversion sequence (see [over.ics]) from type
1678 FROM to type TO. The optional expression EXPR may affect the
1679 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1680 true, this conversion is coming from a C-style cast. */
1681
1682 static conversion *
1683 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1684 int flags, tsubst_flags_t complain)
1685 {
1686 conversion *conv;
1687
1688 if (from == error_mark_node || to == error_mark_node
1689 || expr == error_mark_node)
1690 return NULL;
1691
1692 /* Other flags only apply to the primary function in overload
1693 resolution, or after we've chosen one. */
1694 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1695 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1696 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT);
1697
1698 /* FIXME: actually we don't want warnings either, but we can't just
1699 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1700 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1701 We really ought not to issue that warning until we've committed
1702 to that conversion. */
1703 complain &= ~tf_error;
1704
1705 if (TREE_CODE (to) == REFERENCE_TYPE)
1706 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1707 else
1708 conv = standard_conversion (to, from, expr, c_cast_p, flags);
1709
1710 if (conv)
1711 return conv;
1712
1713 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1714 {
1715 if (is_std_init_list (to))
1716 return build_list_conv (to, expr, flags, complain);
1717
1718 /* As an extension, allow list-initialization of _Complex. */
1719 if (TREE_CODE (to) == COMPLEX_TYPE)
1720 {
1721 conv = build_complex_conv (to, expr, flags, complain);
1722 if (conv)
1723 return conv;
1724 }
1725
1726 /* Allow conversion from an initializer-list with one element to a
1727 scalar type. */
1728 if (SCALAR_TYPE_P (to))
1729 {
1730 int nelts = CONSTRUCTOR_NELTS (expr);
1731 tree elt;
1732
1733 if (nelts == 0)
1734 elt = build_value_init (to, tf_none);
1735 else if (nelts == 1)
1736 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1737 else
1738 elt = error_mark_node;
1739
1740 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1741 c_cast_p, flags, complain);
1742 if (conv)
1743 {
1744 conv->check_narrowing = true;
1745 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1746 /* Too many levels of braces, i.e. '{{1}}'. */
1747 conv->bad_p = true;
1748 return conv;
1749 }
1750 }
1751 else if (TREE_CODE (to) == ARRAY_TYPE)
1752 return build_array_conv (to, expr, flags, complain);
1753 }
1754
1755 if (expr != NULL_TREE
1756 && (MAYBE_CLASS_TYPE_P (from)
1757 || MAYBE_CLASS_TYPE_P (to))
1758 && (flags & LOOKUP_NO_CONVERSION) == 0)
1759 {
1760 struct z_candidate *cand;
1761
1762 if (CLASS_TYPE_P (to)
1763 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1764 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1765 return build_aggr_conv (to, expr, flags, complain);
1766
1767 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1768 if (cand)
1769 conv = cand->second_conv;
1770
1771 /* We used to try to bind a reference to a temporary here, but that
1772 is now handled after the recursive call to this function at the end
1773 of reference_binding. */
1774 return conv;
1775 }
1776
1777 return NULL;
1778 }
1779
1780 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1781 functions. ARGS will not be changed until a single candidate is
1782 selected. */
1783
1784 static struct z_candidate *
1785 add_candidate (struct z_candidate **candidates,
1786 tree fn, tree first_arg, const VEC(tree,gc) *args,
1787 size_t num_convs, conversion **convs,
1788 tree access_path, tree conversion_path,
1789 int viable, struct rejection_reason *reason)
1790 {
1791 struct z_candidate *cand = (struct z_candidate *)
1792 conversion_obstack_alloc (sizeof (struct z_candidate));
1793
1794 cand->fn = fn;
1795 cand->first_arg = first_arg;
1796 cand->args = args;
1797 cand->convs = convs;
1798 cand->num_convs = num_convs;
1799 cand->access_path = access_path;
1800 cand->conversion_path = conversion_path;
1801 cand->viable = viable;
1802 cand->reason = reason;
1803 cand->next = *candidates;
1804 *candidates = cand;
1805
1806 return cand;
1807 }
1808
1809 /* Return the number of remaining arguments in the parameter list
1810 beginning with ARG. */
1811
1812 static int
1813 remaining_arguments (tree arg)
1814 {
1815 int n;
1816
1817 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1818 arg = TREE_CHAIN (arg))
1819 n++;
1820
1821 return n;
1822 }
1823
1824 /* Create an overload candidate for the function or method FN called
1825 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1826 FLAGS is passed on to implicit_conversion.
1827
1828 This does not change ARGS.
1829
1830 CTYPE, if non-NULL, is the type we want to pretend this function
1831 comes from for purposes of overload resolution. */
1832
1833 static struct z_candidate *
1834 add_function_candidate (struct z_candidate **candidates,
1835 tree fn, tree ctype, tree first_arg,
1836 const VEC(tree,gc) *args, tree access_path,
1837 tree conversion_path, int flags,
1838 tsubst_flags_t complain)
1839 {
1840 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1841 int i, len;
1842 conversion **convs;
1843 tree parmnode;
1844 tree orig_first_arg = first_arg;
1845 int skip;
1846 int viable = 1;
1847 struct rejection_reason *reason = NULL;
1848
1849 /* At this point we should not see any functions which haven't been
1850 explicitly declared, except for friend functions which will have
1851 been found using argument dependent lookup. */
1852 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
1853
1854 /* The `this', `in_chrg' and VTT arguments to constructors are not
1855 considered in overload resolution. */
1856 if (DECL_CONSTRUCTOR_P (fn))
1857 {
1858 parmlist = skip_artificial_parms_for (fn, parmlist);
1859 skip = num_artificial_parms_for (fn);
1860 if (skip > 0 && first_arg != NULL_TREE)
1861 {
1862 --skip;
1863 first_arg = NULL_TREE;
1864 }
1865 }
1866 else
1867 skip = 0;
1868
1869 len = VEC_length (tree, args) - skip + (first_arg != NULL_TREE ? 1 : 0);
1870 convs = alloc_conversions (len);
1871
1872 /* 13.3.2 - Viable functions [over.match.viable]
1873 First, to be a viable function, a candidate function shall have enough
1874 parameters to agree in number with the arguments in the list.
1875
1876 We need to check this first; otherwise, checking the ICSes might cause
1877 us to produce an ill-formed template instantiation. */
1878
1879 parmnode = parmlist;
1880 for (i = 0; i < len; ++i)
1881 {
1882 if (parmnode == NULL_TREE || parmnode == void_list_node)
1883 break;
1884 parmnode = TREE_CHAIN (parmnode);
1885 }
1886
1887 if ((i < len && parmnode)
1888 || !sufficient_parms_p (parmnode))
1889 {
1890 int remaining = remaining_arguments (parmnode);
1891 viable = 0;
1892 reason = arity_rejection (first_arg, i + remaining, len);
1893 }
1894 /* When looking for a function from a subobject from an implicit
1895 copy/move constructor/operator=, don't consider anything that takes (a
1896 reference to) an unrelated type. See c++/44909 and core 1092. */
1897 else if (parmlist && (flags & LOOKUP_DEFAULTED))
1898 {
1899 if (DECL_CONSTRUCTOR_P (fn))
1900 i = 1;
1901 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
1902 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR)
1903 i = 2;
1904 else
1905 i = 0;
1906 if (i && len == i)
1907 {
1908 parmnode = chain_index (i-1, parmlist);
1909 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
1910 ctype))
1911 viable = 0;
1912 }
1913
1914 /* This only applies at the top level. */
1915 flags &= ~LOOKUP_DEFAULTED;
1916 }
1917
1918 if (! viable)
1919 goto out;
1920
1921 /* Second, for F to be a viable function, there shall exist for each
1922 argument an implicit conversion sequence that converts that argument
1923 to the corresponding parameter of F. */
1924
1925 parmnode = parmlist;
1926
1927 for (i = 0; i < len; ++i)
1928 {
1929 tree arg, argtype, to_type;
1930 conversion *t;
1931 int is_this;
1932
1933 if (parmnode == void_list_node)
1934 break;
1935
1936 if (i == 0 && first_arg != NULL_TREE)
1937 arg = first_arg;
1938 else
1939 arg = VEC_index (tree, args,
1940 i + skip - (first_arg != NULL_TREE ? 1 : 0));
1941 argtype = lvalue_type (arg);
1942
1943 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1944 && ! DECL_CONSTRUCTOR_P (fn));
1945
1946 if (parmnode)
1947 {
1948 tree parmtype = TREE_VALUE (parmnode);
1949 int lflags = flags;
1950
1951 parmnode = TREE_CHAIN (parmnode);
1952
1953 /* The type of the implicit object parameter ('this') for
1954 overload resolution is not always the same as for the
1955 function itself; conversion functions are considered to
1956 be members of the class being converted, and functions
1957 introduced by a using-declaration are considered to be
1958 members of the class that uses them.
1959
1960 Since build_over_call ignores the ICS for the `this'
1961 parameter, we can just change the parm type. */
1962 if (ctype && is_this)
1963 {
1964 parmtype = cp_build_qualified_type
1965 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
1966 parmtype = build_pointer_type (parmtype);
1967 }
1968
1969 /* Core issue 899: When [copy-]initializing a temporary to be bound
1970 to the first parameter of a copy constructor (12.8) called with
1971 a single argument in the context of direct-initialization,
1972 explicit conversion functions are also considered.
1973
1974 So set LOOKUP_COPY_PARM to let reference_binding know that
1975 it's being called in that context. We generalize the above
1976 to handle move constructors and template constructors as well;
1977 the standardese should soon be updated similarly. */
1978 if (ctype && i == 0 && (len-skip == 1)
1979 && DECL_CONSTRUCTOR_P (fn)
1980 && parmtype != error_mark_node
1981 && (same_type_ignoring_top_level_qualifiers_p
1982 (non_reference (parmtype), ctype)))
1983 {
1984 if (!(flags & LOOKUP_ONLYCONVERTING))
1985 lflags |= LOOKUP_COPY_PARM;
1986 /* We allow user-defined conversions within init-lists, but
1987 don't list-initialize the copy parm, as that would mean
1988 using two levels of braces for the same type. */
1989 if ((flags & LOOKUP_LIST_INIT_CTOR)
1990 && BRACE_ENCLOSED_INITIALIZER_P (arg))
1991 lflags |= LOOKUP_NO_CONVERSION;
1992 }
1993 else
1994 lflags |= LOOKUP_ONLYCONVERTING;
1995
1996 t = implicit_conversion (parmtype, argtype, arg,
1997 /*c_cast_p=*/false, lflags, complain);
1998 to_type = parmtype;
1999 }
2000 else
2001 {
2002 t = build_identity_conv (argtype, arg);
2003 t->ellipsis_p = true;
2004 to_type = argtype;
2005 }
2006
2007 if (t && is_this)
2008 t->this_p = true;
2009
2010 convs[i] = t;
2011 if (! t)
2012 {
2013 viable = 0;
2014 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2015 break;
2016 }
2017
2018 if (t->bad_p)
2019 {
2020 viable = -1;
2021 reason = bad_arg_conversion_rejection (first_arg, i, argtype, to_type);
2022 }
2023 }
2024
2025 out:
2026 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2027 access_path, conversion_path, viable, reason);
2028 }
2029
2030 /* Create an overload candidate for the conversion function FN which will
2031 be invoked for expression OBJ, producing a pointer-to-function which
2032 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2033 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2034 passed on to implicit_conversion.
2035
2036 Actually, we don't really care about FN; we care about the type it
2037 converts to. There may be multiple conversion functions that will
2038 convert to that type, and we rely on build_user_type_conversion_1 to
2039 choose the best one; so when we create our candidate, we record the type
2040 instead of the function. */
2041
2042 static struct z_candidate *
2043 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2044 tree first_arg, const VEC(tree,gc) *arglist,
2045 tree access_path, tree conversion_path,
2046 tsubst_flags_t complain)
2047 {
2048 tree totype = TREE_TYPE (TREE_TYPE (fn));
2049 int i, len, viable, flags;
2050 tree parmlist, parmnode;
2051 conversion **convs;
2052 struct rejection_reason *reason;
2053
2054 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2055 parmlist = TREE_TYPE (parmlist);
2056 parmlist = TYPE_ARG_TYPES (parmlist);
2057
2058 len = VEC_length (tree, arglist) + (first_arg != NULL_TREE ? 1 : 0) + 1;
2059 convs = alloc_conversions (len);
2060 parmnode = parmlist;
2061 viable = 1;
2062 flags = LOOKUP_IMPLICIT;
2063 reason = NULL;
2064
2065 /* Don't bother looking up the same type twice. */
2066 if (*candidates && (*candidates)->fn == totype)
2067 return NULL;
2068
2069 for (i = 0; i < len; ++i)
2070 {
2071 tree arg, argtype, convert_type = NULL_TREE;
2072 conversion *t;
2073
2074 if (i == 0)
2075 arg = obj;
2076 else if (i == 1 && first_arg != NULL_TREE)
2077 arg = first_arg;
2078 else
2079 arg = VEC_index (tree, arglist,
2080 i - (first_arg != NULL_TREE ? 1 : 0) - 1);
2081 argtype = lvalue_type (arg);
2082
2083 if (i == 0)
2084 {
2085 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
2086 flags, complain);
2087 convert_type = totype;
2088 }
2089 else if (parmnode == void_list_node)
2090 break;
2091 else if (parmnode)
2092 {
2093 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2094 /*c_cast_p=*/false, flags, complain);
2095 convert_type = TREE_VALUE (parmnode);
2096 }
2097 else
2098 {
2099 t = build_identity_conv (argtype, arg);
2100 t->ellipsis_p = true;
2101 convert_type = argtype;
2102 }
2103
2104 convs[i] = t;
2105 if (! t)
2106 break;
2107
2108 if (t->bad_p)
2109 {
2110 viable = -1;
2111 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtype, convert_type);
2112 }
2113
2114 if (i == 0)
2115 continue;
2116
2117 if (parmnode)
2118 parmnode = TREE_CHAIN (parmnode);
2119 }
2120
2121 if (i < len
2122 || ! sufficient_parms_p (parmnode))
2123 {
2124 int remaining = remaining_arguments (parmnode);
2125 viable = 0;
2126 reason = arity_rejection (NULL_TREE, i + remaining, len);
2127 }
2128
2129 return add_candidate (candidates, totype, first_arg, arglist, len, convs,
2130 access_path, conversion_path, viable, reason);
2131 }
2132
2133 static void
2134 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2135 tree type1, tree type2, tree *args, tree *argtypes,
2136 int flags, tsubst_flags_t complain)
2137 {
2138 conversion *t;
2139 conversion **convs;
2140 size_t num_convs;
2141 int viable = 1, i;
2142 tree types[2];
2143 struct rejection_reason *reason = NULL;
2144
2145 types[0] = type1;
2146 types[1] = type2;
2147
2148 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2149 convs = alloc_conversions (num_convs);
2150
2151 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2152 conversion ops are allowed. We handle that here by just checking for
2153 boolean_type_node because other operators don't ask for it. COND_EXPR
2154 also does contextual conversion to bool for the first operand, but we
2155 handle that in build_conditional_expr, and type1 here is operand 2. */
2156 if (type1 != boolean_type_node)
2157 flags |= LOOKUP_ONLYCONVERTING;
2158
2159 for (i = 0; i < 2; ++i)
2160 {
2161 if (! args[i])
2162 break;
2163
2164 t = implicit_conversion (types[i], argtypes[i], args[i],
2165 /*c_cast_p=*/false, flags, complain);
2166 if (! t)
2167 {
2168 viable = 0;
2169 /* We need something for printing the candidate. */
2170 t = build_identity_conv (types[i], NULL_TREE);
2171 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2172 types[i]);
2173 }
2174 else if (t->bad_p)
2175 {
2176 viable = 0;
2177 reason = bad_arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2178 types[i]);
2179 }
2180 convs[i] = t;
2181 }
2182
2183 /* For COND_EXPR we rearranged the arguments; undo that now. */
2184 if (args[2])
2185 {
2186 convs[2] = convs[1];
2187 convs[1] = convs[0];
2188 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2189 /*c_cast_p=*/false, flags,
2190 complain);
2191 if (t)
2192 convs[0] = t;
2193 else
2194 {
2195 viable = 0;
2196 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2197 boolean_type_node);
2198 }
2199 }
2200
2201 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2202 num_convs, convs,
2203 /*access_path=*/NULL_TREE,
2204 /*conversion_path=*/NULL_TREE,
2205 viable, reason);
2206 }
2207
2208 static bool
2209 is_complete (tree t)
2210 {
2211 return COMPLETE_TYPE_P (complete_type (t));
2212 }
2213
2214 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2215
2216 static bool
2217 promoted_arithmetic_type_p (tree type)
2218 {
2219 /* [over.built]
2220
2221 In this section, the term promoted integral type is used to refer
2222 to those integral types which are preserved by integral promotion
2223 (including e.g. int and long but excluding e.g. char).
2224 Similarly, the term promoted arithmetic type refers to promoted
2225 integral types plus floating types. */
2226 return ((CP_INTEGRAL_TYPE_P (type)
2227 && same_type_p (type_promotes_to (type), type))
2228 || TREE_CODE (type) == REAL_TYPE);
2229 }
2230
2231 /* Create any builtin operator overload candidates for the operator in
2232 question given the converted operand types TYPE1 and TYPE2. The other
2233 args are passed through from add_builtin_candidates to
2234 build_builtin_candidate.
2235
2236 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2237 If CODE is requires candidates operands of the same type of the kind
2238 of which TYPE1 and TYPE2 are, we add both candidates
2239 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2240
2241 static void
2242 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2243 enum tree_code code2, tree fnname, tree type1,
2244 tree type2, tree *args, tree *argtypes, int flags,
2245 tsubst_flags_t complain)
2246 {
2247 switch (code)
2248 {
2249 case POSTINCREMENT_EXPR:
2250 case POSTDECREMENT_EXPR:
2251 args[1] = integer_zero_node;
2252 type2 = integer_type_node;
2253 break;
2254 default:
2255 break;
2256 }
2257
2258 switch (code)
2259 {
2260
2261 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2262 and VQ is either volatile or empty, there exist candidate operator
2263 functions of the form
2264 VQ T& operator++(VQ T&);
2265 T operator++(VQ T&, int);
2266 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2267 type other than bool, and VQ is either volatile or empty, there exist
2268 candidate operator functions of the form
2269 VQ T& operator--(VQ T&);
2270 T operator--(VQ T&, int);
2271 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2272 complete object type, and VQ is either volatile or empty, there exist
2273 candidate operator functions of the form
2274 T*VQ& operator++(T*VQ&);
2275 T*VQ& operator--(T*VQ&);
2276 T* operator++(T*VQ&, int);
2277 T* operator--(T*VQ&, int); */
2278
2279 case POSTDECREMENT_EXPR:
2280 case PREDECREMENT_EXPR:
2281 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2282 return;
2283 case POSTINCREMENT_EXPR:
2284 case PREINCREMENT_EXPR:
2285 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2286 {
2287 type1 = build_reference_type (type1);
2288 break;
2289 }
2290 return;
2291
2292 /* 7 For every cv-qualified or cv-unqualified object type T, there
2293 exist candidate operator functions of the form
2294
2295 T& operator*(T*);
2296
2297 8 For every function type T, there exist candidate operator functions of
2298 the form
2299 T& operator*(T*); */
2300
2301 case INDIRECT_REF:
2302 if (TREE_CODE (type1) == POINTER_TYPE
2303 && !uses_template_parms (TREE_TYPE (type1))
2304 && (TYPE_PTROB_P (type1)
2305 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2306 break;
2307 return;
2308
2309 /* 9 For every type T, there exist candidate operator functions of the form
2310 T* operator+(T*);
2311
2312 10For every promoted arithmetic type T, there exist candidate operator
2313 functions of the form
2314 T operator+(T);
2315 T operator-(T); */
2316
2317 case UNARY_PLUS_EXPR: /* unary + */
2318 if (TREE_CODE (type1) == POINTER_TYPE)
2319 break;
2320 case NEGATE_EXPR:
2321 if (ARITHMETIC_TYPE_P (type1))
2322 break;
2323 return;
2324
2325 /* 11For every promoted integral type T, there exist candidate operator
2326 functions of the form
2327 T operator~(T); */
2328
2329 case BIT_NOT_EXPR:
2330 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2331 break;
2332 return;
2333
2334 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2335 is the same type as C2 or is a derived class of C2, T is a complete
2336 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2337 there exist candidate operator functions of the form
2338 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2339 where CV12 is the union of CV1 and CV2. */
2340
2341 case MEMBER_REF:
2342 if (TREE_CODE (type1) == POINTER_TYPE
2343 && TYPE_PTRMEM_P (type2))
2344 {
2345 tree c1 = TREE_TYPE (type1);
2346 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2347
2348 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2349 && (TYPE_PTRMEMFUNC_P (type2)
2350 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2351 break;
2352 }
2353 return;
2354
2355 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2356 didate operator functions of the form
2357 LR operator*(L, R);
2358 LR operator/(L, R);
2359 LR operator+(L, R);
2360 LR operator-(L, R);
2361 bool operator<(L, R);
2362 bool operator>(L, R);
2363 bool operator<=(L, R);
2364 bool operator>=(L, R);
2365 bool operator==(L, R);
2366 bool operator!=(L, R);
2367 where LR is the result of the usual arithmetic conversions between
2368 types L and R.
2369
2370 14For every pair of types T and I, where T is a cv-qualified or cv-
2371 unqualified complete object type and I is a promoted integral type,
2372 there exist candidate operator functions of the form
2373 T* operator+(T*, I);
2374 T& operator[](T*, I);
2375 T* operator-(T*, I);
2376 T* operator+(I, T*);
2377 T& operator[](I, T*);
2378
2379 15For every T, where T is a pointer to complete object type, there exist
2380 candidate operator functions of the form112)
2381 ptrdiff_t operator-(T, T);
2382
2383 16For every pointer or enumeration type T, there exist candidate operator
2384 functions of the form
2385 bool operator<(T, T);
2386 bool operator>(T, T);
2387 bool operator<=(T, T);
2388 bool operator>=(T, T);
2389 bool operator==(T, T);
2390 bool operator!=(T, T);
2391
2392 17For every pointer to member type T, there exist candidate operator
2393 functions of the form
2394 bool operator==(T, T);
2395 bool operator!=(T, T); */
2396
2397 case MINUS_EXPR:
2398 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2399 break;
2400 if (TYPE_PTROB_P (type1)
2401 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2402 {
2403 type2 = ptrdiff_type_node;
2404 break;
2405 }
2406 case MULT_EXPR:
2407 case TRUNC_DIV_EXPR:
2408 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2409 break;
2410 return;
2411
2412 case EQ_EXPR:
2413 case NE_EXPR:
2414 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2415 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2416 break;
2417 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2418 {
2419 type2 = type1;
2420 break;
2421 }
2422 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2423 {
2424 type1 = type2;
2425 break;
2426 }
2427 /* Fall through. */
2428 case LT_EXPR:
2429 case GT_EXPR:
2430 case LE_EXPR:
2431 case GE_EXPR:
2432 case MAX_EXPR:
2433 case MIN_EXPR:
2434 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2435 break;
2436 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2437 break;
2438 if (TREE_CODE (type1) == ENUMERAL_TYPE
2439 && TREE_CODE (type2) == ENUMERAL_TYPE)
2440 break;
2441 if (TYPE_PTR_P (type1)
2442 && null_ptr_cst_p (args[1])
2443 && !uses_template_parms (type1))
2444 {
2445 type2 = type1;
2446 break;
2447 }
2448 if (null_ptr_cst_p (args[0])
2449 && TYPE_PTR_P (type2)
2450 && !uses_template_parms (type2))
2451 {
2452 type1 = type2;
2453 break;
2454 }
2455 return;
2456
2457 case PLUS_EXPR:
2458 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2459 break;
2460 case ARRAY_REF:
2461 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2462 {
2463 type1 = ptrdiff_type_node;
2464 break;
2465 }
2466 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2467 {
2468 type2 = ptrdiff_type_node;
2469 break;
2470 }
2471 return;
2472
2473 /* 18For every pair of promoted integral types L and R, there exist candi-
2474 date operator functions of the form
2475 LR operator%(L, R);
2476 LR operator&(L, R);
2477 LR operator^(L, R);
2478 LR operator|(L, R);
2479 L operator<<(L, R);
2480 L operator>>(L, R);
2481 where LR is the result of the usual arithmetic conversions between
2482 types L and R. */
2483
2484 case TRUNC_MOD_EXPR:
2485 case BIT_AND_EXPR:
2486 case BIT_IOR_EXPR:
2487 case BIT_XOR_EXPR:
2488 case LSHIFT_EXPR:
2489 case RSHIFT_EXPR:
2490 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2491 break;
2492 return;
2493
2494 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2495 type, VQ is either volatile or empty, and R is a promoted arithmetic
2496 type, there exist candidate operator functions of the form
2497 VQ L& operator=(VQ L&, R);
2498 VQ L& operator*=(VQ L&, R);
2499 VQ L& operator/=(VQ L&, R);
2500 VQ L& operator+=(VQ L&, R);
2501 VQ L& operator-=(VQ L&, R);
2502
2503 20For every pair T, VQ), where T is any type and VQ is either volatile
2504 or empty, there exist candidate operator functions of the form
2505 T*VQ& operator=(T*VQ&, T*);
2506
2507 21For every pair T, VQ), where T is a pointer to member type and VQ is
2508 either volatile or empty, there exist candidate operator functions of
2509 the form
2510 VQ T& operator=(VQ T&, T);
2511
2512 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2513 unqualified complete object type, VQ is either volatile or empty, and
2514 I is a promoted integral type, there exist candidate operator func-
2515 tions of the form
2516 T*VQ& operator+=(T*VQ&, I);
2517 T*VQ& operator-=(T*VQ&, I);
2518
2519 23For every triple L, VQ, R), where L is an integral or enumeration
2520 type, VQ is either volatile or empty, and R is a promoted integral
2521 type, there exist candidate operator functions of the form
2522
2523 VQ L& operator%=(VQ L&, R);
2524 VQ L& operator<<=(VQ L&, R);
2525 VQ L& operator>>=(VQ L&, R);
2526 VQ L& operator&=(VQ L&, R);
2527 VQ L& operator^=(VQ L&, R);
2528 VQ L& operator|=(VQ L&, R); */
2529
2530 case MODIFY_EXPR:
2531 switch (code2)
2532 {
2533 case PLUS_EXPR:
2534 case MINUS_EXPR:
2535 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2536 {
2537 type2 = ptrdiff_type_node;
2538 break;
2539 }
2540 case MULT_EXPR:
2541 case TRUNC_DIV_EXPR:
2542 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2543 break;
2544 return;
2545
2546 case TRUNC_MOD_EXPR:
2547 case BIT_AND_EXPR:
2548 case BIT_IOR_EXPR:
2549 case BIT_XOR_EXPR:
2550 case LSHIFT_EXPR:
2551 case RSHIFT_EXPR:
2552 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2553 break;
2554 return;
2555
2556 case NOP_EXPR:
2557 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2558 break;
2559 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2560 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2561 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2562 || ((TYPE_PTRMEMFUNC_P (type1)
2563 || TREE_CODE (type1) == POINTER_TYPE)
2564 && null_ptr_cst_p (args[1])))
2565 {
2566 type2 = type1;
2567 break;
2568 }
2569 return;
2570
2571 default:
2572 gcc_unreachable ();
2573 }
2574 type1 = build_reference_type (type1);
2575 break;
2576
2577 case COND_EXPR:
2578 /* [over.built]
2579
2580 For every pair of promoted arithmetic types L and R, there
2581 exist candidate operator functions of the form
2582
2583 LR operator?(bool, L, R);
2584
2585 where LR is the result of the usual arithmetic conversions
2586 between types L and R.
2587
2588 For every type T, where T is a pointer or pointer-to-member
2589 type, there exist candidate operator functions of the form T
2590 operator?(bool, T, T); */
2591
2592 if (promoted_arithmetic_type_p (type1)
2593 && promoted_arithmetic_type_p (type2))
2594 /* That's OK. */
2595 break;
2596
2597 /* Otherwise, the types should be pointers. */
2598 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2599 return;
2600
2601 /* We don't check that the two types are the same; the logic
2602 below will actually create two candidates; one in which both
2603 parameter types are TYPE1, and one in which both parameter
2604 types are TYPE2. */
2605 break;
2606
2607 case REALPART_EXPR:
2608 case IMAGPART_EXPR:
2609 if (ARITHMETIC_TYPE_P (type1))
2610 break;
2611 return;
2612
2613 default:
2614 gcc_unreachable ();
2615 }
2616
2617 /* If we're dealing with two pointer types or two enumeral types,
2618 we need candidates for both of them. */
2619 if (type2 && !same_type_p (type1, type2)
2620 && TREE_CODE (type1) == TREE_CODE (type2)
2621 && (TREE_CODE (type1) == REFERENCE_TYPE
2622 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2623 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2624 || TYPE_PTRMEMFUNC_P (type1)
2625 || MAYBE_CLASS_TYPE_P (type1)
2626 || TREE_CODE (type1) == ENUMERAL_TYPE))
2627 {
2628 if (TYPE_PTR_OR_PTRMEM_P (type1))
2629 {
2630 tree cptype = composite_pointer_type (type1, type2,
2631 error_mark_node,
2632 error_mark_node,
2633 CPO_CONVERSION,
2634 tf_none);
2635 if (cptype != error_mark_node)
2636 {
2637 build_builtin_candidate
2638 (candidates, fnname, cptype, cptype, args, argtypes,
2639 flags, complain);
2640 return;
2641 }
2642 }
2643
2644 build_builtin_candidate
2645 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2646 build_builtin_candidate
2647 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2648 return;
2649 }
2650
2651 build_builtin_candidate
2652 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2653 }
2654
2655 tree
2656 type_decays_to (tree type)
2657 {
2658 if (TREE_CODE (type) == ARRAY_TYPE)
2659 return build_pointer_type (TREE_TYPE (type));
2660 if (TREE_CODE (type) == FUNCTION_TYPE)
2661 return build_pointer_type (type);
2662 return type;
2663 }
2664
2665 /* There are three conditions of builtin candidates:
2666
2667 1) bool-taking candidates. These are the same regardless of the input.
2668 2) pointer-pair taking candidates. These are generated for each type
2669 one of the input types converts to.
2670 3) arithmetic candidates. According to the standard, we should generate
2671 all of these, but I'm trying not to...
2672
2673 Here we generate a superset of the possible candidates for this particular
2674 case. That is a subset of the full set the standard defines, plus some
2675 other cases which the standard disallows. add_builtin_candidate will
2676 filter out the invalid set. */
2677
2678 static void
2679 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2680 enum tree_code code2, tree fnname, tree *args,
2681 int flags, tsubst_flags_t complain)
2682 {
2683 int ref1, i;
2684 int enum_p = 0;
2685 tree type, argtypes[3], t;
2686 /* TYPES[i] is the set of possible builtin-operator parameter types
2687 we will consider for the Ith argument. */
2688 VEC(tree,gc) *types[2];
2689 unsigned ix;
2690
2691 for (i = 0; i < 3; ++i)
2692 {
2693 if (args[i])
2694 argtypes[i] = unlowered_expr_type (args[i]);
2695 else
2696 argtypes[i] = NULL_TREE;
2697 }
2698
2699 switch (code)
2700 {
2701 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2702 and VQ is either volatile or empty, there exist candidate operator
2703 functions of the form
2704 VQ T& operator++(VQ T&); */
2705
2706 case POSTINCREMENT_EXPR:
2707 case PREINCREMENT_EXPR:
2708 case POSTDECREMENT_EXPR:
2709 case PREDECREMENT_EXPR:
2710 case MODIFY_EXPR:
2711 ref1 = 1;
2712 break;
2713
2714 /* 24There also exist candidate operator functions of the form
2715 bool operator!(bool);
2716 bool operator&&(bool, bool);
2717 bool operator||(bool, bool); */
2718
2719 case TRUTH_NOT_EXPR:
2720 build_builtin_candidate
2721 (candidates, fnname, boolean_type_node,
2722 NULL_TREE, args, argtypes, flags, complain);
2723 return;
2724
2725 case TRUTH_ORIF_EXPR:
2726 case TRUTH_ANDIF_EXPR:
2727 build_builtin_candidate
2728 (candidates, fnname, boolean_type_node,
2729 boolean_type_node, args, argtypes, flags, complain);
2730 return;
2731
2732 case ADDR_EXPR:
2733 case COMPOUND_EXPR:
2734 case COMPONENT_REF:
2735 return;
2736
2737 case COND_EXPR:
2738 case EQ_EXPR:
2739 case NE_EXPR:
2740 case LT_EXPR:
2741 case LE_EXPR:
2742 case GT_EXPR:
2743 case GE_EXPR:
2744 enum_p = 1;
2745 /* Fall through. */
2746
2747 default:
2748 ref1 = 0;
2749 }
2750
2751 types[0] = make_tree_vector ();
2752 types[1] = make_tree_vector ();
2753
2754 for (i = 0; i < 2; ++i)
2755 {
2756 if (! args[i])
2757 ;
2758 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2759 {
2760 tree convs;
2761
2762 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2763 return;
2764
2765 convs = lookup_conversions (argtypes[i]);
2766
2767 if (code == COND_EXPR)
2768 {
2769 if (real_lvalue_p (args[i]))
2770 VEC_safe_push (tree, gc, types[i],
2771 build_reference_type (argtypes[i]));
2772
2773 VEC_safe_push (tree, gc, types[i],
2774 TYPE_MAIN_VARIANT (argtypes[i]));
2775 }
2776
2777 else if (! convs)
2778 return;
2779
2780 for (; convs; convs = TREE_CHAIN (convs))
2781 {
2782 type = TREE_TYPE (convs);
2783
2784 if (i == 0 && ref1
2785 && (TREE_CODE (type) != REFERENCE_TYPE
2786 || CP_TYPE_CONST_P (TREE_TYPE (type))))
2787 continue;
2788
2789 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
2790 VEC_safe_push (tree, gc, types[i], type);
2791
2792 type = non_reference (type);
2793 if (i != 0 || ! ref1)
2794 {
2795 type = cv_unqualified (type_decays_to (type));
2796 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2797 VEC_safe_push (tree, gc, types[i], type);
2798 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2799 type = type_promotes_to (type);
2800 }
2801
2802 if (! vec_member (type, types[i]))
2803 VEC_safe_push (tree, gc, types[i], type);
2804 }
2805 }
2806 else
2807 {
2808 if (code == COND_EXPR && real_lvalue_p (args[i]))
2809 VEC_safe_push (tree, gc, types[i],
2810 build_reference_type (argtypes[i]));
2811 type = non_reference (argtypes[i]);
2812 if (i != 0 || ! ref1)
2813 {
2814 type = cv_unqualified (type_decays_to (type));
2815 if (enum_p && UNSCOPED_ENUM_P (type))
2816 VEC_safe_push (tree, gc, types[i], type);
2817 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
2818 type = type_promotes_to (type);
2819 }
2820 VEC_safe_push (tree, gc, types[i], type);
2821 }
2822 }
2823
2824 /* Run through the possible parameter types of both arguments,
2825 creating candidates with those parameter types. */
2826 FOR_EACH_VEC_ELT_REVERSE (tree, types[0], ix, t)
2827 {
2828 unsigned jx;
2829 tree u;
2830
2831 if (!VEC_empty (tree, types[1]))
2832 FOR_EACH_VEC_ELT_REVERSE (tree, types[1], jx, u)
2833 add_builtin_candidate
2834 (candidates, code, code2, fnname, t,
2835 u, args, argtypes, flags, complain);
2836 else
2837 add_builtin_candidate
2838 (candidates, code, code2, fnname, t,
2839 NULL_TREE, args, argtypes, flags, complain);
2840 }
2841
2842 release_tree_vector (types[0]);
2843 release_tree_vector (types[1]);
2844 }
2845
2846
2847 /* If TMPL can be successfully instantiated as indicated by
2848 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2849
2850 TMPL is the template. EXPLICIT_TARGS are any explicit template
2851 arguments. ARGLIST is the arguments provided at the call-site.
2852 This does not change ARGLIST. The RETURN_TYPE is the desired type
2853 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
2854 as for add_function_candidate. If an OBJ is supplied, FLAGS and
2855 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
2856
2857 static struct z_candidate*
2858 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
2859 tree ctype, tree explicit_targs, tree first_arg,
2860 const VEC(tree,gc) *arglist, tree return_type,
2861 tree access_path, tree conversion_path,
2862 int flags, tree obj, unification_kind_t strict,
2863 tsubst_flags_t complain)
2864 {
2865 int ntparms = DECL_NTPARMS (tmpl);
2866 tree targs = make_tree_vec (ntparms);
2867 unsigned int len = VEC_length (tree, arglist);
2868 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
2869 unsigned int skip_without_in_chrg = 0;
2870 tree first_arg_without_in_chrg = first_arg;
2871 tree *args_without_in_chrg;
2872 unsigned int nargs_without_in_chrg;
2873 unsigned int ia, ix;
2874 tree arg;
2875 struct z_candidate *cand;
2876 int i;
2877 tree fn;
2878 struct rejection_reason *reason = NULL;
2879 int errs;
2880
2881 /* We don't do deduction on the in-charge parameter, the VTT
2882 parameter or 'this'. */
2883 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2884 {
2885 if (first_arg_without_in_chrg != NULL_TREE)
2886 first_arg_without_in_chrg = NULL_TREE;
2887 else
2888 ++skip_without_in_chrg;
2889 }
2890
2891 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2892 || DECL_BASE_CONSTRUCTOR_P (tmpl))
2893 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
2894 {
2895 if (first_arg_without_in_chrg != NULL_TREE)
2896 first_arg_without_in_chrg = NULL_TREE;
2897 else
2898 ++skip_without_in_chrg;
2899 }
2900
2901 if (len < skip_without_in_chrg)
2902 return NULL;
2903
2904 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
2905 + (len - skip_without_in_chrg));
2906 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
2907 ia = 0;
2908 if (first_arg_without_in_chrg != NULL_TREE)
2909 {
2910 args_without_in_chrg[ia] = first_arg_without_in_chrg;
2911 ++ia;
2912 }
2913 for (ix = skip_without_in_chrg;
2914 VEC_iterate (tree, arglist, ix, arg);
2915 ++ix)
2916 {
2917 args_without_in_chrg[ia] = arg;
2918 ++ia;
2919 }
2920 gcc_assert (ia == nargs_without_in_chrg);
2921
2922 errs = errorcount+sorrycount;
2923 i = fn_type_unification (tmpl, explicit_targs, targs,
2924 args_without_in_chrg,
2925 nargs_without_in_chrg,
2926 return_type, strict, flags, false);
2927
2928 if (i != 0)
2929 {
2930 /* Don't repeat unification later if it already resulted in errors. */
2931 if (errorcount+sorrycount == errs)
2932 reason = template_unification_rejection (tmpl, explicit_targs,
2933 targs, args_without_in_chrg,
2934 nargs_without_in_chrg,
2935 return_type, strict, flags);
2936 else
2937 reason = template_unification_error_rejection ();
2938 goto fail;
2939 }
2940
2941 fn = instantiate_template (tmpl, targs, tf_none);
2942 if (fn == error_mark_node)
2943 {
2944 reason = template_instantiation_rejection (tmpl, targs);
2945 goto fail;
2946 }
2947
2948 /* In [class.copy]:
2949
2950 A member function template is never instantiated to perform the
2951 copy of a class object to an object of its class type.
2952
2953 It's a little unclear what this means; the standard explicitly
2954 does allow a template to be used to copy a class. For example,
2955 in:
2956
2957 struct A {
2958 A(A&);
2959 template <class T> A(const T&);
2960 };
2961 const A f ();
2962 void g () { A a (f ()); }
2963
2964 the member template will be used to make the copy. The section
2965 quoted above appears in the paragraph that forbids constructors
2966 whose only parameter is (a possibly cv-qualified variant of) the
2967 class type, and a logical interpretation is that the intent was
2968 to forbid the instantiation of member templates which would then
2969 have that form. */
2970 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
2971 {
2972 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2973 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2974 ctype))
2975 {
2976 reason = invalid_copy_with_fn_template_rejection ();
2977 goto fail;
2978 }
2979 }
2980
2981 if (obj != NULL_TREE)
2982 /* Aha, this is a conversion function. */
2983 cand = add_conv_candidate (candidates, fn, obj, first_arg, arglist,
2984 access_path, conversion_path, complain);
2985 else
2986 cand = add_function_candidate (candidates, fn, ctype,
2987 first_arg, arglist, access_path,
2988 conversion_path, flags, complain);
2989 if (DECL_TI_TEMPLATE (fn) != tmpl)
2990 /* This situation can occur if a member template of a template
2991 class is specialized. Then, instantiate_template might return
2992 an instantiation of the specialization, in which case the
2993 DECL_TI_TEMPLATE field will point at the original
2994 specialization. For example:
2995
2996 template <class T> struct S { template <class U> void f(U);
2997 template <> void f(int) {}; };
2998 S<double> sd;
2999 sd.f(3);
3000
3001 Here, TMPL will be template <class U> S<double>::f(U).
3002 And, instantiate template will give us the specialization
3003 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3004 for this will point at template <class T> template <> S<T>::f(int),
3005 so that we can find the definition. For the purposes of
3006 overload resolution, however, we want the original TMPL. */
3007 cand->template_decl = build_template_info (tmpl, targs);
3008 else
3009 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3010 cand->explicit_targs = explicit_targs;
3011
3012 return cand;
3013 fail:
3014 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3015 access_path, conversion_path, 0, reason);
3016 }
3017
3018
3019 static struct z_candidate *
3020 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3021 tree explicit_targs, tree first_arg,
3022 const VEC(tree,gc) *arglist, tree return_type,
3023 tree access_path, tree conversion_path, int flags,
3024 unification_kind_t strict, tsubst_flags_t complain)
3025 {
3026 return
3027 add_template_candidate_real (candidates, tmpl, ctype,
3028 explicit_targs, first_arg, arglist,
3029 return_type, access_path, conversion_path,
3030 flags, NULL_TREE, strict, complain);
3031 }
3032
3033
3034 static struct z_candidate *
3035 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3036 tree obj, tree first_arg,
3037 const VEC(tree,gc) *arglist,
3038 tree return_type, tree access_path,
3039 tree conversion_path, tsubst_flags_t complain)
3040 {
3041 return
3042 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3043 first_arg, arglist, return_type, access_path,
3044 conversion_path, 0, obj, DEDUCE_CONV,
3045 complain);
3046 }
3047
3048 /* The CANDS are the set of candidates that were considered for
3049 overload resolution. Return the set of viable candidates, or CANDS
3050 if none are viable. If any of the candidates were viable, set
3051 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3052 considered viable only if it is strictly viable. */
3053
3054 static struct z_candidate*
3055 splice_viable (struct z_candidate *cands,
3056 bool strict_p,
3057 bool *any_viable_p)
3058 {
3059 struct z_candidate *viable;
3060 struct z_candidate **last_viable;
3061 struct z_candidate **cand;
3062
3063 /* Be strict inside templates, since build_over_call won't actually
3064 do the conversions to get pedwarns. */
3065 if (processing_template_decl)
3066 strict_p = true;
3067
3068 viable = NULL;
3069 last_viable = &viable;
3070 *any_viable_p = false;
3071
3072 cand = &cands;
3073 while (*cand)
3074 {
3075 struct z_candidate *c = *cand;
3076 if (strict_p ? c->viable == 1 : c->viable)
3077 {
3078 *last_viable = c;
3079 *cand = c->next;
3080 c->next = NULL;
3081 last_viable = &c->next;
3082 *any_viable_p = true;
3083 }
3084 else
3085 cand = &c->next;
3086 }
3087
3088 return viable ? viable : cands;
3089 }
3090
3091 static bool
3092 any_strictly_viable (struct z_candidate *cands)
3093 {
3094 for (; cands; cands = cands->next)
3095 if (cands->viable == 1)
3096 return true;
3097 return false;
3098 }
3099
3100 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3101 words, it is about to become the "this" pointer for a member
3102 function call. Take the address of the object. */
3103
3104 static tree
3105 build_this (tree obj)
3106 {
3107 /* In a template, we are only concerned about the type of the
3108 expression, so we can take a shortcut. */
3109 if (processing_template_decl)
3110 return build_address (obj);
3111
3112 return cp_build_addr_expr (obj, tf_warning_or_error);
3113 }
3114
3115 /* Returns true iff functions are equivalent. Equivalent functions are
3116 not '==' only if one is a function-local extern function or if
3117 both are extern "C". */
3118
3119 static inline int
3120 equal_functions (tree fn1, tree fn2)
3121 {
3122 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3123 return 0;
3124 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3125 return fn1 == fn2;
3126 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3127 || DECL_EXTERN_C_FUNCTION_P (fn1))
3128 return decls_match (fn1, fn2);
3129 return fn1 == fn2;
3130 }
3131
3132 /* Print information about a candidate being rejected due to INFO. */
3133
3134 static void
3135 print_conversion_rejection (location_t loc, struct conversion_info *info)
3136 {
3137 if (info->n_arg == -1)
3138 /* Conversion of implicit `this' argument failed. */
3139 inform (loc, " no known conversion for implicit "
3140 "%<this%> parameter from %qT to %qT",
3141 info->from_type, info->to_type);
3142 else
3143 inform (loc, " no known conversion for argument %d from %qT to %qT",
3144 info->n_arg+1, info->from_type, info->to_type);
3145 }
3146
3147 /* Print information about a candidate with WANT parameters and we found
3148 HAVE. */
3149
3150 static void
3151 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3152 {
3153 inform_n (loc, want,
3154 " candidate expects %d argument, %d provided",
3155 " candidate expects %d arguments, %d provided",
3156 want, have);
3157 }
3158
3159 /* Print information about one overload candidate CANDIDATE. MSGSTR
3160 is the text to print before the candidate itself.
3161
3162 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3163 to have been run through gettext by the caller. This wart makes
3164 life simpler in print_z_candidates and for the translators. */
3165
3166 static void
3167 print_z_candidate (location_t loc, const char *msgstr,
3168 struct z_candidate *candidate)
3169 {
3170 const char *msg = (msgstr == NULL
3171 ? ""
3172 : ACONCAT ((msgstr, " ", NULL)));
3173 location_t cloc = location_of (candidate->fn);
3174
3175 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
3176 {
3177 cloc = loc;
3178 if (candidate->num_convs == 3)
3179 inform (cloc, "%s%D(%T, %T, %T) <built-in>", msg, candidate->fn,
3180 candidate->convs[0]->type,
3181 candidate->convs[1]->type,
3182 candidate->convs[2]->type);
3183 else if (candidate->num_convs == 2)
3184 inform (cloc, "%s%D(%T, %T) <built-in>", msg, candidate->fn,
3185 candidate->convs[0]->type,
3186 candidate->convs[1]->type);
3187 else
3188 inform (cloc, "%s%D(%T) <built-in>", msg, candidate->fn,
3189 candidate->convs[0]->type);
3190 }
3191 else if (TYPE_P (candidate->fn))
3192 inform (cloc, "%s%T <conversion>", msg, candidate->fn);
3193 else if (candidate->viable == -1)
3194 inform (cloc, "%s%#D <near match>", msg, candidate->fn);
3195 else if (DECL_DELETED_FN (STRIP_TEMPLATE (candidate->fn)))
3196 inform (cloc, "%s%#D <deleted>", msg, candidate->fn);
3197 else
3198 inform (cloc, "%s%#D", msg, candidate->fn);
3199 /* Give the user some information about why this candidate failed. */
3200 if (candidate->reason != NULL)
3201 {
3202 struct rejection_reason *r = candidate->reason;
3203
3204 switch (r->code)
3205 {
3206 case rr_arity:
3207 print_arity_information (cloc, r->u.arity.actual,
3208 r->u.arity.expected);
3209 break;
3210 case rr_arg_conversion:
3211 print_conversion_rejection (cloc, &r->u.conversion);
3212 break;
3213 case rr_bad_arg_conversion:
3214 print_conversion_rejection (cloc, &r->u.bad_conversion);
3215 break;
3216 case rr_explicit_conversion:
3217 inform (cloc, " return type %qT of explicit conversion function "
3218 "cannot be converted to %qT with a qualification "
3219 "conversion", r->u.conversion.from_type,
3220 r->u.conversion.to_type);
3221 break;
3222 case rr_template_conversion:
3223 inform (cloc, " conversion from return type %qT of template "
3224 "conversion function specialization to %qT is not an "
3225 "exact match", r->u.conversion.from_type,
3226 r->u.conversion.to_type);
3227 break;
3228 case rr_template_unification:
3229 /* We use template_unification_error_rejection if unification caused
3230 actual non-SFINAE errors, in which case we don't need to repeat
3231 them here. */
3232 if (r->u.template_unification.tmpl == NULL_TREE)
3233 {
3234 inform (cloc, " substitution of deduced template arguments "
3235 "resulted in errors seen above");
3236 break;
3237 }
3238 /* Re-run template unification with diagnostics. */
3239 inform (cloc, " template argument deduction/substitution failed:");
3240 fn_type_unification (r->u.template_unification.tmpl,
3241 r->u.template_unification.explicit_targs,
3242 r->u.template_unification.targs,
3243 r->u.template_unification.args,
3244 r->u.template_unification.nargs,
3245 r->u.template_unification.return_type,
3246 r->u.template_unification.strict,
3247 r->u.template_unification.flags,
3248 true);
3249 break;
3250 case rr_template_instantiation:
3251 /* Re-run template instantiation with diagnostics. */
3252 instantiate_template (r->u.template_instantiation.tmpl,
3253 r->u.template_instantiation.targs,
3254 tf_warning_or_error);
3255 break;
3256 case rr_invalid_copy:
3257 inform (cloc,
3258 " a constructor taking a single argument of its own "
3259 "class type is invalid");
3260 break;
3261 case rr_none:
3262 default:
3263 /* This candidate didn't have any issues or we failed to
3264 handle a particular code. Either way... */
3265 gcc_unreachable ();
3266 }
3267 }
3268 }
3269
3270 static void
3271 print_z_candidates (location_t loc, struct z_candidate *candidates)
3272 {
3273 struct z_candidate *cand1;
3274 struct z_candidate **cand2;
3275 int n_candidates;
3276
3277 if (!candidates)
3278 return;
3279
3280 /* Remove non-viable deleted candidates. */
3281 cand1 = candidates;
3282 for (cand2 = &cand1; *cand2; )
3283 {
3284 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3285 && !(*cand2)->viable
3286 && DECL_DELETED_FN ((*cand2)->fn))
3287 *cand2 = (*cand2)->next;
3288 else
3289 cand2 = &(*cand2)->next;
3290 }
3291 /* ...if there are any non-deleted ones. */
3292 if (cand1)
3293 candidates = cand1;
3294
3295 /* There may be duplicates in the set of candidates. We put off
3296 checking this condition as long as possible, since we have no way
3297 to eliminate duplicates from a set of functions in less than n^2
3298 time. Now we are about to emit an error message, so it is more
3299 permissible to go slowly. */
3300 for (cand1 = candidates; cand1; cand1 = cand1->next)
3301 {
3302 tree fn = cand1->fn;
3303 /* Skip builtin candidates and conversion functions. */
3304 if (!DECL_P (fn))
3305 continue;
3306 cand2 = &cand1->next;
3307 while (*cand2)
3308 {
3309 if (DECL_P ((*cand2)->fn)
3310 && equal_functions (fn, (*cand2)->fn))
3311 *cand2 = (*cand2)->next;
3312 else
3313 cand2 = &(*cand2)->next;
3314 }
3315 }
3316
3317 for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
3318 n_candidates++;
3319
3320 inform_n (loc, n_candidates, "candidate is:", "candidates are:");
3321 for (; candidates; candidates = candidates->next)
3322 print_z_candidate (loc, NULL, candidates);
3323 }
3324
3325 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3326 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3327 the result of the conversion function to convert it to the final
3328 desired type. Merge the two sequences into a single sequence,
3329 and return the merged sequence. */
3330
3331 static conversion *
3332 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3333 {
3334 conversion **t;
3335 bool bad = user_seq->bad_p;
3336
3337 gcc_assert (user_seq->kind == ck_user);
3338
3339 /* Find the end of the second conversion sequence. */
3340 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3341 {
3342 /* The entire sequence is a user-conversion sequence. */
3343 (*t)->user_conv_p = true;
3344 if (bad)
3345 (*t)->bad_p = true;
3346 }
3347
3348 /* Replace the identity conversion with the user conversion
3349 sequence. */
3350 *t = user_seq;
3351
3352 return std_seq;
3353 }
3354
3355 /* Handle overload resolution for initializing an object of class type from
3356 an initializer list. First we look for a suitable constructor that
3357 takes a std::initializer_list; if we don't find one, we then look for a
3358 non-list constructor.
3359
3360 Parameters are as for add_candidates, except that the arguments are in
3361 the form of a CONSTRUCTOR (the initializer list) rather than a VEC, and
3362 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3363
3364 static void
3365 add_list_candidates (tree fns, tree first_arg,
3366 tree init_list, tree totype,
3367 tree explicit_targs, bool template_only,
3368 tree conversion_path, tree access_path,
3369 int flags,
3370 struct z_candidate **candidates,
3371 tsubst_flags_t complain)
3372 {
3373 VEC(tree,gc) *args;
3374
3375 gcc_assert (*candidates == NULL);
3376
3377 /* We're looking for a ctor for list-initialization. */
3378 flags |= LOOKUP_LIST_INIT_CTOR;
3379 /* And we don't allow narrowing conversions. We also use this flag to
3380 avoid the copy constructor call for copy-list-initialization. */
3381 flags |= LOOKUP_NO_NARROWING;
3382
3383 /* Always use the default constructor if the list is empty (DR 990). */
3384 if (CONSTRUCTOR_NELTS (init_list) == 0
3385 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3386 ;
3387 /* If the class has a list ctor, try passing the list as a single
3388 argument first, but only consider list ctors. */
3389 else if (TYPE_HAS_LIST_CTOR (totype))
3390 {
3391 flags |= LOOKUP_LIST_ONLY;
3392 args = make_tree_vector_single (init_list);
3393 add_candidates (fns, first_arg, args, NULL_TREE,
3394 explicit_targs, template_only, conversion_path,
3395 access_path, flags, candidates, complain);
3396 if (any_strictly_viable (*candidates))
3397 return;
3398 }
3399
3400 args = ctor_to_vec (init_list);
3401
3402 /* We aren't looking for list-ctors anymore. */
3403 flags &= ~LOOKUP_LIST_ONLY;
3404 /* We allow more user-defined conversions within an init-list. */
3405 flags &= ~LOOKUP_NO_CONVERSION;
3406
3407 add_candidates (fns, first_arg, args, NULL_TREE,
3408 explicit_targs, template_only, conversion_path,
3409 access_path, flags, candidates, complain);
3410 }
3411
3412 /* Returns the best overload candidate to perform the requested
3413 conversion. This function is used for three the overloading situations
3414 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3415 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3416 per [dcl.init.ref], so we ignore temporary bindings. */
3417
3418 static struct z_candidate *
3419 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3420 tsubst_flags_t complain)
3421 {
3422 struct z_candidate *candidates, *cand;
3423 tree fromtype;
3424 tree ctors = NULL_TREE;
3425 tree conv_fns = NULL_TREE;
3426 conversion *conv = NULL;
3427 tree first_arg = NULL_TREE;
3428 VEC(tree,gc) *args = NULL;
3429 bool any_viable_p;
3430 int convflags;
3431
3432 if (!expr)
3433 return NULL;
3434
3435 fromtype = TREE_TYPE (expr);
3436
3437 /* We represent conversion within a hierarchy using RVALUE_CONV and
3438 BASE_CONV, as specified by [over.best.ics]; these become plain
3439 constructor calls, as specified in [dcl.init]. */
3440 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3441 || !DERIVED_FROM_P (totype, fromtype));
3442
3443 if (MAYBE_CLASS_TYPE_P (totype))
3444 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3445 creating a garbage BASELINK; constructors can't be inherited. */
3446 ctors = lookup_fnfields_slot (totype, complete_ctor_identifier);
3447
3448 if (MAYBE_CLASS_TYPE_P (fromtype))
3449 {
3450 tree to_nonref = non_reference (totype);
3451 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3452 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3453 && DERIVED_FROM_P (to_nonref, fromtype)))
3454 {
3455 /* [class.conv.fct] A conversion function is never used to
3456 convert a (possibly cv-qualified) object to the (possibly
3457 cv-qualified) same object type (or a reference to it), to a
3458 (possibly cv-qualified) base class of that type (or a
3459 reference to it)... */
3460 }
3461 else
3462 conv_fns = lookup_conversions (fromtype);
3463 }
3464
3465 candidates = 0;
3466 flags |= LOOKUP_NO_CONVERSION;
3467 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3468 flags |= LOOKUP_NO_NARROWING;
3469
3470 /* It's OK to bind a temporary for converting constructor arguments, but
3471 not in converting the return value of a conversion operator. */
3472 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
3473 flags &= ~LOOKUP_NO_TEMP_BIND;
3474
3475 if (ctors)
3476 {
3477 int ctorflags = flags;
3478
3479 first_arg = build_int_cst (build_pointer_type (totype), 0);
3480
3481 /* We should never try to call the abstract or base constructor
3482 from here. */
3483 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
3484 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
3485
3486 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3487 {
3488 /* List-initialization. */
3489 add_list_candidates (ctors, first_arg, expr, totype, NULL_TREE,
3490 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3491 ctorflags, &candidates, complain);
3492 }
3493 else
3494 {
3495 args = make_tree_vector_single (expr);
3496 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3497 TYPE_BINFO (totype), TYPE_BINFO (totype),
3498 ctorflags, &candidates, complain);
3499 }
3500
3501 for (cand = candidates; cand; cand = cand->next)
3502 {
3503 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3504
3505 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3506 set, then this is copy-initialization. In that case, "The
3507 result of the call is then used to direct-initialize the
3508 object that is the destination of the copy-initialization."
3509 [dcl.init]
3510
3511 We represent this in the conversion sequence with an
3512 rvalue conversion, which means a constructor call. */
3513 if (TREE_CODE (totype) != REFERENCE_TYPE
3514 && !(convflags & LOOKUP_NO_TEMP_BIND))
3515 cand->second_conv
3516 = build_conv (ck_rvalue, totype, cand->second_conv);
3517 }
3518 }
3519
3520 if (conv_fns)
3521 first_arg = build_this (expr);
3522
3523 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3524 {
3525 tree conversion_path = TREE_PURPOSE (conv_fns);
3526 struct z_candidate *old_candidates;
3527
3528 /* If we are called to convert to a reference type, we are trying to
3529 find a direct binding, so don't even consider temporaries. If
3530 we don't find a direct binding, the caller will try again to
3531 look for a temporary binding. */
3532 if (TREE_CODE (totype) == REFERENCE_TYPE)
3533 convflags |= LOOKUP_NO_TEMP_BIND;
3534
3535 old_candidates = candidates;
3536 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3537 NULL_TREE, false,
3538 conversion_path, TYPE_BINFO (fromtype),
3539 flags, &candidates, complain);
3540
3541 for (cand = candidates; cand != old_candidates; cand = cand->next)
3542 {
3543 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3544 conversion *ics
3545 = implicit_conversion (totype,
3546 rettype,
3547 0,
3548 /*c_cast_p=*/false, convflags,
3549 complain);
3550
3551 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3552 copy-initialization. In that case, "The result of the
3553 call is then used to direct-initialize the object that is
3554 the destination of the copy-initialization." [dcl.init]
3555
3556 We represent this in the conversion sequence with an
3557 rvalue conversion, which means a constructor call. But
3558 don't add a second rvalue conversion if there's already
3559 one there. Which there really shouldn't be, but it's
3560 harmless since we'd add it here anyway. */
3561 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3562 && !(convflags & LOOKUP_NO_TEMP_BIND))
3563 ics = build_conv (ck_rvalue, totype, ics);
3564
3565 cand->second_conv = ics;
3566
3567 if (!ics)
3568 {
3569 cand->viable = 0;
3570 cand->reason = arg_conversion_rejection (NULL_TREE, -1,
3571 rettype, totype);
3572 }
3573 else if (DECL_NONCONVERTING_P (cand->fn)
3574 && ics->rank > cr_exact)
3575 {
3576 /* 13.3.1.5: For direct-initialization, those explicit
3577 conversion functions that are not hidden within S and
3578 yield type T or a type that can be converted to type T
3579 with a qualification conversion (4.4) are also candidate
3580 functions. */
3581 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3582 I've raised this issue with the committee. --jason 9/2011 */
3583 cand->viable = -1;
3584 cand->reason = explicit_conversion_rejection (rettype, totype);
3585 }
3586 else if (cand->viable == 1 && ics->bad_p)
3587 {
3588 cand->viable = -1;
3589 cand->reason
3590 = bad_arg_conversion_rejection (NULL_TREE, -1,
3591 rettype, totype);
3592 }
3593 else if (primary_template_instantiation_p (cand->fn)
3594 && ics->rank > cr_exact)
3595 {
3596 /* 13.3.3.1.2: If the user-defined conversion is specified by
3597 a specialization of a conversion function template, the
3598 second standard conversion sequence shall have exact match
3599 rank. */
3600 cand->viable = -1;
3601 cand->reason = template_conversion_rejection (rettype, totype);
3602 }
3603 }
3604 }
3605
3606 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3607 if (!any_viable_p)
3608 {
3609 if (args)
3610 release_tree_vector (args);
3611 return NULL;
3612 }
3613
3614 cand = tourney (candidates, complain);
3615 if (cand == 0)
3616 {
3617 if (complain & tf_error)
3618 {
3619 error ("conversion from %qT to %qT is ambiguous",
3620 fromtype, totype);
3621 print_z_candidates (location_of (expr), candidates);
3622 }
3623
3624 cand = candidates; /* any one will do */
3625 cand->second_conv = build_ambiguous_conv (totype, expr);
3626 cand->second_conv->user_conv_p = true;
3627 if (!any_strictly_viable (candidates))
3628 cand->second_conv->bad_p = true;
3629 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3630 ambiguous conversion is no worse than another user-defined
3631 conversion. */
3632
3633 return cand;
3634 }
3635
3636 /* Build the user conversion sequence. */
3637 conv = build_conv
3638 (ck_user,
3639 (DECL_CONSTRUCTOR_P (cand->fn)
3640 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
3641 build_identity_conv (TREE_TYPE (expr), expr));
3642 conv->cand = cand;
3643 if (cand->viable == -1)
3644 conv->bad_p = true;
3645
3646 /* Remember that this was a list-initialization. */
3647 if (flags & LOOKUP_NO_NARROWING)
3648 conv->check_narrowing = true;
3649
3650 /* Combine it with the second conversion sequence. */
3651 cand->second_conv = merge_conversion_sequences (conv,
3652 cand->second_conv);
3653
3654 return cand;
3655 }
3656
3657 /* Wrapper for above. */
3658
3659 tree
3660 build_user_type_conversion (tree totype, tree expr, int flags,
3661 tsubst_flags_t complain)
3662 {
3663 struct z_candidate *cand;
3664 tree ret;
3665
3666 bool subtime = timevar_cond_start (TV_OVERLOAD);
3667 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3668
3669 if (cand)
3670 {
3671 if (cand->second_conv->kind == ck_ambig)
3672 ret = error_mark_node;
3673 else
3674 {
3675 expr = convert_like (cand->second_conv, expr, complain);
3676 ret = convert_from_reference (expr);
3677 }
3678 }
3679 else
3680 ret = NULL_TREE;
3681
3682 timevar_cond_stop (TV_OVERLOAD, subtime);
3683 return ret;
3684 }
3685
3686 /* Subroutine of convert_nontype_argument.
3687
3688 EXPR is an argument for a template non-type parameter of integral or
3689 enumeration type. Do any necessary conversions (that are permitted for
3690 non-type arguments) to convert it to the parameter type.
3691
3692 If conversion is successful, returns the converted expression;
3693 otherwise, returns error_mark_node. */
3694
3695 tree
3696 build_integral_nontype_arg_conv (tree type, tree expr, tsubst_flags_t complain)
3697 {
3698 conversion *conv;
3699 void *p;
3700 tree t;
3701 location_t loc = EXPR_LOC_OR_HERE (expr);
3702
3703 if (error_operand_p (expr))
3704 return error_mark_node;
3705
3706 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3707
3708 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3709 p = conversion_obstack_alloc (0);
3710
3711 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
3712 /*c_cast_p=*/false,
3713 LOOKUP_IMPLICIT, complain);
3714
3715 /* for a non-type template-parameter of integral or
3716 enumeration type, integral promotions (4.5) and integral
3717 conversions (4.7) are applied. */
3718 /* It should be sufficient to check the outermost conversion step, since
3719 there are no qualification conversions to integer type. */
3720 if (conv)
3721 switch (conv->kind)
3722 {
3723 /* A conversion function is OK. If it isn't constexpr, we'll
3724 complain later that the argument isn't constant. */
3725 case ck_user:
3726 /* The lvalue-to-rvalue conversion is OK. */
3727 case ck_rvalue:
3728 case ck_identity:
3729 break;
3730
3731 case ck_std:
3732 t = next_conversion (conv)->type;
3733 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t))
3734 break;
3735
3736 if (complain & tf_error)
3737 error_at (loc, "conversion from %qT to %qT not considered for "
3738 "non-type template argument", t, type);
3739 /* and fall through. */
3740
3741 default:
3742 conv = NULL;
3743 break;
3744 }
3745
3746 if (conv)
3747 expr = convert_like (conv, expr, complain);
3748 else
3749 expr = error_mark_node;
3750
3751 /* Free all the conversions we allocated. */
3752 obstack_free (&conversion_obstack, p);
3753
3754 return expr;
3755 }
3756
3757 /* Do any initial processing on the arguments to a function call. */
3758
3759 static VEC(tree,gc) *
3760 resolve_args (VEC(tree,gc) *args, tsubst_flags_t complain)
3761 {
3762 unsigned int ix;
3763 tree arg;
3764
3765 FOR_EACH_VEC_ELT (tree, args, ix, arg)
3766 {
3767 if (error_operand_p (arg))
3768 return NULL;
3769 else if (VOID_TYPE_P (TREE_TYPE (arg)))
3770 {
3771 if (complain & tf_error)
3772 error ("invalid use of void expression");
3773 return NULL;
3774 }
3775 else if (invalid_nonstatic_memfn_p (arg, complain))
3776 return NULL;
3777 }
3778 return args;
3779 }
3780
3781 /* Perform overload resolution on FN, which is called with the ARGS.
3782
3783 Return the candidate function selected by overload resolution, or
3784 NULL if the event that overload resolution failed. In the case
3785 that overload resolution fails, *CANDIDATES will be the set of
3786 candidates considered, and ANY_VIABLE_P will be set to true or
3787 false to indicate whether or not any of the candidates were
3788 viable.
3789
3790 The ARGS should already have gone through RESOLVE_ARGS before this
3791 function is called. */
3792
3793 static struct z_candidate *
3794 perform_overload_resolution (tree fn,
3795 const VEC(tree,gc) *args,
3796 struct z_candidate **candidates,
3797 bool *any_viable_p, tsubst_flags_t complain)
3798 {
3799 struct z_candidate *cand;
3800 tree explicit_targs;
3801 int template_only;
3802
3803 bool subtime = timevar_cond_start (TV_OVERLOAD);
3804
3805 explicit_targs = NULL_TREE;
3806 template_only = 0;
3807
3808 *candidates = NULL;
3809 *any_viable_p = true;
3810
3811 /* Check FN. */
3812 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
3813 || TREE_CODE (fn) == TEMPLATE_DECL
3814 || TREE_CODE (fn) == OVERLOAD
3815 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
3816
3817 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3818 {
3819 explicit_targs = TREE_OPERAND (fn, 1);
3820 fn = TREE_OPERAND (fn, 0);
3821 template_only = 1;
3822 }
3823
3824 /* Add the various candidate functions. */
3825 add_candidates (fn, NULL_TREE, args, NULL_TREE,
3826 explicit_targs, template_only,
3827 /*conversion_path=*/NULL_TREE,
3828 /*access_path=*/NULL_TREE,
3829 LOOKUP_NORMAL,
3830 candidates, complain);
3831
3832 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
3833 if (*any_viable_p)
3834 cand = tourney (*candidates, complain);
3835 else
3836 cand = NULL;
3837
3838 timevar_cond_stop (TV_OVERLOAD, subtime);
3839 return cand;
3840 }
3841
3842 /* Print an error message about being unable to build a call to FN with
3843 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
3844 be located; CANDIDATES is a possibly empty list of such
3845 functions. */
3846
3847 static void
3848 print_error_for_call_failure (tree fn, VEC(tree,gc) *args, bool any_viable_p,
3849 struct z_candidate *candidates)
3850 {
3851 tree name = DECL_NAME (OVL_CURRENT (fn));
3852 location_t loc = location_of (name);
3853
3854 if (!any_viable_p)
3855 error_at (loc, "no matching function for call to %<%D(%A)%>",
3856 name, build_tree_list_vec (args));
3857 else
3858 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
3859 name, build_tree_list_vec (args));
3860 if (candidates)
3861 print_z_candidates (loc, candidates);
3862 }
3863
3864 /* Return an expression for a call to FN (a namespace-scope function,
3865 or a static member function) with the ARGS. This may change
3866 ARGS. */
3867
3868 tree
3869 build_new_function_call (tree fn, VEC(tree,gc) **args, bool koenig_p,
3870 tsubst_flags_t complain)
3871 {
3872 struct z_candidate *candidates, *cand;
3873 bool any_viable_p;
3874 void *p;
3875 tree result;
3876
3877 if (args != NULL && *args != NULL)
3878 {
3879 *args = resolve_args (*args, complain);
3880 if (*args == NULL)
3881 return error_mark_node;
3882 }
3883
3884 if (flag_tm)
3885 tm_malloc_replacement (fn);
3886
3887 /* If this function was found without using argument dependent
3888 lookup, then we want to ignore any undeclared friend
3889 functions. */
3890 if (!koenig_p)
3891 {
3892 tree orig_fn = fn;
3893
3894 fn = remove_hidden_names (fn);
3895 if (!fn)
3896 {
3897 if (complain & tf_error)
3898 print_error_for_call_failure (orig_fn, *args, false, NULL);
3899 return error_mark_node;
3900 }
3901 }
3902
3903 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3904 p = conversion_obstack_alloc (0);
3905
3906 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
3907 complain);
3908
3909 if (!cand)
3910 {
3911 if (complain & tf_error)
3912 {
3913 if (!any_viable_p && candidates && ! candidates->next
3914 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
3915 return cp_build_function_call_vec (candidates->fn, args, complain);
3916 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3917 fn = TREE_OPERAND (fn, 0);
3918 print_error_for_call_failure (fn, *args, any_viable_p, candidates);
3919 }
3920 result = error_mark_node;
3921 }
3922 else
3923 {
3924 int flags = LOOKUP_NORMAL;
3925 /* If fn is template_id_expr, the call has explicit template arguments
3926 (e.g. func<int>(5)), communicate this info to build_over_call
3927 through flags so that later we can use it to decide whether to warn
3928 about peculiar null pointer conversion. */
3929 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3930 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
3931 result = build_over_call (cand, flags, complain);
3932 }
3933
3934 /* Free all the conversions we allocated. */
3935 obstack_free (&conversion_obstack, p);
3936
3937 return result;
3938 }
3939
3940 /* Build a call to a global operator new. FNNAME is the name of the
3941 operator (either "operator new" or "operator new[]") and ARGS are
3942 the arguments provided. This may change ARGS. *SIZE points to the
3943 total number of bytes required by the allocation, and is updated if
3944 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
3945 be used. If this function determines that no cookie should be
3946 used, after all, *COOKIE_SIZE is set to NULL_TREE. If FN is
3947 non-NULL, it will be set, upon return, to the allocation function
3948 called. */
3949
3950 tree
3951 build_operator_new_call (tree fnname, VEC(tree,gc) **args,
3952 tree *size, tree *cookie_size,
3953 tree *fn, tsubst_flags_t complain)
3954 {
3955 tree fns;
3956 struct z_candidate *candidates;
3957 struct z_candidate *cand;
3958 bool any_viable_p;
3959
3960 if (fn)
3961 *fn = NULL_TREE;
3962 VEC_safe_insert (tree, gc, *args, 0, *size);
3963 *args = resolve_args (*args, complain);
3964 if (*args == NULL)
3965 return error_mark_node;
3966
3967 /* Based on:
3968
3969 [expr.new]
3970
3971 If this lookup fails to find the name, or if the allocated type
3972 is not a class type, the allocation function's name is looked
3973 up in the global scope.
3974
3975 we disregard block-scope declarations of "operator new". */
3976 fns = lookup_function_nonclass (fnname, *args, /*block_p=*/false);
3977
3978 /* Figure out what function is being called. */
3979 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
3980 complain);
3981
3982 /* If no suitable function could be found, issue an error message
3983 and give up. */
3984 if (!cand)
3985 {
3986 if (complain & tf_error)
3987 print_error_for_call_failure (fns, *args, any_viable_p, candidates);
3988 return error_mark_node;
3989 }
3990
3991 /* If a cookie is required, add some extra space. Whether
3992 or not a cookie is required cannot be determined until
3993 after we know which function was called. */
3994 if (*cookie_size)
3995 {
3996 bool use_cookie = true;
3997 if (!abi_version_at_least (2))
3998 {
3999 /* In G++ 3.2, the check was implemented incorrectly; it
4000 looked at the placement expression, rather than the
4001 type of the function. */
4002 if (VEC_length (tree, *args) == 2
4003 && same_type_p (TREE_TYPE (VEC_index (tree, *args, 1)),
4004 ptr_type_node))
4005 use_cookie = false;
4006 }
4007 else
4008 {
4009 tree arg_types;
4010
4011 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4012 /* Skip the size_t parameter. */
4013 arg_types = TREE_CHAIN (arg_types);
4014 /* Check the remaining parameters (if any). */
4015 if (arg_types
4016 && TREE_CHAIN (arg_types) == void_list_node
4017 && same_type_p (TREE_VALUE (arg_types),
4018 ptr_type_node))
4019 use_cookie = false;
4020 }
4021 /* If we need a cookie, adjust the number of bytes allocated. */
4022 if (use_cookie)
4023 {
4024 /* Update the total size. */
4025 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
4026 /* Update the argument list to reflect the adjusted size. */
4027 VEC_replace (tree, *args, 0, *size);
4028 }
4029 else
4030 *cookie_size = NULL_TREE;
4031 }
4032
4033 /* Tell our caller which function we decided to call. */
4034 if (fn)
4035 *fn = cand->fn;
4036
4037 /* Build the CALL_EXPR. */
4038 return build_over_call (cand, LOOKUP_NORMAL, complain);
4039 }
4040
4041 /* Build a new call to operator(). This may change ARGS. */
4042
4043 static tree
4044 build_op_call_1 (tree obj, VEC(tree,gc) **args, tsubst_flags_t complain)
4045 {
4046 struct z_candidate *candidates = 0, *cand;
4047 tree fns, convs, first_mem_arg = NULL_TREE;
4048 tree type = TREE_TYPE (obj);
4049 bool any_viable_p;
4050 tree result = NULL_TREE;
4051 void *p;
4052
4053 if (error_operand_p (obj))
4054 return error_mark_node;
4055
4056 obj = prep_operand (obj);
4057
4058 if (TYPE_PTRMEMFUNC_P (type))
4059 {
4060 if (complain & tf_error)
4061 /* It's no good looking for an overloaded operator() on a
4062 pointer-to-member-function. */
4063 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
4064 return error_mark_node;
4065 }
4066
4067 if (TYPE_BINFO (type))
4068 {
4069 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
4070 if (fns == error_mark_node)
4071 return error_mark_node;
4072 }
4073 else
4074 fns = NULL_TREE;
4075
4076 if (args != NULL && *args != NULL)
4077 {
4078 *args = resolve_args (*args, complain);
4079 if (*args == NULL)
4080 return error_mark_node;
4081 }
4082
4083 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4084 p = conversion_obstack_alloc (0);
4085
4086 if (fns)
4087 {
4088 first_mem_arg = build_this (obj);
4089
4090 add_candidates (BASELINK_FUNCTIONS (fns),
4091 first_mem_arg, *args, NULL_TREE,
4092 NULL_TREE, false,
4093 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4094 LOOKUP_NORMAL, &candidates, complain);
4095 }
4096
4097 convs = lookup_conversions (type);
4098
4099 for (; convs; convs = TREE_CHAIN (convs))
4100 {
4101 tree fns = TREE_VALUE (convs);
4102 tree totype = TREE_TYPE (convs);
4103
4104 if ((TREE_CODE (totype) == POINTER_TYPE
4105 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
4106 || (TREE_CODE (totype) == REFERENCE_TYPE
4107 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
4108 || (TREE_CODE (totype) == REFERENCE_TYPE
4109 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
4110 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
4111 for (; fns; fns = OVL_NEXT (fns))
4112 {
4113 tree fn = OVL_CURRENT (fns);
4114
4115 if (DECL_NONCONVERTING_P (fn))
4116 continue;
4117
4118 if (TREE_CODE (fn) == TEMPLATE_DECL)
4119 add_template_conv_candidate
4120 (&candidates, fn, obj, NULL_TREE, *args, totype,
4121 /*access_path=*/NULL_TREE,
4122 /*conversion_path=*/NULL_TREE, complain);
4123 else
4124 add_conv_candidate (&candidates, fn, obj, NULL_TREE,
4125 *args, /*conversion_path=*/NULL_TREE,
4126 /*access_path=*/NULL_TREE, complain);
4127 }
4128 }
4129
4130 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4131 if (!any_viable_p)
4132 {
4133 if (complain & tf_error)
4134 {
4135 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4136 build_tree_list_vec (*args));
4137 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4138 }
4139 result = error_mark_node;
4140 }
4141 else
4142 {
4143 cand = tourney (candidates, complain);
4144 if (cand == 0)
4145 {
4146 if (complain & tf_error)
4147 {
4148 error ("call of %<(%T) (%A)%> is ambiguous",
4149 TREE_TYPE (obj), build_tree_list_vec (*args));
4150 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4151 }
4152 result = error_mark_node;
4153 }
4154 /* Since cand->fn will be a type, not a function, for a conversion
4155 function, we must be careful not to unconditionally look at
4156 DECL_NAME here. */
4157 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4158 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
4159 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4160 else
4161 {
4162 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
4163 complain);
4164 obj = convert_from_reference (obj);
4165 result = cp_build_function_call_vec (obj, args, complain);
4166 }
4167 }
4168
4169 /* Free all the conversions we allocated. */
4170 obstack_free (&conversion_obstack, p);
4171
4172 return result;
4173 }
4174
4175 /* Wrapper for above. */
4176
4177 tree
4178 build_op_call (tree obj, VEC(tree,gc) **args, tsubst_flags_t complain)
4179 {
4180 tree ret;
4181 bool subtime = timevar_cond_start (TV_OVERLOAD);
4182 ret = build_op_call_1 (obj, args, complain);
4183 timevar_cond_stop (TV_OVERLOAD, subtime);
4184 return ret;
4185 }
4186
4187 /* Called by op_error to prepare format strings suitable for the error
4188 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4189 and a suffix (controlled by NTYPES). */
4190
4191 static const char *
4192 op_error_string (const char *errmsg, int ntypes, bool match)
4193 {
4194 const char *msg;
4195
4196 const char *msgp = concat (match ? G_("ambiguous overload for ")
4197 : G_("no match for "), errmsg, NULL);
4198
4199 if (ntypes == 3)
4200 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4201 else if (ntypes == 2)
4202 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4203 else
4204 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4205
4206 return msg;
4207 }
4208
4209 static void
4210 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4211 tree arg1, tree arg2, tree arg3, bool match)
4212 {
4213 const char *opname;
4214
4215 if (code == MODIFY_EXPR)
4216 opname = assignment_operator_name_info[code2].name;
4217 else
4218 opname = operator_name_info[code].name;
4219
4220 switch (code)
4221 {
4222 case COND_EXPR:
4223 if (flag_diagnostics_show_caret)
4224 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4225 3, match),
4226 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4227 else
4228 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4229 "in %<%E ? %E : %E%>"), 3, match),
4230 arg1, arg2, arg3,
4231 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4232 break;
4233
4234 case POSTINCREMENT_EXPR:
4235 case POSTDECREMENT_EXPR:
4236 if (flag_diagnostics_show_caret)
4237 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4238 opname, TREE_TYPE (arg1));
4239 else
4240 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4241 1, match),
4242 opname, arg1, opname, TREE_TYPE (arg1));
4243 break;
4244
4245 case ARRAY_REF:
4246 if (flag_diagnostics_show_caret)
4247 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4248 TREE_TYPE (arg1), TREE_TYPE (arg2));
4249 else
4250 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4251 2, match),
4252 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4253 break;
4254
4255 case REALPART_EXPR:
4256 case IMAGPART_EXPR:
4257 if (flag_diagnostics_show_caret)
4258 error_at (loc, op_error_string (G_("%qs"), 1, match),
4259 opname, TREE_TYPE (arg1));
4260 else
4261 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4262 opname, opname, arg1, TREE_TYPE (arg1));
4263 break;
4264
4265 default:
4266 if (arg2)
4267 if (flag_diagnostics_show_caret)
4268 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4269 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4270 else
4271 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4272 2, match),
4273 opname, arg1, opname, arg2,
4274 TREE_TYPE (arg1), TREE_TYPE (arg2));
4275 else
4276 if (flag_diagnostics_show_caret)
4277 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4278 opname, TREE_TYPE (arg1));
4279 else
4280 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4281 1, match),
4282 opname, opname, arg1, TREE_TYPE (arg1));
4283 break;
4284 }
4285 }
4286
4287 /* Return the implicit conversion sequence that could be used to
4288 convert E1 to E2 in [expr.cond]. */
4289
4290 static conversion *
4291 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4292 {
4293 tree t1 = non_reference (TREE_TYPE (e1));
4294 tree t2 = non_reference (TREE_TYPE (e2));
4295 conversion *conv;
4296 bool good_base;
4297
4298 /* [expr.cond]
4299
4300 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4301 implicitly converted (clause _conv_) to the type "lvalue reference to
4302 T2", subject to the constraint that in the conversion the
4303 reference must bind directly (_dcl.init.ref_) to an lvalue. */
4304 if (real_lvalue_p (e2))
4305 {
4306 conv = implicit_conversion (build_reference_type (t2),
4307 t1,
4308 e1,
4309 /*c_cast_p=*/false,
4310 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4311 |LOOKUP_ONLYCONVERTING,
4312 complain);
4313 if (conv)
4314 return conv;
4315 }
4316
4317 /* [expr.cond]
4318
4319 If E1 and E2 have class type, and the underlying class types are
4320 the same or one is a base class of the other: E1 can be converted
4321 to match E2 if the class of T2 is the same type as, or a base
4322 class of, the class of T1, and the cv-qualification of T2 is the
4323 same cv-qualification as, or a greater cv-qualification than, the
4324 cv-qualification of T1. If the conversion is applied, E1 is
4325 changed to an rvalue of type T2 that still refers to the original
4326 source class object (or the appropriate subobject thereof). */
4327 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4328 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4329 {
4330 if (good_base && at_least_as_qualified_p (t2, t1))
4331 {
4332 conv = build_identity_conv (t1, e1);
4333 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4334 TYPE_MAIN_VARIANT (t2)))
4335 conv = build_conv (ck_base, t2, conv);
4336 else
4337 conv = build_conv (ck_rvalue, t2, conv);
4338 return conv;
4339 }
4340 else
4341 return NULL;
4342 }
4343 else
4344 /* [expr.cond]
4345
4346 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4347 converted to the type that expression E2 would have if E2 were
4348 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4349 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4350 LOOKUP_IMPLICIT, complain);
4351 }
4352
4353 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4354 arguments to the conditional expression. */
4355
4356 static tree
4357 build_conditional_expr_1 (tree arg1, tree arg2, tree arg3,
4358 tsubst_flags_t complain)
4359 {
4360 tree arg2_type;
4361 tree arg3_type;
4362 tree result = NULL_TREE;
4363 tree result_type = NULL_TREE;
4364 bool lvalue_p = true;
4365 struct z_candidate *candidates = 0;
4366 struct z_candidate *cand;
4367 void *p;
4368 tree orig_arg2, orig_arg3;
4369
4370 /* As a G++ extension, the second argument to the conditional can be
4371 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4372 c'.) If the second operand is omitted, make sure it is
4373 calculated only once. */
4374 if (!arg2)
4375 {
4376 if (complain & tf_error)
4377 pedwarn (input_location, OPT_Wpedantic,
4378 "ISO C++ forbids omitting the middle term of a ?: expression");
4379
4380 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4381 if (real_lvalue_p (arg1))
4382 arg2 = arg1 = stabilize_reference (arg1);
4383 else
4384 arg2 = arg1 = save_expr (arg1);
4385 }
4386
4387 /* [expr.cond]
4388
4389 The first expression is implicitly converted to bool (clause
4390 _conv_). */
4391 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4392 LOOKUP_NORMAL);
4393
4394 /* If something has already gone wrong, just pass that fact up the
4395 tree. */
4396 if (error_operand_p (arg1)
4397 || error_operand_p (arg2)
4398 || error_operand_p (arg3))
4399 return error_mark_node;
4400
4401 /* [expr.cond]
4402
4403 If either the second or the third operand has type (possibly
4404 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4405 array-to-pointer (_conv.array_), and function-to-pointer
4406 (_conv.func_) standard conversions are performed on the second
4407 and third operands. */
4408 orig_arg2 = arg2;
4409 orig_arg3 = arg3;
4410 arg2_type = unlowered_expr_type (arg2);
4411 arg3_type = unlowered_expr_type (arg3);
4412 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4413 {
4414 /* Do the conversions. We don't these for `void' type arguments
4415 since it can't have any effect and since decay_conversion
4416 does not handle that case gracefully. */
4417 if (!VOID_TYPE_P (arg2_type))
4418 arg2 = decay_conversion (arg2, complain);
4419 if (!VOID_TYPE_P (arg3_type))
4420 arg3 = decay_conversion (arg3, complain);
4421 arg2_type = TREE_TYPE (arg2);
4422 arg3_type = TREE_TYPE (arg3);
4423
4424 /* [expr.cond]
4425
4426 One of the following shall hold:
4427
4428 --The second or the third operand (but not both) is a
4429 throw-expression (_except.throw_); the result is of the
4430 type of the other and is an rvalue.
4431
4432 --Both the second and the third operands have type void; the
4433 result is of type void and is an rvalue.
4434
4435 We must avoid calling force_rvalue for expressions of type
4436 "void" because it will complain that their value is being
4437 used. */
4438 if (TREE_CODE (arg2) == THROW_EXPR
4439 && TREE_CODE (arg3) != THROW_EXPR)
4440 {
4441 if (!VOID_TYPE_P (arg3_type))
4442 {
4443 arg3 = force_rvalue (arg3, complain);
4444 if (arg3 == error_mark_node)
4445 return error_mark_node;
4446 }
4447 arg3_type = TREE_TYPE (arg3);
4448 result_type = arg3_type;
4449 }
4450 else if (TREE_CODE (arg2) != THROW_EXPR
4451 && TREE_CODE (arg3) == THROW_EXPR)
4452 {
4453 if (!VOID_TYPE_P (arg2_type))
4454 {
4455 arg2 = force_rvalue (arg2, complain);
4456 if (arg2 == error_mark_node)
4457 return error_mark_node;
4458 }
4459 arg2_type = TREE_TYPE (arg2);
4460 result_type = arg2_type;
4461 }
4462 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4463 result_type = void_type_node;
4464 else
4465 {
4466 if (complain & tf_error)
4467 {
4468 if (VOID_TYPE_P (arg2_type))
4469 error ("second operand to the conditional operator "
4470 "is of type %<void%>, "
4471 "but the third operand is neither a throw-expression "
4472 "nor of type %<void%>");
4473 else
4474 error ("third operand to the conditional operator "
4475 "is of type %<void%>, "
4476 "but the second operand is neither a throw-expression "
4477 "nor of type %<void%>");
4478 }
4479 return error_mark_node;
4480 }
4481
4482 lvalue_p = false;
4483 goto valid_operands;
4484 }
4485 /* [expr.cond]
4486
4487 Otherwise, if the second and third operand have different types,
4488 and either has (possibly cv-qualified) class type, an attempt is
4489 made to convert each of those operands to the type of the other. */
4490 else if (!same_type_p (arg2_type, arg3_type)
4491 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4492 {
4493 conversion *conv2;
4494 conversion *conv3;
4495
4496 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4497 p = conversion_obstack_alloc (0);
4498
4499 conv2 = conditional_conversion (arg2, arg3, complain);
4500 conv3 = conditional_conversion (arg3, arg2, complain);
4501
4502 /* [expr.cond]
4503
4504 If both can be converted, or one can be converted but the
4505 conversion is ambiguous, the program is ill-formed. If
4506 neither can be converted, the operands are left unchanged and
4507 further checking is performed as described below. If exactly
4508 one conversion is possible, that conversion is applied to the
4509 chosen operand and the converted operand is used in place of
4510 the original operand for the remainder of this section. */
4511 if ((conv2 && !conv2->bad_p
4512 && conv3 && !conv3->bad_p)
4513 || (conv2 && conv2->kind == ck_ambig)
4514 || (conv3 && conv3->kind == ck_ambig))
4515 {
4516 error ("operands to ?: have different types %qT and %qT",
4517 arg2_type, arg3_type);
4518 result = error_mark_node;
4519 }
4520 else if (conv2 && (!conv2->bad_p || !conv3))
4521 {
4522 arg2 = convert_like (conv2, arg2, complain);
4523 arg2 = convert_from_reference (arg2);
4524 arg2_type = TREE_TYPE (arg2);
4525 /* Even if CONV2 is a valid conversion, the result of the
4526 conversion may be invalid. For example, if ARG3 has type
4527 "volatile X", and X does not have a copy constructor
4528 accepting a "volatile X&", then even if ARG2 can be
4529 converted to X, the conversion will fail. */
4530 if (error_operand_p (arg2))
4531 result = error_mark_node;
4532 }
4533 else if (conv3 && (!conv3->bad_p || !conv2))
4534 {
4535 arg3 = convert_like (conv3, arg3, complain);
4536 arg3 = convert_from_reference (arg3);
4537 arg3_type = TREE_TYPE (arg3);
4538 if (error_operand_p (arg3))
4539 result = error_mark_node;
4540 }
4541
4542 /* Free all the conversions we allocated. */
4543 obstack_free (&conversion_obstack, p);
4544
4545 if (result)
4546 return result;
4547
4548 /* If, after the conversion, both operands have class type,
4549 treat the cv-qualification of both operands as if it were the
4550 union of the cv-qualification of the operands.
4551
4552 The standard is not clear about what to do in this
4553 circumstance. For example, if the first operand has type
4554 "const X" and the second operand has a user-defined
4555 conversion to "volatile X", what is the type of the second
4556 operand after this step? Making it be "const X" (matching
4557 the first operand) seems wrong, as that discards the
4558 qualification without actually performing a copy. Leaving it
4559 as "volatile X" seems wrong as that will result in the
4560 conditional expression failing altogether, even though,
4561 according to this step, the one operand could be converted to
4562 the type of the other. */
4563 if ((conv2 || conv3)
4564 && CLASS_TYPE_P (arg2_type)
4565 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
4566 arg2_type = arg3_type =
4567 cp_build_qualified_type (arg2_type,
4568 cp_type_quals (arg2_type)
4569 | cp_type_quals (arg3_type));
4570 }
4571
4572 /* [expr.cond]
4573
4574 If the second and third operands are lvalues and have the same
4575 type, the result is of that type and is an lvalue. */
4576 if (real_lvalue_p (arg2)
4577 && real_lvalue_p (arg3)
4578 && same_type_p (arg2_type, arg3_type))
4579 {
4580 result_type = arg2_type;
4581 arg2 = mark_lvalue_use (arg2);
4582 arg3 = mark_lvalue_use (arg3);
4583 goto valid_operands;
4584 }
4585
4586 /* [expr.cond]
4587
4588 Otherwise, the result is an rvalue. If the second and third
4589 operand do not have the same type, and either has (possibly
4590 cv-qualified) class type, overload resolution is used to
4591 determine the conversions (if any) to be applied to the operands
4592 (_over.match.oper_, _over.built_). */
4593 lvalue_p = false;
4594 if (!same_type_p (arg2_type, arg3_type)
4595 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
4596 {
4597 tree args[3];
4598 conversion *conv;
4599 bool any_viable_p;
4600
4601 /* Rearrange the arguments so that add_builtin_candidate only has
4602 to know about two args. In build_builtin_candidate, the
4603 arguments are unscrambled. */
4604 args[0] = arg2;
4605 args[1] = arg3;
4606 args[2] = arg1;
4607 add_builtin_candidates (&candidates,
4608 COND_EXPR,
4609 NOP_EXPR,
4610 ansi_opname (COND_EXPR),
4611 args,
4612 LOOKUP_NORMAL, complain);
4613
4614 /* [expr.cond]
4615
4616 If the overload resolution fails, the program is
4617 ill-formed. */
4618 candidates = splice_viable (candidates, pedantic, &any_viable_p);
4619 if (!any_viable_p)
4620 {
4621 if (complain & tf_error)
4622 {
4623 op_error (input_location, COND_EXPR, NOP_EXPR,
4624 arg1, arg2, arg3, FALSE);
4625 print_z_candidates (location_of (arg1), candidates);
4626 }
4627 return error_mark_node;
4628 }
4629 cand = tourney (candidates, complain);
4630 if (!cand)
4631 {
4632 if (complain & tf_error)
4633 {
4634 op_error (input_location, COND_EXPR, NOP_EXPR,
4635 arg1, arg2, arg3, FALSE);
4636 print_z_candidates (location_of (arg1), candidates);
4637 }
4638 return error_mark_node;
4639 }
4640
4641 /* [expr.cond]
4642
4643 Otherwise, the conversions thus determined are applied, and
4644 the converted operands are used in place of the original
4645 operands for the remainder of this section. */
4646 conv = cand->convs[0];
4647 arg1 = convert_like (conv, arg1, complain);
4648 conv = cand->convs[1];
4649 arg2 = convert_like (conv, arg2, complain);
4650 arg2_type = TREE_TYPE (arg2);
4651 conv = cand->convs[2];
4652 arg3 = convert_like (conv, arg3, complain);
4653 arg3_type = TREE_TYPE (arg3);
4654 }
4655
4656 /* [expr.cond]
4657
4658 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
4659 and function-to-pointer (_conv.func_) standard conversions are
4660 performed on the second and third operands.
4661
4662 We need to force the lvalue-to-rvalue conversion here for class types,
4663 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
4664 that isn't wrapped with a TARGET_EXPR plays havoc with exception
4665 regions. */
4666
4667 arg2 = force_rvalue (arg2, complain);
4668 if (!CLASS_TYPE_P (arg2_type))
4669 arg2_type = TREE_TYPE (arg2);
4670
4671 arg3 = force_rvalue (arg3, complain);
4672 if (!CLASS_TYPE_P (arg3_type))
4673 arg3_type = TREE_TYPE (arg3);
4674
4675 if (arg2 == error_mark_node || arg3 == error_mark_node)
4676 return error_mark_node;
4677
4678 /* [expr.cond]
4679
4680 After those conversions, one of the following shall hold:
4681
4682 --The second and third operands have the same type; the result is of
4683 that type. */
4684 if (same_type_p (arg2_type, arg3_type))
4685 result_type = arg2_type;
4686 /* [expr.cond]
4687
4688 --The second and third operands have arithmetic or enumeration
4689 type; the usual arithmetic conversions are performed to bring
4690 them to a common type, and the result is of that type. */
4691 else if ((ARITHMETIC_TYPE_P (arg2_type)
4692 || UNSCOPED_ENUM_P (arg2_type))
4693 && (ARITHMETIC_TYPE_P (arg3_type)
4694 || UNSCOPED_ENUM_P (arg3_type)))
4695 {
4696 /* In this case, there is always a common type. */
4697 result_type = type_after_usual_arithmetic_conversions (arg2_type,
4698 arg3_type);
4699 do_warn_double_promotion (result_type, arg2_type, arg3_type,
4700 "implicit conversion from %qT to %qT to "
4701 "match other result of conditional",
4702 input_location);
4703
4704 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
4705 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
4706 {
4707 if (TREE_CODE (orig_arg2) == CONST_DECL
4708 && TREE_CODE (orig_arg3) == CONST_DECL
4709 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
4710 /* Two enumerators from the same enumeration can have different
4711 types when the enumeration is still being defined. */;
4712 else if (complain & tf_warning)
4713 warning (OPT_Wenum_compare,
4714 "enumeral mismatch in conditional expression: %qT vs %qT",
4715 arg2_type, arg3_type);
4716 }
4717 else if (extra_warnings
4718 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
4719 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
4720 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
4721 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
4722 {
4723 if (complain & tf_warning)
4724 warning (0,
4725 "enumeral and non-enumeral type in conditional expression");
4726 }
4727
4728 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4729 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4730 }
4731 /* [expr.cond]
4732
4733 --The second and third operands have pointer type, or one has
4734 pointer type and the other is a null pointer constant; pointer
4735 conversions (_conv.ptr_) and qualification conversions
4736 (_conv.qual_) are performed to bring them to their composite
4737 pointer type (_expr.rel_). The result is of the composite
4738 pointer type.
4739
4740 --The second and third operands have pointer to member type, or
4741 one has pointer to member type and the other is a null pointer
4742 constant; pointer to member conversions (_conv.mem_) and
4743 qualification conversions (_conv.qual_) are performed to bring
4744 them to a common type, whose cv-qualification shall match the
4745 cv-qualification of either the second or the third operand.
4746 The result is of the common type. */
4747 else if ((null_ptr_cst_p (arg2)
4748 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
4749 || (null_ptr_cst_p (arg3)
4750 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
4751 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
4752 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
4753 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
4754 {
4755 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
4756 arg3, CPO_CONDITIONAL_EXPR,
4757 complain);
4758 if (result_type == error_mark_node)
4759 return error_mark_node;
4760 arg2 = perform_implicit_conversion (result_type, arg2, complain);
4761 arg3 = perform_implicit_conversion (result_type, arg3, complain);
4762 }
4763
4764 if (!result_type)
4765 {
4766 if (complain & tf_error)
4767 error ("operands to ?: have different types %qT and %qT",
4768 arg2_type, arg3_type);
4769 return error_mark_node;
4770 }
4771
4772 valid_operands:
4773 result = build3 (COND_EXPR, result_type, arg1, arg2, arg3);
4774 if (!cp_unevaluated_operand)
4775 /* Avoid folding within decltype (c++/42013) and noexcept. */
4776 result = fold_if_not_in_template (result);
4777
4778 /* We can't use result_type below, as fold might have returned a
4779 throw_expr. */
4780
4781 if (!lvalue_p)
4782 {
4783 /* Expand both sides into the same slot, hopefully the target of
4784 the ?: expression. We used to check for TARGET_EXPRs here,
4785 but now we sometimes wrap them in NOP_EXPRs so the test would
4786 fail. */
4787 if (CLASS_TYPE_P (TREE_TYPE (result)))
4788 result = get_target_expr (result);
4789 /* If this expression is an rvalue, but might be mistaken for an
4790 lvalue, we must add a NON_LVALUE_EXPR. */
4791 result = rvalue (result);
4792 }
4793
4794 return result;
4795 }
4796
4797 /* Wrapper for above. */
4798
4799 tree
4800 build_conditional_expr (tree arg1, tree arg2, tree arg3,
4801 tsubst_flags_t complain)
4802 {
4803 tree ret;
4804 bool subtime = timevar_cond_start (TV_OVERLOAD);
4805 ret = build_conditional_expr_1 (arg1, arg2, arg3, complain);
4806 timevar_cond_stop (TV_OVERLOAD, subtime);
4807 return ret;
4808 }
4809
4810 /* OPERAND is an operand to an expression. Perform necessary steps
4811 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
4812 returned. */
4813
4814 static tree
4815 prep_operand (tree operand)
4816 {
4817 if (operand)
4818 {
4819 if (CLASS_TYPE_P (TREE_TYPE (operand))
4820 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
4821 /* Make sure the template type is instantiated now. */
4822 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
4823 }
4824
4825 return operand;
4826 }
4827
4828 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
4829 OVERLOAD) to the CANDIDATES, returning an updated list of
4830 CANDIDATES. The ARGS are the arguments provided to the call;
4831 if FIRST_ARG is non-null it is the implicit object argument,
4832 otherwise the first element of ARGS is used if needed. The
4833 EXPLICIT_TARGS are explicit template arguments provided.
4834 TEMPLATE_ONLY is true if only template functions should be
4835 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
4836 add_function_candidate. */
4837
4838 static void
4839 add_candidates (tree fns, tree first_arg, const VEC(tree,gc) *args,
4840 tree return_type,
4841 tree explicit_targs, bool template_only,
4842 tree conversion_path, tree access_path,
4843 int flags,
4844 struct z_candidate **candidates,
4845 tsubst_flags_t complain)
4846 {
4847 tree ctype;
4848 const VEC(tree,gc) *non_static_args;
4849 bool check_list_ctor;
4850 bool check_converting;
4851 unification_kind_t strict;
4852 tree fn;
4853
4854 if (!fns)
4855 return;
4856
4857 /* Precalculate special handling of constructors and conversion ops. */
4858 fn = OVL_CURRENT (fns);
4859 if (DECL_CONV_FN_P (fn))
4860 {
4861 check_list_ctor = false;
4862 check_converting = !!(flags & LOOKUP_ONLYCONVERTING);
4863 if (flags & LOOKUP_NO_CONVERSION)
4864 /* We're doing return_type(x). */
4865 strict = DEDUCE_CONV;
4866 else
4867 /* We're doing x.operator return_type(). */
4868 strict = DEDUCE_EXACT;
4869 /* [over.match.funcs] For conversion functions, the function
4870 is considered to be a member of the class of the implicit
4871 object argument for the purpose of defining the type of
4872 the implicit object parameter. */
4873 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (first_arg)));
4874 }
4875 else
4876 {
4877 if (DECL_CONSTRUCTOR_P (fn))
4878 {
4879 check_list_ctor = !!(flags & LOOKUP_LIST_ONLY);
4880 /* For list-initialization we consider explicit constructors
4881 and complain if one is chosen. */
4882 check_converting
4883 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
4884 == LOOKUP_ONLYCONVERTING);
4885 }
4886 else
4887 {
4888 check_list_ctor = false;
4889 check_converting = false;
4890 }
4891 strict = DEDUCE_CALL;
4892 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
4893 }
4894
4895 if (first_arg)
4896 non_static_args = args;
4897 else
4898 /* Delay creating the implicit this parameter until it is needed. */
4899 non_static_args = NULL;
4900
4901 for (; fns; fns = OVL_NEXT (fns))
4902 {
4903 tree fn_first_arg;
4904 const VEC(tree,gc) *fn_args;
4905
4906 fn = OVL_CURRENT (fns);
4907
4908 if (check_converting && DECL_NONCONVERTING_P (fn))
4909 continue;
4910 if (check_list_ctor && !is_list_ctor (fn))
4911 continue;
4912
4913 /* Figure out which set of arguments to use. */
4914 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
4915 {
4916 /* If this function is a non-static member and we didn't get an
4917 implicit object argument, move it out of args. */
4918 if (first_arg == NULL_TREE)
4919 {
4920 unsigned int ix;
4921 tree arg;
4922 VEC(tree,gc) *tempvec
4923 = VEC_alloc (tree, gc, VEC_length (tree, args) - 1);
4924 for (ix = 1; VEC_iterate (tree, args, ix, arg); ++ix)
4925 VEC_quick_push (tree, tempvec, arg);
4926 non_static_args = tempvec;
4927 first_arg = build_this (VEC_index (tree, args, 0));
4928 }
4929
4930 fn_first_arg = first_arg;
4931 fn_args = non_static_args;
4932 }
4933 else
4934 {
4935 /* Otherwise, just use the list of arguments provided. */
4936 fn_first_arg = NULL_TREE;
4937 fn_args = args;
4938 }
4939
4940 if (TREE_CODE (fn) == TEMPLATE_DECL)
4941 add_template_candidate (candidates,
4942 fn,
4943 ctype,
4944 explicit_targs,
4945 fn_first_arg,
4946 fn_args,
4947 return_type,
4948 access_path,
4949 conversion_path,
4950 flags,
4951 strict,
4952 complain);
4953 else if (!template_only)
4954 add_function_candidate (candidates,
4955 fn,
4956 ctype,
4957 fn_first_arg,
4958 fn_args,
4959 access_path,
4960 conversion_path,
4961 flags,
4962 complain);
4963 }
4964 }
4965
4966 static tree
4967 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
4968 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
4969 {
4970 struct z_candidate *candidates = 0, *cand;
4971 VEC(tree,gc) *arglist;
4972 tree fnname;
4973 tree args[3];
4974 tree result = NULL_TREE;
4975 bool result_valid_p = false;
4976 enum tree_code code2 = NOP_EXPR;
4977 enum tree_code code_orig_arg1 = ERROR_MARK;
4978 enum tree_code code_orig_arg2 = ERROR_MARK;
4979 conversion *conv;
4980 void *p;
4981 bool strict_p;
4982 bool any_viable_p;
4983
4984 if (error_operand_p (arg1)
4985 || error_operand_p (arg2)
4986 || error_operand_p (arg3))
4987 return error_mark_node;
4988
4989 if (code == MODIFY_EXPR)
4990 {
4991 code2 = TREE_CODE (arg3);
4992 arg3 = NULL_TREE;
4993 fnname = ansi_assopname (code2);
4994 }
4995 else
4996 fnname = ansi_opname (code);
4997
4998 arg1 = prep_operand (arg1);
4999
5000 switch (code)
5001 {
5002 case NEW_EXPR:
5003 case VEC_NEW_EXPR:
5004 case VEC_DELETE_EXPR:
5005 case DELETE_EXPR:
5006 /* Use build_op_new_call and build_op_delete_call instead. */
5007 gcc_unreachable ();
5008
5009 case CALL_EXPR:
5010 /* Use build_op_call instead. */
5011 gcc_unreachable ();
5012
5013 case TRUTH_ORIF_EXPR:
5014 case TRUTH_ANDIF_EXPR:
5015 case TRUTH_AND_EXPR:
5016 case TRUTH_OR_EXPR:
5017 /* These are saved for the sake of warn_logical_operator. */
5018 code_orig_arg1 = TREE_CODE (arg1);
5019 code_orig_arg2 = TREE_CODE (arg2);
5020
5021 default:
5022 break;
5023 }
5024
5025 arg2 = prep_operand (arg2);
5026 arg3 = prep_operand (arg3);
5027
5028 if (code == COND_EXPR)
5029 /* Use build_conditional_expr instead. */
5030 gcc_unreachable ();
5031 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
5032 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
5033 goto builtin;
5034
5035 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5036 arg2 = integer_zero_node;
5037
5038 arglist = VEC_alloc (tree, gc, 3);
5039 VEC_quick_push (tree, arglist, arg1);
5040 if (arg2 != NULL_TREE)
5041 VEC_quick_push (tree, arglist, arg2);
5042 if (arg3 != NULL_TREE)
5043 VEC_quick_push (tree, arglist, arg3);
5044
5045 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5046 p = conversion_obstack_alloc (0);
5047
5048 /* Add namespace-scope operators to the list of functions to
5049 consider. */
5050 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
5051 NULL_TREE, arglist, NULL_TREE,
5052 NULL_TREE, false, NULL_TREE, NULL_TREE,
5053 flags, &candidates, complain);
5054 /* Add class-member operators to the candidate set. */
5055 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5056 {
5057 tree fns;
5058
5059 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5060 if (fns == error_mark_node)
5061 {
5062 result = error_mark_node;
5063 goto user_defined_result_ready;
5064 }
5065 if (fns)
5066 add_candidates (BASELINK_FUNCTIONS (fns),
5067 NULL_TREE, arglist, NULL_TREE,
5068 NULL_TREE, false,
5069 BASELINK_BINFO (fns),
5070 BASELINK_ACCESS_BINFO (fns),
5071 flags, &candidates, complain);
5072 }
5073
5074 args[0] = arg1;
5075 args[1] = arg2;
5076 args[2] = NULL_TREE;
5077
5078 add_builtin_candidates (&candidates, code, code2, fnname, args,
5079 flags, complain);
5080
5081 switch (code)
5082 {
5083 case COMPOUND_EXPR:
5084 case ADDR_EXPR:
5085 /* For these, the built-in candidates set is empty
5086 [over.match.oper]/3. We don't want non-strict matches
5087 because exact matches are always possible with built-in
5088 operators. The built-in candidate set for COMPONENT_REF
5089 would be empty too, but since there are no such built-in
5090 operators, we accept non-strict matches for them. */
5091 strict_p = true;
5092 break;
5093
5094 default:
5095 strict_p = pedantic;
5096 break;
5097 }
5098
5099 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5100 if (!any_viable_p)
5101 {
5102 switch (code)
5103 {
5104 case POSTINCREMENT_EXPR:
5105 case POSTDECREMENT_EXPR:
5106 /* Don't try anything fancy if we're not allowed to produce
5107 errors. */
5108 if (!(complain & tf_error))
5109 return error_mark_node;
5110
5111 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5112 distinguish between prefix and postfix ++ and
5113 operator++() was used for both, so we allow this with
5114 -fpermissive. */
5115 else
5116 {
5117 const char *msg = (flag_permissive)
5118 ? G_("no %<%D(int)%> declared for postfix %qs,"
5119 " trying prefix operator instead")
5120 : G_("no %<%D(int)%> declared for postfix %qs");
5121 permerror (loc, msg, fnname, operator_name_info[code].name);
5122 }
5123
5124 if (!flag_permissive)
5125 return error_mark_node;
5126
5127 if (code == POSTINCREMENT_EXPR)
5128 code = PREINCREMENT_EXPR;
5129 else
5130 code = PREDECREMENT_EXPR;
5131 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5132 NULL_TREE, overload, complain);
5133 break;
5134
5135 /* The caller will deal with these. */
5136 case ADDR_EXPR:
5137 case COMPOUND_EXPR:
5138 case COMPONENT_REF:
5139 result = NULL_TREE;
5140 result_valid_p = true;
5141 break;
5142
5143 default:
5144 if (complain & tf_error)
5145 {
5146 /* If one of the arguments of the operator represents
5147 an invalid use of member function pointer, try to report
5148 a meaningful error ... */
5149 if (invalid_nonstatic_memfn_p (arg1, tf_error)
5150 || invalid_nonstatic_memfn_p (arg2, tf_error)
5151 || invalid_nonstatic_memfn_p (arg3, tf_error))
5152 /* We displayed the error message. */;
5153 else
5154 {
5155 /* ... Otherwise, report the more generic
5156 "no matching operator found" error */
5157 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5158 print_z_candidates (loc, candidates);
5159 }
5160 }
5161 result = error_mark_node;
5162 break;
5163 }
5164 }
5165 else
5166 {
5167 cand = tourney (candidates, complain);
5168 if (cand == 0)
5169 {
5170 if (complain & tf_error)
5171 {
5172 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5173 print_z_candidates (loc, candidates);
5174 }
5175 result = error_mark_node;
5176 }
5177 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5178 {
5179 if (overload)
5180 *overload = cand->fn;
5181
5182 if (resolve_args (arglist, complain) == NULL)
5183 result = error_mark_node;
5184 else
5185 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5186 }
5187 else
5188 {
5189 /* Give any warnings we noticed during overload resolution. */
5190 if (cand->warnings && (complain & tf_warning))
5191 {
5192 struct candidate_warning *w;
5193 for (w = cand->warnings; w; w = w->next)
5194 joust (cand, w->loser, 1, complain);
5195 }
5196
5197 /* Check for comparison of different enum types. */
5198 switch (code)
5199 {
5200 case GT_EXPR:
5201 case LT_EXPR:
5202 case GE_EXPR:
5203 case LE_EXPR:
5204 case EQ_EXPR:
5205 case NE_EXPR:
5206 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5207 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5208 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5209 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5210 && (complain & tf_warning))
5211 {
5212 warning (OPT_Wenum_compare,
5213 "comparison between %q#T and %q#T",
5214 TREE_TYPE (arg1), TREE_TYPE (arg2));
5215 }
5216 break;
5217 default:
5218 break;
5219 }
5220
5221 /* We need to strip any leading REF_BIND so that bitfields
5222 don't cause errors. This should not remove any important
5223 conversions, because builtins don't apply to class
5224 objects directly. */
5225 conv = cand->convs[0];
5226 if (conv->kind == ck_ref_bind)
5227 conv = next_conversion (conv);
5228 arg1 = convert_like (conv, arg1, complain);
5229
5230 if (arg2)
5231 {
5232 conv = cand->convs[1];
5233 if (conv->kind == ck_ref_bind)
5234 conv = next_conversion (conv);
5235 else
5236 arg2 = decay_conversion (arg2, complain);
5237
5238 /* We need to call warn_logical_operator before
5239 converting arg2 to a boolean_type, but after
5240 decaying an enumerator to its value. */
5241 if (complain & tf_warning)
5242 warn_logical_operator (loc, code, boolean_type_node,
5243 code_orig_arg1, arg1,
5244 code_orig_arg2, arg2);
5245
5246 arg2 = convert_like (conv, arg2, complain);
5247 }
5248 if (arg3)
5249 {
5250 conv = cand->convs[2];
5251 if (conv->kind == ck_ref_bind)
5252 conv = next_conversion (conv);
5253 arg3 = convert_like (conv, arg3, complain);
5254 }
5255
5256 }
5257 }
5258
5259 user_defined_result_ready:
5260
5261 /* Free all the conversions we allocated. */
5262 obstack_free (&conversion_obstack, p);
5263
5264 if (result || result_valid_p)
5265 return result;
5266
5267 builtin:
5268 switch (code)
5269 {
5270 case MODIFY_EXPR:
5271 return cp_build_modify_expr (arg1, code2, arg2, complain);
5272
5273 case INDIRECT_REF:
5274 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5275
5276 case TRUTH_ANDIF_EXPR:
5277 case TRUTH_ORIF_EXPR:
5278 case TRUTH_AND_EXPR:
5279 case TRUTH_OR_EXPR:
5280 warn_logical_operator (loc, code, boolean_type_node,
5281 code_orig_arg1, arg1, code_orig_arg2, arg2);
5282 /* Fall through. */
5283 case PLUS_EXPR:
5284 case MINUS_EXPR:
5285 case MULT_EXPR:
5286 case TRUNC_DIV_EXPR:
5287 case GT_EXPR:
5288 case LT_EXPR:
5289 case GE_EXPR:
5290 case LE_EXPR:
5291 case EQ_EXPR:
5292 case NE_EXPR:
5293 case MAX_EXPR:
5294 case MIN_EXPR:
5295 case LSHIFT_EXPR:
5296 case RSHIFT_EXPR:
5297 case TRUNC_MOD_EXPR:
5298 case BIT_AND_EXPR:
5299 case BIT_IOR_EXPR:
5300 case BIT_XOR_EXPR:
5301 return cp_build_binary_op (input_location, code, arg1, arg2, complain);
5302
5303 case UNARY_PLUS_EXPR:
5304 case NEGATE_EXPR:
5305 case BIT_NOT_EXPR:
5306 case TRUTH_NOT_EXPR:
5307 case PREINCREMENT_EXPR:
5308 case POSTINCREMENT_EXPR:
5309 case PREDECREMENT_EXPR:
5310 case POSTDECREMENT_EXPR:
5311 case REALPART_EXPR:
5312 case IMAGPART_EXPR:
5313 case ABS_EXPR:
5314 return cp_build_unary_op (code, arg1, candidates != 0, complain);
5315
5316 case ARRAY_REF:
5317 return cp_build_array_ref (input_location, arg1, arg2, complain);
5318
5319 case MEMBER_REF:
5320 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_NULL,
5321 complain),
5322 arg2, complain);
5323
5324 /* The caller will deal with these. */
5325 case ADDR_EXPR:
5326 case COMPONENT_REF:
5327 case COMPOUND_EXPR:
5328 return NULL_TREE;
5329
5330 default:
5331 gcc_unreachable ();
5332 }
5333 return NULL_TREE;
5334 }
5335
5336 /* Wrapper for above. */
5337
5338 tree
5339 build_new_op (location_t loc, enum tree_code code, int flags,
5340 tree arg1, tree arg2, tree arg3,
5341 tree *overload, tsubst_flags_t complain)
5342 {
5343 tree ret;
5344 bool subtime = timevar_cond_start (TV_OVERLOAD);
5345 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
5346 overload, complain);
5347 timevar_cond_stop (TV_OVERLOAD, subtime);
5348 return ret;
5349 }
5350
5351 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
5352 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
5353
5354 static bool
5355 non_placement_deallocation_fn_p (tree t)
5356 {
5357 /* A template instance is never a usual deallocation function,
5358 regardless of its signature. */
5359 if (TREE_CODE (t) == TEMPLATE_DECL
5360 || primary_template_instantiation_p (t))
5361 return false;
5362
5363 /* If a class T has a member deallocation function named operator delete
5364 with exactly one parameter, then that function is a usual
5365 (non-placement) deallocation function. If class T does not declare
5366 such an operator delete but does declare a member deallocation
5367 function named operator delete with exactly two parameters, the second
5368 of which has type std::size_t (18.2), then this function is a usual
5369 deallocation function. */
5370 t = FUNCTION_ARG_CHAIN (t);
5371 if (t == void_list_node
5372 || (t && same_type_p (TREE_VALUE (t), size_type_node)
5373 && TREE_CHAIN (t) == void_list_node))
5374 return true;
5375 return false;
5376 }
5377
5378 /* Build a call to operator delete. This has to be handled very specially,
5379 because the restrictions on what signatures match are different from all
5380 other call instances. For a normal delete, only a delete taking (void *)
5381 or (void *, size_t) is accepted. For a placement delete, only an exact
5382 match with the placement new is accepted.
5383
5384 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
5385 ADDR is the pointer to be deleted.
5386 SIZE is the size of the memory block to be deleted.
5387 GLOBAL_P is true if the delete-expression should not consider
5388 class-specific delete operators.
5389 PLACEMENT is the corresponding placement new call, or NULL_TREE.
5390
5391 If this call to "operator delete" is being generated as part to
5392 deallocate memory allocated via a new-expression (as per [expr.new]
5393 which requires that if the initialization throws an exception then
5394 we call a deallocation function), then ALLOC_FN is the allocation
5395 function. */
5396
5397 tree
5398 build_op_delete_call (enum tree_code code, tree addr, tree size,
5399 bool global_p, tree placement,
5400 tree alloc_fn, tsubst_flags_t complain)
5401 {
5402 tree fn = NULL_TREE;
5403 tree fns, fnname, type, t;
5404
5405 if (addr == error_mark_node)
5406 return error_mark_node;
5407
5408 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
5409
5410 fnname = ansi_opname (code);
5411
5412 if (CLASS_TYPE_P (type)
5413 && COMPLETE_TYPE_P (complete_type (type))
5414 && !global_p)
5415 /* In [class.free]
5416
5417 If the result of the lookup is ambiguous or inaccessible, or if
5418 the lookup selects a placement deallocation function, the
5419 program is ill-formed.
5420
5421 Therefore, we ask lookup_fnfields to complain about ambiguity. */
5422 {
5423 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
5424 if (fns == error_mark_node)
5425 return error_mark_node;
5426 }
5427 else
5428 fns = NULL_TREE;
5429
5430 if (fns == NULL_TREE)
5431 fns = lookup_name_nonclass (fnname);
5432
5433 /* Strip const and volatile from addr. */
5434 addr = cp_convert (ptr_type_node, addr, complain);
5435
5436 if (placement)
5437 {
5438 /* "A declaration of a placement deallocation function matches the
5439 declaration of a placement allocation function if it has the same
5440 number of parameters and, after parameter transformations (8.3.5),
5441 all parameter types except the first are identical."
5442
5443 So we build up the function type we want and ask instantiate_type
5444 to get it for us. */
5445 t = FUNCTION_ARG_CHAIN (alloc_fn);
5446 t = tree_cons (NULL_TREE, ptr_type_node, t);
5447 t = build_function_type (void_type_node, t);
5448
5449 fn = instantiate_type (t, fns, tf_none);
5450 if (fn == error_mark_node)
5451 return NULL_TREE;
5452
5453 if (BASELINK_P (fn))
5454 fn = BASELINK_FUNCTIONS (fn);
5455
5456 /* "If the lookup finds the two-parameter form of a usual deallocation
5457 function (3.7.4.2) and that function, considered as a placement
5458 deallocation function, would have been selected as a match for the
5459 allocation function, the program is ill-formed." */
5460 if (non_placement_deallocation_fn_p (fn))
5461 {
5462 /* But if the class has an operator delete (void *), then that is
5463 the usual deallocation function, so we shouldn't complain
5464 about using the operator delete (void *, size_t). */
5465 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5466 t; t = OVL_NEXT (t))
5467 {
5468 tree elt = OVL_CURRENT (t);
5469 if (non_placement_deallocation_fn_p (elt)
5470 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
5471 goto ok;
5472 }
5473 if (complain & tf_error)
5474 {
5475 permerror (0, "non-placement deallocation function %q+D", fn);
5476 permerror (input_location, "selected for placement delete");
5477 }
5478 else
5479 return error_mark_node;
5480 ok:;
5481 }
5482 }
5483 else
5484 /* "Any non-placement deallocation function matches a non-placement
5485 allocation function. If the lookup finds a single matching
5486 deallocation function, that function will be called; otherwise, no
5487 deallocation function will be called." */
5488 for (t = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
5489 t; t = OVL_NEXT (t))
5490 {
5491 tree elt = OVL_CURRENT (t);
5492 if (non_placement_deallocation_fn_p (elt))
5493 {
5494 fn = elt;
5495 /* "If a class T has a member deallocation function named
5496 operator delete with exactly one parameter, then that
5497 function is a usual (non-placement) deallocation
5498 function. If class T does not declare such an operator
5499 delete but does declare a member deallocation function named
5500 operator delete with exactly two parameters, the second of
5501 which has type std::size_t (18.2), then this function is a
5502 usual deallocation function."
5503
5504 So (void*) beats (void*, size_t). */
5505 if (FUNCTION_ARG_CHAIN (fn) == void_list_node)
5506 break;
5507 }
5508 }
5509
5510 /* If we have a matching function, call it. */
5511 if (fn)
5512 {
5513 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
5514
5515 /* If the FN is a member function, make sure that it is
5516 accessible. */
5517 if (BASELINK_P (fns))
5518 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn);
5519
5520 /* Core issue 901: It's ok to new a type with deleted delete. */
5521 if (DECL_DELETED_FN (fn) && alloc_fn)
5522 return NULL_TREE;
5523
5524 if (placement)
5525 {
5526 /* The placement args might not be suitable for overload
5527 resolution at this point, so build the call directly. */
5528 int nargs = call_expr_nargs (placement);
5529 tree *argarray = XALLOCAVEC (tree, nargs);
5530 int i;
5531 argarray[0] = addr;
5532 for (i = 1; i < nargs; i++)
5533 argarray[i] = CALL_EXPR_ARG (placement, i);
5534 mark_used (fn);
5535 return build_cxx_call (fn, nargs, argarray);
5536 }
5537 else
5538 {
5539 tree ret;
5540 VEC(tree,gc) *args = VEC_alloc (tree, gc, 2);
5541 VEC_quick_push (tree, args, addr);
5542 if (FUNCTION_ARG_CHAIN (fn) != void_list_node)
5543 VEC_quick_push (tree, args, size);
5544 ret = cp_build_function_call_vec (fn, &args, complain);
5545 VEC_free (tree, gc, args);
5546 return ret;
5547 }
5548 }
5549
5550 /* [expr.new]
5551
5552 If no unambiguous matching deallocation function can be found,
5553 propagating the exception does not cause the object's memory to
5554 be freed. */
5555 if (alloc_fn)
5556 {
5557 if ((complain & tf_warning)
5558 && !placement)
5559 warning (0, "no corresponding deallocation function for %qD",
5560 alloc_fn);
5561 return NULL_TREE;
5562 }
5563
5564 if (complain & tf_error)
5565 error ("no suitable %<operator %s%> for %qT",
5566 operator_name_info[(int)code].name, type);
5567 return error_mark_node;
5568 }
5569
5570 /* If the current scope isn't allowed to access DECL along
5571 BASETYPE_PATH, give an error. The most derived class in
5572 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
5573 the declaration to use in the error diagnostic. */
5574
5575 bool
5576 enforce_access (tree basetype_path, tree decl, tree diag_decl)
5577 {
5578 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
5579
5580 if (!accessible_p (basetype_path, decl, true))
5581 {
5582 if (TREE_PRIVATE (decl))
5583 error ("%q+#D is private", diag_decl);
5584 else if (TREE_PROTECTED (decl))
5585 error ("%q+#D is protected", diag_decl);
5586 else
5587 error ("%q+#D is inaccessible", diag_decl);
5588 error ("within this context");
5589 return false;
5590 }
5591
5592 return true;
5593 }
5594
5595 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
5596 bitwise or of LOOKUP_* values. If any errors are warnings are
5597 generated, set *DIAGNOSTIC_FN to "error" or "warning",
5598 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
5599 to NULL. */
5600
5601 static tree
5602 build_temp (tree expr, tree type, int flags,
5603 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
5604 {
5605 int savew, savee;
5606 VEC(tree,gc) *args;
5607
5608 savew = warningcount, savee = errorcount;
5609 args = make_tree_vector_single (expr);
5610 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
5611 &args, type, flags, complain);
5612 release_tree_vector (args);
5613 if (warningcount > savew)
5614 *diagnostic_kind = DK_WARNING;
5615 else if (errorcount > savee)
5616 *diagnostic_kind = DK_ERROR;
5617 else
5618 *diagnostic_kind = DK_UNSPECIFIED;
5619 return expr;
5620 }
5621
5622 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
5623 EXPR is implicitly converted to type TOTYPE.
5624 FN and ARGNUM are used for diagnostics. */
5625
5626 static void
5627 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
5628 {
5629 /* Issue warnings about peculiar, but valid, uses of NULL. */
5630 if (expr == null_node && TREE_CODE (totype) != BOOLEAN_TYPE
5631 && ARITHMETIC_TYPE_P (totype))
5632 {
5633 source_location loc =
5634 expansion_point_location_if_in_system_header (input_location);
5635
5636 if (fn)
5637 warning_at (loc, OPT_Wconversion_null,
5638 "passing NULL to non-pointer argument %P of %qD",
5639 argnum, fn);
5640 else
5641 warning_at (loc, OPT_Wconversion_null,
5642 "converting to non-pointer type %qT from NULL", totype);
5643 }
5644
5645 /* Issue warnings if "false" is converted to a NULL pointer */
5646 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
5647 && TYPE_PTR_P (totype))
5648 {
5649 if (fn)
5650 warning_at (input_location, OPT_Wconversion_null,
5651 "converting %<false%> to pointer type for argument %P "
5652 "of %qD", argnum, fn);
5653 else
5654 warning_at (input_location, OPT_Wconversion_null,
5655 "converting %<false%> to pointer type %qT", totype);
5656 }
5657 }
5658
5659 /* Perform the conversions in CONVS on the expression EXPR. FN and
5660 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
5661 indicates the `this' argument of a method. INNER is nonzero when
5662 being called to continue a conversion chain. It is negative when a
5663 reference binding will be applied, positive otherwise. If
5664 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
5665 conversions will be emitted if appropriate. If C_CAST_P is true,
5666 this conversion is coming from a C-style cast; in that case,
5667 conversions to inaccessible bases are permitted. */
5668
5669 static tree
5670 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
5671 int inner, bool issue_conversion_warnings,
5672 bool c_cast_p, tsubst_flags_t complain)
5673 {
5674 tree totype = convs->type;
5675 diagnostic_t diag_kind;
5676 int flags;
5677 location_t loc = EXPR_LOC_OR_HERE (expr);
5678
5679 if (convs->bad_p && !(complain & tf_error))
5680 return error_mark_node;
5681
5682 if (convs->bad_p
5683 && convs->kind != ck_user
5684 && convs->kind != ck_list
5685 && convs->kind != ck_ambig
5686 && (convs->kind != ck_ref_bind
5687 || convs->user_conv_p)
5688 && convs->kind != ck_rvalue
5689 && convs->kind != ck_base)
5690 {
5691 conversion *t = convs;
5692
5693 /* Give a helpful error if this is bad because of excess braces. */
5694 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5695 && SCALAR_TYPE_P (totype)
5696 && CONSTRUCTOR_NELTS (expr) > 0
5697 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
5698 permerror (loc, "too many braces around initializer for %qT", totype);
5699
5700 for (; t ; t = next_conversion (t))
5701 {
5702 if (t->kind == ck_user && t->cand->reason)
5703 {
5704 permerror (loc, "invalid user-defined conversion "
5705 "from %qT to %qT", TREE_TYPE (expr), totype);
5706 print_z_candidate (loc, "candidate is:", t->cand);
5707 expr = convert_like_real (t, expr, fn, argnum, 1,
5708 /*issue_conversion_warnings=*/false,
5709 /*c_cast_p=*/false,
5710 complain);
5711 if (convs->kind == ck_ref_bind)
5712 return convert_to_reference (totype, expr, CONV_IMPLICIT,
5713 LOOKUP_NORMAL, NULL_TREE,
5714 complain);
5715 else
5716 return cp_convert (totype, expr, complain);
5717 }
5718 else if (t->kind == ck_user || !t->bad_p)
5719 {
5720 expr = convert_like_real (t, expr, fn, argnum, 1,
5721 /*issue_conversion_warnings=*/false,
5722 /*c_cast_p=*/false,
5723 complain);
5724 break;
5725 }
5726 else if (t->kind == ck_ambig)
5727 return convert_like_real (t, expr, fn, argnum, 1,
5728 /*issue_conversion_warnings=*/false,
5729 /*c_cast_p=*/false,
5730 complain);
5731 else if (t->kind == ck_identity)
5732 break;
5733 }
5734
5735 permerror (loc, "invalid conversion from %qT to %qT",
5736 TREE_TYPE (expr), totype);
5737 if (fn)
5738 permerror (DECL_SOURCE_LOCATION (fn),
5739 " initializing argument %P of %qD", argnum, fn);
5740
5741 return cp_convert (totype, expr, complain);
5742 }
5743
5744 if (issue_conversion_warnings && (complain & tf_warning))
5745 conversion_null_warnings (totype, expr, fn, argnum);
5746
5747 switch (convs->kind)
5748 {
5749 case ck_user:
5750 {
5751 struct z_candidate *cand = convs->cand;
5752 tree convfn = cand->fn;
5753 unsigned i;
5754
5755 /* If we're initializing from {}, it's value-initialization. */
5756 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5757 && CONSTRUCTOR_NELTS (expr) == 0
5758 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
5759 {
5760 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
5761 expr = build_value_init (totype, complain);
5762 expr = get_target_expr_sfinae (expr, complain);
5763 if (expr != error_mark_node)
5764 {
5765 TARGET_EXPR_LIST_INIT_P (expr) = true;
5766 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
5767 }
5768 return expr;
5769 }
5770
5771 expr = mark_rvalue_use (expr);
5772
5773 /* When converting from an init list we consider explicit
5774 constructors, but actually trying to call one is an error. */
5775 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
5776 /* Unless this is for direct-list-initialization. */
5777 && !(BRACE_ENCLOSED_INITIALIZER_P (expr)
5778 && CONSTRUCTOR_IS_DIRECT_INIT (expr))
5779 /* Unless we're calling it for value-initialization from an
5780 empty list, since that is handled separately in 8.5.4. */
5781 && cand->num_convs > 0)
5782 {
5783 error ("converting to %qT from initializer list would use "
5784 "explicit constructor %qD", totype, convfn);
5785 }
5786
5787 /* Set user_conv_p on the argument conversions, so rvalue/base
5788 handling knows not to allow any more UDCs. */
5789 for (i = 0; i < cand->num_convs; ++i)
5790 cand->convs[i]->user_conv_p = true;
5791
5792 expr = build_over_call (cand, LOOKUP_NORMAL, complain);
5793
5794 /* If this is a constructor or a function returning an aggr type,
5795 we need to build up a TARGET_EXPR. */
5796 if (DECL_CONSTRUCTOR_P (convfn))
5797 {
5798 expr = build_cplus_new (totype, expr, complain);
5799
5800 /* Remember that this was list-initialization. */
5801 if (convs->check_narrowing && expr != error_mark_node)
5802 TARGET_EXPR_LIST_INIT_P (expr) = true;
5803 }
5804
5805 return expr;
5806 }
5807 case ck_identity:
5808 expr = mark_rvalue_use (expr);
5809 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
5810 {
5811 int nelts = CONSTRUCTOR_NELTS (expr);
5812 if (nelts == 0)
5813 expr = build_value_init (totype, complain);
5814 else if (nelts == 1)
5815 expr = CONSTRUCTOR_ELT (expr, 0)->value;
5816 else
5817 gcc_unreachable ();
5818 }
5819
5820 if (type_unknown_p (expr))
5821 expr = instantiate_type (totype, expr, complain);
5822 /* Convert a constant to its underlying value, unless we are
5823 about to bind it to a reference, in which case we need to
5824 leave it as an lvalue. */
5825 if (inner >= 0)
5826 {
5827 expr = decl_constant_value_safe (expr);
5828 if (expr == null_node && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
5829 /* If __null has been converted to an integer type, we do not
5830 want to warn about uses of EXPR as an integer, rather than
5831 as a pointer. */
5832 expr = build_int_cst (totype, 0);
5833 }
5834 return expr;
5835 case ck_ambig:
5836 /* We leave bad_p off ck_ambig because overload resolution considers
5837 it valid, it just fails when we try to perform it. So we need to
5838 check complain here, too. */
5839 if (complain & tf_error)
5840 {
5841 /* Call build_user_type_conversion again for the error. */
5842 build_user_type_conversion (totype, convs->u.expr, LOOKUP_NORMAL,
5843 complain);
5844 if (fn)
5845 error (" initializing argument %P of %q+D", argnum, fn);
5846 }
5847 return error_mark_node;
5848
5849 case ck_list:
5850 {
5851 /* Conversion to std::initializer_list<T>. */
5852 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
5853 tree new_ctor = build_constructor (init_list_type_node, NULL);
5854 unsigned len = CONSTRUCTOR_NELTS (expr);
5855 tree array, val, field;
5856 VEC(constructor_elt,gc) *vec = NULL;
5857 unsigned ix;
5858
5859 /* Convert all the elements. */
5860 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
5861 {
5862 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
5863 1, false, false, complain);
5864 if (sub == error_mark_node)
5865 return sub;
5866 if (!BRACE_ENCLOSED_INITIALIZER_P (val))
5867 check_narrowing (TREE_TYPE (sub), val);
5868 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
5869 if (!TREE_CONSTANT (sub))
5870 TREE_CONSTANT (new_ctor) = false;
5871 }
5872 /* Build up the array. */
5873 elttype = cp_build_qualified_type
5874 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
5875 array = build_array_of_n_type (elttype, len);
5876 array = finish_compound_literal (array, new_ctor, complain);
5877 /* Take the address explicitly rather than via decay_conversion
5878 to avoid the error about taking the address of a temporary. */
5879 array = cp_build_addr_expr (array, complain);
5880 array = cp_convert (build_pointer_type (elttype), array, complain);
5881
5882 /* Build up the initializer_list object. */
5883 totype = complete_type (totype);
5884 field = next_initializable_field (TYPE_FIELDS (totype));
5885 CONSTRUCTOR_APPEND_ELT (vec, field, array);
5886 field = next_initializable_field (DECL_CHAIN (field));
5887 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
5888 new_ctor = build_constructor (totype, vec);
5889 return get_target_expr (new_ctor);
5890 }
5891
5892 case ck_aggr:
5893 if (TREE_CODE (totype) == COMPLEX_TYPE)
5894 {
5895 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
5896 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
5897 real = perform_implicit_conversion (TREE_TYPE (totype),
5898 real, complain);
5899 imag = perform_implicit_conversion (TREE_TYPE (totype),
5900 imag, complain);
5901 expr = build2 (COMPLEX_EXPR, totype, real, imag);
5902 return fold_if_not_in_template (expr);
5903 }
5904 expr = reshape_init (totype, expr, complain);
5905 return get_target_expr (digest_init (totype, expr, complain));
5906
5907 default:
5908 break;
5909 };
5910
5911 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
5912 convs->kind == ck_ref_bind ? -1 : 1,
5913 convs->kind == ck_ref_bind ? issue_conversion_warnings : false,
5914 c_cast_p,
5915 complain);
5916 if (expr == error_mark_node)
5917 return error_mark_node;
5918
5919 switch (convs->kind)
5920 {
5921 case ck_rvalue:
5922 expr = decay_conversion (expr, complain);
5923 if (expr == error_mark_node)
5924 return error_mark_node;
5925
5926 if (! MAYBE_CLASS_TYPE_P (totype))
5927 return expr;
5928 /* Else fall through. */
5929 case ck_base:
5930 if (convs->kind == ck_base && !convs->need_temporary_p)
5931 {
5932 /* We are going to bind a reference directly to a base-class
5933 subobject of EXPR. */
5934 /* Build an expression for `*((base*) &expr)'. */
5935 expr = cp_build_addr_expr (expr, complain);
5936 expr = convert_to_base (expr, build_pointer_type (totype),
5937 !c_cast_p, /*nonnull=*/true, complain);
5938 expr = cp_build_indirect_ref (expr, RO_IMPLICIT_CONVERSION, complain);
5939 return expr;
5940 }
5941
5942 /* Copy-initialization where the cv-unqualified version of the source
5943 type is the same class as, or a derived class of, the class of the
5944 destination [is treated as direct-initialization]. [dcl.init] */
5945 flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
5946 if (convs->user_conv_p)
5947 /* This conversion is being done in the context of a user-defined
5948 conversion (i.e. the second step of copy-initialization), so
5949 don't allow any more. */
5950 flags |= LOOKUP_NO_CONVERSION;
5951 if (convs->rvaluedness_matches_p)
5952 flags |= LOOKUP_PREFER_RVALUE;
5953 if (TREE_CODE (expr) == TARGET_EXPR
5954 && TARGET_EXPR_LIST_INIT_P (expr))
5955 /* Copy-list-initialization doesn't actually involve a copy. */
5956 return expr;
5957 expr = build_temp (expr, totype, flags, &diag_kind, complain);
5958 if (diag_kind && fn && complain)
5959 emit_diagnostic (diag_kind, DECL_SOURCE_LOCATION (fn), 0,
5960 " initializing argument %P of %qD", argnum, fn);
5961 return build_cplus_new (totype, expr, complain);
5962
5963 case ck_ref_bind:
5964 {
5965 tree ref_type = totype;
5966
5967 if (convs->bad_p && !next_conversion (convs)->bad_p)
5968 {
5969 gcc_assert (TYPE_REF_IS_RVALUE (ref_type)
5970 && real_lvalue_p (expr));
5971
5972 error_at (loc, "cannot bind %qT lvalue to %qT",
5973 TREE_TYPE (expr), totype);
5974 if (fn)
5975 error (" initializing argument %P of %q+D", argnum, fn);
5976 return error_mark_node;
5977 }
5978
5979 /* If necessary, create a temporary.
5980
5981 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
5982 that need temporaries, even when their types are reference
5983 compatible with the type of reference being bound, so the
5984 upcoming call to cp_build_addr_expr doesn't fail. */
5985 if (convs->need_temporary_p
5986 || TREE_CODE (expr) == CONSTRUCTOR
5987 || TREE_CODE (expr) == VA_ARG_EXPR)
5988 {
5989 /* Otherwise, a temporary of type "cv1 T1" is created and
5990 initialized from the initializer expression using the rules
5991 for a non-reference copy-initialization (8.5). */
5992
5993 tree type = TREE_TYPE (ref_type);
5994 cp_lvalue_kind lvalue = real_lvalue_p (expr);
5995
5996 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5997 (type, next_conversion (convs)->type));
5998 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
5999 && !TYPE_REF_IS_RVALUE (ref_type))
6000 {
6001 /* If the reference is volatile or non-const, we
6002 cannot create a temporary. */
6003 if (lvalue & clk_bitfield)
6004 error_at (loc, "cannot bind bitfield %qE to %qT",
6005 expr, ref_type);
6006 else if (lvalue & clk_packed)
6007 error_at (loc, "cannot bind packed field %qE to %qT",
6008 expr, ref_type);
6009 else
6010 error_at (loc, "cannot bind rvalue %qE to %qT",
6011 expr, ref_type);
6012 return error_mark_node;
6013 }
6014 /* If the source is a packed field, and we must use a copy
6015 constructor, then building the target expr will require
6016 binding the field to the reference parameter to the
6017 copy constructor, and we'll end up with an infinite
6018 loop. If we can use a bitwise copy, then we'll be
6019 OK. */
6020 if ((lvalue & clk_packed)
6021 && CLASS_TYPE_P (type)
6022 && type_has_nontrivial_copy_init (type))
6023 {
6024 error_at (loc, "cannot bind packed field %qE to %qT",
6025 expr, ref_type);
6026 return error_mark_node;
6027 }
6028 if (lvalue & clk_bitfield)
6029 {
6030 expr = convert_bitfield_to_declared_type (expr);
6031 expr = fold_convert (type, expr);
6032 }
6033 expr = build_target_expr_with_type (expr, type, complain);
6034 }
6035
6036 /* Take the address of the thing to which we will bind the
6037 reference. */
6038 expr = cp_build_addr_expr (expr, complain);
6039 if (expr == error_mark_node)
6040 return error_mark_node;
6041
6042 /* Convert it to a pointer to the type referred to by the
6043 reference. This will adjust the pointer if a derived to
6044 base conversion is being performed. */
6045 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
6046 expr, complain);
6047 /* Convert the pointer to the desired reference type. */
6048 return build_nop (ref_type, expr);
6049 }
6050
6051 case ck_lvalue:
6052 return decay_conversion (expr, complain);
6053
6054 case ck_qual:
6055 /* Warn about deprecated conversion if appropriate. */
6056 string_conv_p (totype, expr, 1);
6057 break;
6058
6059 case ck_ptr:
6060 if (convs->base_p)
6061 expr = convert_to_base (expr, totype, !c_cast_p,
6062 /*nonnull=*/false, complain);
6063 return build_nop (totype, expr);
6064
6065 case ck_pmem:
6066 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
6067 c_cast_p, complain);
6068
6069 default:
6070 break;
6071 }
6072
6073 if (convs->check_narrowing)
6074 check_narrowing (totype, expr);
6075
6076 if (issue_conversion_warnings && (complain & tf_warning))
6077 expr = convert_and_check (totype, expr);
6078 else
6079 expr = convert (totype, expr);
6080
6081 return expr;
6082 }
6083
6084 /* ARG is being passed to a varargs function. Perform any conversions
6085 required. Return the converted value. */
6086
6087 tree
6088 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
6089 {
6090 tree arg_type;
6091 location_t loc = EXPR_LOC_OR_HERE (arg);
6092
6093 /* [expr.call]
6094
6095 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6096 standard conversions are performed. */
6097 arg = decay_conversion (arg, complain);
6098 arg_type = TREE_TYPE (arg);
6099 /* [expr.call]
6100
6101 If the argument has integral or enumeration type that is subject
6102 to the integral promotions (_conv.prom_), or a floating point
6103 type that is subject to the floating point promotion
6104 (_conv.fpprom_), the value of the argument is converted to the
6105 promoted type before the call. */
6106 if (TREE_CODE (arg_type) == REAL_TYPE
6107 && (TYPE_PRECISION (arg_type)
6108 < TYPE_PRECISION (double_type_node))
6109 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
6110 {
6111 if ((complain & tf_warning)
6112 && warn_double_promotion && !c_inhibit_evaluation_warnings)
6113 warning_at (loc, OPT_Wdouble_promotion,
6114 "implicit conversion from %qT to %qT when passing "
6115 "argument to function",
6116 arg_type, double_type_node);
6117 arg = convert_to_real (double_type_node, arg);
6118 }
6119 else if (NULLPTR_TYPE_P (arg_type))
6120 arg = null_pointer_node;
6121 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
6122 {
6123 if (SCOPED_ENUM_P (arg_type) && !abi_version_at_least (6))
6124 {
6125 if (complain & tf_warning)
6126 warning_at (loc, OPT_Wabi, "scoped enum %qT will not promote to an "
6127 "integral type in a future version of GCC", arg_type);
6128 arg = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg, complain);
6129 }
6130 arg = cp_perform_integral_promotions (arg, complain);
6131 }
6132
6133 arg = require_complete_type (arg);
6134 arg_type = TREE_TYPE (arg);
6135
6136 if (arg != error_mark_node
6137 /* In a template (or ill-formed code), we can have an incomplete type
6138 even after require_complete_type, in which case we don't know
6139 whether it has trivial copy or not. */
6140 && COMPLETE_TYPE_P (arg_type))
6141 {
6142 /* Build up a real lvalue-to-rvalue conversion in case the
6143 copy constructor is trivial but not callable. */
6144 if (!cp_unevaluated_operand && CLASS_TYPE_P (arg_type))
6145 force_rvalue (arg, complain);
6146
6147 /* [expr.call] 5.2.2/7:
6148 Passing a potentially-evaluated argument of class type (Clause 9)
6149 with a non-trivial copy constructor or a non-trivial destructor
6150 with no corresponding parameter is conditionally-supported, with
6151 implementation-defined semantics.
6152
6153 We used to just warn here and do a bitwise copy, but now
6154 cp_expr_size will abort if we try to do that.
6155
6156 If the call appears in the context of a sizeof expression,
6157 it is not potentially-evaluated. */
6158 if (cp_unevaluated_operand == 0
6159 && (type_has_nontrivial_copy_init (arg_type)
6160 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type)))
6161 {
6162 if (complain & tf_error)
6163 error_at (loc, "cannot pass objects of non-trivially-copyable "
6164 "type %q#T through %<...%>", arg_type);
6165 else
6166 return error_mark_node;
6167 }
6168 }
6169
6170 return arg;
6171 }
6172
6173 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
6174
6175 tree
6176 build_x_va_arg (source_location loc, tree expr, tree type)
6177 {
6178 if (processing_template_decl)
6179 return build_min (VA_ARG_EXPR, type, expr);
6180
6181 type = complete_type_or_else (type, NULL_TREE);
6182
6183 if (expr == error_mark_node || !type)
6184 return error_mark_node;
6185
6186 expr = mark_lvalue_use (expr);
6187
6188 if (type_has_nontrivial_copy_init (type)
6189 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
6190 || TREE_CODE (type) == REFERENCE_TYPE)
6191 {
6192 /* Remove reference types so we don't ICE later on. */
6193 tree type1 = non_reference (type);
6194 /* conditionally-supported behavior [expr.call] 5.2.2/7. */
6195 error ("cannot receive objects of non-trivially-copyable type %q#T "
6196 "through %<...%>; ", type);
6197 expr = convert (build_pointer_type (type1), null_node);
6198 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
6199 return expr;
6200 }
6201
6202 return build_va_arg (loc, expr, type);
6203 }
6204
6205 /* TYPE has been given to va_arg. Apply the default conversions which
6206 would have happened when passed via ellipsis. Return the promoted
6207 type, or the passed type if there is no change. */
6208
6209 tree
6210 cxx_type_promotes_to (tree type)
6211 {
6212 tree promote;
6213
6214 /* Perform the array-to-pointer and function-to-pointer
6215 conversions. */
6216 type = type_decays_to (type);
6217
6218 promote = type_promotes_to (type);
6219 if (same_type_p (type, promote))
6220 promote = type;
6221
6222 return promote;
6223 }
6224
6225 /* ARG is a default argument expression being passed to a parameter of
6226 the indicated TYPE, which is a parameter to FN. PARMNUM is the
6227 zero-based argument number. Do any required conversions. Return
6228 the converted value. */
6229
6230 static GTY(()) VEC(tree,gc) *default_arg_context;
6231 void
6232 push_defarg_context (tree fn)
6233 { VEC_safe_push (tree, gc, default_arg_context, fn); }
6234 void
6235 pop_defarg_context (void)
6236 { VEC_pop (tree, default_arg_context); }
6237
6238 tree
6239 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
6240 tsubst_flags_t complain)
6241 {
6242 int i;
6243 tree t;
6244
6245 /* See through clones. */
6246 fn = DECL_ORIGIN (fn);
6247
6248 /* Detect recursion. */
6249 FOR_EACH_VEC_ELT (tree, default_arg_context, i, t)
6250 if (t == fn)
6251 {
6252 if (complain & tf_error)
6253 error ("recursive evaluation of default argument for %q#D", fn);
6254 return error_mark_node;
6255 }
6256
6257 /* If the ARG is an unparsed default argument expression, the
6258 conversion cannot be performed. */
6259 if (TREE_CODE (arg) == DEFAULT_ARG)
6260 {
6261 if (complain & tf_error)
6262 error ("call to %qD uses the default argument for parameter %P, which "
6263 "is not yet defined", fn, parmnum);
6264 return error_mark_node;
6265 }
6266
6267 push_defarg_context (fn);
6268
6269 if (fn && DECL_TEMPLATE_INFO (fn))
6270 arg = tsubst_default_argument (fn, type, arg);
6271
6272 /* Due to:
6273
6274 [dcl.fct.default]
6275
6276 The names in the expression are bound, and the semantic
6277 constraints are checked, at the point where the default
6278 expressions appears.
6279
6280 we must not perform access checks here. */
6281 push_deferring_access_checks (dk_no_check);
6282 /* We must make a copy of ARG, in case subsequent processing
6283 alters any part of it. */
6284 arg = break_out_target_exprs (arg);
6285 if (TREE_CODE (arg) == CONSTRUCTOR)
6286 {
6287 arg = digest_init (type, arg, complain);
6288 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6289 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6290 complain);
6291 }
6292 else
6293 {
6294 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
6295 ICR_DEFAULT_ARGUMENT, fn, parmnum,
6296 complain);
6297 arg = convert_for_arg_passing (type, arg, complain);
6298 }
6299 pop_deferring_access_checks();
6300
6301 pop_defarg_context ();
6302
6303 return arg;
6304 }
6305
6306 /* Returns the type which will really be used for passing an argument of
6307 type TYPE. */
6308
6309 tree
6310 type_passed_as (tree type)
6311 {
6312 /* Pass classes with copy ctors by invisible reference. */
6313 if (TREE_ADDRESSABLE (type))
6314 {
6315 type = build_reference_type (type);
6316 /* There are no other pointers to this temporary. */
6317 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
6318 }
6319 else if (targetm.calls.promote_prototypes (type)
6320 && INTEGRAL_TYPE_P (type)
6321 && COMPLETE_TYPE_P (type)
6322 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6323 TYPE_SIZE (integer_type_node)))
6324 type = integer_type_node;
6325
6326 return type;
6327 }
6328
6329 /* Actually perform the appropriate conversion. */
6330
6331 tree
6332 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
6333 {
6334 tree bitfield_type;
6335
6336 /* If VAL is a bitfield, then -- since it has already been converted
6337 to TYPE -- it cannot have a precision greater than TYPE.
6338
6339 If it has a smaller precision, we must widen it here. For
6340 example, passing "int f:3;" to a function expecting an "int" will
6341 not result in any conversion before this point.
6342
6343 If the precision is the same we must not risk widening. For
6344 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
6345 often have type "int", even though the C++ type for the field is
6346 "long long". If the value is being passed to a function
6347 expecting an "int", then no conversions will be required. But,
6348 if we call convert_bitfield_to_declared_type, the bitfield will
6349 be converted to "long long". */
6350 bitfield_type = is_bitfield_expr_with_lowered_type (val);
6351 if (bitfield_type
6352 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
6353 val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
6354
6355 if (val == error_mark_node)
6356 ;
6357 /* Pass classes with copy ctors by invisible reference. */
6358 else if (TREE_ADDRESSABLE (type))
6359 val = build1 (ADDR_EXPR, build_reference_type (type), val);
6360 else if (targetm.calls.promote_prototypes (type)
6361 && INTEGRAL_TYPE_P (type)
6362 && COMPLETE_TYPE_P (type)
6363 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
6364 TYPE_SIZE (integer_type_node)))
6365 val = cp_perform_integral_promotions (val, complain);
6366 if ((complain & tf_warning)
6367 && warn_suggest_attribute_format)
6368 {
6369 tree rhstype = TREE_TYPE (val);
6370 const enum tree_code coder = TREE_CODE (rhstype);
6371 const enum tree_code codel = TREE_CODE (type);
6372 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
6373 && coder == codel
6374 && check_missing_format_attribute (type, rhstype))
6375 warning (OPT_Wsuggest_attribute_format,
6376 "argument of function call might be a candidate for a format attribute");
6377 }
6378 return val;
6379 }
6380
6381 /* Returns true iff FN is a function with magic varargs, i.e. ones for
6382 which no conversions at all should be done. This is true for some
6383 builtins which don't act like normal functions. */
6384
6385 static bool
6386 magic_varargs_p (tree fn)
6387 {
6388 if (DECL_BUILT_IN (fn))
6389 switch (DECL_FUNCTION_CODE (fn))
6390 {
6391 case BUILT_IN_CLASSIFY_TYPE:
6392 case BUILT_IN_CONSTANT_P:
6393 case BUILT_IN_NEXT_ARG:
6394 case BUILT_IN_VA_START:
6395 return true;
6396
6397 default:;
6398 return lookup_attribute ("type generic",
6399 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
6400 }
6401
6402 return false;
6403 }
6404
6405 /* Subroutine of the various build_*_call functions. Overload resolution
6406 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
6407 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
6408 bitmask of various LOOKUP_* flags which apply to the call itself. */
6409
6410 static tree
6411 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
6412 {
6413 tree fn = cand->fn;
6414 const VEC(tree,gc) *args = cand->args;
6415 tree first_arg = cand->first_arg;
6416 conversion **convs = cand->convs;
6417 conversion *conv;
6418 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
6419 int parmlen;
6420 tree val;
6421 int i = 0;
6422 int j = 0;
6423 unsigned int arg_index = 0;
6424 int is_method = 0;
6425 int nargs;
6426 tree *argarray;
6427 bool already_used = false;
6428
6429 /* In a template, there is no need to perform all of the work that
6430 is normally done. We are only interested in the type of the call
6431 expression, i.e., the return type of the function. Any semantic
6432 errors will be deferred until the template is instantiated. */
6433 if (processing_template_decl)
6434 {
6435 tree expr, addr;
6436 tree return_type;
6437 const tree *argarray;
6438 unsigned int nargs;
6439
6440 return_type = TREE_TYPE (TREE_TYPE (fn));
6441 nargs = VEC_length (tree, args);
6442 if (first_arg == NULL_TREE)
6443 argarray = VEC_address (tree, CONST_CAST (VEC(tree,gc) *, args));
6444 else
6445 {
6446 tree *alcarray;
6447 unsigned int ix;
6448 tree arg;
6449
6450 ++nargs;
6451 alcarray = XALLOCAVEC (tree, nargs);
6452 alcarray[0] = first_arg;
6453 FOR_EACH_VEC_ELT (tree, args, ix, arg)
6454 alcarray[ix + 1] = arg;
6455 argarray = alcarray;
6456 }
6457
6458 addr = build_addr_func (fn, complain);
6459 if (addr == error_mark_node)
6460 return error_mark_node;
6461 expr = build_call_array_loc (input_location, return_type,
6462 addr, nargs, argarray);
6463 if (TREE_THIS_VOLATILE (fn) && cfun)
6464 current_function_returns_abnormally = 1;
6465 return convert_from_reference (expr);
6466 }
6467
6468 /* Give any warnings we noticed during overload resolution. */
6469 if (cand->warnings && (complain & tf_warning))
6470 {
6471 struct candidate_warning *w;
6472 for (w = cand->warnings; w; w = w->next)
6473 joust (cand, w->loser, 1, complain);
6474 }
6475
6476 /* Make =delete work with SFINAE. */
6477 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
6478 return error_mark_node;
6479
6480 if (DECL_FUNCTION_MEMBER_P (fn))
6481 {
6482 tree access_fn;
6483 /* If FN is a template function, two cases must be considered.
6484 For example:
6485
6486 struct A {
6487 protected:
6488 template <class T> void f();
6489 };
6490 template <class T> struct B {
6491 protected:
6492 void g();
6493 };
6494 struct C : A, B<int> {
6495 using A::f; // #1
6496 using B<int>::g; // #2
6497 };
6498
6499 In case #1 where `A::f' is a member template, DECL_ACCESS is
6500 recorded in the primary template but not in its specialization.
6501 We check access of FN using its primary template.
6502
6503 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
6504 because it is a member of class template B, DECL_ACCESS is
6505 recorded in the specialization `B<int>::g'. We cannot use its
6506 primary template because `B<T>::g' and `B<int>::g' may have
6507 different access. */
6508 if (DECL_TEMPLATE_INFO (fn)
6509 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
6510 access_fn = DECL_TI_TEMPLATE (fn);
6511 else
6512 access_fn = fn;
6513 if (flags & LOOKUP_SPECULATIVE)
6514 {
6515 if (!speculative_access_check (cand->access_path, access_fn, fn,
6516 complain & tf_error))
6517 return error_mark_node;
6518 }
6519 else
6520 perform_or_defer_access_check (cand->access_path, access_fn, fn);
6521 }
6522
6523 /* If we're checking for implicit delete, don't bother with argument
6524 conversions. */
6525 if (flags & LOOKUP_SPECULATIVE)
6526 {
6527 if (DECL_DELETED_FN (fn))
6528 {
6529 if (complain & tf_error)
6530 mark_used (fn);
6531 return error_mark_node;
6532 }
6533 if (cand->viable == 1)
6534 return fn;
6535 else if (!(complain & tf_error))
6536 /* Reject bad conversions now. */
6537 return error_mark_node;
6538 /* else continue to get conversion error. */
6539 }
6540
6541 /* Find maximum size of vector to hold converted arguments. */
6542 parmlen = list_length (parm);
6543 nargs = VEC_length (tree, args) + (first_arg != NULL_TREE ? 1 : 0);
6544 if (parmlen > nargs)
6545 nargs = parmlen;
6546 argarray = XALLOCAVEC (tree, nargs);
6547
6548 /* The implicit parameters to a constructor are not considered by overload
6549 resolution, and must be of the proper type. */
6550 if (DECL_CONSTRUCTOR_P (fn))
6551 {
6552 if (first_arg != NULL_TREE)
6553 {
6554 argarray[j++] = first_arg;
6555 first_arg = NULL_TREE;
6556 }
6557 else
6558 {
6559 argarray[j++] = VEC_index (tree, args, arg_index);
6560 ++arg_index;
6561 }
6562 parm = TREE_CHAIN (parm);
6563 /* We should never try to call the abstract constructor. */
6564 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
6565
6566 if (DECL_HAS_VTT_PARM_P (fn))
6567 {
6568 argarray[j++] = VEC_index (tree, args, arg_index);
6569 ++arg_index;
6570 parm = TREE_CHAIN (parm);
6571 }
6572 }
6573 /* Bypass access control for 'this' parameter. */
6574 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6575 {
6576 tree parmtype = TREE_VALUE (parm);
6577 tree arg = (first_arg != NULL_TREE
6578 ? first_arg
6579 : VEC_index (tree, args, arg_index));
6580 tree argtype = TREE_TYPE (arg);
6581 tree converted_arg;
6582 tree base_binfo;
6583
6584 if (convs[i]->bad_p)
6585 {
6586 if (complain & tf_error)
6587 permerror (input_location, "passing %qT as %<this%> argument of %q#D discards qualifiers",
6588 TREE_TYPE (argtype), fn);
6589 else
6590 return error_mark_node;
6591 }
6592
6593 /* See if the function member or the whole class type is declared
6594 final and the call can be devirtualized. */
6595 if (DECL_FINAL_P (fn)
6596 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
6597 flags |= LOOKUP_NONVIRTUAL;
6598
6599 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
6600 X is called for an object that is not of type X, or of a type
6601 derived from X, the behavior is undefined.
6602
6603 So we can assume that anything passed as 'this' is non-null, and
6604 optimize accordingly. */
6605 gcc_assert (TREE_CODE (parmtype) == POINTER_TYPE);
6606 /* Convert to the base in which the function was declared. */
6607 gcc_assert (cand->conversion_path != NULL_TREE);
6608 converted_arg = build_base_path (PLUS_EXPR,
6609 arg,
6610 cand->conversion_path,
6611 1, complain);
6612 /* Check that the base class is accessible. */
6613 if (!accessible_base_p (TREE_TYPE (argtype),
6614 BINFO_TYPE (cand->conversion_path), true))
6615 error ("%qT is not an accessible base of %qT",
6616 BINFO_TYPE (cand->conversion_path),
6617 TREE_TYPE (argtype));
6618 /* If fn was found by a using declaration, the conversion path
6619 will be to the derived class, not the base declaring fn. We
6620 must convert from derived to base. */
6621 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
6622 TREE_TYPE (parmtype), ba_unique, NULL);
6623 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
6624 base_binfo, 1, complain);
6625
6626 argarray[j++] = converted_arg;
6627 parm = TREE_CHAIN (parm);
6628 if (first_arg != NULL_TREE)
6629 first_arg = NULL_TREE;
6630 else
6631 ++arg_index;
6632 ++i;
6633 is_method = 1;
6634 }
6635
6636 gcc_assert (first_arg == NULL_TREE);
6637 for (; arg_index < VEC_length (tree, args) && parm;
6638 parm = TREE_CHAIN (parm), ++arg_index, ++i)
6639 {
6640 tree type = TREE_VALUE (parm);
6641 tree arg = VEC_index (tree, args, arg_index);
6642 bool conversion_warning = true;
6643
6644 conv = convs[i];
6645
6646 /* If the argument is NULL and used to (implicitly) instantiate a
6647 template function (and bind one of the template arguments to
6648 the type of 'long int'), we don't want to warn about passing NULL
6649 to non-pointer argument.
6650 For example, if we have this template function:
6651
6652 template<typename T> void func(T x) {}
6653
6654 we want to warn (when -Wconversion is enabled) in this case:
6655
6656 void foo() {
6657 func<int>(NULL);
6658 }
6659
6660 but not in this case:
6661
6662 void foo() {
6663 func(NULL);
6664 }
6665 */
6666 if (arg == null_node
6667 && DECL_TEMPLATE_INFO (fn)
6668 && cand->template_decl
6669 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
6670 conversion_warning = false;
6671
6672 /* Warn about initializer_list deduction that isn't currently in the
6673 working draft. */
6674 if (cxx_dialect > cxx98
6675 && flag_deduce_init_list
6676 && cand->template_decl
6677 && is_std_init_list (non_reference (type))
6678 && BRACE_ENCLOSED_INITIALIZER_P (arg))
6679 {
6680 tree tmpl = TI_TEMPLATE (cand->template_decl);
6681 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
6682 tree patparm = get_pattern_parm (realparm, tmpl);
6683 tree pattype = TREE_TYPE (patparm);
6684 if (PACK_EXPANSION_P (pattype))
6685 pattype = PACK_EXPANSION_PATTERN (pattype);
6686 pattype = non_reference (pattype);
6687
6688 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
6689 && (cand->explicit_targs == NULL_TREE
6690 || (TREE_VEC_LENGTH (cand->explicit_targs)
6691 <= TEMPLATE_TYPE_IDX (pattype))))
6692 {
6693 pedwarn (input_location, 0, "deducing %qT as %qT",
6694 non_reference (TREE_TYPE (patparm)),
6695 non_reference (type));
6696 pedwarn (input_location, 0, " in call to %q+D", cand->fn);
6697 pedwarn (input_location, 0,
6698 " (you can disable this with -fno-deduce-init-list)");
6699 }
6700 }
6701
6702 val = convert_like_with_context (conv, arg, fn, i-is_method,
6703 conversion_warning
6704 ? complain
6705 : complain & (~tf_warning));
6706
6707 val = convert_for_arg_passing (type, val, complain);
6708 if (val == error_mark_node)
6709 return error_mark_node;
6710 else
6711 argarray[j++] = val;
6712 }
6713
6714 /* Default arguments */
6715 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
6716 {
6717 if (TREE_VALUE (parm) == error_mark_node)
6718 return error_mark_node;
6719 argarray[j++] = convert_default_arg (TREE_VALUE (parm),
6720 TREE_PURPOSE (parm),
6721 fn, i - is_method,
6722 complain);
6723 }
6724
6725 /* Ellipsis */
6726 for (; arg_index < VEC_length (tree, args); ++arg_index)
6727 {
6728 tree a = VEC_index (tree, args, arg_index);
6729 if (magic_varargs_p (fn))
6730 /* Do no conversions for magic varargs. */
6731 a = mark_type_use (a);
6732 else
6733 a = convert_arg_to_ellipsis (a, complain);
6734 argarray[j++] = a;
6735 }
6736
6737 gcc_assert (j <= nargs);
6738 nargs = j;
6739
6740 check_function_arguments (TREE_TYPE (fn), nargs, argarray);
6741
6742 /* Avoid actually calling copy constructors and copy assignment operators,
6743 if possible. */
6744
6745 if (! flag_elide_constructors)
6746 /* Do things the hard way. */;
6747 else if (cand->num_convs == 1
6748 && (DECL_COPY_CONSTRUCTOR_P (fn)
6749 || DECL_MOVE_CONSTRUCTOR_P (fn)))
6750 {
6751 tree targ;
6752 tree arg = argarray[num_artificial_parms_for (fn)];
6753 tree fa;
6754 bool trivial = trivial_fn_p (fn);
6755
6756 /* Pull out the real argument, disregarding const-correctness. */
6757 targ = arg;
6758 while (CONVERT_EXPR_P (targ)
6759 || TREE_CODE (targ) == NON_LVALUE_EXPR)
6760 targ = TREE_OPERAND (targ, 0);
6761 if (TREE_CODE (targ) == ADDR_EXPR)
6762 {
6763 targ = TREE_OPERAND (targ, 0);
6764 if (!same_type_ignoring_top_level_qualifiers_p
6765 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
6766 targ = NULL_TREE;
6767 }
6768 else
6769 targ = NULL_TREE;
6770
6771 if (targ)
6772 arg = targ;
6773 else
6774 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
6775
6776 /* [class.copy]: the copy constructor is implicitly defined even if
6777 the implementation elided its use. */
6778 if (!trivial || DECL_DELETED_FN (fn))
6779 {
6780 mark_used (fn);
6781 already_used = true;
6782 }
6783
6784 /* If we're creating a temp and we already have one, don't create a
6785 new one. If we're not creating a temp but we get one, use
6786 INIT_EXPR to collapse the temp into our target. Otherwise, if the
6787 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
6788 temp or an INIT_EXPR otherwise. */
6789 fa = argarray[0];
6790 if (integer_zerop (fa))
6791 {
6792 if (TREE_CODE (arg) == TARGET_EXPR)
6793 return arg;
6794 else if (trivial)
6795 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
6796 }
6797 else if (TREE_CODE (arg) == TARGET_EXPR || trivial)
6798 {
6799 tree to = stabilize_reference (cp_build_indirect_ref (fa, RO_NULL,
6800 complain));
6801
6802 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
6803 return val;
6804 }
6805 }
6806 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
6807 && trivial_fn_p (fn)
6808 && !DECL_DELETED_FN (fn))
6809 {
6810 tree to = stabilize_reference
6811 (cp_build_indirect_ref (argarray[0], RO_NULL, complain));
6812 tree type = TREE_TYPE (to);
6813 tree as_base = CLASSTYPE_AS_BASE (type);
6814 tree arg = argarray[1];
6815
6816 if (is_really_empty_class (type))
6817 {
6818 /* Avoid copying empty classes. */
6819 val = build2 (COMPOUND_EXPR, void_type_node, to, arg);
6820 TREE_NO_WARNING (val) = 1;
6821 val = build2 (COMPOUND_EXPR, type, val, to);
6822 TREE_NO_WARNING (val) = 1;
6823 }
6824 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
6825 {
6826 arg = cp_build_indirect_ref (arg, RO_NULL, complain);
6827 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
6828 }
6829 else
6830 {
6831 /* We must only copy the non-tail padding parts. */
6832 tree arg0, arg2, t;
6833 tree array_type, alias_set;
6834
6835 arg2 = TYPE_SIZE_UNIT (as_base);
6836 arg0 = cp_build_addr_expr (to, complain);
6837
6838 array_type = build_array_type (char_type_node,
6839 build_index_type
6840 (size_binop (MINUS_EXPR,
6841 arg2, size_int (1))));
6842 alias_set = build_int_cst (build_pointer_type (type), 0);
6843 t = build2 (MODIFY_EXPR, void_type_node,
6844 build2 (MEM_REF, array_type, arg0, alias_set),
6845 build2 (MEM_REF, array_type, arg, alias_set));
6846 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
6847 TREE_NO_WARNING (val) = 1;
6848 }
6849
6850 return val;
6851 }
6852 else if (DECL_DESTRUCTOR_P (fn)
6853 && trivial_fn_p (fn)
6854 && !DECL_DELETED_FN (fn))
6855 return fold_convert (void_type_node, argarray[0]);
6856 /* FIXME handle trivial default constructor, too. */
6857
6858 if (!already_used)
6859 mark_used (fn);
6860
6861 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
6862 {
6863 tree t;
6864 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
6865 DECL_CONTEXT (fn),
6866 ba_any, NULL);
6867 gcc_assert (binfo && binfo != error_mark_node);
6868
6869 /* Warn about deprecated virtual functions now, since we're about
6870 to throw away the decl. */
6871 if (TREE_DEPRECATED (fn))
6872 warn_deprecated_use (fn, NULL_TREE);
6873
6874 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
6875 complain);
6876 if (TREE_SIDE_EFFECTS (argarray[0]))
6877 argarray[0] = save_expr (argarray[0]);
6878 t = build_pointer_type (TREE_TYPE (fn));
6879 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
6880 fn = build_java_interface_fn_ref (fn, argarray[0]);
6881 else
6882 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
6883 TREE_TYPE (fn) = t;
6884 }
6885 else
6886 {
6887 fn = build_addr_func (fn, complain);
6888 if (fn == error_mark_node)
6889 return error_mark_node;
6890 }
6891
6892 return build_cxx_call (fn, nargs, argarray);
6893 }
6894
6895 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
6896 This function performs no overload resolution, conversion, or other
6897 high-level operations. */
6898
6899 tree
6900 build_cxx_call (tree fn, int nargs, tree *argarray)
6901 {
6902 tree fndecl;
6903
6904 /* Remember roughly where this call is. */
6905 location_t loc = EXPR_LOC_OR_HERE (fn);
6906 fn = build_call_a (fn, nargs, argarray);
6907 SET_EXPR_LOCATION (fn, loc);
6908
6909 fndecl = get_callee_fndecl (fn);
6910
6911 /* Check that arguments to builtin functions match the expectations. */
6912 if (fndecl
6913 && DECL_BUILT_IN (fndecl)
6914 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
6915 && !check_builtin_function_arguments (fndecl, nargs, argarray))
6916 return error_mark_node;
6917
6918 /* Some built-in function calls will be evaluated at compile-time in
6919 fold (). */
6920 fn = fold_if_not_in_template (fn);
6921
6922 if (VOID_TYPE_P (TREE_TYPE (fn)))
6923 return fn;
6924
6925 fn = require_complete_type (fn);
6926 if (fn == error_mark_node)
6927 return error_mark_node;
6928
6929 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
6930 fn = build_cplus_new (TREE_TYPE (fn), fn, tf_warning_or_error);
6931 return convert_from_reference (fn);
6932 }
6933
6934 static GTY(()) tree java_iface_lookup_fn;
6935
6936 /* Make an expression which yields the address of the Java interface
6937 method FN. This is achieved by generating a call to libjava's
6938 _Jv_LookupInterfaceMethodIdx(). */
6939
6940 static tree
6941 build_java_interface_fn_ref (tree fn, tree instance)
6942 {
6943 tree lookup_fn, method, idx;
6944 tree klass_ref, iface, iface_ref;
6945 int i;
6946
6947 if (!java_iface_lookup_fn)
6948 {
6949 tree ftype = build_function_type_list (ptr_type_node,
6950 ptr_type_node, ptr_type_node,
6951 java_int_type_node, NULL_TREE);
6952 java_iface_lookup_fn
6953 = add_builtin_function ("_Jv_LookupInterfaceMethodIdx", ftype,
6954 0, NOT_BUILT_IN, NULL, NULL_TREE);
6955 }
6956
6957 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
6958 This is the first entry in the vtable. */
6959 klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, RO_NULL,
6960 tf_warning_or_error),
6961 integer_zero_node);
6962
6963 /* Get the java.lang.Class pointer for the interface being called. */
6964 iface = DECL_CONTEXT (fn);
6965 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
6966 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
6967 || DECL_CONTEXT (iface_ref) != iface)
6968 {
6969 error ("could not find class$ field in java interface type %qT",
6970 iface);
6971 return error_mark_node;
6972 }
6973 iface_ref = build_address (iface_ref);
6974 iface_ref = convert (build_pointer_type (iface), iface_ref);
6975
6976 /* Determine the itable index of FN. */
6977 i = 1;
6978 for (method = TYPE_METHODS (iface); method; method = DECL_CHAIN (method))
6979 {
6980 if (!DECL_VIRTUAL_P (method))
6981 continue;
6982 if (fn == method)
6983 break;
6984 i++;
6985 }
6986 idx = build_int_cst (NULL_TREE, i);
6987
6988 lookup_fn = build1 (ADDR_EXPR,
6989 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
6990 java_iface_lookup_fn);
6991 return build_call_nary (ptr_type_node, lookup_fn,
6992 3, klass_ref, iface_ref, idx);
6993 }
6994
6995 /* Returns the value to use for the in-charge parameter when making a
6996 call to a function with the indicated NAME.
6997
6998 FIXME:Can't we find a neater way to do this mapping? */
6999
7000 tree
7001 in_charge_arg_for_name (tree name)
7002 {
7003 if (name == base_ctor_identifier
7004 || name == base_dtor_identifier)
7005 return integer_zero_node;
7006 else if (name == complete_ctor_identifier)
7007 return integer_one_node;
7008 else if (name == complete_dtor_identifier)
7009 return integer_two_node;
7010 else if (name == deleting_dtor_identifier)
7011 return integer_three_node;
7012
7013 /* This function should only be called with one of the names listed
7014 above. */
7015 gcc_unreachable ();
7016 return NULL_TREE;
7017 }
7018
7019 /* Build a call to a constructor, destructor, or an assignment
7020 operator for INSTANCE, an expression with class type. NAME
7021 indicates the special member function to call; *ARGS are the
7022 arguments. ARGS may be NULL. This may change ARGS. BINFO
7023 indicates the base of INSTANCE that is to be passed as the `this'
7024 parameter to the member function called.
7025
7026 FLAGS are the LOOKUP_* flags to use when processing the call.
7027
7028 If NAME indicates a complete object constructor, INSTANCE may be
7029 NULL_TREE. In this case, the caller will call build_cplus_new to
7030 store the newly constructed object into a VAR_DECL. */
7031
7032 tree
7033 build_special_member_call (tree instance, tree name, VEC(tree,gc) **args,
7034 tree binfo, int flags, tsubst_flags_t complain)
7035 {
7036 tree fns;
7037 /* The type of the subobject to be constructed or destroyed. */
7038 tree class_type;
7039 VEC(tree,gc) *allocated = NULL;
7040 tree ret;
7041
7042 gcc_assert (name == complete_ctor_identifier
7043 || name == base_ctor_identifier
7044 || name == complete_dtor_identifier
7045 || name == base_dtor_identifier
7046 || name == deleting_dtor_identifier
7047 || name == ansi_assopname (NOP_EXPR));
7048 if (TYPE_P (binfo))
7049 {
7050 /* Resolve the name. */
7051 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
7052 return error_mark_node;
7053
7054 binfo = TYPE_BINFO (binfo);
7055 }
7056
7057 gcc_assert (binfo != NULL_TREE);
7058
7059 class_type = BINFO_TYPE (binfo);
7060
7061 /* Handle the special case where INSTANCE is NULL_TREE. */
7062 if (name == complete_ctor_identifier && !instance)
7063 {
7064 instance = build_int_cst (build_pointer_type (class_type), 0);
7065 instance = build1 (INDIRECT_REF, class_type, instance);
7066 }
7067 else
7068 {
7069 if (name == complete_dtor_identifier
7070 || name == base_dtor_identifier
7071 || name == deleting_dtor_identifier)
7072 gcc_assert (args == NULL || VEC_empty (tree, *args));
7073
7074 /* Convert to the base class, if necessary. */
7075 if (!same_type_ignoring_top_level_qualifiers_p
7076 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
7077 {
7078 if (name != ansi_assopname (NOP_EXPR))
7079 /* For constructors and destructors, either the base is
7080 non-virtual, or it is virtual but we are doing the
7081 conversion from a constructor or destructor for the
7082 complete object. In either case, we can convert
7083 statically. */
7084 instance = convert_to_base_statically (instance, binfo);
7085 else
7086 /* However, for assignment operators, we must convert
7087 dynamically if the base is virtual. */
7088 instance = build_base_path (PLUS_EXPR, instance,
7089 binfo, /*nonnull=*/1, complain);
7090 }
7091 }
7092
7093 gcc_assert (instance != NULL_TREE);
7094
7095 fns = lookup_fnfields (binfo, name, 1);
7096
7097 /* When making a call to a constructor or destructor for a subobject
7098 that uses virtual base classes, pass down a pointer to a VTT for
7099 the subobject. */
7100 if ((name == base_ctor_identifier
7101 || name == base_dtor_identifier)
7102 && CLASSTYPE_VBASECLASSES (class_type))
7103 {
7104 tree vtt;
7105 tree sub_vtt;
7106
7107 /* If the current function is a complete object constructor
7108 or destructor, then we fetch the VTT directly.
7109 Otherwise, we look it up using the VTT we were given. */
7110 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
7111 vtt = decay_conversion (vtt, complain);
7112 if (vtt == error_mark_node)
7113 return error_mark_node;
7114 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
7115 build2 (EQ_EXPR, boolean_type_node,
7116 current_in_charge_parm, integer_zero_node),
7117 current_vtt_parm,
7118 vtt);
7119 if (BINFO_SUBVTT_INDEX (binfo))
7120 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
7121 else
7122 sub_vtt = vtt;
7123
7124 if (args == NULL)
7125 {
7126 allocated = make_tree_vector ();
7127 args = &allocated;
7128 }
7129
7130 VEC_safe_insert (tree, gc, *args, 0, sub_vtt);
7131 }
7132
7133 ret = build_new_method_call (instance, fns, args,
7134 TYPE_BINFO (BINFO_TYPE (binfo)),
7135 flags, /*fn=*/NULL,
7136 complain);
7137
7138 if (allocated != NULL)
7139 release_tree_vector (allocated);
7140
7141 return ret;
7142 }
7143
7144 /* Return the NAME, as a C string. The NAME indicates a function that
7145 is a member of TYPE. *FREE_P is set to true if the caller must
7146 free the memory returned.
7147
7148 Rather than go through all of this, we should simply set the names
7149 of constructors and destructors appropriately, and dispense with
7150 ctor_identifier, dtor_identifier, etc. */
7151
7152 static char *
7153 name_as_c_string (tree name, tree type, bool *free_p)
7154 {
7155 char *pretty_name;
7156
7157 /* Assume that we will not allocate memory. */
7158 *free_p = false;
7159 /* Constructors and destructors are special. */
7160 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7161 {
7162 pretty_name
7163 = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type))));
7164 /* For a destructor, add the '~'. */
7165 if (name == complete_dtor_identifier
7166 || name == base_dtor_identifier
7167 || name == deleting_dtor_identifier)
7168 {
7169 pretty_name = concat ("~", pretty_name, NULL);
7170 /* Remember that we need to free the memory allocated. */
7171 *free_p = true;
7172 }
7173 }
7174 else if (IDENTIFIER_TYPENAME_P (name))
7175 {
7176 pretty_name = concat ("operator ",
7177 type_as_string_translate (TREE_TYPE (name),
7178 TFF_PLAIN_IDENTIFIER),
7179 NULL);
7180 /* Remember that we need to free the memory allocated. */
7181 *free_p = true;
7182 }
7183 else
7184 pretty_name = CONST_CAST (char *, identifier_to_locale (IDENTIFIER_POINTER (name)));
7185
7186 return pretty_name;
7187 }
7188
7189 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
7190 be set, upon return, to the function called. ARGS may be NULL.
7191 This may change ARGS. */
7192
7193 static tree
7194 build_new_method_call_1 (tree instance, tree fns, VEC(tree,gc) **args,
7195 tree conversion_path, int flags,
7196 tree *fn_p, tsubst_flags_t complain)
7197 {
7198 struct z_candidate *candidates = 0, *cand;
7199 tree explicit_targs = NULL_TREE;
7200 tree basetype = NULL_TREE;
7201 tree access_binfo;
7202 tree optype;
7203 tree first_mem_arg = NULL_TREE;
7204 tree instance_ptr;
7205 tree name;
7206 bool skip_first_for_error;
7207 VEC(tree,gc) *user_args;
7208 tree call;
7209 tree fn;
7210 int template_only = 0;
7211 bool any_viable_p;
7212 tree orig_instance;
7213 tree orig_fns;
7214 VEC(tree,gc) *orig_args = NULL;
7215 void *p;
7216
7217 gcc_assert (instance != NULL_TREE);
7218
7219 /* We don't know what function we're going to call, yet. */
7220 if (fn_p)
7221 *fn_p = NULL_TREE;
7222
7223 if (error_operand_p (instance)
7224 || !fns || error_operand_p (fns))
7225 return error_mark_node;
7226
7227 if (!BASELINK_P (fns))
7228 {
7229 if (complain & tf_error)
7230 error ("call to non-function %qD", fns);
7231 return error_mark_node;
7232 }
7233
7234 orig_instance = instance;
7235 orig_fns = fns;
7236
7237 /* Dismantle the baselink to collect all the information we need. */
7238 if (!conversion_path)
7239 conversion_path = BASELINK_BINFO (fns);
7240 access_binfo = BASELINK_ACCESS_BINFO (fns);
7241 optype = BASELINK_OPTYPE (fns);
7242 fns = BASELINK_FUNCTIONS (fns);
7243 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
7244 {
7245 explicit_targs = TREE_OPERAND (fns, 1);
7246 fns = TREE_OPERAND (fns, 0);
7247 template_only = 1;
7248 }
7249 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
7250 || TREE_CODE (fns) == TEMPLATE_DECL
7251 || TREE_CODE (fns) == OVERLOAD);
7252 fn = get_first_fn (fns);
7253 name = DECL_NAME (fn);
7254
7255 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
7256 gcc_assert (CLASS_TYPE_P (basetype));
7257
7258 if (processing_template_decl)
7259 {
7260 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
7261 instance = build_non_dependent_expr (instance);
7262 if (args != NULL)
7263 make_args_non_dependent (*args);
7264 }
7265
7266 user_args = args == NULL ? NULL : *args;
7267 /* Under DR 147 A::A() is an invalid constructor call,
7268 not a functional cast. */
7269 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
7270 {
7271 if (! (complain & tf_error))
7272 return error_mark_node;
7273
7274 permerror (input_location,
7275 "cannot call constructor %<%T::%D%> directly",
7276 basetype, name);
7277 permerror (input_location, " for a function-style cast, remove the "
7278 "redundant %<::%D%>", name);
7279 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
7280 complain);
7281 return call;
7282 }
7283
7284 /* Figure out whether to skip the first argument for the error
7285 message we will display to users if an error occurs. We don't
7286 want to display any compiler-generated arguments. The "this"
7287 pointer hasn't been added yet. However, we must remove the VTT
7288 pointer if this is a call to a base-class constructor or
7289 destructor. */
7290 skip_first_for_error = false;
7291 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
7292 {
7293 /* Callers should explicitly indicate whether they want to construct
7294 the complete object or just the part without virtual bases. */
7295 gcc_assert (name != ctor_identifier);
7296 /* Similarly for destructors. */
7297 gcc_assert (name != dtor_identifier);
7298 /* Remove the VTT pointer, if present. */
7299 if ((name == base_ctor_identifier || name == base_dtor_identifier)
7300 && CLASSTYPE_VBASECLASSES (basetype))
7301 skip_first_for_error = true;
7302 }
7303
7304 /* Process the argument list. */
7305 if (args != NULL && *args != NULL)
7306 {
7307 *args = resolve_args (*args, complain);
7308 if (*args == NULL)
7309 return error_mark_node;
7310 }
7311
7312 instance_ptr = build_this (instance);
7313
7314 /* It's OK to call destructors and constructors on cv-qualified objects.
7315 Therefore, convert the INSTANCE_PTR to the unqualified type, if
7316 necessary. */
7317 if (DECL_DESTRUCTOR_P (fn)
7318 || DECL_CONSTRUCTOR_P (fn))
7319 {
7320 tree type = build_pointer_type (basetype);
7321 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
7322 instance_ptr = build_nop (type, instance_ptr);
7323 }
7324 if (DECL_DESTRUCTOR_P (fn))
7325 name = complete_dtor_identifier;
7326
7327 first_mem_arg = instance_ptr;
7328
7329 /* Get the high-water mark for the CONVERSION_OBSTACK. */
7330 p = conversion_obstack_alloc (0);
7331
7332 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
7333 initializer, not T({ }). */
7334 if (DECL_CONSTRUCTOR_P (fn) && args != NULL && !VEC_empty (tree, *args)
7335 && BRACE_ENCLOSED_INITIALIZER_P (VEC_index (tree, *args, 0))
7336 && CONSTRUCTOR_IS_DIRECT_INIT (VEC_index (tree, *args, 0)))
7337 {
7338 tree init_list = VEC_index (tree, *args, 0);
7339 tree init = NULL_TREE;
7340
7341 gcc_assert (VEC_length (tree, *args) == 1
7342 && !(flags & LOOKUP_ONLYCONVERTING));
7343
7344 /* If the initializer list has no elements and T is a class type with
7345 a default constructor, the object is value-initialized. Handle
7346 this here so we don't need to handle it wherever we use
7347 build_special_member_call. */
7348 if (CONSTRUCTOR_NELTS (init_list) == 0
7349 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
7350 && !processing_template_decl)
7351 init = build_value_init (basetype, complain);
7352
7353 /* If BASETYPE is an aggregate, we need to do aggregate
7354 initialization. */
7355 else if (CP_AGGREGATE_TYPE_P (basetype))
7356 init = digest_init (basetype, init_list, complain);
7357
7358 if (init)
7359 {
7360 tree ob;
7361 if (integer_zerop (instance_ptr))
7362 return get_target_expr_sfinae (init, complain);
7363 ob = build_fold_indirect_ref (instance_ptr);
7364 init = build2 (INIT_EXPR, TREE_TYPE (ob), ob, init);
7365 TREE_SIDE_EFFECTS (init) = true;
7366 return init;
7367 }
7368
7369 /* Otherwise go ahead with overload resolution. */
7370 add_list_candidates (fns, first_mem_arg, init_list,
7371 basetype, explicit_targs, template_only,
7372 conversion_path, access_binfo, flags,
7373 &candidates, complain);
7374 }
7375 else
7376 {
7377 add_candidates (fns, first_mem_arg, user_args, optype,
7378 explicit_targs, template_only, conversion_path,
7379 access_binfo, flags, &candidates, complain);
7380 }
7381 any_viable_p = false;
7382 candidates = splice_viable (candidates, pedantic, &any_viable_p);
7383
7384 if (!any_viable_p)
7385 {
7386 if (complain & tf_error)
7387 {
7388 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
7389 cxx_incomplete_type_error (instance_ptr, basetype);
7390 else if (optype)
7391 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
7392 basetype, optype, build_tree_list_vec (user_args),
7393 TREE_TYPE (TREE_TYPE (instance_ptr)));
7394 else
7395 {
7396 char *pretty_name;
7397 bool free_p;
7398 tree arglist;
7399
7400 pretty_name = name_as_c_string (name, basetype, &free_p);
7401 arglist = build_tree_list_vec (user_args);
7402 if (skip_first_for_error)
7403 arglist = TREE_CHAIN (arglist);
7404 error ("no matching function for call to %<%T::%s(%A)%#V%>",
7405 basetype, pretty_name, arglist,
7406 TREE_TYPE (TREE_TYPE (instance_ptr)));
7407 if (free_p)
7408 free (pretty_name);
7409 }
7410 print_z_candidates (location_of (name), candidates);
7411 }
7412 call = error_mark_node;
7413 }
7414 else
7415 {
7416 cand = tourney (candidates, complain);
7417 if (cand == 0)
7418 {
7419 char *pretty_name;
7420 bool free_p;
7421 tree arglist;
7422
7423 if (complain & tf_error)
7424 {
7425 pretty_name = name_as_c_string (name, basetype, &free_p);
7426 arglist = build_tree_list_vec (user_args);
7427 if (skip_first_for_error)
7428 arglist = TREE_CHAIN (arglist);
7429 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
7430 arglist);
7431 print_z_candidates (location_of (name), candidates);
7432 if (free_p)
7433 free (pretty_name);
7434 }
7435 call = error_mark_node;
7436 }
7437 else
7438 {
7439 fn = cand->fn;
7440
7441 if (!(flags & LOOKUP_NONVIRTUAL)
7442 && DECL_PURE_VIRTUAL_P (fn)
7443 && instance == current_class_ref
7444 && (DECL_CONSTRUCTOR_P (current_function_decl)
7445 || DECL_DESTRUCTOR_P (current_function_decl))
7446 && (complain & tf_warning))
7447 /* This is not an error, it is runtime undefined
7448 behavior. */
7449 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
7450 "pure virtual %q#D called from constructor"
7451 : "pure virtual %q#D called from destructor"),
7452 fn);
7453
7454 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
7455 && is_dummy_object (instance_ptr))
7456 {
7457 if (complain & tf_error)
7458 error ("cannot call member function %qD without object",
7459 fn);
7460 call = error_mark_node;
7461 }
7462 else
7463 {
7464 /* Optimize away vtable lookup if we know that this function
7465 can't be overridden. */
7466 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
7467 && resolves_to_fixed_type_p (instance, 0))
7468 flags |= LOOKUP_NONVIRTUAL;
7469 if (explicit_targs)
7470 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
7471 /* Now we know what function is being called. */
7472 if (fn_p)
7473 *fn_p = fn;
7474 /* Build the actual CALL_EXPR. */
7475 call = build_over_call (cand, flags, complain);
7476 /* In an expression of the form `a->f()' where `f' turns
7477 out to be a static member function, `a' is
7478 none-the-less evaluated. */
7479 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
7480 && !is_dummy_object (instance_ptr)
7481 && TREE_SIDE_EFFECTS (instance_ptr))
7482 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
7483 instance_ptr, call);
7484 else if (call != error_mark_node
7485 && DECL_DESTRUCTOR_P (cand->fn)
7486 && !VOID_TYPE_P (TREE_TYPE (call)))
7487 /* An explicit call of the form "x->~X()" has type
7488 "void". However, on platforms where destructors
7489 return "this" (i.e., those where
7490 targetm.cxx.cdtor_returns_this is true), such calls
7491 will appear to have a return value of pointer type
7492 to the low-level call machinery. We do not want to
7493 change the low-level machinery, since we want to be
7494 able to optimize "delete f()" on such platforms as
7495 "operator delete(~X(f()))" (rather than generating
7496 "t = f(), ~X(t), operator delete (t)"). */
7497 call = build_nop (void_type_node, call);
7498 }
7499 }
7500 }
7501
7502 if (processing_template_decl && call != error_mark_node)
7503 {
7504 bool cast_to_void = false;
7505
7506 if (TREE_CODE (call) == COMPOUND_EXPR)
7507 call = TREE_OPERAND (call, 1);
7508 else if (TREE_CODE (call) == NOP_EXPR)
7509 {
7510 cast_to_void = true;
7511 call = TREE_OPERAND (call, 0);
7512 }
7513 if (TREE_CODE (call) == INDIRECT_REF)
7514 call = TREE_OPERAND (call, 0);
7515 call = (build_min_non_dep_call_vec
7516 (call,
7517 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
7518 orig_instance, orig_fns, NULL_TREE),
7519 orig_args));
7520 call = convert_from_reference (call);
7521 if (cast_to_void)
7522 call = build_nop (void_type_node, call);
7523 }
7524
7525 /* Free all the conversions we allocated. */
7526 obstack_free (&conversion_obstack, p);
7527
7528 if (orig_args != NULL)
7529 release_tree_vector (orig_args);
7530
7531 return call;
7532 }
7533
7534 /* Wrapper for above. */
7535
7536 tree
7537 build_new_method_call (tree instance, tree fns, VEC(tree,gc) **args,
7538 tree conversion_path, int flags,
7539 tree *fn_p, tsubst_flags_t complain)
7540 {
7541 tree ret;
7542 bool subtime = timevar_cond_start (TV_OVERLOAD);
7543 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
7544 fn_p, complain);
7545 timevar_cond_stop (TV_OVERLOAD, subtime);
7546 return ret;
7547 }
7548
7549 /* Returns true iff standard conversion sequence ICS1 is a proper
7550 subsequence of ICS2. */
7551
7552 static bool
7553 is_subseq (conversion *ics1, conversion *ics2)
7554 {
7555 /* We can assume that a conversion of the same code
7556 between the same types indicates a subsequence since we only get
7557 here if the types we are converting from are the same. */
7558
7559 while (ics1->kind == ck_rvalue
7560 || ics1->kind == ck_lvalue)
7561 ics1 = next_conversion (ics1);
7562
7563 while (1)
7564 {
7565 while (ics2->kind == ck_rvalue
7566 || ics2->kind == ck_lvalue)
7567 ics2 = next_conversion (ics2);
7568
7569 if (ics2->kind == ck_user
7570 || ics2->kind == ck_ambig
7571 || ics2->kind == ck_aggr
7572 || ics2->kind == ck_list
7573 || ics2->kind == ck_identity)
7574 /* At this point, ICS1 cannot be a proper subsequence of
7575 ICS2. We can get a USER_CONV when we are comparing the
7576 second standard conversion sequence of two user conversion
7577 sequences. */
7578 return false;
7579
7580 ics2 = next_conversion (ics2);
7581
7582 if (ics2->kind == ics1->kind
7583 && same_type_p (ics2->type, ics1->type)
7584 && same_type_p (next_conversion (ics2)->type,
7585 next_conversion (ics1)->type))
7586 return true;
7587 }
7588 }
7589
7590 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
7591 be any _TYPE nodes. */
7592
7593 bool
7594 is_properly_derived_from (tree derived, tree base)
7595 {
7596 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
7597 return false;
7598
7599 /* We only allow proper derivation here. The DERIVED_FROM_P macro
7600 considers every class derived from itself. */
7601 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
7602 && DERIVED_FROM_P (base, derived));
7603 }
7604
7605 /* We build the ICS for an implicit object parameter as a pointer
7606 conversion sequence. However, such a sequence should be compared
7607 as if it were a reference conversion sequence. If ICS is the
7608 implicit conversion sequence for an implicit object parameter,
7609 modify it accordingly. */
7610
7611 static void
7612 maybe_handle_implicit_object (conversion **ics)
7613 {
7614 if ((*ics)->this_p)
7615 {
7616 /* [over.match.funcs]
7617
7618 For non-static member functions, the type of the
7619 implicit object parameter is "reference to cv X"
7620 where X is the class of which the function is a
7621 member and cv is the cv-qualification on the member
7622 function declaration. */
7623 conversion *t = *ics;
7624 tree reference_type;
7625
7626 /* The `this' parameter is a pointer to a class type. Make the
7627 implicit conversion talk about a reference to that same class
7628 type. */
7629 reference_type = TREE_TYPE (t->type);
7630 reference_type = build_reference_type (reference_type);
7631
7632 if (t->kind == ck_qual)
7633 t = next_conversion (t);
7634 if (t->kind == ck_ptr)
7635 t = next_conversion (t);
7636 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
7637 t = direct_reference_binding (reference_type, t);
7638 t->this_p = 1;
7639 t->rvaluedness_matches_p = 0;
7640 *ics = t;
7641 }
7642 }
7643
7644 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
7645 and return the initial reference binding conversion. Otherwise,
7646 leave *ICS unchanged and return NULL. */
7647
7648 static conversion *
7649 maybe_handle_ref_bind (conversion **ics)
7650 {
7651 if ((*ics)->kind == ck_ref_bind)
7652 {
7653 conversion *old_ics = *ics;
7654 *ics = next_conversion (old_ics);
7655 (*ics)->user_conv_p = old_ics->user_conv_p;
7656 return old_ics;
7657 }
7658
7659 return NULL;
7660 }
7661
7662 /* Compare two implicit conversion sequences according to the rules set out in
7663 [over.ics.rank]. Return values:
7664
7665 1: ics1 is better than ics2
7666 -1: ics2 is better than ics1
7667 0: ics1 and ics2 are indistinguishable */
7668
7669 static int
7670 compare_ics (conversion *ics1, conversion *ics2)
7671 {
7672 tree from_type1;
7673 tree from_type2;
7674 tree to_type1;
7675 tree to_type2;
7676 tree deref_from_type1 = NULL_TREE;
7677 tree deref_from_type2 = NULL_TREE;
7678 tree deref_to_type1 = NULL_TREE;
7679 tree deref_to_type2 = NULL_TREE;
7680 conversion_rank rank1, rank2;
7681
7682 /* REF_BINDING is nonzero if the result of the conversion sequence
7683 is a reference type. In that case REF_CONV is the reference
7684 binding conversion. */
7685 conversion *ref_conv1;
7686 conversion *ref_conv2;
7687
7688 /* Handle implicit object parameters. */
7689 maybe_handle_implicit_object (&ics1);
7690 maybe_handle_implicit_object (&ics2);
7691
7692 /* Handle reference parameters. */
7693 ref_conv1 = maybe_handle_ref_bind (&ics1);
7694 ref_conv2 = maybe_handle_ref_bind (&ics2);
7695
7696 /* List-initialization sequence L1 is a better conversion sequence than
7697 list-initialization sequence L2 if L1 converts to
7698 std::initializer_list<X> for some X and L2 does not. */
7699 if (ics1->kind == ck_list && ics2->kind != ck_list)
7700 return 1;
7701 if (ics2->kind == ck_list && ics1->kind != ck_list)
7702 return -1;
7703
7704 /* [over.ics.rank]
7705
7706 When comparing the basic forms of implicit conversion sequences (as
7707 defined in _over.best.ics_)
7708
7709 --a standard conversion sequence (_over.ics.scs_) is a better
7710 conversion sequence than a user-defined conversion sequence
7711 or an ellipsis conversion sequence, and
7712
7713 --a user-defined conversion sequence (_over.ics.user_) is a
7714 better conversion sequence than an ellipsis conversion sequence
7715 (_over.ics.ellipsis_). */
7716 rank1 = CONVERSION_RANK (ics1);
7717 rank2 = CONVERSION_RANK (ics2);
7718
7719 if (rank1 > rank2)
7720 return -1;
7721 else if (rank1 < rank2)
7722 return 1;
7723
7724 if (rank1 == cr_bad)
7725 {
7726 /* Both ICS are bad. We try to make a decision based on what would
7727 have happened if they'd been good. This is not an extension,
7728 we'll still give an error when we build up the call; this just
7729 helps us give a more helpful error message. */
7730 rank1 = BAD_CONVERSION_RANK (ics1);
7731 rank2 = BAD_CONVERSION_RANK (ics2);
7732
7733 if (rank1 > rank2)
7734 return -1;
7735 else if (rank1 < rank2)
7736 return 1;
7737
7738 /* We couldn't make up our minds; try to figure it out below. */
7739 }
7740
7741 if (ics1->ellipsis_p)
7742 /* Both conversions are ellipsis conversions. */
7743 return 0;
7744
7745 /* User-defined conversion sequence U1 is a better conversion sequence
7746 than another user-defined conversion sequence U2 if they contain the
7747 same user-defined conversion operator or constructor and if the sec-
7748 ond standard conversion sequence of U1 is better than the second
7749 standard conversion sequence of U2. */
7750
7751 /* Handle list-conversion with the same code even though it isn't always
7752 ranked as a user-defined conversion and it doesn't have a second
7753 standard conversion sequence; it will still have the desired effect.
7754 Specifically, we need to do the reference binding comparison at the
7755 end of this function. */
7756
7757 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
7758 {
7759 conversion *t1;
7760 conversion *t2;
7761
7762 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
7763 if (t1->kind == ck_ambig || t1->kind == ck_aggr
7764 || t1->kind == ck_list)
7765 break;
7766 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
7767 if (t2->kind == ck_ambig || t2->kind == ck_aggr
7768 || t2->kind == ck_list)
7769 break;
7770
7771 if (t1->kind != t2->kind)
7772 return 0;
7773 else if (t1->kind == ck_user)
7774 {
7775 if (t1->cand->fn != t2->cand->fn)
7776 return 0;
7777 }
7778 else
7779 {
7780 /* For ambiguous or aggregate conversions, use the target type as
7781 a proxy for the conversion function. */
7782 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
7783 return 0;
7784 }
7785
7786 /* We can just fall through here, after setting up
7787 FROM_TYPE1 and FROM_TYPE2. */
7788 from_type1 = t1->type;
7789 from_type2 = t2->type;
7790 }
7791 else
7792 {
7793 conversion *t1;
7794 conversion *t2;
7795
7796 /* We're dealing with two standard conversion sequences.
7797
7798 [over.ics.rank]
7799
7800 Standard conversion sequence S1 is a better conversion
7801 sequence than standard conversion sequence S2 if
7802
7803 --S1 is a proper subsequence of S2 (comparing the conversion
7804 sequences in the canonical form defined by _over.ics.scs_,
7805 excluding any Lvalue Transformation; the identity
7806 conversion sequence is considered to be a subsequence of
7807 any non-identity conversion sequence */
7808
7809 t1 = ics1;
7810 while (t1->kind != ck_identity)
7811 t1 = next_conversion (t1);
7812 from_type1 = t1->type;
7813
7814 t2 = ics2;
7815 while (t2->kind != ck_identity)
7816 t2 = next_conversion (t2);
7817 from_type2 = t2->type;
7818 }
7819
7820 /* One sequence can only be a subsequence of the other if they start with
7821 the same type. They can start with different types when comparing the
7822 second standard conversion sequence in two user-defined conversion
7823 sequences. */
7824 if (same_type_p (from_type1, from_type2))
7825 {
7826 if (is_subseq (ics1, ics2))
7827 return 1;
7828 if (is_subseq (ics2, ics1))
7829 return -1;
7830 }
7831
7832 /* [over.ics.rank]
7833
7834 Or, if not that,
7835
7836 --the rank of S1 is better than the rank of S2 (by the rules
7837 defined below):
7838
7839 Standard conversion sequences are ordered by their ranks: an Exact
7840 Match is a better conversion than a Promotion, which is a better
7841 conversion than a Conversion.
7842
7843 Two conversion sequences with the same rank are indistinguishable
7844 unless one of the following rules applies:
7845
7846 --A conversion that does not a convert a pointer, pointer to member,
7847 or std::nullptr_t to bool is better than one that does.
7848
7849 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
7850 so that we do not have to check it explicitly. */
7851 if (ics1->rank < ics2->rank)
7852 return 1;
7853 else if (ics2->rank < ics1->rank)
7854 return -1;
7855
7856 to_type1 = ics1->type;
7857 to_type2 = ics2->type;
7858
7859 /* A conversion from scalar arithmetic type to complex is worse than a
7860 conversion between scalar arithmetic types. */
7861 if (same_type_p (from_type1, from_type2)
7862 && ARITHMETIC_TYPE_P (from_type1)
7863 && ARITHMETIC_TYPE_P (to_type1)
7864 && ARITHMETIC_TYPE_P (to_type2)
7865 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
7866 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
7867 {
7868 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
7869 return -1;
7870 else
7871 return 1;
7872 }
7873
7874 if (TYPE_PTR_P (from_type1)
7875 && TYPE_PTR_P (from_type2)
7876 && TYPE_PTR_P (to_type1)
7877 && TYPE_PTR_P (to_type2))
7878 {
7879 deref_from_type1 = TREE_TYPE (from_type1);
7880 deref_from_type2 = TREE_TYPE (from_type2);
7881 deref_to_type1 = TREE_TYPE (to_type1);
7882 deref_to_type2 = TREE_TYPE (to_type2);
7883 }
7884 /* The rules for pointers to members A::* are just like the rules
7885 for pointers A*, except opposite: if B is derived from A then
7886 A::* converts to B::*, not vice versa. For that reason, we
7887 switch the from_ and to_ variables here. */
7888 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
7889 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
7890 || (TYPE_PTRMEMFUNC_P (from_type1)
7891 && TYPE_PTRMEMFUNC_P (from_type2)
7892 && TYPE_PTRMEMFUNC_P (to_type1)
7893 && TYPE_PTRMEMFUNC_P (to_type2)))
7894 {
7895 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
7896 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
7897 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
7898 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
7899 }
7900
7901 if (deref_from_type1 != NULL_TREE
7902 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
7903 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
7904 {
7905 /* This was one of the pointer or pointer-like conversions.
7906
7907 [over.ics.rank]
7908
7909 --If class B is derived directly or indirectly from class A,
7910 conversion of B* to A* is better than conversion of B* to
7911 void*, and conversion of A* to void* is better than
7912 conversion of B* to void*. */
7913 if (TREE_CODE (deref_to_type1) == VOID_TYPE
7914 && TREE_CODE (deref_to_type2) == VOID_TYPE)
7915 {
7916 if (is_properly_derived_from (deref_from_type1,
7917 deref_from_type2))
7918 return -1;
7919 else if (is_properly_derived_from (deref_from_type2,
7920 deref_from_type1))
7921 return 1;
7922 }
7923 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
7924 || TREE_CODE (deref_to_type2) == VOID_TYPE)
7925 {
7926 if (same_type_p (deref_from_type1, deref_from_type2))
7927 {
7928 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
7929 {
7930 if (is_properly_derived_from (deref_from_type1,
7931 deref_to_type1))
7932 return 1;
7933 }
7934 /* We know that DEREF_TO_TYPE1 is `void' here. */
7935 else if (is_properly_derived_from (deref_from_type1,
7936 deref_to_type2))
7937 return -1;
7938 }
7939 }
7940 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
7941 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
7942 {
7943 /* [over.ics.rank]
7944
7945 --If class B is derived directly or indirectly from class A
7946 and class C is derived directly or indirectly from B,
7947
7948 --conversion of C* to B* is better than conversion of C* to
7949 A*,
7950
7951 --conversion of B* to A* is better than conversion of C* to
7952 A* */
7953 if (same_type_p (deref_from_type1, deref_from_type2))
7954 {
7955 if (is_properly_derived_from (deref_to_type1,
7956 deref_to_type2))
7957 return 1;
7958 else if (is_properly_derived_from (deref_to_type2,
7959 deref_to_type1))
7960 return -1;
7961 }
7962 else if (same_type_p (deref_to_type1, deref_to_type2))
7963 {
7964 if (is_properly_derived_from (deref_from_type2,
7965 deref_from_type1))
7966 return 1;
7967 else if (is_properly_derived_from (deref_from_type1,
7968 deref_from_type2))
7969 return -1;
7970 }
7971 }
7972 }
7973 else if (CLASS_TYPE_P (non_reference (from_type1))
7974 && same_type_p (from_type1, from_type2))
7975 {
7976 tree from = non_reference (from_type1);
7977
7978 /* [over.ics.rank]
7979
7980 --binding of an expression of type C to a reference of type
7981 B& is better than binding an expression of type C to a
7982 reference of type A&
7983
7984 --conversion of C to B is better than conversion of C to A, */
7985 if (is_properly_derived_from (from, to_type1)
7986 && is_properly_derived_from (from, to_type2))
7987 {
7988 if (is_properly_derived_from (to_type1, to_type2))
7989 return 1;
7990 else if (is_properly_derived_from (to_type2, to_type1))
7991 return -1;
7992 }
7993 }
7994 else if (CLASS_TYPE_P (non_reference (to_type1))
7995 && same_type_p (to_type1, to_type2))
7996 {
7997 tree to = non_reference (to_type1);
7998
7999 /* [over.ics.rank]
8000
8001 --binding of an expression of type B to a reference of type
8002 A& is better than binding an expression of type C to a
8003 reference of type A&,
8004
8005 --conversion of B to A is better than conversion of C to A */
8006 if (is_properly_derived_from (from_type1, to)
8007 && is_properly_derived_from (from_type2, to))
8008 {
8009 if (is_properly_derived_from (from_type2, from_type1))
8010 return 1;
8011 else if (is_properly_derived_from (from_type1, from_type2))
8012 return -1;
8013 }
8014 }
8015
8016 /* [over.ics.rank]
8017
8018 --S1 and S2 differ only in their qualification conversion and yield
8019 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
8020 qualification signature of type T1 is a proper subset of the cv-
8021 qualification signature of type T2 */
8022 if (ics1->kind == ck_qual
8023 && ics2->kind == ck_qual
8024 && same_type_p (from_type1, from_type2))
8025 {
8026 int result = comp_cv_qual_signature (to_type1, to_type2);
8027 if (result != 0)
8028 return result;
8029 }
8030
8031 /* [over.ics.rank]
8032
8033 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
8034 to an implicit object parameter, and either S1 binds an lvalue reference
8035 to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
8036 reference to an rvalue and S2 binds an lvalue reference
8037 (C++0x draft standard, 13.3.3.2)
8038
8039 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
8040 types to which the references refer are the same type except for
8041 top-level cv-qualifiers, and the type to which the reference
8042 initialized by S2 refers is more cv-qualified than the type to
8043 which the reference initialized by S1 refers.
8044
8045 DR 1328 [over.match.best]: the context is an initialization by
8046 conversion function for direct reference binding (13.3.1.6) of a
8047 reference to function type, the return type of F1 is the same kind of
8048 reference (i.e. lvalue or rvalue) as the reference being initialized,
8049 and the return type of F2 is not. */
8050
8051 if (ref_conv1 && ref_conv2)
8052 {
8053 if (!ref_conv1->this_p && !ref_conv2->this_p
8054 && (ref_conv1->rvaluedness_matches_p
8055 != ref_conv2->rvaluedness_matches_p)
8056 && (same_type_p (ref_conv1->type, ref_conv2->type)
8057 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
8058 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
8059 {
8060 return (ref_conv1->rvaluedness_matches_p
8061 - ref_conv2->rvaluedness_matches_p);
8062 }
8063
8064 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
8065 return comp_cv_qualification (TREE_TYPE (ref_conv2->type),
8066 TREE_TYPE (ref_conv1->type));
8067 }
8068
8069 /* Neither conversion sequence is better than the other. */
8070 return 0;
8071 }
8072
8073 /* The source type for this standard conversion sequence. */
8074
8075 static tree
8076 source_type (conversion *t)
8077 {
8078 for (;; t = next_conversion (t))
8079 {
8080 if (t->kind == ck_user
8081 || t->kind == ck_ambig
8082 || t->kind == ck_identity)
8083 return t->type;
8084 }
8085 gcc_unreachable ();
8086 }
8087
8088 /* Note a warning about preferring WINNER to LOSER. We do this by storing
8089 a pointer to LOSER and re-running joust to produce the warning if WINNER
8090 is actually used. */
8091
8092 static void
8093 add_warning (struct z_candidate *winner, struct z_candidate *loser)
8094 {
8095 candidate_warning *cw = (candidate_warning *)
8096 conversion_obstack_alloc (sizeof (candidate_warning));
8097 cw->loser = loser;
8098 cw->next = winner->warnings;
8099 winner->warnings = cw;
8100 }
8101
8102 /* Compare two candidates for overloading as described in
8103 [over.match.best]. Return values:
8104
8105 1: cand1 is better than cand2
8106 -1: cand2 is better than cand1
8107 0: cand1 and cand2 are indistinguishable */
8108
8109 static int
8110 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
8111 tsubst_flags_t complain)
8112 {
8113 int winner = 0;
8114 int off1 = 0, off2 = 0;
8115 size_t i;
8116 size_t len;
8117
8118 /* Candidates that involve bad conversions are always worse than those
8119 that don't. */
8120 if (cand1->viable > cand2->viable)
8121 return 1;
8122 if (cand1->viable < cand2->viable)
8123 return -1;
8124
8125 /* If we have two pseudo-candidates for conversions to the same type,
8126 or two candidates for the same function, arbitrarily pick one. */
8127 if (cand1->fn == cand2->fn
8128 && (IS_TYPE_OR_DECL_P (cand1->fn)))
8129 return 1;
8130
8131 /* a viable function F1
8132 is defined to be a better function than another viable function F2 if
8133 for all arguments i, ICSi(F1) is not a worse conversion sequence than
8134 ICSi(F2), and then */
8135
8136 /* for some argument j, ICSj(F1) is a better conversion sequence than
8137 ICSj(F2) */
8138
8139 /* For comparing static and non-static member functions, we ignore
8140 the implicit object parameter of the non-static function. The
8141 standard says to pretend that the static function has an object
8142 parm, but that won't work with operator overloading. */
8143 len = cand1->num_convs;
8144 if (len != cand2->num_convs)
8145 {
8146 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
8147 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
8148
8149 if (DECL_CONSTRUCTOR_P (cand1->fn)
8150 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
8151 /* We're comparing a near-match list constructor and a near-match
8152 non-list constructor. Just treat them as unordered. */
8153 return 0;
8154
8155 gcc_assert (static_1 != static_2);
8156
8157 if (static_1)
8158 off2 = 1;
8159 else
8160 {
8161 off1 = 1;
8162 --len;
8163 }
8164 }
8165
8166 for (i = 0; i < len; ++i)
8167 {
8168 conversion *t1 = cand1->convs[i + off1];
8169 conversion *t2 = cand2->convs[i + off2];
8170 int comp = compare_ics (t1, t2);
8171
8172 if (comp != 0)
8173 {
8174 if ((complain & tf_warning)
8175 && warn_sign_promo
8176 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
8177 == cr_std + cr_promotion)
8178 && t1->kind == ck_std
8179 && t2->kind == ck_std
8180 && TREE_CODE (t1->type) == INTEGER_TYPE
8181 && TREE_CODE (t2->type) == INTEGER_TYPE
8182 && (TYPE_PRECISION (t1->type)
8183 == TYPE_PRECISION (t2->type))
8184 && (TYPE_UNSIGNED (next_conversion (t1)->type)
8185 || (TREE_CODE (next_conversion (t1)->type)
8186 == ENUMERAL_TYPE)))
8187 {
8188 tree type = next_conversion (t1)->type;
8189 tree type1, type2;
8190 struct z_candidate *w, *l;
8191 if (comp > 0)
8192 type1 = t1->type, type2 = t2->type,
8193 w = cand1, l = cand2;
8194 else
8195 type1 = t2->type, type2 = t1->type,
8196 w = cand2, l = cand1;
8197
8198 if (warn)
8199 {
8200 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
8201 type, type1, type2);
8202 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
8203 }
8204 else
8205 add_warning (w, l);
8206 }
8207
8208 if (winner && comp != winner)
8209 {
8210 winner = 0;
8211 goto tweak;
8212 }
8213 winner = comp;
8214 }
8215 }
8216
8217 /* warn about confusing overload resolution for user-defined conversions,
8218 either between a constructor and a conversion op, or between two
8219 conversion ops. */
8220 if ((complain & tf_warning)
8221 && winner && warn_conversion && cand1->second_conv
8222 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
8223 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
8224 {
8225 struct z_candidate *w, *l;
8226 bool give_warning = false;
8227
8228 if (winner == 1)
8229 w = cand1, l = cand2;
8230 else
8231 w = cand2, l = cand1;
8232
8233 /* We don't want to complain about `X::operator T1 ()'
8234 beating `X::operator T2 () const', when T2 is a no less
8235 cv-qualified version of T1. */
8236 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
8237 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8238 {
8239 tree t = TREE_TYPE (TREE_TYPE (l->fn));
8240 tree f = TREE_TYPE (TREE_TYPE (w->fn));
8241
8242 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
8243 {
8244 t = TREE_TYPE (t);
8245 f = TREE_TYPE (f);
8246 }
8247 if (!comp_ptr_ttypes (t, f))
8248 give_warning = true;
8249 }
8250 else
8251 give_warning = true;
8252
8253 if (!give_warning)
8254 /*NOP*/;
8255 else if (warn)
8256 {
8257 tree source = source_type (w->convs[0]);
8258 if (! DECL_CONSTRUCTOR_P (w->fn))
8259 source = TREE_TYPE (source);
8260 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
8261 && warning (OPT_Wconversion, " for conversion from %qT to %qT",
8262 source, w->second_conv->type))
8263 {
8264 inform (input_location, " because conversion sequence for the argument is better");
8265 }
8266 }
8267 else
8268 add_warning (w, l);
8269 }
8270
8271 if (winner)
8272 return winner;
8273
8274 /* DR 495 moved this tiebreaker above the template ones. */
8275 /* or, if not that,
8276 the context is an initialization by user-defined conversion (see
8277 _dcl.init_ and _over.match.user_) and the standard conversion
8278 sequence from the return type of F1 to the destination type (i.e.,
8279 the type of the entity being initialized) is a better conversion
8280 sequence than the standard conversion sequence from the return type
8281 of F2 to the destination type. */
8282
8283 if (cand1->second_conv)
8284 {
8285 winner = compare_ics (cand1->second_conv, cand2->second_conv);
8286 if (winner)
8287 return winner;
8288 }
8289
8290 /* or, if not that,
8291 F1 is a non-template function and F2 is a template function
8292 specialization. */
8293
8294 if (!cand1->template_decl && cand2->template_decl)
8295 return 1;
8296 else if (cand1->template_decl && !cand2->template_decl)
8297 return -1;
8298
8299 /* or, if not that,
8300 F1 and F2 are template functions and the function template for F1 is
8301 more specialized than the template for F2 according to the partial
8302 ordering rules. */
8303
8304 if (cand1->template_decl && cand2->template_decl)
8305 {
8306 winner = more_specialized_fn
8307 (TI_TEMPLATE (cand1->template_decl),
8308 TI_TEMPLATE (cand2->template_decl),
8309 /* [temp.func.order]: The presence of unused ellipsis and default
8310 arguments has no effect on the partial ordering of function
8311 templates. add_function_candidate() will not have
8312 counted the "this" argument for constructors. */
8313 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
8314 if (winner)
8315 return winner;
8316 }
8317
8318 /* Check whether we can discard a builtin candidate, either because we
8319 have two identical ones or matching builtin and non-builtin candidates.
8320
8321 (Pedantically in the latter case the builtin which matched the user
8322 function should not be added to the overload set, but we spot it here.
8323
8324 [over.match.oper]
8325 ... the builtin candidates include ...
8326 - do not have the same parameter type list as any non-template
8327 non-member candidate. */
8328
8329 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
8330 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
8331 {
8332 for (i = 0; i < len; ++i)
8333 if (!same_type_p (cand1->convs[i]->type,
8334 cand2->convs[i]->type))
8335 break;
8336 if (i == cand1->num_convs)
8337 {
8338 if (cand1->fn == cand2->fn)
8339 /* Two built-in candidates; arbitrarily pick one. */
8340 return 1;
8341 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
8342 /* cand1 is built-in; prefer cand2. */
8343 return -1;
8344 else
8345 /* cand2 is built-in; prefer cand1. */
8346 return 1;
8347 }
8348 }
8349
8350 /* If the two function declarations represent the same function (this can
8351 happen with declarations in multiple scopes and arg-dependent lookup),
8352 arbitrarily choose one. But first make sure the default args we're
8353 using match. */
8354 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
8355 && equal_functions (cand1->fn, cand2->fn))
8356 {
8357 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
8358 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
8359
8360 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
8361
8362 for (i = 0; i < len; ++i)
8363 {
8364 /* Don't crash if the fn is variadic. */
8365 if (!parms1)
8366 break;
8367 parms1 = TREE_CHAIN (parms1);
8368 parms2 = TREE_CHAIN (parms2);
8369 }
8370
8371 if (off1)
8372 parms1 = TREE_CHAIN (parms1);
8373 else if (off2)
8374 parms2 = TREE_CHAIN (parms2);
8375
8376 for (; parms1; ++i)
8377 {
8378 if (!cp_tree_equal (TREE_PURPOSE (parms1),
8379 TREE_PURPOSE (parms2)))
8380 {
8381 if (warn)
8382 {
8383 if (complain & tf_error)
8384 {
8385 permerror (input_location,
8386 "default argument mismatch in "
8387 "overload resolution");
8388 inform (input_location,
8389 " candidate 1: %q+#F", cand1->fn);
8390 inform (input_location,
8391 " candidate 2: %q+#F", cand2->fn);
8392 }
8393 else
8394 return 0;
8395 }
8396 else
8397 add_warning (cand1, cand2);
8398 break;
8399 }
8400 parms1 = TREE_CHAIN (parms1);
8401 parms2 = TREE_CHAIN (parms2);
8402 }
8403
8404 return 1;
8405 }
8406
8407 tweak:
8408
8409 /* Extension: If the worst conversion for one candidate is worse than the
8410 worst conversion for the other, take the first. */
8411 if (!pedantic && (complain & tf_warning_or_error))
8412 {
8413 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
8414 struct z_candidate *w = 0, *l = 0;
8415
8416 for (i = 0; i < len; ++i)
8417 {
8418 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
8419 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
8420 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
8421 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
8422 }
8423 if (rank1 < rank2)
8424 winner = 1, w = cand1, l = cand2;
8425 if (rank1 > rank2)
8426 winner = -1, w = cand2, l = cand1;
8427 if (winner)
8428 {
8429 /* Don't choose a deleted function over ambiguity. */
8430 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
8431 return 0;
8432 if (warn)
8433 {
8434 pedwarn (input_location, 0,
8435 "ISO C++ says that these are ambiguous, even "
8436 "though the worst conversion for the first is better than "
8437 "the worst conversion for the second:");
8438 print_z_candidate (input_location, _("candidate 1:"), w);
8439 print_z_candidate (input_location, _("candidate 2:"), l);
8440 }
8441 else
8442 add_warning (w, l);
8443 return winner;
8444 }
8445 }
8446
8447 gcc_assert (!winner);
8448 return 0;
8449 }
8450
8451 /* Given a list of candidates for overloading, find the best one, if any.
8452 This algorithm has a worst case of O(2n) (winner is last), and a best
8453 case of O(n/2) (totally ambiguous); much better than a sorting
8454 algorithm. */
8455
8456 static struct z_candidate *
8457 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
8458 {
8459 struct z_candidate *champ = candidates, *challenger;
8460 int fate;
8461 int champ_compared_to_predecessor = 0;
8462
8463 /* Walk through the list once, comparing each current champ to the next
8464 candidate, knocking out a candidate or two with each comparison. */
8465
8466 for (challenger = champ->next; challenger; )
8467 {
8468 fate = joust (champ, challenger, 0, complain);
8469 if (fate == 1)
8470 challenger = challenger->next;
8471 else
8472 {
8473 if (fate == 0)
8474 {
8475 champ = challenger->next;
8476 if (champ == 0)
8477 return NULL;
8478 champ_compared_to_predecessor = 0;
8479 }
8480 else
8481 {
8482 champ = challenger;
8483 champ_compared_to_predecessor = 1;
8484 }
8485
8486 challenger = champ->next;
8487 }
8488 }
8489
8490 /* Make sure the champ is better than all the candidates it hasn't yet
8491 been compared to. */
8492
8493 for (challenger = candidates;
8494 challenger != champ
8495 && !(champ_compared_to_predecessor && challenger->next == champ);
8496 challenger = challenger->next)
8497 {
8498 fate = joust (champ, challenger, 0, complain);
8499 if (fate != 1)
8500 return NULL;
8501 }
8502
8503 return champ;
8504 }
8505
8506 /* Returns nonzero if things of type FROM can be converted to TO. */
8507
8508 bool
8509 can_convert (tree to, tree from, tsubst_flags_t complain)
8510 {
8511 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
8512 }
8513
8514 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
8515
8516 bool
8517 can_convert_arg (tree to, tree from, tree arg, int flags,
8518 tsubst_flags_t complain)
8519 {
8520 conversion *t;
8521 void *p;
8522 bool ok_p;
8523
8524 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8525 p = conversion_obstack_alloc (0);
8526
8527 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
8528 flags, complain);
8529 ok_p = (t && !t->bad_p);
8530
8531 /* Free all the conversions we allocated. */
8532 obstack_free (&conversion_obstack, p);
8533
8534 return ok_p;
8535 }
8536
8537 /* Like can_convert_arg, but allows dubious conversions as well. */
8538
8539 bool
8540 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
8541 tsubst_flags_t complain)
8542 {
8543 conversion *t;
8544 void *p;
8545
8546 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8547 p = conversion_obstack_alloc (0);
8548 /* Try to perform the conversion. */
8549 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
8550 flags, complain);
8551 /* Free all the conversions we allocated. */
8552 obstack_free (&conversion_obstack, p);
8553
8554 return t != NULL;
8555 }
8556
8557 /* Convert EXPR to TYPE. Return the converted expression.
8558
8559 Note that we allow bad conversions here because by the time we get to
8560 this point we are committed to doing the conversion. If we end up
8561 doing a bad conversion, convert_like will complain. */
8562
8563 tree
8564 perform_implicit_conversion_flags (tree type, tree expr,
8565 tsubst_flags_t complain, int flags)
8566 {
8567 conversion *conv;
8568 void *p;
8569 location_t loc = EXPR_LOC_OR_HERE (expr);
8570
8571 if (error_operand_p (expr))
8572 return error_mark_node;
8573
8574 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8575 p = conversion_obstack_alloc (0);
8576
8577 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
8578 /*c_cast_p=*/false,
8579 flags, complain);
8580
8581 if (!conv)
8582 {
8583 if (complain & tf_error)
8584 {
8585 /* If expr has unknown type, then it is an overloaded function.
8586 Call instantiate_type to get good error messages. */
8587 if (TREE_TYPE (expr) == unknown_type_node)
8588 instantiate_type (type, expr, complain);
8589 else if (invalid_nonstatic_memfn_p (expr, complain))
8590 /* We gave an error. */;
8591 else
8592 error_at (loc, "could not convert %qE from %qT to %qT", expr,
8593 TREE_TYPE (expr), type);
8594 }
8595 expr = error_mark_node;
8596 }
8597 else if (processing_template_decl && conv->kind != ck_identity)
8598 {
8599 /* In a template, we are only concerned about determining the
8600 type of non-dependent expressions, so we do not have to
8601 perform the actual conversion. But for initializers, we
8602 need to be able to perform it at instantiation
8603 (or fold_non_dependent_expr) time. */
8604 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
8605 if (!(flags & LOOKUP_ONLYCONVERTING))
8606 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
8607 }
8608 else
8609 expr = convert_like (conv, expr, complain);
8610
8611 /* Free all the conversions we allocated. */
8612 obstack_free (&conversion_obstack, p);
8613
8614 return expr;
8615 }
8616
8617 tree
8618 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
8619 {
8620 return perform_implicit_conversion_flags (type, expr, complain,
8621 LOOKUP_IMPLICIT);
8622 }
8623
8624 /* Convert EXPR to TYPE (as a direct-initialization) if that is
8625 permitted. If the conversion is valid, the converted expression is
8626 returned. Otherwise, NULL_TREE is returned, except in the case
8627 that TYPE is a class type; in that case, an error is issued. If
8628 C_CAST_P is true, then this direct-initialization is taking
8629 place as part of a static_cast being attempted as part of a C-style
8630 cast. */
8631
8632 tree
8633 perform_direct_initialization_if_possible (tree type,
8634 tree expr,
8635 bool c_cast_p,
8636 tsubst_flags_t complain)
8637 {
8638 conversion *conv;
8639 void *p;
8640
8641 if (type == error_mark_node || error_operand_p (expr))
8642 return error_mark_node;
8643 /* [dcl.init]
8644
8645 If the destination type is a (possibly cv-qualified) class type:
8646
8647 -- If the initialization is direct-initialization ...,
8648 constructors are considered. ... If no constructor applies, or
8649 the overload resolution is ambiguous, the initialization is
8650 ill-formed. */
8651 if (CLASS_TYPE_P (type))
8652 {
8653 VEC(tree,gc) *args = make_tree_vector_single (expr);
8654 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
8655 &args, type, LOOKUP_NORMAL, complain);
8656 release_tree_vector (args);
8657 return build_cplus_new (type, expr, complain);
8658 }
8659
8660 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8661 p = conversion_obstack_alloc (0);
8662
8663 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
8664 c_cast_p,
8665 LOOKUP_NORMAL, complain);
8666 if (!conv || conv->bad_p)
8667 expr = NULL_TREE;
8668 else
8669 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
8670 /*issue_conversion_warnings=*/false,
8671 c_cast_p,
8672 complain);
8673
8674 /* Free all the conversions we allocated. */
8675 obstack_free (&conversion_obstack, p);
8676
8677 return expr;
8678 }
8679
8680 /* When initializing a reference that lasts longer than a full-expression,
8681 this special rule applies:
8682
8683 [class.temporary]
8684
8685 The temporary to which the reference is bound or the temporary
8686 that is the complete object to which the reference is bound
8687 persists for the lifetime of the reference.
8688
8689 The temporaries created during the evaluation of the expression
8690 initializing the reference, except the temporary to which the
8691 reference is bound, are destroyed at the end of the
8692 full-expression in which they are created.
8693
8694 In that case, we store the converted expression into a new
8695 VAR_DECL in a new scope.
8696
8697 However, we want to be careful not to create temporaries when
8698 they are not required. For example, given:
8699
8700 struct B {};
8701 struct D : public B {};
8702 D f();
8703 const B& b = f();
8704
8705 there is no need to copy the return value from "f"; we can just
8706 extend its lifetime. Similarly, given:
8707
8708 struct S {};
8709 struct T { operator S(); };
8710 T t;
8711 const S& s = t;
8712
8713 we can extend the lifetime of the return value of the conversion
8714 operator.
8715
8716 The next several functions are involved in this lifetime extension. */
8717
8718 /* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
8719 is being bound to a temporary. Create and return a new VAR_DECL
8720 with the indicated TYPE; this variable will store the value to
8721 which the reference is bound. */
8722
8723 tree
8724 make_temporary_var_for_ref_to_temp (tree decl, tree type)
8725 {
8726 tree var;
8727
8728 /* Create the variable. */
8729 var = create_temporary_var (type);
8730
8731 /* Register the variable. */
8732 if (TREE_STATIC (decl))
8733 {
8734 /* Namespace-scope or local static; give it a mangled name. */
8735 /* FIXME share comdat with decl? */
8736 tree name;
8737
8738 TREE_STATIC (var) = 1;
8739 name = mangle_ref_init_variable (decl);
8740 DECL_NAME (var) = name;
8741 SET_DECL_ASSEMBLER_NAME (var, name);
8742 var = pushdecl_top_level (var);
8743 }
8744 else
8745 /* Create a new cleanup level if necessary. */
8746 maybe_push_cleanup_level (type);
8747
8748 return var;
8749 }
8750
8751 /* EXPR is the initializer for a variable DECL of reference or
8752 std::initializer_list type. Create, push and return a new VAR_DECL
8753 for the initializer so that it will live as long as DECL. Any
8754 cleanup for the new variable is returned through CLEANUP, and the
8755 code to initialize the new variable is returned through INITP. */
8756
8757 static tree
8758 set_up_extended_ref_temp (tree decl, tree expr, VEC(tree,gc) **cleanups,
8759 tree *initp)
8760 {
8761 tree init;
8762 tree type;
8763 tree var;
8764
8765 /* Create the temporary variable. */
8766 type = TREE_TYPE (expr);
8767 var = make_temporary_var_for_ref_to_temp (decl, type);
8768 layout_decl (var, 0);
8769 /* If the rvalue is the result of a function call it will be
8770 a TARGET_EXPR. If it is some other construct (such as a
8771 member access expression where the underlying object is
8772 itself the result of a function call), turn it into a
8773 TARGET_EXPR here. It is important that EXPR be a
8774 TARGET_EXPR below since otherwise the INIT_EXPR will
8775 attempt to make a bitwise copy of EXPR to initialize
8776 VAR. */
8777 if (TREE_CODE (expr) != TARGET_EXPR)
8778 expr = get_target_expr (expr);
8779
8780 if (TREE_CODE (decl) == FIELD_DECL
8781 && extra_warnings && !TREE_NO_WARNING (decl))
8782 {
8783 warning (OPT_Wextra, "a temporary bound to %qD only persists "
8784 "until the constructor exits", decl);
8785 TREE_NO_WARNING (decl) = true;
8786 }
8787
8788 /* Recursively extend temps in this initializer. */
8789 TARGET_EXPR_INITIAL (expr)
8790 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
8791
8792 /* If the initializer is constant, put it in DECL_INITIAL so we get
8793 static initialization and use in constant expressions. */
8794 init = maybe_constant_init (expr);
8795 if (TREE_CONSTANT (init))
8796 {
8797 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
8798 {
8799 /* 5.19 says that a constant expression can include an
8800 lvalue-rvalue conversion applied to "a glvalue of literal type
8801 that refers to a non-volatile temporary object initialized
8802 with a constant expression". Rather than try to communicate
8803 that this VAR_DECL is a temporary, just mark it constexpr.
8804
8805 Currently this is only useful for initializer_list temporaries,
8806 since reference vars can't appear in constant expressions. */
8807 DECL_DECLARED_CONSTEXPR_P (var) = true;
8808 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
8809 TREE_CONSTANT (var) = true;
8810 }
8811 DECL_INITIAL (var) = init;
8812 init = NULL_TREE;
8813 }
8814 else
8815 /* Create the INIT_EXPR that will initialize the temporary
8816 variable. */
8817 init = build2 (INIT_EXPR, type, var, expr);
8818 if (at_function_scope_p ())
8819 {
8820 add_decl_expr (var);
8821
8822 if (TREE_STATIC (var))
8823 init = add_stmt_to_compound (init, register_dtor_fn (var));
8824 else
8825 {
8826 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
8827 if (cleanup)
8828 VEC_safe_push (tree, gc, *cleanups, cleanup);
8829 }
8830
8831 /* We must be careful to destroy the temporary only
8832 after its initialization has taken place. If the
8833 initialization throws an exception, then the
8834 destructor should not be run. We cannot simply
8835 transform INIT into something like:
8836
8837 (INIT, ({ CLEANUP_STMT; }))
8838
8839 because emit_local_var always treats the
8840 initializer as a full-expression. Thus, the
8841 destructor would run too early; it would run at the
8842 end of initializing the reference variable, rather
8843 than at the end of the block enclosing the
8844 reference variable.
8845
8846 The solution is to pass back a cleanup expression
8847 which the caller is responsible for attaching to
8848 the statement tree. */
8849 }
8850 else
8851 {
8852 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
8853 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
8854 static_aggregates = tree_cons (NULL_TREE, var,
8855 static_aggregates);
8856 }
8857
8858 *initp = init;
8859 return var;
8860 }
8861
8862 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
8863 initializing a variable of that TYPE. */
8864
8865 tree
8866 initialize_reference (tree type, tree expr,
8867 int flags, tsubst_flags_t complain)
8868 {
8869 conversion *conv;
8870 void *p;
8871 location_t loc = EXPR_LOC_OR_HERE (expr);
8872
8873 if (type == error_mark_node || error_operand_p (expr))
8874 return error_mark_node;
8875
8876 /* Get the high-water mark for the CONVERSION_OBSTACK. */
8877 p = conversion_obstack_alloc (0);
8878
8879 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
8880 flags, complain);
8881 if (!conv || conv->bad_p)
8882 {
8883 if (complain & tf_error)
8884 {
8885 if (conv)
8886 convert_like (conv, expr, complain);
8887 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
8888 && !TYPE_REF_IS_RVALUE (type)
8889 && !real_lvalue_p (expr))
8890 error_at (loc, "invalid initialization of non-const reference of "
8891 "type %qT from an rvalue of type %qT",
8892 type, TREE_TYPE (expr));
8893 else
8894 error_at (loc, "invalid initialization of reference of type "
8895 "%qT from expression of type %qT", type,
8896 TREE_TYPE (expr));
8897 }
8898 return error_mark_node;
8899 }
8900
8901 gcc_assert (conv->kind == ck_ref_bind);
8902
8903 /* Perform the conversion. */
8904 expr = convert_like (conv, expr, complain);
8905
8906 /* Free all the conversions we allocated. */
8907 obstack_free (&conversion_obstack, p);
8908
8909 return expr;
8910 }
8911
8912 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
8913 which is bound either to a reference or a std::initializer_list. */
8914
8915 static tree
8916 extend_ref_init_temps_1 (tree decl, tree init, VEC(tree,gc) **cleanups)
8917 {
8918 tree sub = init;
8919 tree *p;
8920 STRIP_NOPS (sub);
8921 if (TREE_CODE (sub) != ADDR_EXPR)
8922 return init;
8923 /* Deal with binding to a subobject. */
8924 for (p = &TREE_OPERAND (sub, 0); TREE_CODE (*p) == COMPONENT_REF; )
8925 p = &TREE_OPERAND (*p, 0);
8926 if (TREE_CODE (*p) == TARGET_EXPR)
8927 {
8928 tree subinit = NULL_TREE;
8929 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
8930 if (subinit)
8931 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
8932 }
8933 return init;
8934 }
8935
8936 /* INIT is part of the initializer for DECL. If there are any
8937 reference or initializer lists being initialized, extend their
8938 lifetime to match that of DECL. */
8939
8940 tree
8941 extend_ref_init_temps (tree decl, tree init, VEC(tree,gc) **cleanups)
8942 {
8943 tree type = TREE_TYPE (init);
8944 if (processing_template_decl)
8945 return init;
8946 if (TREE_CODE (type) == REFERENCE_TYPE)
8947 init = extend_ref_init_temps_1 (decl, init, cleanups);
8948 else if (is_std_init_list (type))
8949 {
8950 /* The temporary array underlying a std::initializer_list
8951 is handled like a reference temporary. */
8952 tree ctor = init;
8953 if (TREE_CODE (ctor) == TARGET_EXPR)
8954 ctor = TARGET_EXPR_INITIAL (ctor);
8955 if (TREE_CODE (ctor) == CONSTRUCTOR)
8956 {
8957 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
8958 array = extend_ref_init_temps_1 (decl, array, cleanups);
8959 CONSTRUCTOR_ELT (ctor, 0)->value = array;
8960 }
8961 }
8962 else if (TREE_CODE (init) == CONSTRUCTOR)
8963 {
8964 unsigned i;
8965 constructor_elt *p;
8966 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
8967 FOR_EACH_VEC_ELT (constructor_elt, elts, i, p)
8968 p->value = extend_ref_init_temps (decl, p->value, cleanups);
8969 }
8970
8971 return init;
8972 }
8973
8974 /* Returns true iff TYPE is some variant of std::initializer_list. */
8975
8976 bool
8977 is_std_init_list (tree type)
8978 {
8979 /* Look through typedefs. */
8980 if (!TYPE_P (type))
8981 return false;
8982 type = TYPE_MAIN_VARIANT (type);
8983 return (CLASS_TYPE_P (type)
8984 && CP_TYPE_CONTEXT (type) == std_node
8985 && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
8986 }
8987
8988 /* Returns true iff DECL is a list constructor: i.e. a constructor which
8989 will accept an argument list of a single std::initializer_list<T>. */
8990
8991 bool
8992 is_list_ctor (tree decl)
8993 {
8994 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
8995 tree arg;
8996
8997 if (!args || args == void_list_node)
8998 return false;
8999
9000 arg = non_reference (TREE_VALUE (args));
9001 if (!is_std_init_list (arg))
9002 return false;
9003
9004 args = TREE_CHAIN (args);
9005
9006 if (args && args != void_list_node && !TREE_PURPOSE (args))
9007 /* There are more non-defaulted parms. */
9008 return false;
9009
9010 return true;
9011 }
9012
9013 #include "gt-cp-call.h"
This page took 0.441009 seconds and 5 git commands to generate.