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"
37 static tree
convert_to_pointer_force (tree
, tree
, tsubst_flags_t
);
38 static tree
build_type_conversion (tree
, tree
);
39 static tree
build_up_reference (tree
, tree
, int, tree
, tsubst_flags_t
);
40 static void diagnose_ref_binding (location_t
, tree
, tree
, tree
);
42 /* Change of width--truncation and extension of integers or reals--
43 is represented with NOP_EXPR. Proper functioning of many things
44 assumes that no other conversions can be NOP_EXPRs.
46 Conversion between integer and pointer is represented with CONVERT_EXPR.
47 Converting integer to real uses FLOAT_EXPR
48 and real to integer uses FIX_TRUNC_EXPR.
50 Here is a list of all the functions that assume that widening and
51 narrowing is always done with a NOP_EXPR:
52 In convert.c, convert_to_integer[_maybe_fold].
53 In c-typeck.c, build_binary_op_nodefault (boolean ops),
54 and c_common_truthvalue_conversion.
55 In expr.c: expand_expr, for operands of a MULT_EXPR.
56 In fold-const.c: fold.
57 In tree.c: get_narrower and get_unwidened.
59 C++: in multiple-inheritance, converting between pointers may involve
60 adjusting them by a delta stored within the class definition. */
62 /* Subroutines of `convert'. */
64 /* if converting pointer to pointer
65 if dealing with classes, check for derived->base or vice versa
66 else if dealing with method pointers, delegate
68 else if converting class, pass off to build_type_conversion
69 else try C-style pointer conversion. */
72 cp_convert_to_pointer (tree type
, tree expr
, bool dofold
,
73 tsubst_flags_t complain
)
75 tree intype
= TREE_TYPE (expr
);
78 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
80 if (intype
== error_mark_node
)
81 return error_mark_node
;
83 if (MAYBE_CLASS_TYPE_P (intype
))
85 intype
= complete_type (intype
);
86 if (!COMPLETE_TYPE_P (intype
))
88 if (complain
& tf_error
)
89 error_at (loc
, "can%'t convert from incomplete type %qT to %qT",
91 return error_mark_node
;
94 rval
= build_type_conversion (type
, expr
);
97 if ((complain
& tf_error
)
98 && rval
== error_mark_node
)
99 error_at (loc
, "conversion of %qE from %qT to %qT is ambiguous",
105 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
106 if (TYPE_PTR_P (type
)
107 && (TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
108 || VOID_TYPE_P (TREE_TYPE (type
))))
110 if (TYPE_PTRMEMFUNC_P (intype
)
111 || TREE_CODE (intype
) == METHOD_TYPE
)
112 return convert_member_func_to_ptr (type
, expr
, complain
);
113 if (TYPE_PTR_P (TREE_TYPE (expr
)))
114 return build_nop (type
, expr
);
115 intype
= TREE_TYPE (expr
);
118 if (expr
== error_mark_node
)
119 return error_mark_node
;
121 form
= TREE_CODE (intype
);
123 if (POINTER_TYPE_P (intype
))
125 intype
= TYPE_MAIN_VARIANT (intype
);
127 if (TYPE_MAIN_VARIANT (type
) != intype
129 && TREE_CODE (TREE_TYPE (type
)) == RECORD_TYPE
130 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type
))
131 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype
))
132 && TREE_CODE (TREE_TYPE (intype
)) == RECORD_TYPE
)
134 enum tree_code code
= PLUS_EXPR
;
140 intype_class
= TREE_TYPE (intype
);
141 type_class
= TREE_TYPE (type
);
143 same_p
= same_type_p (TYPE_MAIN_VARIANT (intype_class
),
144 TYPE_MAIN_VARIANT (type_class
));
146 /* Try derived to base conversion. */
148 binfo
= lookup_base (intype_class
, type_class
, ba_check
,
150 if (!same_p
&& !binfo
)
152 /* Try base to derived conversion. */
153 binfo
= lookup_base (type_class
, intype_class
, ba_check
,
157 if (binfo
== error_mark_node
)
158 return error_mark_node
;
162 expr
= build_base_path (code
, expr
, binfo
, 0, complain
);
163 /* Add any qualifier conversions. */
164 return build_nop (type
, expr
);
168 if (TYPE_PTRMEMFUNC_P (type
))
170 if (complain
& tf_error
)
171 error_at (loc
, "cannot convert %qE from type %qT to type %qT",
173 return error_mark_node
;
176 return build_nop (type
, expr
);
178 else if ((TYPE_PTRDATAMEM_P (type
) && TYPE_PTRDATAMEM_P (intype
))
179 || (TYPE_PTRMEMFUNC_P (type
) && TYPE_PTRMEMFUNC_P (intype
)))
180 return convert_ptrmem (type
, expr
, /*allow_inverse_p=*/false,
181 /*c_cast_p=*/false, complain
);
182 else if (TYPE_PTRMEMFUNC_P (intype
))
186 if (TREE_CODE (expr
) == PTRMEM_CST
)
187 return cp_convert_to_pointer (type
, PTRMEM_CST_MEMBER (expr
),
189 else if (TREE_CODE (expr
) == OFFSET_REF
)
191 tree object
= TREE_OPERAND (expr
, 0);
192 return get_member_function_from_ptrfunc (&object
,
193 TREE_OPERAND (expr
, 1),
197 if (complain
& tf_error
)
198 error_at (loc
, "cannot convert %qE from type %qT to type %qT",
200 return error_mark_node
;
203 if (null_ptr_cst_p (expr
))
205 if (TYPE_PTRMEMFUNC_P (type
))
206 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type
), expr
, 0,
207 /*c_cast_p=*/false, complain
);
209 if (complain
& tf_warning
)
210 maybe_warn_zero_as_null_pointer_constant (expr
, loc
);
212 /* A NULL pointer-to-data-member is represented by -1, not by
214 tree val
= (TYPE_PTRDATAMEM_P (type
)
215 ? build_int_cst_type (type
, -1)
216 : build_int_cst (type
, 0));
218 return (TREE_SIDE_EFFECTS (expr
)
219 ? build2 (COMPOUND_EXPR
, type
, expr
, val
) : val
);
221 else if (TYPE_PTRMEM_P (type
) && INTEGRAL_CODE_P (form
))
223 if (complain
& tf_error
)
224 error_at (loc
, "invalid conversion from %qT to %qT", intype
, type
);
225 return error_mark_node
;
228 if (INTEGRAL_CODE_P (form
))
230 if (TYPE_PRECISION (intype
) == POINTER_SIZE
)
231 return build1 (CONVERT_EXPR
, type
, expr
);
232 expr
= cp_convert (c_common_type_for_size (POINTER_SIZE
, 0), expr
,
234 /* Modes may be different but sizes should be the same. There
235 is supposed to be some integral type that is the same width
237 gcc_assert (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (expr
)))
238 == GET_MODE_SIZE (TYPE_MODE (type
)));
240 return convert_to_pointer_maybe_fold (type
, expr
, dofold
);
243 if (type_unknown_p (expr
))
244 return instantiate_type (type
, expr
, complain
);
246 if (complain
& tf_error
)
247 error_at (loc
, "cannot convert %qE from type %qT to type %qT",
249 return error_mark_node
;
252 /* Like convert, except permit conversions to take place which
253 are not normally allowed due to access restrictions
254 (such as conversion from sub-type to private super-type). */
257 convert_to_pointer_force (tree type
, tree expr
, tsubst_flags_t complain
)
259 tree intype
= TREE_TYPE (expr
);
260 enum tree_code form
= TREE_CODE (intype
);
262 if (form
== POINTER_TYPE
)
264 intype
= TYPE_MAIN_VARIANT (intype
);
266 if (TYPE_MAIN_VARIANT (type
) != intype
267 && TREE_CODE (TREE_TYPE (type
)) == RECORD_TYPE
268 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type
))
269 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype
))
270 && TREE_CODE (TREE_TYPE (intype
)) == RECORD_TYPE
)
272 enum tree_code code
= PLUS_EXPR
;
275 binfo
= lookup_base (TREE_TYPE (intype
), TREE_TYPE (type
),
276 ba_unique
, NULL
, complain
);
279 binfo
= lookup_base (TREE_TYPE (type
), TREE_TYPE (intype
),
280 ba_unique
, NULL
, complain
);
283 if (binfo
== error_mark_node
)
284 return error_mark_node
;
287 expr
= build_base_path (code
, expr
, binfo
, 0, complain
);
288 if (expr
== error_mark_node
)
289 return error_mark_node
;
290 /* Add any qualifier conversions. */
291 if (!same_type_p (TREE_TYPE (TREE_TYPE (expr
)),
293 expr
= build_nop (type
, expr
);
299 return cp_convert_to_pointer (type
, expr
, /*fold*/false, complain
);
302 /* We are passing something to a function which requires a reference.
303 The type we are interested in is in TYPE. The initial
304 value we have to begin with is in ARG.
306 FLAGS controls how we manage access checking.
307 DIRECT_BIND in FLAGS controls how any temporaries are generated.
308 If DIRECT_BIND is set, DECL is the reference we're binding to. */
311 build_up_reference (tree type
, tree arg
, int flags
, tree decl
,
312 tsubst_flags_t complain
)
315 tree argtype
= TREE_TYPE (arg
);
316 tree target_type
= TREE_TYPE (type
);
318 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
320 if ((flags
& DIRECT_BIND
) && ! lvalue_p (arg
))
322 /* Create a new temporary variable. We can't just use a TARGET_EXPR
323 here because it needs to live as long as DECL. */
326 arg
= make_temporary_var_for_ref_to_temp (decl
, target_type
);
328 /* Process the initializer for the declaration. */
329 DECL_INITIAL (arg
) = targ
;
330 cp_finish_decl (arg
, targ
, /*init_const_expr_p=*/false, NULL_TREE
,
331 LOOKUP_ONLYCONVERTING
|DIRECT_BIND
);
333 else if (!(flags
& DIRECT_BIND
) && ! obvalue_p (arg
))
334 return get_target_expr_sfinae (arg
, complain
);
336 /* If we had a way to wrap this up, and say, if we ever needed its
337 address, transform all occurrences of the register, into a memory
338 reference we could win better. */
339 rval
= cp_build_addr_expr (arg
, complain
);
340 if (rval
== error_mark_node
)
341 return error_mark_node
;
343 if ((flags
& LOOKUP_PROTECT
)
344 && TYPE_MAIN_VARIANT (argtype
) != TYPE_MAIN_VARIANT (target_type
)
345 && MAYBE_CLASS_TYPE_P (argtype
)
346 && MAYBE_CLASS_TYPE_P (target_type
))
348 /* We go through lookup_base for the access control. */
349 tree binfo
= lookup_base (argtype
, target_type
, ba_check
,
351 if (binfo
== error_mark_node
)
352 return error_mark_node
;
353 if (binfo
== NULL_TREE
)
354 return error_not_base_type (target_type
, argtype
);
355 rval
= build_base_path (PLUS_EXPR
, rval
, binfo
, 1, complain
);
359 = convert_to_pointer_force (build_pointer_type (target_type
),
361 return build_nop (type
, rval
);
364 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
365 INTYPE is the original rvalue type and DECL is an optional _DECL node
368 [dcl.init.ref] says that if an rvalue is used to
369 initialize a reference, then the reference must be to a
370 non-volatile const type. */
373 diagnose_ref_binding (location_t loc
, tree reftype
, tree intype
, tree decl
)
375 tree ttl
= TREE_TYPE (reftype
);
377 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl
))
381 if (CP_TYPE_VOLATILE_P (ttl
) && decl
)
382 msg
= G_("initialization of volatile reference type %q#T from "
383 "rvalue of type %qT");
384 else if (CP_TYPE_VOLATILE_P (ttl
))
385 msg
= G_("conversion to volatile reference type %q#T "
386 "from rvalue of type %qT");
388 msg
= G_("initialization of non-const reference type %q#T from "
389 "rvalue of type %qT");
391 msg
= G_("conversion to non-const reference type %q#T from "
392 "rvalue of type %qT");
394 permerror (loc
, msg
, reftype
, intype
);
398 /* For C++: Only need to do one-level references, but cannot
399 get tripped up on signed/unsigned differences.
401 DECL is either NULL_TREE or the _DECL node for a reference that is being
402 initialized. It can be error_mark_node if we don't know the _DECL but
403 we know it's an initialization. */
406 convert_to_reference (tree reftype
, tree expr
, int convtype
,
407 int flags
, tree decl
, tsubst_flags_t complain
)
409 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (reftype
));
411 tree rval
= NULL_TREE
;
412 tree rval_as_conversion
= NULL_TREE
;
413 bool can_convert_intype_to_type
;
414 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
416 if (TREE_CODE (type
) == FUNCTION_TYPE
417 && TREE_TYPE (expr
) == unknown_type_node
)
418 expr
= instantiate_type (type
, expr
, complain
);
420 if (expr
== error_mark_node
)
421 return error_mark_node
;
423 intype
= TREE_TYPE (expr
);
425 gcc_assert (TREE_CODE (intype
) != REFERENCE_TYPE
);
426 gcc_assert (TREE_CODE (reftype
) == REFERENCE_TYPE
);
428 intype
= TYPE_MAIN_VARIANT (intype
);
430 can_convert_intype_to_type
= can_convert_standard (type
, intype
, complain
);
432 if (!can_convert_intype_to_type
433 && (convtype
& CONV_IMPLICIT
) && MAYBE_CLASS_TYPE_P (intype
)
434 && ! (flags
& LOOKUP_NO_CONVERSION
))
436 /* Look for a user-defined conversion to lvalue that we can use. */
439 = build_type_conversion (reftype
, expr
);
441 if (rval_as_conversion
&& rval_as_conversion
!= error_mark_node
442 && lvalue_p (rval_as_conversion
))
444 expr
= rval_as_conversion
;
445 rval_as_conversion
= NULL_TREE
;
447 can_convert_intype_to_type
= 1;
451 if (((convtype
& CONV_STATIC
)
452 && can_convert_standard (intype
, type
, complain
))
453 || ((convtype
& CONV_IMPLICIT
) && can_convert_intype_to_type
))
456 tree ttl
= TREE_TYPE (reftype
);
457 tree ttr
= lvalue_type (expr
);
459 if ((complain
& tf_error
)
460 && ! lvalue_p (expr
))
461 diagnose_ref_binding (loc
, reftype
, intype
, decl
);
463 if (! (convtype
& CONV_CONST
)
464 && !at_least_as_qualified_p (ttl
, ttr
))
466 if (complain
& tf_error
)
467 permerror (loc
, "conversion from %qT to %qT discards qualifiers",
470 return error_mark_node
;
474 return build_up_reference (reftype
, expr
, flags
, decl
, complain
);
476 else if ((convtype
& CONV_REINTERPRET
) && obvalue_p (expr
))
478 /* When casting an lvalue to a reference type, just convert into
479 a pointer to the new type and deference it. This is allowed
480 by San Diego WP section 5.2.9 paragraph 12, though perhaps it
481 should be done directly (jason). (int &)ri ---> *(int*)&ri */
483 /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
485 if ((complain
& tf_warning
)
486 && TYPE_PTR_P (intype
)
487 && (comptypes (TREE_TYPE (intype
), type
,
488 COMPARE_BASE
| COMPARE_DERIVED
)))
489 warning_at (loc
, 0, "casting %qT to %qT does not dereference pointer",
492 rval
= cp_build_addr_expr (expr
, complain
);
493 if (rval
!= error_mark_node
)
494 rval
= convert_force (build_pointer_type (TREE_TYPE (reftype
)),
496 if (rval
!= error_mark_node
)
497 rval
= build1 (NOP_EXPR
, reftype
, rval
);
501 rval
= convert_for_initialization (NULL_TREE
, type
, expr
, flags
,
502 ICR_CONVERTING
, 0, 0, complain
);
503 if (rval
== NULL_TREE
|| rval
== error_mark_node
)
505 if (complain
& tf_error
)
506 diagnose_ref_binding (loc
, reftype
, intype
, decl
);
507 rval
= build_up_reference (reftype
, rval
, flags
, decl
, complain
);
512 /* If we found a way to convert earlier, then use it. */
516 if (complain
& tf_error
)
517 error_at (loc
, "cannot convert type %qT to type %qT", intype
, reftype
);
519 return error_mark_node
;
522 /* We are using a reference VAL for its value. Bash that reference all the
523 way down to its lowest form. */
526 convert_from_reference (tree val
)
529 && TREE_CODE (TREE_TYPE (val
)) == REFERENCE_TYPE
)
531 tree t
= TREE_TYPE (TREE_TYPE (val
));
532 tree ref
= build1 (INDIRECT_REF
, t
, val
);
535 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
536 so that we get the proper error message if the result is used
537 to assign to. Also, &* is supposed to be a no-op. */
538 TREE_READONLY (ref
) = CP_TYPE_CONST_P (t
);
539 TREE_THIS_VOLATILE (ref
) = CP_TYPE_VOLATILE_P (t
);
540 TREE_SIDE_EFFECTS (ref
)
541 = (TREE_THIS_VOLATILE (ref
) || TREE_SIDE_EFFECTS (val
));
548 /* Really perform an lvalue-to-rvalue conversion, including copying an
549 argument of class type into a temporary. */
552 force_rvalue (tree expr
, tsubst_flags_t complain
)
554 tree type
= TREE_TYPE (expr
);
555 if (MAYBE_CLASS_TYPE_P (type
) && TREE_CODE (expr
) != TARGET_EXPR
)
557 vec
<tree
, va_gc
> *args
= make_tree_vector_single (expr
);
558 expr
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
559 &args
, type
, LOOKUP_NORMAL
, complain
);
560 release_tree_vector (args
);
561 expr
= build_cplus_new (type
, expr
, complain
);
564 expr
= decay_conversion (expr
, complain
);
570 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
571 TREE_OVERFLOW set only if it is set in ORIG. Otherwise, return EXPR
575 ignore_overflows (tree expr
, tree orig
)
577 if (TREE_CODE (expr
) == INTEGER_CST
578 && TREE_CODE (orig
) == INTEGER_CST
579 && TREE_OVERFLOW (expr
) != TREE_OVERFLOW (orig
))
581 gcc_assert (!TREE_OVERFLOW (orig
));
582 /* Ensure constant sharing. */
583 expr
= wide_int_to_tree (TREE_TYPE (expr
), expr
);
588 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
592 cp_fold_convert (tree type
, tree expr
)
595 if (TREE_TYPE (expr
) == type
)
597 else if (TREE_CODE (expr
) == PTRMEM_CST
)
599 /* Avoid wrapping a PTRMEM_CST in NOP_EXPR. */
600 conv
= copy_node (expr
);
601 TREE_TYPE (conv
) = type
;
605 conv
= fold_convert (type
, expr
);
606 conv
= ignore_overflows (conv
, expr
);
611 /* C++ conversions, preference to static cast conversions. */
614 cp_convert (tree type
, tree expr
, tsubst_flags_t complain
)
616 return ocp_convert (type
, expr
, CONV_OLD_CONVERT
, LOOKUP_NORMAL
, complain
);
619 /* C++ equivalent of convert_and_check but using cp_convert as the
622 Convert EXPR to TYPE, warning about conversion problems with constants.
623 Invoke this function on every expression that is converted implicitly,
624 i.e. because of language rules and not because of an explicit cast. */
627 cp_convert_and_check (tree type
, tree expr
, tsubst_flags_t complain
)
631 if (TREE_TYPE (expr
) == type
)
633 if (expr
== error_mark_node
)
635 result
= cp_convert (type
, expr
, complain
);
637 if ((complain
& tf_warning
)
638 && c_inhibit_evaluation_warnings
== 0)
640 tree folded
= cp_fully_fold (expr
);
643 folded_result
= result
;
646 /* Avoid bogus -Wparentheses warnings. */
647 warning_sentinel
w (warn_parentheses
);
648 warning_sentinel
c (warn_int_in_bool_context
);
649 folded_result
= cp_convert (type
, folded
, tf_none
);
651 folded_result
= fold_simple (folded_result
);
652 if (!TREE_OVERFLOW_P (folded
)
653 && folded_result
!= error_mark_node
)
654 warnings_for_convert_and_check (EXPR_LOC_OR_LOC (expr
, input_location
),
655 type
, folded
, folded_result
);
663 FLAGS indicates how we should behave. */
666 ocp_convert (tree type
, tree expr
, int convtype
, int flags
,
667 tsubst_flags_t complain
)
670 enum tree_code code
= TREE_CODE (type
);
671 const char *invalid_conv_diag
;
673 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
674 bool dofold
= (convtype
& CONV_FOLD
);
676 if (error_operand_p (e
) || type
== error_mark_node
)
677 return error_mark_node
;
679 complete_type (type
);
680 complete_type (TREE_TYPE (expr
));
682 if ((invalid_conv_diag
683 = targetm
.invalid_conversion (TREE_TYPE (expr
), type
)))
685 if (complain
& tf_error
)
686 error (invalid_conv_diag
);
687 return error_mark_node
;
690 /* FIXME remove when moving to c_fully_fold model. */
691 if (!CLASS_TYPE_P (type
))
692 e
= scalar_constant_value (e
);
693 if (error_operand_p (e
))
694 return error_mark_node
;
696 if (MAYBE_CLASS_TYPE_P (type
) && (convtype
& CONV_FORCE_TEMP
))
697 /* We need a new temporary; don't take this shortcut. */;
698 else if (same_type_ignoring_top_level_qualifiers_p (type
, TREE_TYPE (e
)))
700 if (same_type_p (type
, TREE_TYPE (e
)))
701 /* The call to fold will not always remove the NOP_EXPR as
702 might be expected, since if one of the types is a typedef;
703 the comparison in fold is just equality of pointers, not a
704 call to comptypes. We don't call fold in this case because
705 that can result in infinite recursion; fold will call
706 convert, which will call ocp_convert, etc. */
708 /* For complex data types, we need to perform componentwise
710 else if (TREE_CODE (type
) == COMPLEX_TYPE
)
711 return convert_to_complex_maybe_fold (type
, e
, dofold
);
712 else if (VECTOR_TYPE_P (type
))
713 return convert_to_vector (type
, e
);
714 else if (TREE_CODE (e
) == TARGET_EXPR
)
716 /* Don't build a NOP_EXPR of class type. Instead, change the
717 type of the temporary. */
718 TREE_TYPE (e
) = TREE_TYPE (TARGET_EXPR_SLOT (e
)) = type
;
723 /* We shouldn't be treating objects of ADDRESSABLE type as
725 gcc_assert (!TREE_ADDRESSABLE (type
));
726 return build_nop (type
, e
);
730 e1
= targetm
.convert_to_type (type
, e
);
734 if (code
== VOID_TYPE
&& (convtype
& CONV_STATIC
))
736 e
= convert_to_void (e
, ICV_CAST
, complain
);
740 if (INTEGRAL_CODE_P (code
))
742 tree intype
= TREE_TYPE (e
);
745 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
747 /* enum = enum, enum = int, enum = float, (enum)pointer are all
749 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype
)
750 || TREE_CODE (intype
) == REAL_TYPE
)
751 && ! (convtype
& CONV_STATIC
))
752 || TYPE_PTR_P (intype
))
754 if (complain
& tf_error
)
755 permerror (loc
, "conversion from %q#T to %q#T", intype
, type
);
757 return error_mark_node
;
760 /* [expr.static.cast]
762 8. A value of integral or enumeration type can be explicitly
763 converted to an enumeration type. The value is unchanged if
764 the original value is within the range of the enumeration
765 values. Otherwise, the resulting enumeration value is
767 if ((complain
& tf_warning
)
768 && TREE_CODE (e
) == INTEGER_CST
769 && ENUM_UNDERLYING_TYPE (type
)
770 && !int_fits_type_p (e
, ENUM_UNDERLYING_TYPE (type
)))
771 warning_at (loc
, OPT_Wconversion
,
772 "the result of the conversion is unspecified because "
773 "%qE is outside the range of type %qT",
776 if (MAYBE_CLASS_TYPE_P (intype
))
779 rval
= build_type_conversion (type
, e
);
782 if (complain
& tf_error
)
783 error_at (loc
, "%q#T used where a %qT was expected", intype
, type
);
784 return error_mark_node
;
786 if (code
== BOOLEAN_TYPE
)
788 if (VOID_TYPE_P (intype
))
790 if (complain
& tf_error
)
792 "could not convert %qE from %<void%> to %<bool%>",
794 return error_mark_node
;
797 /* We can't implicitly convert a scoped enum to bool, so convert
798 to the underlying type first. */
799 if (SCOPED_ENUM_P (intype
) && (convtype
& CONV_STATIC
))
800 e
= build_nop (ENUM_UNDERLYING_TYPE (intype
), e
);
801 if (complain
& tf_warning
)
802 return cp_truthvalue_conversion (e
);
805 /* Prevent bogus -Wint-in-bool-context warnings coming
806 from c_common_truthvalue_conversion down the line. */
807 warning_sentinel
w (warn_int_in_bool_context
);
808 return cp_truthvalue_conversion (e
);
812 converted
= convert_to_integer_maybe_fold (type
, e
, dofold
);
814 /* Ignore any integer overflow caused by the conversion. */
815 return ignore_overflows (converted
, e
);
817 if (NULLPTR_TYPE_P (type
) && e
&& null_ptr_cst_p (e
))
819 if (complain
& tf_warning
)
820 maybe_warn_zero_as_null_pointer_constant (e
, loc
);
823 if (POINTER_TYPE_P (type
) || TYPE_PTRMEM_P (type
))
824 return cp_convert_to_pointer (type
, e
, dofold
, complain
);
825 if (code
== VECTOR_TYPE
)
827 tree in_vtype
= TREE_TYPE (e
);
828 if (MAYBE_CLASS_TYPE_P (in_vtype
))
831 ret_val
= build_type_conversion (type
, e
);
834 if (complain
& tf_error
)
835 error_at (loc
, "%q#T used where a %qT was expected",
837 return error_mark_node
;
839 return convert_to_vector (type
, e
);
841 if (code
== REAL_TYPE
|| code
== COMPLEX_TYPE
)
843 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e
)))
846 rval
= build_type_conversion (type
, e
);
849 else if (complain
& tf_error
)
851 "%q#T used where a floating point value was expected",
854 if (code
== REAL_TYPE
)
855 return convert_to_real_maybe_fold (type
, e
, dofold
);
856 else if (code
== COMPLEX_TYPE
)
857 return convert_to_complex_maybe_fold (type
, e
, dofold
);
860 /* New C++ semantics: since assignment is now based on
861 memberwise copying, if the rhs type is derived from the
862 lhs type, then we may still do a conversion. */
863 if (RECORD_OR_UNION_CODE_P (code
))
865 tree dtype
= TREE_TYPE (e
);
866 tree ctor
= NULL_TREE
;
868 dtype
= TYPE_MAIN_VARIANT (dtype
);
870 /* Conversion between aggregate types. New C++ semantics allow
871 objects of derived type to be cast to objects of base type.
872 Old semantics only allowed this between pointers.
874 There may be some ambiguity between using a constructor
875 vs. using a type conversion operator when both apply. */
879 if (abstract_virtuals_error_sfinae (NULL_TREE
, type
, complain
))
880 return error_mark_node
;
882 if (BRACE_ENCLOSED_INITIALIZER_P (ctor
))
883 ctor
= perform_implicit_conversion (type
, ctor
, complain
);
884 else if ((flags
& LOOKUP_ONLYCONVERTING
)
885 && ! (CLASS_TYPE_P (dtype
) && DERIVED_FROM_P (type
, dtype
)))
886 /* For copy-initialization, first we create a temp of the proper type
887 with a user-defined conversion sequence, then we direct-initialize
888 the target with the temp (see [dcl.init]). */
889 ctor
= build_user_type_conversion (type
, ctor
, flags
, complain
);
892 vec
<tree
, va_gc
> *ctor_vec
= make_tree_vector_single (ctor
);
893 ctor
= build_special_member_call (NULL_TREE
,
894 complete_ctor_identifier
,
896 type
, flags
, complain
);
897 release_tree_vector (ctor_vec
);
900 return build_cplus_new (type
, ctor
, complain
);
903 if (complain
& tf_error
)
905 /* If the conversion failed and expr was an invalid use of pointer to
906 member function, try to report a meaningful error. */
907 if (invalid_nonstatic_memfn_p (loc
, expr
, complain
))
908 /* We displayed the error message. */;
910 error_at (loc
, "conversion from %qT to non-scalar type %qT requested",
911 TREE_TYPE (expr
), type
);
913 return error_mark_node
;
916 /* If CALL is a call, return the callee; otherwise null. */
919 cp_get_callee (tree call
)
921 if (call
== NULL_TREE
)
923 else if (TREE_CODE (call
) == CALL_EXPR
)
924 return CALL_EXPR_FN (call
);
925 else if (TREE_CODE (call
) == AGGR_INIT_EXPR
)
926 return AGGR_INIT_EXPR_FN (call
);
930 /* FN is the callee of a CALL_EXPR or AGGR_INIT_EXPR; return the FUNCTION_DECL
934 cp_get_fndecl_from_callee (tree fn
)
938 if (TREE_CODE (fn
) == FUNCTION_DECL
)
940 tree type
= TREE_TYPE (fn
);
941 if (type
== unknown_type_node
)
943 gcc_assert (POINTER_TYPE_P (type
));
944 fn
= maybe_constant_init (fn
);
946 if (TREE_CODE (fn
) == ADDR_EXPR
)
948 fn
= TREE_OPERAND (fn
, 0);
949 if (TREE_CODE (fn
) == FUNCTION_DECL
)
955 /* Like get_callee_fndecl, but handles AGGR_INIT_EXPR as well and uses the
956 constexpr machinery. */
959 cp_get_callee_fndecl (tree call
)
961 return cp_get_fndecl_from_callee (cp_get_callee (call
));
964 /* Subroutine of convert_to_void. Warn if we're discarding something with
965 attribute [[nodiscard]]. */
968 maybe_warn_nodiscard (tree expr
, impl_conv_void implicit
)
971 if (TREE_CODE (expr
) == TARGET_EXPR
)
972 call
= TARGET_EXPR_INITIAL (expr
);
973 location_t loc
= EXPR_LOC_OR_LOC (call
, input_location
);
974 tree callee
= cp_get_callee (call
);
978 tree type
= TREE_TYPE (callee
);
979 if (TYPE_PTRMEMFUNC_P (type
))
980 type
= TYPE_PTRMEMFUNC_FN_TYPE (type
);
981 if (POINTER_TYPE_P (type
))
982 type
= TREE_TYPE (type
);
984 tree rettype
= TREE_TYPE (type
);
985 tree fn
= cp_get_fndecl_from_callee (callee
);
986 if (implicit
!= ICV_CAST
&& fn
987 && lookup_attribute ("nodiscard", DECL_ATTRIBUTES (fn
)))
989 if (warning_at (loc
, OPT_Wunused_result
,
990 "ignoring return value of %qD, "
991 "declared with attribute nodiscard", fn
))
992 inform (DECL_SOURCE_LOCATION (fn
), "declared here");
994 else if (implicit
!= ICV_CAST
995 && lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype
)))
997 if (warning_at (loc
, OPT_Wunused_result
,
998 "ignoring returned value of type %qT, "
999 "declared with attribute nodiscard", rettype
))
1002 inform (DECL_SOURCE_LOCATION (fn
),
1003 "in call to %qD, declared here", fn
);
1004 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype
)),
1005 "%qT declared here", rettype
);
1008 else if (TREE_CODE (expr
) == TARGET_EXPR
1009 && lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (type
)))
1011 /* The TARGET_EXPR confuses do_warn_unused_result into thinking that the
1012 result is used, so handle that case here. */
1015 if (warning_at (loc
, OPT_Wunused_result
,
1016 "ignoring return value of %qD, "
1017 "declared with attribute warn_unused_result",
1019 inform (DECL_SOURCE_LOCATION (fn
), "declared here");
1022 warning_at (loc
, OPT_Wunused_result
,
1023 "ignoring return value of function "
1024 "declared with attribute warn_unused_result");
1028 /* When an expression is used in a void context, its value is discarded and
1029 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
1030 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
1031 in a void context. The C++ standard does not define what an `access' to an
1032 object is, but there is reason to believe that it is the lvalue to rvalue
1033 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
1034 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
1035 indicates that volatile semantics should be the same between C and C++
1036 where ever possible. C leaves it implementation defined as to what
1037 constitutes an access to a volatile. So, we interpret `*vp' as a read of
1038 the volatile object `vp' points to, unless that is an incomplete type. For
1039 volatile references we do not do this interpretation, because that would
1040 make it impossible to ignore the reference return value from functions. We
1041 issue warnings in the confusing cases.
1043 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
1044 to void via a cast. If an expression is being implicitly converted, IMPLICIT
1045 indicates the context of the implicit conversion. */
1048 convert_to_void (tree expr
, impl_conv_void implicit
, tsubst_flags_t complain
)
1050 location_t loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
1052 if (expr
== error_mark_node
1053 || TREE_TYPE (expr
) == error_mark_node
)
1054 return error_mark_node
;
1056 if (implicit
== ICV_CAST
)
1057 mark_exp_read (expr
);
1062 while (TREE_CODE (exprv
) == COMPOUND_EXPR
)
1063 exprv
= TREE_OPERAND (exprv
, 1);
1065 || handled_component_p (exprv
)
1066 || INDIRECT_REF_P (exprv
))
1067 /* Expr is not being 'used' here, otherwise we whould have
1068 called mark_{rl}value_use use here, which would have in turn
1069 called mark_exp_read. Rather, we call mark_exp_read directly
1070 to avoid some warnings when
1071 -Wunused-but-set-{variable,parameter} is in effect. */
1072 mark_exp_read (exprv
);
1075 if (!TREE_TYPE (expr
))
1077 if (invalid_nonstatic_memfn_p (loc
, expr
, complain
))
1078 return error_mark_node
;
1079 if (TREE_CODE (expr
) == PSEUDO_DTOR_EXPR
)
1081 if (complain
& tf_error
)
1082 error_at (loc
, "pseudo-destructor is not called");
1083 return error_mark_node
;
1085 if (VOID_TYPE_P (TREE_TYPE (expr
)))
1087 switch (TREE_CODE (expr
))
1091 /* The two parts of a cond expr might be separate lvalues. */
1092 tree op1
= TREE_OPERAND (expr
,1);
1093 tree op2
= TREE_OPERAND (expr
,2);
1094 bool side_effects
= ((op1
&& TREE_SIDE_EFFECTS (op1
))
1095 || TREE_SIDE_EFFECTS (op2
));
1096 tree new_op1
, new_op2
;
1097 new_op1
= NULL_TREE
;
1098 if (implicit
!= ICV_CAST
&& !side_effects
)
1101 new_op1
= convert_to_void (op1
, ICV_SECOND_OF_COND
, complain
);
1102 new_op2
= convert_to_void (op2
, ICV_THIRD_OF_COND
, complain
);
1107 new_op1
= convert_to_void (op1
, ICV_CAST
, complain
);
1108 new_op2
= convert_to_void (op2
, ICV_CAST
, complain
);
1111 expr
= build3 (COND_EXPR
, TREE_TYPE (new_op2
),
1112 TREE_OPERAND (expr
, 0), new_op1
, new_op2
);
1118 /* The second part of a compound expr contains the value. */
1119 tree op1
= TREE_OPERAND (expr
,1);
1121 if (implicit
!= ICV_CAST
&& !TREE_NO_WARNING (expr
))
1122 new_op1
= convert_to_void (op1
, ICV_RIGHT_OF_COMMA
, complain
);
1124 new_op1
= convert_to_void (op1
, ICV_CAST
, complain
);
1128 tree t
= build2 (COMPOUND_EXPR
, TREE_TYPE (new_op1
),
1129 TREE_OPERAND (expr
, 0), new_op1
);
1136 case NON_LVALUE_EXPR
:
1138 /* These have already decayed to rvalue. */
1141 case CALL_EXPR
: /* We have a special meaning for volatile void fn(). */
1142 maybe_warn_nodiscard (expr
, implicit
);
1147 tree type
= TREE_TYPE (expr
);
1148 int is_reference
= TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0)))
1150 int is_volatile
= TYPE_VOLATILE (type
);
1151 int is_complete
= COMPLETE_TYPE_P (complete_type (type
));
1153 /* Can't load the value if we don't know the type. */
1154 if (is_volatile
&& !is_complete
)
1156 if (complain
& tf_warning
)
1160 warning_at (loc
, 0, "conversion to void will not access "
1161 "object of incomplete type %qT", type
);
1163 case ICV_SECOND_OF_COND
:
1164 warning_at (loc
, 0, "indirection will not access object of "
1165 "incomplete type %qT in second operand "
1166 "of conditional expression", type
);
1168 case ICV_THIRD_OF_COND
:
1169 warning_at (loc
, 0, "indirection will not access object of "
1170 "incomplete type %qT in third operand "
1171 "of conditional expression", type
);
1173 case ICV_RIGHT_OF_COMMA
:
1174 warning_at (loc
, 0, "indirection will not access object of "
1175 "incomplete type %qT in right operand of "
1176 "comma operator", type
);
1178 case ICV_LEFT_OF_COMMA
:
1179 warning_at (loc
, 0, "indirection will not access object of "
1180 "incomplete type %qT in left operand of "
1181 "comma operator", type
);
1184 warning_at (loc
, 0, "indirection will not access object of "
1185 "incomplete type %qT in statement", type
);
1187 case ICV_THIRD_IN_FOR
:
1188 warning_at (loc
, 0, "indirection will not access object of "
1189 "incomplete type %qT in for increment "
1190 "expression", type
);
1196 /* Don't load the value if this is an implicit dereference, or if
1197 the type needs to be handled by ctors/dtors. */
1198 else if (is_volatile
&& is_reference
)
1200 if (complain
& tf_warning
)
1204 warning_at (loc
, 0, "conversion to void will not access "
1205 "object of type %qT", type
);
1207 case ICV_SECOND_OF_COND
:
1208 warning_at (loc
, 0, "implicit dereference will not access "
1209 "object of type %qT in second operand of "
1210 "conditional expression", type
);
1212 case ICV_THIRD_OF_COND
:
1213 warning_at (loc
, 0, "implicit dereference will not access "
1214 "object of type %qT in third operand of "
1215 "conditional expression", type
);
1217 case ICV_RIGHT_OF_COMMA
:
1218 warning_at (loc
, 0, "implicit dereference will not access "
1219 "object of type %qT in right operand of "
1220 "comma operator", type
);
1222 case ICV_LEFT_OF_COMMA
:
1223 warning_at (loc
, 0, "implicit dereference will not access "
1224 "object of type %qT in left operand of comma "
1228 warning_at (loc
, 0, "implicit dereference will not access "
1229 "object of type %qT in statement", type
);
1231 case ICV_THIRD_IN_FOR
:
1232 warning_at (loc
, 0, "implicit dereference will not access "
1233 "object of type %qT in for increment expression",
1240 else if (is_volatile
&& TREE_ADDRESSABLE (type
))
1242 if (complain
& tf_warning
)
1246 warning_at (loc
, 0, "conversion to void will not access "
1247 "object of non-trivially-copyable type %qT",
1250 case ICV_SECOND_OF_COND
:
1251 warning_at (loc
, 0, "indirection will not access object of "
1252 "non-trivially-copyable type %qT in second "
1253 "operand of conditional expression", type
);
1255 case ICV_THIRD_OF_COND
:
1256 warning_at (loc
, 0, "indirection will not access object of "
1257 "non-trivially-copyable type %qT in third "
1258 "operand of conditional expression", type
);
1260 case ICV_RIGHT_OF_COMMA
:
1261 warning_at (loc
, 0, "indirection will not access object of "
1262 "non-trivially-copyable type %qT in right "
1263 "operand of comma operator", type
);
1265 case ICV_LEFT_OF_COMMA
:
1266 warning_at (loc
, 0, "indirection will not access object of "
1267 "non-trivially-copyable type %qT in left "
1268 "operand of comma operator", type
);
1271 warning_at (loc
, 0, "indirection will not access object of "
1272 "non-trivially-copyable type %qT in statement",
1275 case ICV_THIRD_IN_FOR
:
1276 warning_at (loc
, 0, "indirection will not access object of "
1277 "non-trivially-copyable type %qT in for "
1278 "increment expression", type
);
1284 if (is_reference
|| !is_volatile
|| !is_complete
|| TREE_ADDRESSABLE (type
))
1286 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1287 operation is stripped off. Note that we don't warn about
1288 - an expression with TREE_NO_WARNING set. (For an example of
1289 such expressions, see build_over_call in call.c.)
1290 - automatic dereferencing of references, since the user cannot
1291 control it. (See also warn_if_unused_value() in c-common.c.) */
1292 if (warn_unused_value
1293 && implicit
!= ICV_CAST
1294 && (complain
& tf_warning
)
1295 && !TREE_NO_WARNING (expr
)
1297 warning_at (loc
, OPT_Wunused_value
, "value computed is not used");
1298 expr
= TREE_OPERAND (expr
, 0);
1306 /* External variables might be incomplete. */
1307 tree type
= TREE_TYPE (expr
);
1308 int is_complete
= COMPLETE_TYPE_P (complete_type (type
));
1310 if (TYPE_VOLATILE (type
) && !is_complete
&& (complain
& tf_warning
))
1314 warning_at (loc
, 0, "conversion to void will not access "
1315 "object %qE of incomplete type %qT", expr
, type
);
1317 case ICV_SECOND_OF_COND
:
1318 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1319 "not be accessed in second operand of "
1320 "conditional expression", expr
, type
);
1322 case ICV_THIRD_OF_COND
:
1323 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1324 "not be accessed in third operand of "
1325 "conditional expression", expr
, type
);
1327 case ICV_RIGHT_OF_COMMA
:
1328 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1329 "not be accessed in right operand of comma operator",
1332 case ICV_LEFT_OF_COMMA
:
1333 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1334 "not be accessed in left operand of comma operator",
1338 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1339 "not be accessed in statement", expr
, type
);
1341 case ICV_THIRD_IN_FOR
:
1342 warning_at (loc
, 0, "variable %qE of incomplete type %qT will "
1343 "not be accessed in for increment expression",
1354 /* Don't bother with the temporary object returned from a function if
1355 we don't use it, don't need to destroy it, and won't abort in
1356 assign_temp. We'll still
1357 allocate space for it in expand_call or declare_return_variable,
1358 but we don't need to track it through all the tree phases. */
1359 if (TARGET_EXPR_IMPLICIT_P (expr
)
1360 && !TREE_ADDRESSABLE (TREE_TYPE (expr
)))
1362 tree init
= TARGET_EXPR_INITIAL (expr
);
1363 if (TREE_CODE (init
) == AGGR_INIT_EXPR
1364 && !AGGR_INIT_VIA_CTOR_P (init
))
1366 tree fn
= AGGR_INIT_EXPR_FN (init
);
1367 expr
= build_call_array_loc (input_location
,
1368 TREE_TYPE (TREE_TYPE
1371 aggr_init_expr_nargs (init
),
1372 AGGR_INIT_EXPR_ARGP (init
));
1375 maybe_warn_nodiscard (expr
, implicit
);
1380 expr
= resolve_nondeduced_context (expr
, complain
);
1384 if (TREE_CODE (probe
) == ADDR_EXPR
)
1385 probe
= TREE_OPERAND (expr
, 0);
1386 if (type_unknown_p (probe
))
1388 /* [over.over] enumerates the places where we can take the address
1389 of an overloaded function, and this is not one of them. */
1390 if (complain
& tf_error
)
1394 error_at (loc
, "conversion to void "
1395 "cannot resolve address of overloaded function");
1397 case ICV_SECOND_OF_COND
:
1398 error_at (loc
, "second operand of conditional expression "
1399 "cannot resolve address of overloaded function");
1401 case ICV_THIRD_OF_COND
:
1402 error_at (loc
, "third operand of conditional expression "
1403 "cannot resolve address of overloaded function");
1405 case ICV_RIGHT_OF_COMMA
:
1406 error_at (loc
, "right operand of comma operator "
1407 "cannot resolve address of overloaded function");
1409 case ICV_LEFT_OF_COMMA
:
1410 error_at (loc
, "left operand of comma operator "
1411 "cannot resolve address of overloaded function");
1414 error_at (loc
, "statement "
1415 "cannot resolve address of overloaded function");
1417 case ICV_THIRD_IN_FOR
:
1418 error_at (loc
, "for increment expression "
1419 "cannot resolve address of overloaded function");
1423 return error_mark_node
;
1426 else if (implicit
!= ICV_CAST
&& probe
== expr
&& is_overloaded_fn (probe
))
1428 /* Only warn when there is no &. */
1429 if (complain
& tf_warning
)
1432 case ICV_SECOND_OF_COND
:
1433 warning_at (loc
, OPT_Waddress
,
1434 "second operand of conditional expression "
1435 "is a reference, not call, to function %qE", expr
);
1437 case ICV_THIRD_OF_COND
:
1438 warning_at (loc
, OPT_Waddress
,
1439 "third operand of conditional expression "
1440 "is a reference, not call, to function %qE", expr
);
1442 case ICV_RIGHT_OF_COMMA
:
1443 warning_at (loc
, OPT_Waddress
,
1444 "right operand of comma operator "
1445 "is a reference, not call, to function %qE", expr
);
1447 case ICV_LEFT_OF_COMMA
:
1448 warning_at (loc
, OPT_Waddress
,
1449 "left operand of comma operator "
1450 "is a reference, not call, to function %qE", expr
);
1453 warning_at (loc
, OPT_Waddress
,
1454 "statement is a reference, not call, to function %qE",
1457 case ICV_THIRD_IN_FOR
:
1458 warning_at (loc
, OPT_Waddress
,
1459 "for increment expression "
1460 "is a reference, not call, to function %qE", expr
);
1466 if (TREE_CODE (expr
) == COMPONENT_REF
)
1467 expr
= TREE_OPERAND (expr
, 0);
1471 if (expr
!= error_mark_node
&& !VOID_TYPE_P (TREE_TYPE (expr
)))
1473 if (implicit
!= ICV_CAST
1474 && warn_unused_value
1475 && !TREE_NO_WARNING (expr
)
1476 && !processing_template_decl
)
1478 /* The middle end does not warn about expressions that have
1479 been explicitly cast to void, so we must do so here. */
1480 if (!TREE_SIDE_EFFECTS (expr
)) {
1481 if (complain
& tf_warning
)
1484 case ICV_SECOND_OF_COND
:
1485 warning_at (loc
, OPT_Wunused_value
,
1486 "second operand of conditional expression "
1489 case ICV_THIRD_OF_COND
:
1490 warning_at (loc
, OPT_Wunused_value
,
1491 "third operand of conditional expression "
1494 case ICV_RIGHT_OF_COMMA
:
1495 warning_at (loc
, OPT_Wunused_value
,
1496 "right operand of comma operator has no effect");
1498 case ICV_LEFT_OF_COMMA
:
1499 warning_at (loc
, OPT_Wunused_value
,
1500 "left operand of comma operator has no effect");
1503 warning_at (loc
, OPT_Wunused_value
,
1504 "statement has no effect");
1506 case ICV_THIRD_IN_FOR
:
1507 warning_at (loc
, OPT_Wunused_value
,
1508 "for increment expression has no effect");
1517 enum tree_code code
;
1518 enum tree_code_class tclass
;
1521 /* We might like to warn about (say) "(int) f()", as the
1522 cast has no effect, but the compiler itself will
1523 generate implicit conversions under some
1524 circumstances. (For example a block copy will be
1525 turned into a call to "__builtin_memcpy", with a
1526 conversion of the return value to an appropriate
1527 type.) So, to avoid false positives, we strip
1528 conversions. Do not use STRIP_NOPs because it will
1529 not strip conversions to "void", as that is not a
1530 mode-preserving conversion. */
1531 while (TREE_CODE (e
) == NOP_EXPR
)
1532 e
= TREE_OPERAND (e
, 0);
1534 code
= TREE_CODE (e
);
1535 tclass
= TREE_CODE_CLASS (code
);
1536 if ((tclass
== tcc_comparison
1537 || tclass
== tcc_unary
1538 || (tclass
== tcc_binary
1539 && !(code
== MODIFY_EXPR
1540 || code
== INIT_EXPR
1541 || code
== PREDECREMENT_EXPR
1542 || code
== PREINCREMENT_EXPR
1543 || code
== POSTDECREMENT_EXPR
1544 || code
== POSTINCREMENT_EXPR
))
1545 || code
== VEC_PERM_EXPR
1546 || code
== VEC_COND_EXPR
)
1547 && (complain
& tf_warning
))
1548 warning_at (loc
, OPT_Wunused_value
, "value computed is not used");
1551 expr
= build1 (CONVERT_EXPR
, void_type_node
, expr
);
1553 if (! TREE_SIDE_EFFECTS (expr
))
1558 /* Create an expression whose value is that of EXPR,
1559 converted to type TYPE. The TREE_TYPE of the value
1560 is always TYPE. This function implements all reasonable
1561 conversions; callers should filter out those that are
1562 not permitted by the language being compiled.
1564 Most of this routine is from build_reinterpret_cast.
1566 The back end cannot call cp_convert (what was convert) because
1567 conversions to/from basetypes may involve memory references
1568 (vbases) and adding or subtracting small values (multiple
1569 inheritance), but it calls convert from the constant folding code
1570 on subtrees of already built trees after it has ripped them apart.
1572 Also, if we ever support range variables, we'll probably also have to
1573 do a little bit more work. */
1576 convert (tree type
, tree expr
)
1580 if (type
== error_mark_node
|| expr
== error_mark_node
)
1581 return error_mark_node
;
1583 intype
= TREE_TYPE (expr
);
1585 if (POINTER_TYPE_P (type
) && POINTER_TYPE_P (intype
))
1586 return build_nop (type
, expr
);
1588 return ocp_convert (type
, expr
, CONV_BACKEND_CONVERT
,
1589 LOOKUP_NORMAL
|LOOKUP_NO_CONVERSION
,
1590 tf_warning_or_error
);
1593 /* Like cp_convert, except permit conversions to take place which
1594 are not normally allowed due to access restrictions
1595 (such as conversion from sub-type to private super-type). */
1598 convert_force (tree type
, tree expr
, int convtype
, tsubst_flags_t complain
)
1601 enum tree_code code
= TREE_CODE (type
);
1603 if (code
== REFERENCE_TYPE
)
1604 return convert_to_reference (type
, e
, CONV_C_CAST
, 0,
1605 NULL_TREE
, complain
);
1607 if (code
== POINTER_TYPE
)
1608 return convert_to_pointer_force (type
, e
, complain
);
1610 /* From typeck.c convert_for_assignment */
1611 if (((TYPE_PTR_P (TREE_TYPE (e
)) && TREE_CODE (e
) == ADDR_EXPR
1612 && TREE_CODE (TREE_TYPE (TREE_TYPE (e
))) == METHOD_TYPE
)
1613 || integer_zerop (e
)
1614 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e
)))
1615 && TYPE_PTRMEMFUNC_P (type
))
1616 /* compatible pointer to member functions. */
1617 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type
), e
, 1,
1618 /*c_cast_p=*/1, complain
);
1620 return ocp_convert (type
, e
, CONV_C_CAST
|convtype
, LOOKUP_NORMAL
, complain
);
1623 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1624 exists, return the attempted conversion. This may
1625 return ERROR_MARK_NODE if the conversion is not
1626 allowed (references private members, etc).
1627 If no conversion exists, NULL_TREE is returned.
1629 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1630 object parameter, or by the second standard conversion sequence if
1631 that doesn't do it. This will probably wait for an overloading rewrite.
1635 build_type_conversion (tree xtype
, tree expr
)
1637 /* C++: check to see if we can convert this aggregate type
1638 into the required type. */
1639 return build_user_type_conversion (xtype
, expr
, LOOKUP_NORMAL
,
1640 tf_warning_or_error
);
1643 /* Convert the given EXPR to one of a group of types suitable for use in an
1644 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1645 which indicates which types are suitable. If COMPLAIN is true, complain
1646 about ambiguity; otherwise, the caller will deal with it. */
1649 build_expr_type_conversion (int desires
, tree expr
, bool complain
)
1651 tree basetype
= TREE_TYPE (expr
);
1652 tree conv
= NULL_TREE
;
1653 tree winner
= NULL_TREE
;
1655 if (expr
== null_node
1656 && (desires
& WANT_INT
)
1657 && !(desires
& WANT_NULL
))
1659 source_location loc
=
1660 expansion_point_location_if_in_system_header (input_location
);
1662 warning_at (loc
, OPT_Wconversion_null
,
1663 "converting NULL to non-pointer type");
1666 if (basetype
== error_mark_node
)
1667 return error_mark_node
;
1669 if (! MAYBE_CLASS_TYPE_P (basetype
))
1670 switch (TREE_CODE (basetype
))
1673 if ((desires
& WANT_NULL
) && null_ptr_cst_p (expr
))
1678 return (desires
& WANT_INT
) ? expr
: NULL_TREE
;
1680 return (desires
& WANT_ENUM
) ? expr
: NULL_TREE
;
1682 return (desires
& WANT_FLOAT
) ? expr
: NULL_TREE
;
1684 return (desires
& WANT_POINTER
) ? expr
: NULL_TREE
;
1688 return (desires
& WANT_POINTER
) ? decay_conversion (expr
,
1689 tf_warning_or_error
)
1694 if ((desires
& WANT_VECTOR_OR_COMPLEX
) == 0)
1696 switch (TREE_CODE (TREE_TYPE (basetype
)))
1700 return (desires
& WANT_INT
) ? expr
: NULL_TREE
;
1702 return (desires
& WANT_ENUM
) ? expr
: NULL_TREE
;
1704 return (desires
& WANT_FLOAT
) ? expr
: NULL_TREE
;
1713 /* The code for conversions from class type is currently only used for
1714 delete expressions. Other expressions are handled by build_new_op. */
1715 if (!complete_type_or_maybe_complain (basetype
, expr
, complain
))
1716 return error_mark_node
;
1717 if (!TYPE_HAS_CONVERSION (basetype
))
1720 for (conv
= lookup_conversions (basetype
); conv
; conv
= TREE_CHAIN (conv
))
1724 tree cand
= TREE_VALUE (conv
);
1725 cand
= OVL_CURRENT (cand
);
1727 if (winner
&& winner
== cand
)
1730 if (DECL_NONCONVERTING_P (cand
))
1733 candidate
= non_reference (TREE_TYPE (TREE_TYPE (cand
)));
1735 switch (TREE_CODE (candidate
))
1739 win
= (desires
& WANT_INT
); break;
1741 win
= (desires
& WANT_ENUM
); break;
1743 win
= (desires
& WANT_FLOAT
); break;
1745 win
= (desires
& WANT_POINTER
); break;
1749 if ((desires
& WANT_VECTOR_OR_COMPLEX
) == 0)
1751 switch (TREE_CODE (TREE_TYPE (candidate
)))
1755 win
= (desires
& WANT_INT
); break;
1757 win
= (desires
& WANT_ENUM
); break;
1759 win
= (desires
& WANT_FLOAT
); break;
1766 /* A wildcard could be instantiated to match any desired
1767 type, but we can't deduce the template argument. */
1768 if (WILDCARD_TYPE_P (candidate
))
1775 if (TREE_CODE (cand
) == TEMPLATE_DECL
)
1778 error ("default type conversion can't deduce template"
1779 " argument for %qD", cand
);
1780 return error_mark_node
;
1786 = non_reference (TREE_TYPE (TREE_TYPE (winner
)));
1788 if (!same_type_ignoring_top_level_qualifiers_p (winner_type
,
1793 error ("ambiguous default type conversion from %qT",
1795 inform (input_location
,
1796 " candidate conversions include %qD and %qD",
1799 return error_mark_node
;
1809 tree type
= non_reference (TREE_TYPE (TREE_TYPE (winner
)));
1810 return build_user_type_conversion (type
, expr
, LOOKUP_NORMAL
,
1811 tf_warning_or_error
);
1817 /* Implements integral promotion (4.1) and float->double promotion. */
1820 type_promotes_to (tree type
)
1824 if (type
== error_mark_node
)
1825 return error_mark_node
;
1827 type
= TYPE_MAIN_VARIANT (type
);
1829 /* Check for promotions of target-defined types first. */
1830 promoted_type
= targetm
.promoted_type (type
);
1832 return promoted_type
;
1834 /* bool always promotes to int (not unsigned), even if it's the same
1836 if (TREE_CODE (type
) == BOOLEAN_TYPE
)
1837 type
= integer_type_node
;
1839 /* Normally convert enums to int, but convert wide enums to something
1840 wider. Scoped enums don't promote, but pretend they do for backward
1841 ABI bug compatibility wrt varargs. */
1842 else if (TREE_CODE (type
) == ENUMERAL_TYPE
1843 || type
== char16_type_node
1844 || type
== char32_type_node
1845 || type
== wchar_type_node
)
1847 int precision
= MAX (TYPE_PRECISION (type
),
1848 TYPE_PRECISION (integer_type_node
));
1849 tree totype
= c_common_type_for_size (precision
, 0);
1851 if (TREE_CODE (prom
) == ENUMERAL_TYPE
)
1852 prom
= ENUM_UNDERLYING_TYPE (prom
);
1853 if (TYPE_UNSIGNED (prom
)
1854 && ! int_fits_type_p (TYPE_MAX_VALUE (prom
), totype
))
1855 prom
= c_common_type_for_size (precision
, 1);
1858 if (SCOPED_ENUM_P (type
))
1860 if (abi_version_crosses (6)
1861 && TYPE_MODE (prom
) != TYPE_MODE (type
))
1862 warning (OPT_Wabi
, "scoped enum %qT passed through ... as "
1863 "%qT before -fabi-version=6, %qT after",
1864 type
, prom
, ENUM_UNDERLYING_TYPE (type
));
1865 if (!abi_version_at_least (6))
1871 else if (c_promoting_integer_type_p (type
))
1873 /* Retain unsignedness if really not getting bigger. */
1874 if (TYPE_UNSIGNED (type
)
1875 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
1876 type
= unsigned_type_node
;
1878 type
= integer_type_node
;
1880 else if (type
== float_type_node
)
1881 type
= double_type_node
;
1886 /* The routines below this point are carefully written to conform to
1887 the standard. They use the same terminology, and follow the rules
1888 closely. Although they are used only in pt.c at the moment, they
1889 should presumably be used everywhere in the future. */
1891 /* Attempt to perform qualification conversions on EXPR to convert it
1892 to TYPE. Return the resulting expression, or error_mark_node if
1893 the conversion was impossible. */
1896 perform_qualification_conversions (tree type
, tree expr
)
1900 expr_type
= TREE_TYPE (expr
);
1902 if (same_type_p (type
, expr_type
))
1904 else if (TYPE_PTR_P (type
) && TYPE_PTR_P (expr_type
)
1905 && comp_ptr_ttypes (TREE_TYPE (type
), TREE_TYPE (expr_type
)))
1906 return build_nop (type
, expr
);
1907 else if (TYPE_PTRMEM_P (type
) && TYPE_PTRMEM_P (expr_type
)
1908 && 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
)))
1912 return build_nop (type
, expr
);
1914 return error_mark_node
;
1917 /* True iff T is a transaction-safe function type. */
1920 tx_safe_fn_type_p (tree t
)
1922 if (TREE_CODE (t
) != FUNCTION_TYPE
1923 && TREE_CODE (t
) != METHOD_TYPE
)
1925 return !!lookup_attribute ("transaction_safe", TYPE_ATTRIBUTES (t
));
1928 /* Return the transaction-unsafe variant of transaction-safe function type
1932 tx_unsafe_fn_variant (tree t
)
1934 gcc_assert (tx_safe_fn_type_p (t
));
1935 tree attrs
= remove_attribute ("transaction_safe",
1936 TYPE_ATTRIBUTES (t
));
1937 return cp_build_type_attribute_variant (t
, attrs
);
1940 /* Return true iff FROM can convert to TO by a transaction-safety
1944 can_convert_tx_safety (tree to
, tree from
)
1946 return (flag_tm
&& tx_safe_fn_type_p (from
)
1947 && same_type_p (to
, tx_unsafe_fn_variant (from
)));
1950 /* Return true iff FROM can convert to TO by dropping noexcept. */
1953 noexcept_conv_p (tree to
, tree from
)
1955 if (!flag_noexcept_type
)
1958 tree t
= non_reference (to
);
1960 if (TYPE_PTRMEMFUNC_P (t
)
1961 && TYPE_PTRMEMFUNC_P (f
))
1963 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
1964 f
= TYPE_PTRMEMFUNC_FN_TYPE (f
);
1966 if (TREE_CODE (t
) == POINTER_TYPE
1967 && TREE_CODE (f
) == POINTER_TYPE
)
1972 tree_code code
= TREE_CODE (f
);
1973 if (TREE_CODE (t
) != code
)
1975 if (code
!= FUNCTION_TYPE
&& code
!= METHOD_TYPE
)
1977 if (!type_throw_all_p (t
)
1978 || type_throw_all_p (f
))
1980 tree v
= build_exception_variant (f
, NULL_TREE
);
1981 return same_type_p (t
, v
);
1984 /* Return true iff FROM can convert to TO by a function pointer conversion. */
1987 fnptr_conv_p (tree to
, tree from
)
1989 tree t
= non_reference (to
);
1991 if (TYPE_PTRMEMFUNC_P (t
)
1992 && TYPE_PTRMEMFUNC_P (f
))
1994 t
= TYPE_PTRMEMFUNC_FN_TYPE (t
);
1995 f
= TYPE_PTRMEMFUNC_FN_TYPE (f
);
1997 if (TREE_CODE (t
) == POINTER_TYPE
1998 && TREE_CODE (f
) == POINTER_TYPE
)
2004 return (noexcept_conv_p (t
, f
)
2005 || can_convert_tx_safety (t
, f
));
2008 /* Return FN with any NOP_EXPRs that represent function pointer
2009 conversions stripped. */
2012 strip_fnptr_conv (tree fn
)
2014 while (TREE_CODE (fn
) == NOP_EXPR
)
2016 tree op
= TREE_OPERAND (fn
, 0);
2017 if (fnptr_conv_p (TREE_TYPE (fn
), TREE_TYPE (op
)))