CWG 616, 1213 - value category of subobject references.
[official-gcc.git] / gcc / cp / cvt.c
blob30b44b7d7eafdc55a6415cbf7cc5cb0253b2a2fc
1 /* Language-level data type conversion for GNU C++.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* This file contains the functions for converting C++ expressions
23 to different data types. The only entry point is `convert'.
24 Every language front end must have a `convert' function
25 but what kind of conversions it does will depend on the language. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "target.h"
31 #include "cp-tree.h"
32 #include "stor-layout.h"
33 #include "flags.h"
34 #include "intl.h"
35 #include "convert.h"
36 #include "stringpool.h"
37 #include "attribs.h"
39 static tree convert_to_pointer_force (tree, tree, tsubst_flags_t);
40 static tree build_type_conversion (tree, tree);
41 static tree build_up_reference (tree, tree, int, tree, tsubst_flags_t);
42 static void diagnose_ref_binding (location_t, tree, tree, tree);
44 /* Change of width--truncation and extension of integers or reals--
45 is represented with NOP_EXPR. Proper functioning of many things
46 assumes that no other conversions can be NOP_EXPRs.
48 Conversion between integer and pointer is represented with CONVERT_EXPR.
49 Converting integer to real uses FLOAT_EXPR
50 and real to integer uses FIX_TRUNC_EXPR.
52 Here is a list of all the functions that assume that widening and
53 narrowing is always done with a NOP_EXPR:
54 In convert.c, convert_to_integer[_maybe_fold].
55 In c-typeck.c, build_binary_op_nodefault (boolean ops),
56 and c_common_truthvalue_conversion.
57 In expr.c: expand_expr, for operands of a MULT_EXPR.
58 In fold-const.c: fold.
59 In tree.c: get_narrower and get_unwidened.
61 C++: in multiple-inheritance, converting between pointers may involve
62 adjusting them by a delta stored within the class definition. */
64 /* Subroutines of `convert'. */
66 /* if converting pointer to pointer
67 if dealing with classes, check for derived->base or vice versa
68 else if dealing with method pointers, delegate
69 else convert blindly
70 else if converting class, pass off to build_type_conversion
71 else try C-style pointer conversion. */
73 static tree
74 cp_convert_to_pointer (tree type, tree expr, bool dofold,
75 tsubst_flags_t complain)
77 tree intype = TREE_TYPE (expr);
78 enum tree_code form;
79 tree rval;
80 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
82 if (intype == error_mark_node)
83 return error_mark_node;
85 if (MAYBE_CLASS_TYPE_P (intype))
87 intype = complete_type (intype);
88 if (!COMPLETE_TYPE_P (intype))
90 if (complain & tf_error)
91 error_at (loc, "can%'t convert from incomplete type %qH to %qI",
92 intype, type);
93 return error_mark_node;
96 rval = build_type_conversion (type, expr);
97 if (rval)
99 if ((complain & tf_error)
100 && rval == error_mark_node)
101 error_at (loc, "conversion of %qE from %qH to %qI is ambiguous",
102 expr, intype, type);
103 return rval;
107 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
108 if (TYPE_PTR_P (type)
109 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
110 || VOID_TYPE_P (TREE_TYPE (type))))
112 if (TYPE_PTRMEMFUNC_P (intype)
113 || TREE_CODE (intype) == METHOD_TYPE)
114 return convert_member_func_to_ptr (type, expr, complain);
115 if (TYPE_PTR_P (TREE_TYPE (expr)))
116 return build_nop (type, expr);
117 intype = TREE_TYPE (expr);
120 if (expr == error_mark_node)
121 return error_mark_node;
123 form = TREE_CODE (intype);
125 if (POINTER_TYPE_P (intype))
127 intype = TYPE_MAIN_VARIANT (intype);
129 if (TYPE_MAIN_VARIANT (type) != intype
130 && TYPE_PTR_P (type)
131 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
132 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
133 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
134 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
136 enum tree_code code = PLUS_EXPR;
137 tree binfo;
138 tree intype_class;
139 tree type_class;
140 bool same_p;
142 intype_class = TREE_TYPE (intype);
143 type_class = TREE_TYPE (type);
145 same_p = same_type_p (TYPE_MAIN_VARIANT (intype_class),
146 TYPE_MAIN_VARIANT (type_class));
147 binfo = NULL_TREE;
148 /* Try derived to base conversion. */
149 if (!same_p)
150 binfo = lookup_base (intype_class, type_class, ba_check,
151 NULL, complain);
152 if (!same_p && !binfo)
154 /* Try base to derived conversion. */
155 binfo = lookup_base (type_class, intype_class, ba_check,
156 NULL, complain);
157 code = MINUS_EXPR;
159 if (binfo == error_mark_node)
160 return error_mark_node;
161 if (binfo || same_p)
163 if (binfo)
164 expr = build_base_path (code, expr, binfo, 0, complain);
165 /* Add any qualifier conversions. */
166 return build_nop (type, expr);
170 if (TYPE_PTRMEMFUNC_P (type))
172 if (complain & tf_error)
173 error_at (loc, "cannot convert %qE from type %qH to type %qI",
174 expr, intype, type);
175 return error_mark_node;
178 return build_nop (type, expr);
180 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
181 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
182 return convert_ptrmem (type, expr, /*allow_inverse_p=*/false,
183 /*c_cast_p=*/false, complain);
184 else if (TYPE_PTRMEMFUNC_P (intype))
186 if (!warn_pmf2ptr)
188 if (TREE_CODE (expr) == PTRMEM_CST)
189 return cp_convert_to_pointer (type, PTRMEM_CST_MEMBER (expr),
190 dofold, complain);
191 else if (TREE_CODE (expr) == OFFSET_REF)
193 tree object = TREE_OPERAND (expr, 0);
194 return get_member_function_from_ptrfunc (&object,
195 TREE_OPERAND (expr, 1),
196 complain);
199 if (complain & tf_error)
200 error_at (loc, "cannot convert %qE from type %qH to type %qI",
201 expr, intype, type);
202 return error_mark_node;
205 if (null_ptr_cst_p (expr))
207 if (TYPE_PTRMEMFUNC_P (type))
208 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
209 /*c_cast_p=*/false, complain);
211 if (complain & tf_warning)
212 maybe_warn_zero_as_null_pointer_constant (expr, loc);
214 /* A NULL pointer-to-data-member is represented by -1, not by
215 zero. */
216 tree val = (TYPE_PTRDATAMEM_P (type)
217 ? build_int_cst_type (type, -1)
218 : build_int_cst (type, 0));
220 return (TREE_SIDE_EFFECTS (expr)
221 ? build2 (COMPOUND_EXPR, type, expr, val) : val);
223 else if (TYPE_PTRMEM_P (type) && INTEGRAL_CODE_P (form))
225 if (complain & tf_error)
226 error_at (loc, "invalid conversion from %qH to %qI", intype, type);
227 return error_mark_node;
230 if (INTEGRAL_CODE_P (form))
232 if (TYPE_PRECISION (intype) == POINTER_SIZE)
233 return build1 (CONVERT_EXPR, type, expr);
234 expr = cp_convert (c_common_type_for_size (POINTER_SIZE, 0), expr,
235 complain);
236 /* Modes may be different but sizes should be the same. There
237 is supposed to be some integral type that is the same width
238 as a pointer. */
239 gcc_assert (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (expr)))
240 == GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (type)));
242 /* FIXME needed because convert_to_pointer_maybe_fold still folds
243 conversion of constants. */
244 if (!dofold)
245 return build1 (CONVERT_EXPR, type, expr);
247 return convert_to_pointer_maybe_fold (type, expr, dofold);
250 if (type_unknown_p (expr))
251 return instantiate_type (type, expr, complain);
253 if (complain & tf_error)
254 error_at (loc, "cannot convert %qE from type %qH to type %qI",
255 expr, intype, type);
256 return error_mark_node;
259 /* Like convert, except permit conversions to take place which
260 are not normally allowed due to access restrictions
261 (such as conversion from sub-type to private super-type). */
263 static tree
264 convert_to_pointer_force (tree type, tree expr, tsubst_flags_t complain)
266 tree intype = TREE_TYPE (expr);
267 enum tree_code form = TREE_CODE (intype);
269 if (form == POINTER_TYPE)
271 intype = TYPE_MAIN_VARIANT (intype);
273 if (TYPE_MAIN_VARIANT (type) != intype
274 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
275 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
276 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
277 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
279 enum tree_code code = PLUS_EXPR;
280 tree binfo;
282 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
283 ba_unique, NULL, complain);
284 if (!binfo)
286 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
287 ba_unique, NULL, complain);
288 code = MINUS_EXPR;
290 if (binfo == error_mark_node)
291 return error_mark_node;
292 if (binfo)
294 expr = build_base_path (code, expr, binfo, 0, complain);
295 if (expr == error_mark_node)
296 return error_mark_node;
297 /* Add any qualifier conversions. */
298 if (!same_type_p (TREE_TYPE (TREE_TYPE (expr)),
299 TREE_TYPE (type)))
300 expr = build_nop (type, expr);
301 return expr;
306 return cp_convert_to_pointer (type, expr, /*fold*/false, complain);
309 /* We are passing something to a function which requires a reference.
310 The type we are interested in is in TYPE. The initial
311 value we have to begin with is in ARG.
313 FLAGS controls how we manage access checking.
314 DIRECT_BIND in FLAGS controls how any temporaries are generated.
315 If DIRECT_BIND is set, DECL is the reference we're binding to. */
317 static tree
318 build_up_reference (tree type, tree arg, int flags, tree decl,
319 tsubst_flags_t complain)
321 tree rval;
322 tree argtype = TREE_TYPE (arg);
323 tree target_type = TREE_TYPE (type);
325 gcc_assert (TYPE_REF_P (type));
327 if ((flags & DIRECT_BIND) && ! lvalue_p (arg))
329 /* Create a new temporary variable. We can't just use a TARGET_EXPR
330 here because it needs to live as long as DECL. */
331 tree targ = arg;
333 arg = make_temporary_var_for_ref_to_temp (decl, target_type);
335 /* Process the initializer for the declaration. */
336 DECL_INITIAL (arg) = targ;
337 cp_finish_decl (arg, targ, /*init_const_expr_p=*/false, NULL_TREE,
338 LOOKUP_ONLYCONVERTING|DIRECT_BIND);
340 else if (!(flags & DIRECT_BIND) && ! obvalue_p (arg))
341 return get_target_expr_sfinae (arg, complain);
343 /* If we had a way to wrap this up, and say, if we ever needed its
344 address, transform all occurrences of the register, into a memory
345 reference we could win better. */
346 rval = cp_build_addr_expr (arg, complain);
347 if (rval == error_mark_node)
348 return error_mark_node;
350 if ((flags & LOOKUP_PROTECT)
351 && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
352 && MAYBE_CLASS_TYPE_P (argtype)
353 && MAYBE_CLASS_TYPE_P (target_type))
355 /* We go through lookup_base for the access control. */
356 tree binfo = lookup_base (argtype, target_type, ba_check,
357 NULL, complain);
358 if (binfo == error_mark_node)
359 return error_mark_node;
360 if (binfo == NULL_TREE)
361 return error_not_base_type (target_type, argtype);
362 rval = build_base_path (PLUS_EXPR, rval, binfo, 1, complain);
364 else
365 rval
366 = convert_to_pointer_force (build_pointer_type (target_type),
367 rval, complain);
368 return build_nop (type, rval);
371 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
372 INTYPE is the original rvalue type and DECL is an optional _DECL node
373 for diagnostics.
375 [dcl.init.ref] says that if an rvalue is used to
376 initialize a reference, then the reference must be to a
377 non-volatile const type. */
379 static void
380 diagnose_ref_binding (location_t loc, tree reftype, tree intype, tree decl)
382 tree ttl = TREE_TYPE (reftype);
384 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl))
386 const char *msg;
388 if (CP_TYPE_VOLATILE_P (ttl) && decl)
389 msg = G_("initialization of volatile reference type %q#T from "
390 "rvalue of type %qT");
391 else if (CP_TYPE_VOLATILE_P (ttl))
392 msg = G_("conversion to volatile reference type %q#T "
393 "from rvalue of type %qT");
394 else if (decl)
395 msg = G_("initialization of non-const reference type %q#T from "
396 "rvalue of type %qT");
397 else
398 msg = G_("conversion to non-const reference type %q#T from "
399 "rvalue of type %qT");
401 permerror (loc, msg, reftype, intype);
405 /* For C++: Only need to do one-level references, but cannot
406 get tripped up on signed/unsigned differences.
408 DECL is either NULL_TREE or the _DECL node for a reference that is being
409 initialized. It can be error_mark_node if we don't know the _DECL but
410 we know it's an initialization. */
412 tree
413 convert_to_reference (tree reftype, tree expr, int convtype,
414 int flags, tree decl, tsubst_flags_t complain)
416 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (reftype));
417 tree intype;
418 tree rval = NULL_TREE;
419 tree rval_as_conversion = NULL_TREE;
420 bool can_convert_intype_to_type;
421 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
423 if (TREE_CODE (type) == FUNCTION_TYPE
424 && TREE_TYPE (expr) == unknown_type_node)
425 expr = instantiate_type (type, expr, complain);
427 if (expr == error_mark_node)
428 return error_mark_node;
430 intype = TREE_TYPE (expr);
432 gcc_assert (!TYPE_REF_P (intype));
433 gcc_assert (TYPE_REF_P (reftype));
435 intype = TYPE_MAIN_VARIANT (intype);
437 can_convert_intype_to_type = can_convert_standard (type, intype, complain);
439 if (!can_convert_intype_to_type
440 && (convtype & CONV_IMPLICIT) && MAYBE_CLASS_TYPE_P (intype)
441 && ! (flags & LOOKUP_NO_CONVERSION))
443 /* Look for a user-defined conversion to lvalue that we can use. */
445 rval_as_conversion
446 = build_type_conversion (reftype, expr);
448 if (rval_as_conversion && rval_as_conversion != error_mark_node
449 && lvalue_p (rval_as_conversion))
451 expr = rval_as_conversion;
452 rval_as_conversion = NULL_TREE;
453 intype = type;
454 can_convert_intype_to_type = 1;
458 if (((convtype & CONV_STATIC)
459 && can_convert_standard (intype, type, complain))
460 || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type))
463 tree ttl = TREE_TYPE (reftype);
464 tree ttr = lvalue_type (expr);
466 if ((complain & tf_error)
467 && ! lvalue_p (expr))
468 diagnose_ref_binding (loc, reftype, intype, decl);
470 if (! (convtype & CONV_CONST)
471 && !at_least_as_qualified_p (ttl, ttr))
473 if (complain & tf_error)
474 permerror (loc, "conversion from %qH to %qI discards qualifiers",
475 ttr, reftype);
476 else
477 return error_mark_node;
481 return build_up_reference (reftype, expr, flags, decl, complain);
483 else if ((convtype & CONV_REINTERPRET) && obvalue_p (expr))
485 /* When casting an lvalue to a reference type, just convert into
486 a pointer to the new type and deference it. This is allowed
487 by San Diego WP section 5.2.9 paragraph 12, though perhaps it
488 should be done directly (jason). (int &)ri ---> *(int*)&ri */
490 /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
491 meant. */
492 if ((complain & tf_warning)
493 && TYPE_PTR_P (intype)
494 && (comptypes (TREE_TYPE (intype), type,
495 COMPARE_BASE | COMPARE_DERIVED)))
496 warning_at (loc, 0, "casting %qT to %qT does not dereference pointer",
497 intype, reftype);
499 rval = cp_build_addr_expr (expr, complain);
500 if (rval != error_mark_node)
501 rval = convert_force (build_pointer_type (TREE_TYPE (reftype)),
502 rval, 0, complain);
503 if (rval != error_mark_node)
504 rval = build1 (NOP_EXPR, reftype, rval);
506 else
508 rval = convert_for_initialization (NULL_TREE, type, expr, flags,
509 ICR_CONVERTING, 0, 0, complain);
510 if (rval == NULL_TREE || rval == error_mark_node)
511 return rval;
512 if (complain & tf_error)
513 diagnose_ref_binding (loc, reftype, intype, decl);
514 rval = build_up_reference (reftype, rval, flags, decl, complain);
517 if (rval)
519 /* If we found a way to convert earlier, then use it. */
520 return rval;
523 if (complain & tf_error)
524 error_at (loc, "cannot convert type %qH to type %qI", intype, reftype);
526 return error_mark_node;
529 /* We are using a reference VAL for its value. Bash that reference all the
530 way down to its lowest form. */
532 tree
533 convert_from_reference (tree val)
535 if (TREE_TYPE (val)
536 && TYPE_REF_P (TREE_TYPE (val)))
538 tree t = TREE_TYPE (TREE_TYPE (val));
539 tree ref = build1 (INDIRECT_REF, t, val);
541 mark_exp_read (val);
542 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
543 so that we get the proper error message if the result is used
544 to assign to. Also, &* is supposed to be a no-op. */
545 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
546 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
547 TREE_SIDE_EFFECTS (ref)
548 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (val));
549 val = ref;
552 return val;
555 /* Really perform an lvalue-to-rvalue conversion, including copying an
556 argument of class type into a temporary. */
558 tree
559 force_rvalue (tree expr, tsubst_flags_t complain)
561 tree type = TREE_TYPE (expr);
562 if (MAYBE_CLASS_TYPE_P (type) && TREE_CODE (expr) != TARGET_EXPR)
564 vec<tree, va_gc> *args = make_tree_vector_single (expr);
565 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
566 &args, type, LOOKUP_NORMAL, complain);
567 release_tree_vector (args);
568 expr = build_cplus_new (type, expr, complain);
570 else
571 expr = decay_conversion (expr, complain);
573 return expr;
577 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
578 TREE_OVERFLOW set only if it is set in ORIG. Otherwise, return EXPR
579 unchanged. */
581 static tree
582 ignore_overflows (tree expr, tree orig)
584 if (TREE_CODE (expr) == INTEGER_CST
585 && TREE_CODE (orig) == INTEGER_CST
586 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
588 gcc_assert (!TREE_OVERFLOW (orig));
589 /* Ensure constant sharing. */
590 expr = wide_int_to_tree (TREE_TYPE (expr), wi::to_wide (expr));
592 return expr;
595 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
596 properly. */
598 tree
599 cp_fold_convert (tree type, tree expr)
601 tree conv;
602 if (TREE_TYPE (expr) == type)
603 conv = expr;
604 else if (TREE_CODE (expr) == PTRMEM_CST
605 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
606 PTRMEM_CST_CLASS (expr)))
608 /* Avoid wrapping a PTRMEM_CST in NOP_EXPR. */
609 conv = copy_node (expr);
610 TREE_TYPE (conv) = type;
612 else if (TYPE_PTRMEM_P (type))
614 conv = convert_ptrmem (type, expr, true, false,
615 tf_warning_or_error);
616 conv = cp_fully_fold (conv);
618 else
620 conv = fold_convert (type, expr);
621 conv = ignore_overflows (conv, expr);
623 return conv;
626 /* C++ conversions, preference to static cast conversions. */
628 tree
629 cp_convert (tree type, tree expr, tsubst_flags_t complain)
631 return ocp_convert (type, expr, CONV_OLD_CONVERT, LOOKUP_NORMAL, complain);
634 /* C++ equivalent of convert_and_check but using cp_convert as the
635 conversion function.
637 Convert EXPR to TYPE, warning about conversion problems with constants.
638 Invoke this function on every expression that is converted implicitly,
639 i.e. because of language rules and not because of an explicit cast. */
641 tree
642 cp_convert_and_check (tree type, tree expr, tsubst_flags_t complain)
644 tree result;
646 if (TREE_TYPE (expr) == type)
647 return expr;
648 if (expr == error_mark_node)
649 return expr;
650 result = cp_convert (type, expr, complain);
652 if ((complain & tf_warning)
653 && c_inhibit_evaluation_warnings == 0)
655 tree folded = cp_fully_fold (expr);
656 tree folded_result;
657 if (folded == expr)
658 folded_result = result;
659 else
661 /* Avoid bogus -Wparentheses warnings. */
662 warning_sentinel w (warn_parentheses);
663 warning_sentinel c (warn_int_in_bool_context);
664 folded_result = cp_convert (type, folded, tf_none);
666 folded_result = fold_simple (folded_result);
667 if (!TREE_OVERFLOW_P (folded)
668 && folded_result != error_mark_node)
669 warnings_for_convert_and_check (EXPR_LOC_OR_LOC (expr, input_location),
670 type, folded, folded_result);
673 return result;
676 /* Conversion...
678 FLAGS indicates how we should behave. */
680 tree
681 ocp_convert (tree type, tree expr, int convtype, int flags,
682 tsubst_flags_t complain)
684 tree e = expr;
685 enum tree_code code = TREE_CODE (type);
686 const char *invalid_conv_diag;
687 tree e1;
688 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
689 bool dofold = (convtype & CONV_FOLD);
691 if (error_operand_p (e) || type == error_mark_node)
692 return error_mark_node;
694 complete_type (type);
695 complete_type (TREE_TYPE (expr));
697 if ((invalid_conv_diag
698 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
700 if (complain & tf_error)
701 error (invalid_conv_diag);
702 return error_mark_node;
705 /* FIXME remove when moving to c_fully_fold model. */
706 if (!CLASS_TYPE_P (type))
708 e = mark_rvalue_use (e);
709 e = scalar_constant_value (e);
711 if (error_operand_p (e))
712 return error_mark_node;
714 if (NULLPTR_TYPE_P (type) && null_ptr_cst_p (e))
716 if (complain & tf_warning)
717 maybe_warn_zero_as_null_pointer_constant (e, loc);
719 if (!TREE_SIDE_EFFECTS (e))
720 return nullptr_node;
723 if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP))
724 /* We need a new temporary; don't take this shortcut. */;
725 else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
727 if (same_type_p (type, TREE_TYPE (e)))
728 /* The call to fold will not always remove the NOP_EXPR as
729 might be expected, since if one of the types is a typedef;
730 the comparison in fold is just equality of pointers, not a
731 call to comptypes. We don't call fold in this case because
732 that can result in infinite recursion; fold will call
733 convert, which will call ocp_convert, etc. */
734 return e;
735 /* For complex data types, we need to perform componentwise
736 conversion. */
737 else if (TREE_CODE (type) == COMPLEX_TYPE)
738 return convert_to_complex_maybe_fold (type, e, dofold);
739 else if (VECTOR_TYPE_P (type))
740 return convert_to_vector (type, e);
741 else if (TREE_CODE (e) == TARGET_EXPR)
743 /* Don't build a NOP_EXPR of class type. Instead, change the
744 type of the temporary. */
745 TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
746 return e;
748 else
750 /* We shouldn't be treating objects of ADDRESSABLE type as
751 rvalues. */
752 gcc_assert (!TREE_ADDRESSABLE (type));
753 return build_nop (type, e);
757 e1 = targetm.convert_to_type (type, e);
758 if (e1)
759 return e1;
761 if (code == VOID_TYPE && (convtype & CONV_STATIC))
763 e = convert_to_void (e, ICV_CAST, complain);
764 return e;
767 if (INTEGRAL_CODE_P (code))
769 tree intype = TREE_TYPE (e);
770 tree converted;
772 if (TREE_CODE (type) == ENUMERAL_TYPE)
774 /* enum = enum, enum = int, enum = float, (enum)pointer are all
775 errors. */
776 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
777 || TREE_CODE (intype) == REAL_TYPE)
778 && ! (convtype & CONV_STATIC))
779 || TYPE_PTR_P (intype))
781 if (complain & tf_error)
782 permerror (loc, "conversion from %q#T to %q#T", intype, type);
783 else
784 return error_mark_node;
787 /* [expr.static.cast]
789 8. A value of integral or enumeration type can be explicitly
790 converted to an enumeration type. The value is unchanged if
791 the original value is within the range of the enumeration
792 values. Otherwise, the resulting enumeration value is
793 unspecified. */
794 if ((complain & tf_warning)
795 && TREE_CODE (e) == INTEGER_CST
796 && ENUM_UNDERLYING_TYPE (type)
797 && !int_fits_type_p (e, ENUM_UNDERLYING_TYPE (type)))
798 warning_at (loc, OPT_Wconversion,
799 "the result of the conversion is unspecified because "
800 "%qE is outside the range of type %qT",
801 expr, type);
803 if (MAYBE_CLASS_TYPE_P (intype))
805 tree rval;
806 rval = build_type_conversion (type, e);
807 if (rval)
808 return rval;
809 if (complain & tf_error)
810 error_at (loc, "%q#T used where a %qT was expected", intype, type);
811 return error_mark_node;
813 if (code == BOOLEAN_TYPE)
815 if (VOID_TYPE_P (intype))
817 if (complain & tf_error)
818 error_at (loc,
819 "could not convert %qE from %<void%> to %<bool%>",
820 expr);
821 return error_mark_node;
824 /* We can't implicitly convert a scoped enum to bool, so convert
825 to the underlying type first. */
826 if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
827 e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
828 if (complain & tf_warning)
829 return cp_truthvalue_conversion (e);
830 else
832 /* Prevent bogus -Wint-in-bool-context warnings coming
833 from c_common_truthvalue_conversion down the line. */
834 warning_sentinel w (warn_int_in_bool_context);
835 return cp_truthvalue_conversion (e);
839 converted = convert_to_integer_maybe_fold (type, e, dofold);
841 /* Ignore any integer overflow caused by the conversion. */
842 return ignore_overflows (converted, e);
844 if (POINTER_TYPE_P (type) || TYPE_PTRMEM_P (type))
845 return cp_convert_to_pointer (type, e, dofold, complain);
846 if (code == VECTOR_TYPE)
848 tree in_vtype = TREE_TYPE (e);
849 if (MAYBE_CLASS_TYPE_P (in_vtype))
851 tree ret_val;
852 ret_val = build_type_conversion (type, e);
853 if (ret_val)
854 return ret_val;
855 if (complain & tf_error)
856 error_at (loc, "%q#T used where a %qT was expected",
857 in_vtype, type);
858 return error_mark_node;
860 return convert_to_vector (type, e);
862 if (code == REAL_TYPE || code == COMPLEX_TYPE)
864 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
866 tree rval;
867 rval = build_type_conversion (type, e);
868 if (rval)
869 return rval;
870 else if (complain & tf_error)
871 error_at (loc,
872 "%q#T used where a floating point value was expected",
873 TREE_TYPE (e));
875 if (code == REAL_TYPE)
876 return convert_to_real_maybe_fold (type, e, dofold);
877 else if (code == COMPLEX_TYPE)
878 return convert_to_complex_maybe_fold (type, e, dofold);
881 /* New C++ semantics: since assignment is now based on
882 memberwise copying, if the rhs type is derived from the
883 lhs type, then we may still do a conversion. */
884 if (RECORD_OR_UNION_CODE_P (code))
886 tree dtype = TREE_TYPE (e);
887 tree ctor = NULL_TREE;
889 dtype = TYPE_MAIN_VARIANT (dtype);
891 /* Conversion between aggregate types. New C++ semantics allow
892 objects of derived type to be cast to objects of base type.
893 Old semantics only allowed this between pointers.
895 There may be some ambiguity between using a constructor
896 vs. using a type conversion operator when both apply. */
898 ctor = e;
900 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
901 return error_mark_node;
903 if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
904 ctor = perform_implicit_conversion (type, ctor, complain);
905 else if ((flags & LOOKUP_ONLYCONVERTING)
906 && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
907 /* For copy-initialization, first we create a temp of the proper type
908 with a user-defined conversion sequence, then we direct-initialize
909 the target with the temp (see [dcl.init]). */
910 ctor = build_user_type_conversion (type, ctor, flags, complain);
911 else
913 vec<tree, va_gc> *ctor_vec = make_tree_vector_single (ctor);
914 ctor = build_special_member_call (NULL_TREE,
915 complete_ctor_identifier,
916 &ctor_vec,
917 type, flags, complain);
918 release_tree_vector (ctor_vec);
920 if (ctor)
921 return build_cplus_new (type, ctor, complain);
924 if (complain & tf_error)
926 /* If the conversion failed and expr was an invalid use of pointer to
927 member function, try to report a meaningful error. */
928 if (invalid_nonstatic_memfn_p (loc, expr, complain))
929 /* We displayed the error message. */;
930 else
931 error_at (loc, "conversion from %qH to non-scalar type %qI requested",
932 TREE_TYPE (expr), type);
934 return error_mark_node;
937 /* If CALL is a call, return the callee; otherwise null. */
939 tree
940 cp_get_callee (tree call)
942 if (call == NULL_TREE)
943 return call;
944 else if (TREE_CODE (call) == CALL_EXPR)
945 return CALL_EXPR_FN (call);
946 else if (TREE_CODE (call) == AGGR_INIT_EXPR)
947 return AGGR_INIT_EXPR_FN (call);
948 return NULL_TREE;
951 /* FN is the callee of a CALL_EXPR or AGGR_INIT_EXPR; return the FUNCTION_DECL
952 if we can. */
954 tree
955 cp_get_fndecl_from_callee (tree fn, bool fold /* = true */)
957 if (fn == NULL_TREE)
958 return fn;
959 if (TREE_CODE (fn) == FUNCTION_DECL)
960 return fn;
961 tree type = TREE_TYPE (fn);
962 if (type == unknown_type_node)
963 return NULL_TREE;
964 gcc_assert (POINTER_TYPE_P (type));
965 if (fold)
966 fn = maybe_constant_init (fn);
967 STRIP_NOPS (fn);
968 if (TREE_CODE (fn) == ADDR_EXPR)
970 fn = TREE_OPERAND (fn, 0);
971 if (TREE_CODE (fn) == FUNCTION_DECL)
972 return fn;
974 return NULL_TREE;
977 /* Like get_callee_fndecl, but handles AGGR_INIT_EXPR as well and uses the
978 constexpr machinery. */
980 tree
981 cp_get_callee_fndecl (tree call)
983 return cp_get_fndecl_from_callee (cp_get_callee (call));
986 /* As above, but not using the constexpr machinery. */
988 tree
989 cp_get_callee_fndecl_nofold (tree call)
991 return cp_get_fndecl_from_callee (cp_get_callee (call), false);
994 /* Subroutine of convert_to_void. Warn if we're discarding something with
995 attribute [[nodiscard]]. */
997 static void
998 maybe_warn_nodiscard (tree expr, impl_conv_void implicit)
1000 tree call = expr;
1001 if (TREE_CODE (expr) == TARGET_EXPR)
1002 call = TARGET_EXPR_INITIAL (expr);
1003 location_t loc = EXPR_LOC_OR_LOC (call, input_location);
1004 tree callee = cp_get_callee (call);
1005 if (!callee)
1006 return;
1008 tree type = TREE_TYPE (callee);
1009 if (TYPE_PTRMEMFUNC_P (type))
1010 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
1011 if (POINTER_TYPE_P (type))
1012 type = TREE_TYPE (type);
1014 tree rettype = TREE_TYPE (type);
1015 tree fn = cp_get_fndecl_from_callee (callee);
1016 if (implicit != ICV_CAST && fn
1017 && lookup_attribute ("nodiscard", DECL_ATTRIBUTES (fn)))
1019 if (warning_at (loc, OPT_Wunused_result,
1020 "ignoring return value of %qD, "
1021 "declared with attribute nodiscard", fn))
1022 inform (DECL_SOURCE_LOCATION (fn), "declared here");
1024 else if (implicit != ICV_CAST
1025 && lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype)))
1027 if (warning_at (loc, OPT_Wunused_result,
1028 "ignoring returned value of type %qT, "
1029 "declared with attribute nodiscard", rettype))
1031 if (fn)
1032 inform (DECL_SOURCE_LOCATION (fn),
1033 "in call to %qD, declared here", fn);
1034 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype)),
1035 "%qT declared here", rettype);
1038 else if (TREE_CODE (expr) == TARGET_EXPR
1039 && lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (type)))
1041 /* The TARGET_EXPR confuses do_warn_unused_result into thinking that the
1042 result is used, so handle that case here. */
1043 if (fn)
1045 if (warning_at (loc, OPT_Wunused_result,
1046 "ignoring return value of %qD, "
1047 "declared with attribute warn_unused_result",
1048 fn))
1049 inform (DECL_SOURCE_LOCATION (fn), "declared here");
1051 else
1052 warning_at (loc, OPT_Wunused_result,
1053 "ignoring return value of function "
1054 "declared with attribute warn_unused_result");
1058 /* When an expression is used in a void context, its value is discarded and
1059 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
1060 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
1061 in a void context. The C++ standard does not define what an `access' to an
1062 object is, but there is reason to believe that it is the lvalue to rvalue
1063 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
1064 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
1065 indicates that volatile semantics should be the same between C and C++
1066 where ever possible. C leaves it implementation defined as to what
1067 constitutes an access to a volatile. So, we interpret `*vp' as a read of
1068 the volatile object `vp' points to, unless that is an incomplete type. For
1069 volatile references we do not do this interpretation, because that would
1070 make it impossible to ignore the reference return value from functions. We
1071 issue warnings in the confusing cases.
1073 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
1074 to void via a cast. If an expression is being implicitly converted, IMPLICIT
1075 indicates the context of the implicit conversion. */
1077 tree
1078 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
1080 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
1082 if (expr == error_mark_node
1083 || TREE_TYPE (expr) == error_mark_node)
1084 return error_mark_node;
1086 expr = maybe_undo_parenthesized_ref (expr);
1088 expr = mark_discarded_use (expr);
1089 if (implicit == ICV_CAST)
1090 /* An explicit cast to void avoids all -Wunused-but-set* warnings. */
1091 mark_exp_read (expr);
1093 if (!TREE_TYPE (expr))
1094 return expr;
1095 if (invalid_nonstatic_memfn_p (loc, expr, complain))
1096 return error_mark_node;
1097 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
1099 if (complain & tf_error)
1100 error_at (loc, "pseudo-destructor is not called");
1101 return error_mark_node;
1103 if (VOID_TYPE_P (TREE_TYPE (expr)))
1104 return expr;
1105 switch (TREE_CODE (expr))
1107 case COND_EXPR:
1109 /* The two parts of a cond expr might be separate lvalues. */
1110 tree op1 = TREE_OPERAND (expr,1);
1111 tree op2 = TREE_OPERAND (expr,2);
1112 bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
1113 || TREE_SIDE_EFFECTS (op2));
1114 tree new_op1, new_op2;
1115 new_op1 = NULL_TREE;
1116 if (implicit != ICV_CAST && !side_effects)
1118 if (op1)
1119 new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
1120 new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
1122 else
1124 if (op1)
1125 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1126 new_op2 = convert_to_void (op2, ICV_CAST, complain);
1129 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
1130 TREE_OPERAND (expr, 0), new_op1, new_op2);
1131 break;
1134 case COMPOUND_EXPR:
1136 /* The second part of a compound expr contains the value. */
1137 tree op1 = TREE_OPERAND (expr,1);
1138 tree new_op1;
1139 if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
1140 new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
1141 else
1142 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1144 if (new_op1 != op1)
1146 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
1147 TREE_OPERAND (expr, 0), new_op1);
1148 expr = t;
1151 break;
1154 case NON_LVALUE_EXPR:
1155 case NOP_EXPR:
1156 /* These have already decayed to rvalue. */
1157 break;
1159 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1160 maybe_warn_nodiscard (expr, implicit);
1161 break;
1163 case INDIRECT_REF:
1165 tree type = TREE_TYPE (expr);
1166 int is_reference = TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
1167 int is_volatile = TYPE_VOLATILE (type);
1168 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1170 /* Can't load the value if we don't know the type. */
1171 if (is_volatile && !is_complete)
1173 if (complain & tf_warning)
1174 switch (implicit)
1176 case ICV_CAST:
1177 warning_at (loc, 0, "conversion to void will not access "
1178 "object of incomplete type %qT", type);
1179 break;
1180 case ICV_SECOND_OF_COND:
1181 warning_at (loc, 0, "indirection will not access object of "
1182 "incomplete type %qT in second operand "
1183 "of conditional expression", type);
1184 break;
1185 case ICV_THIRD_OF_COND:
1186 warning_at (loc, 0, "indirection will not access object of "
1187 "incomplete type %qT in third operand "
1188 "of conditional expression", type);
1189 break;
1190 case ICV_RIGHT_OF_COMMA:
1191 warning_at (loc, 0, "indirection will not access object of "
1192 "incomplete type %qT in right operand of "
1193 "comma operator", type);
1194 break;
1195 case ICV_LEFT_OF_COMMA:
1196 warning_at (loc, 0, "indirection will not access object of "
1197 "incomplete type %qT in left operand of "
1198 "comma operator", type);
1199 break;
1200 case ICV_STATEMENT:
1201 warning_at (loc, 0, "indirection will not access object of "
1202 "incomplete type %qT in statement", type);
1203 break;
1204 case ICV_THIRD_IN_FOR:
1205 warning_at (loc, 0, "indirection will not access object of "
1206 "incomplete type %qT in for increment "
1207 "expression", type);
1208 break;
1209 default:
1210 gcc_unreachable ();
1213 /* Don't load the value if this is an implicit dereference, or if
1214 the type needs to be handled by ctors/dtors. */
1215 else if (is_volatile && is_reference)
1217 if (complain & tf_warning)
1218 switch (implicit)
1220 case ICV_CAST:
1221 warning_at (loc, 0, "conversion to void will not access "
1222 "object of type %qT", type);
1223 break;
1224 case ICV_SECOND_OF_COND:
1225 warning_at (loc, 0, "implicit dereference will not access "
1226 "object of type %qT in second operand of "
1227 "conditional expression", type);
1228 break;
1229 case ICV_THIRD_OF_COND:
1230 warning_at (loc, 0, "implicit dereference will not access "
1231 "object of type %qT in third operand of "
1232 "conditional expression", type);
1233 break;
1234 case ICV_RIGHT_OF_COMMA:
1235 warning_at (loc, 0, "implicit dereference will not access "
1236 "object of type %qT in right operand of "
1237 "comma operator", type);
1238 break;
1239 case ICV_LEFT_OF_COMMA:
1240 warning_at (loc, 0, "implicit dereference will not access "
1241 "object of type %qT in left operand of comma "
1242 "operator", type);
1243 break;
1244 case ICV_STATEMENT:
1245 warning_at (loc, 0, "implicit dereference will not access "
1246 "object of type %qT in statement", type);
1247 break;
1248 case ICV_THIRD_IN_FOR:
1249 warning_at (loc, 0, "implicit dereference will not access "
1250 "object of type %qT in for increment expression",
1251 type);
1252 break;
1253 default:
1254 gcc_unreachable ();
1257 else if (is_volatile && TREE_ADDRESSABLE (type))
1259 if (complain & tf_warning)
1260 switch (implicit)
1262 case ICV_CAST:
1263 warning_at (loc, 0, "conversion to void will not access "
1264 "object of non-trivially-copyable type %qT",
1265 type);
1266 break;
1267 case ICV_SECOND_OF_COND:
1268 warning_at (loc, 0, "indirection will not access object of "
1269 "non-trivially-copyable type %qT in second "
1270 "operand of conditional expression", type);
1271 break;
1272 case ICV_THIRD_OF_COND:
1273 warning_at (loc, 0, "indirection will not access object of "
1274 "non-trivially-copyable type %qT in third "
1275 "operand of conditional expression", type);
1276 break;
1277 case ICV_RIGHT_OF_COMMA:
1278 warning_at (loc, 0, "indirection will not access object of "
1279 "non-trivially-copyable type %qT in right "
1280 "operand of comma operator", type);
1281 break;
1282 case ICV_LEFT_OF_COMMA:
1283 warning_at (loc, 0, "indirection will not access object of "
1284 "non-trivially-copyable type %qT in left "
1285 "operand of comma operator", type);
1286 break;
1287 case ICV_STATEMENT:
1288 warning_at (loc, 0, "indirection will not access object of "
1289 "non-trivially-copyable type %qT in statement",
1290 type);
1291 break;
1292 case ICV_THIRD_IN_FOR:
1293 warning_at (loc, 0, "indirection will not access object of "
1294 "non-trivially-copyable type %qT in for "
1295 "increment expression", type);
1296 break;
1297 default:
1298 gcc_unreachable ();
1301 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1303 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1304 operation is stripped off. Note that we don't warn about
1305 - an expression with TREE_NO_WARNING set. (For an example of
1306 such expressions, see build_over_call in call.c.)
1307 - automatic dereferencing of references, since the user cannot
1308 control it. (See also warn_if_unused_value() in c-common.c.) */
1309 if (warn_unused_value
1310 && implicit != ICV_CAST
1311 && (complain & tf_warning)
1312 && !TREE_NO_WARNING (expr)
1313 && !is_reference)
1314 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1315 expr = TREE_OPERAND (expr, 0);
1316 if (TREE_CODE (expr) == CALL_EXPR)
1317 maybe_warn_nodiscard (expr, implicit);
1320 break;
1323 case VAR_DECL:
1325 /* External variables might be incomplete. */
1326 tree type = TREE_TYPE (expr);
1327 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1329 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1330 switch (implicit)
1332 case ICV_CAST:
1333 warning_at (loc, 0, "conversion to void will not access "
1334 "object %qE of incomplete type %qT", expr, type);
1335 break;
1336 case ICV_SECOND_OF_COND:
1337 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1338 "not be accessed in second operand of "
1339 "conditional expression", expr, type);
1340 break;
1341 case ICV_THIRD_OF_COND:
1342 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1343 "not be accessed in third operand of "
1344 "conditional expression", expr, type);
1345 break;
1346 case ICV_RIGHT_OF_COMMA:
1347 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1348 "not be accessed in right operand of comma operator",
1349 expr, type);
1350 break;
1351 case ICV_LEFT_OF_COMMA:
1352 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1353 "not be accessed in left operand of comma operator",
1354 expr, type);
1355 break;
1356 case ICV_STATEMENT:
1357 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1358 "not be accessed in statement", expr, type);
1359 break;
1360 case ICV_THIRD_IN_FOR:
1361 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1362 "not be accessed in for increment expression",
1363 expr, type);
1364 break;
1365 default:
1366 gcc_unreachable ();
1369 break;
1372 case TARGET_EXPR:
1373 /* Don't bother with the temporary object returned from a function if
1374 we don't use it, don't need to destroy it, and won't abort in
1375 assign_temp. We'll still
1376 allocate space for it in expand_call or declare_return_variable,
1377 but we don't need to track it through all the tree phases. */
1378 if (TARGET_EXPR_IMPLICIT_P (expr)
1379 && !TREE_ADDRESSABLE (TREE_TYPE (expr)))
1381 tree init = TARGET_EXPR_INITIAL (expr);
1382 if (TREE_CODE (init) == AGGR_INIT_EXPR
1383 && !AGGR_INIT_VIA_CTOR_P (init))
1385 tree fn = AGGR_INIT_EXPR_FN (init);
1386 expr = build_call_array_loc (input_location,
1387 TREE_TYPE (TREE_TYPE
1388 (TREE_TYPE (fn))),
1390 aggr_init_expr_nargs (init),
1391 AGGR_INIT_EXPR_ARGP (init));
1394 maybe_warn_nodiscard (expr, implicit);
1395 break;
1397 default:;
1399 expr = resolve_nondeduced_context (expr, complain);
1401 tree probe = expr;
1403 if (TREE_CODE (probe) == ADDR_EXPR)
1404 probe = TREE_OPERAND (expr, 0);
1405 if (type_unknown_p (probe))
1407 /* [over.over] enumerates the places where we can take the address
1408 of an overloaded function, and this is not one of them. */
1409 if (complain & tf_error)
1410 switch (implicit)
1412 case ICV_CAST:
1413 error_at (loc, "conversion to void "
1414 "cannot resolve address of overloaded function");
1415 break;
1416 case ICV_SECOND_OF_COND:
1417 error_at (loc, "second operand of conditional expression "
1418 "cannot resolve address of overloaded function");
1419 break;
1420 case ICV_THIRD_OF_COND:
1421 error_at (loc, "third operand of conditional expression "
1422 "cannot resolve address of overloaded function");
1423 break;
1424 case ICV_RIGHT_OF_COMMA:
1425 error_at (loc, "right operand of comma operator "
1426 "cannot resolve address of overloaded function");
1427 break;
1428 case ICV_LEFT_OF_COMMA:
1429 error_at (loc, "left operand of comma operator "
1430 "cannot resolve address of overloaded function");
1431 break;
1432 case ICV_STATEMENT:
1433 error_at (loc, "statement "
1434 "cannot resolve address of overloaded function");
1435 break;
1436 case ICV_THIRD_IN_FOR:
1437 error_at (loc, "for increment expression "
1438 "cannot resolve address of overloaded function");
1439 break;
1441 else
1442 return error_mark_node;
1443 expr = void_node;
1445 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1447 /* Only warn when there is no &. */
1448 if (complain & tf_warning)
1449 switch (implicit)
1451 case ICV_SECOND_OF_COND:
1452 warning_at (loc, OPT_Waddress,
1453 "second operand of conditional expression "
1454 "is a reference, not call, to function %qE", expr);
1455 break;
1456 case ICV_THIRD_OF_COND:
1457 warning_at (loc, OPT_Waddress,
1458 "third operand of conditional expression "
1459 "is a reference, not call, to function %qE", expr);
1460 break;
1461 case ICV_RIGHT_OF_COMMA:
1462 warning_at (loc, OPT_Waddress,
1463 "right operand of comma operator "
1464 "is a reference, not call, to function %qE", expr);
1465 break;
1466 case ICV_LEFT_OF_COMMA:
1467 warning_at (loc, OPT_Waddress,
1468 "left operand of comma operator "
1469 "is a reference, not call, to function %qE", expr);
1470 break;
1471 case ICV_STATEMENT:
1472 warning_at (loc, OPT_Waddress,
1473 "statement is a reference, not call, to function %qE",
1474 expr);
1475 break;
1476 case ICV_THIRD_IN_FOR:
1477 warning_at (loc, OPT_Waddress,
1478 "for increment expression "
1479 "is a reference, not call, to function %qE", expr);
1480 break;
1481 default:
1482 gcc_unreachable ();
1485 if (TREE_CODE (expr) == COMPONENT_REF)
1486 expr = TREE_OPERAND (expr, 0);
1490 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1492 if (implicit != ICV_CAST
1493 && warn_unused_value
1494 && !TREE_NO_WARNING (expr)
1495 && !processing_template_decl)
1497 /* The middle end does not warn about expressions that have
1498 been explicitly cast to void, so we must do so here. */
1499 if (!TREE_SIDE_EFFECTS (expr)) {
1500 if (complain & tf_warning)
1501 switch (implicit)
1503 case ICV_SECOND_OF_COND:
1504 warning_at (loc, OPT_Wunused_value,
1505 "second operand of conditional expression "
1506 "has no effect");
1507 break;
1508 case ICV_THIRD_OF_COND:
1509 warning_at (loc, OPT_Wunused_value,
1510 "third operand of conditional expression "
1511 "has no effect");
1512 break;
1513 case ICV_RIGHT_OF_COMMA:
1514 warning_at (loc, OPT_Wunused_value,
1515 "right operand of comma operator has no effect");
1516 break;
1517 case ICV_LEFT_OF_COMMA:
1518 warning_at (loc, OPT_Wunused_value,
1519 "left operand of comma operator has no effect");
1520 break;
1521 case ICV_STATEMENT:
1522 warning_at (loc, OPT_Wunused_value,
1523 "statement has no effect");
1524 break;
1525 case ICV_THIRD_IN_FOR:
1526 warning_at (loc, OPT_Wunused_value,
1527 "for increment expression has no effect");
1528 break;
1529 default:
1530 gcc_unreachable ();
1533 else
1535 tree e;
1536 enum tree_code code;
1537 enum tree_code_class tclass;
1539 e = expr;
1540 /* We might like to warn about (say) "(int) f()", as the
1541 cast has no effect, but the compiler itself will
1542 generate implicit conversions under some
1543 circumstances. (For example a block copy will be
1544 turned into a call to "__builtin_memcpy", with a
1545 conversion of the return value to an appropriate
1546 type.) So, to avoid false positives, we strip
1547 conversions. Do not use STRIP_NOPs because it will
1548 not strip conversions to "void", as that is not a
1549 mode-preserving conversion. */
1550 while (TREE_CODE (e) == NOP_EXPR)
1551 e = TREE_OPERAND (e, 0);
1553 code = TREE_CODE (e);
1554 tclass = TREE_CODE_CLASS (code);
1555 if ((tclass == tcc_comparison
1556 || tclass == tcc_unary
1557 || (tclass == tcc_binary
1558 && !(code == MODIFY_EXPR
1559 || code == INIT_EXPR
1560 || code == PREDECREMENT_EXPR
1561 || code == PREINCREMENT_EXPR
1562 || code == POSTDECREMENT_EXPR
1563 || code == POSTINCREMENT_EXPR))
1564 || code == VEC_PERM_EXPR
1565 || code == VEC_COND_EXPR)
1566 && (complain & tf_warning))
1567 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1570 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1572 if (! TREE_SIDE_EFFECTS (expr))
1573 expr = void_node;
1574 return expr;
1577 /* Create an expression whose value is that of EXPR,
1578 converted to type TYPE. The TREE_TYPE of the value
1579 is always TYPE. This function implements all reasonable
1580 conversions; callers should filter out those that are
1581 not permitted by the language being compiled.
1583 Most of this routine is from build_reinterpret_cast.
1585 The back end cannot call cp_convert (what was convert) because
1586 conversions to/from basetypes may involve memory references
1587 (vbases) and adding or subtracting small values (multiple
1588 inheritance), but it calls convert from the constant folding code
1589 on subtrees of already built trees after it has ripped them apart.
1591 Also, if we ever support range variables, we'll probably also have to
1592 do a little bit more work. */
1594 tree
1595 convert (tree type, tree expr)
1597 tree intype;
1599 if (type == error_mark_node || expr == error_mark_node)
1600 return error_mark_node;
1602 intype = TREE_TYPE (expr);
1604 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1605 return build_nop (type, expr);
1607 return ocp_convert (type, expr, CONV_BACKEND_CONVERT,
1608 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1609 tf_warning_or_error);
1612 /* Like cp_convert, except permit conversions to take place which
1613 are not normally allowed due to access restrictions
1614 (such as conversion from sub-type to private super-type). */
1616 tree
1617 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1619 tree e = expr;
1620 enum tree_code code = TREE_CODE (type);
1622 if (code == REFERENCE_TYPE)
1623 return convert_to_reference (type, e, CONV_C_CAST, 0,
1624 NULL_TREE, complain);
1626 if (code == POINTER_TYPE)
1627 return convert_to_pointer_force (type, e, complain);
1629 /* From typeck.c convert_for_assignment */
1630 if (((TYPE_PTR_P (TREE_TYPE (e)) && TREE_CODE (e) == ADDR_EXPR
1631 && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1632 || integer_zerop (e)
1633 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1634 && TYPE_PTRMEMFUNC_P (type))
1635 /* compatible pointer to member functions. */
1636 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1637 /*c_cast_p=*/1, complain);
1639 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1642 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1643 exists, return the attempted conversion. This may
1644 return ERROR_MARK_NODE if the conversion is not
1645 allowed (references private members, etc).
1646 If no conversion exists, NULL_TREE is returned.
1648 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1649 object parameter, or by the second standard conversion sequence if
1650 that doesn't do it. This will probably wait for an overloading rewrite.
1651 (jason 8/9/95) */
1653 static tree
1654 build_type_conversion (tree xtype, tree expr)
1656 /* C++: check to see if we can convert this aggregate type
1657 into the required type. */
1658 return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL,
1659 tf_warning_or_error);
1662 /* Convert the given EXPR to one of a group of types suitable for use in an
1663 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1664 which indicates which types are suitable. If COMPLAIN is true, complain
1665 about ambiguity; otherwise, the caller will deal with it. */
1667 tree
1668 build_expr_type_conversion (int desires, tree expr, bool complain)
1670 tree basetype = TREE_TYPE (expr);
1671 tree conv = NULL_TREE;
1672 tree winner = NULL_TREE;
1674 if (null_node_p (expr)
1675 && (desires & WANT_INT)
1676 && !(desires & WANT_NULL))
1678 source_location loc =
1679 expansion_point_location_if_in_system_header (input_location);
1681 warning_at (loc, OPT_Wconversion_null,
1682 "converting NULL to non-pointer type");
1685 if (basetype == error_mark_node)
1686 return error_mark_node;
1688 if (! MAYBE_CLASS_TYPE_P (basetype))
1689 switch (TREE_CODE (basetype))
1691 case INTEGER_TYPE:
1692 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1693 return expr;
1694 /* fall through. */
1696 case BOOLEAN_TYPE:
1697 return (desires & WANT_INT) ? expr : NULL_TREE;
1698 case ENUMERAL_TYPE:
1699 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1700 case REAL_TYPE:
1701 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1702 case POINTER_TYPE:
1703 return (desires & WANT_POINTER) ? expr : NULL_TREE;
1705 case FUNCTION_TYPE:
1706 case ARRAY_TYPE:
1707 return (desires & WANT_POINTER) ? decay_conversion (expr,
1708 tf_warning_or_error)
1709 : NULL_TREE;
1711 case COMPLEX_TYPE:
1712 case VECTOR_TYPE:
1713 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1714 return NULL_TREE;
1715 switch (TREE_CODE (TREE_TYPE (basetype)))
1717 case INTEGER_TYPE:
1718 case BOOLEAN_TYPE:
1719 return (desires & WANT_INT) ? expr : NULL_TREE;
1720 case ENUMERAL_TYPE:
1721 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1722 case REAL_TYPE:
1723 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1724 default:
1725 return NULL_TREE;
1728 default:
1729 return NULL_TREE;
1732 /* The code for conversions from class type is currently only used for
1733 delete expressions. Other expressions are handled by build_new_op. */
1734 if (!complete_type_or_maybe_complain (basetype, expr, complain))
1735 return error_mark_node;
1736 if (!TYPE_HAS_CONVERSION (basetype))
1737 return NULL_TREE;
1739 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1741 int win = 0;
1742 tree candidate;
1743 tree cand = TREE_VALUE (conv);
1744 cand = OVL_FIRST (cand);
1746 if (winner && winner == cand)
1747 continue;
1749 if (DECL_NONCONVERTING_P (cand))
1750 continue;
1752 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1754 switch (TREE_CODE (candidate))
1756 case BOOLEAN_TYPE:
1757 case INTEGER_TYPE:
1758 win = (desires & WANT_INT); break;
1759 case ENUMERAL_TYPE:
1760 win = (desires & WANT_ENUM); break;
1761 case REAL_TYPE:
1762 win = (desires & WANT_FLOAT); break;
1763 case POINTER_TYPE:
1764 win = (desires & WANT_POINTER); break;
1766 case COMPLEX_TYPE:
1767 case VECTOR_TYPE:
1768 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1769 break;
1770 switch (TREE_CODE (TREE_TYPE (candidate)))
1772 case BOOLEAN_TYPE:
1773 case INTEGER_TYPE:
1774 win = (desires & WANT_INT); break;
1775 case ENUMERAL_TYPE:
1776 win = (desires & WANT_ENUM); break;
1777 case REAL_TYPE:
1778 win = (desires & WANT_FLOAT); break;
1779 default:
1780 break;
1782 break;
1784 default:
1785 /* A wildcard could be instantiated to match any desired
1786 type, but we can't deduce the template argument. */
1787 if (WILDCARD_TYPE_P (candidate))
1788 win = true;
1789 break;
1792 if (win)
1794 if (TREE_CODE (cand) == TEMPLATE_DECL)
1796 if (complain)
1797 error ("default type conversion can't deduce template"
1798 " argument for %qD", cand);
1799 return error_mark_node;
1802 if (winner)
1804 tree winner_type
1805 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1807 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1808 candidate))
1810 if (complain)
1812 error ("ambiguous default type conversion from %qT",
1813 basetype);
1814 inform (input_location,
1815 " candidate conversions include %qD and %qD",
1816 winner, cand);
1818 return error_mark_node;
1822 winner = cand;
1826 if (winner)
1828 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1829 return build_user_type_conversion (type, expr, LOOKUP_NORMAL,
1830 tf_warning_or_error);
1833 return NULL_TREE;
1836 /* Implements integral promotion (4.1) and float->double promotion. */
1838 tree
1839 type_promotes_to (tree type)
1841 tree promoted_type;
1843 if (type == error_mark_node)
1844 return error_mark_node;
1846 type = TYPE_MAIN_VARIANT (type);
1848 /* Check for promotions of target-defined types first. */
1849 promoted_type = targetm.promoted_type (type);
1850 if (promoted_type)
1851 return promoted_type;
1853 /* bool always promotes to int (not unsigned), even if it's the same
1854 size. */
1855 if (TREE_CODE (type) == BOOLEAN_TYPE)
1856 type = integer_type_node;
1858 /* Normally convert enums to int, but convert wide enums to something
1859 wider. Scoped enums don't promote, but pretend they do for backward
1860 ABI bug compatibility wrt varargs. */
1861 else if (TREE_CODE (type) == ENUMERAL_TYPE
1862 || type == char16_type_node
1863 || type == char32_type_node
1864 || type == wchar_type_node)
1866 tree prom = type;
1868 if (TREE_CODE (type) == ENUMERAL_TYPE)
1870 prom = ENUM_UNDERLYING_TYPE (prom);
1871 if (!ENUM_IS_SCOPED (type)
1872 && ENUM_FIXED_UNDERLYING_TYPE_P (type))
1874 /* ISO C++17, 7.6/4. A prvalue of an unscoped enumeration type
1875 whose underlying type is fixed (10.2) can be converted to a
1876 prvalue of its underlying type. Moreover, if integral promotion
1877 can be applied to its underlying type, a prvalue of an unscoped
1878 enumeration type whose underlying type is fixed can also be
1879 converted to a prvalue of the promoted underlying type. */
1880 return type_promotes_to (prom);
1884 int precision = MAX (TYPE_PRECISION (type),
1885 TYPE_PRECISION (integer_type_node));
1886 tree totype = c_common_type_for_size (precision, 0);
1887 if (TYPE_UNSIGNED (prom)
1888 && ! int_fits_type_p (TYPE_MAX_VALUE (prom), totype))
1889 prom = c_common_type_for_size (precision, 1);
1890 else
1891 prom = totype;
1892 if (SCOPED_ENUM_P (type))
1894 if (abi_version_crosses (6)
1895 && TYPE_MODE (prom) != TYPE_MODE (type))
1896 warning (OPT_Wabi, "scoped enum %qT passed through ... as "
1897 "%qT before -fabi-version=6, %qT after",
1898 type, prom, ENUM_UNDERLYING_TYPE (type));
1899 if (!abi_version_at_least (6))
1900 type = prom;
1902 else
1903 type = prom;
1905 else if (c_promoting_integer_type_p (type))
1907 /* Retain unsignedness if really not getting bigger. */
1908 if (TYPE_UNSIGNED (type)
1909 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1910 type = unsigned_type_node;
1911 else
1912 type = integer_type_node;
1914 else if (type == float_type_node)
1915 type = double_type_node;
1917 return type;
1920 /* The routines below this point are carefully written to conform to
1921 the standard. They use the same terminology, and follow the rules
1922 closely. Although they are used only in pt.c at the moment, they
1923 should presumably be used everywhere in the future. */
1925 /* True iff EXPR can be converted to TYPE via a qualification conversion.
1926 Callers should check for identical types before calling this function. */
1928 bool
1929 can_convert_qual (tree type, tree expr)
1931 tree expr_type = TREE_TYPE (expr);
1932 gcc_assert (!same_type_p (type, expr_type));
1934 if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type))
1935 return comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type));
1936 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type))
1937 return (same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1938 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1939 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1940 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)));
1941 else
1942 return false;
1945 /* Attempt to perform qualification conversions on EXPR to convert it
1946 to TYPE. Return the resulting expression, or error_mark_node if
1947 the conversion was impossible. */
1949 tree
1950 perform_qualification_conversions (tree type, tree expr)
1952 tree expr_type;
1954 expr_type = TREE_TYPE (expr);
1956 if (same_type_p (type, expr_type))
1957 return expr;
1958 else if (can_convert_qual (type, expr))
1959 return build_nop (type, expr);
1960 else
1961 return error_mark_node;
1964 /* True iff T is a transaction-safe function type. */
1966 bool
1967 tx_safe_fn_type_p (tree t)
1969 if (TREE_CODE (t) != FUNCTION_TYPE
1970 && TREE_CODE (t) != METHOD_TYPE)
1971 return false;
1972 return !!lookup_attribute ("transaction_safe", TYPE_ATTRIBUTES (t));
1975 /* Return the transaction-unsafe variant of transaction-safe function type
1976 T. */
1978 tree
1979 tx_unsafe_fn_variant (tree t)
1981 gcc_assert (tx_safe_fn_type_p (t));
1982 tree attrs = remove_attribute ("transaction_safe",
1983 TYPE_ATTRIBUTES (t));
1984 return cp_build_type_attribute_variant (t, attrs);
1987 /* Return true iff FROM can convert to TO by a transaction-safety
1988 conversion. */
1990 static bool
1991 can_convert_tx_safety (tree to, tree from)
1993 return (flag_tm && tx_safe_fn_type_p (from)
1994 && same_type_p (to, tx_unsafe_fn_variant (from)));
1997 /* Return true iff FROM can convert to TO by dropping noexcept. */
1999 static bool
2000 noexcept_conv_p (tree to, tree from)
2002 if (!flag_noexcept_type)
2003 return false;
2005 tree t = non_reference (to);
2006 tree f = from;
2007 if (TYPE_PTRMEMFUNC_P (t)
2008 && TYPE_PTRMEMFUNC_P (f))
2010 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
2011 f = TYPE_PTRMEMFUNC_FN_TYPE (f);
2013 if (TYPE_PTR_P (t)
2014 && TYPE_PTR_P (f))
2016 t = TREE_TYPE (t);
2017 f = TREE_TYPE (f);
2019 tree_code code = TREE_CODE (f);
2020 if (TREE_CODE (t) != code)
2021 return false;
2022 if (code != FUNCTION_TYPE && code != METHOD_TYPE)
2023 return false;
2024 if (!type_throw_all_p (t)
2025 || type_throw_all_p (f))
2026 return false;
2027 tree v = build_exception_variant (f, NULL_TREE);
2028 return same_type_p (t, v);
2031 /* Return true iff FROM can convert to TO by a function pointer conversion. */
2033 bool
2034 fnptr_conv_p (tree to, tree from)
2036 tree t = non_reference (to);
2037 tree f = from;
2038 if (TYPE_PTRMEMFUNC_P (t)
2039 && TYPE_PTRMEMFUNC_P (f))
2041 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
2042 f = TYPE_PTRMEMFUNC_FN_TYPE (f);
2044 if (TYPE_PTR_P (t)
2045 && TYPE_PTR_P (f))
2047 t = TREE_TYPE (t);
2048 f = TREE_TYPE (f);
2051 return (noexcept_conv_p (t, f)
2052 || can_convert_tx_safety (t, f));
2055 /* Return FN with any NOP_EXPRs stripped that represent function pointer
2056 conversions or conversions to the same type. */
2058 tree
2059 strip_fnptr_conv (tree fn)
2061 while (TREE_CODE (fn) == NOP_EXPR)
2063 tree op = TREE_OPERAND (fn, 0);
2064 tree ft = TREE_TYPE (fn);
2065 tree ot = TREE_TYPE (op);
2066 if (same_type_p (ft, ot)
2067 || fnptr_conv_p (ft, ot))
2068 fn = op;
2069 else
2070 break;
2072 return fn;