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