* xvasprintf.c: New file.
[official-gcc.git] / gcc / cp / cvt.c
blobaba75ff13e2066447610ee9f775334cb35dc9bcc
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"
39 #include "wide-int.h"
41 static tree cp_convert_to_pointer (tree, tree, tsubst_flags_t);
42 static tree convert_to_pointer_force (tree, tree, tsubst_flags_t);
43 static tree build_type_conversion (tree, tree);
44 static tree build_up_reference (tree, tree, int, tree, tsubst_flags_t);
45 static void diagnose_ref_binding (location_t, tree, tree, tree);
47 /* Change of width--truncation and extension of integers or reals--
48 is represented with NOP_EXPR. Proper functioning of many things
49 assumes that no other conversions can be NOP_EXPRs.
51 Conversion between integer and pointer is represented with CONVERT_EXPR.
52 Converting integer to real uses FLOAT_EXPR
53 and real to integer uses FIX_TRUNC_EXPR.
55 Here is a list of all the functions that assume that widening and
56 narrowing is always done with a NOP_EXPR:
57 In convert.c, convert_to_integer.
58 In c-typeck.c, build_binary_op_nodefault (boolean ops),
59 and c_common_truthvalue_conversion.
60 In expr.c: expand_expr, for operands of a MULT_EXPR.
61 In fold-const.c: fold.
62 In tree.c: get_narrower and get_unwidened.
64 C++: in multiple-inheritance, converting between pointers may involve
65 adjusting them by a delta stored within the class definition. */
67 /* Subroutines of `convert'. */
69 /* if converting pointer to pointer
70 if dealing with classes, check for derived->base or vice versa
71 else if dealing with method pointers, delegate
72 else convert blindly
73 else if converting class, pass off to build_type_conversion
74 else try C-style pointer conversion. */
76 static tree
77 cp_convert_to_pointer (tree type, tree expr, tsubst_flags_t complain)
79 tree intype = TREE_TYPE (expr);
80 enum tree_code form;
81 tree rval;
82 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
84 if (intype == error_mark_node)
85 return error_mark_node;
87 if (MAYBE_CLASS_TYPE_P (intype))
89 intype = complete_type (intype);
90 if (!COMPLETE_TYPE_P (intype))
92 if (complain & tf_error)
93 error_at (loc, "can%'t convert from incomplete type %qT to %qT",
94 intype, type);
95 return error_mark_node;
98 rval = build_type_conversion (type, expr);
99 if (rval)
101 if ((complain & tf_error)
102 && rval == error_mark_node)
103 error_at (loc, "conversion of %qE from %qT to %qT is ambiguous",
104 expr, intype, type);
105 return rval;
109 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
110 if (TYPE_PTR_P (type)
111 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
112 || VOID_TYPE_P (TREE_TYPE (type))))
114 if (TYPE_PTRMEMFUNC_P (intype)
115 || TREE_CODE (intype) == METHOD_TYPE)
116 return convert_member_func_to_ptr (type, expr, complain);
117 if (TYPE_PTR_P (TREE_TYPE (expr)))
118 return build_nop (type, expr);
119 intype = TREE_TYPE (expr);
122 if (expr == error_mark_node)
123 return error_mark_node;
125 form = TREE_CODE (intype);
127 if (POINTER_TYPE_P (intype))
129 intype = TYPE_MAIN_VARIANT (intype);
131 if (TYPE_MAIN_VARIANT (type) != intype
132 && TYPE_PTR_P (type)
133 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
134 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
135 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
136 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
138 enum tree_code code = PLUS_EXPR;
139 tree binfo;
140 tree intype_class;
141 tree type_class;
142 bool same_p;
144 intype_class = TREE_TYPE (intype);
145 type_class = TREE_TYPE (type);
147 same_p = same_type_p (TYPE_MAIN_VARIANT (intype_class),
148 TYPE_MAIN_VARIANT (type_class));
149 binfo = NULL_TREE;
150 /* Try derived to base conversion. */
151 if (!same_p)
152 binfo = lookup_base (intype_class, type_class, ba_check,
153 NULL, complain);
154 if (!same_p && !binfo)
156 /* Try base to derived conversion. */
157 binfo = lookup_base (type_class, intype_class, ba_check,
158 NULL, complain);
159 code = MINUS_EXPR;
161 if (binfo == error_mark_node)
162 return error_mark_node;
163 if (binfo || same_p)
165 if (binfo)
166 expr = build_base_path (code, expr, binfo, 0, complain);
167 /* Add any qualifier conversions. */
168 return build_nop (type, expr);
172 if (TYPE_PTRMEMFUNC_P (type))
174 if (complain & tf_error)
175 error_at (loc, "cannot convert %qE from type %qT to type %qT",
176 expr, intype, type);
177 return error_mark_node;
180 return build_nop (type, expr);
182 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
183 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
184 return convert_ptrmem (type, expr, /*allow_inverse_p=*/false,
185 /*c_cast_p=*/false, complain);
186 else if (TYPE_PTRMEMFUNC_P (intype))
188 if (!warn_pmf2ptr)
190 if (TREE_CODE (expr) == PTRMEM_CST)
191 return cp_convert_to_pointer (type, PTRMEM_CST_MEMBER (expr),
192 complain);
193 else if (TREE_CODE (expr) == OFFSET_REF)
195 tree object = TREE_OPERAND (expr, 0);
196 return get_member_function_from_ptrfunc (&object,
197 TREE_OPERAND (expr, 1),
198 complain);
201 if (complain & tf_error)
202 error_at (loc, "cannot convert %qE from type %qT to type %qT",
203 expr, intype, type);
204 return error_mark_node;
207 if (null_ptr_cst_p (expr))
209 if (TYPE_PTRMEMFUNC_P (type))
210 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
211 /*c_cast_p=*/false, complain);
213 if (complain & tf_warning)
214 maybe_warn_zero_as_null_pointer_constant (expr, loc);
216 /* A NULL pointer-to-data-member is represented by -1, not by
217 zero. */
218 tree val = (TYPE_PTRDATAMEM_P (type)
219 ? build_int_cst_type (type, -1)
220 : build_int_cst (type, 0));
222 return (TREE_SIDE_EFFECTS (expr)
223 ? build2 (COMPOUND_EXPR, type, expr, val) : val);
225 else if (TYPE_PTRMEM_P (type) && INTEGRAL_CODE_P (form))
227 if (complain & tf_error)
228 error_at (loc, "invalid conversion from %qT to %qT", intype, type);
229 return error_mark_node;
232 if (INTEGRAL_CODE_P (form))
234 if (TYPE_PRECISION (intype) == POINTER_SIZE)
235 return build1 (CONVERT_EXPR, type, expr);
236 expr = cp_convert (c_common_type_for_size (POINTER_SIZE, 0), expr,
237 complain);
238 /* Modes may be different but sizes should be the same. There
239 is supposed to be some integral type that is the same width
240 as a pointer. */
241 gcc_assert (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (expr)))
242 == GET_MODE_SIZE (TYPE_MODE (type)));
244 return convert_to_pointer (type, expr);
247 if (type_unknown_p (expr))
248 return instantiate_type (type, expr, complain);
250 if (complain & tf_error)
251 error_at (loc, "cannot convert %qE from type %qT to type %qT",
252 expr, intype, type);
253 return error_mark_node;
256 /* Like convert, except permit conversions to take place which
257 are not normally allowed due to access restrictions
258 (such as conversion from sub-type to private super-type). */
260 static tree
261 convert_to_pointer_force (tree type, tree expr, tsubst_flags_t complain)
263 tree intype = TREE_TYPE (expr);
264 enum tree_code form = TREE_CODE (intype);
266 if (form == POINTER_TYPE)
268 intype = TYPE_MAIN_VARIANT (intype);
270 if (TYPE_MAIN_VARIANT (type) != intype
271 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
272 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
273 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
274 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
276 enum tree_code code = PLUS_EXPR;
277 tree binfo;
279 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
280 ba_unique, NULL, complain);
281 if (!binfo)
283 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
284 ba_unique, NULL, complain);
285 code = MINUS_EXPR;
287 if (binfo == error_mark_node)
288 return error_mark_node;
289 if (binfo)
291 expr = build_base_path (code, expr, binfo, 0, complain);
292 if (expr == error_mark_node)
293 return error_mark_node;
294 /* Add any qualifier conversions. */
295 if (!same_type_p (TREE_TYPE (TREE_TYPE (expr)),
296 TREE_TYPE (type)))
297 expr = build_nop (type, expr);
298 return expr;
303 return cp_convert_to_pointer (type, expr, complain);
306 /* We are passing something to a function which requires a reference.
307 The type we are interested in is in TYPE. The initial
308 value we have to begin with is in ARG.
310 FLAGS controls how we manage access checking.
311 DIRECT_BIND in FLAGS controls how any temporaries are generated.
312 If DIRECT_BIND is set, DECL is the reference we're binding to. */
314 static tree
315 build_up_reference (tree type, tree arg, int flags, tree decl,
316 tsubst_flags_t complain)
318 tree rval;
319 tree argtype = TREE_TYPE (arg);
320 tree target_type = TREE_TYPE (type);
322 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
324 if ((flags & DIRECT_BIND) && ! real_lvalue_p (arg))
326 /* Create a new temporary variable. We can't just use a TARGET_EXPR
327 here because it needs to live as long as DECL. */
328 tree targ = arg;
330 arg = make_temporary_var_for_ref_to_temp (decl, target_type);
332 /* Process the initializer for the declaration. */
333 DECL_INITIAL (arg) = targ;
334 cp_finish_decl (arg, targ, /*init_const_expr_p=*/false, NULL_TREE,
335 LOOKUP_ONLYCONVERTING|DIRECT_BIND);
337 else if (!(flags & DIRECT_BIND) && ! lvalue_p (arg))
338 return get_target_expr_sfinae (arg, complain);
340 /* If we had a way to wrap this up, and say, if we ever needed its
341 address, transform all occurrences of the register, into a memory
342 reference we could win better. */
343 rval = cp_build_addr_expr (arg, complain);
344 if (rval == error_mark_node)
345 return error_mark_node;
347 if ((flags & LOOKUP_PROTECT)
348 && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
349 && MAYBE_CLASS_TYPE_P (argtype)
350 && MAYBE_CLASS_TYPE_P (target_type))
352 /* We go through lookup_base for the access control. */
353 tree binfo = lookup_base (argtype, target_type, ba_check,
354 NULL, complain);
355 if (binfo == error_mark_node)
356 return error_mark_node;
357 if (binfo == NULL_TREE)
358 return error_not_base_type (target_type, argtype);
359 rval = build_base_path (PLUS_EXPR, rval, binfo, 1, complain);
361 else
362 rval
363 = convert_to_pointer_force (build_pointer_type (target_type),
364 rval, complain);
365 return build_nop (type, rval);
368 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
369 INTYPE is the original rvalue type and DECL is an optional _DECL node
370 for diagnostics.
372 [dcl.init.ref] says that if an rvalue is used to
373 initialize a reference, then the reference must be to a
374 non-volatile const type. */
376 static void
377 diagnose_ref_binding (location_t loc, tree reftype, tree intype, tree decl)
379 tree ttl = TREE_TYPE (reftype);
381 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl))
383 const char *msg;
385 if (CP_TYPE_VOLATILE_P (ttl) && decl)
386 msg = G_("initialization of volatile reference type %q#T from "
387 "rvalue of type %qT");
388 else if (CP_TYPE_VOLATILE_P (ttl))
389 msg = G_("conversion to volatile reference type %q#T "
390 "from rvalue of type %qT");
391 else if (decl)
392 msg = G_("initialization of non-const reference type %q#T from "
393 "rvalue of type %qT");
394 else
395 msg = G_("conversion to non-const reference type %q#T from "
396 "rvalue of type %qT");
398 permerror (loc, msg, reftype, intype);
402 /* For C++: Only need to do one-level references, but cannot
403 get tripped up on signed/unsigned differences.
405 DECL is either NULL_TREE or the _DECL node for a reference that is being
406 initialized. It can be error_mark_node if we don't know the _DECL but
407 we know it's an initialization. */
409 tree
410 convert_to_reference (tree reftype, tree expr, int convtype,
411 int flags, tree decl, tsubst_flags_t complain)
413 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (reftype));
414 tree intype;
415 tree rval = NULL_TREE;
416 tree rval_as_conversion = NULL_TREE;
417 bool can_convert_intype_to_type;
418 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
420 if (TREE_CODE (type) == FUNCTION_TYPE
421 && TREE_TYPE (expr) == unknown_type_node)
422 expr = instantiate_type (type, expr, complain);
424 if (expr == error_mark_node)
425 return error_mark_node;
427 intype = TREE_TYPE (expr);
429 gcc_assert (TREE_CODE (intype) != REFERENCE_TYPE);
430 gcc_assert (TREE_CODE (reftype) == REFERENCE_TYPE);
432 intype = TYPE_MAIN_VARIANT (intype);
434 can_convert_intype_to_type = can_convert_standard (type, intype, complain);
436 if (!can_convert_intype_to_type
437 && (convtype & CONV_IMPLICIT) && MAYBE_CLASS_TYPE_P (intype)
438 && ! (flags & LOOKUP_NO_CONVERSION))
440 /* Look for a user-defined conversion to lvalue that we can use. */
442 rval_as_conversion
443 = build_type_conversion (reftype, expr);
445 if (rval_as_conversion && rval_as_conversion != error_mark_node
446 && real_lvalue_p (rval_as_conversion))
448 expr = rval_as_conversion;
449 rval_as_conversion = NULL_TREE;
450 intype = type;
451 can_convert_intype_to_type = 1;
455 if (((convtype & CONV_STATIC)
456 && can_convert_standard (intype, type, complain))
457 || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type))
460 tree ttl = TREE_TYPE (reftype);
461 tree ttr = lvalue_type (expr);
463 if ((complain & tf_error)
464 && ! real_lvalue_p (expr))
465 diagnose_ref_binding (loc, reftype, intype, decl);
467 if (! (convtype & CONV_CONST)
468 && !at_least_as_qualified_p (ttl, ttr))
470 if (complain & tf_error)
471 permerror (loc, "conversion from %qT to %qT discards qualifiers",
472 ttr, reftype);
473 else
474 return error_mark_node;
478 return build_up_reference (reftype, expr, flags, decl, complain);
480 else if ((convtype & CONV_REINTERPRET) && lvalue_p (expr))
482 /* When casting an lvalue to a reference type, just convert into
483 a pointer to the new type and deference it. This is allowed
484 by San Diego WP section 5.2.9 paragraph 12, though perhaps it
485 should be done directly (jason). (int &)ri ---> *(int*)&ri */
487 /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
488 meant. */
489 if ((complain & tf_warning)
490 && TYPE_PTR_P (intype)
491 && (comptypes (TREE_TYPE (intype), type,
492 COMPARE_BASE | COMPARE_DERIVED)))
493 warning_at (loc, 0, "casting %qT to %qT does not dereference pointer",
494 intype, reftype);
496 rval = cp_build_addr_expr (expr, complain);
497 if (rval != error_mark_node)
498 rval = convert_force (build_pointer_type (TREE_TYPE (reftype)),
499 rval, 0, complain);
500 if (rval != error_mark_node)
501 rval = build1 (NOP_EXPR, reftype, rval);
503 else
505 rval = convert_for_initialization (NULL_TREE, type, expr, flags,
506 ICR_CONVERTING, 0, 0, complain);
507 if (rval == NULL_TREE || rval == error_mark_node)
508 return rval;
509 if (complain & tf_error)
510 diagnose_ref_binding (loc, reftype, intype, decl);
511 rval = build_up_reference (reftype, rval, flags, decl, complain);
514 if (rval)
516 /* If we found a way to convert earlier, then use it. */
517 return rval;
520 if (complain & tf_error)
521 error_at (loc, "cannot convert type %qT to type %qT", intype, reftype);
523 return error_mark_node;
526 /* We are using a reference VAL for its value. Bash that reference all the
527 way down to its lowest form. */
529 tree
530 convert_from_reference (tree val)
532 if (TREE_TYPE (val)
533 && TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
535 tree t = TREE_TYPE (TREE_TYPE (val));
536 tree ref = build1 (INDIRECT_REF, t, val);
538 mark_exp_read (val);
539 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
540 so that we get the proper error message if the result is used
541 to assign to. Also, &* is supposed to be a no-op. */
542 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
543 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
544 TREE_SIDE_EFFECTS (ref)
545 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (val));
546 val = ref;
549 return val;
552 /* Really perform an lvalue-to-rvalue conversion, including copying an
553 argument of class type into a temporary. */
555 tree
556 force_rvalue (tree expr, tsubst_flags_t complain)
558 tree type = TREE_TYPE (expr);
559 if (MAYBE_CLASS_TYPE_P (type) && TREE_CODE (expr) != TARGET_EXPR)
561 vec<tree, va_gc> *args = make_tree_vector_single (expr);
562 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
563 &args, type, LOOKUP_NORMAL, complain);
564 release_tree_vector (args);
565 expr = build_cplus_new (type, expr, complain);
567 else
568 expr = decay_conversion (expr, complain);
570 return expr;
574 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
575 TREE_OVERFLOW set only if it is set in ORIG. Otherwise, return EXPR
576 unchanged. */
578 static tree
579 ignore_overflows (tree expr, tree orig)
581 if (TREE_CODE (expr) == INTEGER_CST
582 && TREE_CODE (orig) == INTEGER_CST
583 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
585 gcc_assert (!TREE_OVERFLOW (orig));
586 /* Ensure constant sharing. */
587 expr = wide_int_to_tree (TREE_TYPE (expr), 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 (input_location, type, folded,
643 folded_result);
646 return result;
649 /* Conversion...
651 FLAGS indicates how we should behave. */
653 tree
654 ocp_convert (tree type, tree expr, int convtype, int flags,
655 tsubst_flags_t complain)
657 tree e = expr;
658 enum tree_code code = TREE_CODE (type);
659 const char *invalid_conv_diag;
660 tree e1;
661 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
663 if (error_operand_p (e) || type == error_mark_node)
664 return error_mark_node;
666 complete_type (type);
667 complete_type (TREE_TYPE (expr));
669 if ((invalid_conv_diag
670 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
672 if (complain & tf_error)
673 error (invalid_conv_diag);
674 return error_mark_node;
677 /* FIXME remove when moving to c_fully_fold model. */
678 e = scalar_constant_value (e);
679 if (error_operand_p (e))
680 return error_mark_node;
682 if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP))
683 /* We need a new temporary; don't take this shortcut. */;
684 else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
686 if (same_type_p (type, TREE_TYPE (e)))
687 /* The call to fold will not always remove the NOP_EXPR as
688 might be expected, since if one of the types is a typedef;
689 the comparison in fold is just equality of pointers, not a
690 call to comptypes. We don't call fold in this case because
691 that can result in infinite recursion; fold will call
692 convert, which will call ocp_convert, etc. */
693 return e;
694 /* For complex data types, we need to perform componentwise
695 conversion. */
696 else if (TREE_CODE (type) == COMPLEX_TYPE)
697 return fold_if_not_in_template (convert_to_complex (type, e));
698 else if (TREE_CODE (type) == VECTOR_TYPE)
699 return fold_if_not_in_template (convert_to_vector (type, e));
700 else if (TREE_CODE (e) == TARGET_EXPR)
702 /* Don't build a NOP_EXPR of class type. Instead, change the
703 type of the temporary. */
704 TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
705 return e;
707 else
709 /* We shouldn't be treating objects of ADDRESSABLE type as
710 rvalues. */
711 gcc_assert (!TREE_ADDRESSABLE (type));
712 return fold_if_not_in_template (build_nop (type, e));
716 e1 = targetm.convert_to_type (type, e);
717 if (e1)
718 return e1;
720 if (code == VOID_TYPE && (convtype & CONV_STATIC))
722 e = convert_to_void (e, ICV_CAST, complain);
723 return e;
726 if (INTEGRAL_CODE_P (code))
728 tree intype = TREE_TYPE (e);
729 tree converted;
731 if (TREE_CODE (type) == ENUMERAL_TYPE)
733 /* enum = enum, enum = int, enum = float, (enum)pointer are all
734 errors. */
735 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
736 || TREE_CODE (intype) == REAL_TYPE)
737 && ! (convtype & CONV_STATIC))
738 || TYPE_PTR_P (intype))
740 if (complain & tf_error)
741 permerror (loc, "conversion from %q#T to %q#T", intype, type);
742 else
743 return error_mark_node;
746 /* [expr.static.cast]
748 8. A value of integral or enumeration type can be explicitly
749 converted to an enumeration type. The value is unchanged if
750 the original value is within the range of the enumeration
751 values. Otherwise, the resulting enumeration value is
752 unspecified. */
753 if ((complain & tf_warning)
754 && TREE_CODE (e) == INTEGER_CST
755 && ENUM_UNDERLYING_TYPE (type)
756 && !int_fits_type_p (e, ENUM_UNDERLYING_TYPE (type)))
757 warning_at (loc, OPT_Wconversion,
758 "the result of the conversion is unspecified because "
759 "%qE is outside the range of type %qT",
760 expr, type);
762 if (MAYBE_CLASS_TYPE_P (intype))
764 tree rval;
765 rval = build_type_conversion (type, e);
766 if (rval)
767 return rval;
768 if (complain & tf_error)
769 error_at (loc, "%q#T used where a %qT was expected", intype, type);
770 return error_mark_node;
772 if (code == BOOLEAN_TYPE)
774 if (VOID_TYPE_P (intype))
776 if (complain & tf_error)
777 error_at (loc,
778 "could not convert %qE from %<void%> to %<bool%>",
779 expr);
780 return error_mark_node;
783 /* We can't implicitly convert a scoped enum to bool, so convert
784 to the underlying type first. */
785 if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
786 e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
787 return cp_truthvalue_conversion (e);
790 converted = fold_if_not_in_template (convert_to_integer (type, e));
792 /* Ignore any integer overflow caused by the conversion. */
793 return ignore_overflows (converted, e);
795 if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
797 if (complain & tf_warning)
798 maybe_warn_zero_as_null_pointer_constant (e, loc);
799 return nullptr_node;
801 if (POINTER_TYPE_P (type) || TYPE_PTRMEM_P (type))
802 return fold_if_not_in_template (cp_convert_to_pointer (type, e, complain));
803 if (code == VECTOR_TYPE)
805 tree in_vtype = TREE_TYPE (e);
806 if (MAYBE_CLASS_TYPE_P (in_vtype))
808 tree ret_val;
809 ret_val = build_type_conversion (type, e);
810 if (ret_val)
811 return ret_val;
812 if (complain & tf_error)
813 error_at (loc, "%q#T used where a %qT was expected",
814 in_vtype, type);
815 return error_mark_node;
817 return fold_if_not_in_template (convert_to_vector (type, e));
819 if (code == REAL_TYPE || code == COMPLEX_TYPE)
821 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
823 tree rval;
824 rval = build_type_conversion (type, e);
825 if (rval)
826 return rval;
827 else if (complain & tf_error)
828 error_at (loc,
829 "%q#T used where a floating point value was expected",
830 TREE_TYPE (e));
832 if (code == REAL_TYPE)
833 return fold_if_not_in_template (convert_to_real (type, e));
834 else if (code == COMPLEX_TYPE)
835 return fold_if_not_in_template (convert_to_complex (type, e));
838 /* New C++ semantics: since assignment is now based on
839 memberwise copying, if the rhs type is derived from the
840 lhs type, then we may still do a conversion. */
841 if (RECORD_OR_UNION_CODE_P (code))
843 tree dtype = TREE_TYPE (e);
844 tree ctor = NULL_TREE;
846 dtype = TYPE_MAIN_VARIANT (dtype);
848 /* Conversion between aggregate types. New C++ semantics allow
849 objects of derived type to be cast to objects of base type.
850 Old semantics only allowed this between pointers.
852 There may be some ambiguity between using a constructor
853 vs. using a type conversion operator when both apply. */
855 ctor = e;
857 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
858 return error_mark_node;
860 if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
861 ctor = perform_implicit_conversion (type, ctor, complain);
862 else if ((flags & LOOKUP_ONLYCONVERTING)
863 && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
864 /* For copy-initialization, first we create a temp of the proper type
865 with a user-defined conversion sequence, then we direct-initialize
866 the target with the temp (see [dcl.init]). */
867 ctor = build_user_type_conversion (type, ctor, flags, complain);
868 else
870 vec<tree, va_gc> *ctor_vec = make_tree_vector_single (ctor);
871 ctor = build_special_member_call (NULL_TREE,
872 complete_ctor_identifier,
873 &ctor_vec,
874 type, flags, complain);
875 release_tree_vector (ctor_vec);
877 if (ctor)
878 return build_cplus_new (type, ctor, complain);
881 if (complain & tf_error)
883 /* If the conversion failed and expr was an invalid use of pointer to
884 member function, try to report a meaningful error. */
885 if (invalid_nonstatic_memfn_p (expr, complain))
886 /* We displayed the error message. */;
887 else
888 error_at (loc, "conversion from %qT to non-scalar type %qT requested",
889 TREE_TYPE (expr), type);
891 return error_mark_node;
894 /* When an expression is used in a void context, its value is discarded and
895 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
896 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
897 in a void context. The C++ standard does not define what an `access' to an
898 object is, but there is reason to believe that it is the lvalue to rvalue
899 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
900 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
901 indicates that volatile semantics should be the same between C and C++
902 where ever possible. C leaves it implementation defined as to what
903 constitutes an access to a volatile. So, we interpret `*vp' as a read of
904 the volatile object `vp' points to, unless that is an incomplete type. For
905 volatile references we do not do this interpretation, because that would
906 make it impossible to ignore the reference return value from functions. We
907 issue warnings in the confusing cases.
909 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
910 to void via a cast. If an expression is being implicitly converted, IMPLICIT
911 indicates the context of the implicit conversion. */
913 tree
914 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
916 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
918 if (expr == error_mark_node
919 || TREE_TYPE (expr) == error_mark_node)
920 return error_mark_node;
922 if (implicit == ICV_CAST)
923 mark_exp_read (expr);
924 else
926 tree exprv = expr;
928 while (TREE_CODE (exprv) == COMPOUND_EXPR)
929 exprv = TREE_OPERAND (exprv, 1);
930 if (DECL_P (exprv)
931 || handled_component_p (exprv)
932 || INDIRECT_REF_P (exprv))
933 /* Expr is not being 'used' here, otherwise we whould have
934 called mark_{rl}value_use use here, which would have in turn
935 called mark_exp_read. Rather, we call mark_exp_read directly
936 to avoid some warnings when
937 -Wunused-but-set-{variable,parameter} is in effect. */
938 mark_exp_read (exprv);
941 if (!TREE_TYPE (expr))
942 return expr;
943 if (invalid_nonstatic_memfn_p (expr, complain))
944 return error_mark_node;
945 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
947 if (complain & tf_error)
948 error_at (loc, "pseudo-destructor is not called");
949 return error_mark_node;
951 if (VOID_TYPE_P (TREE_TYPE (expr)))
952 return expr;
953 switch (TREE_CODE (expr))
955 case COND_EXPR:
957 /* The two parts of a cond expr might be separate lvalues. */
958 tree op1 = TREE_OPERAND (expr,1);
959 tree op2 = TREE_OPERAND (expr,2);
960 bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
961 || TREE_SIDE_EFFECTS (op2));
962 tree new_op1, new_op2;
963 new_op1 = NULL_TREE;
964 if (implicit != ICV_CAST && !side_effects)
966 if (op1)
967 new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
968 new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
970 else
972 if (op1)
973 new_op1 = convert_to_void (op1, ICV_CAST, complain);
974 new_op2 = convert_to_void (op2, ICV_CAST, complain);
977 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
978 TREE_OPERAND (expr, 0), new_op1, new_op2);
979 break;
982 case COMPOUND_EXPR:
984 /* The second part of a compound expr contains the value. */
985 tree op1 = TREE_OPERAND (expr,1);
986 tree new_op1;
987 if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
988 new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
989 else
990 new_op1 = convert_to_void (op1, ICV_CAST, complain);
992 if (new_op1 != op1)
994 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
995 TREE_OPERAND (expr, 0), new_op1);
996 expr = t;
999 break;
1002 case NON_LVALUE_EXPR:
1003 case NOP_EXPR:
1004 /* These have already decayed to rvalue. */
1005 break;
1007 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1008 break;
1010 case INDIRECT_REF:
1012 tree type = TREE_TYPE (expr);
1013 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
1014 == REFERENCE_TYPE;
1015 int is_volatile = TYPE_VOLATILE (type);
1016 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1018 /* Can't load the value if we don't know the type. */
1019 if (is_volatile && !is_complete)
1021 if (complain & tf_warning)
1022 switch (implicit)
1024 case ICV_CAST:
1025 warning_at (loc, 0, "conversion to void will not access "
1026 "object of incomplete type %qT", type);
1027 break;
1028 case ICV_SECOND_OF_COND:
1029 warning_at (loc, 0, "indirection will not access object of "
1030 "incomplete type %qT in second operand "
1031 "of conditional expression", type);
1032 break;
1033 case ICV_THIRD_OF_COND:
1034 warning_at (loc, 0, "indirection will not access object of "
1035 "incomplete type %qT in third operand "
1036 "of conditional expression", type);
1037 break;
1038 case ICV_RIGHT_OF_COMMA:
1039 warning_at (loc, 0, "indirection will not access object of "
1040 "incomplete type %qT in right operand of "
1041 "comma operator", type);
1042 break;
1043 case ICV_LEFT_OF_COMMA:
1044 warning_at (loc, 0, "indirection will not access object of "
1045 "incomplete type %qT in left operand of "
1046 "comma operator", type);
1047 break;
1048 case ICV_STATEMENT:
1049 warning_at (loc, 0, "indirection will not access object of "
1050 "incomplete type %qT in statement", type);
1051 break;
1052 case ICV_THIRD_IN_FOR:
1053 warning_at (loc, 0, "indirection will not access object of "
1054 "incomplete type %qT in for increment "
1055 "expression", type);
1056 break;
1057 default:
1058 gcc_unreachable ();
1061 /* Don't load the value if this is an implicit dereference, or if
1062 the type needs to be handled by ctors/dtors. */
1063 else if (is_volatile && is_reference)
1065 if (complain & tf_warning)
1066 switch (implicit)
1068 case ICV_CAST:
1069 warning_at (loc, 0, "conversion to void will not access "
1070 "object of type %qT", type);
1071 break;
1072 case ICV_SECOND_OF_COND:
1073 warning_at (loc, 0, "implicit dereference will not access "
1074 "object of type %qT in second operand of "
1075 "conditional expression", type);
1076 break;
1077 case ICV_THIRD_OF_COND:
1078 warning_at (loc, 0, "implicit dereference will not access "
1079 "object of type %qT in third operand of "
1080 "conditional expression", type);
1081 break;
1082 case ICV_RIGHT_OF_COMMA:
1083 warning_at (loc, 0, "implicit dereference will not access "
1084 "object of type %qT in right operand of "
1085 "comma operator", type);
1086 break;
1087 case ICV_LEFT_OF_COMMA:
1088 warning_at (loc, 0, "implicit dereference will not access "
1089 "object of type %qT in left operand of comma "
1090 "operator", type);
1091 break;
1092 case ICV_STATEMENT:
1093 warning_at (loc, 0, "implicit dereference will not access "
1094 "object of type %qT in statement", type);
1095 break;
1096 case ICV_THIRD_IN_FOR:
1097 warning_at (loc, 0, "implicit dereference will not access "
1098 "object of type %qT in for increment expression",
1099 type);
1100 break;
1101 default:
1102 gcc_unreachable ();
1105 else if (is_volatile && TREE_ADDRESSABLE (type))
1107 if (complain & tf_warning)
1108 switch (implicit)
1110 case ICV_CAST:
1111 warning_at (loc, 0, "conversion to void will not access "
1112 "object of non-trivially-copyable type %qT",
1113 type);
1114 break;
1115 case ICV_SECOND_OF_COND:
1116 warning_at (loc, 0, "indirection will not access object of "
1117 "non-trivially-copyable type %qT in second "
1118 "operand of conditional expression", type);
1119 break;
1120 case ICV_THIRD_OF_COND:
1121 warning_at (loc, 0, "indirection will not access object of "
1122 "non-trivially-copyable type %qT in third "
1123 "operand of conditional expression", type);
1124 break;
1125 case ICV_RIGHT_OF_COMMA:
1126 warning_at (loc, 0, "indirection will not access object of "
1127 "non-trivially-copyable type %qT in right "
1128 "operand of comma operator", type);
1129 break;
1130 case ICV_LEFT_OF_COMMA:
1131 warning_at (loc, 0, "indirection will not access object of "
1132 "non-trivially-copyable type %qT in left "
1133 "operand of comma operator", type);
1134 break;
1135 case ICV_STATEMENT:
1136 warning_at (loc, 0, "indirection will not access object of "
1137 "non-trivially-copyable type %qT in statement",
1138 type);
1139 break;
1140 case ICV_THIRD_IN_FOR:
1141 warning_at (loc, 0, "indirection will not access object of "
1142 "non-trivially-copyable type %qT in for "
1143 "increment expression", type);
1144 break;
1145 default:
1146 gcc_unreachable ();
1149 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1151 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1152 operation is stripped off. Note that we don't warn about
1153 - an expression with TREE_NO_WARNING set. (For an example of
1154 such expressions, see build_over_call in call.c.)
1155 - automatic dereferencing of references, since the user cannot
1156 control it. (See also warn_if_unused_value() in c-common.c.) */
1157 if (warn_unused_value
1158 && implicit != ICV_CAST
1159 && (complain & tf_warning)
1160 && !TREE_NO_WARNING (expr)
1161 && !is_reference)
1162 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1163 expr = TREE_OPERAND (expr, 0);
1166 break;
1169 case VAR_DECL:
1171 /* External variables might be incomplete. */
1172 tree type = TREE_TYPE (expr);
1173 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1175 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1176 switch (implicit)
1178 case ICV_CAST:
1179 warning_at (loc, 0, "conversion to void will not access "
1180 "object %qE of incomplete type %qT", expr, type);
1181 break;
1182 case ICV_SECOND_OF_COND:
1183 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1184 "not be accessed in second operand of "
1185 "conditional expression", expr, type);
1186 break;
1187 case ICV_THIRD_OF_COND:
1188 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1189 "not be accessed in third operand of "
1190 "conditional expression", expr, type);
1191 break;
1192 case ICV_RIGHT_OF_COMMA:
1193 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1194 "not be accessed in right operand of comma operator",
1195 expr, type);
1196 break;
1197 case ICV_LEFT_OF_COMMA:
1198 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1199 "not be accessed in left operand of comma operator",
1200 expr, type);
1201 break;
1202 case ICV_STATEMENT:
1203 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1204 "not be accessed in statement", expr, type);
1205 break;
1206 case ICV_THIRD_IN_FOR:
1207 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1208 "not be accessed in for increment expression",
1209 expr, type);
1210 break;
1211 default:
1212 gcc_unreachable ();
1215 break;
1218 case TARGET_EXPR:
1219 /* Don't bother with the temporary object returned from a function if
1220 we don't use it and don't need to destroy it. We'll still
1221 allocate space for it in expand_call or declare_return_variable,
1222 but we don't need to track it through all the tree phases. */
1223 if (TARGET_EXPR_IMPLICIT_P (expr)
1224 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (expr)))
1226 tree init = TARGET_EXPR_INITIAL (expr);
1227 if (TREE_CODE (init) == AGGR_INIT_EXPR
1228 && !AGGR_INIT_VIA_CTOR_P (init))
1230 tree fn = AGGR_INIT_EXPR_FN (init);
1231 expr = build_call_array_loc (input_location,
1232 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
1234 aggr_init_expr_nargs (init),
1235 AGGR_INIT_EXPR_ARGP (init));
1238 break;
1240 default:;
1242 expr = resolve_nondeduced_context (expr);
1244 tree probe = expr;
1246 if (TREE_CODE (probe) == ADDR_EXPR)
1247 probe = TREE_OPERAND (expr, 0);
1248 if (type_unknown_p (probe))
1250 /* [over.over] enumerates the places where we can take the address
1251 of an overloaded function, and this is not one of them. */
1252 if (complain & tf_error)
1253 switch (implicit)
1255 case ICV_CAST:
1256 error_at (loc, "conversion to void "
1257 "cannot resolve address of overloaded function");
1258 break;
1259 case ICV_SECOND_OF_COND:
1260 error_at (loc, "second operand of conditional expression "
1261 "cannot resolve address of overloaded function");
1262 break;
1263 case ICV_THIRD_OF_COND:
1264 error_at (loc, "third operand of conditional expression "
1265 "cannot resolve address of overloaded function");
1266 break;
1267 case ICV_RIGHT_OF_COMMA:
1268 error_at (loc, "right operand of comma operator "
1269 "cannot resolve address of overloaded function");
1270 break;
1271 case ICV_LEFT_OF_COMMA:
1272 error_at (loc, "left operand of comma operator "
1273 "cannot resolve address of overloaded function");
1274 break;
1275 case ICV_STATEMENT:
1276 error_at (loc, "statement "
1277 "cannot resolve address of overloaded function");
1278 break;
1279 case ICV_THIRD_IN_FOR:
1280 error_at (loc, "for increment expression "
1281 "cannot resolve address of overloaded function");
1282 break;
1284 else
1285 return error_mark_node;
1286 expr = void_node;
1288 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1290 /* Only warn when there is no &. */
1291 if (complain & tf_warning)
1292 switch (implicit)
1294 case ICV_SECOND_OF_COND:
1295 warning_at (loc, OPT_Waddress,
1296 "second operand of conditional expression "
1297 "is a reference, not call, to function %qE", expr);
1298 break;
1299 case ICV_THIRD_OF_COND:
1300 warning_at (loc, OPT_Waddress,
1301 "third operand of conditional expression "
1302 "is a reference, not call, to function %qE", expr);
1303 break;
1304 case ICV_RIGHT_OF_COMMA:
1305 warning_at (loc, OPT_Waddress,
1306 "right operand of comma operator "
1307 "is a reference, not call, to function %qE", expr);
1308 break;
1309 case ICV_LEFT_OF_COMMA:
1310 warning_at (loc, OPT_Waddress,
1311 "left operand of comma operator "
1312 "is a reference, not call, to function %qE", expr);
1313 break;
1314 case ICV_STATEMENT:
1315 warning_at (loc, OPT_Waddress,
1316 "statement is a reference, not call, to function %qE",
1317 expr);
1318 break;
1319 case ICV_THIRD_IN_FOR:
1320 warning_at (loc, OPT_Waddress,
1321 "for increment expression "
1322 "is a reference, not call, to function %qE", expr);
1323 break;
1324 default:
1325 gcc_unreachable ();
1328 if (TREE_CODE (expr) == COMPONENT_REF)
1329 expr = TREE_OPERAND (expr, 0);
1333 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1335 if (implicit != ICV_CAST
1336 && warn_unused_value
1337 && !TREE_NO_WARNING (expr)
1338 && !processing_template_decl)
1340 /* The middle end does not warn about expressions that have
1341 been explicitly cast to void, so we must do so here. */
1342 if (!TREE_SIDE_EFFECTS (expr)) {
1343 if (complain & tf_warning)
1344 switch (implicit)
1346 case ICV_SECOND_OF_COND:
1347 warning_at (loc, OPT_Wunused_value,
1348 "second operand of conditional expression "
1349 "has no effect");
1350 break;
1351 case ICV_THIRD_OF_COND:
1352 warning_at (loc, OPT_Wunused_value,
1353 "third operand of conditional expression "
1354 "has no effect");
1355 break;
1356 case ICV_RIGHT_OF_COMMA:
1357 warning_at (loc, OPT_Wunused_value,
1358 "right operand of comma operator has no effect");
1359 break;
1360 case ICV_LEFT_OF_COMMA:
1361 warning_at (loc, OPT_Wunused_value,
1362 "left operand of comma operator has no effect");
1363 break;
1364 case ICV_STATEMENT:
1365 warning_at (loc, OPT_Wunused_value,
1366 "statement has no effect");
1367 break;
1368 case ICV_THIRD_IN_FOR:
1369 warning_at (loc, OPT_Wunused_value,
1370 "for increment expression has no effect");
1371 break;
1372 default:
1373 gcc_unreachable ();
1376 else
1378 tree e;
1379 enum tree_code code;
1380 enum tree_code_class tclass;
1382 e = expr;
1383 /* We might like to warn about (say) "(int) f()", as the
1384 cast has no effect, but the compiler itself will
1385 generate implicit conversions under some
1386 circumstances. (For example a block copy will be
1387 turned into a call to "__builtin_memcpy", with a
1388 conversion of the return value to an appropriate
1389 type.) So, to avoid false positives, we strip
1390 conversions. Do not use STRIP_NOPs because it will
1391 not strip conversions to "void", as that is not a
1392 mode-preserving conversion. */
1393 while (TREE_CODE (e) == NOP_EXPR)
1394 e = TREE_OPERAND (e, 0);
1396 code = TREE_CODE (e);
1397 tclass = TREE_CODE_CLASS (code);
1398 if ((tclass == tcc_comparison
1399 || tclass == tcc_unary
1400 || (tclass == tcc_binary
1401 && !(code == MODIFY_EXPR
1402 || code == INIT_EXPR
1403 || code == PREDECREMENT_EXPR
1404 || code == PREINCREMENT_EXPR
1405 || code == POSTDECREMENT_EXPR
1406 || code == POSTINCREMENT_EXPR))
1407 || code == VEC_PERM_EXPR
1408 || code == VEC_COND_EXPR)
1409 && (complain & tf_warning))
1410 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1413 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1415 if (! TREE_SIDE_EFFECTS (expr))
1416 expr = void_node;
1417 return expr;
1420 /* Create an expression whose value is that of EXPR,
1421 converted to type TYPE. The TREE_TYPE of the value
1422 is always TYPE. This function implements all reasonable
1423 conversions; callers should filter out those that are
1424 not permitted by the language being compiled.
1426 Most of this routine is from build_reinterpret_cast.
1428 The back end cannot call cp_convert (what was convert) because
1429 conversions to/from basetypes may involve memory references
1430 (vbases) and adding or subtracting small values (multiple
1431 inheritance), but it calls convert from the constant folding code
1432 on subtrees of already built trees after it has ripped them apart.
1434 Also, if we ever support range variables, we'll probably also have to
1435 do a little bit more work. */
1437 tree
1438 convert (tree type, tree expr)
1440 tree intype;
1442 if (type == error_mark_node || expr == error_mark_node)
1443 return error_mark_node;
1445 intype = TREE_TYPE (expr);
1447 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1448 return fold_if_not_in_template (build_nop (type, expr));
1450 return ocp_convert (type, expr, CONV_OLD_CONVERT,
1451 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1452 tf_warning_or_error);
1455 /* Like cp_convert, except permit conversions to take place which
1456 are not normally allowed due to access restrictions
1457 (such as conversion from sub-type to private super-type). */
1459 tree
1460 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1462 tree e = expr;
1463 enum tree_code code = TREE_CODE (type);
1465 if (code == REFERENCE_TYPE)
1466 return (fold_if_not_in_template
1467 (convert_to_reference (type, e, CONV_C_CAST, 0,
1468 NULL_TREE, complain)));
1470 if (code == POINTER_TYPE)
1471 return fold_if_not_in_template (convert_to_pointer_force (type, e,
1472 complain));
1474 /* From typeck.c convert_for_assignment */
1475 if (((TYPE_PTR_P (TREE_TYPE (e)) && TREE_CODE (e) == ADDR_EXPR
1476 && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1477 || integer_zerop (e)
1478 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1479 && TYPE_PTRMEMFUNC_P (type))
1480 /* compatible pointer to member functions. */
1481 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1482 /*c_cast_p=*/1, complain);
1484 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1487 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1488 exists, return the attempted conversion. This may
1489 return ERROR_MARK_NODE if the conversion is not
1490 allowed (references private members, etc).
1491 If no conversion exists, NULL_TREE is returned.
1493 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1494 object parameter, or by the second standard conversion sequence if
1495 that doesn't do it. This will probably wait for an overloading rewrite.
1496 (jason 8/9/95) */
1498 static tree
1499 build_type_conversion (tree xtype, tree expr)
1501 /* C++: check to see if we can convert this aggregate type
1502 into the required type. */
1503 return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL,
1504 tf_warning_or_error);
1507 /* Convert the given EXPR to one of a group of types suitable for use in an
1508 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1509 which indicates which types are suitable. If COMPLAIN is true, complain
1510 about ambiguity; otherwise, the caller will deal with it. */
1512 tree
1513 build_expr_type_conversion (int desires, tree expr, bool complain)
1515 tree basetype = TREE_TYPE (expr);
1516 tree conv = NULL_TREE;
1517 tree winner = NULL_TREE;
1519 if (expr == null_node
1520 && (desires & WANT_INT)
1521 && !(desires & WANT_NULL))
1523 source_location loc =
1524 expansion_point_location_if_in_system_header (input_location);
1526 warning_at (loc, OPT_Wconversion_null,
1527 "converting NULL to non-pointer type");
1530 if (basetype == error_mark_node)
1531 return error_mark_node;
1533 if (! MAYBE_CLASS_TYPE_P (basetype))
1534 switch (TREE_CODE (basetype))
1536 case INTEGER_TYPE:
1537 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1538 return expr;
1539 /* else fall through... */
1541 case BOOLEAN_TYPE:
1542 return (desires & WANT_INT) ? expr : NULL_TREE;
1543 case ENUMERAL_TYPE:
1544 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1545 case REAL_TYPE:
1546 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1547 case POINTER_TYPE:
1548 return (desires & WANT_POINTER) ? expr : NULL_TREE;
1550 case FUNCTION_TYPE:
1551 case ARRAY_TYPE:
1552 return (desires & WANT_POINTER) ? decay_conversion (expr,
1553 tf_warning_or_error)
1554 : NULL_TREE;
1556 case COMPLEX_TYPE:
1557 case VECTOR_TYPE:
1558 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1559 return NULL_TREE;
1560 switch (TREE_CODE (TREE_TYPE (basetype)))
1562 case INTEGER_TYPE:
1563 case BOOLEAN_TYPE:
1564 return (desires & WANT_INT) ? expr : NULL_TREE;
1565 case ENUMERAL_TYPE:
1566 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1567 case REAL_TYPE:
1568 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1569 default:
1570 return NULL_TREE;
1573 default:
1574 return NULL_TREE;
1577 /* The code for conversions from class type is currently only used for
1578 delete expressions. Other expressions are handled by build_new_op. */
1579 if (!complete_type_or_maybe_complain (basetype, expr, complain))
1580 return error_mark_node;
1581 if (!TYPE_HAS_CONVERSION (basetype))
1582 return NULL_TREE;
1584 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1586 int win = 0;
1587 tree candidate;
1588 tree cand = TREE_VALUE (conv);
1589 cand = OVL_CURRENT (cand);
1591 if (winner && winner == cand)
1592 continue;
1594 if (DECL_NONCONVERTING_P (cand))
1595 continue;
1597 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1599 switch (TREE_CODE (candidate))
1601 case BOOLEAN_TYPE:
1602 case INTEGER_TYPE:
1603 win = (desires & WANT_INT); break;
1604 case ENUMERAL_TYPE:
1605 win = (desires & WANT_ENUM); break;
1606 case REAL_TYPE:
1607 win = (desires & WANT_FLOAT); break;
1608 case POINTER_TYPE:
1609 win = (desires & WANT_POINTER); break;
1611 case COMPLEX_TYPE:
1612 case VECTOR_TYPE:
1613 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1614 break;
1615 switch (TREE_CODE (TREE_TYPE (candidate)))
1617 case BOOLEAN_TYPE:
1618 case INTEGER_TYPE:
1619 win = (desires & WANT_INT); break;
1620 case ENUMERAL_TYPE:
1621 win = (desires & WANT_ENUM); break;
1622 case REAL_TYPE:
1623 win = (desires & WANT_FLOAT); break;
1624 default:
1625 break;
1627 break;
1629 default:
1630 /* A wildcard could be instantiated to match any desired
1631 type, but we can't deduce the template argument. */
1632 if (WILDCARD_TYPE_P (candidate))
1633 win = true;
1634 break;
1637 if (win)
1639 if (TREE_CODE (cand) == TEMPLATE_DECL)
1641 if (complain)
1642 error ("default type conversion can't deduce template"
1643 " argument for %qD", cand);
1644 return error_mark_node;
1647 if (winner)
1649 tree winner_type
1650 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1652 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1653 candidate))
1655 if (complain)
1657 error ("ambiguous default type conversion from %qT",
1658 basetype);
1659 inform (input_location,
1660 " 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 /* Normally convert enums to int, but convert wide enums to something
1704 wider. Scoped enums don't promote, but pretend they do for backward
1705 ABI bug compatibility wrt varargs. */
1706 else if (TREE_CODE (type) == ENUMERAL_TYPE
1707 || type == char16_type_node
1708 || type == char32_type_node
1709 || type == wchar_type_node)
1711 int precision = MAX (TYPE_PRECISION (type),
1712 TYPE_PRECISION (integer_type_node));
1713 tree totype = c_common_type_for_size (precision, 0);
1714 tree prom = type;
1715 if (TREE_CODE (prom) == ENUMERAL_TYPE)
1716 prom = ENUM_UNDERLYING_TYPE (prom);
1717 if (TYPE_UNSIGNED (prom)
1718 && ! int_fits_type_p (TYPE_MAX_VALUE (prom), totype))
1719 prom = c_common_type_for_size (precision, 1);
1720 else
1721 prom = totype;
1722 if (SCOPED_ENUM_P (type))
1724 if (abi_version_crosses (6)
1725 && TYPE_MODE (prom) != TYPE_MODE (type))
1726 warning (OPT_Wabi, "scoped enum %qT passed through ... as "
1727 "%qT before -fabi-version=6, %qT after",
1728 type, prom, ENUM_UNDERLYING_TYPE (type));
1729 if (!abi_version_at_least (6))
1730 type = prom;
1732 else
1733 type = prom;
1735 else if (c_promoting_integer_type_p (type))
1737 /* Retain unsignedness if really not getting bigger. */
1738 if (TYPE_UNSIGNED (type)
1739 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1740 type = unsigned_type_node;
1741 else
1742 type = integer_type_node;
1744 else if (type == float_type_node)
1745 type = double_type_node;
1747 return type;
1750 /* The routines below this point are carefully written to conform to
1751 the standard. They use the same terminology, and follow the rules
1752 closely. Although they are used only in pt.c at the moment, they
1753 should presumably be used everywhere in the future. */
1755 /* Attempt to perform qualification conversions on EXPR to convert it
1756 to TYPE. Return the resulting expression, or error_mark_node if
1757 the conversion was impossible. */
1759 tree
1760 perform_qualification_conversions (tree type, tree expr)
1762 tree expr_type;
1764 expr_type = TREE_TYPE (expr);
1766 if (same_type_p (type, expr_type))
1767 return expr;
1768 else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1769 && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1770 return build_nop (type, expr);
1771 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type)
1772 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1773 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1774 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1775 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1776 return build_nop (type, expr);
1777 else
1778 return error_mark_node;