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