1 /* Language-level data type conversion for GNU C++.
2 Copyright (C) 1987-2017 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)
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. */
29 #include "coretypes.h"
32 #include "stor-layout.h"
36 #include "stringpool.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
70 else if converting class, pass off to build_type_conversion
71 else try C-style pointer conversion. */
74 cp_convert_to_pointer (tree type
, tree expr
, bool dofold
,
75 tsubst_flags_t complain
)
77 tree intype
= TREE_TYPE (expr
);
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",
93 return error_mark_node
;
96 rval
= build_type_conversion (type
, expr
);
99 if ((complain
& tf_error
)
100 && rval
== error_mark_node
)
101 error_at (loc
, "conversion of %qE from %qH to %qI is ambiguous",
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
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
;
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
));
148 /* Try derived to base conversion. */
150 binfo
= lookup_base (intype_class
, type_class
, ba_check
,
152 if (!same_p
&& !binfo
)
154 /* Try base to derived conversion. */
155 binfo
= lookup_base (type_class
, intype_class
, ba_check
,
159 if (binfo
== error_mark_node
)
160 return error_mark_node
;
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",
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
))
188 if (TREE_CODE (expr
) == PTRMEM_CST
)
189 return cp_convert_to_pointer (type
, PTRMEM_CST_MEMBER (expr
),
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),
199 if (complain
& tf_error
)
200 error_at (loc
, "cannot convert %qE from type %qH to type %qI",
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
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
,
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
239 gcc_assert (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (expr
)))
240 == GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (type
)));
242 return convert_to_pointer_maybe_fold (type
, expr
, dofold
);
245 if (type_unknown_p (expr
))
246 return instantiate_type (type
, expr
, complain
);
248 if (complain
& tf_error
)
249 error_at (loc
, "cannot convert %qE from type %qH to type %qI",
251 return error_mark_node
;
254 /* Like convert, except permit conversions to take place which
255 are not normally allowed due to access restrictions
256 (such as conversion from sub-type to private super-type). */
259 convert_to_pointer_force (tree type
, tree expr
, tsubst_flags_t complain
)
261 tree intype
= TREE_TYPE (expr
);
262 enum tree_code form
= TREE_CODE (intype
);
264 if (form
== POINTER_TYPE
)
266 intype
= TYPE_MAIN_VARIANT (intype
);
268 if (TYPE_MAIN_VARIANT (type
) != intype
269 && TREE_CODE (TREE_TYPE (type
)) == RECORD_TYPE
270 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type
))
271 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype
))
272 && TREE_CODE (TREE_TYPE (intype
)) == RECORD_TYPE
)
274 enum tree_code code
= PLUS_EXPR
;
277 binfo
= lookup_base (TREE_TYPE (intype
), TREE_TYPE (type
),
278 ba_unique
, NULL
, complain
);
281 binfo
= lookup_base (TREE_TYPE (type
), TREE_TYPE (intype
),
282 ba_unique
, NULL
, complain
);
285 if (binfo
== error_mark_node
)
286 return error_mark_node
;
289 expr
= build_base_path (code
, expr
, binfo
, 0, complain
);
290 if (expr
== error_mark_node
)
291 return error_mark_node
;
292 /* Add any qualifier conversions. */
293 if (!same_type_p (TREE_TYPE (TREE_TYPE (expr
)),
295 expr
= build_nop (type
, expr
);
301 return cp_convert_to_pointer (type
, expr
, /*fold*/false, complain
);
304 /* We are passing something to a function which requires a reference.
305 The type we are interested in is in TYPE. The initial
306 value we have to begin with is in ARG.
308 FLAGS controls how we manage access checking.
309 DIRECT_BIND in FLAGS controls how any temporaries are generated.
310 If DIRECT_BIND is set, DECL is the reference we're binding to. */
313 build_up_reference (tree type
, tree arg
, int flags
, tree decl
,
314 tsubst_flags_t complain
)
317 tree argtype
= TREE_TYPE (arg
);
318 tree target_type
= TREE_TYPE (type
);
320 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
322 if ((flags
& DIRECT_BIND
) && ! lvalue_p (arg
))
324 /* Create a new temporary variable. We can't just use a TARGET_EXPR
325 here because it needs to live as long as DECL. */
328 arg
= make_temporary_var_for_ref_to_temp (decl
, target_type
);
330 /* Process the initializer for the declaration. */
331 DECL_INITIAL (arg
) = targ
;
332 cp_finish_decl (arg
, targ
, /*init_const_expr_p=*/false, NULL_TREE
,
333 LOOKUP_ONLYCONVERTING
|DIRECT_BIND
);
335 else if (!(flags
& DIRECT_BIND
) && ! obvalue_p (arg
))
336 return get_target_expr_sfinae (arg
, complain
);
338 /* If we had a way to wrap this up, and say, if we ever needed its
339 address, transform all occurrences of the register, into a memory
340 reference we could win better. */
341 rval
= cp_build_addr_expr (arg
, complain
);
342 if (rval
== error_mark_node
)
343 return error_mark_node
;
345 if ((flags
& LOOKUP_PROTECT
)
346 && TYPE_MAIN_VARIANT (argtype
) != TYPE_MAIN_VARIANT (target_type
)
347 && MAYBE_CLASS_TYPE_P (argtype
)
348 && MAYBE_CLASS_TYPE_P (target_type
))
350 /* We go through lookup_base for the access control. */
351 tree binfo
= lookup_base (argtype
, target_type
, ba_check
,
353 if (binfo
== error_mark_node
)
354 return error_mark_node
;
355 if (binfo
== NULL_TREE
)
356 return error_not_base_type (target_type
, argtype
);
357 rval
= build_base_path (PLUS_EXPR
, rval
, binfo
, 1, complain
);
361 = convert_to_pointer_force (build_pointer_type (target_type
),
363 return build_nop (type
, rval
);
366 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
367 INTYPE is the original rvalue type and DECL is an optional _DECL node
370 [dcl.init.ref] says that if an rvalue is used to
371 initialize a reference, then the reference must be to a
372 non-volatile const type. */
375 diagnose_ref_binding (location_t loc
, tree reftype
, tree intype
, tree decl
)
377 tree ttl
= TREE_TYPE (reftype
);
379 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl
))
383 if (CP_TYPE_VOLATILE_P (ttl
) && decl
)
384 msg
= G_("initialization of volatile reference type %q#T from "
385 "rvalue of type %qT");
386 else if (CP_TYPE_VOLATILE_P (ttl
))
387 msg
= G_("conversion to volatile reference type %q#T "
388 "from rvalue of type %qT");
390 msg
= G_("initialization of non-const reference type %q#T from "
391 "rvalue of type %qT");
393 msg
= G_("conversion to non-const reference type %q#T from "
394 "rvalue of type %qT");
396 permerror (loc
, msg
, reftype
, intype
);
400 /* For C++: Only need to do one-level references, but cannot
401 get tripped up on signed/unsigned differences.
403 DECL is either NULL_TREE or the _DECL node for a reference that is being
404 initialized. It can be error_mark_node if we don't know the _DECL but
405 we know it's an initialization. */
408 convert_to_reference (tree reftype
, tree expr
, int convtype
,
409 int flags
, tree decl
, tsubst_flags_t complain
)
411 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (reftype
));
413 tree rval
= NULL_TREE
;
414 tree rval_as_conversion
= NULL_TREE
;
415 bool can_convert_intype_to_type
;
416 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
418 if (TREE_CODE (type
) == FUNCTION_TYPE
419 && TREE_TYPE (expr
) == unknown_type_node
)
420 expr
= instantiate_type (type
, expr
, complain
);
422 if (expr
== error_mark_node
)
423 return error_mark_node
;
425 intype
= TREE_TYPE (expr
);
427 gcc_assert (TREE_CODE (intype
) != REFERENCE_TYPE
);
428 gcc_assert (TREE_CODE (reftype
) == REFERENCE_TYPE
);
430 intype
= TYPE_MAIN_VARIANT (intype
);
432 can_convert_intype_to_type
= can_convert_standard (type
, intype
, complain
);
434 if (!can_convert_intype_to_type
435 && (convtype
& CONV_IMPLICIT
) && MAYBE_CLASS_TYPE_P (intype
)
436 && ! (flags
& LOOKUP_NO_CONVERSION
))
438 /* Look for a user-defined conversion to lvalue that we can use. */
441 = build_type_conversion (reftype
, expr
);
443 if (rval_as_conversion
&& rval_as_conversion
!= error_mark_node
444 && lvalue_p (rval_as_conversion
))
446 expr
= rval_as_conversion
;
447 rval_as_conversion
= NULL_TREE
;
449 can_convert_intype_to_type
= 1;
453 if (((convtype
& CONV_STATIC
)
454 && can_convert_standard (intype
, type
, complain
))
455 || ((convtype
& CONV_IMPLICIT
) && can_convert_intype_to_type
))
458 tree ttl
= TREE_TYPE (reftype
);
459 tree ttr
= lvalue_type (expr
);
461 if ((complain
& tf_error
)
462 && ! lvalue_p (expr
))
463 diagnose_ref_binding (loc
, reftype
, intype
, decl
);
465 if (! (convtype
& CONV_CONST
)
466 && !at_least_as_qualified_p (ttl
, ttr
))
468 if (complain
& tf_error
)
469 permerror (loc
, "conversion from %qH to %qI discards qualifiers",
472 return error_mark_node
;
476 return build_up_reference (reftype
, expr
, flags
, decl
, complain
);
478 else if ((convtype
& CONV_REINTERPRET
) && obvalue_p (expr
))
480 /* When casting an lvalue to a reference type, just convert into
481 a pointer to the new type and deference it. This is allowed
482 by San Diego WP section 5.2.9 paragraph 12, though perhaps it
483 should be done directly (jason). (int &)ri ---> *(int*)&ri */
485 /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
487 if ((complain
& tf_warning
)
488 && TYPE_PTR_P (intype
)
489 && (comptypes (TREE_TYPE (intype
), type
,
490 COMPARE_BASE
| COMPARE_DERIVED
)))
491 warning_at (loc
, 0, "casting %qT to %qT does not dereference pointer",
494 rval
= cp_build_addr_expr (expr
, complain
);
495 if (rval
!= error_mark_node
)
496 rval
= convert_force (build_pointer_type (TREE_TYPE (reftype
)),
498 if (rval
!= error_mark_node
)
499 rval
= build1 (NOP_EXPR
, reftype
, rval
);
503 rval
= convert_for_initialization (NULL_TREE
, type
, expr
, flags
,
504 ICR_CONVERTING
, 0, 0, complain
);
505 if (rval
== NULL_TREE
|| rval
== error_mark_node
)
507 if (complain
& tf_error
)
508 diagnose_ref_binding (loc
, reftype
, intype
, decl
);
509 rval
= build_up_reference (reftype
, rval
, flags
, decl
, complain
);
514 /* If we found a way to convert earlier, then use it. */
518 if (complain
& tf_error
)
519 error_at (loc
, "cannot convert type %qH to type %qI", intype
, reftype
);
521 return error_mark_node
;
524 /* We are using a reference VAL for its value. Bash that reference all the
525 way down to its lowest form. */
528 convert_from_reference (tree val
)
531 && TREE_CODE (TREE_TYPE (val
)) == REFERENCE_TYPE
)
533 tree t
= TREE_TYPE (TREE_TYPE (val
));
534 tree ref
= build1 (INDIRECT_REF
, t
, val
);
537 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
538 so that we get the proper error message if the result is used
539 to assign to. Also, &* is supposed to be a no-op. */
540 TREE_READONLY (ref
) = CP_TYPE_CONST_P (t
);
541 TREE_THIS_VOLATILE (ref
) = CP_TYPE_VOLATILE_P (t
);
542 TREE_SIDE_EFFECTS (ref
)
543 = (TREE_THIS_VOLATILE (ref
) || TREE_SIDE_EFFECTS (val
));
550 /* Really perform an lvalue-to-rvalue conversion, including copying an
551 argument of class type into a temporary. */
554 force_rvalue (tree expr
, tsubst_flags_t complain
)
556 tree type
= TREE_TYPE (expr
);
557 if (MAYBE_CLASS_TYPE_P (type
) && TREE_CODE (expr
) != TARGET_EXPR
)
559 vec
<tree
, va_gc
> *args
= make_tree_vector_single (expr
);
560 expr
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
561 &args
, type
, LOOKUP_NORMAL
, complain
);
562 release_tree_vector (args
);
563 expr
= build_cplus_new (type
, expr
, complain
);
566 expr
= decay_conversion (expr
, complain
);
572 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
573 TREE_OVERFLOW set only if it is set in ORIG. Otherwise, return EXPR
577 ignore_overflows (tree expr
, tree orig
)
579 if (TREE_CODE (expr
) == INTEGER_CST
580 && TREE_CODE (orig
) == INTEGER_CST
581 && TREE_OVERFLOW (expr
) != TREE_OVERFLOW (orig
))
583 gcc_assert (!TREE_OVERFLOW (orig
));
584 /* Ensure constant sharing. */
585 expr
= wide_int_to_tree (TREE_TYPE (expr
), wi::to_wide (expr
));
590 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
594 cp_fold_convert (tree type
, tree expr
)
597 if (TREE_TYPE (expr
) == type
)
599 else if (TREE_CODE (expr
) == PTRMEM_CST
)
601 /* Avoid wrapping a PTRMEM_CST in NOP_EXPR. */
602 conv
= copy_node (expr
);
603 TREE_TYPE (conv
) = type
;
607 conv
= fold_convert (type
, expr
);
608 conv
= ignore_overflows (conv
, expr
);
613 /* C++ conversions, preference to static cast conversions. */
616 cp_convert (tree type
, tree expr
, tsubst_flags_t complain
)
618 return ocp_convert (type
, expr
, CONV_OLD_CONVERT
, LOOKUP_NORMAL
, complain
);
621 /* C++ equivalent of convert_and_check but using cp_convert as the
624 Convert EXPR to TYPE, warning about conversion problems with constants.
625 Invoke this function on every expression that is converted implicitly,
626 i.e. because of language rules and not because of an explicit cast. */
629 cp_convert_and_check (tree type
, tree expr
, tsubst_flags_t complain
)
633 if (TREE_TYPE (expr
) == type
)
635 if (expr
== error_mark_node
)
637 result
= cp_convert (type
, expr
, complain
);
639 if ((complain
& tf_warning
)
640 && c_inhibit_evaluation_warnings
== 0)
642 tree folded
= cp_fully_fold (expr
);
645 folded_result
= result
;
648 /* Avoid bogus -Wparentheses warnings. */
649 warning_sentinel
w (warn_parentheses
);
650 warning_sentinel
c (warn_int_in_bool_context
);
651 folded_result
= cp_convert (type
, folded
, tf_none
);
653 folded_result
= fold_simple (folded_result
);
654 if (!TREE_OVERFLOW_P (folded
)
655 && folded_result
!= error_mark_node
)
656 warnings_for_convert_and_check (EXPR_LOC_OR_LOC (expr
, input_location
),
657 type
, folded
, folded_result
);
665 FLAGS indicates how we should behave. */
668 ocp_convert (tree type
, tree expr
, int convtype
, int flags
,
669 tsubst_flags_t complain
)
672 enum tree_code code
= TREE_CODE (type
);
673 const char *invalid_conv_diag
;
675 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
676 bool dofold
= (convtype
& CONV_FOLD
);
678 if (error_operand_p (e
) || type
== error_mark_node
)
679 return error_mark_node
;
681 complete_type (type
);
682 complete_type (TREE_TYPE (expr
));
684 if ((invalid_conv_diag
685 = targetm
.invalid_conversion (TREE_TYPE (expr
), type
)))
687 if (complain
& tf_error
)
688 error (invalid_conv_diag
);
689 return error_mark_node
;
692 /* FIXME remove when moving to c_fully_fold model. */
693 if (!CLASS_TYPE_P (type
))
694 e
= scalar_constant_value (e
);
695 if (error_operand_p (e
))
696 return error_mark_node
;
698 if (MAYBE_CLASS_TYPE_P (type
) && (convtype
& CONV_FORCE_TEMP
))
699 /* We need a new temporary; don't take this shortcut. */;
700 else if (same_type_ignoring_top_level_qualifiers_p (type
, TREE_TYPE (e
)))
702 if (same_type_p (type
, TREE_TYPE (e
)))
703 /* The call to fold will not always remove the NOP_EXPR as
704 might be expected, since if one of the types is a typedef;
705 the comparison in fold is just equality of pointers, not a
706 call to comptypes. We don't call fold in this case because
707 that can result in infinite recursion; fold will call
708 convert, which will call ocp_convert, etc. */
710 /* For complex data types, we need to perform componentwise
712 else if (TREE_CODE (type
) == COMPLEX_TYPE
)
713 return convert_to_complex_maybe_fold (type
, e
, dofold
);
714 else if (VECTOR_TYPE_P (type
))
715 return convert_to_vector (type
, e
);
716 else if (TREE_CODE (e
) == TARGET_EXPR
)
718 /* Don't build a NOP_EXPR of class type. Instead, change the
719 type of the temporary. */
720 TREE_TYPE (e
) = TREE_TYPE (TARGET_EXPR_SLOT (e
)) = type
;
725 /* We shouldn't be treating objects of ADDRESSABLE type as
727 gcc_assert (!TREE_ADDRESSABLE (type
));
728 return build_nop (type
, e
);
732 e1
= targetm
.convert_to_type (type
, e
);
736 if (code
== VOID_TYPE
&& (convtype
& CONV_STATIC
))
738 e
= convert_to_void (e
, ICV_CAST
, complain
);
742 if (INTEGRAL_CODE_P (code
))
744 tree intype
= TREE_TYPE (e
);
747 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
749 /* enum = enum, enum = int, enum = float, (enum)pointer are all
751 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype
)
752 || TREE_CODE (intype
) == REAL_TYPE
)
753 && ! (convtype
& CONV_STATIC
))
754 || TYPE_PTR_P (intype
))
756 if (complain
& tf_error
)
757 permerror (loc
, "conversion from %q#T to %q#T", intype
, type
);
759 return error_mark_node
;
762 /* [expr.static.cast]
764 8. A value of integral or enumeration type can be explicitly
765 converted to an enumeration type. The value is unchanged if
766 the original value is within the range of the enumeration
767 values. Otherwise, the resulting enumeration value is
769 if ((complain
& tf_warning
)
770 && TREE_CODE (e
) == INTEGER_CST
771 && ENUM_UNDERLYING_TYPE (type
)
772 && !int_fits_type_p (e
, ENUM_UNDERLYING_TYPE (type
)))
773 warning_at (loc
, OPT_Wconversion
,
774 "the result of the conversion is unspecified because "
775 "%qE is outside the range of type %qT",
778 if (MAYBE_CLASS_TYPE_P (intype
))
781 rval
= build_type_conversion (type
, e
);
784 if (complain
& tf_error
)
785 error_at (loc
, "%q#T used where a %qT was expected", intype
, type
);
786 return error_mark_node
;
788 if (code
== BOOLEAN_TYPE
)
790 if (VOID_TYPE_P (intype
))
792 if (complain
& tf_error
)
794 "could not convert %qE from %<void%> to %<bool%>",
796 return error_mark_node
;
799 /* We can't implicitly convert a scoped enum to bool, so convert
800 to the underlying type first. */
801 if (SCOPED_ENUM_P (intype
) && (convtype
& CONV_STATIC
))
802 e
= build_nop (ENUM_UNDERLYING_TYPE (intype
), e
);
803 if (complain
& tf_warning
)
804 return cp_truthvalue_conversion (e
);
807 /* Prevent bogus -Wint-in-bool-context warnings coming
808 from c_common_truthvalue_conversion down the line. */
809 warning_sentinel
w (warn_int_in_bool_context
);
810 return cp_truthvalue_conversion (e
);
814 converted
= convert_to_integer_maybe_fold (type
, e
, dofold
);
816 /* Ignore any integer overflow caused by the conversion. */
817 return ignore_overflows (converted
, e
);
819 if (NULLPTR_TYPE_P (type
) && e
&& null_ptr_cst_p (e
))
821 if (complain
& tf_warning
)
822 maybe_warn_zero_as_null_pointer_constant (e
, loc
);
825 if (POINTER_TYPE_P (type
) || TYPE_PTRMEM_P (type
))
826 return cp_convert_to_pointer (type
, e
, dofold
, complain
);
827 if (code
== VECTOR_TYPE
)
829 tree in_vtype
= TREE_TYPE (e
);
830 if (MAYBE_CLASS_TYPE_P (in_vtype
))
833 ret_val
= build_type_conversion (type
, e
);
836 if (complain
& tf_error
)
837 error_at (loc
, "%q#T used where a %qT was expected",
839 return error_mark_node
;
841 return convert_to_vector (type
, e
);
843 if (code
== REAL_TYPE
|| code
== COMPLEX_TYPE
)
845 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e
)))
848 rval
= build_type_conversion (type
, e
);
851 else if (complain
& tf_error
)
853 "%q#T used where a floating point value was expected",
856 if (code
== REAL_TYPE
)
857 return convert_to_real_maybe_fold (type
, e
, dofold
);
858 else if (code
== COMPLEX_TYPE
)
859 return convert_to_complex_maybe_fold (type
, e
, dofold
);
862 /* New C++ semantics: since assignment is now based on
863 memberwise copying, if the rhs type is derived from the
864 lhs type, then we may still do a conversion. */
865 if (RECORD_OR_UNION_CODE_P (code
))
867 tree dtype
= TREE_TYPE (e
);
868 tree ctor
= NULL_TREE
;
870 dtype
= TYPE_MAIN_VARIANT (dtype
);
872 /* Conversion between aggregate types. New C++ semantics allow
873 objects of derived type to be cast to objects of base type.
874 Old semantics only allowed this between pointers.
876 There may be some ambiguity between using a constructor
877 vs. using a type conversion operator when both apply. */
881 if (abstract_virtuals_error_sfinae (NULL_TREE
, type
, complain
))
882 return error_mark_node
;
884 if (BRACE_ENCLOSED_INITIALIZER_P (ctor
))
885 ctor
= perform_implicit_conversion (type
, ctor
, complain
);
886 else if ((flags
& LOOKUP_ONLYCONVERTING
)
887 && ! (CLASS_TYPE_P (dtype
) && DERIVED_FROM_P (type
, dtype
)))
888 /* For copy-initialization, first we create a temp of the proper type
889 with a user-defined conversion sequence, then we direct-initialize
890 the target with the temp (see [dcl.init]). */
891 ctor
= build_user_type_conversion (type
, ctor
, flags
, complain
);
894 vec
<tree
, va_gc
> *ctor_vec
= make_tree_vector_single (ctor
);
895 ctor
= build_special_member_call (NULL_TREE
,
896 complete_ctor_identifier
,
898 type
, flags
, complain
);
899 release_tree_vector (ctor_vec
);
902 return build_cplus_new (type
, ctor
, complain
);
905 if (complain
& tf_error
)
907 /* If the conversion failed and expr was an invalid use of pointer to
908 member function, try to report a meaningful error. */
909 if (invalid_nonstatic_memfn_p (loc
, expr
, complain
))
910 /* We displayed the error message. */;
912 error_at (loc
, "conversion from %qH to non-scalar type %qI requested",
913 TREE_TYPE (expr
), type
);
915 return error_mark_node
;
918 /* If CALL is a call, return the callee; otherwise null. */
921 cp_get_callee (tree call
)
923 if (call
== NULL_TREE
)
925 else if (TREE_CODE (call
) == CALL_EXPR
)
926 return CALL_EXPR_FN (call
);
927 else if (TREE_CODE (call
) == AGGR_INIT_EXPR
)
928 return AGGR_INIT_EXPR_FN (call
);
932 /* FN is the callee of a CALL_EXPR or AGGR_INIT_EXPR; return the FUNCTION_DECL
936 cp_get_fndecl_from_callee (tree fn
)
940 if (TREE_CODE (fn
) == FUNCTION_DECL
)
942 tree type
= TREE_TYPE (fn
);
943 if (type
== unknown_type_node
)
945 gcc_assert (POINTER_TYPE_P (type
));
946 fn
= maybe_constant_init (fn
);
948 if (TREE_CODE (fn
) == ADDR_EXPR
)
950 fn
= TREE_OPERAND (fn
, 0);
951 if (TREE_CODE (fn
) == FUNCTION_DECL
)
957 /* Like get_callee_fndecl, but handles AGGR_INIT_EXPR as well and uses the
958 constexpr machinery. */
961 cp_get_callee_fndecl (tree call
)
963 return cp_get_fndecl_from_callee (cp_get_callee (call
));
966 /* Subroutine of convert_to_void. Warn if we're discarding something with
967 attribute [[nodiscard]]. */
970 maybe_warn_nodiscard (tree expr
, impl_conv_void implicit
)
973 if (TREE_CODE (expr
) == TARGET_EXPR
)
974 call
= TARGET_EXPR_INITIAL (expr
);
975 location_t loc
= EXPR_LOC_OR_LOC (call
, input_location
);
976 tree callee
= cp_get_callee (call
);
980 tree type
= TREE_TYPE (callee
);
981 if (TYPE_PTRMEMFUNC_P (type
))
982 type
= TYPE_PTRMEMFUNC_FN_TYPE (type
);
983 if (POINTER_TYPE_P (type
))
984 type
= TREE_TYPE (type
);
986 tree rettype
= TREE_TYPE (type
);
987 tree fn
= cp_get_fndecl_from_callee (callee
);
988 if (implicit
!= ICV_CAST
&& fn
989 && lookup_attribute ("nodiscard", DECL_ATTRIBUTES (fn
)))
991 if (warning_at (loc
, OPT_Wunused_result
,
992 "ignoring return value of %qD, "
993 "declared with attribute nodiscard", fn
))
994 inform (DECL_SOURCE_LOCATION (fn
), "declared here");
996 else if (implicit
!= ICV_CAST
997 && lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype
)))
999 if (warning_at (loc
, OPT_Wunused_result
,
1000 "ignoring returned value of type %qT, "
1001 "declared with attribute nodiscard", rettype
))
1004 inform (DECL_SOURCE_LOCATION (fn
),
1005 "in call to %qD, declared here", fn
);
1006 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype
)),
1007 "%qT declared here", rettype
);
1010 else if (TREE_CODE (expr
) == TARGET_EXPR
1011 && lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (type
)))
1013 /* The TARGET_EXPR confuses do_warn_unused_result into thinking that the
1014 result is used, so handle that case here. */
1017 if (warning_at (loc
, OPT_Wunused_result
,
1018 "ignoring return value of %qD, "
1019 "declared with attribute warn_unused_result",
1021 inform (DECL_SOURCE_LOCATION (fn
), "declared here");
1024 warning_at (loc
, OPT_Wunused_result
,
1025 "ignoring return value of function "
1026 "declared with attribute warn_unused_result");
1030 /* When an expression is used in a void context, its value is discarded and
1031 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
1032 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
1033 in a void context. The C++ standard does not define what an `access' to an
1034 object is, but there is reason to believe that it is the lvalue to rvalue
1035 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
1036 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
1037 indicates that volatile semantics should be the same between C and C++
1038 where ever possible. C leaves it implementation defined as to what
1039 constitutes an access to a volatile. So, we interpret `*vp' as a read of
1040 the volatile object `vp' points to, unless that is an incomplete type. For
1041 volatile references we do not do this interpretation, because that would
1042 make it impossible to ignore the reference return value from functions. We
1043 issue warnings in the confusing cases.
1045 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
1046 to void via a cast. If an expression is being implicitly converted, IMPLICIT
1047 indicates the context of the implicit conversion. */
1050 convert_to_void (tree expr
, impl_conv_void implicit
, tsubst_flags_t complain
)
1052 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
1054 if (expr
== error_mark_node
1055 || TREE_TYPE (expr
) == error_mark_node
)
1056 return error_mark_node
;
1058 expr
= mark_discarded_use (expr
);
1059 if (implicit
== ICV_CAST
)
1060 /* An explicit cast to void avoids all -Wunused-but-set* warnings. */
1061 mark_exp_read (expr
);
1063 if (!TREE_TYPE (expr
))
1065 if (invalid_nonstatic_memfn_p (loc
, expr
, complain
))
1066 return error_mark_node
;
1067 if (TREE_CODE (expr
) == PSEUDO_DTOR_EXPR
)
1069 if (complain
& tf_error
)
1070 error_at (loc
, "pseudo-destructor is not called");
1071 return error_mark_node
;
1073 if (VOID_TYPE_P (TREE_TYPE (expr
)))
1075 switch (TREE_CODE (expr
))
1079 /* The two parts of a cond expr might be separate lvalues. */
1080 tree op1
= TREE_OPERAND (expr
,1);
1081 tree op2
= TREE_OPERAND (expr
,2);
1082 bool side_effects
= ((op1
&& TREE_SIDE_EFFECTS (op1
))
1083 || TREE_SIDE_EFFECTS (op2
));
1084 tree new_op1
, new_op2
;
1085 new_op1
= NULL_TREE
;
1086 if (implicit
!= ICV_CAST
&& !side_effects
)
1089 new_op1
= convert_to_void (op1
, ICV_SECOND_OF_COND
, complain
);
1090 new_op2
= convert_to_void (op2
, ICV_THIRD_OF_COND
, complain
);
1095 new_op1
= convert_to_void (op1
, ICV_CAST
, complain
);
1096 new_op2
= convert_to_void (op2
, ICV_CAST
, complain
);
1099 expr
= build3 (COND_EXPR
, TREE_TYPE (new_op2
),
1100 TREE_OPERAND (expr
, 0), new_op1
, new_op2
);
1106 /* The second part of a compound expr contains the value. */
1107 tree op1
= TREE_OPERAND (expr
,1);
1109 if (implicit
!= ICV_CAST
&& !TREE_NO_WARNING (expr
))
1110 new_op1
= convert_to_void (op1
, ICV_RIGHT_OF_COMMA
, complain
);
1112 new_op1
= convert_to_void (op1
, ICV_CAST
, complain
);
1116 tree t
= build2 (COMPOUND_EXPR
, TREE_TYPE (new_op1
),
1117 TREE_OPERAND (expr
, 0), new_op1
);
1124 case NON_LVALUE_EXPR
:
1126 /* These have already decayed to rvalue. */
1129 case CALL_EXPR
: /* We have a special meaning for volatile void fn(). */
1130 maybe_warn_nodiscard (expr
, implicit
);
1135 tree type
= TREE_TYPE (expr
);
1136 int is_reference
= TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0)))
1138 int is_volatile
= TYPE_VOLATILE (type
);
1139 int is_complete
= COMPLETE_TYPE_P (complete_type (type
));
1141 /* Can't load the value if we don't know the type. */
1142 if (is_volatile
&& !is_complete
)
1144 if (complain
& tf_warning
)
1148 warning_at (loc
, 0, "conversion to void will not access "
1149 "object of incomplete type %qT", type
);
1151 case ICV_SECOND_OF_COND
:
1152 warning_at (loc
, 0, "indirection will not access object of "
1153 "incomplete type %qT in second operand "
1154 "of conditional expression", type
);
1156 case ICV_THIRD_OF_COND
:
1157 warning_at (loc
, 0, "indirection will not access object of "
1158 "incomplete type %qT in third operand "
1159 "of conditional expression", type
);
1161 case ICV_RIGHT_OF_COMMA
:
1162 warning_at (loc
, 0, "indirection will not access object of "
1163 "incomplete type %qT in right operand of "
1164 "comma operator", type
);
1166 case ICV_LEFT_OF_COMMA
:
1167 warning_at (loc
, 0, "indirection will not access object of "
1168 "incomplete type %qT in left operand of "
1169 "comma operator", type
);
1172 warning_at (loc
, 0, "indirection will not access object of "
1173 "incomplete type %qT in statement", type
);
1175 case ICV_THIRD_IN_FOR
:
1176 warning_at (loc
, 0, "indirection will not access object of "
1177 "incomplete type %qT in for increment "
1178 "expression", type
);
1184 /* Don't load the value if this is an implicit dereference, or if
1185 the type needs to be handled by ctors/dtors. */
1186 else if (is_volatile
&& is_reference
)
1188 if (complain
& tf_warning
)
1192 warning_at (loc
, 0, "conversion to void will not access "
1193 "object of type %qT", type
);
1195 case ICV_SECOND_OF_COND
:
1196 warning_at (loc
, 0, "implicit dereference will not access "
1197 "object of type %qT in second operand of "
1198 "conditional expression", type
);
1200 case ICV_THIRD_OF_COND
:
1201 warning_at (loc
, 0, "implicit dereference will not access "
1202 "object of type %qT in third operand of "
1203 "conditional expression", type
);
1205 case ICV_RIGHT_OF_COMMA
:
1206 warning_at (loc
, 0, "implicit dereference will not access "
1207 "object of type %qT in right operand of "
1208 "comma operator", type
);
1210 case ICV_LEFT_OF_COMMA
:
1211 warning_at (loc
, 0, "implicit dereference will not access "
1212 "object of type %qT in left operand of comma "
1216 warning_at (loc
, 0, "implicit dereference will not access "
1217 "object of type %qT in statement", type
);
1219 case ICV_THIRD_IN_FOR
:
1220 warning_at (loc
, 0, "implicit dereference will not access "
1221 "object of type %qT in for increment expression",
1228 else if (is_volatile
&& TREE_ADDRESSABLE (type
))
1230 if (complain
& tf_warning
)
1234 warning_at (loc
, 0, "conversion to void will not access "
1235 "object of non-trivially-copyable type %qT",
1238 case ICV_SECOND_OF_COND
:
1239 warning_at (loc
, 0, "indirection will not access object of "
1240 "non-trivially-copyable type %qT in second "
1241 "operand of conditional expression", type
);
1243 case ICV_THIRD_OF_COND
:
1244 warning_at (loc
, 0, "indirection will not access object of "
1245 "non-trivially-copyable type %qT in third "
1246 "operand of conditional expression", type
);
1248 case ICV_RIGHT_OF_COMMA
:
1249 warning_at (loc
, 0, "indirection will not access object of "
1250 "non-trivially-copyable type %qT in right "
1251 "operand of comma operator", type
);
1253 case ICV_LEFT_OF_COMMA
:
1254 warning_at (loc
, 0, "indirection will not access object of "
1255 "non-trivially-copyable type %qT in left "
1256 "operand of comma operator", type
);
1259 warning_at (loc
, 0, "indirection will not access object of "
1260 "non-trivially-copyable type %qT in statement",
1263 case ICV_THIRD_IN_FOR
:
1264 warning_at (loc
, 0, "indirection will not access object of "
1265 "non-trivially-copyable type %qT in for "
1266 "increment expression", type
);
1272 if (is_reference
|| !is_volatile
|| !is_complete
|| TREE_ADDRESSABLE (type
))
1274 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1275 operation is stripped off. Note that we don't warn about
1276 - an expression with TREE_NO_WARNING set. (For an example of
1277 such expressions, see build_over_call in call.c.)
1278 - automatic dereferencing of references, since the user cannot
1279 control it. (See also warn_if_unused_value() in c-common.c.) */
1280 if (warn_unused_value
1281 && implicit
!= ICV_CAST
1282 && (complain
& tf_warning
)
1283 && !TREE_NO_WARNING (expr
)
1285 warning_at (loc
, OPT_Wunused_value
, "value computed is not used");
1286 expr
= TREE_OPERAND (expr
, 0);
1287 if (TREE_CODE (expr
) == CALL_EXPR
)
1288 maybe_warn_nodiscard (expr
, implicit
);
1296 /* External variables might be incomplete. */
1297 tree type
= TREE_TYPE (expr
);
1298 int is_complete
= COMPLETE_TYPE_P (complete_type (type
));
1300 if (TYPE_VOLATILE (type
) && !is_complete
&& (complain
& tf_warning
))
1304 warning_at (loc
, 0, "conversion to void will not access "
1305 "object %qE of incomplete type %qT", expr
, type
);
1307 case ICV_SECOND_OF_COND
:
1308 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1309 "not be accessed in second operand of "
1310 "conditional expression", expr
, type
);
1312 case ICV_THIRD_OF_COND
:
1313 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1314 "not be accessed in third operand of "
1315 "conditional expression", expr
, type
);
1317 case ICV_RIGHT_OF_COMMA
:
1318 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1319 "not be accessed in right operand of comma operator",
1322 case ICV_LEFT_OF_COMMA
:
1323 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1324 "not be accessed in left operand of comma operator",
1328 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1329 "not be accessed in statement", expr
, type
);
1331 case ICV_THIRD_IN_FOR
:
1332 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1333 "not be accessed in for increment expression",
1344 /* Don't bother with the temporary object returned from a function if
1345 we don't use it, don't need to destroy it, and won't abort in
1346 assign_temp. We'll still
1347 allocate space for it in expand_call or declare_return_variable,
1348 but we don't need to track it through all the tree phases. */
1349 if (TARGET_EXPR_IMPLICIT_P (expr
)
1350 && !TREE_ADDRESSABLE (TREE_TYPE (expr
)))
1352 tree init
= TARGET_EXPR_INITIAL (expr
);
1353 if (TREE_CODE (init
) == AGGR_INIT_EXPR
1354 && !AGGR_INIT_VIA_CTOR_P (init
))
1356 tree fn
= AGGR_INIT_EXPR_FN (init
);
1357 expr
= build_call_array_loc (input_location
,
1358 TREE_TYPE (TREE_TYPE
1361 aggr_init_expr_nargs (init
),
1362 AGGR_INIT_EXPR_ARGP (init
));
1365 maybe_warn_nodiscard (expr
, implicit
);
1370 expr
= resolve_nondeduced_context (expr
, complain
);
1374 if (TREE_CODE (probe
) == ADDR_EXPR
)
1375 probe
= TREE_OPERAND (expr
, 0);
1376 if (type_unknown_p (probe
))
1378 /* [over.over] enumerates the places where we can take the address
1379 of an overloaded function, and this is not one of them. */
1380 if (complain
& tf_error
)
1384 error_at (loc
, "conversion to void "
1385 "cannot resolve address of overloaded function");
1387 case ICV_SECOND_OF_COND
:
1388 error_at (loc
, "second operand of conditional expression "
1389 "cannot resolve address of overloaded function");
1391 case ICV_THIRD_OF_COND
:
1392 error_at (loc
, "third operand of conditional expression "
1393 "cannot resolve address of overloaded function");
1395 case ICV_RIGHT_OF_COMMA
:
1396 error_at (loc
, "right operand of comma operator "
1397 "cannot resolve address of overloaded function");
1399 case ICV_LEFT_OF_COMMA
:
1400 error_at (loc
, "left operand of comma operator "
1401 "cannot resolve address of overloaded function");
1404 error_at (loc
, "statement "
1405 "cannot resolve address of overloaded function");
1407 case ICV_THIRD_IN_FOR
:
1408 error_at (loc
, "for increment expression "
1409 "cannot resolve address of overloaded function");
1413 return error_mark_node
;
1416 else if (implicit
!= ICV_CAST
&& probe
== expr
&& is_overloaded_fn (probe
))
1418 /* Only warn when there is no &. */
1419 if (complain
& tf_warning
)
1422 case ICV_SECOND_OF_COND
:
1423 warning_at (loc
, OPT_Waddress
,
1424 "second operand of conditional expression "
1425 "is a reference, not call, to function %qE", expr
);
1427 case ICV_THIRD_OF_COND
:
1428 warning_at (loc
, OPT_Waddress
,
1429 "third operand of conditional expression "
1430 "is a reference, not call, to function %qE", expr
);
1432 case ICV_RIGHT_OF_COMMA
:
1433 warning_at (loc
, OPT_Waddress
,
1434 "right operand of comma operator "
1435 "is a reference, not call, to function %qE", expr
);
1437 case ICV_LEFT_OF_COMMA
:
1438 warning_at (loc
, OPT_Waddress
,
1439 "left operand of comma operator "
1440 "is a reference, not call, to function %qE", expr
);
1443 warning_at (loc
, OPT_Waddress
,
1444 "statement is a reference, not call, to function %qE",
1447 case ICV_THIRD_IN_FOR
:
1448 warning_at (loc
, OPT_Waddress
,
1449 "for increment expression "
1450 "is a reference, not call, to function %qE", expr
);
1456 if (TREE_CODE (expr
) == COMPONENT_REF
)
1457 expr
= TREE_OPERAND (expr
, 0);
1461 if (expr
!= error_mark_node
&& !VOID_TYPE_P (TREE_TYPE (expr
)))
1463 if (implicit
!= ICV_CAST
1464 && warn_unused_value
1465 && !TREE_NO_WARNING (expr
)
1466 && !processing_template_decl
)
1468 /* The middle end does not warn about expressions that have
1469 been explicitly cast to void, so we must do so here. */
1470 if (!TREE_SIDE_EFFECTS (expr
)) {
1471 if (complain
& tf_warning
)
1474 case ICV_SECOND_OF_COND
:
1475 warning_at (loc
, OPT_Wunused_value
,
1476 "second operand of conditional expression "
1479 case ICV_THIRD_OF_COND
:
1480 warning_at (loc
, OPT_Wunused_value
,
1481 "third operand of conditional expression "
1484 case ICV_RIGHT_OF_COMMA
:
1485 warning_at (loc
, OPT_Wunused_value
,
1486 "right operand of comma operator has no effect");
1488 case ICV_LEFT_OF_COMMA
:
1489 warning_at (loc
, OPT_Wunused_value
,
1490 "left operand of comma operator has no effect");
1493 warning_at (loc
, OPT_Wunused_value
,
1494 "statement has no effect");
1496 case ICV_THIRD_IN_FOR
:
1497 warning_at (loc
, OPT_Wunused_value
,
1498 "for increment expression has no effect");
1507 enum tree_code code
;
1508 enum tree_code_class tclass
;
1511 /* We might like to warn about (say) "(int) f()", as the
1512 cast has no effect, but the compiler itself will
1513 generate implicit conversions under some
1514 circumstances. (For example a block copy will be
1515 turned into a call to "__builtin_memcpy", with a
1516 conversion of the return value to an appropriate
1517 type.) So, to avoid false positives, we strip
1518 conversions. Do not use STRIP_NOPs because it will
1519 not strip conversions to "void", as that is not a
1520 mode-preserving conversion. */
1521 while (TREE_CODE (e
) == NOP_EXPR
)
1522 e
= TREE_OPERAND (e
, 0);
1524 code
= TREE_CODE (e
);
1525 tclass
= TREE_CODE_CLASS (code
);
1526 if ((tclass
== tcc_comparison
1527 || tclass
== tcc_unary
1528 || (tclass
== tcc_binary
1529 && !(code
== MODIFY_EXPR
1530 || code
== INIT_EXPR
1531 || code
== PREDECREMENT_EXPR
1532 || code
== PREINCREMENT_EXPR
1533 || code
== POSTDECREMENT_EXPR
1534 || code
== POSTINCREMENT_EXPR
))
1535 || code
== VEC_PERM_EXPR
1536 || code
== VEC_COND_EXPR
)
1537 && (complain
& tf_warning
))
1538 warning_at (loc
, OPT_Wunused_value
, "value computed is not used");
1541 expr
= build1 (CONVERT_EXPR
, void_type_node
, expr
);
1543 if (! TREE_SIDE_EFFECTS (expr
))
1548 /* Create an expression whose value is that of EXPR,
1549 converted to type TYPE. The TREE_TYPE of the value
1550 is always TYPE. This function implements all reasonable
1551 conversions; callers should filter out those that are
1552 not permitted by the language being compiled.
1554 Most of this routine is from build_reinterpret_cast.
1556 The back end cannot call cp_convert (what was convert) because
1557 conversions to/from basetypes may involve memory references
1558 (vbases) and adding or subtracting small values (multiple
1559 inheritance), but it calls convert from the constant folding code
1560 on subtrees of already built trees after it has ripped them apart.
1562 Also, if we ever support range variables, we'll probably also have to
1563 do a little bit more work. */
1566 convert (tree type
, tree expr
)
1570 if (type
== error_mark_node
|| expr
== error_mark_node
)
1571 return error_mark_node
;
1573 intype
= TREE_TYPE (expr
);
1575 if (POINTER_TYPE_P (type
) && POINTER_TYPE_P (intype
))
1576 return build_nop (type
, expr
);
1578 return ocp_convert (type
, expr
, CONV_BACKEND_CONVERT
,
1579 LOOKUP_NORMAL
|LOOKUP_NO_CONVERSION
,
1580 tf_warning_or_error
);
1583 /* Like cp_convert, except permit conversions to take place which
1584 are not normally allowed due to access restrictions
1585 (such as conversion from sub-type to private super-type). */
1588 convert_force (tree type
, tree expr
, int convtype
, tsubst_flags_t complain
)
1591 enum tree_code code
= TREE_CODE (type
);
1593 if (code
== REFERENCE_TYPE
)
1594 return convert_to_reference (type
, e
, CONV_C_CAST
, 0,
1595 NULL_TREE
, complain
);
1597 if (code
== POINTER_TYPE
)
1598 return convert_to_pointer_force (type
, e
, complain
);
1600 /* From typeck.c convert_for_assignment */
1601 if (((TYPE_PTR_P (TREE_TYPE (e
)) && TREE_CODE (e
) == ADDR_EXPR
1602 && TREE_CODE (TREE_TYPE (TREE_TYPE (e
))) == METHOD_TYPE
)
1603 || integer_zerop (e
)
1604 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e
)))
1605 && TYPE_PTRMEMFUNC_P (type
))
1606 /* compatible pointer to member functions. */
1607 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type
), e
, 1,
1608 /*c_cast_p=*/1, complain
);
1610 return ocp_convert (type
, e
, CONV_C_CAST
|convtype
, LOOKUP_NORMAL
, complain
);
1613 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1614 exists, return the attempted conversion. This may
1615 return ERROR_MARK_NODE if the conversion is not
1616 allowed (references private members, etc).
1617 If no conversion exists, NULL_TREE is returned.
1619 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1620 object parameter, or by the second standard conversion sequence if
1621 that doesn't do it. This will probably wait for an overloading rewrite.
1625 build_type_conversion (tree xtype
, tree expr
)
1627 /* C++: check to see if we can convert this aggregate type
1628 into the required type. */
1629 return build_user_type_conversion (xtype
, expr
, LOOKUP_NORMAL
,
1630 tf_warning_or_error
);
1633 /* Convert the given EXPR to one of a group of types suitable for use in an
1634 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1635 which indicates which types are suitable. If COMPLAIN is true, complain
1636 about ambiguity; otherwise, the caller will deal with it. */
1639 build_expr_type_conversion (int desires
, tree expr
, bool complain
)
1641 tree basetype
= TREE_TYPE (expr
);
1642 tree conv
= NULL_TREE
;
1643 tree winner
= NULL_TREE
;
1645 if (expr
== null_node
1646 && (desires
& WANT_INT
)
1647 && !(desires
& WANT_NULL
))
1649 source_location loc
=
1650 expansion_point_location_if_in_system_header (input_location
);
1652 warning_at (loc
, OPT_Wconversion_null
,
1653 "converting NULL to non-pointer type");
1656 if (basetype
== error_mark_node
)
1657 return error_mark_node
;
1659 if (! MAYBE_CLASS_TYPE_P (basetype
))
1660 switch (TREE_CODE (basetype
))
1663 if ((desires
& WANT_NULL
) && null_ptr_cst_p (expr
))
1668 return (desires
& WANT_INT
) ? expr
: NULL_TREE
;
1670 return (desires
& WANT_ENUM
) ? expr
: NULL_TREE
;
1672 return (desires
& WANT_FLOAT
) ? expr
: NULL_TREE
;
1674 return (desires
& WANT_POINTER
) ? expr
: NULL_TREE
;
1678 return (desires
& WANT_POINTER
) ? decay_conversion (expr
,
1679 tf_warning_or_error
)
1684 if ((desires
& WANT_VECTOR_OR_COMPLEX
) == 0)
1686 switch (TREE_CODE (TREE_TYPE (basetype
)))
1690 return (desires
& WANT_INT
) ? expr
: NULL_TREE
;
1692 return (desires
& WANT_ENUM
) ? expr
: NULL_TREE
;
1694 return (desires
& WANT_FLOAT
) ? expr
: NULL_TREE
;
1703 /* The code for conversions from class type is currently only used for
1704 delete expressions. Other expressions are handled by build_new_op. */
1705 if (!complete_type_or_maybe_complain (basetype
, expr
, complain
))
1706 return error_mark_node
;
1707 if (!TYPE_HAS_CONVERSION (basetype
))
1710 for (conv
= lookup_conversions (basetype
); conv
; conv
= TREE_CHAIN (conv
))
1714 tree cand
= TREE_VALUE (conv
);
1715 cand
= OVL_FIRST (cand
);
1717 if (winner
&& winner
== cand
)
1720 if (DECL_NONCONVERTING_P (cand
))
1723 candidate
= non_reference (TREE_TYPE (TREE_TYPE (cand
)));
1725 switch (TREE_CODE (candidate
))
1729 win
= (desires
& WANT_INT
); break;
1731 win
= (desires
& WANT_ENUM
); break;
1733 win
= (desires
& WANT_FLOAT
); break;
1735 win
= (desires
& WANT_POINTER
); break;
1739 if ((desires
& WANT_VECTOR_OR_COMPLEX
) == 0)
1741 switch (TREE_CODE (TREE_TYPE (candidate
)))
1745 win
= (desires
& WANT_INT
); break;
1747 win
= (desires
& WANT_ENUM
); break;
1749 win
= (desires
& WANT_FLOAT
); break;
1756 /* A wildcard could be instantiated to match any desired
1757 type, but we can't deduce the template argument. */
1758 if (WILDCARD_TYPE_P (candidate
))
1765 if (TREE_CODE (cand
) == TEMPLATE_DECL
)
1768 error ("default type conversion can't deduce template"
1769 " argument for %qD", cand
);
1770 return error_mark_node
;
1776 = non_reference (TREE_TYPE (TREE_TYPE (winner
)));
1778 if (!same_type_ignoring_top_level_qualifiers_p (winner_type
,
1783 error ("ambiguous default type conversion from %qT",
1785 inform (input_location
,
1786 " candidate conversions include %qD and %qD",
1789 return error_mark_node
;
1799 tree type
= non_reference (TREE_TYPE (TREE_TYPE (winner
)));
1800 return build_user_type_conversion (type
, expr
, LOOKUP_NORMAL
,
1801 tf_warning_or_error
);
1807 /* Implements integral promotion (4.1) and float->double promotion. */
1810 type_promotes_to (tree type
)
1814 if (type
== error_mark_node
)
1815 return error_mark_node
;
1817 type
= TYPE_MAIN_VARIANT (type
);
1819 /* Check for promotions of target-defined types first. */
1820 promoted_type
= targetm
.promoted_type (type
);
1822 return promoted_type
;
1824 /* bool always promotes to int (not unsigned), even if it's the same
1826 if (TREE_CODE (type
) == BOOLEAN_TYPE
)
1827 type
= integer_type_node
;
1829 /* Normally convert enums to int, but convert wide enums to something
1830 wider. Scoped enums don't promote, but pretend they do for backward
1831 ABI bug compatibility wrt varargs. */
1832 else if (TREE_CODE (type
) == ENUMERAL_TYPE
1833 || type
== char16_type_node
1834 || type
== char32_type_node
1835 || type
== wchar_type_node
)
1839 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
1841 prom
= ENUM_UNDERLYING_TYPE (prom
);
1842 if (!ENUM_IS_SCOPED (type
)
1843 && ENUM_FIXED_UNDERLYING_TYPE_P (type
))
1845 /* ISO C++17, 7.6/4. A prvalue of an unscoped enumeration type
1846 whose underlying type is fixed (10.2) can be converted to a
1847 prvalue of its underlying type. Moreover, if integral promotion
1848 can be applied to its underlying type, a prvalue of an unscoped
1849 enumeration type whose underlying type is fixed can also be
1850 converted to a prvalue of the promoted underlying type. */
1851 return type_promotes_to (prom
);
1855 int precision
= MAX (TYPE_PRECISION (type
),
1856 TYPE_PRECISION (integer_type_node
));
1857 tree totype
= c_common_type_for_size (precision
, 0);
1858 if (TYPE_UNSIGNED (prom
)
1859 && ! int_fits_type_p (TYPE_MAX_VALUE (prom
), totype
))
1860 prom
= c_common_type_for_size (precision
, 1);
1863 if (SCOPED_ENUM_P (type
))
1865 if (abi_version_crosses (6)
1866 && TYPE_MODE (prom
) != TYPE_MODE (type
))
1867 warning (OPT_Wabi
, "scoped enum %qT passed through ... as "
1868 "%qT before -fabi-version=6, %qT after",
1869 type
, prom
, ENUM_UNDERLYING_TYPE (type
));
1870 if (!abi_version_at_least (6))
1876 else if (c_promoting_integer_type_p (type
))
1878 /* Retain unsignedness if really not getting bigger. */
1879 if (TYPE_UNSIGNED (type
)
1880 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
1881 type
= unsigned_type_node
;
1883 type
= integer_type_node
;
1885 else if (type
== float_type_node
)
1886 type
= double_type_node
;
1891 /* The routines below this point are carefully written to conform to
1892 the standard. They use the same terminology, and follow the rules
1893 closely. Although they are used only in pt.c at the moment, they
1894 should presumably be used everywhere in the future. */
1896 /* True iff EXPR can be converted to TYPE via a qualification conversion.
1897 Callers should check for identical types before calling this function. */
1900 can_convert_qual (tree type
, tree expr
)
1902 tree expr_type
= TREE_TYPE (expr
);
1903 gcc_assert (!same_type_p (type
, expr_type
));
1905 if (TYPE_PTR_P (type
) && TYPE_PTR_P (expr_type
))
1906 return comp_ptr_ttypes (TREE_TYPE (type
), TREE_TYPE (expr_type
));
1907 else if (TYPE_PTRMEM_P (type
) && TYPE_PTRMEM_P (expr_type
))
1908 return (same_type_p (TYPE_PTRMEM_CLASS_TYPE (type
),
1909 TYPE_PTRMEM_CLASS_TYPE (expr_type
))
1910 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type
),
1911 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type
)));
1916 /* Attempt to perform qualification conversions on EXPR to convert it
1917 to TYPE. Return the resulting expression, or error_mark_node if
1918 the conversion was impossible. */
1921 perform_qualification_conversions (tree type
, tree expr
)
1925 expr_type
= TREE_TYPE (expr
);
1927 if (same_type_p (type
, expr_type
))
1929 else if (can_convert_qual (type
, expr
))
1930 return build_nop (type
, expr
);
1932 return error_mark_node
;
1935 /* True iff T is a transaction-safe function type. */
1938 tx_safe_fn_type_p (tree t
)
1940 if (TREE_CODE (t
) != FUNCTION_TYPE
1941 && TREE_CODE (t
) != METHOD_TYPE
)
1943 return !!lookup_attribute ("transaction_safe", TYPE_ATTRIBUTES (t
));
1946 /* Return the transaction-unsafe variant of transaction-safe function type
1950 tx_unsafe_fn_variant (tree t
)
1952 gcc_assert (tx_safe_fn_type_p (t
));
1953 tree attrs
= remove_attribute ("transaction_safe",
1954 TYPE_ATTRIBUTES (t
));
1955 return cp_build_type_attribute_variant (t
, attrs
);
1958 /* Return true iff FROM can convert to TO by a transaction-safety
1962 can_convert_tx_safety (tree to
, tree from
)
1964 return (flag_tm
&& tx_safe_fn_type_p (from
)
1965 && same_type_p (to
, tx_unsafe_fn_variant (from
)));
1968 /* Return true iff FROM can convert to TO by dropping noexcept. */
1971 noexcept_conv_p (tree to
, tree from
)
1973 if (!flag_noexcept_type
)
1976 tree t
= non_reference (to
);
1978 if (TYPE_PTRMEMFUNC_P (t
)
1979 && TYPE_PTRMEMFUNC_P (f
))
1981 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
1982 f
= TYPE_PTRMEMFUNC_FN_TYPE (f
);
1984 if (TREE_CODE (t
) == POINTER_TYPE
1985 && TREE_CODE (f
) == POINTER_TYPE
)
1990 tree_code code
= TREE_CODE (f
);
1991 if (TREE_CODE (t
) != code
)
1993 if (code
!= FUNCTION_TYPE
&& code
!= METHOD_TYPE
)
1995 if (!type_throw_all_p (t
)
1996 || type_throw_all_p (f
))
1998 tree v
= build_exception_variant (f
, NULL_TREE
);
1999 return same_type_p (t
, v
);
2002 /* Return true iff FROM can convert to TO by a function pointer conversion. */
2005 fnptr_conv_p (tree to
, tree from
)
2007 tree t
= non_reference (to
);
2009 if (TYPE_PTRMEMFUNC_P (t
)
2010 && TYPE_PTRMEMFUNC_P (f
))
2012 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
2013 f
= TYPE_PTRMEMFUNC_FN_TYPE (f
);
2015 if (TREE_CODE (t
) == POINTER_TYPE
2016 && TREE_CODE (f
) == POINTER_TYPE
)
2022 return (noexcept_conv_p (t
, f
)
2023 || can_convert_tx_safety (t
, f
));
2026 /* Return FN with any NOP_EXPRs stripped that represent function pointer
2027 conversions or conversions to the same type. */
2030 strip_fnptr_conv (tree fn
)
2032 while (TREE_CODE (fn
) == NOP_EXPR
)
2034 tree op
= TREE_OPERAND (fn
, 0);
2035 tree ft
= TREE_TYPE (fn
);
2036 tree ot
= TREE_TYPE (op
);
2037 if (same_type_p (ft
, ot
)
2038 || fnptr_conv_p (ft
, ot
))