]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/call.c
Fix Infinite Stack Recursion Regression.
[gcc.git] / gcc / cp / call.c
CommitLineData
8d08fdba 1/* Functions related to invoking methods and overloaded functions.
c8094d83 2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3638a282 3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
8d08fdba 4 Contributed by Michael Tiemann (tiemann@cygnus.com) and
e5e809f4 5 modified by Brendan Kehoe (brendan@cygnus.com).
8d08fdba 6
f5adbb8d 7This file is part of GCC.
8d08fdba 8
f5adbb8d 9GCC is free software; you can redistribute it and/or modify
8d08fdba
MS
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2, or (at your option)
12any later version.
13
f5adbb8d 14GCC is distributed in the hope that it will be useful,
8d08fdba
MS
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
f5adbb8d 20along with GCC; see the file COPYING. If not, write to
1788952f
KC
21the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22Boston, MA 02110-1301, USA. */
8d08fdba
MS
23
24
e92cc029 25/* High-level class interface. */
8d08fdba
MS
26
27#include "config.h"
8d052bc7 28#include "system.h"
4977bab6
ZW
29#include "coretypes.h"
30#include "tm.h"
570221c2 31#include "tree.h"
8d08fdba 32#include "cp-tree.h"
e8abc66f 33#include "output.h"
8d08fdba 34#include "flags.h"
570221c2 35#include "rtl.h"
54f92bfb 36#include "toplev.h"
70a51bda 37#include "expr.h"
2a2b2d43 38#include "diagnostic.h"
d2a6f3c0 39#include "intl.h"
7d149679 40#include "target.h"
7b6d72fc 41#include "convert.h"
8d08fdba 42
5bd61841
MM
43/* The various kinds of conversion. */
44
c8094d83 45typedef enum conversion_kind {
5bd61841
MM
46 ck_identity,
47 ck_lvalue,
48 ck_qual,
49 ck_std,
50 ck_ptr,
51 ck_pmem,
52 ck_base,
53 ck_ref_bind,
54 ck_user,
55 ck_ambig,
56 ck_rvalue
57} conversion_kind;
58
59/* The rank of the conversion. Order of the enumerals matters; better
60 conversions should come earlier in the list. */
61
62typedef enum conversion_rank {
63 cr_identity,
64 cr_exact,
65 cr_promotion,
66 cr_std,
67 cr_pbool,
68 cr_user,
69 cr_ellipsis,
70 cr_bad
71} conversion_rank;
72
73/* An implicit conversion sequence, in the sense of [over.best.ics].
74 The first conversion to be performed is at the end of the chain.
c72a1a86 75 That conversion is always a cr_identity conversion. */
5bd61841
MM
76
77typedef struct conversion conversion;
78struct conversion {
79 /* The kind of conversion represented by this step. */
80 conversion_kind kind;
81 /* The rank of this conversion. */
82 conversion_rank rank;
83 BOOL_BITFIELD user_conv_p : 1;
84 BOOL_BITFIELD ellipsis_p : 1;
85 BOOL_BITFIELD this_p : 1;
86 BOOL_BITFIELD bad_p : 1;
87 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
88 temporary should be created to hold the result of the
89 conversion. */
90 BOOL_BITFIELD need_temporary_p : 1;
91 /* If KIND is ck_identity or ck_base_conv, true to indicate that the
92 copy constructor must be accessible, even though it is not being
93 used. */
94 BOOL_BITFIELD check_copy_constructor_p : 1;
08e17d9d 95 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
c8094d83 96 from a pointer-to-derived to pointer-to-base is being performed. */
33c25e5c 97 BOOL_BITFIELD base_p : 1;
5bd61841
MM
98 /* The type of the expression resulting from the conversion. */
99 tree type;
100 union {
101 /* The next conversion in the chain. Since the conversions are
102 arranged from outermost to innermost, the NEXT conversion will
103 actually be performed before this conversion. This variant is
104 used only when KIND is neither ck_identity nor ck_ambig. */
105 conversion *next;
106 /* The expression at the beginning of the conversion chain. This
107 variant is used only if KIND is ck_identity or ck_ambig. */
108 tree expr;
109 } u;
110 /* The function candidate corresponding to this conversion
111 sequence. This field is only used if KIND is ck_user. */
112 struct z_candidate *cand;
113};
114
115#define CONVERSION_RANK(NODE) \
116 ((NODE)->bad_p ? cr_bad \
117 : (NODE)->ellipsis_p ? cr_ellipsis \
118 : (NODE)->user_conv_p ? cr_user \
119 : (NODE)->rank)
120
121static struct obstack conversion_obstack;
122static bool conversion_obstack_initialized;
123
94be8403
GDR
124static struct z_candidate * tourney (struct z_candidate *);
125static int equal_functions (tree, tree);
126static int joust (struct z_candidate *, struct z_candidate *, bool);
5bd61841 127static int compare_ics (conversion *, conversion *);
b80f8ef3 128static tree build_over_call (struct z_candidate *, int);
94be8403 129static tree build_java_interface_fn_ref (tree, tree);
3fe18f1d 130#define convert_like(CONV, EXPR) \
33c25e5c
MM
131 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
132 /*issue_conversion_warnings=*/true, \
133 /*c_cast_p=*/false)
3fe18f1d 134#define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
33c25e5c
MM
135 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
136 /*issue_conversion_warnings=*/true, \
0cbd7506 137 /*c_cast_p=*/false)
33c25e5c
MM
138static tree convert_like_real (conversion *, tree, tree, int, int, bool,
139 bool);
94be8403 140static void op_error (enum tree_code, enum tree_code, tree, tree,
0cbd7506 141 tree, const char *);
94be8403
GDR
142static tree build_object_call (tree, tree);
143static tree resolve_args (tree);
144static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
d2a6f3c0 145static void print_z_candidate (const char *, struct z_candidate *);
94be8403
GDR
146static void print_z_candidates (struct z_candidate *);
147static tree build_this (tree);
436f8a4c 148static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
94be8403
GDR
149static bool any_strictly_viable (struct z_candidate *);
150static struct z_candidate *add_template_candidate
0cbd7506
MS
151 (struct z_candidate **, tree, tree, tree, tree, tree,
152 tree, tree, int, unification_kind_t);
94be8403 153static struct z_candidate *add_template_candidate_real
c8094d83 154 (struct z_candidate **, tree, tree, tree, tree, tree,
0cbd7506 155 tree, tree, int, tree, unification_kind_t);
c8094d83 156static struct z_candidate *add_template_conv_candidate
0cbd7506 157 (struct z_candidate **, tree, tree, tree, tree, tree, tree);
7993382e
MM
158static void add_builtin_candidates
159 (struct z_candidate **, enum tree_code, enum tree_code,
0cbd7506 160 tree, tree *, int);
7993382e
MM
161static void add_builtin_candidate
162 (struct z_candidate **, enum tree_code, enum tree_code,
0cbd7506 163 tree, tree, tree, tree *, tree *, int);
94be8403 164static bool is_complete (tree);
c8094d83 165static void build_builtin_candidate
7993382e 166 (struct z_candidate **, tree, tree, tree, tree *, tree *,
0cbd7506 167 int);
c8094d83 168static struct z_candidate *add_conv_candidate
7993382e 169 (struct z_candidate **, tree, tree, tree, tree, tree);
c8094d83 170static struct z_candidate *add_function_candidate
7993382e 171 (struct z_candidate **, tree, tree, tree, tree, tree, int);
34b5375f
MM
172static conversion *implicit_conversion (tree, tree, tree, bool, int);
173static conversion *standard_conversion (tree, tree, tree, bool, int);
5bd61841
MM
174static conversion *reference_binding (tree, tree, tree, int);
175static conversion *build_conv (conversion_kind, tree, conversion *);
176static bool is_subseq (conversion *, conversion *);
177static tree maybe_handle_ref_bind (conversion **);
178static void maybe_handle_implicit_object (conversion **);
c8094d83 179static struct z_candidate *add_candidate
0cbd7506 180 (struct z_candidate **, tree, tree, size_t,
5bd61841
MM
181 conversion **, tree, tree, int);
182static tree source_type (conversion *);
94be8403
GDR
183static void add_warning (struct z_candidate *, struct z_candidate *);
184static bool reference_related_p (tree, tree);
185static bool reference_compatible_p (tree, tree);
5bd61841
MM
186static conversion *convert_class_to_reference (tree, tree, tree);
187static conversion *direct_reference_binding (tree, conversion *);
94be8403 188static bool promoted_arithmetic_type_p (tree);
5bd61841 189static conversion *conditional_conversion (tree, tree);
a723baf1 190static char *name_as_c_string (tree, tree, bool *);
a90f9bb1 191static tree call_builtin_trap (void);
14d22dd6 192static tree prep_operand (tree);
125e6594 193static void add_candidates (tree, tree, tree, bool, tree, tree,
7993382e 194 int, struct z_candidate **);
5bd61841 195static conversion *merge_conversion_sequences (conversion *, conversion *);
a6f86b51 196static bool magic_varargs_p (tree);
72e78bf3
KG
197typedef void (*diagnostic_fn_t) (const char *, ...) ATTRIBUTE_GCC_CXXDIAG(1,2);
198static tree build_temp (tree, tree, int, diagnostic_fn_t *);
644d1951 199static void check_constructor_callable (tree, tree);
49c249e1 200
1c2c08a5
JM
201/* Returns nonzero iff the destructor name specified in NAME
202 (a BIT_NOT_EXPR) matches BASETYPE. The operand of NAME can take many
203 forms... */
204
94be8403
GDR
205bool
206check_dtor_name (tree basetype, tree name)
1c2c08a5
JM
207{
208 name = TREE_OPERAND (name, 0);
209
ee996e9e 210 /* Just accept something we've already complained about. */
f3400fe2 211 if (name == error_mark_node)
94be8403 212 return true;
f3400fe2 213
1c2c08a5
JM
214 if (TREE_CODE (name) == TYPE_DECL)
215 name = TREE_TYPE (name);
2f939d94 216 else if (TYPE_P (name))
1c2c08a5
JM
217 /* OK */;
218 else if (TREE_CODE (name) == IDENTIFIER_NODE)
219 {
26877584
JM
220 if ((IS_AGGR_TYPE (basetype) && name == constructor_name (basetype))
221 || (TREE_CODE (basetype) == ENUMERAL_TYPE
222 && name == TYPE_IDENTIFIER (basetype)))
1c2c08a5
JM
223 name = basetype;
224 else
225 name = get_type_value (name);
226 }
227 else
8dc2b103
NS
228 {
229 /* In the case of:
c8094d83 230
0cbd7506
MS
231 template <class T> struct S { ~S(); };
232 int i;
233 i.~S();
c8094d83 234
0cbd7506 235 NAME will be a class template. */
8dc2b103
NS
236 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
237 return false;
238 }
1c2c08a5
JM
239
240 if (name && TYPE_MAIN_VARIANT (basetype) == TYPE_MAIN_VARIANT (name))
94be8403
GDR
241 return true;
242 return false;
1c2c08a5
JM
243}
244
277294d7
JM
245/* We want the address of a function or method. We avoid creating a
246 pointer-to-member function. */
247
248tree
94be8403 249build_addr_func (tree function)
277294d7
JM
250{
251 tree type = TREE_TYPE (function);
878cd289 252
277294d7
JM
253 /* We have to do these by hand to avoid real pointer to member
254 functions. */
255 if (TREE_CODE (type) == METHOD_TYPE)
8d08fdba 256 {
d6b4ea85
MM
257 if (TREE_CODE (function) == OFFSET_REF)
258 {
259 tree object = build_address (TREE_OPERAND (function, 0));
260 return get_member_function_from_ptrfunc (&object,
261 TREE_OPERAND (function, 1));
262 }
263 function = build_address (function);
277294d7
JM
264 }
265 else
0a72704b 266 function = decay_conversion (function);
8d08fdba 267
277294d7
JM
268 return function;
269}
8d08fdba 270
277294d7
JM
271/* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
272 POINTER_TYPE to those. Note, pointer to member function types
273 (TYPE_PTRMEMFUNC_P) must be handled by our callers. */
8d08fdba
MS
274
275tree
94be8403 276build_call (tree function, tree parms)
8d08fdba 277{
277294d7 278 int is_constructor = 0;
12a22e76 279 int nothrow;
570221c2 280 tree tmp;
7c76b292 281 tree decl;
0c11ada6 282 tree result_type;
5aa3396c 283 tree fntype;
8d08fdba 284
277294d7 285 function = build_addr_func (function);
8d08fdba 286
277294d7 287 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
8d08fdba 288 {
277294d7 289 sorry ("unable to call pointer to member function here");
ce122a86 290 return error_mark_node;
8d08fdba 291 }
ce122a86 292
5aa3396c
JM
293 fntype = TREE_TYPE (TREE_TYPE (function));
294 result_type = TREE_TYPE (fntype);
0c11ada6 295
277294d7 296 if (TREE_CODE (function) == ADDR_EXPR
7c76b292
JM
297 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
298 decl = TREE_OPERAND (function, 0);
299 else
300 decl = NULL_TREE;
301
12a22e76
JM
302 /* We check both the decl and the type; a function may be known not to
303 throw without being declared throw(). */
304 nothrow = ((decl && TREE_NOTHROW (decl))
305 || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
e23bd218 306
1a55127d 307 if (decl && TREE_THIS_VOLATILE (decl) && cfun)
efe49da0
JM
308 current_function_returns_abnormally = 1;
309
e23bd218
IR
310 if (decl && TREE_DEPRECATED (decl))
311 warn_deprecated_use (decl);
5aa3396c 312 require_complete_eh_spec_types (fntype, decl);
e23bd218 313
7c76b292 314 if (decl && DECL_CONSTRUCTOR_P (decl))
277294d7 315 is_constructor = 1;
8d08fdba 316
0c11ada6
JM
317 if (decl && ! TREE_USED (decl))
318 {
f49fad00
JM
319 /* We invoke build_call directly for several library functions.
320 These may have been declared normally if we're building libgcc,
321 so we can't just check DECL_ARTIFICIAL. */
8dc2b103
NS
322 gcc_assert (DECL_ARTIFICIAL (decl)
323 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
324 "__", 2));
325 mark_used (decl);
0c11ada6 326 }
a6ecf8b6 327
7c76b292 328 /* Don't pass empty class objects by value. This is useful
570221c2
JM
329 for tags in STL, which are used to control overload resolution.
330 We don't need to handle other cases of copying empty classes. */
7c76b292
JM
331 if (! decl || ! DECL_BUILT_IN (decl))
332 for (tmp = parms; tmp; tmp = TREE_CHAIN (tmp))
333 if (is_empty_class (TREE_TYPE (TREE_VALUE (tmp)))
334 && ! TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (tmp))))
335 {
f293ce4b
RS
336 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (TREE_VALUE (tmp)));
337 TREE_VALUE (tmp) = build2 (COMPOUND_EXPR, TREE_TYPE (t),
338 TREE_VALUE (tmp), t);
7c76b292 339 }
570221c2 340
f293ce4b 341 function = build3 (CALL_EXPR, result_type, function, parms, NULL_TREE);
277294d7 342 TREE_HAS_CONSTRUCTOR (function) = is_constructor;
12a22e76 343 TREE_NOTHROW (function) = nothrow;
c8094d83 344
277294d7
JM
345 return function;
346}
8d08fdba 347
277294d7
JM
348/* Build something of the form ptr->method (args)
349 or object.method (args). This can also build
350 calls to constructors, and find friends.
8d08fdba 351
277294d7
JM
352 Member functions always take their class variable
353 as a pointer.
8d08fdba 354
277294d7 355 INSTANCE is a class instance.
8d08fdba 356
277294d7 357 NAME is the name of the method desired, usually an IDENTIFIER_NODE.
8d08fdba 358
277294d7 359 PARMS help to figure out what that NAME really refers to.
8d08fdba 360
277294d7
JM
361 BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
362 down to the real instance type to use for access checking. We need this
d17811fd 363 information to get protected accesses correct.
8d08fdba 364
277294d7
JM
365 FLAGS is the logical disjunction of zero or more LOOKUP_
366 flags. See cp-tree.h for more info.
8d08fdba 367
277294d7
JM
368 If this is all OK, calls build_function_call with the resolved
369 member function.
a4443a08 370
277294d7
JM
371 This function must also handle being called to perform
372 initialization, promotion/coercion of arguments, and
373 instantiation of default parameters.
a4443a08 374
277294d7
JM
375 Note that NAME may refer to an instance variable name. If
376 `operator()()' is defined for the type of that field, then we return
377 that result. */
8d08fdba 378
c73964b2
MS
379/* New overloading code. */
380
5bd61841
MM
381typedef struct z_candidate z_candidate;
382
383typedef struct candidate_warning candidate_warning;
384struct candidate_warning {
385 z_candidate *loser;
386 candidate_warning *next;
387};
388
389struct z_candidate {
4ba126e4
MM
390 /* The FUNCTION_DECL that will be called if this candidate is
391 selected by overload resolution. */
c73964b2 392 tree fn;
b80f8ef3
MM
393 /* The arguments to use when calling this function. */
394 tree args;
3d938426
MM
395 /* The implicit conversion sequences for each of the arguments to
396 FN. */
5bd61841
MM
397 conversion **convs;
398 /* The number of implicit conversion sequences. */
399 size_t num_convs;
3d938426
MM
400 /* If FN is a user-defined conversion, the standard conversion
401 sequence from the type returned by FN to the desired destination
402 type. */
5bd61841 403 conversion *second_conv;
c73964b2 404 int viable;
4ba126e4
MM
405 /* If FN is a member function, the binfo indicating the path used to
406 qualify the name of FN at the call site. This path is used to
407 determine whether or not FN is accessible if it is selected by
408 overload resolution. The DECL_CONTEXT of FN will always be a
409 (possibly improper) base of this binfo. */
410 tree access_path;
411 /* If FN is a non-static member function, the binfo indicating the
412 subobject to which the `this' pointer should be converted if FN
413 is selected by overload resolution. The type pointed to the by
414 the `this' pointer must correspond to the most derived class
415 indicated by the CONVERSION_PATH. */
416 tree conversion_path;
ea0ad329 417 tree template_decl;
5bd61841
MM
418 candidate_warning *warnings;
419 z_candidate *next;
c73964b2
MS
420};
421
c30b4add
MM
422/* Returns true iff T is a null pointer constant in the sense of
423 [conv.ptr]. */
424
94be8403
GDR
425bool
426null_ptr_cst_p (tree t)
c73964b2 427{
a7a64a77
MM
428 /* [conv.ptr]
429
430 A null pointer constant is an integral constant expression
431 (_expr.const_) rvalue of integer type that evaluates to zero. */
8a784e4a 432 t = integral_constant_value (t);
d11ad92e 433 if (t == null_node
a7a64a77 434 || (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t)))
94be8403
GDR
435 return true;
436 return false;
c73964b2
MS
437}
438
838dfd8a 439/* Returns nonzero if PARMLIST consists of only default parms and/or
00a17e31 440 ellipsis. */
a11d04b5 441
94be8403
GDR
442bool
443sufficient_parms_p (tree parmlist)
a11d04b5
NS
444{
445 for (; parmlist && parmlist != void_list_node;
446 parmlist = TREE_CHAIN (parmlist))
447 if (!TREE_PURPOSE (parmlist))
94be8403
GDR
448 return false;
449 return true;
a11d04b5
NS
450}
451
5bd61841
MM
452/* Allocate N bytes of memory from the conversion obstack. The memory
453 is zeroed before being returned. */
454
455static void *
456conversion_obstack_alloc (size_t n)
c73964b2 457{
5bd61841
MM
458 void *p;
459 if (!conversion_obstack_initialized)
460 {
461 gcc_obstack_init (&conversion_obstack);
462 conversion_obstack_initialized = true;
463 }
464 p = obstack_alloc (&conversion_obstack, n);
465 memset (p, 0, n);
466 return p;
467}
468
469/* Dynamically allocate a conversion. */
470
471static conversion *
472alloc_conversion (conversion_kind kind)
473{
474 conversion *c;
475 c = conversion_obstack_alloc (sizeof (conversion));
476 c->kind = kind;
477 return c;
478}
479
480#ifdef ENABLE_CHECKING
481
482/* Make sure that all memory on the conversion obstack has been
483 freed. */
484
485void
486validate_conversion_obstack (void)
487{
488 if (conversion_obstack_initialized)
c8094d83 489 gcc_assert ((obstack_next_free (&conversion_obstack)
50bc768d 490 == obstack_base (&conversion_obstack)));
5bd61841
MM
491}
492
493#endif /* ENABLE_CHECKING */
494
495/* Dynamically allocate an array of N conversions. */
496
497static conversion **
498alloc_conversions (size_t n)
499{
500 return conversion_obstack_alloc (n * sizeof (conversion *));
501}
502
503static conversion *
504build_conv (conversion_kind code, tree type, conversion *from)
505{
506 conversion *t;
507 conversion_rank rank = CONVERSION_RANK (from);
519c9806 508
4cff6abe 509 /* We can't use buildl1 here because CODE could be USER_CONV, which
519c9806
MM
510 takes two arguments. In that case, the caller is responsible for
511 filling in the second argument. */
5bd61841
MM
512 t = alloc_conversion (code);
513 t->type = type;
514 t->u.next = from;
519c9806 515
c73964b2
MS
516 switch (code)
517 {
5bd61841
MM
518 case ck_ptr:
519 case ck_pmem:
520 case ck_base:
521 case ck_std:
522 if (rank < cr_std)
523 rank = cr_std;
c73964b2
MS
524 break;
525
5bd61841
MM
526 case ck_qual:
527 if (rank < cr_exact)
528 rank = cr_exact;
529 break;
c73964b2
MS
530
531 default:
532 break;
533 }
5bd61841
MM
534 t->rank = rank;
535 t->user_conv_p = (code == ck_user || from->user_conv_p);
536 t->bad_p = from->bad_p;
33c25e5c 537 t->base_p = false;
c73964b2
MS
538 return t;
539}
540
5bd61841 541/* Build a representation of the identity conversion from EXPR to
78dcd41a 542 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
5bd61841
MM
543
544static conversion *
545build_identity_conv (tree type, tree expr)
546{
547 conversion *c;
c8094d83 548
5bd61841
MM
549 c = alloc_conversion (ck_identity);
550 c->type = type;
551 c->u.expr = expr;
552
553 return c;
554}
555
556/* Converting from EXPR to TYPE was ambiguous in the sense that there
557 were multiple user-defined conversions to accomplish the job.
558 Build a conversion that indicates that ambiguity. */
559
560static conversion *
561build_ambiguous_conv (tree type, tree expr)
562{
563 conversion *c;
564
565 c = alloc_conversion (ck_ambig);
566 c->type = type;
567 c->u.expr = expr;
568
569 return c;
570}
571
a7a64a77 572tree
94be8403 573strip_top_quals (tree t)
de22184b
MS
574{
575 if (TREE_CODE (t) == ARRAY_TYPE)
576 return t;
7d149679 577 return cp_build_qualified_type (t, 0);
de22184b
MS
578}
579
c73964b2
MS
580/* Returns the standard conversion path (see [conv]) from type FROM to type
581 TO, if any. For proper handling of null pointer constants, you must
34b5375f
MM
582 also pass the expression EXPR to convert from. If C_CAST_P is true,
583 this conversion is coming from a C-style cast. */
c73964b2 584
5bd61841 585static conversion *
34b5375f
MM
586standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
587 int flags)
c73964b2
MS
588{
589 enum tree_code fcode, tcode;
5bd61841 590 conversion *conv;
94be8403 591 bool fromref = false;
de22184b 592
ee76b931 593 to = non_reference (to);
de22184b
MS
594 if (TREE_CODE (from) == REFERENCE_TYPE)
595 {
94be8403 596 fromref = true;
de22184b
MS
597 from = TREE_TYPE (from);
598 }
599 to = strip_top_quals (to);
600 from = strip_top_quals (from);
c73964b2 601
e6e174e5
JM
602 if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
603 && expr && type_unknown_p (expr))
604 {
84583208 605 expr = instantiate_type (to, expr, tf_conv);
e6e174e5 606 if (expr == error_mark_node)
5bd61841 607 return NULL;
e6e174e5
JM
608 from = TREE_TYPE (expr);
609 }
610
c73964b2
MS
611 fcode = TREE_CODE (from);
612 tcode = TREE_CODE (to);
613
5bd61841 614 conv = build_identity_conv (from, expr);
c73964b2
MS
615 if (fcode == FUNCTION_TYPE)
616 {
617 from = build_pointer_type (from);
618 fcode = TREE_CODE (from);
5bd61841 619 conv = build_conv (ck_lvalue, from, conv);
c73964b2
MS
620 }
621 else if (fcode == ARRAY_TYPE)
622 {
623 from = build_pointer_type (TREE_TYPE (from));
624 fcode = TREE_CODE (from);
5bd61841 625 conv = build_conv (ck_lvalue, from, conv);
c73964b2 626 }
583ca5a0 627 else if (fromref || (expr && lvalue_p (expr)))
5bd61841 628 conv = build_conv (ck_rvalue, from, conv);
de22184b 629
04c06002 630 /* Allow conversion between `__complex__' data types. */
a04678ca
GDR
631 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
632 {
633 /* The standard conversion sequence to convert FROM to TO is
0cbd7506
MS
634 the standard conversion sequence to perform componentwise
635 conversion. */
5bd61841 636 conversion *part_conv = standard_conversion
34b5375f 637 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
c8094d83 638
a04678ca 639 if (part_conv)
0cbd7506 640 {
5bd61841
MM
641 conv = build_conv (part_conv->kind, to, conv);
642 conv->rank = part_conv->rank;
0cbd7506 643 }
a04678ca 644 else
0cbd7506 645 conv = NULL;
a04678ca
GDR
646
647 return conv;
648 }
649
a7a64a77 650 if (same_type_p (from, to))
de22184b 651 return conv;
c73964b2 652
a5ac359a 653 if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
c73964b2 654 && expr && null_ptr_cst_p (expr))
5bd61841 655 conv = build_conv (ck_std, to, conv);
72a08131
JM
656 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
657 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
658 {
659 /* For backwards brain damage compatibility, allow interconversion of
660 pointers and integers with a pedwarn. */
5bd61841
MM
661 conv = build_conv (ck_std, to, conv);
662 conv->bad_p = true;
72a08131 663 }
7b6d72fc 664 else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE)
8a2b77e7
JM
665 {
666 /* For backwards brain damage compatibility, allow interconversion of
667 enums and integers with a pedwarn. */
5bd61841
MM
668 conv = build_conv (ck_std, to, conv);
669 conv->bad_p = true;
8a2b77e7 670 }
a5ac359a
MM
671 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
672 || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
c73964b2 673 {
a5ac359a
MM
674 tree to_pointee;
675 tree from_pointee;
c73964b2 676
a5ac359a
MM
677 if (tcode == POINTER_TYPE
678 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
679 TREE_TYPE (to)))
4d50dd69 680 ;
a5ac359a
MM
681 else if (VOID_TYPE_P (TREE_TYPE (to))
682 && !TYPE_PTRMEM_P (from)
683 && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
c73964b2
MS
684 {
685 from = build_pointer_type
c8094d83 686 (cp_build_qualified_type (void_type_node,
89d684bb 687 cp_type_quals (TREE_TYPE (from))));
5bd61841 688 conv = build_conv (ck_ptr, from, conv);
c73964b2 689 }
a5ac359a 690 else if (TYPE_PTRMEM_P (from))
c73964b2 691 {
a5ac359a
MM
692 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
693 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
c73964b2 694
999cc24c 695 if (DERIVED_FROM_P (fbase, tbase)
9edc3913 696 && (same_type_ignoring_top_level_qualifiers_p
a5ac359a
MM
697 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
698 TYPE_PTRMEM_POINTED_TO_TYPE (to))))
c73964b2 699 {
c8094d83 700 from = build_ptrmem_type (tbase,
a5ac359a 701 TYPE_PTRMEM_POINTED_TO_TYPE (from));
5bd61841 702 conv = build_conv (ck_pmem, from, conv);
c73964b2 703 }
539599c1
MM
704 else if (!same_type_p (fbase, tbase))
705 return NULL;
c73964b2
MS
706 }
707 else if (IS_AGGR_TYPE (TREE_TYPE (from))
385bce06
MM
708 && IS_AGGR_TYPE (TREE_TYPE (to))
709 /* [conv.ptr]
c8094d83 710
0cbd7506 711 An rvalue of type "pointer to cv D," where D is a
385bce06
MM
712 class type, can be converted to an rvalue of type
713 "pointer to cv B," where B is a base class (clause
714 _class.derived_) of D. If B is an inaccessible
715 (clause _class.access_) or ambiguous
716 (_class.member.lookup_) base class of D, a program
18e4be85 717 that necessitates this conversion is ill-formed.
0cbd7506
MS
718 Therefore, we use DERIVED_FROM_P, and do not check
719 access or uniqueness. */
385bce06 720 && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
c73964b2 721 {
c8094d83 722 from =
385bce06
MM
723 cp_build_qualified_type (TREE_TYPE (to),
724 cp_type_quals (TREE_TYPE (from)));
725 from = build_pointer_type (from);
5bd61841 726 conv = build_conv (ck_ptr, from, conv);
33c25e5c 727 conv->base_p = true;
c73964b2 728 }
c73964b2 729
a5ac359a
MM
730 if (tcode == POINTER_TYPE)
731 {
732 to_pointee = TREE_TYPE (to);
733 from_pointee = TREE_TYPE (from);
734 }
735 else
736 {
b7a78333
MM
737 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
738 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
a5ac359a
MM
739 }
740
3bfdc719 741 if (same_type_p (from, to))
798eed5e 742 /* OK */;
34b5375f
MM
743 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
744 /* In a C-style cast, we ignore CV-qualification because we
745 are allowed to perform a static_cast followed by a
746 const_cast. */
747 conv = build_conv (ck_qual, to, conv);
748 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
5bd61841 749 conv = build_conv (ck_qual, to, conv);
d9cf7c82
JM
750 else if (expr && string_conv_p (to, expr, 0))
751 /* converting from string constant to char *. */
5bd61841 752 conv = build_conv (ck_qual, to, conv);
a5ac359a 753 else if (ptr_reasonably_similar (to_pointee, from_pointee))
c73964b2 754 {
5bd61841
MM
755 conv = build_conv (ck_ptr, to, conv);
756 conv->bad_p = true;
c73964b2 757 }
d11ad92e 758 else
5bd61841 759 return NULL;
d11ad92e
MS
760
761 from = to;
c73964b2
MS
762 }
763 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
764 {
765 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
766 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
767 tree fbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fromfn)));
768 tree tbase = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (tofn)));
769
999cc24c 770 if (!DERIVED_FROM_P (fbase, tbase)
13f9714b
NS
771 || !same_type_p (TREE_TYPE (fromfn), TREE_TYPE (tofn))
772 || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
773 TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
89d684bb 774 || cp_type_quals (fbase) != cp_type_quals (tbase))
c73964b2
MS
775 return 0;
776
89d684bb 777 from = cp_build_qualified_type (tbase, cp_type_quals (fbase));
c8094d83 778 from = build_method_type_directly (from,
43dc123f
MM
779 TREE_TYPE (fromfn),
780 TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
c73964b2 781 from = build_ptrmemfunc_type (build_pointer_type (from));
5bd61841 782 conv = build_conv (ck_pmem, from, conv);
08e17d9d 783 conv->base_p = true;
c73964b2
MS
784 }
785 else if (tcode == BOOLEAN_TYPE)
786 {
a5ac359a 787 /* [conv.bool]
c73964b2 788
0cbd7506 789 An rvalue of arithmetic, enumeration, pointer, or pointer to
a5ac359a
MM
790 member type can be converted to an rvalue of type bool. */
791 if (ARITHMETIC_TYPE_P (from)
792 || fcode == ENUMERAL_TYPE
793 || fcode == POINTER_TYPE
794 || TYPE_PTR_TO_MEMBER_P (from))
795 {
5bd61841 796 conv = build_conv (ck_std, to, conv);
a5ac359a
MM
797 if (fcode == POINTER_TYPE
798 || TYPE_PTRMEM_P (from)
c8094d83 799 || (TYPE_PTRMEMFUNC_P (from)
5bd61841
MM
800 && conv->rank < cr_pbool))
801 conv->rank = cr_pbool;
a5ac359a
MM
802 return conv;
803 }
c8094d83 804
5bd61841 805 return NULL;
c73964b2
MS
806 }
807 /* We don't check for ENUMERAL_TYPE here because there are no standard
808 conversions to enum type. */
809 else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
810 || tcode == REAL_TYPE)
811 {
812 if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
813 return 0;
5bd61841 814 conv = build_conv (ck_std, to, conv);
c73964b2
MS
815
816 /* Give this a better rank if it's a promotion. */
f3c2dfc6 817 if (same_type_p (to, type_promotes_to (from))
5bd61841
MM
818 && conv->u.next->rank <= cr_promotion)
819 conv->rank = cr_promotion;
c73964b2 820 }
7d149679 821 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
cc27e657 822 && vector_types_convertible_p (from, to))
5bd61841 823 return build_conv (ck_std, to, conv);
386489e3
NS
824 else if (!(flags & LOOKUP_CONSTRUCTOR_CALLABLE)
825 && IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
a7a64a77 826 && is_properly_derived_from (from, to))
2dbfb418 827 {
5bd61841
MM
828 if (conv->kind == ck_rvalue)
829 conv = conv->u.next;
830 conv = build_conv (ck_base, to, conv);
27b8d0cd
MM
831 /* The derived-to-base conversion indicates the initialization
832 of a parameter with base type from an object of a derived
833 type. A temporary object is created to hold the result of
834 the conversion. */
5bd61841 835 conv->need_temporary_p = true;
2dbfb418 836 }
c73964b2 837 else
5bd61841 838 return NULL;
c73964b2
MS
839
840 return conv;
841}
842
838dfd8a 843/* Returns nonzero if T1 is reference-related to T2. */
27b8d0cd 844
94be8403
GDR
845static bool
846reference_related_p (tree t1, tree t2)
27b8d0cd
MM
847{
848 t1 = TYPE_MAIN_VARIANT (t1);
849 t2 = TYPE_MAIN_VARIANT (t2);
850
851 /* [dcl.init.ref]
852
853 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
854 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
855 of T2. */
856 return (same_type_p (t1, t2)
857 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
858 && DERIVED_FROM_P (t1, t2)));
859}
860
838dfd8a 861/* Returns nonzero if T1 is reference-compatible with T2. */
27b8d0cd 862
94be8403
GDR
863static bool
864reference_compatible_p (tree t1, tree t2)
27b8d0cd
MM
865{
866 /* [dcl.init.ref]
867
868 "cv1 T1" is reference compatible with "cv2 T2" if T1 is
869 reference-related to T2 and cv1 is the same cv-qualification as,
870 or greater cv-qualification than, cv2. */
871 return (reference_related_p (t1, t2)
872 && at_least_as_qualified_p (t1, t2));
873}
874
875/* Determine whether or not the EXPR (of class type S) can be
876 converted to T as in [over.match.ref]. */
877
5bd61841 878static conversion *
94be8403 879convert_class_to_reference (tree t, tree s, tree expr)
27b8d0cd
MM
880{
881 tree conversions;
882 tree arglist;
5bd61841 883 conversion *conv;
7993382e 884 tree reference_type;
27b8d0cd
MM
885 struct z_candidate *candidates;
886 struct z_candidate *cand;
436f8a4c 887 bool any_viable_p;
27b8d0cd 888
7993382e
MM
889 conversions = lookup_conversions (s);
890 if (!conversions)
5bd61841 891 return NULL;
7993382e 892
27b8d0cd
MM
893 /* [over.match.ref]
894
895 Assuming that "cv1 T" is the underlying type of the reference
896 being initialized, and "cv S" is the type of the initializer
897 expression, with S a class type, the candidate functions are
898 selected as follows:
899
900 --The conversion functions of S and its base classes are
901 considered. Those that are not hidden within S and yield type
902 "reference to cv2 T2", where "cv1 T" is reference-compatible
903 (_dcl.init.ref_) with "cv2 T2", are candidate functions.
904
905 The argument list has one argument, which is the initializer
906 expression. */
907
908 candidates = 0;
909
910 /* Conceptually, we should take the address of EXPR and put it in
911 the argument list. Unfortunately, however, that can result in
912 error messages, which we should not issue now because we are just
913 trying to find a conversion operator. Therefore, we use NULL,
914 cast to the appropriate type. */
7d60be94 915 arglist = build_int_cst (build_pointer_type (s), 0);
051e6fd7 916 arglist = build_tree_list (NULL_TREE, arglist);
7993382e
MM
917
918 reference_type = build_reference_type (t);
919
920 while (conversions)
27b8d0cd
MM
921 {
922 tree fns = TREE_VALUE (conversions);
923
aa52c1ff 924 for (; fns; fns = OVL_NEXT (fns))
27b8d0cd
MM
925 {
926 tree f = OVL_CURRENT (fns);
927 tree t2 = TREE_TYPE (TREE_TYPE (f));
c8094d83 928
7993382e 929 cand = NULL;
27b8d0cd
MM
930
931 /* If this is a template function, try to get an exact
0cbd7506 932 match. */
27b8d0cd
MM
933 if (TREE_CODE (f) == TEMPLATE_DECL)
934 {
7993382e
MM
935 cand = add_template_candidate (&candidates,
936 f, s,
937 NULL_TREE,
938 arglist,
939 reference_type,
940 TYPE_BINFO (s),
941 TREE_PURPOSE (conversions),
942 LOOKUP_NORMAL,
943 DEDUCE_CONV);
c8094d83 944
7993382e 945 if (cand)
27b8d0cd
MM
946 {
947 /* Now, see if the conversion function really returns
948 an lvalue of the appropriate type. From the
949 point of view of unification, simply returning an
950 rvalue of the right type is good enough. */
7993382e 951 f = cand->fn;
27b8d0cd
MM
952 t2 = TREE_TYPE (TREE_TYPE (f));
953 if (TREE_CODE (t2) != REFERENCE_TYPE
954 || !reference_compatible_p (t, TREE_TYPE (t2)))
7993382e
MM
955 {
956 candidates = candidates->next;
957 cand = NULL;
958 }
27b8d0cd
MM
959 }
960 }
961 else if (TREE_CODE (t2) == REFERENCE_TYPE
962 && reference_compatible_p (t, TREE_TYPE (t2)))
c8094d83
MS
963 cand = add_function_candidate (&candidates, f, s, arglist,
964 TYPE_BINFO (s),
7993382e
MM
965 TREE_PURPOSE (conversions),
966 LOOKUP_NORMAL);
c8094d83 967
7993382e 968 if (cand)
e9525111 969 {
5bd61841 970 conversion *identity_conv;
e9525111
MM
971 /* Build a standard conversion sequence indicating the
972 binding from the reference type returned by the
973 function to the desired REFERENCE_TYPE. */
c8094d83
MS
974 identity_conv
975 = build_identity_conv (TREE_TYPE (TREE_TYPE
5bd61841
MM
976 (TREE_TYPE (cand->fn))),
977 NULL_TREE);
e9525111 978 cand->second_conv
c8094d83 979 = (direct_reference_binding
5bd61841
MM
980 (reference_type, identity_conv));
981 cand->second_conv->bad_p |= cand->convs[0]->bad_p;
e9525111 982 }
27b8d0cd 983 }
7993382e 984 conversions = TREE_CHAIN (conversions);
27b8d0cd
MM
985 }
986
436f8a4c 987 candidates = splice_viable (candidates, pedantic, &any_viable_p);
27b8d0cd
MM
988 /* If none of the conversion functions worked out, let our caller
989 know. */
436f8a4c 990 if (!any_viable_p)
5bd61841 991 return NULL;
436f8a4c 992
27b8d0cd
MM
993 cand = tourney (candidates);
994 if (!cand)
5bd61841 995 return NULL;
27b8d0cd 996
b80f8ef3
MM
997 /* Now that we know that this is the function we're going to use fix
998 the dummy first argument. */
999 cand->args = tree_cons (NULL_TREE,
1000 build_this (expr),
1001 TREE_CHAIN (cand->args));
1002
3d938426
MM
1003 /* Build a user-defined conversion sequence representing the
1004 conversion. */
5bd61841 1005 conv = build_conv (ck_user,
3d938426 1006 TREE_TYPE (TREE_TYPE (cand->fn)),
5bd61841
MM
1007 build_identity_conv (TREE_TYPE (expr), expr));
1008 conv->cand = cand;
3d938426
MM
1009
1010 /* Merge it with the standard conversion sequence from the
1011 conversion function's return type to the desired type. */
1012 cand->second_conv = merge_conversion_sequences (conv, cand->second_conv);
1013
27b8d0cd 1014 if (cand->viable == -1)
5bd61841 1015 conv->bad_p = true;
c8094d83 1016
3d938426 1017 return cand->second_conv;
27b8d0cd
MM
1018}
1019
1020/* A reference of the indicated TYPE is being bound directly to the
1021 expression represented by the implicit conversion sequence CONV.
1022 Return a conversion sequence for this binding. */
1023
5bd61841
MM
1024static conversion *
1025direct_reference_binding (tree type, conversion *conv)
27b8d0cd 1026{
3d938426
MM
1027 tree t;
1028
50bc768d
NS
1029 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
1030 gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
3d938426
MM
1031
1032 t = TREE_TYPE (type);
27b8d0cd 1033
c8094d83
MS
1034 /* [over.ics.rank]
1035
27b8d0cd
MM
1036 When a parameter of reference type binds directly
1037 (_dcl.init.ref_) to an argument expression, the implicit
1038 conversion sequence is the identity conversion, unless the
1039 argument expression has a type that is a derived class of the
1040 parameter type, in which case the implicit conversion sequence is
1041 a derived-to-base Conversion.
c8094d83 1042
27b8d0cd
MM
1043 If the parameter binds directly to the result of applying a
1044 conversion function to the argument expression, the implicit
1045 conversion sequence is a user-defined conversion sequence
1046 (_over.ics.user_), with the second standard conversion sequence
1047 either an identity conversion or, if the conversion function
1048 returns an entity of a type that is a derived class of the
1049 parameter type, a derived-to-base conversion. */
5bd61841 1050 if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
27b8d0cd
MM
1051 {
1052 /* Represent the derived-to-base conversion. */
5bd61841 1053 conv = build_conv (ck_base, t, conv);
27b8d0cd
MM
1054 /* We will actually be binding to the base-class subobject in
1055 the derived class, so we mark this conversion appropriately.
1056 That way, convert_like knows not to generate a temporary. */
5bd61841 1057 conv->need_temporary_p = false;
27b8d0cd 1058 }
5bd61841 1059 return build_conv (ck_ref_bind, type, conv);
27b8d0cd
MM
1060}
1061
c73964b2
MS
1062/* Returns the conversion path from type FROM to reference type TO for
1063 purposes of reference binding. For lvalue binding, either pass a
c7f9c6f5
MM
1064 reference type to FROM or an lvalue expression to EXPR. If the
1065 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
aa6e8ed3 1066 the conversion returned. */
c73964b2 1067
5bd61841 1068static conversion *
aa6e8ed3 1069reference_binding (tree rto, tree rfrom, tree expr, int flags)
c73964b2 1070{
5bd61841 1071 conversion *conv = NULL;
c73964b2 1072 tree to = TREE_TYPE (rto);
de22184b 1073 tree from = rfrom;
94be8403
GDR
1074 bool related_p;
1075 bool compatible_p;
27b8d0cd 1076 cp_lvalue_kind lvalue_p = clk_none;
c73964b2 1077
e6e174e5
JM
1078 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1079 {
c2ea3a40 1080 expr = instantiate_type (to, expr, tf_none);
e6e174e5 1081 if (expr == error_mark_node)
5bd61841 1082 return NULL;
e6e174e5
JM
1083 from = TREE_TYPE (expr);
1084 }
1085
27b8d0cd
MM
1086 if (TREE_CODE (from) == REFERENCE_TYPE)
1087 {
1088 /* Anything with reference type is an lvalue. */
1089 lvalue_p = clk_ordinary;
1090 from = TREE_TYPE (from);
1091 }
1092 else if (expr)
1093 lvalue_p = real_lvalue_p (expr);
eb66be0e 1094
b0385db8
MM
1095 /* Figure out whether or not the types are reference-related and
1096 reference compatible. We have do do this after stripping
1097 references from FROM. */
1098 related_p = reference_related_p (to, from);
1099 compatible_p = reference_compatible_p (to, from);
1100
27b8d0cd 1101 if (lvalue_p && compatible_p)
c73964b2 1102 {
27b8d0cd 1103 /* [dcl.init.ref]
c73964b2 1104
c8094d83
MS
1105 If the initializer expression
1106
27b8d0cd
MM
1107 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1108 is reference-compatible with "cv2 T2,"
c8094d83 1109
34cd5ae7 1110 the reference is bound directly to the initializer expression
27b8d0cd 1111 lvalue. */
5bd61841 1112 conv = build_identity_conv (from, expr);
27b8d0cd 1113 conv = direct_reference_binding (rto, conv);
e0d1297c
NS
1114 if ((lvalue_p & clk_bitfield) != 0
1115 || ((lvalue_p & clk_packed) != 0 && !TYPE_PACKED (to)))
27b8d0cd 1116 /* For the purposes of overload resolution, we ignore the fact
e0d1297c 1117 this expression is a bitfield or packed field. (In particular,
27b8d0cd
MM
1118 [over.ics.ref] says specifically that a function with a
1119 non-const reference parameter is viable even if the
1120 argument is a bitfield.)
1121
1122 However, when we actually call the function we must create
1123 a temporary to which to bind the reference. If the
1124 reference is volatile, or isn't const, then we cannot make
1125 a temporary, so we just issue an error when the conversion
1126 actually occurs. */
5bd61841 1127 conv->need_temporary_p = true;
c8094d83 1128
27b8d0cd 1129 return conv;
c73964b2 1130 }
27b8d0cd 1131 else if (CLASS_TYPE_P (from) && !(flags & LOOKUP_NO_CONVERSION))
c73964b2 1132 {
27b8d0cd
MM
1133 /* [dcl.init.ref]
1134
34cd5ae7 1135 If the initializer expression
27b8d0cd
MM
1136
1137 -- has a class type (i.e., T2 is a class type) can be
1138 implicitly converted to an lvalue of type "cv3 T3," where
1139 "cv1 T1" is reference-compatible with "cv3 T3". (this
1140 conversion is selected by enumerating the applicable
1141 conversion functions (_over.match.ref_) and choosing the
c8094d83 1142 best one through overload resolution. (_over.match_).
27b8d0cd 1143
0cbd7506 1144 the reference is bound to the lvalue result of the conversion
27b8d0cd
MM
1145 in the second case. */
1146 conv = convert_class_to_reference (to, from, expr);
c73964b2 1147 if (conv)
7993382e 1148 return conv;
27b8d0cd 1149 }
c73964b2 1150
a7a64a77
MM
1151 /* From this point on, we conceptually need temporaries, even if we
1152 elide them. Only the cases above are "direct bindings". */
1153 if (flags & LOOKUP_NO_TEMP_BIND)
5bd61841 1154 return NULL;
a7a64a77 1155
27b8d0cd 1156 /* [over.ics.rank]
c8094d83 1157
27b8d0cd
MM
1158 When a parameter of reference type is not bound directly to an
1159 argument expression, the conversion sequence is the one required
1160 to convert the argument expression to the underlying type of the
1161 reference according to _over.best.ics_. Conceptually, this
1162 conversion sequence corresponds to copy-initializing a temporary
1163 of the underlying type with the argument expression. Any
1164 difference in top-level cv-qualification is subsumed by the
1165 initialization itself and does not constitute a conversion. */
1166
1167 /* [dcl.init.ref]
1168
1169 Otherwise, the reference shall be to a non-volatile const type. */
1170 if (!CP_TYPE_CONST_NON_VOLATILE_P (to))
5bd61841 1171 return NULL;
27b8d0cd
MM
1172
1173 /* [dcl.init.ref]
c8094d83 1174
27b8d0cd
MM
1175 If the initializer expression is an rvalue, with T2 a class type,
1176 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1177 is bound in one of the following ways:
c8094d83 1178
27b8d0cd 1179 -- The reference is bound to the object represented by the rvalue
0cbd7506 1180 or to a sub-object within that object.
27b8d0cd 1181
aa6e8ed3 1182 -- ...
c8094d83 1183
aa6e8ed3
MM
1184 We use the first alternative. The implicit conversion sequence
1185 is supposed to be same as we would obtain by generating a
1186 temporary. Fortunately, if the types are reference compatible,
1187 then this is either an identity conversion or the derived-to-base
1188 conversion, just as for direct binding. */
1189 if (CLASS_TYPE_P (from) && compatible_p)
27b8d0cd 1190 {
5bd61841 1191 conv = build_identity_conv (from, expr);
4f8163b1 1192 conv = direct_reference_binding (rto, conv);
644d1951
NS
1193 if (!(flags & LOOKUP_CONSTRUCTOR_CALLABLE))
1194 conv->u.next->check_copy_constructor_p = true;
4f8163b1 1195 return conv;
faf5394a 1196 }
d11ad92e 1197
27b8d0cd
MM
1198 /* [dcl.init.ref]
1199
1200 Otherwise, a temporary of type "cv1 T1" is created and
1201 initialized from the initializer expression using the rules for a
1202 non-reference copy initialization. If T1 is reference-related to
1203 T2, cv1 must be the same cv-qualification as, or greater
1204 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1205 if (related_p && !at_least_as_qualified_p (to, from))
5bd61841 1206 return NULL;
27b8d0cd 1207
34b5375f
MM
1208 conv = implicit_conversion (to, from, expr, /*c_cast_p=*/false,
1209 flags);
27b8d0cd 1210 if (!conv)
5bd61841 1211 return NULL;
27b8d0cd 1212
5bd61841 1213 conv = build_conv (ck_ref_bind, rto, conv);
27b8d0cd
MM
1214 /* This reference binding, unlike those above, requires the
1215 creation of a temporary. */
5bd61841 1216 conv->need_temporary_p = true;
27b8d0cd 1217
c73964b2
MS
1218 return conv;
1219}
1220
34b5375f
MM
1221/* Returns the implicit conversion sequence (see [over.ics]) from type
1222 FROM to type TO. The optional expression EXPR may affect the
1223 conversion. FLAGS are the usual overloading flags. Only
1224 LOOKUP_NO_CONVERSION is significant. If C_CAST_P is true, this
1225 conversion is coming from a C-style cast. */
c73964b2 1226
5bd61841 1227static conversion *
34b5375f
MM
1228implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1229 int flags)
c73964b2 1230{
5bd61841 1231 conversion *conv;
c73964b2 1232
5d73aa63
MM
1233 if (from == error_mark_node || to == error_mark_node
1234 || expr == error_mark_node)
5bd61841 1235 return NULL;
5d73aa63 1236
c73964b2 1237 if (TREE_CODE (to) == REFERENCE_TYPE)
aa6e8ed3 1238 conv = reference_binding (to, from, expr, flags);
c73964b2 1239 else
34b5375f 1240 conv = standard_conversion (to, from, expr, c_cast_p, flags);
c73964b2
MS
1241
1242 if (conv)
b80f8ef3
MM
1243 return conv;
1244
1245 if (expr != NULL_TREE
1246 && (IS_AGGR_TYPE (from)
1247 || IS_AGGR_TYPE (to))
1248 && (flags & LOOKUP_NO_CONVERSION) == 0)
c73964b2 1249 {
7993382e
MM
1250 struct z_candidate *cand;
1251
eb66be0e
MS
1252 cand = build_user_type_conversion_1
1253 (to, expr, LOOKUP_ONLYCONVERTING);
1254 if (cand)
1255 conv = cand->second_conv;
5e818b93
JM
1256
1257 /* We used to try to bind a reference to a temporary here, but that
1258 is now handled by the recursive call to this function at the end
1259 of reference_binding. */
b80f8ef3 1260 return conv;
c73964b2
MS
1261 }
1262
5bd61841 1263 return NULL;
c73964b2
MS
1264}
1265
5ffe581d
JM
1266/* Add a new entry to the list of candidates. Used by the add_*_candidate
1267 functions. */
1268
1269static struct z_candidate *
c8094d83
MS
1270add_candidate (struct z_candidate **candidates,
1271 tree fn, tree args,
1272 size_t num_convs, conversion **convs,
1273 tree access_path, tree conversion_path,
5bd61841 1274 int viable)
5ffe581d 1275{
c8094d83 1276 struct z_candidate *cand
5bd61841 1277 = conversion_obstack_alloc (sizeof (struct z_candidate));
5ffe581d
JM
1278
1279 cand->fn = fn;
b80f8ef3 1280 cand->args = args;
5ffe581d 1281 cand->convs = convs;
5bd61841 1282 cand->num_convs = num_convs;
4ba126e4
MM
1283 cand->access_path = access_path;
1284 cand->conversion_path = conversion_path;
5ffe581d 1285 cand->viable = viable;
7993382e
MM
1286 cand->next = *candidates;
1287 *candidates = cand;
5ffe581d
JM
1288
1289 return cand;
1290}
1291
c73964b2
MS
1292/* Create an overload candidate for the function or method FN called with
1293 the argument list ARGLIST and add it to CANDIDATES. FLAGS is passed on
aa52c1ff
JM
1294 to implicit_conversion.
1295
1296 CTYPE, if non-NULL, is the type we want to pretend this function
1297 comes from for purposes of overload resolution. */
c73964b2
MS
1298
1299static struct z_candidate *
c8094d83
MS
1300add_function_candidate (struct z_candidate **candidates,
1301 tree fn, tree ctype, tree arglist,
4ba126e4
MM
1302 tree access_path, tree conversion_path,
1303 int flags)
c73964b2
MS
1304{
1305 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1306 int i, len;
5bd61841 1307 conversion **convs;
8f96c7ac 1308 tree parmnode, argnode;
b80f8ef3 1309 tree orig_arglist;
c73964b2 1310 int viable = 1;
c73964b2 1311
089d6ea7
MM
1312 /* Built-in functions that haven't been declared don't really
1313 exist. */
1314 if (DECL_ANTICIPATED (fn))
1315 return NULL;
1316
e0fff4b3
JM
1317 /* The `this', `in_chrg' and VTT arguments to constructors are not
1318 considered in overload resolution. */
c73964b2
MS
1319 if (DECL_CONSTRUCTOR_P (fn))
1320 {
e0fff4b3 1321 parmlist = skip_artificial_parms_for (fn, parmlist);
b80f8ef3 1322 orig_arglist = arglist;
e0fff4b3 1323 arglist = skip_artificial_parms_for (fn, arglist);
c73964b2 1324 }
c8094d83 1325 else
b80f8ef3 1326 orig_arglist = arglist;
c73964b2 1327
8f96c7ac 1328 len = list_length (arglist);
5bd61841 1329 convs = alloc_conversions (len);
8f96c7ac
JM
1330
1331 /* 13.3.2 - Viable functions [over.match.viable]
1332 First, to be a viable function, a candidate function shall have enough
1333 parameters to agree in number with the arguments in the list.
1334
1335 We need to check this first; otherwise, checking the ICSes might cause
1336 us to produce an ill-formed template instantiation. */
1337
1338 parmnode = parmlist;
1339 for (i = 0; i < len; ++i)
1340 {
1341 if (parmnode == NULL_TREE || parmnode == void_list_node)
1342 break;
1343 parmnode = TREE_CHAIN (parmnode);
1344 }
1345
1346 if (i < len && parmnode)
1347 viable = 0;
1348
1349 /* Make sure there are default args for the rest of the parms. */
a11d04b5
NS
1350 else if (!sufficient_parms_p (parmnode))
1351 viable = 0;
8f96c7ac
JM
1352
1353 if (! viable)
1354 goto out;
1355
1356 /* Second, for F to be a viable function, there shall exist for each
1357 argument an implicit conversion sequence that converts that argument
1358 to the corresponding parameter of F. */
1359
1360 parmnode = parmlist;
1361 argnode = arglist;
c73964b2
MS
1362
1363 for (i = 0; i < len; ++i)
1364 {
1365 tree arg = TREE_VALUE (argnode);
8cd4c175 1366 tree argtype = lvalue_type (arg);
5bd61841 1367 conversion *t;
aa52c1ff 1368 int is_this;
c73964b2 1369
c73964b2
MS
1370 if (parmnode == void_list_node)
1371 break;
aa45967f 1372
aa52c1ff
JM
1373 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1374 && ! DECL_CONSTRUCTOR_P (fn));
1375
aa45967f
JM
1376 if (parmnode)
1377 {
1378 tree parmtype = TREE_VALUE (parmnode);
1379
aa52c1ff
JM
1380 /* The type of the implicit object parameter ('this') for
1381 overload resolution is not always the same as for the
1382 function itself; conversion functions are considered to
1383 be members of the class being converted, and functions
1384 introduced by a using-declaration are considered to be
1385 members of the class that uses them.
aa45967f 1386
aa52c1ff
JM
1387 Since build_over_call ignores the ICS for the `this'
1388 parameter, we can just change the parm type. */
1389 if (ctype && is_this)
aa45967f
JM
1390 {
1391 parmtype
aa52c1ff 1392 = build_qualified_type (ctype,
aa45967f
JM
1393 TYPE_QUALS (TREE_TYPE (parmtype)));
1394 parmtype = build_pointer_type (parmtype);
1395 }
1396
34b5375f
MM
1397 t = implicit_conversion (parmtype, argtype, arg,
1398 /*c_cast_p=*/false, flags);
aa45967f 1399 }
c73964b2
MS
1400 else
1401 {
5bd61841
MM
1402 t = build_identity_conv (argtype, arg);
1403 t->ellipsis_p = true;
c73964b2
MS
1404 }
1405
aa52c1ff 1406 if (t && is_this)
5bd61841 1407 t->this_p = true;
d11ad92e 1408
5bd61841 1409 convs[i] = t;
c73964b2 1410 if (! t)
8f96c7ac
JM
1411 {
1412 viable = 0;
1413 break;
1414 }
c73964b2 1415
5bd61841 1416 if (t->bad_p)
d11ad92e
MS
1417 viable = -1;
1418
c73964b2
MS
1419 if (parmnode)
1420 parmnode = TREE_CHAIN (parmnode);
1421 argnode = TREE_CHAIN (argnode);
1422 }
1423
8f96c7ac 1424 out:
c8094d83 1425 return add_candidate (candidates, fn, orig_arglist, len, convs,
5bd61841 1426 access_path, conversion_path, viable);
c73964b2
MS
1427}
1428
1429/* Create an overload candidate for the conversion function FN which will
1430 be invoked for expression OBJ, producing a pointer-to-function which
1431 will in turn be called with the argument list ARGLIST, and add it to
37b6eb34
JM
1432 CANDIDATES. FLAGS is passed on to implicit_conversion.
1433
1434 Actually, we don't really care about FN; we care about the type it
1435 converts to. There may be multiple conversion functions that will
1436 convert to that type, and we rely on build_user_type_conversion_1 to
1437 choose the best one; so when we create our candidate, we record the type
1438 instead of the function. */
c73964b2
MS
1439
1440static struct z_candidate *
7993382e 1441add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
0cbd7506 1442 tree arglist, tree access_path, tree conversion_path)
c73964b2
MS
1443{
1444 tree totype = TREE_TYPE (TREE_TYPE (fn));
477f6664 1445 int i, len, viable, flags;
5bd61841
MM
1446 tree parmlist, parmnode, argnode;
1447 conversion **convs;
477f6664
JM
1448
1449 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
1450 parmlist = TREE_TYPE (parmlist);
1451 parmlist = TYPE_ARG_TYPES (parmlist);
1452
1453 len = list_length (arglist) + 1;
5bd61841 1454 convs = alloc_conversions (len);
477f6664
JM
1455 parmnode = parmlist;
1456 argnode = arglist;
1457 viable = 1;
1458 flags = LOOKUP_NORMAL;
c73964b2 1459
37b6eb34 1460 /* Don't bother looking up the same type twice. */
7993382e
MM
1461 if (*candidates && (*candidates)->fn == totype)
1462 return NULL;
37b6eb34 1463
c73964b2
MS
1464 for (i = 0; i < len; ++i)
1465 {
1466 tree arg = i == 0 ? obj : TREE_VALUE (argnode);
d11ad92e 1467 tree argtype = lvalue_type (arg);
5bd61841 1468 conversion *t;
c73964b2 1469
c73964b2 1470 if (i == 0)
34b5375f
MM
1471 t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
1472 flags);
c73964b2
MS
1473 else if (parmnode == void_list_node)
1474 break;
1475 else if (parmnode)
34b5375f
MM
1476 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
1477 /*c_cast_p=*/false, flags);
c73964b2
MS
1478 else
1479 {
5bd61841
MM
1480 t = build_identity_conv (argtype, arg);
1481 t->ellipsis_p = true;
c73964b2
MS
1482 }
1483
5bd61841 1484 convs[i] = t;
c73964b2
MS
1485 if (! t)
1486 break;
1487
5bd61841 1488 if (t->bad_p)
d11ad92e
MS
1489 viable = -1;
1490
c73964b2
MS
1491 if (i == 0)
1492 continue;
1493
1494 if (parmnode)
1495 parmnode = TREE_CHAIN (parmnode);
1496 argnode = TREE_CHAIN (argnode);
1497 }
1498
1499 if (i < len)
1500 viable = 0;
1501
a11d04b5
NS
1502 if (!sufficient_parms_p (parmnode))
1503 viable = 0;
c73964b2 1504
c8094d83 1505 return add_candidate (candidates, totype, arglist, len, convs,
5bd61841 1506 access_path, conversion_path, viable);
c73964b2
MS
1507}
1508
7993382e
MM
1509static void
1510build_builtin_candidate (struct z_candidate **candidates, tree fnname,
0cbd7506
MS
1511 tree type1, tree type2, tree *args, tree *argtypes,
1512 int flags)
c73964b2 1513{
5bd61841
MM
1514 conversion *t;
1515 conversion **convs;
1516 size_t num_convs;
c73964b2 1517 int viable = 1, i;
c73964b2
MS
1518 tree types[2];
1519
1520 types[0] = type1;
1521 types[1] = type2;
1522
5bd61841
MM
1523 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
1524 convs = alloc_conversions (num_convs);
c73964b2
MS
1525
1526 for (i = 0; i < 2; ++i)
1527 {
1528 if (! args[i])
1529 break;
1530
34b5375f
MM
1531 t = implicit_conversion (types[i], argtypes[i], args[i],
1532 /*c_cast_p=*/false, flags);
c73964b2
MS
1533 if (! t)
1534 {
1535 viable = 0;
1536 /* We need something for printing the candidate. */
5bd61841 1537 t = build_identity_conv (types[i], NULL_TREE);
c73964b2 1538 }
5bd61841 1539 else if (t->bad_p)
d11ad92e 1540 viable = 0;
5bd61841 1541 convs[i] = t;
c73964b2
MS
1542 }
1543
1544 /* For COND_EXPR we rearranged the arguments; undo that now. */
1545 if (args[2])
1546 {
5bd61841
MM
1547 convs[2] = convs[1];
1548 convs[1] = convs[0];
34b5375f
MM
1549 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
1550 /*c_cast_p=*/false, flags);
c73964b2 1551 if (t)
5bd61841 1552 convs[0] = t;
c73964b2
MS
1553 else
1554 viable = 0;
c8094d83 1555 }
c73964b2 1556
c8094d83
MS
1557 add_candidate (candidates, fnname, /*args=*/NULL_TREE,
1558 num_convs, convs,
7993382e
MM
1559 /*access_path=*/NULL_TREE,
1560 /*conversion_path=*/NULL_TREE,
1561 viable);
c73964b2
MS
1562}
1563
94be8403
GDR
1564static bool
1565is_complete (tree t)
c73964b2 1566{
d0f062fb 1567 return COMPLETE_TYPE_P (complete_type (t));
c73964b2
MS
1568}
1569
838dfd8a 1570/* Returns nonzero if TYPE is a promoted arithmetic type. */
a7a64a77 1571
94be8403
GDR
1572static bool
1573promoted_arithmetic_type_p (tree type)
a7a64a77
MM
1574{
1575 /* [over.built]
1576
1577 In this section, the term promoted integral type is used to refer
1578 to those integral types which are preserved by integral promotion
1579 (including e.g. int and long but excluding e.g. char).
1580 Similarly, the term promoted arithmetic type refers to promoted
1581 integral types plus floating types. */
1582 return ((INTEGRAL_TYPE_P (type)
1583 && same_type_p (type_promotes_to (type), type))
1584 || TREE_CODE (type) == REAL_TYPE);
1585}
1586
c73964b2
MS
1587/* Create any builtin operator overload candidates for the operator in
1588 question given the converted operand types TYPE1 and TYPE2. The other
1589 args are passed through from add_builtin_candidates to
c8094d83
MS
1590 build_builtin_candidate.
1591
1592 TYPE1 and TYPE2 may not be permissible, and we must filter them.
4cff6abe
NS
1593 If CODE is requires candidates operands of the same type of the kind
1594 of which TYPE1 and TYPE2 are, we add both candidates
1595 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
c73964b2 1596
7993382e
MM
1597static void
1598add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
0cbd7506
MS
1599 enum tree_code code2, tree fnname, tree type1,
1600 tree type2, tree *args, tree *argtypes, int flags)
c73964b2
MS
1601{
1602 switch (code)
1603 {
1604 case POSTINCREMENT_EXPR:
1605 case POSTDECREMENT_EXPR:
1606 args[1] = integer_zero_node;
1607 type2 = integer_type_node;
7f85441b
KG
1608 break;
1609 default:
1610 break;
c73964b2
MS
1611 }
1612
1613 switch (code)
1614 {
1615
1616/* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
1617 and VQ is either volatile or empty, there exist candidate operator
1618 functions of the form
1619 VQ T& operator++(VQ T&);
1620 T operator++(VQ T&, int);
1621 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
1622 type other than bool, and VQ is either volatile or empty, there exist
1623 candidate operator functions of the form
1624 VQ T& operator--(VQ T&);
1625 T operator--(VQ T&, int);
1626 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
1627 complete object type, and VQ is either volatile or empty, there exist
1628 candidate operator functions of the form
1629 T*VQ& operator++(T*VQ&);
1630 T*VQ& operator--(T*VQ&);
1631 T* operator++(T*VQ&, int);
1632 T* operator--(T*VQ&, int); */
1633
1634 case POSTDECREMENT_EXPR:
1635 case PREDECREMENT_EXPR:
1636 if (TREE_CODE (type1) == BOOLEAN_TYPE)
7993382e 1637 return;
c73964b2
MS
1638 case POSTINCREMENT_EXPR:
1639 case PREINCREMENT_EXPR:
4cff6abe 1640 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
c73964b2
MS
1641 {
1642 type1 = build_reference_type (type1);
1643 break;
1644 }
7993382e 1645 return;
c73964b2
MS
1646
1647/* 7 For every cv-qualified or cv-unqualified complete object type T, there
1648 exist candidate operator functions of the form
1649
1650 T& operator*(T*);
1651
1652 8 For every function type T, there exist candidate operator functions of
1653 the form
1654 T& operator*(T*); */
1655
1656 case INDIRECT_REF:
1657 if (TREE_CODE (type1) == POINTER_TYPE
c11b6f21 1658 && (TYPE_PTROB_P (type1)
c73964b2
MS
1659 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
1660 break;
c8094d83 1661 return;
c73964b2
MS
1662
1663/* 9 For every type T, there exist candidate operator functions of the form
1664 T* operator+(T*);
1665
1666 10For every promoted arithmetic type T, there exist candidate operator
1667 functions of the form
1668 T operator+(T);
1669 T operator-(T); */
1670
392e3d51 1671 case UNARY_PLUS_EXPR: /* unary + */
a5ac359a 1672 if (TREE_CODE (type1) == POINTER_TYPE)
c73964b2
MS
1673 break;
1674 case NEGATE_EXPR:
1675 if (ARITHMETIC_TYPE_P (type1))
1676 break;
7993382e 1677 return;
c73964b2
MS
1678
1679/* 11For every promoted integral type T, there exist candidate operator
1680 functions of the form
1681 T operator~(T); */
1682
1683 case BIT_NOT_EXPR:
1684 if (INTEGRAL_TYPE_P (type1))
1685 break;
7993382e 1686 return;
c73964b2
MS
1687
1688/* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
1689 is the same type as C2 or is a derived class of C2, T is a complete
1690 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
1691 there exist candidate operator functions of the form
1692 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
1693 where CV12 is the union of CV1 and CV2. */
1694
1695 case MEMBER_REF:
1696 if (TREE_CODE (type1) == POINTER_TYPE
a5ac359a 1697 && TYPE_PTR_TO_MEMBER_P (type2))
c73964b2
MS
1698 {
1699 tree c1 = TREE_TYPE (type1);
a5ac359a 1700 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
c73964b2
MS
1701
1702 if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
1703 && (TYPE_PTRMEMFUNC_P (type2)
796cccfc 1704 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
c73964b2
MS
1705 break;
1706 }
7993382e 1707 return;
c73964b2
MS
1708
1709/* 13For every pair of promoted arithmetic types L and R, there exist can-
1710 didate operator functions of the form
1711 LR operator*(L, R);
1712 LR operator/(L, R);
1713 LR operator+(L, R);
1714 LR operator-(L, R);
1715 bool operator<(L, R);
1716 bool operator>(L, R);
1717 bool operator<=(L, R);
1718 bool operator>=(L, R);
1719 bool operator==(L, R);
1720 bool operator!=(L, R);
1721 where LR is the result of the usual arithmetic conversions between
1722 types L and R.
1723
1724 14For every pair of types T and I, where T is a cv-qualified or cv-
1725 unqualified complete object type and I is a promoted integral type,
1726 there exist candidate operator functions of the form
1727 T* operator+(T*, I);
1728 T& operator[](T*, I);
1729 T* operator-(T*, I);
1730 T* operator+(I, T*);
1731 T& operator[](I, T*);
1732
1733 15For every T, where T is a pointer to complete object type, there exist
1734 candidate operator functions of the form112)
1735 ptrdiff_t operator-(T, T);
1736
e5596aef 1737 16For every pointer or enumeration type T, there exist candidate operator
4cff6abe 1738 functions of the form
c73964b2
MS
1739 bool operator<(T, T);
1740 bool operator>(T, T);
1741 bool operator<=(T, T);
1742 bool operator>=(T, T);
1743 bool operator==(T, T);
1744 bool operator!=(T, T);
1745
1746 17For every pointer to member type T, there exist candidate operator
1747 functions of the form
1748 bool operator==(T, T);
1749 bool operator!=(T, T); */
1750
1751 case MINUS_EXPR:
c11b6f21 1752 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
c73964b2 1753 break;
c11b6f21 1754 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
c73964b2
MS
1755 {
1756 type2 = ptrdiff_type_node;
1757 break;
1758 }
1759 case MULT_EXPR:
1760 case TRUNC_DIV_EXPR:
1761 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1762 break;
7993382e 1763 return;
c73964b2
MS
1764
1765 case EQ_EXPR:
1766 case NE_EXPR:
a703fb38
KG
1767 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1768 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
c73964b2 1769 break;
a5ac359a 1770 if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
c73964b2
MS
1771 {
1772 type2 = type1;
1773 break;
1774 }
a5ac359a 1775 if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
c73964b2
MS
1776 {
1777 type1 = type2;
1778 break;
1779 }
f4f206f4 1780 /* Fall through. */
c73964b2
MS
1781 case LT_EXPR:
1782 case GT_EXPR:
1783 case LE_EXPR:
1784 case GE_EXPR:
1785 case MAX_EXPR:
1786 case MIN_EXPR:
4cff6abe 1787 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
0cbd7506 1788 break;
4cff6abe 1789 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
c73964b2 1790 break;
4cff6abe 1791 if (TREE_CODE (type1) == ENUMERAL_TYPE && TREE_CODE (type2) == ENUMERAL_TYPE)
0cbd7506 1792 break;
c73964b2
MS
1793 if (TYPE_PTR_P (type1) && null_ptr_cst_p (args[1]))
1794 {
1795 type2 = type1;
1796 break;
1797 }
1798 if (null_ptr_cst_p (args[0]) && TYPE_PTR_P (type2))
1799 {
1800 type1 = type2;
1801 break;
1802 }
7993382e 1803 return;
c73964b2
MS
1804
1805 case PLUS_EXPR:
1806 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1807 break;
1808 case ARRAY_REF:
c11b6f21 1809 if (INTEGRAL_TYPE_P (type1) && TYPE_PTROB_P (type2))
c73964b2
MS
1810 {
1811 type1 = ptrdiff_type_node;
1812 break;
1813 }
c11b6f21 1814 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
c73964b2
MS
1815 {
1816 type2 = ptrdiff_type_node;
1817 break;
1818 }
7993382e 1819 return;
c73964b2
MS
1820
1821/* 18For every pair of promoted integral types L and R, there exist candi-
1822 date operator functions of the form
1823 LR operator%(L, R);
1824 LR operator&(L, R);
1825 LR operator^(L, R);
1826 LR operator|(L, R);
1827 L operator<<(L, R);
1828 L operator>>(L, R);
1829 where LR is the result of the usual arithmetic conversions between
1830 types L and R. */
1831
1832 case TRUNC_MOD_EXPR:
1833 case BIT_AND_EXPR:
1834 case BIT_IOR_EXPR:
1835 case BIT_XOR_EXPR:
1836 case LSHIFT_EXPR:
1837 case RSHIFT_EXPR:
1838 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1839 break;
7993382e 1840 return;
c73964b2
MS
1841
1842/* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
1843 type, VQ is either volatile or empty, and R is a promoted arithmetic
1844 type, there exist candidate operator functions of the form
1845 VQ L& operator=(VQ L&, R);
1846 VQ L& operator*=(VQ L&, R);
1847 VQ L& operator/=(VQ L&, R);
1848 VQ L& operator+=(VQ L&, R);
1849 VQ L& operator-=(VQ L&, R);
1850
1851 20For every pair T, VQ), where T is any type and VQ is either volatile
1852 or empty, there exist candidate operator functions of the form
1853 T*VQ& operator=(T*VQ&, T*);
1854
1855 21For every pair T, VQ), where T is a pointer to member type and VQ is
1856 either volatile or empty, there exist candidate operator functions of
1857 the form
1858 VQ T& operator=(VQ T&, T);
1859
1860 22For every triple T, VQ, I), where T is a cv-qualified or cv-
1861 unqualified complete object type, VQ is either volatile or empty, and
1862 I is a promoted integral type, there exist candidate operator func-
1863 tions of the form
1864 T*VQ& operator+=(T*VQ&, I);
1865 T*VQ& operator-=(T*VQ&, I);
1866
1867 23For every triple L, VQ, R), where L is an integral or enumeration
1868 type, VQ is either volatile or empty, and R is a promoted integral
1869 type, there exist candidate operator functions of the form
1870
1871 VQ L& operator%=(VQ L&, R);
1872 VQ L& operator<<=(VQ L&, R);
1873 VQ L& operator>>=(VQ L&, R);
1874 VQ L& operator&=(VQ L&, R);
1875 VQ L& operator^=(VQ L&, R);
1876 VQ L& operator|=(VQ L&, R); */
1877
1878 case MODIFY_EXPR:
1879 switch (code2)
1880 {
1881 case PLUS_EXPR:
1882 case MINUS_EXPR:
c11b6f21 1883 if (TYPE_PTROB_P (type1) && INTEGRAL_TYPE_P (type2))
c73964b2
MS
1884 {
1885 type2 = ptrdiff_type_node;
1886 break;
1887 }
1888 case MULT_EXPR:
1889 case TRUNC_DIV_EXPR:
1890 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1891 break;
7993382e 1892 return;
c73964b2
MS
1893
1894 case TRUNC_MOD_EXPR:
1895 case BIT_AND_EXPR:
1896 case BIT_IOR_EXPR:
1897 case BIT_XOR_EXPR:
1898 case LSHIFT_EXPR:
1899 case RSHIFT_EXPR:
1900 if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
1901 break;
7993382e 1902 return;
c73964b2
MS
1903
1904 case NOP_EXPR:
1905 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
1906 break;
1907 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
1908 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1909 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
1910 || ((TYPE_PTRMEMFUNC_P (type1)
1911 || TREE_CODE (type1) == POINTER_TYPE)
1912 && null_ptr_cst_p (args[1])))
1913 {
1914 type2 = type1;
1915 break;
1916 }
7993382e 1917 return;
c73964b2
MS
1918
1919 default:
8dc2b103 1920 gcc_unreachable ();
c73964b2
MS
1921 }
1922 type1 = build_reference_type (type1);
1923 break;
1924
1925 case COND_EXPR:
5b0c5896 1926 /* [over.built]
a7a64a77
MM
1927
1928 For every pair of promoted arithmetic types L and R, there
c8094d83 1929 exist candidate operator functions of the form
de22184b 1930
c8094d83 1931 LR operator?(bool, L, R);
a7a64a77
MM
1932
1933 where LR is the result of the usual arithmetic conversions
1934 between types L and R.
1935
1936 For every type T, where T is a pointer or pointer-to-member
1937 type, there exist candidate operator functions of the form T
1938 operator?(bool, T, T); */
1939
1940 if (promoted_arithmetic_type_p (type1)
1941 && promoted_arithmetic_type_p (type2))
1942 /* That's OK. */
c73964b2 1943 break;
a7a64a77
MM
1944
1945 /* Otherwise, the types should be pointers. */
a5ac359a
MM
1946 if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
1947 || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
7993382e 1948 return;
c8094d83 1949
a7a64a77
MM
1950 /* We don't check that the two types are the same; the logic
1951 below will actually create two candidates; one in which both
1952 parameter types are TYPE1, and one in which both parameter
1953 types are TYPE2. */
7993382e 1954 break;
c73964b2
MS
1955
1956 default:
8dc2b103 1957 gcc_unreachable ();
c73964b2
MS
1958 }
1959
4cff6abe
NS
1960 /* If we're dealing with two pointer types or two enumeral types,
1961 we need candidates for both of them. */
a7a64a77 1962 if (type2 && !same_type_p (type1, type2)
c73964b2
MS
1963 && TREE_CODE (type1) == TREE_CODE (type2)
1964 && (TREE_CODE (type1) == REFERENCE_TYPE
a5ac359a
MM
1965 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
1966 || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
c73964b2 1967 || TYPE_PTRMEMFUNC_P (type1)
4cff6abe
NS
1968 || IS_AGGR_TYPE (type1)
1969 || TREE_CODE (type1) == ENUMERAL_TYPE))
c73964b2 1970 {
7993382e 1971 build_builtin_candidate
c73964b2 1972 (candidates, fnname, type1, type1, args, argtypes, flags);
7993382e 1973 build_builtin_candidate
c73964b2 1974 (candidates, fnname, type2, type2, args, argtypes, flags);
7993382e 1975 return;
c73964b2
MS
1976 }
1977
7993382e 1978 build_builtin_candidate
c73964b2
MS
1979 (candidates, fnname, type1, type2, args, argtypes, flags);
1980}
1981
1982tree
94be8403 1983type_decays_to (tree type)
c73964b2
MS
1984{
1985 if (TREE_CODE (type) == ARRAY_TYPE)
1986 return build_pointer_type (TREE_TYPE (type));
1987 if (TREE_CODE (type) == FUNCTION_TYPE)
1988 return build_pointer_type (type);
1989 return type;
1990}
1991
1992/* There are three conditions of builtin candidates:
1993
1994 1) bool-taking candidates. These are the same regardless of the input.
1995 2) pointer-pair taking candidates. These are generated for each type
1996 one of the input types converts to.
cab1f180 1997 3) arithmetic candidates. According to the standard, we should generate
4cff6abe 1998 all of these, but I'm trying not to...
c8094d83 1999
4cff6abe
NS
2000 Here we generate a superset of the possible candidates for this particular
2001 case. That is a subset of the full set the standard defines, plus some
2002 other cases which the standard disallows. add_builtin_candidate will
0e339752 2003 filter out the invalid set. */
c73964b2 2004
7993382e
MM
2005static void
2006add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
0cbd7506
MS
2007 enum tree_code code2, tree fnname, tree *args,
2008 int flags)
c73964b2
MS
2009{
2010 int ref1, i;
4cff6abe 2011 int enum_p = 0;
a7a64a77
MM
2012 tree type, argtypes[3];
2013 /* TYPES[i] is the set of possible builtin-operator parameter types
2014 we will consider for the Ith argument. These are represented as
2015 a TREE_LIST; the TREE_VALUE of each node is the potential
2016 parameter type. */
2017 tree types[2];
c73964b2
MS
2018
2019 for (i = 0; i < 3; ++i)
2020 {
2021 if (args[i])
d11ad92e 2022 argtypes[i] = lvalue_type (args[i]);
c73964b2
MS
2023 else
2024 argtypes[i] = NULL_TREE;
2025 }
2026
2027 switch (code)
2028 {
2029/* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2030 and VQ is either volatile or empty, there exist candidate operator
2031 functions of the form
2032 VQ T& operator++(VQ T&); */
2033
2034 case POSTINCREMENT_EXPR:
2035 case PREINCREMENT_EXPR:
2036 case POSTDECREMENT_EXPR:
2037 case PREDECREMENT_EXPR:
2038 case MODIFY_EXPR:
2039 ref1 = 1;
2040 break;
2041
2042/* 24There also exist candidate operator functions of the form
2043 bool operator!(bool);
2044 bool operator&&(bool, bool);
2045 bool operator||(bool, bool); */
2046
2047 case TRUTH_NOT_EXPR:
7993382e 2048 build_builtin_candidate
c73964b2
MS
2049 (candidates, fnname, boolean_type_node,
2050 NULL_TREE, args, argtypes, flags);
7993382e 2051 return;
c73964b2
MS
2052
2053 case TRUTH_ORIF_EXPR:
2054 case TRUTH_ANDIF_EXPR:
7993382e 2055 build_builtin_candidate
c73964b2
MS
2056 (candidates, fnname, boolean_type_node,
2057 boolean_type_node, args, argtypes, flags);
7993382e 2058 return;
c73964b2
MS
2059
2060 case ADDR_EXPR:
2061 case COMPOUND_EXPR:
2062 case COMPONENT_REF:
7993382e 2063 return;
c73964b2 2064
4cff6abe
NS
2065 case COND_EXPR:
2066 case EQ_EXPR:
2067 case NE_EXPR:
2068 case LT_EXPR:
2069 case LE_EXPR:
2070 case GT_EXPR:
2071 case GE_EXPR:
2072 enum_p = 1;
f4f206f4 2073 /* Fall through. */
c8094d83 2074
c73964b2
MS
2075 default:
2076 ref1 = 0;
2077 }
2078
2079 types[0] = types[1] = NULL_TREE;
2080
2081 for (i = 0; i < 2; ++i)
2082 {
2083 if (! args[i])
2084 ;
2085 else if (IS_AGGR_TYPE (argtypes[i]))
2086 {
47898a19 2087 tree convs;
c73964b2 2088
02020185 2089 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
7993382e 2090 return;
02020185
JM
2091
2092 convs = lookup_conversions (argtypes[i]);
2093
c73964b2
MS
2094 if (code == COND_EXPR)
2095 {
2096 if (real_lvalue_p (args[i]))
e1b3e07d 2097 types[i] = tree_cons
c73964b2
MS
2098 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2099
e1b3e07d 2100 types[i] = tree_cons
c73964b2
MS
2101 (NULL_TREE, TYPE_MAIN_VARIANT (argtypes[i]), types[i]);
2102 }
02020185
JM
2103
2104 else if (! convs)
7993382e 2105 return;
c73964b2
MS
2106
2107 for (; convs; convs = TREE_CHAIN (convs))
2108 {
47898a19 2109 type = TREE_TYPE (TREE_TYPE (OVL_CURRENT (TREE_VALUE (convs))));
c73964b2
MS
2110
2111 if (i == 0 && ref1
2112 && (TREE_CODE (type) != REFERENCE_TYPE
91063b51 2113 || CP_TYPE_CONST_P (TREE_TYPE (type))))
c73964b2
MS
2114 continue;
2115
2116 if (code == COND_EXPR && TREE_CODE (type) == REFERENCE_TYPE)
e1b3e07d 2117 types[i] = tree_cons (NULL_TREE, type, types[i]);
c73964b2
MS
2118
2119 type = non_reference (type);
2120 if (i != 0 || ! ref1)
2121 {
2122 type = TYPE_MAIN_VARIANT (type_decays_to (type));
0cbd7506
MS
2123 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
2124 types[i] = tree_cons (NULL_TREE, type, types[i]);
c73964b2
MS
2125 if (INTEGRAL_TYPE_P (type))
2126 type = type_promotes_to (type);
2127 }
2128
2129 if (! value_member (type, types[i]))
e1b3e07d 2130 types[i] = tree_cons (NULL_TREE, type, types[i]);
c73964b2
MS
2131 }
2132 }
2133 else
2134 {
2135 if (code == COND_EXPR && real_lvalue_p (args[i]))
e1b3e07d 2136 types[i] = tree_cons
c73964b2
MS
2137 (NULL_TREE, build_reference_type (argtypes[i]), types[i]);
2138 type = non_reference (argtypes[i]);
2139 if (i != 0 || ! ref1)
2140 {
2141 type = TYPE_MAIN_VARIANT (type_decays_to (type));
4cff6abe 2142 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
0cbd7506 2143 types[i] = tree_cons (NULL_TREE, type, types[i]);
c73964b2
MS
2144 if (INTEGRAL_TYPE_P (type))
2145 type = type_promotes_to (type);
2146 }
e1b3e07d 2147 types[i] = tree_cons (NULL_TREE, type, types[i]);
c73964b2
MS
2148 }
2149 }
2150
a7a64a77
MM
2151 /* Run through the possible parameter types of both arguments,
2152 creating candidates with those parameter types. */
c73964b2
MS
2153 for (; types[0]; types[0] = TREE_CHAIN (types[0]))
2154 {
2155 if (types[1])
2156 for (type = types[1]; type; type = TREE_CHAIN (type))
7993382e 2157 add_builtin_candidate
c73964b2
MS
2158 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2159 TREE_VALUE (type), args, argtypes, flags);
2160 else
7993382e 2161 add_builtin_candidate
c73964b2
MS
2162 (candidates, code, code2, fnname, TREE_VALUE (types[0]),
2163 NULL_TREE, args, argtypes, flags);
2164 }
2165
7993382e 2166 return;
c73964b2
MS
2167}
2168
e1467ff2 2169
386b8a85
JM
2170/* If TMPL can be successfully instantiated as indicated by
2171 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
2172
e1467ff2
MM
2173 TMPL is the template. EXPLICIT_TARGS are any explicit template
2174 arguments. ARGLIST is the arguments provided at the call-site.
2175 The RETURN_TYPE is the desired type for conversion operators. If
aa52c1ff
JM
2176 OBJ is NULL_TREE, FLAGS and CTYPE are as for add_function_candidate.
2177 If an OBJ is supplied, FLAGS and CTYPE are ignored, and OBJ is as for
e1467ff2
MM
2178 add_conv_candidate. */
2179
2180static struct z_candidate*
7993382e 2181add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
0cbd7506
MS
2182 tree ctype, tree explicit_targs, tree arglist,
2183 tree return_type, tree access_path,
94be8403 2184 tree conversion_path, int flags, tree obj,
0cbd7506 2185 unification_kind_t strict)
c73964b2 2186{
98c1c668 2187 int ntparms = DECL_NTPARMS (tmpl);
f31c0a32 2188 tree targs = make_tree_vec (ntparms);
e5214479 2189 tree args_without_in_chrg = arglist;
c73964b2 2190 struct z_candidate *cand;
98c1c668 2191 int i;
c73964b2
MS
2192 tree fn;
2193
e5214479
JM
2194 /* We don't do deduction on the in-charge parameter, the VTT
2195 parameter or 'this'. */
2196 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
2197 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
2198
71a19881
MM
2199 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
2200 || DECL_BASE_CONSTRUCTOR_P (tmpl))
5775a06a 2201 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
e5214479 2202 args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
71a19881
MM
2203
2204 i = fn_type_unification (tmpl, explicit_targs, targs,
2205 args_without_in_chrg,
30f86ec3 2206 return_type, strict, flags);
98c1c668 2207
c73964b2 2208 if (i != 0)
7993382e 2209 return NULL;
c73964b2 2210
3e4a3562 2211 fn = instantiate_template (tmpl, targs, tf_none);
c73964b2 2212 if (fn == error_mark_node)
7993382e 2213 return NULL;
c73964b2 2214
9928a3d5
MM
2215 /* In [class.copy]:
2216
2217 A member function template is never instantiated to perform the
c8094d83 2218 copy of a class object to an object of its class type.
9928a3d5
MM
2219
2220 It's a little unclear what this means; the standard explicitly
2221 does allow a template to be used to copy a class. For example,
2222 in:
2223
2224 struct A {
0cbd7506 2225 A(A&);
9928a3d5
MM
2226 template <class T> A(const T&);
2227 };
2228 const A f ();
2229 void g () { A a (f ()); }
c8094d83 2230
9928a3d5
MM
2231 the member template will be used to make the copy. The section
2232 quoted above appears in the paragraph that forbids constructors
2233 whose only parameter is (a possibly cv-qualified variant of) the
2234 class type, and a logical interpretation is that the intent was
2235 to forbid the instantiation of member templates which would then
2236 have that form. */
c8094d83 2237 if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2)
9928a3d5
MM
2238 {
2239 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
2240 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
2241 ctype))
7993382e 2242 return NULL;
9928a3d5
MM
2243 }
2244
e1467ff2
MM
2245 if (obj != NULL_TREE)
2246 /* Aha, this is a conversion function. */
4ba126e4
MM
2247 cand = add_conv_candidate (candidates, fn, obj, access_path,
2248 conversion_path, arglist);
e1467ff2 2249 else
aa52c1ff 2250 cand = add_function_candidate (candidates, fn, ctype,
c8094d83 2251 arglist, access_path,
4ba126e4 2252 conversion_path, flags);
e1467ff2
MM
2253 if (DECL_TI_TEMPLATE (fn) != tmpl)
2254 /* This situation can occur if a member template of a template
2255 class is specialized. Then, instantiate_template might return
2256 an instantiation of the specialization, in which case the
2257 DECL_TI_TEMPLATE field will point at the original
2258 specialization. For example:
2259
2260 template <class T> struct S { template <class U> void f(U);
2261 template <> void f(int) {}; };
2262 S<double> sd;
2263 sd.f(3);
2264
2265 Here, TMPL will be template <class U> S<double>::f(U).
2266 And, instantiate template will give us the specialization
2267 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
2268 for this will point at template <class T> template <> S<T>::f(int),
2269 so that we can find the definition. For the purposes of
2270 overload resolution, however, we want the original TMPL. */
ea0ad329 2271 cand->template_decl = tree_cons (tmpl, targs, NULL_TREE);
e1467ff2 2272 else
ea0ad329 2273 cand->template_decl = DECL_TEMPLATE_INFO (fn);
e1467ff2 2274
c73964b2
MS
2275 return cand;
2276}
2277
786b5245
MM
2278
2279static struct z_candidate *
7993382e 2280add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
0cbd7506
MS
2281 tree explicit_targs, tree arglist, tree return_type,
2282 tree access_path, tree conversion_path, int flags,
2283 unification_kind_t strict)
786b5245 2284{
c8094d83 2285 return
aa52c1ff 2286 add_template_candidate_real (candidates, tmpl, ctype,
c8094d83 2287 explicit_targs, arglist, return_type,
4ba126e4
MM
2288 access_path, conversion_path,
2289 flags, NULL_TREE, strict);
e1467ff2 2290}
786b5245 2291
786b5245 2292
e1467ff2 2293static struct z_candidate *
7993382e 2294add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
0cbd7506 2295 tree obj, tree arglist, tree return_type,
94be8403 2296 tree access_path, tree conversion_path)
e1467ff2 2297{
c8094d83 2298 return
aa52c1ff 2299 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
4ba126e4
MM
2300 arglist, return_type, access_path,
2301 conversion_path, 0, obj, DEDUCE_CONV);
786b5245
MM
2302}
2303
436f8a4c
MM
2304/* The CANDS are the set of candidates that were considered for
2305 overload resolution. Return the set of viable candidates. If none
2306 of the candidates were viable, set *ANY_VIABLE_P to true. STRICT_P
2307 is true if a candidate should be considered viable only if it is
2308 strictly viable. */
786b5245 2309
436f8a4c
MM
2310static struct z_candidate*
2311splice_viable (struct z_candidate *cands,
2312 bool strict_p,
2313 bool *any_viable_p)
c73964b2 2314{
436f8a4c
MM
2315 struct z_candidate *viable;
2316 struct z_candidate **last_viable;
2317 struct z_candidate **cand;
2318
2319 viable = NULL;
2320 last_viable = &viable;
2321 *any_viable_p = false;
2322
c8094d83
MS
2323 cand = &cands;
2324 while (*cand)
436f8a4c
MM
2325 {
2326 struct z_candidate *c = *cand;
2327 if (strict_p ? c->viable == 1 : c->viable)
2328 {
2329 *last_viable = c;
2330 *cand = c->next;
2331 c->next = NULL;
2332 last_viable = &c->next;
2333 *any_viable_p = true;
2334 }
2335 else
2336 cand = &c->next;
2337 }
2338
2339 return viable ? viable : cands;
c73964b2
MS
2340}
2341
94be8403
GDR
2342static bool
2343any_strictly_viable (struct z_candidate *cands)
ecc42c14
AO
2344{
2345 for (; cands; cands = cands->next)
2346 if (cands->viable == 1)
94be8403
GDR
2347 return true;
2348 return false;
ecc42c14
AO
2349}
2350
dfb5c523
MM
2351/* OBJ is being used in an expression like "OBJ.f (...)". In other
2352 words, it is about to become the "this" pointer for a member
2353 function call. Take the address of the object. */
2354
824b9a4c 2355static tree
94be8403 2356build_this (tree obj)
c73964b2 2357{
dfb5c523
MM
2358 /* In a template, we are only concerned about the type of the
2359 expression, so we can take a shortcut. */
2360 if (processing_template_decl)
2361 return build_address (obj);
2362
6eabb241 2363 return build_unary_op (ADDR_EXPR, obj, 0);
c73964b2
MS
2364}
2365
436f8a4c
MM
2366/* Returns true iff functions are equivalent. Equivalent functions are
2367 not '==' only if one is a function-local extern function or if
2368 both are extern "C". */
2369
2370static inline int
2371equal_functions (tree fn1, tree fn2)
2372{
2373 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
2374 || DECL_EXTERN_C_FUNCTION_P (fn1))
2375 return decls_match (fn1, fn2);
2376 return fn1 == fn2;
2377}
2378
d2a6f3c0
ZW
2379/* Print information about one overload candidate CANDIDATE. MSGSTR
2380 is the text to print before the candidate itself.
2381
2382 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
2383 to have been run through gettext by the caller. This wart makes
2384 life simpler in print_z_candidates and for the translators. */
b9747e59
JM
2385
2386static void
d2a6f3c0 2387print_z_candidate (const char *msgstr, struct z_candidate *candidate)
b9747e59
JM
2388{
2389 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
2390 {
5bd61841 2391 if (candidate->num_convs == 3)
d2a6f3c0 2392 inform ("%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn,
5bd61841
MM
2393 candidate->convs[0]->type,
2394 candidate->convs[1]->type,
2395 candidate->convs[2]->type);
2396 else if (candidate->num_convs == 2)
d2a6f3c0 2397 inform ("%s %D(%T, %T) <built-in>", msgstr, candidate->fn,
5bd61841
MM
2398 candidate->convs[0]->type,
2399 candidate->convs[1]->type);
b9747e59 2400 else
d2a6f3c0 2401 inform ("%s %D(%T) <built-in>", msgstr, candidate->fn,
5bd61841 2402 candidate->convs[0]->type);
b9747e59
JM
2403 }
2404 else if (TYPE_P (candidate->fn))
d2a6f3c0
ZW
2405 inform ("%s %T <conversion>", msgstr, candidate->fn);
2406 else if (candidate->viable == -1)
dee15844 2407 inform ("%s %+#D <near match>", msgstr, candidate->fn);
b9747e59 2408 else
dee15844 2409 inform ("%s %+#D", msgstr, candidate->fn);
b9747e59
JM
2410}
2411
c73964b2 2412static void
94be8403 2413print_z_candidates (struct z_candidate *candidates)
c73964b2 2414{
436f8a4c
MM
2415 const char *str;
2416 struct z_candidate *cand1;
2417 struct z_candidate **cand2;
2418
2419 /* There may be duplicates in the set of candidates. We put off
2420 checking this condition as long as possible, since we have no way
2421 to eliminate duplicates from a set of functions in less than n^2
2422 time. Now we are about to emit an error message, so it is more
2423 permissible to go slowly. */
2424 for (cand1 = candidates; cand1; cand1 = cand1->next)
2425 {
2426 tree fn = cand1->fn;
2427 /* Skip builtin candidates and conversion functions. */
2428 if (TREE_CODE (fn) != FUNCTION_DECL)
2429 continue;
2430 cand2 = &cand1->next;
2431 while (*cand2)
2432 {
2433 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
2434 && equal_functions (fn, (*cand2)->fn))
2435 *cand2 = (*cand2)->next;
2436 else
2437 cand2 = &(*cand2)->next;
2438 }
2439 }
2440
d2a6f3c0
ZW
2441 if (!candidates)
2442 return;
2443
2444 str = _("candidates are:");
2445 print_z_candidate (str, candidates);
2446 if (candidates->next)
c73964b2 2447 {
2bd02043
ZW
2448 /* Indent successive candidates by the width of the translation
2449 of the above string. */
2450 size_t len = gcc_gettext_width (str) + 1;
d2a6f3c0
ZW
2451 char *spaces = alloca (len);
2452 memset (spaces, ' ', len-1);
9804b5b8 2453 spaces[len - 1] = '\0';
d2a6f3c0
ZW
2454
2455 candidates = candidates->next;
2456 do
2457 {
2458 print_z_candidate (spaces, candidates);
2459 candidates = candidates->next;
2460 }
2461 while (candidates);
c73964b2
MS
2462 }
2463}
2464
3d938426
MM
2465/* USER_SEQ is a user-defined conversion sequence, beginning with a
2466 USER_CONV. STD_SEQ is the standard conversion sequence applied to
2467 the result of the conversion function to convert it to the final
78dcd41a 2468 desired type. Merge the two sequences into a single sequence,
3d938426
MM
2469 and return the merged sequence. */
2470
5bd61841
MM
2471static conversion *
2472merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3d938426 2473{
5bd61841 2474 conversion **t;
3d938426 2475
50bc768d 2476 gcc_assert (user_seq->kind == ck_user);
3d938426
MM
2477
2478 /* Find the end of the second conversion sequence. */
c8094d83 2479 t = &(std_seq);
5bd61841
MM
2480 while ((*t)->kind != ck_identity)
2481 t = &((*t)->u.next);
3d938426
MM
2482
2483 /* Replace the identity conversion with the user conversion
2484 sequence. */
2485 *t = user_seq;
2486
2487 /* The entire sequence is a user-conversion sequence. */
5bd61841 2488 std_seq->user_conv_p = true;
3d938426
MM
2489
2490 return std_seq;
2491}
2492
c73964b2 2493/* Returns the best overload candidate to perform the requested
eb66be0e
MS
2494 conversion. This function is used for three the overloading situations
2495 described in [over.match.copy], [over.match.conv], and [over.match.ref].
2496 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue binding as
2497 per [dcl.init.ref], so we ignore temporary bindings. */
c73964b2
MS
2498
2499static struct z_candidate *
94be8403 2500build_user_type_conversion_1 (tree totype, tree expr, int flags)
c73964b2
MS
2501{
2502 struct z_candidate *candidates, *cand;
2503 tree fromtype = TREE_TYPE (expr);
5bd61841
MM
2504 tree ctors = NULL_TREE;
2505 tree conv_fns = NULL_TREE;
2506 conversion *conv = NULL;
a703fb38 2507 tree args = NULL_TREE;
436f8a4c 2508 bool any_viable_p;
c73964b2 2509
5e818b93
JM
2510 /* We represent conversion within a hierarchy using RVALUE_CONV and
2511 BASE_CONV, as specified by [over.best.ics]; these become plain
2512 constructor calls, as specified in [dcl.init]. */
50bc768d
NS
2513 gcc_assert (!IS_AGGR_TYPE (fromtype) || !IS_AGGR_TYPE (totype)
2514 || !DERIVED_FROM_P (totype, fromtype));
5e818b93 2515
c73964b2 2516 if (IS_AGGR_TYPE (totype))
cad7e87b 2517 ctors = lookup_fnfields (totype, complete_ctor_identifier, 0);
db9b2174 2518
5e818b93 2519 if (IS_AGGR_TYPE (fromtype))
5bd61841 2520 conv_fns = lookup_conversions (fromtype);
c73964b2
MS
2521
2522 candidates = 0;
2523 flags |= LOOKUP_NO_CONVERSION;
2524
2525 if (ctors)
2526 {
454fa7a7
MM
2527 tree t;
2528
50ad9642 2529 ctors = BASELINK_FUNCTIONS (ctors);
454fa7a7 2530
7d60be94 2531 t = build_int_cst (build_pointer_type (totype), 0);
051e6fd7 2532 args = build_tree_list (NULL_TREE, expr);
41f5d4b1
NS
2533 /* We should never try to call the abstract or base constructor
2534 from here. */
50bc768d
NS
2535 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
2536 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
e1b3e07d 2537 args = tree_cons (NULL_TREE, t, args);
c73964b2 2538 }
2c73f9f5 2539 for (; ctors; ctors = OVL_NEXT (ctors))
c73964b2 2540 {
2c73f9f5
ML
2541 tree ctor = OVL_CURRENT (ctors);
2542 if (DECL_NONCONVERTING_P (ctor))
c73964b2
MS
2543 continue;
2544
c8094d83 2545 if (TREE_CODE (ctor) == TEMPLATE_DECL)
7993382e 2546 cand = add_template_candidate (&candidates, ctor, totype,
c8094d83 2547 NULL_TREE, args, NULL_TREE,
7993382e
MM
2548 TYPE_BINFO (totype),
2549 TYPE_BINFO (totype),
2550 flags,
2551 DEDUCE_CALL);
c8094d83 2552 else
7993382e 2553 cand = add_function_candidate (&candidates, ctor, totype,
c8094d83 2554 args, TYPE_BINFO (totype),
7993382e 2555 TYPE_BINFO (totype),
c8094d83 2556 flags);
98c1c668 2557
7993382e 2558 if (cand)
5bd61841 2559 cand->second_conv = build_identity_conv (totype, NULL_TREE);
c73964b2
MS
2560 }
2561
5bd61841 2562 if (conv_fns)
051e6fd7 2563 args = build_tree_list (NULL_TREE, build_this (expr));
c73964b2 2564
5bd61841 2565 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
c73964b2 2566 {
4ba126e4 2567 tree fns;
5bd61841 2568 tree conversion_path = TREE_PURPOSE (conv_fns);
eb66be0e 2569 int convflags = LOOKUP_NO_CONVERSION;
eb66be0e
MS
2570
2571 /* If we are called to convert to a reference type, we are trying to
2572 find an lvalue binding, so don't even consider temporaries. If
2573 we don't find an lvalue binding, the caller will try again to
2574 look for a temporary binding. */
2575 if (TREE_CODE (totype) == REFERENCE_TYPE)
2576 convflags |= LOOKUP_NO_TEMP_BIND;
c8094d83 2577
5bd61841 2578 for (fns = TREE_VALUE (conv_fns); fns; fns = OVL_NEXT (fns))
5dd236e2
NS
2579 {
2580 tree fn = OVL_CURRENT (fns);
c8094d83 2581
5dd236e2
NS
2582 /* [over.match.funcs] For conversion functions, the function
2583 is considered to be a member of the class of the implicit
2584 object argument for the purpose of defining the type of
2585 the implicit object parameter.
eb66be0e 2586
5dd236e2
NS
2587 So we pass fromtype as CTYPE to add_*_candidate. */
2588
2589 if (TREE_CODE (fn) == TEMPLATE_DECL)
c8094d83 2590 cand = add_template_candidate (&candidates, fn, fromtype,
7993382e 2591 NULL_TREE,
c8094d83
MS
2592 args, totype,
2593 TYPE_BINFO (fromtype),
7993382e
MM
2594 conversion_path,
2595 flags,
2596 DEDUCE_CONV);
c8094d83 2597 else
7993382e
MM
2598 cand = add_function_candidate (&candidates, fn, fromtype,
2599 args,
2600 TYPE_BINFO (fromtype),
2601 conversion_path,
c8094d83 2602 flags);
5dd236e2 2603
7993382e 2604 if (cand)
5dd236e2 2605 {
5bd61841 2606 conversion *ics
c8094d83 2607 = implicit_conversion (totype,
5bd61841 2608 TREE_TYPE (TREE_TYPE (cand->fn)),
34b5375f
MM
2609 0,
2610 /*c_cast_p=*/false, convflags);
5dd236e2 2611
7993382e 2612 cand->second_conv = ics;
c8094d83 2613
5bd61841 2614 if (!ics)
7993382e 2615 cand->viable = 0;
5bd61841 2616 else if (candidates->viable == 1 && ics->bad_p)
7993382e 2617 cand->viable = -1;
5dd236e2
NS
2618 }
2619 }
c73964b2
MS
2620 }
2621
436f8a4c
MM
2622 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2623 if (!any_viable_p)
4ba126e4 2624 return 0;
c73964b2 2625
da20811c 2626 cand = tourney (candidates);
c73964b2
MS
2627 if (cand == 0)
2628 {
2629 if (flags & LOOKUP_COMPLAIN)
2630 {
41775162 2631 error ("conversion from %qT to %qT is ambiguous",
c73964b2
MS
2632 fromtype, totype);
2633 print_z_candidates (candidates);
2634 }
2635
2636 cand = candidates; /* any one will do */
5bd61841
MM
2637 cand->second_conv = build_ambiguous_conv (totype, expr);
2638 cand->second_conv->user_conv_p = true;
f576dfc4 2639 if (!any_strictly_viable (candidates))
5bd61841 2640 cand->second_conv->bad_p = true;
f576dfc4
JM
2641 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
2642 ambiguous conversion is no worse than another user-defined
2643 conversion. */
c73964b2
MS
2644
2645 return cand;
2646 }
2647
3d938426 2648 /* Build the user conversion sequence. */
5bd61841
MM
2649 conv = build_conv
2650 (ck_user,
c73964b2
MS
2651 (DECL_CONSTRUCTOR_P (cand->fn)
2652 ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
5bd61841
MM
2653 build_identity_conv (TREE_TYPE (expr), expr));
2654 conv->cand = cand;
3d938426
MM
2655
2656 /* Combine it with the second conversion sequence. */
5bd61841 2657 cand->second_conv = merge_conversion_sequences (conv,
3d938426
MM
2658 cand->second_conv);
2659
faf5394a 2660 if (cand->viable == -1)
5bd61841 2661 cand->second_conv->bad_p = true;
c73964b2
MS
2662
2663 return cand;
2664}
2665
2666tree
94be8403 2667build_user_type_conversion (tree totype, tree expr, int flags)
c73964b2
MS
2668{
2669 struct z_candidate *cand
2670 = build_user_type_conversion_1 (totype, expr, flags);
2671
2672 if (cand)
2673 {
5bd61841 2674 if (cand->second_conv->kind == ck_ambig)
c73964b2 2675 return error_mark_node;
db24eb1f
NS
2676 expr = convert_like (cand->second_conv, expr);
2677 return convert_from_reference (expr);
c73964b2
MS
2678 }
2679 return NULL_TREE;
2680}
2681
86e6f22f
JM
2682/* Do any initial processing on the arguments to a function call. */
2683
2684static tree
94be8403 2685resolve_args (tree args)
86e6f22f
JM
2686{
2687 tree t;
2688 for (t = args; t; t = TREE_CHAIN (t))
2689 {
648c2206 2690 tree arg = TREE_VALUE (t);
c8094d83 2691
648c2206 2692 if (arg == error_mark_node)
86e6f22f 2693 return error_mark_node;
648c2206 2694 else if (VOID_TYPE_P (TREE_TYPE (arg)))
86e6f22f 2695 {
8251199e 2696 error ("invalid use of void expression");
86e6f22f
JM
2697 return error_mark_node;
2698 }
86e6f22f
JM
2699 }
2700 return args;
2701}
4ba126e4 2702
125e6594
MM
2703/* Perform overload resolution on FN, which is called with the ARGS.
2704
2705 Return the candidate function selected by overload resolution, or
2706 NULL if the event that overload resolution failed. In the case
2707 that overload resolution fails, *CANDIDATES will be the set of
2708 candidates considered, and ANY_VIABLE_P will be set to true or
2709 false to indicate whether or not any of the candidates were
c8094d83 2710 viable.
125e6594
MM
2711
2712 The ARGS should already have gone through RESOLVE_ARGS before this
2713 function is called. */
2714
2715static struct z_candidate *
c8094d83
MS
2716perform_overload_resolution (tree fn,
2717 tree args,
125e6594
MM
2718 struct z_candidate **candidates,
2719 bool *any_viable_p)
c73964b2 2720{
125e6594 2721 struct z_candidate *cand;
386b8a85 2722 tree explicit_targs = NULL_TREE;
c32381b1 2723 int template_only = 0;
386b8a85 2724
125e6594
MM
2725 *candidates = NULL;
2726 *any_viable_p = true;
2727
4ba126e4 2728 /* Check FN and ARGS. */
c8094d83 2729 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
50bc768d
NS
2730 || TREE_CODE (fn) == TEMPLATE_DECL
2731 || TREE_CODE (fn) == OVERLOAD
2732 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
2733 gcc_assert (!args || TREE_CODE (args) == TREE_LIST);
4ba126e4 2734
386b8a85
JM
2735 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2736 {
2737 explicit_targs = TREE_OPERAND (fn, 1);
2738 fn = TREE_OPERAND (fn, 0);
c32381b1 2739 template_only = 1;
386b8a85
JM
2740 }
2741
125e6594
MM
2742 /* Add the various candidate functions. */
2743 add_candidates (fn, args, explicit_targs, template_only,
2744 /*conversion_path=*/NULL_TREE,
2745 /*access_path=*/NULL_TREE,
2746 LOOKUP_NORMAL,
2747 candidates);
2748
436f8a4c
MM
2749 *candidates = splice_viable (*candidates, pedantic, any_viable_p);
2750 if (!*any_viable_p)
2751 return NULL;
c73964b2 2752
125e6594 2753 cand = tourney (*candidates);
125e6594
MM
2754 return cand;
2755}
86e6f22f 2756
125e6594
MM
2757/* Return an expression for a call to FN (a namespace-scope function,
2758 or a static member function) with the ARGS. */
c8094d83 2759
125e6594
MM
2760tree
2761build_new_function_call (tree fn, tree args)
2762{
2763 struct z_candidate *candidates, *cand;
2764 bool any_viable_p;
5bd61841
MM
2765 void *p;
2766 tree result;
8f032717 2767
125e6594
MM
2768 args = resolve_args (args);
2769 if (args == error_mark_node)
2770 return error_mark_node;
a723baf1 2771
5bd61841
MM
2772 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2773 p = conversion_obstack_alloc (0);
2774
125e6594 2775 cand = perform_overload_resolution (fn, args, &candidates, &any_viable_p);
c73964b2 2776
125e6594
MM
2777 if (!cand)
2778 {
2779 if (!any_viable_p && candidates && ! candidates->next)
2780 return build_function_call (candidates->fn, args);
2781 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2782 fn = TREE_OPERAND (fn, 0);
2783 if (!any_viable_p)
41775162 2784 error ("no matching function for call to %<%D(%A)%>",
125e6594
MM
2785 DECL_NAME (OVL_CURRENT (fn)), args);
2786 else
41775162 2787 error ("call of overloaded %<%D(%A)%> is ambiguous",
436f8a4c 2788 DECL_NAME (OVL_CURRENT (fn)), args);
125e6594
MM
2789 if (candidates)
2790 print_z_candidates (candidates);
5bd61841 2791 result = error_mark_node;
125e6594 2792 }
5bd61841
MM
2793 else
2794 result = build_over_call (cand, LOOKUP_NORMAL);
c73964b2 2795
5bd61841
MM
2796 /* Free all the conversions we allocated. */
2797 obstack_free (&conversion_obstack, p);
2798
2799 return result;
125e6594 2800}
c73964b2 2801
125e6594
MM
2802/* Build a call to a global operator new. FNNAME is the name of the
2803 operator (either "operator new" or "operator new[]") and ARGS are
2804 the arguments provided. *SIZE points to the total number of bytes
2805 required by the allocation, and is updated if that is changed here.
2806 *COOKIE_SIZE is non-NULL if a cookie should be used. If this
34cd5ae7 2807 function determines that no cookie should be used, after all,
9bcb9aae 2808 *COOKIE_SIZE is set to NULL_TREE. */
c73964b2 2809
125e6594
MM
2810tree
2811build_operator_new_call (tree fnname, tree args, tree *size, tree *cookie_size)
2812{
2813 tree fns;
2814 struct z_candidate *candidates;
2815 struct z_candidate *cand;
2816 bool any_viable_p;
2817
2818 args = tree_cons (NULL_TREE, *size, args);
2819 args = resolve_args (args);
2820 if (args == error_mark_node)
2821 return args;
2822
12cf89fa
MM
2823 /* Based on:
2824
2825 [expr.new]
2826
2827 If this lookup fails to find the name, or if the allocated type
2828 is not a class type, the allocation function's name is looked
2829 up in the global scope.
2830
2831 we disregard block-scope declarations of "operator new". */
2832 fns = lookup_function_nonclass (fnname, args, /*block_p=*/false);
2c73f9f5 2833
125e6594
MM
2834 /* Figure out what function is being called. */
2835 cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p);
c8094d83 2836
125e6594
MM
2837 /* If no suitable function could be found, issue an error message
2838 and give up. */
2839 if (!cand)
2840 {
2841 if (!any_viable_p)
41775162 2842 error ("no matching function for call to %<%D(%A)%>",
125e6594
MM
2843 DECL_NAME (OVL_CURRENT (fns)), args);
2844 else
41775162 2845 error ("call of overloaded %<%D(%A)%> is ambiguous",
436f8a4c 2846 DECL_NAME (OVL_CURRENT (fns)), args);
125e6594
MM
2847 if (candidates)
2848 print_z_candidates (candidates);
2849 return error_mark_node;
2850 }
2851
2852 /* If a cookie is required, add some extra space. Whether
2853 or not a cookie is required cannot be determined until
2854 after we know which function was called. */
2855 if (*cookie_size)
2856 {
2857 bool use_cookie = true;
2858 if (!abi_version_at_least (2))
2859 {
2860 tree placement = TREE_CHAIN (args);
2861 /* In G++ 3.2, the check was implemented incorrectly; it
2862 looked at the placement expression, rather than the
2863 type of the function. */
2864 if (placement && !TREE_CHAIN (placement)
2865 && same_type_p (TREE_TYPE (TREE_VALUE (placement)),
2866 ptr_type_node))
2867 use_cookie = false;
2868 }
2869 else
2870 {
2871 tree arg_types;
2872
2873 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
2874 /* Skip the size_t parameter. */
2875 arg_types = TREE_CHAIN (arg_types);
2876 /* Check the remaining parameters (if any). */
c8094d83 2877 if (arg_types
125e6594
MM
2878 && TREE_CHAIN (arg_types) == void_list_node
2879 && same_type_p (TREE_VALUE (arg_types),
2880 ptr_type_node))
2881 use_cookie = false;
2882 }
2883 /* If we need a cookie, adjust the number of bytes allocated. */
2884 if (use_cookie)
2885 {
2886 /* Update the total size. */
2887 *size = size_binop (PLUS_EXPR, *size, *cookie_size);
2888 /* Update the argument list to reflect the adjusted size. */
2889 TREE_VALUE (args) = *size;
2890 }
2891 else
2892 *cookie_size = NULL_TREE;
2893 }
2894
2895 /* Build the CALL_EXPR. */
2896 return build_over_call (cand, LOOKUP_NORMAL);
c73964b2
MS
2897}
2898
bd6dd845 2899static tree
94be8403 2900build_object_call (tree obj, tree args)
c73964b2
MS
2901{
2902 struct z_candidate *candidates = 0, *cand;
a703fb38 2903 tree fns, convs, mem_args = NULL_TREE;
c73964b2 2904 tree type = TREE_TYPE (obj);
436f8a4c 2905 bool any_viable_p;
5bd61841
MM
2906 tree result = NULL_TREE;
2907 void *p;
c73964b2 2908
297dcfb3
MM
2909 if (TYPE_PTRMEMFUNC_P (type))
2910 {
2911 /* It's no good looking for an overloaded operator() on a
2912 pointer-to-member-function. */
33bd39a2 2913 error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
297dcfb3
MM
2914 return error_mark_node;
2915 }
2916
596ea4e5 2917 fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
734e8cc5
MM
2918 if (fns == error_mark_node)
2919 return error_mark_node;
c73964b2 2920
86e6f22f
JM
2921 args = resolve_args (args);
2922
2923 if (args == error_mark_node)
2924 return error_mark_node;
2925
5bd61841
MM
2926 /* Get the high-water mark for the CONVERSION_OBSTACK. */
2927 p = conversion_obstack_alloc (0);
2928
c73964b2
MS
2929 if (fns)
2930 {
50ad9642 2931 tree base = BINFO_TYPE (BASELINK_BINFO (fns));
e1b3e07d 2932 mem_args = tree_cons (NULL_TREE, build_this (obj), args);
c73964b2 2933
50ad9642 2934 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
c73964b2 2935 {
2c73f9f5 2936 tree fn = OVL_CURRENT (fns);
786b5245 2937 if (TREE_CODE (fn) == TEMPLATE_DECL)
7993382e 2938 add_template_candidate (&candidates, fn, base, NULL_TREE,
c8094d83 2939 mem_args, NULL_TREE,
7993382e
MM
2940 TYPE_BINFO (type),
2941 TYPE_BINFO (type),
2942 LOOKUP_NORMAL, DEDUCE_CALL);
786b5245 2943 else
7993382e
MM
2944 add_function_candidate
2945 (&candidates, fn, base, mem_args, TYPE_BINFO (type),
4ba126e4 2946 TYPE_BINFO (type), LOOKUP_NORMAL);
c73964b2
MS
2947 }
2948 }
2949
2950 convs = lookup_conversions (type);
2951
2952 for (; convs; convs = TREE_CHAIN (convs))
2953 {
2c73f9f5
ML
2954 tree fns = TREE_VALUE (convs);
2955 tree totype = TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns)));
c73964b2 2956
59e76fc6 2957 if ((TREE_CODE (totype) == POINTER_TYPE
477f6664
JM
2958 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2959 || (TREE_CODE (totype) == REFERENCE_TYPE
2960 && TREE_CODE (TREE_TYPE (totype)) == FUNCTION_TYPE)
2961 || (TREE_CODE (totype) == REFERENCE_TYPE
2962 && TREE_CODE (TREE_TYPE (totype)) == POINTER_TYPE
2963 && TREE_CODE (TREE_TYPE (TREE_TYPE (totype))) == FUNCTION_TYPE))
d64db93f 2964 for (; fns; fns = OVL_NEXT (fns))
c73964b2 2965 {
d64db93f 2966 tree fn = OVL_CURRENT (fns);
c8094d83
MS
2967 if (TREE_CODE (fn) == TEMPLATE_DECL)
2968 add_template_conv_candidate
7993382e
MM
2969 (&candidates, fn, obj, args, totype,
2970 /*access_path=*/NULL_TREE,
2971 /*conversion_path=*/NULL_TREE);
786b5245 2972 else
7993382e
MM
2973 add_conv_candidate (&candidates, fn, obj, args,
2974 /*conversion_path=*/NULL_TREE,
2975 /*access_path=*/NULL_TREE);
c73964b2
MS
2976 }
2977 }
2978
436f8a4c
MM
2979 candidates = splice_viable (candidates, pedantic, &any_viable_p);
2980 if (!any_viable_p)
c73964b2 2981 {
41775162 2982 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj), args);
c73964b2 2983 print_z_candidates (candidates);
5bd61841 2984 result = error_mark_node;
c73964b2 2985 }
5bd61841 2986 else
c73964b2 2987 {
5bd61841
MM
2988 cand = tourney (candidates);
2989 if (cand == 0)
2990 {
41775162 2991 error ("call of %<(%T) (%A)%> is ambiguous", TREE_TYPE (obj), args);
5bd61841
MM
2992 print_z_candidates (candidates);
2993 result = error_mark_node;
2994 }
2995 /* Since cand->fn will be a type, not a function, for a conversion
2996 function, we must be careful not to unconditionally look at
2997 DECL_NAME here. */
2998 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
2999 && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
3000 result = build_over_call (cand, LOOKUP_NORMAL);
3001 else
3002 {
3003 obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1);
db24eb1f 3004 obj = convert_from_reference (obj);
5bd61841
MM
3005 result = build_function_call (obj, args);
3006 }
c73964b2
MS
3007 }
3008
5bd61841
MM
3009 /* Free all the conversions we allocated. */
3010 obstack_free (&conversion_obstack, p);
c73964b2 3011
5bd61841 3012 return result;
c73964b2
MS
3013}
3014
3015static void
94be8403 3016op_error (enum tree_code code, enum tree_code code2,
0cbd7506 3017 tree arg1, tree arg2, tree arg3, const char *problem)
c73964b2 3018{
cdb71673 3019 const char *opname;
596ea4e5
AS
3020
3021 if (code == MODIFY_EXPR)
3022 opname = assignment_operator_name_info[code2].name;
3023 else
3024 opname = operator_name_info[code].name;
c73964b2
MS
3025
3026 switch (code)
3027 {
3028 case COND_EXPR:
41775162 3029 error ("%s for ternary %<operator?:%> in %<%E ? %E : %E%>",
0cbd7506 3030 problem, arg1, arg2, arg3);
c73964b2 3031 break;
c8094d83 3032
c73964b2
MS
3033 case POSTINCREMENT_EXPR:
3034 case POSTDECREMENT_EXPR:
41775162 3035 error ("%s for %<operator%s%> in %<%E%s%>", problem, opname, arg1, opname);
c73964b2 3036 break;
c8094d83 3037
c73964b2 3038 case ARRAY_REF:
41775162 3039 error ("%s for %<operator[]%> in %<%E[%E]%>", problem, arg1, arg2);
c73964b2 3040 break;
19948e32
GDR
3041
3042 case REALPART_EXPR:
3043 case IMAGPART_EXPR:
41775162 3044 error ("%s for %qs in %<%s %E%>", problem, opname, opname, arg1);
19948e32 3045 break;
c8094d83 3046
c73964b2
MS
3047 default:
3048 if (arg2)
41775162 3049 error ("%s for %<operator%s%> in %<%E %s %E%>",
0cbd7506 3050 problem, opname, arg1, opname, arg2);
c73964b2 3051 else
41775162 3052 error ("%s for %<operator%s%> in %<%s%E%>",
0cbd7506 3053 problem, opname, opname, arg1);
84cc377e 3054 break;
c73964b2
MS
3055 }
3056}
3057
a7a64a77
MM
3058/* Return the implicit conversion sequence that could be used to
3059 convert E1 to E2 in [expr.cond]. */
3060
5bd61841 3061static conversion *
94be8403 3062conditional_conversion (tree e1, tree e2)
a7a64a77
MM
3063{
3064 tree t1 = non_reference (TREE_TYPE (e1));
3065 tree t2 = non_reference (TREE_TYPE (e2));
5bd61841 3066 conversion *conv;
9cefd2ca 3067 bool good_base;
a7a64a77
MM
3068
3069 /* [expr.cond]
3070
3071 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
3072 implicitly converted (clause _conv_) to the type "reference to
3073 T2", subject to the constraint that in the conversion the
3074 reference must bind directly (_dcl.init.ref_) to E1. */
3075 if (real_lvalue_p (e2))
3076 {
c8094d83 3077 conv = implicit_conversion (build_reference_type (t2),
a7a64a77
MM
3078 t1,
3079 e1,
34b5375f 3080 /*c_cast_p=*/false,
a7a64a77
MM
3081 LOOKUP_NO_TEMP_BIND);
3082 if (conv)
3083 return conv;
3084 }
3085
3086 /* [expr.cond]
3087
3088 If E1 and E2 have class type, and the underlying class types are
3089 the same or one is a base class of the other: E1 can be converted
3090 to match E2 if the class of T2 is the same type as, or a base
3091 class of, the class of T1, and the cv-qualification of T2 is the
3092 same cv-qualification as, or a greater cv-qualification than, the
3093 cv-qualification of T1. If the conversion is applied, E1 is
3094 changed to an rvalue of type T2 that still refers to the original
26bcf8fc 3095 source class object (or the appropriate subobject thereof). */
a7a64a77 3096 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
9cefd2ca 3097 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
a7a64a77 3098 {
9cefd2ca 3099 if (good_base && at_least_as_qualified_p (t2, t1))
a7a64a77 3100 {
5bd61841 3101 conv = build_identity_conv (t1, e1);
c8094d83 3102 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4f0aa416 3103 TYPE_MAIN_VARIANT (t2)))
26bcf8fc 3104 conv = build_conv (ck_base, t2, conv);
5f7262e6 3105 else
5bd61841 3106 conv = build_conv (ck_rvalue, t2, conv);
a7a64a77
MM
3107 return conv;
3108 }
3109 else
5bd61841 3110 return NULL;
a7a64a77 3111 }
9cefd2ca
JM
3112 else
3113 /* [expr.cond]
a7a64a77 3114
9cefd2ca
JM
3115 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
3116 converted to the type that expression E2 would have if E2 were
3117 converted to an rvalue (or the type it has, if E2 is an rvalue). */
34b5375f
MM
3118 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
3119 LOOKUP_NORMAL);
a7a64a77
MM
3120}
3121
3122/* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4ba126e4 3123 arguments to the conditional expression. */
a7a64a77
MM
3124
3125tree
94be8403 3126build_conditional_expr (tree arg1, tree arg2, tree arg3)
a7a64a77
MM
3127{
3128 tree arg2_type;
3129 tree arg3_type;
5bd61841 3130 tree result = NULL_TREE;
a7a64a77 3131 tree result_type = NULL_TREE;
94be8403 3132 bool lvalue_p = true;
a7a64a77
MM
3133 struct z_candidate *candidates = 0;
3134 struct z_candidate *cand;
5bd61841 3135 void *p;
a7a64a77
MM
3136
3137 /* As a G++ extension, the second argument to the conditional can be
3138 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
09dd27d4
MM
3139 c'.) If the second operand is omitted, make sure it is
3140 calculated only once. */
a7a64a77
MM
3141 if (!arg2)
3142 {
3143 if (pedantic)
cb9a3ff8 3144 pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
4e8dca1c
JM
3145
3146 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
3147 if (real_lvalue_p (arg1))
3148 arg2 = arg1 = stabilize_reference (arg1);
3149 else
3150 arg2 = arg1 = save_expr (arg1);
a7a64a77
MM
3151 }
3152
07c88314 3153 /* [expr.cond]
c8094d83 3154
07c88314
MM
3155 The first expr ession is implicitly converted to bool (clause
3156 _conv_). */
6cf4d1bc 3157 arg1 = perform_implicit_conversion (boolean_type_node, arg1);
07c88314 3158
a7a64a77
MM
3159 /* If something has already gone wrong, just pass that fact up the
3160 tree. */
6cf4d1bc
MM
3161 if (error_operand_p (arg1)
3162 || error_operand_p (arg2)
3163 || error_operand_p (arg3))
a7a64a77
MM
3164 return error_mark_node;
3165
a7a64a77
MM
3166 /* [expr.cond]
3167
3168 If either the second or the third operand has type (possibly
3169 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
3170 array-to-pointer (_conv.array_), and function-to-pointer
3171 (_conv.func_) standard conversions are performed on the second
3172 and third operands. */
3173 arg2_type = TREE_TYPE (arg2);
3174 arg3_type = TREE_TYPE (arg3);
b72801e2 3175 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
a7a64a77 3176 {
a7a64a77
MM
3177 /* Do the conversions. We don't these for `void' type arguments
3178 since it can't have any effect and since decay_conversion
3179 does not handle that case gracefully. */
b72801e2 3180 if (!VOID_TYPE_P (arg2_type))
a7a64a77 3181 arg2 = decay_conversion (arg2);
b72801e2 3182 if (!VOID_TYPE_P (arg3_type))
a7a64a77
MM
3183 arg3 = decay_conversion (arg3);
3184 arg2_type = TREE_TYPE (arg2);
3185 arg3_type = TREE_TYPE (arg3);
3186
a7a64a77
MM
3187 /* [expr.cond]
3188
3189 One of the following shall hold:
3190
3191 --The second or the third operand (but not both) is a
3192 throw-expression (_except.throw_); the result is of the
3193 type of the other and is an rvalue.
3194
3195 --Both the second and the third operands have type void; the
c8094d83 3196 result is of type void and is an rvalue.
9d363a56 3197
0cbd7506 3198 We must avoid calling force_rvalue for expressions of type
9d363a56 3199 "void" because it will complain that their value is being
324f9dfb 3200 used. */
c8094d83 3201 if (TREE_CODE (arg2) == THROW_EXPR
41dffe62
MM
3202 && TREE_CODE (arg3) != THROW_EXPR)
3203 {
9d363a56
MM
3204 if (!VOID_TYPE_P (arg3_type))
3205 arg3 = force_rvalue (arg3);
41dffe62
MM
3206 arg3_type = TREE_TYPE (arg3);
3207 result_type = arg3_type;
3208 }
c8094d83 3209 else if (TREE_CODE (arg2) != THROW_EXPR
41dffe62
MM
3210 && TREE_CODE (arg3) == THROW_EXPR)
3211 {
9d363a56
MM
3212 if (!VOID_TYPE_P (arg2_type))
3213 arg2 = force_rvalue (arg2);
41dffe62
MM
3214 arg2_type = TREE_TYPE (arg2);
3215 result_type = arg2_type;
3216 }
b72801e2 3217 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
a7a64a77
MM
3218 result_type = void_type_node;
3219 else
3220 {
41775162 3221 error ("%qE has type %<void%> and is not a throw-expression",
b72801e2 3222 VOID_TYPE_P (arg2_type) ? arg2 : arg3);
a7a64a77
MM
3223 return error_mark_node;
3224 }
3225
94be8403 3226 lvalue_p = false;
a7a64a77
MM
3227 goto valid_operands;
3228 }
3229 /* [expr.cond]
3230
3231 Otherwise, if the second and third operand have different types,
3232 and either has (possibly cv-qualified) class type, an attempt is
3233 made to convert each of those operands to the type of the other. */
3234 else if (!same_type_p (arg2_type, arg3_type)
3235 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3236 {
5bd61841
MM
3237 conversion *conv2;
3238 conversion *conv3;
c8094d83 3239
5bd61841
MM
3240 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3241 p = conversion_obstack_alloc (0);
3242
3243 conv2 = conditional_conversion (arg2, arg3);
3244 conv3 = conditional_conversion (arg3, arg2);
3245
a7a64a77
MM
3246 /* [expr.cond]
3247
3248 If both can be converted, or one can be converted but the
3249 conversion is ambiguous, the program is ill-formed. If
3250 neither can be converted, the operands are left unchanged and
3251 further checking is performed as described below. If exactly
3252 one conversion is possible, that conversion is applied to the
3253 chosen operand and the converted operand is used in place of
3254 the original operand for the remainder of this section. */
5bd61841
MM
3255 if ((conv2 && !conv2->bad_p
3256 && conv3 && !conv3->bad_p)
3257 || (conv2 && conv2->kind == ck_ambig)
3258 || (conv3 && conv3->kind == ck_ambig))
a7a64a77 3259 {
33bd39a2 3260 error ("operands to ?: have different types");
5bd61841 3261 result = error_mark_node;
a7a64a77 3262 }
5bd61841 3263 else if (conv2 && !conv2->bad_p)
a7a64a77
MM
3264 {
3265 arg2 = convert_like (conv2, arg2);
442aa4ec 3266 arg2 = convert_from_reference (arg2);
a7a64a77
MM
3267 arg2_type = TREE_TYPE (arg2);
3268 }
5bd61841 3269 else if (conv3 && !conv3->bad_p)
a7a64a77
MM
3270 {
3271 arg3 = convert_like (conv3, arg3);
442aa4ec 3272 arg3 = convert_from_reference (arg3);
a7a64a77
MM
3273 arg3_type = TREE_TYPE (arg3);
3274 }
5bd61841
MM
3275
3276 /* Free all the conversions we allocated. */
3277 obstack_free (&conversion_obstack, p);
3278
3279 if (result)
3280 return result;
d2f2c87b
MM
3281
3282 /* If, after the conversion, both operands have class type,
3283 treat the cv-qualification of both operands as if it were the
c8094d83 3284 union of the cv-qualification of the operands.
d2f2c87b
MM
3285
3286 The standard is not clear about what to do in this
3287 circumstance. For example, if the first operand has type
3288 "const X" and the second operand has a user-defined
3289 conversion to "volatile X", what is the type of the second
3290 operand after this step? Making it be "const X" (matching
3291 the first operand) seems wrong, as that discards the
4ee31f1e 3292 qualification without actually performing a copy. Leaving it
d2f2c87b
MM
3293 as "volatile X" seems wrong as that will result in the
3294 conditional expression failing altogether, even though,
3295 according to this step, the one operand could be converted to
3296 the type of the other. */
3297 if ((conv2 || conv3)
3298 && CLASS_TYPE_P (arg2_type)
3299 && TYPE_QUALS (arg2_type) != TYPE_QUALS (arg3_type))
c8094d83 3300 arg2_type = arg3_type =
d2f2c87b
MM
3301 cp_build_qualified_type (arg2_type,
3302 TYPE_QUALS (arg2_type)
3303 | TYPE_QUALS (arg3_type));
a7a64a77
MM
3304 }
3305
3306 /* [expr.cond]
3307
3308 If the second and third operands are lvalues and have the same
3309 type, the result is of that type and is an lvalue. */
c8094d83
MS
3310 if (real_lvalue_p (arg2)
3311 && real_lvalue_p (arg3)
d18a8251 3312 && same_type_p (arg2_type, arg3_type))
a7a64a77
MM
3313 {
3314 result_type = arg2_type;
3315 goto valid_operands;
3316 }
3317
3318 /* [expr.cond]
3319
3320 Otherwise, the result is an rvalue. If the second and third
3321 operand do not have the same type, and either has (possibly
3322 cv-qualified) class type, overload resolution is used to
3323 determine the conversions (if any) to be applied to the operands
3324 (_over.match.oper_, _over.built_). */
94be8403 3325 lvalue_p = false;
a7a64a77
MM
3326 if (!same_type_p (arg2_type, arg3_type)
3327 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
3328 {
3329 tree args[3];
5bd61841 3330 conversion *conv;
436f8a4c 3331 bool any_viable_p;
a7a64a77
MM
3332
3333 /* Rearrange the arguments so that add_builtin_candidate only has
3334 to know about two args. In build_builtin_candidates, the
3335 arguments are unscrambled. */
3336 args[0] = arg2;
3337 args[1] = arg3;
3338 args[2] = arg1;
c8094d83
MS
3339 add_builtin_candidates (&candidates,
3340 COND_EXPR,
7993382e
MM
3341 NOP_EXPR,
3342 ansi_opname (COND_EXPR),
3343 args,
3344 LOOKUP_NORMAL);
a7a64a77
MM
3345
3346 /* [expr.cond]
3347
3348 If the overload resolution fails, the program is
3349 ill-formed. */
436f8a4c
MM
3350 candidates = splice_viable (candidates, pedantic, &any_viable_p);
3351 if (!any_viable_p)
a7a64a77
MM
3352 {
3353 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3354 print_z_candidates (candidates);
3355 return error_mark_node;
3356 }
a7a64a77
MM
3357 cand = tourney (candidates);
3358 if (!cand)
3359 {
3360 op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
3361 print_z_candidates (candidates);
3362 return error_mark_node;
3363 }
3364
3365 /* [expr.cond]
3366
3367 Otherwise, the conversions thus determined are applied, and
3368 the converted operands are used in place of the original
3369 operands for the remainder of this section. */
5bd61841 3370 conv = cand->convs[0];
a7a64a77 3371 arg1 = convert_like (conv, arg1);
5bd61841 3372 conv = cand->convs[1];
a7a64a77 3373 arg2 = convert_like (conv, arg2);
5bd61841 3374 conv = cand->convs[2];
a7a64a77
MM
3375 arg3 = convert_like (conv, arg3);
3376 }
3377
3378 /* [expr.cond]
3379
3380 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
3381 and function-to-pointer (_conv.func_) standard conversions are
50fd6343
JM
3382 performed on the second and third operands.
3383
3384 We need to force the lvalue-to-rvalue conversion here for class types,
3385 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
3386 that isn't wrapped with a TARGET_EXPR plays havoc with exception
d2f2c87b 3387 regions. */
50fd6343 3388
f7b9026e 3389 arg2 = force_rvalue (arg2);
d2f2c87b
MM
3390 if (!CLASS_TYPE_P (arg2_type))
3391 arg2_type = TREE_TYPE (arg2);
50fd6343 3392
f7b9026e 3393 arg3 = force_rvalue (arg3);
d2f2c87b
MM
3394 if (!CLASS_TYPE_P (arg2_type))
3395 arg3_type = TREE_TYPE (arg3);
a7a64a77 3396
40260429
NS
3397 if (arg2 == error_mark_node || arg3 == error_mark_node)
3398 return error_mark_node;
c8094d83 3399
a7a64a77 3400 /* [expr.cond]
c8094d83 3401
a7a64a77
MM
3402 After those conversions, one of the following shall hold:
3403
3404 --The second and third operands have the same type; the result is of
3405 that type. */
3406 if (same_type_p (arg2_type, arg3_type))
3407 result_type = arg2_type;
3408 /* [expr.cond]
3409
3410 --The second and third operands have arithmetic or enumeration
3411 type; the usual arithmetic conversions are performed to bring
3412 them to a common type, and the result is of that type. */
c8094d83 3413 else if ((ARITHMETIC_TYPE_P (arg2_type)
a7a64a77
MM
3414 || TREE_CODE (arg2_type) == ENUMERAL_TYPE)
3415 && (ARITHMETIC_TYPE_P (arg3_type)
3416 || TREE_CODE (arg3_type) == ENUMERAL_TYPE))
3417 {
3418 /* In this case, there is always a common type. */
c8094d83 3419 result_type = type_after_usual_arithmetic_conversions (arg2_type,
a7a64a77 3420 arg3_type);
c8094d83 3421
1b4d752a 3422 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
0cbd7506
MS
3423 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
3424 warning (0, "enumeral mismatch in conditional expression: %qT vs %qT",
3425 arg2_type, arg3_type);
1b4d752a 3426 else if (extra_warnings
0cbd7506
MS
3427 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
3428 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
3429 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
3430 && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
3431 warning (0, "enumeral and non-enumeral type in conditional expression");
c8094d83 3432
4143af33
MM
3433 arg2 = perform_implicit_conversion (result_type, arg2);
3434 arg3 = perform_implicit_conversion (result_type, arg3);
a7a64a77
MM
3435 }
3436 /* [expr.cond]
3437
3438 --The second and third operands have pointer type, or one has
3439 pointer type and the other is a null pointer constant; pointer
3440 conversions (_conv.ptr_) and qualification conversions
3441 (_conv.qual_) are performed to bring them to their composite
3442 pointer type (_expr.rel_). The result is of the composite
3443 pointer type.
3444
3445 --The second and third operands have pointer to member type, or
3446 one has pointer to member type and the other is a null pointer
3447 constant; pointer to member conversions (_conv.mem_) and
3448 qualification conversions (_conv.qual_) are performed to bring
3449 them to a common type, whose cv-qualification shall match the
3450 cv-qualification of either the second or the third operand.
00a17e31 3451 The result is of the common type. */
c8094d83 3452 else if ((null_ptr_cst_p (arg2)
a5ac359a 3453 && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
c8094d83 3454 || (null_ptr_cst_p (arg3)
a5ac359a 3455 && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
a7a64a77
MM
3456 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
3457 || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
a5ac359a 3458 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
a7a64a77
MM
3459 {
3460 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
3461 arg3, "conditional expression");
6cf4d1bc
MM
3462 if (result_type == error_mark_node)
3463 return error_mark_node;
4143af33
MM
3464 arg2 = perform_implicit_conversion (result_type, arg2);
3465 arg3 = perform_implicit_conversion (result_type, arg3);
a7a64a77
MM
3466 }
3467
3468 if (!result_type)
3469 {
33bd39a2 3470 error ("operands to ?: have different types");
a7a64a77
MM
3471 return error_mark_node;
3472 }
3473
3474 valid_operands:
c8094d83 3475 result = fold_if_not_in_template (build3 (COND_EXPR, result_type, arg1,
455f19cb 3476 arg2, arg3));
a65fd2d7
JM
3477 /* We can't use result_type below, as fold might have returned a
3478 throw_expr. */
3479
a7a64a77 3480 /* Expand both sides into the same slot, hopefully the target of the
50fd6343
JM
3481 ?: expression. We used to check for TARGET_EXPRs here, but now we
3482 sometimes wrap them in NOP_EXPRs so the test would fail. */
d2f2c87b 3483 if (!lvalue_p && CLASS_TYPE_P (TREE_TYPE (result)))
a65fd2d7 3484 result = get_target_expr (result);
c8094d83 3485
a7a64a77
MM
3486 /* If this expression is an rvalue, but might be mistaken for an
3487 lvalue, we must add a NON_LVALUE_EXPR. */
3488 if (!lvalue_p && real_lvalue_p (result))
a65fd2d7 3489 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
a7a64a77
MM
3490
3491 return result;
3492}
3493
14d22dd6
MM
3494/* OPERAND is an operand to an expression. Perform necessary steps
3495 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
3496 returned. */
3497
3498static tree
3499prep_operand (tree operand)
3500{
3501 if (operand)
3502 {
14d22dd6
MM
3503 if (CLASS_TYPE_P (TREE_TYPE (operand))
3504 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
3505 /* Make sure the template type is instantiated now. */
3506 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
3507 }
3508
3509 return operand;
3510}
3511
b80f8ef3
MM
3512/* Add each of the viable functions in FNS (a FUNCTION_DECL or
3513 OVERLOAD) to the CANDIDATES, returning an updated list of
3514 CANDIDATES. The ARGS are the arguments provided to the call,
125e6594
MM
3515 without any implicit object parameter. The EXPLICIT_TARGS are
3516 explicit template arguments provided. TEMPLATE_ONLY is true if
da1d7781 3517 only template functions should be considered. CONVERSION_PATH,
b80f8ef3
MM
3518 ACCESS_PATH, and FLAGS are as for add_function_candidate. */
3519
7993382e 3520static void
c8094d83 3521add_candidates (tree fns, tree args,
125e6594 3522 tree explicit_targs, bool template_only,
b80f8ef3
MM
3523 tree conversion_path, tree access_path,
3524 int flags,
7993382e 3525 struct z_candidate **candidates)
b80f8ef3
MM
3526{
3527 tree ctype;
3528 tree non_static_args;
3529
3530 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
3531 /* Delay creating the implicit this parameter until it is needed. */
3532 non_static_args = NULL_TREE;
3533
c8094d83 3534 while (fns)
b80f8ef3
MM
3535 {
3536 tree fn;
3537 tree fn_args;
3538
3539 fn = OVL_CURRENT (fns);
3540 /* Figure out which set of arguments to use. */
125e6594 3541 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
b80f8ef3
MM
3542 {
3543 /* If this function is a non-static member, prepend the implicit
3544 object parameter. */
3545 if (!non_static_args)
3546 non_static_args = tree_cons (NULL_TREE,
3547 build_this (TREE_VALUE (args)),
3548 TREE_CHAIN (args));
3549 fn_args = non_static_args;
3550 }
3551 else
3552 /* Otherwise, just use the list of arguments provided. */
3553 fn_args = args;
3554
3555 if (TREE_CODE (fn) == TEMPLATE_DECL)
c8094d83
MS
3556 add_template_candidate (candidates,
3557 fn,
7993382e 3558 ctype,
125e6594 3559 explicit_targs,
7993382e
MM
3560 fn_args,
3561 NULL_TREE,
3562 access_path,
3563 conversion_path,
3564 flags,
3565 DEDUCE_CALL);
125e6594 3566 else if (!template_only)
7993382e
MM
3567 add_function_candidate (candidates,
3568 fn,
3569 ctype,
3570 fn_args,
3571 access_path,
3572 conversion_path,
3573 flags);
b80f8ef3
MM
3574 fns = OVL_NEXT (fns);
3575 }
b80f8ef3
MM
3576}
3577
c73964b2 3578tree
ec835fb2
MM
3579build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
3580 bool *overloaded_p)
c73964b2
MS
3581{
3582 struct z_candidate *candidates = 0, *cand;
b80f8ef3
MM
3583 tree arglist, fnname;
3584 tree args[3];
5bd61841
MM
3585 tree result = NULL_TREE;
3586 bool result_valid_p = false;
c73964b2 3587 enum tree_code code2 = NOP_EXPR;
5bd61841
MM
3588 conversion *conv;
3589 void *p;
436f8a4c
MM
3590 bool strict_p;
3591 bool any_viable_p;
c73964b2 3592
c8094d83
MS
3593 if (error_operand_p (arg1)
3594 || error_operand_p (arg2)
a723baf1 3595 || error_operand_p (arg3))
c73964b2
MS
3596 return error_mark_node;
3597
3598 if (code == MODIFY_EXPR)
3599 {
3600 code2 = TREE_CODE (arg3);
3601 arg3 = NULL_TREE;
596ea4e5 3602 fnname = ansi_assopname (code2);
c73964b2
MS
3603 }
3604 else
596ea4e5 3605 fnname = ansi_opname (code);
c73964b2 3606
14d22dd6 3607 arg1 = prep_operand (arg1);
c8094d83 3608
c73964b2
MS
3609 switch (code)
3610 {
3611 case NEW_EXPR:
3612 case VEC_NEW_EXPR:
c73964b2
MS
3613 case VEC_DELETE_EXPR:
3614 case DELETE_EXPR:
00a17e31 3615 /* Use build_op_new_call and build_op_delete_call instead. */
8dc2b103 3616 gcc_unreachable ();
c73964b2
MS
3617
3618 case CALL_EXPR:
3619 return build_object_call (arg1, arg2);
7f85441b
KG
3620
3621 default:
3622 break;
c73964b2
MS
3623 }
3624
14d22dd6
MM
3625 arg2 = prep_operand (arg2);
3626 arg3 = prep_operand (arg3);
c8094d83 3627
5156628f
MS
3628 if (code == COND_EXPR)
3629 {
beb53fb8
JM
3630 if (arg2 == NULL_TREE
3631 || TREE_CODE (TREE_TYPE (arg2)) == VOID_TYPE
5156628f
MS
3632 || TREE_CODE (TREE_TYPE (arg3)) == VOID_TYPE
3633 || (! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))
3634 && ! IS_OVERLOAD_TYPE (TREE_TYPE (arg3))))
3635 goto builtin;
3636 }
3637 else if (! IS_OVERLOAD_TYPE (TREE_TYPE (arg1))
3638 && (! arg2 || ! IS_OVERLOAD_TYPE (TREE_TYPE (arg2))))
c73964b2
MS
3639 goto builtin;
3640
3641 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
3642 arg2 = integer_zero_node;
3643
477558bf
NS
3644 arglist = NULL_TREE;
3645 if (arg3)
3646 arglist = tree_cons (NULL_TREE, arg3, arglist);
3647 if (arg2)
3648 arglist = tree_cons (NULL_TREE, arg2, arglist);
3649 arglist = tree_cons (NULL_TREE, arg1, arglist);
c73964b2 3650
5bd61841
MM
3651 /* Get the high-water mark for the CONVERSION_OBSTACK. */
3652 p = conversion_obstack_alloc (0);
3653
b80f8ef3
MM
3654 /* Add namespace-scope operators to the list of functions to
3655 consider. */
12cf89fa 3656 add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
125e6594 3657 arglist, NULL_TREE, false, NULL_TREE, NULL_TREE,
7993382e 3658 flags, &candidates);
b80f8ef3
MM
3659 /* Add class-member operators to the candidate set. */
3660 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
c73964b2 3661 {
b80f8ef3 3662 tree fns;
c73964b2 3663
cad7e87b 3664 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
734e8cc5 3665 if (fns == error_mark_node)
5bd61841
MM
3666 {
3667 result = error_mark_node;
3668 goto user_defined_result_ready;
3669 }
b80f8ef3 3670 if (fns)
c8094d83 3671 add_candidates (BASELINK_FUNCTIONS (fns), arglist,
125e6594 3672 NULL_TREE, false,
7993382e
MM
3673 BASELINK_BINFO (fns),
3674 TYPE_BINFO (TREE_TYPE (arg1)),
3675 flags, &candidates);
734e8cc5 3676 }
c73964b2 3677
b80f8ef3
MM
3678 /* Rearrange the arguments for ?: so that add_builtin_candidate only has
3679 to know about two args; a builtin candidate will always have a first
3680 parameter of type bool. We'll handle that in
3681 build_builtin_candidate. */
3682 if (code == COND_EXPR)
c73964b2 3683 {
b80f8ef3
MM
3684 args[0] = arg2;
3685 args[1] = arg3;
3686 args[2] = arg1;
3687 }
3688 else
3689 {
3690 args[0] = arg1;
3691 args[1] = arg2;
3692 args[2] = NULL_TREE;
c73964b2
MS
3693 }
3694
7993382e 3695 add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
c73964b2 3696
ecc42c14
AO
3697 switch (code)
3698 {
3699 case COMPOUND_EXPR:
3700 case ADDR_EXPR:
3701 /* For these, the built-in candidates set is empty
3702 [over.match.oper]/3. We don't want non-strict matches
3703 because exact matches are always possible with built-in
3704 operators. The built-in candidate set for COMPONENT_REF
3705 would be empty too, but since there are no such built-in
3706 operators, we accept non-strict matches for them. */
436f8a4c 3707 strict_p = true;
ecc42c14
AO
3708 break;
3709
3710 default:
436f8a4c 3711 strict_p = pedantic;
ecc42c14 3712 break;
c8094d83 3713 }
ecc42c14 3714
436f8a4c
MM
3715 candidates = splice_viable (candidates, strict_p, &any_viable_p);
3716 if (!any_viable_p)
c73964b2
MS
3717 {
3718 switch (code)
3719 {
3720 case POSTINCREMENT_EXPR:
3721 case POSTDECREMENT_EXPR:
3722 /* Look for an `operator++ (int)'. If they didn't have
3723 one, then we fall back to the old way of doing things. */
3724 if (flags & LOOKUP_COMPLAIN)
41775162 3725 pedwarn ("no %<%D(int)%> declared for postfix %qs, "
0cbd7506
MS
3726 "trying prefix operator instead",
3727 fnname,
3728 operator_name_info[code].name);
c73964b2
MS
3729 if (code == POSTINCREMENT_EXPR)
3730 code = PREINCREMENT_EXPR;
3731 else
c8094d83 3732 code = PREDECREMENT_EXPR;
ec835fb2
MM
3733 result = build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE,
3734 overloaded_p);
5bd61841
MM
3735 break;
3736
c73964b2
MS
3737 /* The caller will deal with these. */
3738 case ADDR_EXPR:
3739 case COMPOUND_EXPR:
3740 case COMPONENT_REF:
5bd61841
MM
3741 result = NULL_TREE;
3742 result_valid_p = true;
3743 break;
7f85441b
KG
3744
3745 default:
5bd61841
MM
3746 if (flags & LOOKUP_COMPLAIN)
3747 {
3748 op_error (code, code2, arg1, arg2, arg3, "no match");
3749 print_z_candidates (candidates);
3750 }
3751 result = error_mark_node;
7f85441b 3752 break;
c73964b2 3753 }
c73964b2 3754 }
5bd61841 3755 else
c73964b2 3756 {
5bd61841
MM
3757 cand = tourney (candidates);
3758 if (cand == 0)
c73964b2 3759 {
5bd61841
MM
3760 if (flags & LOOKUP_COMPLAIN)
3761 {
3762 op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
3763 print_z_candidates (candidates);
3764 }
3765 result = error_mark_node;
c73964b2 3766 }
5bd61841 3767 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
c73964b2 3768 {
ec835fb2
MM
3769 if (overloaded_p)
3770 *overloaded_p = true;
3771
5bd61841
MM
3772 result = build_over_call (cand, LOOKUP_NORMAL);
3773 }
3774 else
d11ad92e 3775 {
4fe2a1a7
JM
3776 /* Give any warnings we noticed during overload resolution. */
3777 if (cand->warnings)
3778 {
3779 struct candidate_warning *w;
3780 for (w = cand->warnings; w; w = w->next)
3781 joust (cand, w->loser, 1);
3782 }
3783
5bd61841
MM
3784 /* Check for comparison of different enum types. */
3785 switch (code)
3786 {
3787 case GT_EXPR:
3788 case LT_EXPR:
3789 case GE_EXPR:
3790 case LE_EXPR:
3791 case EQ_EXPR:
3792 case NE_EXPR:
c8094d83
MS
3793 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
3794 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5bd61841
MM
3795 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
3796 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
3797 {
c8094d83 3798 warning (0, "comparison between %q#T and %q#T",
0cbd7506 3799 TREE_TYPE (arg1), TREE_TYPE (arg2));
5bd61841
MM
3800 }
3801 break;
3802 default:
3803 break;
3804 }
3805
3806 /* We need to strip any leading REF_BIND so that bitfields
3807 don't cause errors. This should not remove any important
3808 conversions, because builtins don't apply to class
3809 objects directly. */
3810 conv = cand->convs[0];
3811 if (conv->kind == ck_ref_bind)
3812 conv = conv->u.next;
3813 arg1 = convert_like (conv, arg1);
3814 if (arg2)
3815 {
3816 conv = cand->convs[1];
3817 if (conv->kind == ck_ref_bind)
3818 conv = conv->u.next;
3819 arg2 = convert_like (conv, arg2);
3820 }
3821 if (arg3)
3822 {
3823 conv = cand->convs[2];
3824 if (conv->kind == ck_ref_bind)
3825 conv = conv->u.next;
3826 arg3 = convert_like (conv, arg3);
3827 }
d11ad92e
MS
3828 }
3829 }
3830
5bd61841
MM
3831 user_defined_result_ready:
3832
3833 /* Free all the conversions we allocated. */
3834 obstack_free (&conversion_obstack, p);
3835
3836 if (result || result_valid_p)
3837 return result;
c73964b2 3838
8dc2b103 3839 builtin:
c73964b2
MS
3840 switch (code)
3841 {
3842 case MODIFY_EXPR:
3843 return build_modify_expr (arg1, code2, arg2);
3844
3845 case INDIRECT_REF:
3846 return build_indirect_ref (arg1, "unary *");
3847
3848 case PLUS_EXPR:
3849 case MINUS_EXPR:
3850 case MULT_EXPR:
3851 case TRUNC_DIV_EXPR:
3852 case GT_EXPR:
3853 case LT_EXPR:
3854 case GE_EXPR:
3855 case LE_EXPR:
3856 case EQ_EXPR:
3857 case NE_EXPR:
3858 case MAX_EXPR:
3859 case MIN_EXPR:
3860 case LSHIFT_EXPR:
3861 case RSHIFT_EXPR:
3862 case TRUNC_MOD_EXPR:
3863 case BIT_AND_EXPR:
3864 case BIT_IOR_EXPR:
3865 case BIT_XOR_EXPR:
3866 case TRUTH_ANDIF_EXPR:
3867 case TRUTH_ORIF_EXPR:
ab76ca54 3868 return cp_build_binary_op (code, arg1, arg2);
c73964b2 3869
392e3d51 3870 case UNARY_PLUS_EXPR:
c73964b2
MS
3871 case NEGATE_EXPR:
3872 case BIT_NOT_EXPR:
3873 case TRUTH_NOT_EXPR:
3874 case PREINCREMENT_EXPR:
3875 case POSTINCREMENT_EXPR:
3876 case PREDECREMENT_EXPR:
3877 case POSTDECREMENT_EXPR:
37c46b43
MS
3878 case REALPART_EXPR:
3879 case IMAGPART_EXPR:
c73964b2
MS
3880 return build_unary_op (code, arg1, candidates != 0);
3881
3882 case ARRAY_REF:
3883 return build_array_ref (arg1, arg2);
3884
3885 case COND_EXPR:
3886 return build_conditional_expr (arg1, arg2, arg3);
3887
3888 case MEMBER_REF:
44de5aeb 3889 return build_m_component_ref (build_indirect_ref (arg1, NULL), arg2);
c73964b2
MS
3890
3891 /* The caller will deal with these. */
3892 case ADDR_EXPR:
3893 case COMPONENT_REF:
3894 case COMPOUND_EXPR:
3895 return NULL_TREE;
3896
3897 default:
8dc2b103 3898 gcc_unreachable ();
c73964b2 3899 }
8dc2b103 3900 return NULL_TREE;
c73964b2
MS
3901}
3902
da4768fe
JM
3903/* Build a call to operator delete. This has to be handled very specially,
3904 because the restrictions on what signatures match are different from all
3905 other call instances. For a normal delete, only a delete taking (void *)
3906 or (void *, size_t) is accepted. For a placement delete, only an exact
3907 match with the placement new is accepted.
3908
3909 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
0ac7f923 3910 ADDR is the pointer to be deleted.
da4768fe 3911 SIZE is the size of the memory block to be deleted.
5bd61841
MM
3912 GLOBAL_P is true if the delete-expression should not consider
3913 class-specific delete operators.
3f41ffd8 3914 PLACEMENT is the corresponding placement new call, or NULL_TREE. */
da4768fe
JM
3915
3916tree
94be8403 3917build_op_delete_call (enum tree_code code, tree addr, tree size,
5bd61841 3918 bool global_p, tree placement)
da4768fe 3919{
ae0ed63a 3920 tree fn = NULL_TREE;
8f4b394d 3921 tree fns, fnname, argtypes, args, type;
52682a1b 3922 int pass;
da4768fe
JM
3923
3924 if (addr == error_mark_node)
3925 return error_mark_node;
3926
8d4ce389 3927 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
c3e899c1 3928
596ea4e5 3929 fnname = ansi_opname (code);
da4768fe 3930
c8094d83 3931 if (CLASS_TYPE_P (type)
6e5bdc64
MM
3932 && COMPLETE_TYPE_P (complete_type (type))
3933 && !global_p)
734e8cc5
MM
3934 /* In [class.free]
3935
3936 If the result of the lookup is ambiguous or inaccessible, or if
3937 the lookup selects a placement deallocation function, the
3938 program is ill-formed.
c8094d83 3939
cd0be382 3940 Therefore, we ask lookup_fnfields to complain about ambiguity. */
734e8cc5
MM
3941 {
3942 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
3943 if (fns == error_mark_node)
3944 return error_mark_node;
3945 }
da4768fe
JM
3946 else
3947 fns = NULL_TREE;
3948
519ebd1e 3949 if (fns == NULL_TREE)
da4768fe
JM
3950 fns = lookup_name_nonclass (fnname);
3951
da4768fe
JM
3952 if (placement)
3953 {
cd4e8331
MM
3954 tree alloc_fn;
3955 tree call_expr;
3956
00a17e31 3957 /* Find the allocation function that is being called. */
cd4e8331 3958 call_expr = placement;
519ebd1e 3959 /* Extract the function. */
cd4e8331 3960 alloc_fn = get_callee_fndecl (call_expr);
50bc768d 3961 gcc_assert (alloc_fn != NULL_TREE);
519ebd1e 3962 /* Then the second parm type. */
cd4e8331 3963 argtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
519ebd1e 3964 /* Also the second argument. */
cd4e8331 3965 args = TREE_CHAIN (TREE_OPERAND (call_expr, 1));
da4768fe
JM
3966 }
3967 else
3968 {
3969 /* First try it without the size argument. */
3970 argtypes = void_list_node;
3971 args = NULL_TREE;
3972 }
3973
da4768fe 3974 /* Strip const and volatile from addr. */
c3e899c1 3975 addr = cp_convert (ptr_type_node, addr);
da4768fe 3976
52682a1b 3977 /* We make two tries at finding a matching `operator delete'. On
8d4ce389 3978 the first pass, we look for a one-operator (or placement)
52682a1b
MM
3979 operator delete. If we're not doing placement delete, then on
3980 the second pass we look for a two-argument delete. */
c8094d83 3981 for (pass = 0; pass < (placement ? 1 : 2); ++pass)
da4768fe 3982 {
3f41ffd8
MM
3983 /* Go through the `operator delete' functions looking for one
3984 with a matching type. */
c8094d83
MS
3985 for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
3986 fn;
3f41ffd8 3987 fn = OVL_NEXT (fn))
52682a1b 3988 {
3f41ffd8
MM
3989 tree t;
3990
8f4b394d
MM
3991 /* The first argument must be "void *". */
3992 t = TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn)));
3993 if (!same_type_p (TREE_VALUE (t), ptr_type_node))
3994 continue;
3995 t = TREE_CHAIN (t);
3996 /* On the first pass, check the rest of the arguments. */
3997 if (pass == 0)
3998 {
4546865e
MM
3999 tree a = argtypes;
4000 while (a && t)
8f4b394d 4001 {
4546865e 4002 if (!same_type_p (TREE_VALUE (a), TREE_VALUE (t)))
8f4b394d 4003 break;
4546865e 4004 a = TREE_CHAIN (a);
8f4b394d
MM
4005 t = TREE_CHAIN (t);
4006 }
4546865e 4007 if (!a && !t)
8f4b394d
MM
4008 break;
4009 }
4010 /* On the second pass, the second argument must be
4011 "size_t". */
4012 else if (pass == 1
4013 && same_type_p (TREE_VALUE (t), sizetype)
4014 && TREE_CHAIN (t) == void_list_node)
3f41ffd8 4015 break;
52682a1b 4016 }
3f41ffd8
MM
4017
4018 /* If we found a match, we're done. */
4019 if (fn)
4020 break;
4021 }
4022
4023 /* If we have a matching function, call it. */
4024 if (fn)
4025 {
4026 /* Make sure we have the actual function, and not an
4027 OVERLOAD. */
4028 fn = OVL_CURRENT (fn);
4029
4030 /* If the FN is a member function, make sure that it is
4031 accessible. */
4032 if (DECL_CLASS_SCOPE_P (fn))
6df5158a 4033 perform_or_defer_access_check (TYPE_BINFO (type), fn);
3f41ffd8
MM
4034
4035 if (pass == 0)
4036 args = tree_cons (NULL_TREE, addr, args);
4037 else
c8094d83 4038 args = tree_cons (NULL_TREE, addr,
3f41ffd8
MM
4039 build_tree_list (NULL_TREE, size));
4040
a6111661
JM
4041 if (placement)
4042 {
4043 /* The placement args might not be suitable for overload
4044 resolution at this point, so build the call directly. */
4045 mark_used (fn);
d522060b 4046 return build_cxx_call (fn, args);
a6111661
JM
4047 }
4048 else
4049 return build_function_call (fn, args);
519ebd1e
JM
4050 }
4051
52682a1b
MM
4052 /* If we are doing placement delete we do nothing if we don't find a
4053 matching op delete. */
4054 if (placement)
519ebd1e 4055 return NULL_TREE;
da4768fe 4056
2fe96b0a 4057 error ("no suitable %<operator %s%> for %qT",
8d4ce389 4058 operator_name_info[(int)code].name, type);
da4768fe
JM
4059 return error_mark_node;
4060}
4061
38afd588 4062/* If the current scope isn't allowed to access DECL along
d6479fe7
MM
4063 BASETYPE_PATH, give an error. The most derived class in
4064 BASETYPE_PATH is the one used to qualify DECL. */
da4768fe 4065
94be8403
GDR
4066bool
4067enforce_access (tree basetype_path, tree decl)
c73964b2 4068{
50bc768d 4069 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
c8094d83 4070
18e4be85 4071 if (!accessible_p (basetype_path, decl, true))
c73964b2 4072 {
d6479fe7 4073 if (TREE_PRIVATE (decl))
dee15844 4074 error ("%q+#D is private", decl);
d6479fe7 4075 else if (TREE_PROTECTED (decl))
dee15844 4076 error ("%q+#D is protected", decl);
d6479fe7 4077 else
dee15844 4078 error ("%q+#D is inaccessible", decl);
33bd39a2 4079 error ("within this context");
94be8403 4080 return false;
c73964b2 4081 }
d6479fe7 4082
94be8403 4083 return true;
c73964b2
MS
4084}
4085
644d1951
NS
4086/* Check that a callable constructor to initialize a temporary of
4087 TYPE from an EXPR exists. */
4088
4089static void
4090check_constructor_callable (tree type, tree expr)
4091{
4092 build_special_member_call (NULL_TREE,
4093 complete_ctor_identifier,
c8094d83 4094 build_tree_list (NULL_TREE, expr),
cad7e87b 4095 type,
644d1951 4096 LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING
386489e3 4097 | LOOKUP_NO_CONVERSION
644d1951
NS
4098 | LOOKUP_CONSTRUCTOR_CALLABLE);
4099}
4100
4f8163b1
MM
4101/* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
4102 bitwise or of LOOKUP_* values. If any errors are warnings are
4103 generated, set *DIAGNOSTIC_FN to "error" or "warning",
4104 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
4105 to NULL. */
4106
4107static tree
c8094d83 4108build_temp (tree expr, tree type, int flags,
72e78bf3 4109 diagnostic_fn_t *diagnostic_fn)
4f8163b1
MM
4110{
4111 int savew, savee;
c8094d83 4112
4f8163b1 4113 savew = warningcount, savee = errorcount;
644d1951 4114 expr = build_special_member_call (NULL_TREE,
4f8163b1 4115 complete_ctor_identifier,
c8094d83 4116 build_tree_list (NULL_TREE, expr),
cad7e87b 4117 type, flags);
4f8163b1 4118 if (warningcount > savew)
d4ee4d25 4119 *diagnostic_fn = warning0;
4f8163b1
MM
4120 else if (errorcount > savee)
4121 *diagnostic_fn = error;
4122 else
4123 *diagnostic_fn = NULL;
4124 return expr;
4125}
c8094d83 4126
4f8163b1 4127
3fe18f1d
MM
4128/* Perform the conversions in CONVS on the expression EXPR. FN and
4129 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
838dfd8a 4130 indicates the `this' argument of a method. INNER is nonzero when
78fe06c2 4131 being called to continue a conversion chain. It is negative when a
3fe18f1d
MM
4132 reference binding will be applied, positive otherwise. If
4133 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
33c25e5c
MM
4134 conversions will be emitted if appropriate. If C_CAST_P is true,
4135 this conversion is coming from a C-style cast; in that case,
4136 conversions to inaccessible bases are permitted. */
c73964b2
MS
4137
4138static tree
c8094d83 4139convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
33c25e5c
MM
4140 int inner, bool issue_conversion_warnings,
4141 bool c_cast_p)
c73964b2 4142{
5bd61841 4143 tree totype = convs->type;
72e78bf3 4144 diagnostic_fn_t diagnostic_fn;
5e818b93 4145
5bd61841
MM
4146 if (convs->bad_p
4147 && convs->kind != ck_user
4148 && convs->kind != ck_ambig
4149 && convs->kind != ck_ref_bind)
d11ad92e 4150 {
5bd61841
MM
4151 conversion *t = convs;
4152 for (; t; t = convs->u.next)
d11ad92e 4153 {
5bd61841 4154 if (t->kind == ck_user || !t->bad_p)
d11ad92e 4155 {
3fe18f1d 4156 expr = convert_like_real (t, expr, fn, argnum, 1,
33c25e5c
MM
4157 /*issue_conversion_warnings=*/false,
4158 /*c_cast_p=*/false);
d11ad92e
MS
4159 break;
4160 }
5bd61841 4161 else if (t->kind == ck_ambig)
3fe18f1d 4162 return convert_like_real (t, expr, fn, argnum, 1,
33c25e5c
MM
4163 /*issue_conversion_warnings=*/false,
4164 /*c_cast_p=*/false);
5bd61841 4165 else if (t->kind == ck_identity)
d11ad92e
MS
4166 break;
4167 }
41775162 4168 pedwarn ("invalid conversion from %qT to %qT", TREE_TYPE (expr), totype);
72a08131 4169 if (fn)
41775162 4170 pedwarn (" initializing argument %P of %qD", argnum, fn);
72a08131 4171 return cp_convert (totype, expr);
d11ad92e 4172 }
c8094d83 4173
3fe18f1d 4174 if (issue_conversion_warnings)
6fc98adf
MM
4175 {
4176 tree t = non_reference (totype);
4177
4178 /* Issue warnings about peculiar, but valid, uses of NULL. */
4179 if (ARITHMETIC_TYPE_P (t) && expr == null_node)
4180 {
4181 if (fn)
d4ee4d25 4182 warning (0, "passing NULL to non-pointer argument %P of %qD",
6fc98adf
MM
4183 argnum, fn);
4184 else
d4ee4d25 4185 warning (0, "converting to non-pointer type %qT from NULL", t);
6fc98adf
MM
4186 }
4187
4188 /* Warn about assigning a floating-point type to an integer type. */
4189 if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
4190 && TREE_CODE (t) == INTEGER_TYPE)
4191 {
4192 if (fn)
d4ee4d25 4193 warning (0, "passing %qT for argument %P to %qD",
6fc98adf
MM
4194 TREE_TYPE (expr), argnum, fn);
4195 else
d4ee4d25 4196 warning (0, "converting to %qT from %qT", t, TREE_TYPE (expr));
6fc98adf
MM
4197 }
4198 /* And warn about assigning a negative value to an unsigned
4199 variable. */
4200 else if (TYPE_UNSIGNED (t) && TREE_CODE (t) != BOOLEAN_TYPE)
4201 {
c8094d83 4202 if (TREE_CODE (expr) == INTEGER_CST && TREE_NEGATED_INT (expr))
6fc98adf
MM
4203 {
4204 if (fn)
d4ee4d25 4205 warning (0, "passing negative value %qE for argument %P to %qD",
6fc98adf
MM
4206 expr, argnum, fn);
4207 else
d4ee4d25 4208 warning (0, "converting negative value %qE to %qT", expr, t);
6fc98adf 4209 }
c8094d83 4210
6fc98adf
MM
4211 overflow_warning (expr);
4212 }
4213 }
4214
5bd61841 4215 switch (convs->kind)
c73964b2 4216 {
5bd61841 4217 case ck_user:
c73964b2 4218 {
5bd61841 4219 struct z_candidate *cand = convs->cand;
5e818b93 4220 tree convfn = cand->fn;
c73964b2 4221 tree args;
c73964b2 4222
5e818b93 4223 if (DECL_CONSTRUCTOR_P (convfn))
c73964b2 4224 {
4a90aeeb 4225 tree t = build_int_cst (build_pointer_type (DECL_CONTEXT (convfn)),
7d60be94 4226 0);
c73964b2 4227
051e6fd7 4228 args = build_tree_list (NULL_TREE, expr);
8dc2b103
NS
4229 /* We should never try to call the abstract or base constructor
4230 from here. */
4231 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (convfn)
4232 && !DECL_HAS_VTT_PARM_P (convfn));
e1b3e07d 4233 args = tree_cons (NULL_TREE, t, args);
c73964b2
MS
4234 }
4235 else
4236 args = build_this (expr);
b80f8ef3 4237 expr = build_over_call (cand, LOOKUP_NORMAL);
c73964b2
MS
4238
4239 /* If this is a constructor or a function returning an aggr type,
4240 we need to build up a TARGET_EXPR. */
5e818b93
JM
4241 if (DECL_CONSTRUCTOR_P (convfn))
4242 expr = build_cplus_new (totype, expr);
4243
4244 /* The result of the call is then used to direct-initialize the object
4245 that is the destination of the copy-initialization. [dcl.init]
4246
4247 Note that this step is not reflected in the conversion sequence;
4248 it affects the semantics when we actually perform the
4249 conversion, but is not considered during overload resolution.
c73964b2 4250
5e818b93 4251 If the target is a class, that means call a ctor. */
1b6bfcd2
MM
4252 if (IS_AGGR_TYPE (totype)
4253 && (inner >= 0 || !lvalue_p (expr)))
5e818b93 4254 {
c8094d83
MS
4255 expr = (build_temp
4256 (expr, totype,
4f8163b1
MM
4257 /* Core issue 84, now a DR, says that we don't
4258 allow UDCs for these args (which deliberately
4259 breaks copy-init of an auto_ptr<Base> from an
4260 auto_ptr<Derived>). */
4261 LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION,
4262 &diagnostic_fn));
c8094d83 4263
4f8163b1 4264 if (diagnostic_fn)
5e818b93 4265 {
4f8163b1 4266 if (fn)
c8094d83 4267 diagnostic_fn
41775162 4268 (" initializing argument %P of %qD from result of %qD",
5e818b93 4269 argnum, fn, convfn);
4f8163b1 4270 else
c8094d83 4271 diagnostic_fn
41775162 4272 (" initializing temporary from result of %qD", convfn);
5e818b93
JM
4273 }
4274 expr = build_cplus_new (totype, expr);
4275 }
c73964b2
MS
4276 return expr;
4277 }
5bd61841 4278 case ck_identity:
c73964b2 4279 if (type_unknown_p (expr))
c2ea3a40 4280 expr = instantiate_type (totype, expr, tf_error | tf_warning);
8a784e4a
NS
4281 /* Convert a constant to its underlying value, unless we are
4282 about to bind it to a reference, in which case we need to
4e8dca1c 4283 leave it as an lvalue. */
8a784e4a
NS
4284 if (inner >= 0)
4285 expr = integral_constant_value (expr);
5bd61841 4286 if (convs->check_copy_constructor_p)
644d1951 4287 check_constructor_callable (totype, expr);
391c4bc5 4288 return expr;
5bd61841 4289 case ck_ambig:
c73964b2
MS
4290 /* Call build_user_type_conversion again for the error. */
4291 return build_user_type_conversion
5bd61841 4292 (totype, convs->u.expr, LOOKUP_NORMAL);
7f85441b
KG
4293
4294 default:
4295 break;
c73964b2
MS
4296 };
4297
5bd61841
MM
4298 expr = convert_like_real (convs->u.next, expr, fn, argnum,
4299 convs->kind == ck_ref_bind ? -1 : 1,
33c25e5c
MM
4300 /*issue_conversion_warnings=*/false,
4301 c_cast_p);
c73964b2
MS
4302 if (expr == error_mark_node)
4303 return error_mark_node;
4304
5bd61841 4305 switch (convs->kind)
c73964b2 4306 {
5bd61841 4307 case ck_rvalue:
5e818b93 4308 if (! IS_AGGR_TYPE (totype))
de22184b 4309 return expr;
f4f206f4 4310 /* Else fall through. */
5bd61841
MM
4311 case ck_base:
4312 if (convs->kind == ck_base && !convs->need_temporary_p)
4f0aa416
MM
4313 {
4314 /* We are going to bind a reference directly to a base-class
4315 subobject of EXPR. */
5bd61841 4316 if (convs->check_copy_constructor_p)
644d1951 4317 check_constructor_callable (TREE_TYPE (expr), expr);
4f0aa416
MM
4318 /* Build an expression for `*((base*) &expr)'. */
4319 expr = build_unary_op (ADDR_EXPR, expr, 0);
08e17d9d
MM
4320 expr = convert_to_base (expr, build_pointer_type (totype),
4321 !c_cast_p, /*nonnull=*/true);
4f0aa416
MM
4322 expr = build_indirect_ref (expr, "implicit conversion");
4323 return expr;
4324 }
4325
5e818b93
JM
4326 /* Copy-initialization where the cv-unqualified version of the source
4327 type is the same class as, or a derived class of, the class of the
4328 destination [is treated as direct-initialization]. [dcl.init] */
4f8163b1
MM
4329 expr = build_temp (expr, totype, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING,
4330 &diagnostic_fn);
4331 if (diagnostic_fn && fn)
41775162 4332 diagnostic_fn (" initializing argument %P of %qD", argnum, fn);
5e818b93 4333 return build_cplus_new (totype, expr);
41efda8f 4334
5bd61841 4335 case ck_ref_bind:
27b8d0cd 4336 {
5e818b93 4337 tree ref_type = totype;
27b8d0cd
MM
4338
4339 /* If necessary, create a temporary. */
5bd61841 4340 if (convs->need_temporary_p || !lvalue_p (expr))
27b8d0cd 4341 {
5bd61841 4342 tree type = convs->u.next->type;
943e3ede 4343 cp_lvalue_kind lvalue = real_lvalue_p (expr);
e0d1297c
NS
4344
4345 if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
4346 {
4347 /* If the reference is volatile or non-const, we
4348 cannot create a temporary. */
e0d1297c 4349 if (lvalue & clk_bitfield)
41775162 4350 error ("cannot bind bitfield %qE to %qT",
e0d1297c
NS
4351 expr, ref_type);
4352 else if (lvalue & clk_packed)
41775162 4353 error ("cannot bind packed field %qE to %qT",
e0d1297c
NS
4354 expr, ref_type);
4355 else
41775162 4356 error ("cannot bind rvalue %qE to %qT", expr, ref_type);
e0d1297c
NS
4357 return error_mark_node;
4358 }
943e3ede
MM
4359 /* If the source is a packed field, and we must use a copy
4360 constructor, then building the target expr will require
4361 binding the field to the reference parameter to the
4362 copy constructor, and we'll end up with an infinite
4363 loop. If we can use a bitwise copy, then we'll be
4364 OK. */
c8094d83
MS
4365 if ((lvalue & clk_packed)
4366 && CLASS_TYPE_P (type)
943e3ede
MM
4367 && !TYPE_HAS_TRIVIAL_INIT_REF (type))
4368 {
4369 error ("cannot bind packed field %qE to %qT",
4370 expr, ref_type);
4371 return error_mark_node;
4372 }
c506ca22 4373 expr = build_target_expr_with_type (expr, type);
27b8d0cd
MM
4374 }
4375
4376 /* Take the address of the thing to which we will bind the
4377 reference. */
4378 expr = build_unary_op (ADDR_EXPR, expr, 1);
4379 if (expr == error_mark_node)
4380 return error_mark_node;
4381
4382 /* Convert it to a pointer to the type referred to by the
4383 reference. This will adjust the pointer if a derived to
4384 base conversion is being performed. */
c8094d83 4385 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
27b8d0cd
MM
4386 expr);
4387 /* Convert the pointer to the desired reference type. */
7993382e 4388 return build_nop (ref_type, expr);
27b8d0cd
MM
4389 }
4390
5bd61841 4391 case ck_lvalue:
c73964b2 4392 return decay_conversion (expr);
7f85441b 4393
5bd61841 4394 case ck_qual:
d9cf7c82 4395 /* Warn about deprecated conversion if appropriate. */
5e818b93 4396 string_conv_p (totype, expr, 1);
d9cf7c82 4397 break;
33c25e5c
MM
4398
4399 case ck_ptr:
4400 if (convs->base_p)
08e17d9d
MM
4401 expr = convert_to_base (expr, totype, !c_cast_p,
4402 /*nonnull=*/false);
33c25e5c
MM
4403 return build_nop (totype, expr);
4404
08e17d9d
MM
4405 case ck_pmem:
4406 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
4407 c_cast_p);
4408
7f85441b
KG
4409 default:
4410 break;
c73964b2 4411 }
5e818b93 4412 return ocp_convert (totype, expr, CONV_IMPLICIT,
37c46b43 4413 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
c73964b2
MS
4414}
4415
a90f9bb1 4416/* Build a call to __builtin_trap. */
1a55127d
JM
4417
4418static tree
a90f9bb1 4419call_builtin_trap (void)
1a55127d 4420{
6de9cd9a 4421 tree fn = implicit_built_in_decls[BUILT_IN_TRAP];
1a55127d 4422
50bc768d 4423 gcc_assert (fn != NULL);
1a55127d 4424 fn = build_call (fn, NULL_TREE);
3ff2f9d1 4425 return fn;
1a55127d
JM
4426}
4427
41efda8f 4428/* ARG is being passed to a varargs function. Perform any conversions
0a72704b 4429 required. Return the converted value. */
41efda8f
MM
4430
4431tree
94be8403 4432convert_arg_to_ellipsis (tree arg)
41efda8f 4433{
0a72704b
MM
4434 /* [expr.call]
4435
4436 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4437 standard conversions are performed. */
4438 arg = decay_conversion (arg);
4439 /* [expr.call]
4440
4441 If the argument has integral or enumeration type that is subject
4442 to the integral promotions (_conv.prom_), or a floating point
4443 type that is subject to the floating point promotion
4444 (_conv.fpprom_), the value of the argument is converted to the
4445 promoted type before the call. */
41efda8f
MM
4446 if (TREE_CODE (TREE_TYPE (arg)) == REAL_TYPE
4447 && (TYPE_PRECISION (TREE_TYPE (arg))
4448 < TYPE_PRECISION (double_type_node)))
7b6d72fc 4449 arg = convert_to_real (double_type_node, arg);
0a72704b
MM
4450 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg)))
4451 arg = perform_integral_promotions (arg);
41efda8f 4452
66543169 4453 arg = require_complete_type (arg);
c8094d83 4454
5840af0f
GB
4455 if (arg != error_mark_node
4456 && !pod_type_p (TREE_TYPE (arg)))
1b4d752a 4457 {
838dfd8a 4458 /* Undefined behavior [expr.call] 5.2.2/7. We used to just warn
a77a9a18 4459 here and do a bitwise copy, but now cp_expr_size will abort if we
c8094d83
MS
4460 try to do that.
4461 If the call appears in the context of a sizeof expression,
4462 there is no need to emit a warning, since the expression won't be
5840af0f
GB
4463 evaluated. We keep the builtin_trap just as a safety check. */
4464 if (!skip_evaluation)
d4ee4d25 4465 warning (0, "cannot pass objects of non-POD type %q#T through %<...%>; "
0cbd7506 4466 "call will abort at runtime", TREE_TYPE (arg));
a90f9bb1 4467 arg = call_builtin_trap ();
f293ce4b
RS
4468 arg = build2 (COMPOUND_EXPR, integer_type_node, arg,
4469 integer_zero_node);
1b4d752a
NS
4470 }
4471
41efda8f
MM
4472 return arg;
4473}
4474
356955cf
NS
4475/* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
4476
4477tree
94be8403 4478build_x_va_arg (tree expr, tree type)
356955cf 4479{
ea333e1c
NS
4480 if (processing_template_decl)
4481 return build_min (VA_ARG_EXPR, type, expr);
c8094d83 4482
356955cf
NS
4483 type = complete_type_or_else (type, NULL_TREE);
4484
4485 if (expr == error_mark_node || !type)
4486 return error_mark_node;
c8094d83 4487
356955cf
NS
4488 if (! pod_type_p (type))
4489 {
838dfd8a 4490 /* Undefined behavior [expr.call] 5.2.2/7. */
d4ee4d25 4491 warning (0, "cannot receive objects of non-POD type %q#T through %<...%>; "
0cbd7506 4492 "call will abort at runtime", type);
a90f9bb1 4493 expr = convert (build_pointer_type (type), null_node);
f293ce4b
RS
4494 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr),
4495 call_builtin_trap (), expr);
a90f9bb1
JM
4496 expr = build_indirect_ref (expr, NULL);
4497 return expr;
356955cf 4498 }
c8094d83 4499
356955cf
NS
4500 return build_va_arg (expr, type);
4501}
4502
ab393bf1
NB
4503/* TYPE has been given to va_arg. Apply the default conversions which
4504 would have happened when passed via ellipsis. Return the promoted
4505 type, or the passed type if there is no change. */
356955cf
NS
4506
4507tree
94be8403 4508cxx_type_promotes_to (tree type)
356955cf
NS
4509{
4510 tree promote;
ab393bf1 4511
a7e8c268
MM
4512 /* Perform the array-to-pointer and function-to-pointer
4513 conversions. */
4514 type = type_decays_to (type);
ab393bf1
NB
4515
4516 promote = type_promotes_to (type);
4517 if (same_type_p (type, promote))
4518 promote = type;
c8094d83 4519
ab393bf1 4520 return promote;
356955cf
NS
4521}
4522
41efda8f 4523/* ARG is a default argument expression being passed to a parameter of
297e73d8
MM
4524 the indicated TYPE, which is a parameter to FN. Do any required
4525 conversions. Return the converted value. */
41efda8f
MM
4526
4527tree
94be8403 4528convert_default_arg (tree type, tree arg, tree fn, int parmnum)
c73964b2 4529{
a723baf1
MM
4530 /* If the ARG is an unparsed default argument expression, the
4531 conversion cannot be performed. */
96a1e32d
NS
4532 if (TREE_CODE (arg) == DEFAULT_ARG)
4533 {
41775162 4534 error ("the default argument for parameter %d of %qD has "
a723baf1
MM
4535 "not yet been parsed",
4536 parmnum, fn);
4537 return error_mark_node;
96a1e32d
NS
4538 }
4539
297e73d8 4540 if (fn && DECL_TEMPLATE_INFO (fn))
9188c363 4541 arg = tsubst_default_argument (fn, type, arg);
297e73d8 4542
c73964b2
MS
4543 arg = break_out_target_exprs (arg);
4544
4545 if (TREE_CODE (arg) == CONSTRUCTOR)
4546 {
4038c495 4547 arg = digest_init (type, arg);
c73964b2 4548 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
c3f08228 4549 "default argument", fn, parmnum);
c73964b2
MS
4550 }
4551 else
4552 {
4553 /* This could get clobbered by the following call. */
4554 if (TREE_HAS_CONSTRUCTOR (arg))
4555 arg = copy_node (arg);
4556
4557 arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
c3f08228 4558 "default argument", fn, parmnum);
8e51619a 4559 arg = convert_for_arg_passing (type, arg);
c73964b2
MS
4560 }
4561
4562 return arg;
4563}
4564
8e51619a
JM
4565/* Returns the type which will really be used for passing an argument of
4566 type TYPE. */
4567
4568tree
94be8403 4569type_passed_as (tree type)
8e51619a
JM
4570{
4571 /* Pass classes with copy ctors by invisible reference. */
4572 if (TREE_ADDRESSABLE (type))
d8472c75
JM
4573 {
4574 type = build_reference_type (type);
4575 /* There are no other pointers to this temporary. */
4576 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
4577 }
136e64db 4578 else if (targetm.calls.promote_prototypes (type)
8e51619a 4579 && INTEGRAL_TYPE_P (type)
3f50d3dd 4580 && COMPLETE_TYPE_P (type)
560ad596
MM
4581 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4582 TYPE_SIZE (integer_type_node)))
8e51619a
JM
4583 type = integer_type_node;
4584
4585 return type;
4586}
4587
4588/* Actually perform the appropriate conversion. */
4589
4590tree
94be8403 4591convert_for_arg_passing (tree type, tree val)
8e51619a 4592{
c246c65d
JM
4593 if (val == error_mark_node)
4594 ;
8e51619a 4595 /* Pass classes with copy ctors by invisible reference. */
c246c65d
JM
4596 else if (TREE_ADDRESSABLE (type))
4597 val = build1 (ADDR_EXPR, build_reference_type (type), val);
136e64db 4598 else if (targetm.calls.promote_prototypes (type)
8e51619a 4599 && INTEGRAL_TYPE_P (type)
3f50d3dd 4600 && COMPLETE_TYPE_P (type)
560ad596
MM
4601 && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
4602 TYPE_SIZE (integer_type_node)))
0a72704b 4603 val = perform_integral_promotions (val);
104f8784
KG
4604 if (warn_missing_format_attribute)
4605 {
4606 tree rhstype = TREE_TYPE (val);
4607 const enum tree_code coder = TREE_CODE (rhstype);
4608 const enum tree_code codel = TREE_CODE (type);
4609 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
4610 && coder == codel
4611 && check_missing_format_attribute (type, rhstype))
4612 warning (OPT_Wmissing_format_attribute,
4613 "argument of function call might be a candidate for a format attribute");
4614 }
8e51619a
JM
4615 return val;
4616}
4617
a6f86b51
JM
4618/* Returns true iff FN is a function with magic varargs, i.e. ones for
4619 which no conversions at all should be done. This is true for some
4620 builtins which don't act like normal functions. */
4621
4622static bool
4623magic_varargs_p (tree fn)
4624{
4625 if (DECL_BUILT_IN (fn))
4626 switch (DECL_FUNCTION_CODE (fn))
4627 {
4628 case BUILT_IN_CLASSIFY_TYPE:
4629 case BUILT_IN_CONSTANT_P:
4630 case BUILT_IN_NEXT_ARG:
4631 case BUILT_IN_STDARG_START:
4632 case BUILT_IN_VA_START:
4633 return true;
4634
4635 default:;
4636 }
4637
4638 return false;
4639}
4640
c050ec51
JM
4641/* Subroutine of the various build_*_call functions. Overload resolution
4642 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
4643 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
4644 bitmask of various LOOKUP_* flags which apply to the call itself. */
4645
c73964b2 4646static tree
b80f8ef3 4647build_over_call (struct z_candidate *cand, int flags)
c73964b2 4648{
5ffe581d 4649 tree fn = cand->fn;
b80f8ef3 4650 tree args = cand->args;
5bd61841
MM
4651 conversion **convs = cand->convs;
4652 conversion *conv;
c73964b2
MS
4653 tree converted_args = NULL_TREE;
4654 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
5bd61841 4655 tree arg, val;
c73964b2 4656 int i = 0;
d11ad92e 4657 int is_method = 0;
c73964b2 4658
b7c707d1
MM
4659 /* In a template, there is no need to perform all of the work that
4660 is normally done. We are only interested in the type of the call
4661 expression, i.e., the return type of the function. Any semantic
4662 errors will be deferred until the template is instantiated. */
4663 if (processing_template_decl)
4664 {
4665 tree expr;
4666 tree return_type;
4667 return_type = TREE_TYPE (TREE_TYPE (fn));
f293ce4b 4668 expr = build3 (CALL_EXPR, return_type, fn, args, NULL_TREE);
c8b2e872
MM
4669 if (TREE_THIS_VOLATILE (fn) && cfun)
4670 current_function_returns_abnormally = 1;
b7c707d1
MM
4671 if (!VOID_TYPE_P (return_type))
4672 require_complete_type (return_type);
4673 return convert_from_reference (expr);
4674 }
4675
5ffe581d
JM
4676 /* Give any warnings we noticed during overload resolution. */
4677 if (cand->warnings)
5bd61841
MM
4678 {
4679 struct candidate_warning *w;
4680 for (w = cand->warnings; w; w = w->next)
4681 joust (cand, w->loser, 1);
4682 }
5ffe581d
JM
4683
4684 if (DECL_FUNCTION_MEMBER_P (fn))
3dfa3500
KL
4685 {
4686 /* If FN is a template function, two cases must be considered.
4687 For example:
4688
4689 struct A {
4690 protected:
4691 template <class T> void f();
4692 };
4693 template <class T> struct B {
4694 protected:
4695 void g();
4696 };
4697 struct C : A, B<int> {
4698 using A::f; // #1
4699 using B<int>::g; // #2
4700 };
4701
4702 In case #1 where `A::f' is a member template, DECL_ACCESS is
4703 recorded in the primary template but not in its specialization.
4704 We check access of FN using its primary template.
4705
4706 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
4707 because it is a member of class template B, DECL_ACCESS is
4708 recorded in the specialization `B<int>::g'. We cannot use its
4709 primary template because `B<T>::g' and `B<int>::g' may have
4710 different access. */
4711 if (DECL_TEMPLATE_INFO (fn)
c7222c02 4712 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
3dfa3500
KL
4713 perform_or_defer_access_check (cand->access_path,
4714 DECL_TI_TEMPLATE (fn));
4715 else
4716 perform_or_defer_access_check (cand->access_path, fn);
4717 }
5ffe581d 4718
c73964b2 4719 if (args && TREE_CODE (args) != TREE_LIST)
051e6fd7 4720 args = build_tree_list (NULL_TREE, args);
c73964b2
MS
4721 arg = args;
4722
4723 /* The implicit parameters to a constructor are not considered by overload
4724 resolution, and must be of the proper type. */
4725 if (DECL_CONSTRUCTOR_P (fn))
4726 {
e1b3e07d 4727 converted_args = tree_cons (NULL_TREE, TREE_VALUE (arg), converted_args);
c73964b2
MS
4728 arg = TREE_CHAIN (arg);
4729 parm = TREE_CHAIN (parm);
8dc2b103
NS
4730 /* We should never try to call the abstract constructor. */
4731 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
c8094d83 4732
e0fff4b3 4733 if (DECL_HAS_VTT_PARM_P (fn))
c73964b2 4734 {
e1b3e07d 4735 converted_args = tree_cons
c73964b2
MS
4736 (NULL_TREE, TREE_VALUE (arg), converted_args);
4737 arg = TREE_CHAIN (arg);
4738 parm = TREE_CHAIN (parm);
4739 }
c8094d83 4740 }
c73964b2
MS
4741 /* Bypass access control for 'this' parameter. */
4742 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4743 {
d11ad92e
MS
4744 tree parmtype = TREE_VALUE (parm);
4745 tree argtype = TREE_TYPE (TREE_VALUE (arg));
4ba126e4 4746 tree converted_arg;
3baab484 4747 tree base_binfo;
c8094d83 4748
5bd61841 4749 if (convs[i]->bad_p)
c4f73174 4750 pedwarn ("passing %qT as %<this%> argument of %q#D discards qualifiers",
0cbd7506 4751 TREE_TYPE (argtype), fn);
91063b51 4752
51ddb82e
JM
4753 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
4754 X is called for an object that is not of type X, or of a type
4755 derived from X, the behavior is undefined.
4756
0cbd7506 4757 So we can assume that anything passed as 'this' is non-null, and
51ddb82e 4758 optimize accordingly. */
50bc768d 4759 gcc_assert (TREE_CODE (parmtype) == POINTER_TYPE);
4ba126e4 4760 /* Convert to the base in which the function was declared. */
50bc768d 4761 gcc_assert (cand->conversion_path != NULL_TREE);
4ba126e4
MM
4762 converted_arg = build_base_path (PLUS_EXPR,
4763 TREE_VALUE (arg),
4764 cand->conversion_path,
4765 1);
bd16cb25 4766 /* Check that the base class is accessible. */
c8094d83 4767 if (!accessible_base_p (TREE_TYPE (argtype),
18e4be85 4768 BINFO_TYPE (cand->conversion_path), true))
41775162 4769 error ("%qT is not an accessible base of %qT",
bd16cb25
MM
4770 BINFO_TYPE (cand->conversion_path),
4771 TREE_TYPE (argtype));
3baab484 4772 /* If fn was found by a using declaration, the conversion path
0cbd7506
MS
4773 will be to the derived class, not the base declaring fn. We
4774 must convert from derived to base. */
3baab484 4775 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
18e4be85 4776 TREE_TYPE (parmtype), ba_unique, NULL);
3baab484
NS
4777 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
4778 base_binfo, 1);
c8094d83 4779
4ba126e4 4780 converted_args = tree_cons (NULL_TREE, converted_arg, converted_args);
c73964b2
MS
4781 parm = TREE_CHAIN (parm);
4782 arg = TREE_CHAIN (arg);
4783 ++i;
d11ad92e 4784 is_method = 1;
c73964b2
MS
4785 }
4786
eb66be0e 4787 for (; arg && parm;
c73964b2
MS
4788 parm = TREE_CHAIN (parm), arg = TREE_CHAIN (arg), ++i)
4789 {
4790 tree type = TREE_VALUE (parm);
d11ad92e 4791
5bd61841 4792 conv = convs[i];
72a08131
JM
4793 val = convert_like_with_context
4794 (conv, TREE_VALUE (arg), fn, i - is_method);
c73964b2 4795
8e51619a 4796 val = convert_for_arg_passing (type, val);
e1b3e07d 4797 converted_args = tree_cons (NULL_TREE, val, converted_args);
c73964b2
MS
4798 }
4799
4800 /* Default arguments */
c3f08228 4801 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
c8094d83
MS
4802 converted_args
4803 = tree_cons (NULL_TREE,
4804 convert_default_arg (TREE_VALUE (parm),
e1b3e07d 4805 TREE_PURPOSE (parm),
c3f08228 4806 fn, i - is_method),
e1b3e07d 4807 converted_args);
c73964b2
MS
4808
4809 /* Ellipsis */
4810 for (; arg; arg = TREE_CHAIN (arg))
a6f86b51
JM
4811 {
4812 tree a = TREE_VALUE (arg);
4813 if (magic_varargs_p (fn))
4814 /* Do no conversions for magic varargs. */;
4815 else
4816 a = convert_arg_to_ellipsis (a);
4817 converted_args = tree_cons (NULL_TREE, a, converted_args);
4818 }
c73964b2
MS
4819
4820 converted_args = nreverse (converted_args);
4821
dd66b8e8 4822 check_function_arguments (TYPE_ATTRIBUTES (TREE_TYPE (fn)),
10a22b11 4823 converted_args, TYPE_ARG_TYPES (TREE_TYPE (fn)));
61cd552e 4824
c11b6f21
MS
4825 /* Avoid actually calling copy constructors and copy assignment operators,
4826 if possible. */
56ae6d77
JM
4827
4828 if (! flag_elide_constructors)
4829 /* Do things the hard way. */;
5bd61841 4830 else if (cand->num_convs == 1 && DECL_COPY_CONSTRUCTOR_P (fn))
c11b6f21 4831 {
eb66be0e 4832 tree targ;
e0fff4b3 4833 arg = skip_artificial_parms_for (fn, converted_args);
67437d5b 4834 arg = TREE_VALUE (arg);
c11b6f21
MS
4835
4836 /* Pull out the real argument, disregarding const-correctness. */
eb66be0e
MS
4837 targ = arg;
4838 while (TREE_CODE (targ) == NOP_EXPR
4839 || TREE_CODE (targ) == NON_LVALUE_EXPR
4840 || TREE_CODE (targ) == CONVERT_EXPR)
4841 targ = TREE_OPERAND (targ, 0);
4842 if (TREE_CODE (targ) == ADDR_EXPR)
4843 {
4844 targ = TREE_OPERAND (targ, 0);
c8094d83 4845 if (!same_type_ignoring_top_level_qualifiers_p
9edc3913 4846 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
c11b6f21
MS
4847 targ = NULL_TREE;
4848 }
eb66be0e
MS
4849 else
4850 targ = NULL_TREE;
c11b6f21
MS
4851
4852 if (targ)
4853 arg = targ;
4854 else
4855 arg = build_indirect_ref (arg, 0);
4856
bd6dd845
MS
4857 /* [class.copy]: the copy constructor is implicitly defined even if
4858 the implementation elided its use. */
4859 if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
4860 mark_used (fn);
4861
c11b6f21 4862 /* If we're creating a temp and we already have one, don't create a
0cbd7506
MS
4863 new one. If we're not creating a temp but we get one, use
4864 INIT_EXPR to collapse the temp into our target. Otherwise, if the
4865 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
4866 temp or an INIT_EXPR otherwise. */
c11b6f21
MS
4867 if (integer_zerop (TREE_VALUE (args)))
4868 {
c246c65d 4869 if (TREE_CODE (arg) == TARGET_EXPR)
c11b6f21
MS
4870 return arg;
4871 else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
c506ca22 4872 return build_target_expr_with_type (arg, DECL_CONTEXT (fn));
c11b6f21 4873 }
c246c65d 4874 else if (TREE_CODE (arg) == TARGET_EXPR
a77a9a18 4875 || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
c11b6f21
MS
4876 {
4877 tree to = stabilize_reference
4878 (build_indirect_ref (TREE_VALUE (args), 0));
a59ca936 4879
f293ce4b 4880 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
6de9cd9a 4881 return val;
c11b6f21
MS
4882 }
4883 }
596ea4e5 4884 else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
271e6f02 4885 && copy_fn_p (fn)
4f1c5b7d 4886 && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
c11b6f21
MS
4887 {
4888 tree to = stabilize_reference
4889 (build_indirect_ref (TREE_VALUE (converted_args), 0));
a0c68737
NS
4890 tree type = TREE_TYPE (to);
4891 tree as_base = CLASSTYPE_AS_BASE (type);
a59ca936 4892
1d528e29 4893 arg = TREE_VALUE (TREE_CHAIN (converted_args));
a0c68737 4894 if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
1d528e29
RH
4895 {
4896 arg = build_indirect_ref (arg, 0);
f293ce4b 4897 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
1d528e29 4898 }
a0c68737
NS
4899 else
4900 {
1d528e29
RH
4901 /* We must only copy the non-tail padding parts.
4902 Use __builtin_memcpy for the bitwise copy. */
4903
4904 tree args, t;
4905
4906 args = tree_cons (NULL, TYPE_SIZE_UNIT (as_base), NULL);
4907 args = tree_cons (NULL, arg, args);
4908 t = build_unary_op (ADDR_EXPR, to, 0);
4909 args = tree_cons (NULL, t, args);
4910 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
4911 t = build_call (t, args);
4912
4913 t = convert (TREE_TYPE (TREE_VALUE (args)), t);
4914 val = build_indirect_ref (t, 0);
a0c68737 4915 }
c8094d83 4916
c11b6f21
MS
4917 return val;
4918 }
4919
bd6dd845
MS
4920 mark_used (fn);
4921
6eabb241 4922 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
c73964b2
MS
4923 {
4924 tree t, *p = &TREE_VALUE (converted_args);
338d90b8 4925 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (*p)),
e93ee644 4926 DECL_CONTEXT (fn),
338d90b8 4927 ba_any, NULL);
50bc768d 4928 gcc_assert (binfo && binfo != error_mark_node);
c8094d83 4929
338d90b8 4930 *p = build_base_path (PLUS_EXPR, *p, binfo, 1);
c73964b2
MS
4931 if (TREE_SIDE_EFFECTS (*p))
4932 *p = save_expr (*p);
4933 t = build_pointer_type (TREE_TYPE (fn));
60c87482
BM
4934 if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
4935 fn = build_java_interface_fn_ref (fn, *p);
4936 else
0f59171d 4937 fn = build_vfn_ref (*p, DECL_VINDEX (fn));
c73964b2
MS
4938 TREE_TYPE (fn) = t;
4939 }
4940 else if (DECL_INLINE (fn))
4941 fn = inline_conversion (fn);
4942 else
4943 fn = build_addr_func (fn);
4944
d522060b 4945 return build_cxx_call (fn, converted_args);
b2dd096b
MM
4946}
4947
d522060b 4948/* Build and return a call to FN, using ARGS. This function performs
b2dd096b
MM
4949 no overload resolution, conversion, or other high-level
4950 operations. */
4951
4952tree
d522060b 4953build_cxx_call (tree fn, tree args)
b2dd096b
MM
4954{
4955 tree fndecl;
4956
d522060b 4957 fn = build_call (fn, args);
b2dd096b
MM
4958
4959 /* If this call might throw an exception, note that fact. */
4960 fndecl = get_callee_fndecl (fn);
c8094d83 4961 if ((!fndecl || !TREE_NOTHROW (fndecl))
374ca7f7
MM
4962 && at_function_scope_p ()
4963 && cfun)
b2dd096b
MM
4964 cp_function_chain->can_throw = 1;
4965
4966 /* Some built-in function calls will be evaluated at compile-time in
4967 fold (). */
455f19cb 4968 fn = fold_if_not_in_template (fn);
b2dd096b 4969
2c92b94d 4970 if (VOID_TYPE_P (TREE_TYPE (fn)))
c73964b2 4971 return fn;
b2dd096b 4972
b82b76c6 4973 fn = require_complete_type (fn);
2c92b94d
NS
4974 if (fn == error_mark_node)
4975 return error_mark_node;
b2dd096b 4976
c73964b2
MS
4977 if (IS_AGGR_TYPE (TREE_TYPE (fn)))
4978 fn = build_cplus_new (TREE_TYPE (fn), fn);
b82b76c6 4979 return convert_from_reference (fn);
c73964b2
MS
4980}
4981
e2500fed 4982static GTY(()) tree java_iface_lookup_fn;
60c87482
BM
4983
4984/* Make an expression which yields the address of the Java interface
4985 method FN. This is achieved by generating a call to libjava's
4986 _Jv_LookupInterfaceMethodIdx(). */
4987
4988static tree
94be8403 4989build_java_interface_fn_ref (tree fn, tree instance)
60c87482
BM
4990{
4991 tree lookup_args, lookup_fn, method, idx;
4992 tree klass_ref, iface, iface_ref;
4993 int i;
c8094d83 4994
60c87482
BM
4995 if (!java_iface_lookup_fn)
4996 {
4997 tree endlink = build_void_list_node ();
4998 tree t = tree_cons (NULL_TREE, ptr_type_node,
4999 tree_cons (NULL_TREE, ptr_type_node,
5000 tree_cons (NULL_TREE, java_int_type_node,
5001 endlink)));
c8094d83 5002 java_iface_lookup_fn
60c87482
BM
5003 = builtin_function ("_Jv_LookupInterfaceMethodIdx",
5004 build_function_type (ptr_type_node, t),
6a2dd09a 5005 0, NOT_BUILT_IN, NULL, NULL_TREE);
60c87482
BM
5006 }
5007
c8094d83 5008 /* Look up the pointer to the runtime java.lang.Class object for `instance'.
00a17e31 5009 This is the first entry in the vtable. */
c8094d83 5010 klass_ref = build_vtbl_ref (build_indirect_ref (instance, 0),
60c87482
BM
5011 integer_zero_node);
5012
00a17e31 5013 /* Get the java.lang.Class pointer for the interface being called. */
60c87482 5014 iface = DECL_CONTEXT (fn);
86ac0575 5015 iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
60c87482
BM
5016 if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
5017 || DECL_CONTEXT (iface_ref) != iface)
5018 {
c8094d83 5019 error ("could not find class$ field in java interface type %qT",
60c87482
BM
5020 iface);
5021 return error_mark_node;
5022 }
6de9cd9a
DN
5023 iface_ref = build_address (iface_ref);
5024 iface_ref = convert (build_pointer_type (iface), iface_ref);
c8094d83 5025
00a17e31 5026 /* Determine the itable index of FN. */
60c87482
BM
5027 i = 1;
5028 for (method = TYPE_METHODS (iface); method; method = TREE_CHAIN (method))
5029 {
5030 if (!DECL_VIRTUAL_P (method))
0cbd7506 5031 continue;
60c87482 5032 if (fn == method)
0cbd7506 5033 break;
60c87482
BM
5034 i++;
5035 }
7d60be94 5036 idx = build_int_cst (NULL_TREE, i);
60c87482 5037
c8094d83 5038 lookup_args = tree_cons (NULL_TREE, klass_ref,
60c87482
BM
5039 tree_cons (NULL_TREE, iface_ref,
5040 build_tree_list (NULL_TREE, idx)));
c8094d83 5041 lookup_fn = build1 (ADDR_EXPR,
60c87482
BM
5042 build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
5043 java_iface_lookup_fn);
f293ce4b 5044 return build3 (CALL_EXPR, ptr_type_node, lookup_fn, lookup_args, NULL_TREE);
60c87482
BM
5045}
5046
298d6f60 5047/* Returns the value to use for the in-charge parameter when making a
8dc2b103 5048 call to a function with the indicated NAME.
c8094d83 5049
8dc2b103 5050 FIXME:Can't we find a neater way to do this mapping? */
298d6f60
MM
5051
5052tree
94be8403 5053in_charge_arg_for_name (tree name)
298d6f60 5054{
8dc2b103 5055 if (name == base_ctor_identifier
298d6f60
MM
5056 || name == base_dtor_identifier)
5057 return integer_zero_node;
5058 else if (name == complete_ctor_identifier)
5059 return integer_one_node;
5060 else if (name == complete_dtor_identifier)
5061 return integer_two_node;
5062 else if (name == deleting_dtor_identifier)
5063 return integer_three_node;
5064
5065 /* This function should only be called with one of the names listed
5066 above. */
8dc2b103 5067 gcc_unreachable ();
298d6f60
MM
5068 return NULL_TREE;
5069}
5070
4ba126e4
MM
5071/* Build a call to a constructor, destructor, or an assignment
5072 operator for INSTANCE, an expression with class type. NAME
5073 indicates the special member function to call; ARGS are the
5074 arguments. BINFO indicates the base of INSTANCE that is to be
5075 passed as the `this' parameter to the member function called.
5076
5077 FLAGS are the LOOKUP_* flags to use when processing the call.
5078
5079 If NAME indicates a complete object constructor, INSTANCE may be
5080 NULL_TREE. In this case, the caller will call build_cplus_new to
5081 store the newly constructed object into a VAR_DECL. */
5082
5083tree
c8094d83 5084build_special_member_call (tree instance, tree name, tree args,
4ba126e4
MM
5085 tree binfo, int flags)
5086{
5087 tree fns;
5088 /* The type of the subobject to be constructed or destroyed. */
5089 tree class_type;
5090
50bc768d
NS
5091 gcc_assert (name == complete_ctor_identifier
5092 || name == base_ctor_identifier
5093 || name == complete_dtor_identifier
5094 || name == base_dtor_identifier
5095 || name == deleting_dtor_identifier
5096 || name == ansi_assopname (NOP_EXPR));
cad7e87b
NS
5097 if (TYPE_P (binfo))
5098 {
5099 /* Resolve the name. */
5100 if (!complete_type_or_else (binfo, NULL_TREE))
5101 return error_mark_node;
5102
5103 binfo = TYPE_BINFO (binfo);
5104 }
c8094d83 5105
50bc768d 5106 gcc_assert (binfo != NULL_TREE);
4ba126e4
MM
5107
5108 class_type = BINFO_TYPE (binfo);
5109
5110 /* Handle the special case where INSTANCE is NULL_TREE. */
5111 if (name == complete_ctor_identifier && !instance)
5112 {
7d60be94 5113 instance = build_int_cst (build_pointer_type (class_type), 0);
4ba126e4
MM
5114 instance = build1 (INDIRECT_REF, class_type, instance);
5115 }
22ed7e5f
MM
5116 else
5117 {
c8094d83 5118 if (name == complete_dtor_identifier
22ed7e5f
MM
5119 || name == base_dtor_identifier
5120 || name == deleting_dtor_identifier)
50bc768d 5121 gcc_assert (args == NULL_TREE);
22ed7e5f 5122
4c2a4b90 5123 /* Convert to the base class, if necessary. */
c8094d83 5124 if (!same_type_ignoring_top_level_qualifiers_p
22ed7e5f 5125 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
4c2a4b90
MM
5126 {
5127 if (name != ansi_assopname (NOP_EXPR))
5128 /* For constructors and destructors, either the base is
5129 non-virtual, or it is virtual but we are doing the
5130 conversion from a constructor or destructor for the
5131 complete object. In either case, we can convert
5132 statically. */
5133 instance = convert_to_base_statically (instance, binfo);
5134 else
5135 /* However, for assignment operators, we must convert
5136 dynamically if the base is virtual. */
5137 instance = build_base_path (PLUS_EXPR, instance,
5138 binfo, /*nonnull=*/1);
5139 }
22ed7e5f 5140 }
c8094d83 5141
50bc768d 5142 gcc_assert (instance != NULL_TREE);
4ba126e4 5143
4ba126e4 5144 fns = lookup_fnfields (binfo, name, 1);
c8094d83 5145
4ba126e4
MM
5146 /* When making a call to a constructor or destructor for a subobject
5147 that uses virtual base classes, pass down a pointer to a VTT for
5148 the subobject. */
5149 if ((name == base_ctor_identifier
5150 || name == base_dtor_identifier)
5775a06a 5151 && CLASSTYPE_VBASECLASSES (class_type))
4ba126e4
MM
5152 {
5153 tree vtt;
5154 tree sub_vtt;
5155
5156 /* If the current function is a complete object constructor
5157 or destructor, then we fetch the VTT directly.
5158 Otherwise, we look it up using the VTT we were given. */
548502d3 5159 vtt = TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type));
4ba126e4 5160 vtt = decay_conversion (vtt);
f293ce4b
RS
5161 vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
5162 build2 (EQ_EXPR, boolean_type_node,
5163 current_in_charge_parm, integer_zero_node),
5164 current_vtt_parm,
5165 vtt);
50bc768d 5166 gcc_assert (BINFO_SUBVTT_INDEX (binfo));
f293ce4b
RS
5167 sub_vtt = build2 (PLUS_EXPR, TREE_TYPE (vtt), vtt,
5168 BINFO_SUBVTT_INDEX (binfo));
4ba126e4
MM
5169
5170 args = tree_cons (NULL_TREE, sub_vtt, args);
5171 }
5172
c8094d83
MS
5173 return build_new_method_call (instance, fns, args,
5174 TYPE_BINFO (BINFO_TYPE (binfo)),
22ed7e5f 5175 flags);
4ba126e4
MM
5176}
5177
a723baf1
MM
5178/* Return the NAME, as a C string. The NAME indicates a function that
5179 is a member of TYPE. *FREE_P is set to true if the caller must
c8094d83 5180 free the memory returned.
a723baf1
MM
5181
5182 Rather than go through all of this, we should simply set the names
5183 of constructors and destructors appropriately, and dispense with
5184 ctor_identifier, dtor_identifier, etc. */
5185
5186static char *
5187name_as_c_string (tree name, tree type, bool *free_p)
5188{
5189 char *pretty_name;
5190
5191 /* Assume that we will not allocate memory. */
5192 *free_p = false;
5193 /* Constructors and destructors are special. */
5194 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
5195 {
c8094d83 5196 pretty_name
a723baf1
MM
5197 = (char *) IDENTIFIER_POINTER (constructor_name (type));
5198 /* For a destructor, add the '~'. */
5199 if (name == complete_dtor_identifier
5200 || name == base_dtor_identifier
5201 || name == deleting_dtor_identifier)
5202 {
5203 pretty_name = concat ("~", pretty_name, NULL);
5204 /* Remember that we need to free the memory allocated. */
5205 *free_p = true;
5206 }
5207 }
144e414d
MM
5208 else if (IDENTIFIER_TYPENAME_P (name))
5209 {
5210 pretty_name = concat ("operator ",
5211 type_as_string (TREE_TYPE (name),
5212 TFF_PLAIN_IDENTIFIER),
5213 NULL);
5214 /* Remember that we need to free the memory allocated. */
5215 *free_p = true;
5216 }
a723baf1
MM
5217 else
5218 pretty_name = (char *) IDENTIFIER_POINTER (name);
5219
5220 return pretty_name;
5221}
5222
4ba126e4
MM
5223/* Build a call to "INSTANCE.FN (ARGS)". */
5224
5225tree
c8094d83 5226build_new_method_call (tree instance, tree fns, tree args,
4ba126e4 5227 tree conversion_path, int flags)
c73964b2
MS
5228{
5229 struct z_candidate *candidates = 0, *cand;
386b8a85 5230 tree explicit_targs = NULL_TREE;
4ba126e4
MM
5231 tree basetype = NULL_TREE;
5232 tree access_binfo;
5233 tree optype;
5234 tree mem_args = NULL_TREE, instance_ptr;
a723baf1 5235 tree name;
71a19881 5236 tree user_args;
3c8c2a0a 5237 tree call;
a723baf1
MM
5238 tree fn;
5239 tree class_type;
c32381b1 5240 int template_only = 0;
436f8a4c 5241 bool any_viable_p;
d17811fd
MM
5242 tree orig_instance;
5243 tree orig_fns;
5244 tree orig_args;
5bd61841 5245 void *p;
824b9a4c 5246
50bc768d 5247 gcc_assert (instance != NULL_TREE);
8f032717 5248
c8094d83 5249 if (error_operand_p (instance)
a723baf1 5250 || error_operand_p (fns)
4ba126e4
MM
5251 || args == error_mark_node)
5252 return error_mark_node;
386b8a85 5253
d17811fd
MM
5254 orig_instance = instance;
5255 orig_fns = fns;
5256 orig_args = args;
5257
5258 if (processing_template_decl)
5259 {
5260 instance = build_non_dependent_expr (instance);
5261 if (!BASELINK_P (fns)
5262 && TREE_CODE (fns) != PSEUDO_DTOR_EXPR
5263 && TREE_TYPE (fns) != unknown_type_node)
5264 fns = build_non_dependent_expr (fns);
5265 args = build_non_dependent_args (orig_args);
5266 }
5267
4ba126e4 5268 /* Process the argument list. */
9eb71d8c 5269 user_args = args;
86e6f22f 5270 args = resolve_args (args);
86e6f22f
JM
5271 if (args == error_mark_node)
5272 return error_mark_node;
d11ad92e 5273
4ba126e4
MM
5274 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
5275 instance_ptr = build_this (instance);
5276
5277 if (!BASELINK_P (fns))
c73964b2 5278 {
41775162 5279 error ("call to non-function %qD", fns);
4ba126e4
MM
5280 return error_mark_node;
5281 }
c73964b2 5282
4ba126e4
MM
5283 if (!conversion_path)
5284 conversion_path = BASELINK_BINFO (fns);
5285 access_binfo = BASELINK_ACCESS_BINFO (fns);
5286 optype = BASELINK_OPTYPE (fns);
5287 fns = BASELINK_FUNCTIONS (fns);
c73964b2 5288
4ba126e4
MM
5289 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
5290 {
5291 explicit_targs = TREE_OPERAND (fns, 1);
5292 fns = TREE_OPERAND (fns, 0);
5293 template_only = 1;
c73964b2
MS
5294 }
5295
50bc768d
NS
5296 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
5297 || TREE_CODE (fns) == TEMPLATE_DECL
5298 || TREE_CODE (fns) == OVERLOAD);
c73964b2 5299
4ba126e4
MM
5300 /* XXX this should be handled before we get here. */
5301 if (! IS_AGGR_TYPE (basetype))
c73964b2 5302 {
4ba126e4 5303 if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
41775162 5304 error ("request for member %qD in %qE, which is of non-aggregate "
0cbd7506 5305 "type %qT",
4ba126e4 5306 fns, instance, basetype);
c73964b2 5307
4ba126e4 5308 return error_mark_node;
c73964b2
MS
5309 }
5310
a723baf1
MM
5311 fn = get_first_fn (fns);
5312 name = DECL_NAME (fn);
9eb71d8c 5313
298d6f60 5314 if (IDENTIFIER_CTOR_OR_DTOR_P (name))
9eb71d8c 5315 {
4ba126e4
MM
5316 /* Callers should explicitly indicate whether they want to construct
5317 the complete object or just the part without virtual bases. */
50bc768d 5318 gcc_assert (name != ctor_identifier);
4ba126e4 5319 /* Similarly for destructors. */
50bc768d 5320 gcc_assert (name != dtor_identifier);
9eb71d8c 5321 }
c73964b2 5322
a723baf1
MM
5323 /* It's OK to call destructors on cv-qualified objects. Therefore,
5324 convert the INSTANCE_PTR to the unqualified type, if necessary. */
5325 if (DECL_DESTRUCTOR_P (fn))
c73964b2 5326 {
a723baf1
MM
5327 tree type = build_pointer_type (basetype);
5328 if (!same_type_p (type, TREE_TYPE (instance_ptr)))
7993382e 5329 instance_ptr = build_nop (type, instance_ptr);
a723baf1 5330 }
4ba126e4 5331
a723baf1
MM
5332 class_type = (conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE);
5333 mem_args = tree_cons (NULL_TREE, instance_ptr, args);
98c1c668 5334
5bd61841
MM
5335 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5336 p = conversion_obstack_alloc (0);
5337
a723baf1
MM
5338 for (fn = fns; fn; fn = OVL_NEXT (fn))
5339 {
5340 tree t = OVL_CURRENT (fn);
5341 tree this_arglist;
71a19881 5342
a723baf1
MM
5343 /* We can end up here for copy-init of same or base class. */
5344 if ((flags & LOOKUP_ONLYCONVERTING)
5345 && DECL_NONCONVERTING_P (t))
5346 continue;
98c1c668 5347
a723baf1
MM
5348 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
5349 this_arglist = mem_args;
5350 else
5351 this_arglist = args;
5352
5353 if (TREE_CODE (t) == TEMPLATE_DECL)
7993382e 5354 /* A member template. */
c8094d83 5355 add_template_candidate (&candidates, t,
7993382e
MM
5356 class_type,
5357 explicit_targs,
5358 this_arglist, optype,
c8094d83 5359 access_binfo,
7993382e
MM
5360 conversion_path,
5361 flags,
5362 DEDUCE_CALL);
a723baf1 5363 else if (! template_only)
c8094d83 5364 add_function_candidate (&candidates, t,
7993382e
MM
5365 class_type,
5366 this_arglist,
5367 access_binfo,
5368 conversion_path,
5369 flags);
c73964b2
MS
5370 }
5371
436f8a4c
MM
5372 candidates = splice_viable (candidates, pedantic, &any_viable_p);
5373 if (!any_viable_p)
c73964b2 5374 {
d0f062fb 5375 if (!COMPLETE_TYPE_P (basetype))
7a228918 5376 cxx_incomplete_type_error (instance_ptr, basetype);
c27be9b9 5377 else
a723baf1
MM
5378 {
5379 char *pretty_name;
5380 bool free_p;
5381
5382 pretty_name = name_as_c_string (name, basetype, &free_p);
41775162 5383 error ("no matching function for call to %<%T::%s(%A)%#V%>",
a723baf1
MM
5384 basetype, pretty_name, user_args,
5385 TREE_TYPE (TREE_TYPE (instance_ptr)));
5386 if (free_p)
5387 free (pretty_name);
5388 }
c73964b2 5389 print_z_candidates (candidates);
5bd61841 5390 call = error_mark_node;
c73964b2 5391 }
5bd61841 5392 else
c73964b2 5393 {
5bd61841
MM
5394 cand = tourney (candidates);
5395 if (cand == 0)
5396 {
5397 char *pretty_name;
5398 bool free_p;
a723baf1 5399
5bd61841 5400 pretty_name = name_as_c_string (name, basetype, &free_p);
41775162 5401 error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
5bd61841
MM
5402 user_args);
5403 print_z_candidates (candidates);
5404 if (free_p)
5405 free (pretty_name);
5406 call = error_mark_node;
5407 }
5408 else
5409 {
585b44d3
NS
5410 if (!(flags & LOOKUP_NONVIRTUAL)
5411 && DECL_PURE_VIRTUAL_P (cand->fn)
5bd61841
MM
5412 && instance == current_class_ref
5413 && (DECL_CONSTRUCTOR_P (current_function_decl)
585b44d3
NS
5414 || DECL_DESTRUCTOR_P (current_function_decl)))
5415 /* This is not an error, it is runtime undefined
5995ebfb 5416 behavior. */
c8094d83 5417 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
41775162
GDR
5418 "abstract virtual %q#D called from constructor"
5419 : "abstract virtual %q#D called from destructor"),
585b44d3 5420 cand->fn);
c8094d83 5421
5bd61841
MM
5422 if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
5423 && is_dummy_object (instance_ptr))
5424 {
c8094d83 5425 error ("cannot call member function %qD without object",
5bd61841
MM
5426 cand->fn);
5427 call = error_mark_node;
5428 }
5429 else
5430 {
5431 if (DECL_VINDEX (cand->fn) && ! (flags & LOOKUP_NONVIRTUAL)
5432 && resolves_to_fixed_type_p (instance, 0))
5433 flags |= LOOKUP_NONVIRTUAL;
5434
5435 call = build_over_call (cand, flags);
5436
5437 /* In an expression of the form `a->f()' where `f' turns
5438 out to be a static member function, `a' is
5439 none-the-less evaluated. */
5440 if (TREE_CODE (TREE_TYPE (cand->fn)) != METHOD_TYPE
c8094d83 5441 && !is_dummy_object (instance_ptr)
5bd61841 5442 && TREE_SIDE_EFFECTS (instance))
c8094d83 5443 call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
f293ce4b 5444 instance, call);
5bd61841
MM
5445 }
5446 }
c73964b2
MS
5447 }
5448
5bd61841
MM
5449 if (processing_template_decl && call != error_mark_node)
5450 call = (build_min_non_dep
5451 (CALL_EXPR, call,
44de5aeb 5452 build_min_nt (COMPONENT_REF, orig_instance, orig_fns, NULL_TREE),
6de9cd9a 5453 orig_args, NULL_TREE));
c73964b2 5454
5bd61841
MM
5455 /* Free all the conversions we allocated. */
5456 obstack_free (&conversion_obstack, p);
c73964b2 5457
3c8c2a0a 5458 return call;
c73964b2
MS
5459}
5460
94be8403 5461/* Returns true iff standard conversion sequence ICS1 is a proper
ceab47eb 5462 subsequence of ICS2. */
c73964b2 5463
94be8403 5464static bool
5bd61841 5465is_subseq (conversion *ics1, conversion *ics2)
c73964b2 5466{
ceab47eb
MM
5467 /* We can assume that a conversion of the same code
5468 between the same types indicates a subsequence since we only get
5469 here if the types we are converting from are the same. */
549121cd 5470
5bd61841
MM
5471 while (ics1->kind == ck_rvalue
5472 || ics1->kind == ck_lvalue)
5473 ics1 = ics1->u.next;
c73964b2 5474
ceab47eb 5475 while (1)
c73964b2 5476 {
5bd61841
MM
5477 while (ics2->kind == ck_rvalue
5478 || ics2->kind == ck_lvalue)
5479 ics2 = ics2->u.next;
c73964b2 5480
5bd61841
MM
5481 if (ics2->kind == ck_user
5482 || ics2->kind == ck_ambig
5483 || ics2->kind == ck_identity)
ceab47eb
MM
5484 /* At this point, ICS1 cannot be a proper subsequence of
5485 ICS2. We can get a USER_CONV when we are comparing the
5486 second standard conversion sequence of two user conversion
5487 sequences. */
94be8403 5488 return false;
f62dbf03 5489
5bd61841 5490 ics2 = ics2->u.next;
653cc74a 5491
5bd61841
MM
5492 if (ics2->kind == ics1->kind
5493 && same_type_p (ics2->type, ics1->type)
c8094d83 5494 && same_type_p (ics2->u.next->type,
5bd61841 5495 ics1->u.next->type))
94be8403 5496 return true;
f62dbf03
JM
5497 }
5498}
5499
838dfd8a 5500/* Returns nonzero iff DERIVED is derived from BASE. The inputs may
ceab47eb 5501 be any _TYPE nodes. */
c73964b2 5502
94be8403
GDR
5503bool
5504is_properly_derived_from (tree derived, tree base)
c73964b2 5505{
ceab47eb
MM
5506 if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived))
5507 || !IS_AGGR_TYPE_CODE (TREE_CODE (base)))
94be8403 5508 return false;
c73964b2 5509
ceab47eb
MM
5510 /* We only allow proper derivation here. The DERIVED_FROM_P macro
5511 considers every class derived from itself. */
9edc3913 5512 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
ceab47eb
MM
5513 && DERIVED_FROM_P (base, derived));
5514}
d11ad92e 5515
ceab47eb
MM
5516/* We build the ICS for an implicit object parameter as a pointer
5517 conversion sequence. However, such a sequence should be compared
5518 as if it were a reference conversion sequence. If ICS is the
5519 implicit conversion sequence for an implicit object parameter,
5520 modify it accordingly. */
d11ad92e 5521
ceab47eb 5522static void
5bd61841 5523maybe_handle_implicit_object (conversion **ics)
ceab47eb 5524{
5bd61841 5525 if ((*ics)->this_p)
d11ad92e 5526 {
ceab47eb 5527 /* [over.match.funcs]
c8094d83 5528
ceab47eb
MM
5529 For non-static member functions, the type of the
5530 implicit object parameter is "reference to cv X"
5531 where X is the class of which the function is a
5532 member and cv is the cv-qualification on the member
5533 function declaration. */
5bd61841 5534 conversion *t = *ics;
b0385db8
MM
5535 tree reference_type;
5536
5537 /* The `this' parameter is a pointer to a class type. Make the
34cd5ae7 5538 implicit conversion talk about a reference to that same class
b0385db8 5539 type. */
5bd61841 5540 reference_type = TREE_TYPE (t->type);
b0385db8
MM
5541 reference_type = build_reference_type (reference_type);
5542
5bd61841
MM
5543 if (t->kind == ck_qual)
5544 t = t->u.next;
5545 if (t->kind == ck_ptr)
5546 t = t->u.next;
5547 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
c8094d83 5548 t = direct_reference_binding (reference_type, t);
ceab47eb 5549 *ics = t;
d11ad92e 5550 }
ceab47eb
MM
5551}
5552
2d2e8123
MM
5553/* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
5554 and return the type to which the reference refers. Otherwise,
5555 leave *ICS unchanged and return NULL_TREE. */
ceab47eb 5556
2d2e8123 5557static tree
5bd61841 5558maybe_handle_ref_bind (conversion **ics)
ceab47eb 5559{
5bd61841 5560 if ((*ics)->kind == ck_ref_bind)
d11ad92e 5561 {
5bd61841
MM
5562 conversion *old_ics = *ics;
5563 tree type = TREE_TYPE (old_ics->type);
5564 *ics = old_ics->u.next;
5565 (*ics)->user_conv_p = old_ics->user_conv_p;
5566 (*ics)->bad_p = old_ics->bad_p;
2d2e8123 5567 return type;
d11ad92e 5568 }
351a0f00 5569
2d2e8123 5570 return NULL_TREE;
ceab47eb
MM
5571}
5572
5573/* Compare two implicit conversion sequences according to the rules set out in
5574 [over.ics.rank]. Return values:
d11ad92e 5575
ceab47eb
MM
5576 1: ics1 is better than ics2
5577 -1: ics2 is better than ics1
5578 0: ics1 and ics2 are indistinguishable */
5579
5580static int
5bd61841 5581compare_ics (conversion *ics1, conversion *ics2)
ceab47eb
MM
5582{
5583 tree from_type1;
5584 tree from_type2;
5585 tree to_type1;
5586 tree to_type2;
5587 tree deref_from_type1 = NULL_TREE;
87603ed0
KG
5588 tree deref_from_type2 = NULL_TREE;
5589 tree deref_to_type1 = NULL_TREE;
5590 tree deref_to_type2 = NULL_TREE;
5bd61841 5591 conversion_rank rank1, rank2;
ceab47eb 5592
838dfd8a 5593 /* REF_BINDING is nonzero if the result of the conversion sequence
00c15f8d
MM
5594 is a reference type. In that case TARGET_TYPE is the
5595 type referred to by the reference. */
00c15f8d
MM
5596 tree target_type1;
5597 tree target_type2;
ceab47eb
MM
5598
5599 /* Handle implicit object parameters. */
5600 maybe_handle_implicit_object (&ics1);
5601 maybe_handle_implicit_object (&ics2);
5602
5603 /* Handle reference parameters. */
2d2e8123
MM
5604 target_type1 = maybe_handle_ref_bind (&ics1);
5605 target_type2 = maybe_handle_ref_bind (&ics2);
ceab47eb
MM
5606
5607 /* [over.ics.rank]
5608
5609 When comparing the basic forms of implicit conversion sequences (as
5610 defined in _over.best.ics_)
5611
5612 --a standard conversion sequence (_over.ics.scs_) is a better
5613 conversion sequence than a user-defined conversion sequence
5614 or an ellipsis conversion sequence, and
c8094d83 5615
ceab47eb
MM
5616 --a user-defined conversion sequence (_over.ics.user_) is a
5617 better conversion sequence than an ellipsis conversion sequence
5618 (_over.ics.ellipsis_). */
5bd61841
MM
5619 rank1 = CONVERSION_RANK (ics1);
5620 rank2 = CONVERSION_RANK (ics2);
c8094d83 5621
bea09693 5622 if (rank1 > rank2)
c73964b2 5623 return -1;
bea09693 5624 else if (rank1 < rank2)
c73964b2
MS
5625 return 1;
5626
5bd61841 5627 if (rank1 == cr_bad)
d11ad92e 5628 {
bea09693 5629 /* XXX Isn't this an extension? */
ceab47eb 5630 /* Both ICS are bad. We try to make a decision based on what
cd0be382 5631 would have happened if they'd been good. */
5bd61841
MM
5632 if (ics1->user_conv_p > ics2->user_conv_p
5633 || ics1->rank > ics2->rank)
d11ad92e 5634 return -1;
5bd61841
MM
5635 else if (ics1->user_conv_p < ics2->user_conv_p
5636 || ics1->rank < ics2->rank)
d11ad92e
MS
5637 return 1;
5638
ceab47eb 5639 /* We couldn't make up our minds; try to figure it out below. */
d11ad92e
MS
5640 }
5641
5bd61841 5642 if (ics1->ellipsis_p)
ceab47eb
MM
5643 /* Both conversions are ellipsis conversions. */
5644 return 0;
5645
c73964b2
MS
5646 /* User-defined conversion sequence U1 is a better conversion sequence
5647 than another user-defined conversion sequence U2 if they contain the
5648 same user-defined conversion operator or constructor and if the sec-
5649 ond standard conversion sequence of U1 is better than the second
5650 standard conversion sequence of U2. */
5651
5bd61841 5652 if (ics1->user_conv_p)
c73964b2 5653 {
5bd61841
MM
5654 conversion *t1;
5655 conversion *t2;
c73964b2 5656
5bd61841
MM
5657 for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next)
5658 if (t1->kind == ck_ambig)
c73964b2 5659 return 0;
5bd61841
MM
5660 for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next)
5661 if (t2->kind == ck_ambig)
c73964b2
MS
5662 return 0;
5663
5bd61841 5664 if (t1->cand->fn != t2->cand->fn)
c73964b2 5665 return 0;
c73964b2 5666
ceab47eb
MM
5667 /* We can just fall through here, after setting up
5668 FROM_TYPE1 and FROM_TYPE2. */
5bd61841
MM
5669 from_type1 = t1->type;
5670 from_type2 = t2->type;
c73964b2 5671 }
ceab47eb
MM
5672 else
5673 {
5bd61841
MM
5674 conversion *t1;
5675 conversion *t2;
5676
c8094d83 5677 /* We're dealing with two standard conversion sequences.
c73964b2 5678
ceab47eb 5679 [over.ics.rank]
c8094d83 5680
ceab47eb
MM
5681 Standard conversion sequence S1 is a better conversion
5682 sequence than standard conversion sequence S2 if
c8094d83 5683
ceab47eb
MM
5684 --S1 is a proper subsequence of S2 (comparing the conversion
5685 sequences in the canonical form defined by _over.ics.scs_,
5686 excluding any Lvalue Transformation; the identity
5687 conversion sequence is considered to be a subsequence of
5688 any non-identity conversion sequence */
c8094d83 5689
5bd61841
MM
5690 t1 = ics1;
5691 while (t1->kind != ck_identity)
5692 t1 = t1->u.next;
5693 from_type1 = t1->type;
c8094d83 5694
5bd61841
MM
5695 t2 = ics2;
5696 while (t2->kind != ck_identity)
5697 t2 = t2->u.next;
5698 from_type2 = t2->type;
ceab47eb 5699 }
c73964b2 5700
3bfdc719 5701 if (same_type_p (from_type1, from_type2))
f62dbf03 5702 {
ceab47eb 5703 if (is_subseq (ics1, ics2))
f62dbf03 5704 return 1;
ceab47eb 5705 if (is_subseq (ics2, ics1))
f62dbf03 5706 return -1;
f62dbf03 5707 }
961ec1a5
JM
5708 /* Otherwise, one sequence cannot be a subsequence of the other; they
5709 don't start with the same type. This can happen when comparing the
5710 second standard conversion sequence in two user-defined conversion
5711 sequences. */
c73964b2 5712
ceab47eb 5713 /* [over.ics.rank]
c73964b2 5714
ceab47eb 5715 Or, if not that,
c73964b2 5716
ceab47eb
MM
5717 --the rank of S1 is better than the rank of S2 (by the rules
5718 defined below):
c73964b2 5719
ceab47eb
MM
5720 Standard conversion sequences are ordered by their ranks: an Exact
5721 Match is a better conversion than a Promotion, which is a better
5722 conversion than a Conversion.
c73964b2 5723
ceab47eb
MM
5724 Two conversion sequences with the same rank are indistinguishable
5725 unless one of the following rules applies:
c73964b2 5726
ceab47eb
MM
5727 --A conversion that is not a conversion of a pointer, or pointer
5728 to member, to bool is better than another conversion that is such
c8094d83 5729 a conversion.
c73964b2 5730
ceab47eb
MM
5731 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
5732 so that we do not have to check it explicitly. */
5bd61841 5733 if (ics1->rank < ics2->rank)
ceab47eb 5734 return 1;
5bd61841 5735 else if (ics2->rank < ics1->rank)
ceab47eb 5736 return -1;
c73964b2 5737
5bd61841
MM
5738 to_type1 = ics1->type;
5739 to_type2 = ics2->type;
c73964b2 5740
ceab47eb
MM
5741 if (TYPE_PTR_P (from_type1)
5742 && TYPE_PTR_P (from_type2)
5743 && TYPE_PTR_P (to_type1)
5744 && TYPE_PTR_P (to_type2))
5745 {
5746 deref_from_type1 = TREE_TYPE (from_type1);
5747 deref_from_type2 = TREE_TYPE (from_type2);
5748 deref_to_type1 = TREE_TYPE (to_type1);
5749 deref_to_type2 = TREE_TYPE (to_type2);
5750 }
5751 /* The rules for pointers to members A::* are just like the rules
5752 for pointers A*, except opposite: if B is derived from A then
5753 A::* converts to B::*, not vice versa. For that reason, we
5754 switch the from_ and to_ variables here. */
a5ac359a
MM
5755 else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
5756 && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
5757 || (TYPE_PTRMEMFUNC_P (from_type1)
5758 && TYPE_PTRMEMFUNC_P (from_type2)
5759 && TYPE_PTRMEMFUNC_P (to_type1)
5760 && TYPE_PTRMEMFUNC_P (to_type2)))
5761 {
5762 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
5763 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
5764 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
5765 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
ceab47eb 5766 }
c73964b2 5767
ceab47eb
MM
5768 if (deref_from_type1 != NULL_TREE
5769 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1))
5770 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2)))
5771 {
c8094d83 5772 /* This was one of the pointer or pointer-like conversions.
ceab47eb
MM
5773
5774 [over.ics.rank]
c8094d83 5775
ceab47eb
MM
5776 --If class B is derived directly or indirectly from class A,
5777 conversion of B* to A* is better than conversion of B* to
5778 void*, and conversion of A* to void* is better than
5779 conversion of B* to void*. */
5780 if (TREE_CODE (deref_to_type1) == VOID_TYPE
5781 && TREE_CODE (deref_to_type2) == VOID_TYPE)
c73964b2 5782 {
ceab47eb
MM
5783 if (is_properly_derived_from (deref_from_type1,
5784 deref_from_type2))
c73964b2 5785 return -1;
ceab47eb
MM
5786 else if (is_properly_derived_from (deref_from_type2,
5787 deref_from_type1))
5788 return 1;
c73964b2 5789 }
ceab47eb
MM
5790 else if (TREE_CODE (deref_to_type1) == VOID_TYPE
5791 || TREE_CODE (deref_to_type2) == VOID_TYPE)
c73964b2 5792 {
3bfdc719 5793 if (same_type_p (deref_from_type1, deref_from_type2))
ceab47eb
MM
5794 {
5795 if (TREE_CODE (deref_to_type2) == VOID_TYPE)
5796 {
5797 if (is_properly_derived_from (deref_from_type1,
5798 deref_to_type1))
5799 return 1;
5800 }
5801 /* We know that DEREF_TO_TYPE1 is `void' here. */
5802 else if (is_properly_derived_from (deref_from_type1,
5803 deref_to_type2))
5804 return -1;
5805 }
c73964b2 5806 }
ceab47eb
MM
5807 else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1))
5808 && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2)))
c73964b2 5809 {
ceab47eb
MM
5810 /* [over.ics.rank]
5811
5812 --If class B is derived directly or indirectly from class A
5813 and class C is derived directly or indirectly from B,
c8094d83 5814
ceab47eb 5815 --conversion of C* to B* is better than conversion of C* to
c8094d83
MS
5816 A*,
5817
ceab47eb
MM
5818 --conversion of B* to A* is better than conversion of C* to
5819 A* */
3bfdc719 5820 if (same_type_p (deref_from_type1, deref_from_type2))
ceab47eb
MM
5821 {
5822 if (is_properly_derived_from (deref_to_type1,
5823 deref_to_type2))
5824 return 1;
5825 else if (is_properly_derived_from (deref_to_type2,
5826 deref_to_type1))
5827 return -1;
5828 }
3bfdc719 5829 else if (same_type_p (deref_to_type1, deref_to_type2))
ceab47eb
MM
5830 {
5831 if (is_properly_derived_from (deref_from_type2,
5832 deref_from_type1))
5833 return 1;
5834 else if (is_properly_derived_from (deref_from_type1,
5835 deref_from_type2))
5836 return -1;
5837 }
c73964b2 5838 }
ceab47eb 5839 }
2d2e8123 5840 else if (CLASS_TYPE_P (non_reference (from_type1))
3bfdc719 5841 && same_type_p (from_type1, from_type2))
ceab47eb 5842 {
2d2e8123
MM
5843 tree from = non_reference (from_type1);
5844
ceab47eb 5845 /* [over.ics.rank]
c8094d83 5846
ceab47eb
MM
5847 --binding of an expression of type C to a reference of type
5848 B& is better than binding an expression of type C to a
5849 reference of type A&
5850
5851 --conversion of C to B is better than conversion of C to A, */
2d2e8123
MM
5852 if (is_properly_derived_from (from, to_type1)
5853 && is_properly_derived_from (from, to_type2))
c73964b2 5854 {
ceab47eb 5855 if (is_properly_derived_from (to_type1, to_type2))
c73964b2 5856 return 1;
ceab47eb 5857 else if (is_properly_derived_from (to_type2, to_type1))
c73964b2
MS
5858 return -1;
5859 }
5860 }
2d2e8123 5861 else if (CLASS_TYPE_P (non_reference (to_type1))
3bfdc719 5862 && same_type_p (to_type1, to_type2))
c73964b2 5863 {
2d2e8123
MM
5864 tree to = non_reference (to_type1);
5865
ceab47eb 5866 /* [over.ics.rank]
c73964b2 5867
ceab47eb
MM
5868 --binding of an expression of type B to a reference of type
5869 A& is better than binding an expression of type C to a
c8094d83 5870 reference of type A&,
ceab47eb 5871
77077b39 5872 --conversion of B to A is better than conversion of C to A */
2d2e8123
MM
5873 if (is_properly_derived_from (from_type1, to)
5874 && is_properly_derived_from (from_type2, to))
ceab47eb
MM
5875 {
5876 if (is_properly_derived_from (from_type2, from_type1))
5877 return 1;
5878 else if (is_properly_derived_from (from_type1, from_type2))
5879 return -1;
5880 }
c73964b2
MS
5881 }
5882
ceab47eb
MM
5883 /* [over.ics.rank]
5884
5885 --S1 and S2 differ only in their qualification conversion and yield
5886 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
5887 qualification signature of type T1 is a proper subset of the cv-
5888 qualification signature of type T2 */
5bd61841
MM
5889 if (ics1->kind == ck_qual
5890 && ics2->kind == ck_qual
3bfdc719 5891 && same_type_p (from_type1, from_type2))
ceab47eb
MM
5892 return comp_cv_qual_signature (to_type1, to_type2);
5893
5894 /* [over.ics.rank]
c8094d83 5895
ceab47eb
MM
5896 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
5897 types to which the references refer are the same type except for
5898 top-level cv-qualifiers, and the type to which the reference
5899 initialized by S2 refers is more cv-qualified than the type to
5900 which the reference initialized by S1 refers */
c8094d83 5901
2d2e8123 5902 if (target_type1 && target_type2
9edc3913 5903 && same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
00c15f8d 5904 return comp_cv_qualification (target_type2, target_type1);
ceab47eb
MM
5905
5906 /* Neither conversion sequence is better than the other. */
c73964b2
MS
5907 return 0;
5908}
5909
03e70705
JM
5910/* The source type for this standard conversion sequence. */
5911
8e69329a 5912static tree
5bd61841 5913source_type (conversion *t)
8e69329a 5914{
5bd61841 5915 for (;; t = t->u.next)
8e69329a 5916 {
5bd61841
MM
5917 if (t->kind == ck_user
5918 || t->kind == ck_ambig
5919 || t->kind == ck_identity)
5920 return t->type;
8e69329a 5921 }
8dc2b103 5922 gcc_unreachable ();
8e69329a 5923}
5ffe581d
JM
5924
5925/* Note a warning about preferring WINNER to LOSER. We do this by storing
5926 a pointer to LOSER and re-running joust to produce the warning if WINNER
5927 is actually used. */
5928
5929static void
94be8403 5930add_warning (struct z_candidate *winner, struct z_candidate *loser)
5ffe581d 5931{
5bd61841
MM
5932 candidate_warning *cw;
5933
5934 cw = conversion_obstack_alloc (sizeof (candidate_warning));
5935 cw->loser = loser;
5936 cw->next = winner->warnings;
5937 winner->warnings = cw;
5ffe581d 5938}
8e69329a 5939
c73964b2
MS
5940/* Compare two candidates for overloading as described in
5941 [over.match.best]. Return values:
5942
5943 1: cand1 is better than cand2
5944 -1: cand2 is better than cand1
5945 0: cand1 and cand2 are indistinguishable */
5946
5947static int
94be8403 5948joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
c73964b2
MS
5949{
5950 int winner = 0;
5bd61841
MM
5951 int off1 = 0, off2 = 0;
5952 size_t i;
5953 size_t len;
c73964b2 5954
d11ad92e
MS
5955 /* Candidates that involve bad conversions are always worse than those
5956 that don't. */
5957 if (cand1->viable > cand2->viable)
5958 return 1;
5959 if (cand1->viable < cand2->viable)
5960 return -1;
5961
37b6eb34 5962 /* If we have two pseudo-candidates for conversions to the same type,
6e9dcc25
JM
5963 or two candidates for the same function, arbitrarily pick one. */
5964 if (cand1->fn == cand2->fn
6615c446 5965 && (IS_TYPE_OR_DECL_P (cand1->fn)))
37b6eb34
JM
5966 return 1;
5967
c73964b2
MS
5968 /* a viable function F1
5969 is defined to be a better function than another viable function F2 if
5970 for all arguments i, ICSi(F1) is not a worse conversion sequence than
5971 ICSi(F2), and then */
5972
5973 /* for some argument j, ICSj(F1) is a better conversion sequence than
5974 ICSj(F2) */
5975
cab1f180
ML
5976 /* For comparing static and non-static member functions, we ignore
5977 the implicit object parameter of the non-static function. The
5978 standard says to pretend that the static function has an object
5979 parm, but that won't work with operator overloading. */
5bd61841
MM
5980 len = cand1->num_convs;
5981 if (len != cand2->num_convs)
c73964b2 5982 {
8dc2b103
NS
5983 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
5984 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
5985
5986 gcc_assert (static_1 != static_2);
c8094d83 5987
8dc2b103 5988 if (static_1)
c73964b2 5989 off2 = 1;
8dc2b103 5990 else
c73964b2
MS
5991 {
5992 off1 = 1;
5993 --len;
5994 }
c73964b2
MS
5995 }
5996
5997 for (i = 0; i < len; ++i)
5998 {
5bd61841
MM
5999 conversion *t1 = cand1->convs[i + off1];
6000 conversion *t2 = cand2->convs[i + off2];
da20811c 6001 int comp = compare_ics (t1, t2);
c73964b2
MS
6002
6003 if (comp != 0)
6004 {
da20811c 6005 if (warn_sign_promo
5bd61841
MM
6006 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
6007 == cr_std + cr_promotion)
6008 && t1->kind == ck_std
6009 && t2->kind == ck_std
6010 && TREE_CODE (t1->type) == INTEGER_TYPE
6011 && TREE_CODE (t2->type) == INTEGER_TYPE
6012 && (TYPE_PRECISION (t1->type)
6013 == TYPE_PRECISION (t2->type))
8df83eae 6014 && (TYPE_UNSIGNED (t1->u.next->type)
5bd61841 6015 || (TREE_CODE (t1->u.next->type)
da20811c
JM
6016 == ENUMERAL_TYPE)))
6017 {
5bd61841 6018 tree type = t1->u.next->type;
da20811c 6019 tree type1, type2;
5ffe581d 6020 struct z_candidate *w, *l;
da20811c 6021 if (comp > 0)
5bd61841 6022 type1 = t1->type, type2 = t2->type,
5ffe581d 6023 w = cand1, l = cand2;
da20811c 6024 else
5bd61841 6025 type1 = t2->type, type2 = t1->type,
5ffe581d 6026 w = cand2, l = cand1;
da20811c 6027
5ffe581d
JM
6028 if (warn)
6029 {
d4ee4d25 6030 warning (0, "passing %qT chooses %qT over %qT",
5ffe581d 6031 type, type1, type2);
d4ee4d25 6032 warning (0, " in call to %qD", w->fn);
5ffe581d
JM
6033 }
6034 else
6035 add_warning (w, l);
da20811c
JM
6036 }
6037
c73964b2 6038 if (winner && comp != winner)
c11b6f21
MS
6039 {
6040 winner = 0;
6041 goto tweak;
6042 }
c73964b2
MS
6043 winner = comp;
6044 }
6045 }
6046
9a68c51f
JM
6047 /* warn about confusing overload resolution for user-defined conversions,
6048 either between a constructor and a conversion op, or between two
6049 conversion ops. */
2e2d4075 6050 if (winner && warn_conversion && cand1->second_conv
f8986275
NS
6051 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
6052 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
6053 {
6054 struct z_candidate *w, *l;
6055 bool give_warning = false;
c8094d83 6056
f8986275
NS
6057 if (winner == 1)
6058 w = cand1, l = cand2;
6059 else
6060 w = cand2, l = cand1;
c8094d83 6061
f8986275
NS
6062 /* We don't want to complain about `X::operator T1 ()'
6063 beating `X::operator T2 () const', when T2 is a no less
9bcb9aae 6064 cv-qualified version of T1. */
f8986275
NS
6065 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
6066 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
8e69329a 6067 {
f8986275
NS
6068 tree t = TREE_TYPE (TREE_TYPE (l->fn));
6069 tree f = TREE_TYPE (TREE_TYPE (w->fn));
c8094d83 6070
f8986275 6071 if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
5ffe581d 6072 {
f8986275
NS
6073 t = TREE_TYPE (t);
6074 f = TREE_TYPE (f);
5ffe581d 6075 }
f8986275
NS
6076 if (!comp_ptr_ttypes (t, f))
6077 give_warning = true;
6078 }
6079 else
6080 give_warning = true;
c8094d83 6081
f8986275
NS
6082 if (!give_warning)
6083 /*NOP*/;
2e2d4075 6084 else if (warn)
f8986275 6085 {
5bd61841 6086 tree source = source_type (w->convs[0]);
f8986275
NS
6087 if (! DECL_CONSTRUCTOR_P (w->fn))
6088 source = TREE_TYPE (source);
d4ee4d25
DD
6089 warning (0, "choosing %qD over %qD", w->fn, l->fn);
6090 warning (0, " for conversion from %qT to %qT",
5bd61841 6091 source, w->second_conv->type);
d4ee4d25 6092 warning (0, " because conversion sequence for the argument is better");
8e69329a 6093 }
f8986275
NS
6094 else
6095 add_warning (w, l);
8e69329a
JM
6096 }
6097
c73964b2
MS
6098 if (winner)
6099 return winner;
6100
e5596aef
NS
6101 /* or, if not that,
6102 F1 is a non-template function and F2 is a template function
6103 specialization. */
c8094d83 6104
ea0ad329 6105 if (!cand1->template_decl && cand2->template_decl)
c73964b2 6106 return 1;
ea0ad329 6107 else if (cand1->template_decl && !cand2->template_decl)
c73964b2 6108 return -1;
c8094d83 6109
e5596aef
NS
6110 /* or, if not that,
6111 F1 and F2 are template functions and the function template for F1 is
6112 more specialized than the template for F2 according to the partial
6113 ordering rules. */
c8094d83 6114
ea0ad329 6115 if (cand1->template_decl && cand2->template_decl)
4cff6abe 6116 {
dda04398 6117 winner = more_specialized_fn
0cbd7506
MS
6118 (TI_TEMPLATE (cand1->template_decl),
6119 TI_TEMPLATE (cand2->template_decl),
6120 /* Tell the deduction code how many real function arguments
fe730161
JO
6121 we saw, not counting the implicit 'this' argument. But,
6122 add_function_candidate() suppresses the "this" argument
6123 for constructors.
d9579a59
JM
6124
6125 [temp.func.order]: The presence of unused ellipsis and default
6126 arguments has no effect on the partial ordering of function
6127 templates. */
5bd61841 6128 cand1->num_convs
fe730161
JO
6129 - (DECL_NONSTATIC_MEMBER_FUNCTION_P (cand1->fn)
6130 - DECL_CONSTRUCTOR_P (cand1->fn)));
4cff6abe 6131 if (winner)
0cbd7506 6132 return winner;
4cff6abe 6133 }
c73964b2
MS
6134
6135 /* or, if not that,
6136 the context is an initialization by user-defined conversion (see
6137 _dcl.init_ and _over.match.user_) and the standard conversion
6138 sequence from the return type of F1 to the destination type (i.e.,
6139 the type of the entity being initialized) is a better conversion
6140 sequence than the standard conversion sequence from the return type
6141 of F2 to the destination type. */
6142
4cff6abe
NS
6143 if (cand1->second_conv)
6144 {
6145 winner = compare_ics (cand1->second_conv, cand2->second_conv);
6146 if (winner)
0cbd7506 6147 return winner;
4cff6abe 6148 }
c8094d83 6149
08ac397c
JM
6150 /* Check whether we can discard a builtin candidate, either because we
6151 have two identical ones or matching builtin and non-builtin candidates.
6152
6153 (Pedantically in the latter case the builtin which matched the user
6154 function should not be added to the overload set, but we spot it here.
c8094d83 6155
08ac397c
JM
6156 [over.match.oper]
6157 ... the builtin candidates include ...
6158 - do not have the same parameter type list as any non-template
6159 non-member candidate. */
c8094d83 6160
08ac397c
JM
6161 if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
6162 || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
c73964b2 6163 {
c11b6f21 6164 for (i = 0; i < len; ++i)
5bd61841
MM
6165 if (!same_type_p (cand1->convs[i]->type,
6166 cand2->convs[i]->type))
c73964b2 6167 break;
5bd61841 6168 if (i == cand1->num_convs)
08ac397c
JM
6169 {
6170 if (cand1->fn == cand2->fn)
6171 /* Two built-in candidates; arbitrarily pick one. */
6172 return 1;
6173 else if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE)
6174 /* cand1 is built-in; prefer cand2. */
6175 return -1;
6176 else
6177 /* cand2 is built-in; prefer cand1. */
6178 return 1;
6179 }
c73964b2
MS
6180 }
6181
2c169bab
JM
6182 /* If the two functions are the same (this can happen with declarations
6183 in multiple scopes and arg-dependent lookup), arbitrarily choose one. */
6184 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
6185 && equal_functions (cand1->fn, cand2->fn))
6186 return 1;
c8094d83 6187
c11b6f21
MS
6188tweak:
6189
6190 /* Extension: If the worst conversion for one candidate is worse than the
6191 worst conversion for the other, take the first. */
4cff6abe 6192 if (!pedantic)
c11b6f21 6193 {
5bd61841 6194 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
ae0ed63a 6195 struct z_candidate *w = 0, *l = 0;
c11b6f21
MS
6196
6197 for (i = 0; i < len; ++i)
6198 {
5bd61841
MM
6199 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
6200 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
6201 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
6202 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
c11b6f21 6203 }
c11b6f21 6204 if (rank1 < rank2)
f86fdf68 6205 winner = 1, w = cand1, l = cand2;
c11b6f21 6206 if (rank1 > rank2)
f86fdf68
NS
6207 winner = -1, w = cand2, l = cand1;
6208 if (winner)
0cbd7506 6209 {
f86fdf68
NS
6210 if (warn)
6211 {
d2a6f3c0
ZW
6212 pedwarn ("\
6213ISO C++ says that these are ambiguous, even \
6214though the worst conversion for the first is better than \
6215the worst conversion for the second:");
6216 print_z_candidate (_("candidate 1:"), w);
6217 print_z_candidate (_("candidate 2:"), l);
f86fdf68
NS
6218 }
6219 else
6220 add_warning (w, l);
0cbd7506
MS
6221 return winner;
6222 }
c11b6f21
MS
6223 }
6224
50bc768d 6225 gcc_assert (!winner);
4cff6abe 6226 return 0;
c73964b2
MS
6227}
6228
6229/* Given a list of candidates for overloading, find the best one, if any.
6230 This algorithm has a worst case of O(2n) (winner is last), and a best
6231 case of O(n/2) (totally ambiguous); much better than a sorting
6232 algorithm. */
6233
6234static struct z_candidate *
94be8403 6235tourney (struct z_candidate *candidates)
c73964b2
MS
6236{
6237 struct z_candidate *champ = candidates, *challenger;
6238 int fate;
b265c11a 6239 int champ_compared_to_predecessor = 0;
c73964b2
MS
6240
6241 /* Walk through the list once, comparing each current champ to the next
6242 candidate, knocking out a candidate or two with each comparison. */
6243
6244 for (challenger = champ->next; challenger; )
6245 {
5ffe581d 6246 fate = joust (champ, challenger, 0);
c73964b2
MS
6247 if (fate == 1)
6248 challenger = challenger->next;
6249 else
6250 {
6251 if (fate == 0)
6252 {
6253 champ = challenger->next;
6254 if (champ == 0)
6255 return 0;
b265c11a 6256 champ_compared_to_predecessor = 0;
c73964b2
MS
6257 }
6258 else
b265c11a
MM
6259 {
6260 champ = challenger;
6261 champ_compared_to_predecessor = 1;
6262 }
c73964b2
MS
6263
6264 challenger = champ->next;
6265 }
6266 }
6267
6268 /* Make sure the champ is better than all the candidates it hasn't yet
b265c11a 6269 been compared to. */
c73964b2 6270
c8094d83
MS
6271 for (challenger = candidates;
6272 challenger != champ
b265c11a 6273 && !(champ_compared_to_predecessor && challenger->next == champ);
c73964b2
MS
6274 challenger = challenger->next)
6275 {
5ffe581d 6276 fate = joust (champ, challenger, 0);
c73964b2
MS
6277 if (fate != 1)
6278 return 0;
6279 }
6280
6281 return champ;
6282}
c11b6f21 6283
838dfd8a 6284/* Returns nonzero if things of type FROM can be converted to TO. */
4143af33 6285
94be8403
GDR
6286bool
6287can_convert (tree to, tree from)
c11b6f21 6288{
30f86ec3 6289 return can_convert_arg (to, from, NULL_TREE, LOOKUP_NORMAL);
c11b6f21
MS
6290}
6291
838dfd8a 6292/* Returns nonzero if ARG (of type FROM) can be converted to TO. */
4143af33 6293
94be8403 6294bool
30f86ec3 6295can_convert_arg (tree to, tree from, tree arg, int flags)
c11b6f21 6296{
5bd61841
MM
6297 conversion *t;
6298 void *p;
6299 bool ok_p;
6300
6301 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6302 p = conversion_obstack_alloc (0);
6303
34b5375f 6304 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
30f86ec3 6305 flags);
5bd61841
MM
6306 ok_p = (t && !t->bad_p);
6307
6308 /* Free all the conversions we allocated. */
6309 obstack_free (&conversion_obstack, p);
6310
6311 return ok_p;
c11b6f21 6312}
27b8d0cd 6313
72a08131
JM
6314/* Like can_convert_arg, but allows dubious conversions as well. */
6315
94be8403
GDR
6316bool
6317can_convert_arg_bad (tree to, tree from, tree arg)
72a08131 6318{
5bd61841
MM
6319 conversion *t;
6320 void *p;
6321
6322 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6323 p = conversion_obstack_alloc (0);
6324 /* Try to perform the conversion. */
34b5375f
MM
6325 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
6326 LOOKUP_NORMAL);
5bd61841
MM
6327 /* Free all the conversions we allocated. */
6328 obstack_free (&conversion_obstack, p);
6329
6330 return t != NULL;
72a08131
JM
6331}
6332
6333/* Convert EXPR to TYPE. Return the converted expression.
6334
6335 Note that we allow bad conversions here because by the time we get to
6336 this point we are committed to doing the conversion. If we end up
6337 doing a bad conversion, convert_like will complain. */
4143af33 6338
a7a64a77 6339tree
94be8403 6340perform_implicit_conversion (tree type, tree expr)
a7a64a77 6341{
5bd61841
MM
6342 conversion *conv;
6343 void *p;
6344
a723baf1 6345 if (error_operand_p (expr))
b5534c65 6346 return error_mark_node;
5bd61841
MM
6347
6348 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6349 p = conversion_obstack_alloc (0);
6350
b5534c65 6351 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
34b5375f 6352 /*c_cast_p=*/false,
b5534c65 6353 LOOKUP_NORMAL);
72a08131 6354 if (!conv)
a7a64a77 6355 {
41775162 6356 error ("could not convert %qE to %qT", expr, type);
5bd61841 6357 expr = error_mark_node;
a7a64a77 6358 }
5bd61841
MM
6359 else
6360 expr = convert_like (conv, expr);
6361
6362 /* Free all the conversions we allocated. */
6363 obstack_free (&conversion_obstack, p);
a7a64a77 6364
5bd61841 6365 return expr;
a7a64a77
MM
6366}
6367
3fe18f1d
MM
6368/* Convert EXPR to TYPE (as a direct-initialization) if that is
6369 permitted. If the conversion is valid, the converted expression is
ceeae2d1 6370 returned. Otherwise, NULL_TREE is returned, except in the case
33c25e5c 6371 that TYPE is a class type; in that case, an error is issued. If
5acd0bed 6372 C_CAST_P is true, then this direction initialization is taking
33c25e5c
MM
6373 place as part of a static_cast being attempted as part of a C-style
6374 cast. */
3fe18f1d
MM
6375
6376tree
c8094d83 6377perform_direct_initialization_if_possible (tree type,
33c25e5c
MM
6378 tree expr,
6379 bool c_cast_p)
3fe18f1d 6380{
5bd61841
MM
6381 conversion *conv;
6382 void *p;
6383
3fe18f1d
MM
6384 if (type == error_mark_node || error_operand_p (expr))
6385 return error_mark_node;
ceeae2d1
MM
6386 /* [dcl.init]
6387
6388 If the destination type is a (possibly cv-qualified) class type:
6389
6390 -- If the initialization is direct-initialization ...,
6391 constructors are considered. ... If no constructor applies, or
6392 the overload resolution is ambiguous, the initialization is
6393 ill-formed. */
6394 if (CLASS_TYPE_P (type))
385bce06
MM
6395 {
6396 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6397 build_tree_list (NULL_TREE, expr),
cad7e87b 6398 type, LOOKUP_NORMAL);
385bce06
MM
6399 return build_cplus_new (type, expr);
6400 }
5bd61841
MM
6401
6402 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6403 p = conversion_obstack_alloc (0);
6404
3fe18f1d 6405 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
34b5375f 6406 c_cast_p,
3fe18f1d 6407 LOOKUP_NORMAL);
5bd61841
MM
6408 if (!conv || conv->bad_p)
6409 expr = NULL_TREE;
6410 else
c8094d83 6411 expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
33c25e5c
MM
6412 /*issue_conversion_warnings=*/false,
6413 c_cast_p);
5bd61841
MM
6414
6415 /* Free all the conversions we allocated. */
6416 obstack_free (&conversion_obstack, p);
6417
6418 return expr;
3fe18f1d
MM
6419}
6420
7993382e
MM
6421/* DECL is a VAR_DECL whose type is a REFERENCE_TYPE. The reference
6422 is being bound to a temporary. Create and return a new VAR_DECL
aa6e8ed3
MM
6423 with the indicated TYPE; this variable will store the value to
6424 which the reference is bound. */
7993382e 6425
c8094d83 6426tree
aa6e8ed3 6427make_temporary_var_for_ref_to_temp (tree decl, tree type)
7993382e 6428{
7993382e
MM
6429 tree var;
6430
7993382e
MM
6431 /* Create the variable. */
6432 var = build_decl (VAR_DECL, NULL_TREE, type);
6433 DECL_ARTIFICIAL (var) = 1;
78e0d62b 6434 DECL_IGNORED_P (var) = 1;
7993382e
MM
6435 TREE_USED (var) = 1;
6436
6437 /* Register the variable. */
6438 if (TREE_STATIC (decl))
6439 {
6440 /* Namespace-scope or local static; give it a mangled name. */
6441 tree name;
6442
6443 TREE_STATIC (var) = 1;
6444 name = mangle_ref_init_variable (decl);
6445 DECL_NAME (var) = name;
6446 SET_DECL_ASSEMBLER_NAME (var, name);
6447 var = pushdecl_top_level (var);
6448 }
6449 else
6450 {
6451 /* Create a new cleanup level if necessary. */
6452 maybe_push_cleanup_level (type);
6453 /* Don't push unnamed temps. Do set DECL_CONTEXT, though. */
6454 DECL_CONTEXT (var) = current_function_decl;
6455 }
6456
6457 return var;
6458}
6459
27b8d0cd 6460/* Convert EXPR to the indicated reference TYPE, in a way suitable for
7e99327d 6461 initializing a variable of that TYPE. If DECL is non-NULL, it is
7993382e 6462 the VAR_DECL being initialized with the EXPR. (In that case, the
7e99327d
MM
6463 type of DECL will be TYPE.) If DECL is non-NULL, then CLEANUP must
6464 also be non-NULL, and with *CLEANUP initialized to NULL. Upon
325c3691
RH
6465 return, if *CLEANUP is no longer NULL, it will be an expression
6466 that should be pushed as a cleanup after the returned expression
6467 is used to initialize DECL.
7993382e
MM
6468
6469 Return the converted expression. */
27b8d0cd
MM
6470
6471tree
7e99327d 6472initialize_reference (tree type, tree expr, tree decl, tree *cleanup)
27b8d0cd 6473{
5bd61841
MM
6474 conversion *conv;
6475 void *p;
7993382e
MM
6476
6477 if (type == error_mark_node || error_operand_p (expr))
6478 return error_mark_node;
27b8d0cd 6479
5bd61841
MM
6480 /* Get the high-water mark for the CONVERSION_OBSTACK. */
6481 p = conversion_obstack_alloc (0);
6482
aa6e8ed3 6483 conv = reference_binding (type, TREE_TYPE (expr), expr, LOOKUP_NORMAL);
5bd61841 6484 if (!conv || conv->bad_p)
27b8d0cd 6485 {
f19319db 6486 if (!(TYPE_QUALS (TREE_TYPE (type)) & TYPE_QUAL_CONST)
0cbd7506
MS
6487 && !real_lvalue_p (expr))
6488 error ("invalid initialization of non-const reference of "
6489 "type %qT from a temporary of type %qT",
6490 type, TREE_TYPE (expr));
f19319db 6491 else
0cbd7506 6492 error ("invalid initialization of reference of type "
c8094d83 6493 "%qT from expression of type %qT", type,
d04a575f 6494 TREE_TYPE (expr));
27b8d0cd
MM
6495 return error_mark_node;
6496 }
6497
7993382e
MM
6498 /* If DECL is non-NULL, then this special rule applies:
6499
6500 [class.temporary]
6501
6502 The temporary to which the reference is bound or the temporary
aa6e8ed3 6503 that is the complete object to which the reference is bound
7993382e
MM
6504 persists for the lifetime of the reference.
6505
6506 The temporaries created during the evaluation of the expression
6507 initializing the reference, except the temporary to which the
6508 reference is bound, are destroyed at the end of the
6509 full-expression in which they are created.
6510
6511 In that case, we store the converted expression into a new
c8094d83 6512 VAR_DECL in a new scope.
aa6e8ed3
MM
6513
6514 However, we want to be careful not to create temporaries when
6515 they are not required. For example, given:
6516
c8094d83 6517 struct B {};
aa6e8ed3
MM
6518 struct D : public B {};
6519 D f();
6520 const B& b = f();
6521
6522 there is no need to copy the return value from "f"; we can just
6523 extend its lifetime. Similarly, given:
6524
6525 struct S {};
6526 struct T { operator S(); };
6527 T t;
6528 const S& s = t;
6529
170b020f 6530 we can extend the lifetime of the return value of the conversion
aa6e8ed3 6531 operator. */
50bc768d 6532 gcc_assert (conv->kind == ck_ref_bind);
aa6e8ed3 6533 if (decl)
7993382e
MM
6534 {
6535 tree var;
aa6e8ed3 6536 tree base_conv_type;
7993382e 6537
aa6e8ed3 6538 /* Skip over the REF_BIND. */
5bd61841 6539 conv = conv->u.next;
aa6e8ed3
MM
6540 /* If the next conversion is a BASE_CONV, skip that too -- but
6541 remember that the conversion was required. */
391c4bc5 6542 if (conv->kind == ck_base)
aa6e8ed3 6543 {
5bd61841 6544 if (conv->check_copy_constructor_p)
0cbd7506 6545 check_constructor_callable (TREE_TYPE (expr), expr);
5bd61841
MM
6546 base_conv_type = conv->type;
6547 conv = conv->u.next;
aa6e8ed3
MM
6548 }
6549 else
6550 base_conv_type = NULL_TREE;
6551 /* Perform the remainder of the conversion. */
1b6bfcd2
MM
6552 expr = convert_like_real (conv, expr,
6553 /*fn=*/NULL_TREE, /*argnum=*/0,
6554 /*inner=*/-1,
33c25e5c
MM
6555 /*issue_conversion_warnings=*/true,
6556 /*c_cast_p=*/false);
88e95ee3
MM
6557 if (error_operand_p (expr))
6558 expr = error_mark_node;
6559 else
aa6e8ed3 6560 {
88e95ee3 6561 if (!real_lvalue_p (expr))
170b020f 6562 {
88e95ee3
MM
6563 tree init;
6564 tree type;
6565
6566 /* Create the temporary variable. */
6567 type = TREE_TYPE (expr);
6568 var = make_temporary_var_for_ref_to_temp (decl, type);
6569 layout_decl (var, 0);
6570 /* If the rvalue is the result of a function call it will be
6571 a TARGET_EXPR. If it is some other construct (such as a
6572 member access expression where the underlying object is
6573 itself the result of a function call), turn it into a
6574 TARGET_EXPR here. It is important that EXPR be a
6575 TARGET_EXPR below since otherwise the INIT_EXPR will
6576 attempt to make a bitwise copy of EXPR to initialize
6577 VAR. */
6578 if (TREE_CODE (expr) != TARGET_EXPR)
6579 expr = get_target_expr (expr);
6580 /* Create the INIT_EXPR that will initialize the temporary
6581 variable. */
6582 init = build2 (INIT_EXPR, type, var, expr);
6583 if (at_function_scope_p ())
6584 {
6585 add_decl_expr (var);
6586 *cleanup = cxx_maybe_build_cleanup (var);
6587
6588 /* We must be careful to destroy the temporary only
6589 after its initialization has taken place. If the
6590 initialization throws an exception, then the
6591 destructor should not be run. We cannot simply
6592 transform INIT into something like:
6593
6594 (INIT, ({ CLEANUP_STMT; }))
6595
6596 because emit_local_var always treats the
6597 initializer as a full-expression. Thus, the
6598 destructor would run too early; it would run at the
6599 end of initializing the reference variable, rather
6600 than at the end of the block enclosing the
6601 reference variable.
6602
6603 The solution is to pass back a cleanup expression
6604 which the caller is responsible for attaching to
6605 the statement tree. */
6606 }
6607 else
6608 {
6609 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
6610 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
6611 static_aggregates = tree_cons (NULL_TREE, var,
6612 static_aggregates);
6613 }
6614 /* Use its address to initialize the reference variable. */
6615 expr = build_address (var);
6616 if (base_conv_type)
c8094d83 6617 expr = convert_to_base (expr,
88e95ee3
MM
6618 build_pointer_type (base_conv_type),
6619 /*check_access=*/true,
6620 /*nonnull=*/true);
6621 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
170b020f
MM
6622 }
6623 else
88e95ee3
MM
6624 /* Take the address of EXPR. */
6625 expr = build_unary_op (ADDR_EXPR, expr, 0);
6626 /* If a BASE_CONV was required, perform it now. */
391c4bc5 6627 if (base_conv_type)
c8094d83 6628 expr = (perform_implicit_conversion
88e95ee3
MM
6629 (build_pointer_type (base_conv_type), expr));
6630 expr = build_nop (type, expr);
aa6e8ed3 6631 }
7993382e 6632 }
5bd61841
MM
6633 else
6634 /* Perform the conversion. */
6635 expr = convert_like (conv, expr);
88e95ee3 6636
5bd61841
MM
6637 /* Free all the conversions we allocated. */
6638 obstack_free (&conversion_obstack, p);
7993382e 6639
5bd61841 6640 return expr;
27b8d0cd 6641}
e2500fed
GK
6642
6643#include "gt-cp-call.h"
This page took 3.352107 seconds and 5 git commands to generate.