PR target/59685
[official-gcc.git] / gcc / cp / cvt.c
blobc2cdf833802cfb1b3ff452313b6c965d0026675e
1 /* Language-level data type conversion for GNU C++.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* This file contains the functions for converting C++ expressions
23 to different data types. The only entry point is `convert'.
24 Every language front end must have a `convert' function
25 but what kind of conversions it does will depend on the language. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "stor-layout.h"
33 #include "flags.h"
34 #include "cp-tree.h"
35 #include "intl.h"
36 #include "convert.h"
37 #include "decl.h"
38 #include "target.h"
40 static tree cp_convert_to_pointer (tree, tree, tsubst_flags_t);
41 static tree convert_to_pointer_force (tree, tree, tsubst_flags_t);
42 static tree build_type_conversion (tree, tree);
43 static tree build_up_reference (tree, tree, int, tree, tsubst_flags_t);
44 static void diagnose_ref_binding (location_t, tree, tree, tree);
46 /* Change of width--truncation and extension of integers or reals--
47 is represented with NOP_EXPR. Proper functioning of many things
48 assumes that no other conversions can be NOP_EXPRs.
50 Conversion between integer and pointer is represented with CONVERT_EXPR.
51 Converting integer to real uses FLOAT_EXPR
52 and real to integer uses FIX_TRUNC_EXPR.
54 Here is a list of all the functions that assume that widening and
55 narrowing is always done with a NOP_EXPR:
56 In convert.c, convert_to_integer.
57 In c-typeck.c, build_binary_op_nodefault (boolean ops),
58 and c_common_truthvalue_conversion.
59 In expr.c: expand_expr, for operands of a MULT_EXPR.
60 In fold-const.c: fold.
61 In tree.c: get_narrower and get_unwidened.
63 C++: in multiple-inheritance, converting between pointers may involve
64 adjusting them by a delta stored within the class definition. */
66 /* Subroutines of `convert'. */
68 /* if converting pointer to pointer
69 if dealing with classes, check for derived->base or vice versa
70 else if dealing with method pointers, delegate
71 else convert blindly
72 else if converting class, pass off to build_type_conversion
73 else try C-style pointer conversion. */
75 static tree
76 cp_convert_to_pointer (tree type, tree expr, tsubst_flags_t complain)
78 tree intype = TREE_TYPE (expr);
79 enum tree_code form;
80 tree rval;
81 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
83 if (intype == error_mark_node)
84 return error_mark_node;
86 if (MAYBE_CLASS_TYPE_P (intype))
88 intype = complete_type (intype);
89 if (!COMPLETE_TYPE_P (intype))
91 if (complain & tf_error)
92 error_at (loc, "can%'t convert from incomplete type %qT to %qT",
93 intype, type);
94 return error_mark_node;
97 rval = build_type_conversion (type, expr);
98 if (rval)
100 if ((complain & tf_error)
101 && rval == error_mark_node)
102 error_at (loc, "conversion of %qE from %qT to %qT is ambiguous",
103 expr, intype, type);
104 return rval;
108 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
109 if (TYPE_PTR_P (type)
110 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
111 || VOID_TYPE_P (TREE_TYPE (type))))
113 if (TYPE_PTRMEMFUNC_P (intype)
114 || TREE_CODE (intype) == METHOD_TYPE)
115 return convert_member_func_to_ptr (type, expr, complain);
116 if (TYPE_PTR_P (TREE_TYPE (expr)))
117 return build_nop (type, expr);
118 intype = TREE_TYPE (expr);
121 if (expr == error_mark_node)
122 return error_mark_node;
124 form = TREE_CODE (intype);
126 if (POINTER_TYPE_P (intype))
128 intype = TYPE_MAIN_VARIANT (intype);
130 if (TYPE_MAIN_VARIANT (type) != intype
131 && TYPE_PTR_P (type)
132 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
133 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
134 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
135 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
137 enum tree_code code = PLUS_EXPR;
138 tree binfo;
139 tree intype_class;
140 tree type_class;
141 bool same_p;
143 intype_class = TREE_TYPE (intype);
144 type_class = TREE_TYPE (type);
146 same_p = same_type_p (TYPE_MAIN_VARIANT (intype_class),
147 TYPE_MAIN_VARIANT (type_class));
148 binfo = NULL_TREE;
149 /* Try derived to base conversion. */
150 if (!same_p)
151 binfo = lookup_base (intype_class, type_class, ba_check,
152 NULL, complain);
153 if (!same_p && !binfo)
155 /* Try base to derived conversion. */
156 binfo = lookup_base (type_class, intype_class, ba_check,
157 NULL, complain);
158 code = MINUS_EXPR;
160 if (binfo == error_mark_node)
161 return error_mark_node;
162 if (binfo || same_p)
164 if (binfo)
165 expr = build_base_path (code, expr, binfo, 0, complain);
166 /* Add any qualifier conversions. */
167 return build_nop (type, expr);
171 if (TYPE_PTRMEMFUNC_P (type))
173 if (complain & tf_error)
174 error_at (loc, "cannot convert %qE from type %qT to type %qT",
175 expr, intype, type);
176 return error_mark_node;
179 return build_nop (type, expr);
181 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
182 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
183 return convert_ptrmem (type, expr, /*allow_inverse_p=*/false,
184 /*c_cast_p=*/false, complain);
185 else if (TYPE_PTRMEMFUNC_P (intype))
187 if (!warn_pmf2ptr)
189 if (TREE_CODE (expr) == PTRMEM_CST)
190 return cp_convert_to_pointer (type, PTRMEM_CST_MEMBER (expr),
191 complain);
192 else if (TREE_CODE (expr) == OFFSET_REF)
194 tree object = TREE_OPERAND (expr, 0);
195 return get_member_function_from_ptrfunc (&object,
196 TREE_OPERAND (expr, 1),
197 complain);
200 error_at (loc, "cannot convert %qE from type %qT to type %qT",
201 expr, intype, type);
202 return error_mark_node;
205 if (null_ptr_cst_p (expr))
207 if (TYPE_PTRMEMFUNC_P (type))
208 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
209 /*c_cast_p=*/false, complain);
211 if (complain & tf_warning)
212 maybe_warn_zero_as_null_pointer_constant (expr, loc);
214 /* A NULL pointer-to-data-member is represented by -1, not by
215 zero. */
216 tree val = (TYPE_PTRDATAMEM_P (type)
217 ? build_int_cst_type (type, -1)
218 : build_int_cst (type, 0));
220 return (TREE_SIDE_EFFECTS (expr)
221 ? build2 (COMPOUND_EXPR, type, expr, val) : val);
223 else if (TYPE_PTRMEM_P (type) && INTEGRAL_CODE_P (form))
225 if (complain & tf_error)
226 error_at (loc, "invalid conversion from %qT to %qT", intype, type);
227 return error_mark_node;
230 if (INTEGRAL_CODE_P (form))
232 if (TYPE_PRECISION (intype) == POINTER_SIZE)
233 return build1 (CONVERT_EXPR, type, expr);
234 expr = cp_convert (c_common_type_for_size (POINTER_SIZE, 0), expr,
235 complain);
236 /* Modes may be different but sizes should be the same. There
237 is supposed to be some integral type that is the same width
238 as a pointer. */
239 gcc_assert (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (expr)))
240 == GET_MODE_SIZE (TYPE_MODE (type)));
242 return convert_to_pointer (type, expr);
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 %qT to type %qT",
250 expr, intype, type);
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). */
258 static tree
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;
275 tree binfo;
277 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
278 ba_unique, NULL, complain);
279 if (!binfo)
281 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
282 ba_unique, NULL, complain);
283 code = MINUS_EXPR;
285 if (binfo == error_mark_node)
286 return error_mark_node;
287 if (binfo)
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)),
294 TREE_TYPE (type)))
295 expr = build_nop (type, expr);
296 return expr;
301 return cp_convert_to_pointer (type, expr, 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. */
312 static tree
313 build_up_reference (tree type, tree arg, int flags, tree decl,
314 tsubst_flags_t complain)
316 tree rval;
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) && ! real_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. */
326 tree targ = arg;
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) && ! lvalue_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,
352 NULL, complain);
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);
359 else
360 rval
361 = convert_to_pointer_force (build_pointer_type (target_type),
362 rval, complain);
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
368 for diagnostics.
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. */
374 static void
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))
381 const char *msg;
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");
389 else if (decl)
390 msg = G_("initialization of non-const reference type %q#T from "
391 "rvalue of type %qT");
392 else
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. */
407 tree
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));
412 tree intype;
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. */
440 rval_as_conversion
441 = build_type_conversion (reftype, expr);
443 if (rval_as_conversion && rval_as_conversion != error_mark_node
444 && real_lvalue_p (rval_as_conversion))
446 expr = rval_as_conversion;
447 rval_as_conversion = NULL_TREE;
448 intype = type;
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 && ! real_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 %qT to %qT discards qualifiers",
470 ttr, reftype);
471 else
472 return error_mark_node;
476 return build_up_reference (reftype, expr, flags, decl, complain);
478 else if ((convtype & CONV_REINTERPRET) && lvalue_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
486 meant. */
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",
492 intype, reftype);
494 rval = cp_build_addr_expr (expr, complain);
495 if (rval != error_mark_node)
496 rval = convert_force (build_pointer_type (TREE_TYPE (reftype)),
497 rval, 0, complain);
498 if (rval != error_mark_node)
499 rval = build1 (NOP_EXPR, reftype, rval);
501 else
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)
506 return rval;
507 if (complain & tf_error)
508 diagnose_ref_binding (loc, reftype, intype, decl);
509 rval = build_up_reference (reftype, rval, flags, decl, complain);
512 if (rval)
514 /* If we found a way to convert earlier, then use it. */
515 return rval;
518 if (complain & tf_error)
519 error_at (loc, "cannot convert type %qT to type %qT", 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. */
527 tree
528 convert_from_reference (tree val)
530 if (TREE_TYPE (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);
536 mark_exp_read (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));
544 val = ref;
547 return val;
550 /* Really perform an lvalue-to-rvalue conversion, including copying an
551 argument of class type into a temporary. */
553 tree
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);
565 else
566 expr = decay_conversion (expr, complain);
568 return expr;
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
574 unchanged. */
576 static tree
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 = build_int_cst_wide (TREE_TYPE (expr),
586 TREE_INT_CST_LOW (expr),
587 TREE_INT_CST_HIGH (expr));
589 return expr;
592 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
593 properly. */
595 tree
596 cp_fold_convert (tree type, tree expr)
598 tree conv = fold_convert (type, expr);
599 conv = ignore_overflows (conv, expr);
600 return conv;
603 /* C++ conversions, preference to static cast conversions. */
605 tree
606 cp_convert (tree type, tree expr, tsubst_flags_t complain)
608 return ocp_convert (type, expr, CONV_OLD_CONVERT, LOOKUP_NORMAL, complain);
611 /* C++ equivalent of convert_and_check but using cp_convert as the
612 conversion function.
614 Convert EXPR to TYPE, warning about conversion problems with constants.
615 Invoke this function on every expression that is converted implicitly,
616 i.e. because of language rules and not because of an explicit cast. */
618 tree
619 cp_convert_and_check (tree type, tree expr, tsubst_flags_t complain)
621 tree result;
623 if (TREE_TYPE (expr) == type)
624 return expr;
626 result = cp_convert (type, expr, complain);
628 if ((complain & tf_warning)
629 && c_inhibit_evaluation_warnings == 0)
631 tree folded = maybe_constant_value (expr);
632 tree stripped = folded;
633 tree folded_result
634 = folded != expr ? cp_convert (type, folded, complain) : result;
636 /* maybe_constant_value wraps an INTEGER_CST with TREE_OVERFLOW in a
637 NOP_EXPR so that it isn't TREE_CONSTANT anymore. */
638 STRIP_NOPS (stripped);
640 if (!TREE_OVERFLOW_P (stripped)
641 && folded_result != error_mark_node)
642 warnings_for_convert_and_check (type, folded, folded_result);
645 return result;
648 /* Conversion...
650 FLAGS indicates how we should behave. */
652 tree
653 ocp_convert (tree type, tree expr, int convtype, int flags,
654 tsubst_flags_t complain)
656 tree e = expr;
657 enum tree_code code = TREE_CODE (type);
658 const char *invalid_conv_diag;
659 tree e1;
660 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
662 if (error_operand_p (e) || type == error_mark_node)
663 return error_mark_node;
665 complete_type (type);
666 complete_type (TREE_TYPE (expr));
668 if ((invalid_conv_diag
669 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
671 if (complain & tf_error)
672 error (invalid_conv_diag);
673 return error_mark_node;
676 /* FIXME remove when moving to c_fully_fold model. */
677 /* FIXME do we still need this test? */
678 if (!CLASS_TYPE_P (type))
679 e = integral_constant_value (e);
680 if (error_operand_p (e))
681 return error_mark_node;
683 if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP))
684 /* We need a new temporary; don't take this shortcut. */;
685 else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
687 if (same_type_p (type, TREE_TYPE (e)))
688 /* The call to fold will not always remove the NOP_EXPR as
689 might be expected, since if one of the types is a typedef;
690 the comparison in fold is just equality of pointers, not a
691 call to comptypes. We don't call fold in this case because
692 that can result in infinite recursion; fold will call
693 convert, which will call ocp_convert, etc. */
694 return e;
695 /* For complex data types, we need to perform componentwise
696 conversion. */
697 else if (TREE_CODE (type) == COMPLEX_TYPE)
698 return fold_if_not_in_template (convert_to_complex (type, e));
699 else if (TREE_CODE (type) == VECTOR_TYPE)
700 return fold_if_not_in_template (convert_to_vector (type, e));
701 else if (TREE_CODE (e) == TARGET_EXPR)
703 /* Don't build a NOP_EXPR of class type. Instead, change the
704 type of the temporary. */
705 TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
706 return e;
708 else
710 /* We shouldn't be treating objects of ADDRESSABLE type as
711 rvalues. */
712 gcc_assert (!TREE_ADDRESSABLE (type));
713 return fold_if_not_in_template (build_nop (type, e));
717 e1 = targetm.convert_to_type (type, e);
718 if (e1)
719 return e1;
721 if (code == VOID_TYPE && (convtype & CONV_STATIC))
723 e = convert_to_void (e, ICV_CAST, complain);
724 return e;
727 if (INTEGRAL_CODE_P (code))
729 tree intype = TREE_TYPE (e);
730 tree converted;
732 if (TREE_CODE (type) == ENUMERAL_TYPE)
734 /* enum = enum, enum = int, enum = float, (enum)pointer are all
735 errors. */
736 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
737 || TREE_CODE (intype) == REAL_TYPE)
738 && ! (convtype & CONV_STATIC))
739 || TYPE_PTR_P (intype))
741 if (complain & tf_error)
742 permerror (loc, "conversion from %q#T to %q#T", intype, type);
743 else
744 return error_mark_node;
747 /* [expr.static.cast]
749 8. A value of integral or enumeration type can be explicitly
750 converted to an enumeration type. The value is unchanged if
751 the original value is within the range of the enumeration
752 values. Otherwise, the resulting enumeration value is
753 unspecified. */
754 if ((complain & tf_warning)
755 && TREE_CODE (e) == INTEGER_CST
756 && ENUM_UNDERLYING_TYPE (type)
757 && !int_fits_type_p (e, ENUM_UNDERLYING_TYPE (type)))
758 warning_at (loc, OPT_Wconversion,
759 "the result of the conversion is unspecified because "
760 "%qE is outside the range of type %qT",
761 expr, type);
763 if (MAYBE_CLASS_TYPE_P (intype))
765 tree rval;
766 rval = build_type_conversion (type, e);
767 if (rval)
768 return rval;
769 if (complain & tf_error)
770 error_at (loc, "%q#T used where a %qT was expected", intype, type);
771 return error_mark_node;
773 if (code == BOOLEAN_TYPE)
775 if (VOID_TYPE_P (intype))
777 if (complain & tf_error)
778 error_at (loc,
779 "could not convert %qE from %<void%> to %<bool%>",
780 expr);
781 return error_mark_node;
784 /* We can't implicitly convert a scoped enum to bool, so convert
785 to the underlying type first. */
786 if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
787 e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
788 return cp_truthvalue_conversion (e);
791 converted = fold_if_not_in_template (convert_to_integer (type, e));
793 /* Ignore any integer overflow caused by the conversion. */
794 return ignore_overflows (converted, e);
796 if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
798 if (complain & tf_warning)
799 maybe_warn_zero_as_null_pointer_constant (e, loc);
800 return nullptr_node;
802 if (POINTER_TYPE_P (type) || TYPE_PTRMEM_P (type))
803 return fold_if_not_in_template (cp_convert_to_pointer (type, e, complain));
804 if (code == VECTOR_TYPE)
806 tree in_vtype = TREE_TYPE (e);
807 if (MAYBE_CLASS_TYPE_P (in_vtype))
809 tree ret_val;
810 ret_val = build_type_conversion (type, e);
811 if (ret_val)
812 return ret_val;
813 if (complain & tf_error)
814 error_at (loc, "%q#T used where a %qT was expected",
815 in_vtype, type);
816 return error_mark_node;
818 return fold_if_not_in_template (convert_to_vector (type, e));
820 if (code == REAL_TYPE || code == COMPLEX_TYPE)
822 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
824 tree rval;
825 rval = build_type_conversion (type, e);
826 if (rval)
827 return rval;
828 else if (complain & tf_error)
829 error_at (loc,
830 "%q#T used where a floating point value was expected",
831 TREE_TYPE (e));
833 if (code == REAL_TYPE)
834 return fold_if_not_in_template (convert_to_real (type, e));
835 else if (code == COMPLEX_TYPE)
836 return fold_if_not_in_template (convert_to_complex (type, e));
839 /* New C++ semantics: since assignment is now based on
840 memberwise copying, if the rhs type is derived from the
841 lhs type, then we may still do a conversion. */
842 if (RECORD_OR_UNION_CODE_P (code))
844 tree dtype = TREE_TYPE (e);
845 tree ctor = NULL_TREE;
847 dtype = TYPE_MAIN_VARIANT (dtype);
849 /* Conversion between aggregate types. New C++ semantics allow
850 objects of derived type to be cast to objects of base type.
851 Old semantics only allowed this between pointers.
853 There may be some ambiguity between using a constructor
854 vs. using a type conversion operator when both apply. */
856 ctor = e;
858 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
859 return error_mark_node;
861 if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
862 ctor = perform_implicit_conversion (type, ctor, complain);
863 else if ((flags & LOOKUP_ONLYCONVERTING)
864 && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
865 /* For copy-initialization, first we create a temp of the proper type
866 with a user-defined conversion sequence, then we direct-initialize
867 the target with the temp (see [dcl.init]). */
868 ctor = build_user_type_conversion (type, ctor, flags, complain);
869 else
871 vec<tree, va_gc> *ctor_vec = make_tree_vector_single (ctor);
872 ctor = build_special_member_call (NULL_TREE,
873 complete_ctor_identifier,
874 &ctor_vec,
875 type, flags, complain);
876 release_tree_vector (ctor_vec);
878 if (ctor)
879 return build_cplus_new (type, ctor, complain);
882 if (complain & tf_error)
884 /* If the conversion failed and expr was an invalid use of pointer to
885 member function, try to report a meaningful error. */
886 if (invalid_nonstatic_memfn_p (expr, complain))
887 /* We displayed the error message. */;
888 else
889 error_at (loc, "conversion from %qT to non-scalar type %qT requested",
890 TREE_TYPE (expr), type);
892 return error_mark_node;
895 /* When an expression is used in a void context, its value is discarded and
896 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
897 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
898 in a void context. The C++ standard does not define what an `access' to an
899 object is, but there is reason to believe that it is the lvalue to rvalue
900 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
901 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
902 indicates that volatile semantics should be the same between C and C++
903 where ever possible. C leaves it implementation defined as to what
904 constitutes an access to a volatile. So, we interpret `*vp' as a read of
905 the volatile object `vp' points to, unless that is an incomplete type. For
906 volatile references we do not do this interpretation, because that would
907 make it impossible to ignore the reference return value from functions. We
908 issue warnings in the confusing cases.
910 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
911 to void via a cast. If an expression is being implicitly converted, IMPLICIT
912 indicates the context of the implicit conversion. */
914 tree
915 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
917 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
919 if (expr == error_mark_node
920 || TREE_TYPE (expr) == error_mark_node)
921 return error_mark_node;
923 if (implicit == ICV_CAST)
924 mark_exp_read (expr);
925 else
927 tree exprv = expr;
929 while (TREE_CODE (exprv) == COMPOUND_EXPR)
930 exprv = TREE_OPERAND (exprv, 1);
931 if (DECL_P (exprv)
932 || handled_component_p (exprv)
933 || INDIRECT_REF_P (exprv))
934 /* Expr is not being 'used' here, otherwise we whould have
935 called mark_{rl}value_use use here, which would have in turn
936 called mark_exp_read. Rather, we call mark_exp_read directly
937 to avoid some warnings when
938 -Wunused-but-set-{variable,parameter} is in effect. */
939 mark_exp_read (exprv);
942 if (!TREE_TYPE (expr))
943 return expr;
944 if (invalid_nonstatic_memfn_p (expr, complain))
945 return error_mark_node;
946 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
948 if (complain & tf_error)
949 error_at (loc, "pseudo-destructor is not called");
950 return error_mark_node;
952 if (VOID_TYPE_P (TREE_TYPE (expr)))
953 return expr;
954 switch (TREE_CODE (expr))
956 case COND_EXPR:
958 /* The two parts of a cond expr might be separate lvalues. */
959 tree op1 = TREE_OPERAND (expr,1);
960 tree op2 = TREE_OPERAND (expr,2);
961 bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
962 || TREE_SIDE_EFFECTS (op2));
963 tree new_op1, new_op2;
964 new_op1 = NULL_TREE;
965 if (implicit != ICV_CAST && !side_effects)
967 if (op1)
968 new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
969 new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
971 else
973 if (op1)
974 new_op1 = convert_to_void (op1, ICV_CAST, complain);
975 new_op2 = convert_to_void (op2, ICV_CAST, complain);
978 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
979 TREE_OPERAND (expr, 0), new_op1, new_op2);
980 break;
983 case COMPOUND_EXPR:
985 /* The second part of a compound expr contains the value. */
986 tree op1 = TREE_OPERAND (expr,1);
987 tree new_op1;
988 if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
989 new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
990 else
991 new_op1 = convert_to_void (op1, ICV_CAST, complain);
993 if (new_op1 != op1)
995 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
996 TREE_OPERAND (expr, 0), new_op1);
997 expr = t;
1000 break;
1003 case NON_LVALUE_EXPR:
1004 case NOP_EXPR:
1005 /* These have already decayed to rvalue. */
1006 break;
1008 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1009 break;
1011 case INDIRECT_REF:
1013 tree type = TREE_TYPE (expr);
1014 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
1015 == REFERENCE_TYPE;
1016 int is_volatile = TYPE_VOLATILE (type);
1017 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1019 /* Can't load the value if we don't know the type. */
1020 if (is_volatile && !is_complete)
1022 if (complain & tf_warning)
1023 switch (implicit)
1025 case ICV_CAST:
1026 warning_at (loc, 0, "conversion to void will not access "
1027 "object of incomplete type %qT", type);
1028 break;
1029 case ICV_SECOND_OF_COND:
1030 warning_at (loc, 0, "indirection will not access object of "
1031 "incomplete type %qT in second operand "
1032 "of conditional expression", type);
1033 break;
1034 case ICV_THIRD_OF_COND:
1035 warning_at (loc, 0, "indirection will not access object of "
1036 "incomplete type %qT in third operand "
1037 "of conditional expression", type);
1038 break;
1039 case ICV_RIGHT_OF_COMMA:
1040 warning_at (loc, 0, "indirection will not access object of "
1041 "incomplete type %qT in right operand of "
1042 "comma operator", type);
1043 break;
1044 case ICV_LEFT_OF_COMMA:
1045 warning_at (loc, 0, "indirection will not access object of "
1046 "incomplete type %qT in left operand of "
1047 "comma operator", type);
1048 break;
1049 case ICV_STATEMENT:
1050 warning_at (loc, 0, "indirection will not access object of "
1051 "incomplete type %qT in statement", type);
1052 break;
1053 case ICV_THIRD_IN_FOR:
1054 warning_at (loc, 0, "indirection will not access object of "
1055 "incomplete type %qT in for increment "
1056 "expression", type);
1057 break;
1058 default:
1059 gcc_unreachable ();
1062 /* Don't load the value if this is an implicit dereference, or if
1063 the type needs to be handled by ctors/dtors. */
1064 else if (is_volatile && is_reference)
1066 if (complain & tf_warning)
1067 switch (implicit)
1069 case ICV_CAST:
1070 warning_at (loc, 0, "conversion to void will not access "
1071 "object of type %qT", type);
1072 break;
1073 case ICV_SECOND_OF_COND:
1074 warning_at (loc, 0, "implicit dereference will not access "
1075 "object of type %qT in second operand of "
1076 "conditional expression", type);
1077 break;
1078 case ICV_THIRD_OF_COND:
1079 warning_at (loc, 0, "implicit dereference will not access "
1080 "object of type %qT in third operand of "
1081 "conditional expression", type);
1082 break;
1083 case ICV_RIGHT_OF_COMMA:
1084 warning_at (loc, 0, "implicit dereference will not access "
1085 "object of type %qT in right operand of "
1086 "comma operator", type);
1087 break;
1088 case ICV_LEFT_OF_COMMA:
1089 warning_at (loc, 0, "implicit dereference will not access "
1090 "object of type %qT in left operand of comma "
1091 "operator", type);
1092 break;
1093 case ICV_STATEMENT:
1094 warning_at (loc, 0, "implicit dereference will not access "
1095 "object of type %qT in statement", type);
1096 break;
1097 case ICV_THIRD_IN_FOR:
1098 warning_at (loc, 0, "implicit dereference will not access "
1099 "object of type %qT in for increment expression",
1100 type);
1101 break;
1102 default:
1103 gcc_unreachable ();
1106 else if (is_volatile && TREE_ADDRESSABLE (type))
1108 if (complain & tf_warning)
1109 switch (implicit)
1111 case ICV_CAST:
1112 warning_at (loc, 0, "conversion to void will not access "
1113 "object of non-trivially-copyable type %qT",
1114 type);
1115 break;
1116 case ICV_SECOND_OF_COND:
1117 warning_at (loc, 0, "indirection will not access object of "
1118 "non-trivially-copyable type %qT in second "
1119 "operand of conditional expression", type);
1120 break;
1121 case ICV_THIRD_OF_COND:
1122 warning_at (loc, 0, "indirection will not access object of "
1123 "non-trivially-copyable type %qT in third "
1124 "operand of conditional expression", type);
1125 break;
1126 case ICV_RIGHT_OF_COMMA:
1127 warning_at (loc, 0, "indirection will not access object of "
1128 "non-trivially-copyable type %qT in right "
1129 "operand of comma operator", type);
1130 break;
1131 case ICV_LEFT_OF_COMMA:
1132 warning_at (loc, 0, "indirection will not access object of "
1133 "non-trivially-copyable type %qT in left "
1134 "operand of comma operator", type);
1135 break;
1136 case ICV_STATEMENT:
1137 warning_at (loc, 0, "indirection will not access object of "
1138 "non-trivially-copyable type %qT in statement",
1139 type);
1140 break;
1141 case ICV_THIRD_IN_FOR:
1142 warning_at (loc, 0, "indirection will not access object of "
1143 "non-trivially-copyable type %qT in for "
1144 "increment expression", type);
1145 break;
1146 default:
1147 gcc_unreachable ();
1150 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1152 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1153 operation is stripped off. Note that we don't warn about
1154 - an expression with TREE_NO_WARNING set. (For an example of
1155 such expressions, see build_over_call in call.c.)
1156 - automatic dereferencing of references, since the user cannot
1157 control it. (See also warn_if_unused_value() in c-common.c.) */
1158 if (warn_unused_value
1159 && implicit != ICV_CAST
1160 && (complain & tf_warning)
1161 && !TREE_NO_WARNING (expr)
1162 && !is_reference)
1163 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1164 expr = TREE_OPERAND (expr, 0);
1167 break;
1170 case VAR_DECL:
1172 /* External variables might be incomplete. */
1173 tree type = TREE_TYPE (expr);
1174 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1176 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1177 switch (implicit)
1179 case ICV_CAST:
1180 warning_at (loc, 0, "conversion to void will not access "
1181 "object %qE of incomplete type %qT", expr, type);
1182 break;
1183 case ICV_SECOND_OF_COND:
1184 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1185 "not be accessed in second operand of "
1186 "conditional expression", expr, type);
1187 break;
1188 case ICV_THIRD_OF_COND:
1189 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1190 "not be accessed in third operand of "
1191 "conditional expression", expr, type);
1192 break;
1193 case ICV_RIGHT_OF_COMMA:
1194 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1195 "not be accessed in right operand of comma operator",
1196 expr, type);
1197 break;
1198 case ICV_LEFT_OF_COMMA:
1199 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1200 "not be accessed in left operand of comma operator",
1201 expr, type);
1202 break;
1203 case ICV_STATEMENT:
1204 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1205 "not be accessed in statement", expr, type);
1206 break;
1207 case ICV_THIRD_IN_FOR:
1208 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1209 "not be accessed in for increment expression",
1210 expr, type);
1211 break;
1212 default:
1213 gcc_unreachable ();
1216 break;
1219 case TARGET_EXPR:
1220 /* Don't bother with the temporary object returned from a function if
1221 we don't use it and don't need to destroy it. We'll still
1222 allocate space for it in expand_call or declare_return_variable,
1223 but we don't need to track it through all the tree phases. */
1224 if (TARGET_EXPR_IMPLICIT_P (expr)
1225 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (expr)))
1227 tree init = TARGET_EXPR_INITIAL (expr);
1228 if (TREE_CODE (init) == AGGR_INIT_EXPR
1229 && !AGGR_INIT_VIA_CTOR_P (init))
1231 tree fn = AGGR_INIT_EXPR_FN (init);
1232 expr = build_call_array_loc (input_location,
1233 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
1235 aggr_init_expr_nargs (init),
1236 AGGR_INIT_EXPR_ARGP (init));
1239 break;
1241 default:;
1243 expr = resolve_nondeduced_context (expr);
1245 tree probe = expr;
1247 if (TREE_CODE (probe) == ADDR_EXPR)
1248 probe = TREE_OPERAND (expr, 0);
1249 if (type_unknown_p (probe))
1251 /* [over.over] enumerates the places where we can take the address
1252 of an overloaded function, and this is not one of them. */
1253 if (complain & tf_error)
1254 switch (implicit)
1256 case ICV_CAST:
1257 error_at (loc, "conversion to void "
1258 "cannot resolve address of overloaded function");
1259 break;
1260 case ICV_SECOND_OF_COND:
1261 error_at (loc, "second operand of conditional expression "
1262 "cannot resolve address of overloaded function");
1263 break;
1264 case ICV_THIRD_OF_COND:
1265 error_at (loc, "third operand of conditional expression "
1266 "cannot resolve address of overloaded function");
1267 break;
1268 case ICV_RIGHT_OF_COMMA:
1269 error_at (loc, "right operand of comma operator "
1270 "cannot resolve address of overloaded function");
1271 break;
1272 case ICV_LEFT_OF_COMMA:
1273 error_at (loc, "left operand of comma operator "
1274 "cannot resolve address of overloaded function");
1275 break;
1276 case ICV_STATEMENT:
1277 error_at (loc, "statement "
1278 "cannot resolve address of overloaded function");
1279 break;
1280 case ICV_THIRD_IN_FOR:
1281 error_at (loc, "for increment expression "
1282 "cannot resolve address of overloaded function");
1283 break;
1285 else
1286 return error_mark_node;
1287 expr = void_zero_node;
1289 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1291 /* Only warn when there is no &. */
1292 if (complain & tf_warning)
1293 switch (implicit)
1295 case ICV_SECOND_OF_COND:
1296 warning_at (loc, OPT_Waddress,
1297 "second operand of conditional expression "
1298 "is a reference, not call, to function %qE", expr);
1299 break;
1300 case ICV_THIRD_OF_COND:
1301 warning_at (loc, OPT_Waddress,
1302 "third operand of conditional expression "
1303 "is a reference, not call, to function %qE", expr);
1304 break;
1305 case ICV_RIGHT_OF_COMMA:
1306 warning_at (loc, OPT_Waddress,
1307 "right operand of comma operator "
1308 "is a reference, not call, to function %qE", expr);
1309 break;
1310 case ICV_LEFT_OF_COMMA:
1311 warning_at (loc, OPT_Waddress,
1312 "left operand of comma operator "
1313 "is a reference, not call, to function %qE", expr);
1314 break;
1315 case ICV_STATEMENT:
1316 warning_at (loc, OPT_Waddress,
1317 "statement is a reference, not call, to function %qE",
1318 expr);
1319 break;
1320 case ICV_THIRD_IN_FOR:
1321 warning_at (loc, OPT_Waddress,
1322 "for increment expression "
1323 "is a reference, not call, to function %qE", expr);
1324 break;
1325 default:
1326 gcc_unreachable ();
1329 if (TREE_CODE (expr) == COMPONENT_REF)
1330 expr = TREE_OPERAND (expr, 0);
1334 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1336 if (implicit != ICV_CAST
1337 && warn_unused_value
1338 && !TREE_NO_WARNING (expr)
1339 && !processing_template_decl)
1341 /* The middle end does not warn about expressions that have
1342 been explicitly cast to void, so we must do so here. */
1343 if (!TREE_SIDE_EFFECTS (expr)) {
1344 if (complain & tf_warning)
1345 switch (implicit)
1347 case ICV_SECOND_OF_COND:
1348 warning_at (loc, OPT_Wunused_value,
1349 "second operand of conditional expression "
1350 "has no effect");
1351 break;
1352 case ICV_THIRD_OF_COND:
1353 warning_at (loc, OPT_Wunused_value,
1354 "third operand of conditional expression "
1355 "has no effect");
1356 break;
1357 case ICV_RIGHT_OF_COMMA:
1358 warning_at (loc, OPT_Wunused_value,
1359 "right operand of comma operator has no effect");
1360 break;
1361 case ICV_LEFT_OF_COMMA:
1362 warning_at (loc, OPT_Wunused_value,
1363 "left operand of comma operator has no effect");
1364 break;
1365 case ICV_STATEMENT:
1366 warning_at (loc, OPT_Wunused_value,
1367 "statement has no effect");
1368 break;
1369 case ICV_THIRD_IN_FOR:
1370 warning_at (loc, OPT_Wunused_value,
1371 "for increment expression has no effect");
1372 break;
1373 default:
1374 gcc_unreachable ();
1377 else
1379 tree e;
1380 enum tree_code code;
1381 enum tree_code_class tclass;
1383 e = expr;
1384 /* We might like to warn about (say) "(int) f()", as the
1385 cast has no effect, but the compiler itself will
1386 generate implicit conversions under some
1387 circumstances. (For example a block copy will be
1388 turned into a call to "__builtin_memcpy", with a
1389 conversion of the return value to an appropriate
1390 type.) So, to avoid false positives, we strip
1391 conversions. Do not use STRIP_NOPs because it will
1392 not strip conversions to "void", as that is not a
1393 mode-preserving conversion. */
1394 while (TREE_CODE (e) == NOP_EXPR)
1395 e = TREE_OPERAND (e, 0);
1397 code = TREE_CODE (e);
1398 tclass = TREE_CODE_CLASS (code);
1399 if ((tclass == tcc_comparison
1400 || tclass == tcc_unary
1401 || (tclass == tcc_binary
1402 && !(code == MODIFY_EXPR
1403 || code == INIT_EXPR
1404 || code == PREDECREMENT_EXPR
1405 || code == PREINCREMENT_EXPR
1406 || code == POSTDECREMENT_EXPR
1407 || code == POSTINCREMENT_EXPR))
1408 || code == VEC_PERM_EXPR
1409 || code == VEC_COND_EXPR)
1410 && (complain & tf_warning))
1411 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1414 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1416 if (! TREE_SIDE_EFFECTS (expr))
1417 expr = void_zero_node;
1418 return expr;
1421 /* Create an expression whose value is that of EXPR,
1422 converted to type TYPE. The TREE_TYPE of the value
1423 is always TYPE. This function implements all reasonable
1424 conversions; callers should filter out those that are
1425 not permitted by the language being compiled.
1427 Most of this routine is from build_reinterpret_cast.
1429 The back end cannot call cp_convert (what was convert) because
1430 conversions to/from basetypes may involve memory references
1431 (vbases) and adding or subtracting small values (multiple
1432 inheritance), but it calls convert from the constant folding code
1433 on subtrees of already built trees after it has ripped them apart.
1435 Also, if we ever support range variables, we'll probably also have to
1436 do a little bit more work. */
1438 tree
1439 convert (tree type, tree expr)
1441 tree intype;
1443 if (type == error_mark_node || expr == error_mark_node)
1444 return error_mark_node;
1446 intype = TREE_TYPE (expr);
1448 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1449 return fold_if_not_in_template (build_nop (type, expr));
1451 return ocp_convert (type, expr, CONV_OLD_CONVERT,
1452 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1453 tf_warning_or_error);
1456 /* Like cp_convert, except permit conversions to take place which
1457 are not normally allowed due to access restrictions
1458 (such as conversion from sub-type to private super-type). */
1460 tree
1461 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1463 tree e = expr;
1464 enum tree_code code = TREE_CODE (type);
1466 if (code == REFERENCE_TYPE)
1467 return (fold_if_not_in_template
1468 (convert_to_reference (type, e, CONV_C_CAST, 0,
1469 NULL_TREE, complain)));
1471 if (code == POINTER_TYPE)
1472 return fold_if_not_in_template (convert_to_pointer_force (type, e,
1473 complain));
1475 /* From typeck.c convert_for_assignment */
1476 if (((TYPE_PTR_P (TREE_TYPE (e)) && TREE_CODE (e) == ADDR_EXPR
1477 && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1478 || integer_zerop (e)
1479 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1480 && TYPE_PTRMEMFUNC_P (type))
1481 /* compatible pointer to member functions. */
1482 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1483 /*c_cast_p=*/1, complain);
1485 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1488 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1489 exists, return the attempted conversion. This may
1490 return ERROR_MARK_NODE if the conversion is not
1491 allowed (references private members, etc).
1492 If no conversion exists, NULL_TREE is returned.
1494 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1495 object parameter, or by the second standard conversion sequence if
1496 that doesn't do it. This will probably wait for an overloading rewrite.
1497 (jason 8/9/95) */
1499 static tree
1500 build_type_conversion (tree xtype, tree expr)
1502 /* C++: check to see if we can convert this aggregate type
1503 into the required type. */
1504 return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL,
1505 tf_warning_or_error);
1508 /* Convert the given EXPR to one of a group of types suitable for use in an
1509 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1510 which indicates which types are suitable. If COMPLAIN is true, complain
1511 about ambiguity; otherwise, the caller will deal with it. */
1513 tree
1514 build_expr_type_conversion (int desires, tree expr, bool complain)
1516 tree basetype = TREE_TYPE (expr);
1517 tree conv = NULL_TREE;
1518 tree winner = NULL_TREE;
1520 if (expr == null_node
1521 && (desires & WANT_INT)
1522 && !(desires & WANT_NULL))
1524 source_location loc =
1525 expansion_point_location_if_in_system_header (input_location);
1527 warning_at (loc, OPT_Wconversion_null,
1528 "converting NULL to non-pointer type");
1531 if (basetype == error_mark_node)
1532 return error_mark_node;
1534 if (! MAYBE_CLASS_TYPE_P (basetype))
1535 switch (TREE_CODE (basetype))
1537 case INTEGER_TYPE:
1538 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1539 return expr;
1540 /* else fall through... */
1542 case BOOLEAN_TYPE:
1543 return (desires & WANT_INT) ? expr : NULL_TREE;
1544 case ENUMERAL_TYPE:
1545 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1546 case REAL_TYPE:
1547 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1548 case POINTER_TYPE:
1549 return (desires & WANT_POINTER) ? expr : NULL_TREE;
1551 case FUNCTION_TYPE:
1552 case ARRAY_TYPE:
1553 return (desires & WANT_POINTER) ? decay_conversion (expr,
1554 tf_warning_or_error)
1555 : NULL_TREE;
1557 case COMPLEX_TYPE:
1558 case VECTOR_TYPE:
1559 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1560 return NULL_TREE;
1561 switch (TREE_CODE (TREE_TYPE (basetype)))
1563 case INTEGER_TYPE:
1564 case BOOLEAN_TYPE:
1565 return (desires & WANT_INT) ? expr : NULL_TREE;
1566 case ENUMERAL_TYPE:
1567 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1568 case REAL_TYPE:
1569 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1570 default:
1571 return NULL_TREE;
1574 default:
1575 return NULL_TREE;
1578 /* The code for conversions from class type is currently only used for
1579 delete expressions. Other expressions are handled by build_new_op. */
1580 if (!complete_type_or_maybe_complain (basetype, expr, complain))
1581 return error_mark_node;
1582 if (!TYPE_HAS_CONVERSION (basetype))
1583 return NULL_TREE;
1585 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1587 int win = 0;
1588 tree candidate;
1589 tree cand = TREE_VALUE (conv);
1590 cand = OVL_CURRENT (cand);
1592 if (winner && winner == cand)
1593 continue;
1595 if (DECL_NONCONVERTING_P (cand))
1596 continue;
1598 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1600 switch (TREE_CODE (candidate))
1602 case BOOLEAN_TYPE:
1603 case INTEGER_TYPE:
1604 win = (desires & WANT_INT); break;
1605 case ENUMERAL_TYPE:
1606 win = (desires & WANT_ENUM); break;
1607 case REAL_TYPE:
1608 win = (desires & WANT_FLOAT); break;
1609 case POINTER_TYPE:
1610 win = (desires & WANT_POINTER); break;
1612 case COMPLEX_TYPE:
1613 case VECTOR_TYPE:
1614 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1615 break;
1616 switch (TREE_CODE (TREE_TYPE (candidate)))
1618 case BOOLEAN_TYPE:
1619 case INTEGER_TYPE:
1620 win = (desires & WANT_INT); break;
1621 case ENUMERAL_TYPE:
1622 win = (desires & WANT_ENUM); break;
1623 case REAL_TYPE:
1624 win = (desires & WANT_FLOAT); break;
1625 default:
1626 break;
1628 break;
1630 default:
1631 /* A wildcard could be instantiated to match any desired
1632 type, but we can't deduce the template argument. */
1633 if (WILDCARD_TYPE_P (candidate))
1634 win = true;
1635 break;
1638 if (win)
1640 if (TREE_CODE (cand) == TEMPLATE_DECL)
1642 if (complain)
1643 error ("default type conversion can't deduce template"
1644 " argument for %qD", cand);
1645 return error_mark_node;
1648 if (winner)
1650 tree winner_type
1651 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1653 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1654 candidate))
1656 if (complain)
1658 error ("ambiguous default type conversion from %qT",
1659 basetype);
1660 error (" candidate conversions include %qD and %qD",
1661 winner, cand);
1663 return error_mark_node;
1667 winner = cand;
1671 if (winner)
1673 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1674 return build_user_type_conversion (type, expr, LOOKUP_NORMAL,
1675 tf_warning_or_error);
1678 return NULL_TREE;
1681 /* Implements integral promotion (4.1) and float->double promotion. */
1683 tree
1684 type_promotes_to (tree type)
1686 tree promoted_type;
1688 if (type == error_mark_node)
1689 return error_mark_node;
1691 type = TYPE_MAIN_VARIANT (type);
1693 /* Check for promotions of target-defined types first. */
1694 promoted_type = targetm.promoted_type (type);
1695 if (promoted_type)
1696 return promoted_type;
1698 /* bool always promotes to int (not unsigned), even if it's the same
1699 size. */
1700 if (TREE_CODE (type) == BOOLEAN_TYPE)
1701 type = integer_type_node;
1703 /* Scoped enums don't promote, but pretend they do for backward ABI bug
1704 compatibility wrt varargs. */
1705 else if (SCOPED_ENUM_P (type) && abi_version_at_least (6))
1708 /* Normally convert enums to int, but convert wide enums to something
1709 wider. */
1710 else if (TREE_CODE (type) == ENUMERAL_TYPE
1711 || type == char16_type_node
1712 || type == char32_type_node
1713 || type == wchar_type_node)
1715 int precision = MAX (TYPE_PRECISION (type),
1716 TYPE_PRECISION (integer_type_node));
1717 tree totype = c_common_type_for_size (precision, 0);
1718 if (SCOPED_ENUM_P (type))
1719 warning (OPT_Wabi, "scoped enum %qT will not promote to an integral "
1720 "type in a future version of GCC", type);
1721 if (TREE_CODE (type) == ENUMERAL_TYPE)
1722 type = ENUM_UNDERLYING_TYPE (type);
1723 if (TYPE_UNSIGNED (type)
1724 && ! int_fits_type_p (TYPE_MAX_VALUE (type), totype))
1725 type = c_common_type_for_size (precision, 1);
1726 else
1727 type = totype;
1729 else if (c_promoting_integer_type_p (type))
1731 /* Retain unsignedness if really not getting bigger. */
1732 if (TYPE_UNSIGNED (type)
1733 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1734 type = unsigned_type_node;
1735 else
1736 type = integer_type_node;
1738 else if (type == float_type_node)
1739 type = double_type_node;
1741 return type;
1744 /* The routines below this point are carefully written to conform to
1745 the standard. They use the same terminology, and follow the rules
1746 closely. Although they are used only in pt.c at the moment, they
1747 should presumably be used everywhere in the future. */
1749 /* Attempt to perform qualification conversions on EXPR to convert it
1750 to TYPE. Return the resulting expression, or error_mark_node if
1751 the conversion was impossible. */
1753 tree
1754 perform_qualification_conversions (tree type, tree expr)
1756 tree expr_type;
1758 expr_type = TREE_TYPE (expr);
1760 if (same_type_p (type, expr_type))
1761 return expr;
1762 else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1763 && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1764 return build_nop (type, expr);
1765 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type)
1766 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1767 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1768 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1769 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1770 return build_nop (type, expr);
1771 else
1772 return error_mark_node;