]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/cvt.c
2014-01-03 Marc Glisse <marc.glisse@inria.fr>
[thirdparty/gcc.git] / gcc / cp / cvt.c
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)
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21
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. */
26
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
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);
45
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.
49
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.
53
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.
62
63 C++: in multiple-inheritance, converting between pointers may involve
64 adjusting them by a delta stored within the class definition. */
65 \f
66 /* Subroutines of `convert'. */
67
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. */
74
75 static tree
76 cp_convert_to_pointer (tree type, tree expr, tsubst_flags_t complain)
77 {
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);
82
83 if (intype == error_mark_node)
84 return error_mark_node;
85
86 if (MAYBE_CLASS_TYPE_P (intype))
87 {
88 intype = complete_type (intype);
89 if (!COMPLETE_TYPE_P (intype))
90 {
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;
95 }
96
97 rval = build_type_conversion (type, expr);
98 if (rval)
99 {
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;
105 }
106 }
107
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))))
112 {
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);
119 }
120
121 if (expr == error_mark_node)
122 return error_mark_node;
123
124 form = TREE_CODE (intype);
125
126 if (POINTER_TYPE_P (intype))
127 {
128 intype = TYPE_MAIN_VARIANT (intype);
129
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)
136 {
137 enum tree_code code = PLUS_EXPR;
138 tree binfo;
139 tree intype_class;
140 tree type_class;
141 bool same_p;
142
143 intype_class = TREE_TYPE (intype);
144 type_class = TREE_TYPE (type);
145
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)
154 {
155 /* Try base to derived conversion. */
156 binfo = lookup_base (type_class, intype_class, ba_check,
157 NULL, complain);
158 code = MINUS_EXPR;
159 }
160 if (binfo == error_mark_node)
161 return error_mark_node;
162 if (binfo || same_p)
163 {
164 if (binfo)
165 expr = build_base_path (code, expr, binfo, 0, complain);
166 /* Add any qualifier conversions. */
167 return build_nop (type, expr);
168 }
169 }
170
171 if (TYPE_PTRMEMFUNC_P (type))
172 {
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;
177 }
178
179 return build_nop (type, expr);
180 }
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))
186 {
187 if (!warn_pmf2ptr)
188 {
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)
193 {
194 tree object = TREE_OPERAND (expr, 0);
195 return get_member_function_from_ptrfunc (&object,
196 TREE_OPERAND (expr, 1),
197 complain);
198 }
199 }
200 error_at (loc, "cannot convert %qE from type %qT to type %qT",
201 expr, intype, type);
202 return error_mark_node;
203 }
204
205 if (null_ptr_cst_p (expr))
206 {
207 if (TYPE_PTRMEMFUNC_P (type))
208 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
209 /*c_cast_p=*/false, complain);
210
211 if (complain & tf_warning)
212 maybe_warn_zero_as_null_pointer_constant (expr, loc);
213
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));
219
220 return (TREE_SIDE_EFFECTS (expr)
221 ? build2 (COMPOUND_EXPR, type, expr, val) : val);
222 }
223 else if (TYPE_PTRMEM_P (type) && INTEGRAL_CODE_P (form))
224 {
225 if (complain & tf_error)
226 error_at (loc, "invalid conversion from %qT to %qT", intype, type);
227 return error_mark_node;
228 }
229
230 if (INTEGRAL_CODE_P (form))
231 {
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)));
241
242 return convert_to_pointer (type, expr);
243 }
244
245 if (type_unknown_p (expr))
246 return instantiate_type (type, expr, complain);
247
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;
252 }
253
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). */
257
258 static tree
259 convert_to_pointer_force (tree type, tree expr, tsubst_flags_t complain)
260 {
261 tree intype = TREE_TYPE (expr);
262 enum tree_code form = TREE_CODE (intype);
263
264 if (form == POINTER_TYPE)
265 {
266 intype = TYPE_MAIN_VARIANT (intype);
267
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)
273 {
274 enum tree_code code = PLUS_EXPR;
275 tree binfo;
276
277 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
278 ba_unique, NULL, complain);
279 if (!binfo)
280 {
281 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
282 ba_unique, NULL, complain);
283 code = MINUS_EXPR;
284 }
285 if (binfo == error_mark_node)
286 return error_mark_node;
287 if (binfo)
288 {
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;
297 }
298 }
299 }
300
301 return cp_convert_to_pointer (type, expr, complain);
302 }
303
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.
307
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. */
311
312 static tree
313 build_up_reference (tree type, tree arg, int flags, tree decl,
314 tsubst_flags_t complain)
315 {
316 tree rval;
317 tree argtype = TREE_TYPE (arg);
318 tree target_type = TREE_TYPE (type);
319
320 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
321
322 if ((flags & DIRECT_BIND) && ! real_lvalue_p (arg))
323 {
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;
327
328 arg = make_temporary_var_for_ref_to_temp (decl, target_type);
329
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);
334 }
335 else if (!(flags & DIRECT_BIND) && ! lvalue_p (arg))
336 return get_target_expr_sfinae (arg, complain);
337
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;
344
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))
349 {
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);
358 }
359 else
360 rval
361 = convert_to_pointer_force (build_pointer_type (target_type),
362 rval, complain);
363 return build_nop (type, rval);
364 }
365
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.
369
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. */
373
374 static void
375 diagnose_ref_binding (location_t loc, tree reftype, tree intype, tree decl)
376 {
377 tree ttl = TREE_TYPE (reftype);
378
379 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl))
380 {
381 const char *msg;
382
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");
395
396 permerror (loc, msg, reftype, intype);
397 }
398 }
399
400 /* For C++: Only need to do one-level references, but cannot
401 get tripped up on signed/unsigned differences.
402
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. */
406
407 tree
408 convert_to_reference (tree reftype, tree expr, int convtype,
409 int flags, tree decl, tsubst_flags_t complain)
410 {
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);
417
418 if (TREE_CODE (type) == FUNCTION_TYPE
419 && TREE_TYPE (expr) == unknown_type_node)
420 expr = instantiate_type (type, expr, complain);
421
422 if (expr == error_mark_node)
423 return error_mark_node;
424
425 intype = TREE_TYPE (expr);
426
427 gcc_assert (TREE_CODE (intype) != REFERENCE_TYPE);
428 gcc_assert (TREE_CODE (reftype) == REFERENCE_TYPE);
429
430 intype = TYPE_MAIN_VARIANT (intype);
431
432 can_convert_intype_to_type = can_convert_standard (type, intype, complain);
433
434 if (!can_convert_intype_to_type
435 && (convtype & CONV_IMPLICIT) && MAYBE_CLASS_TYPE_P (intype)
436 && ! (flags & LOOKUP_NO_CONVERSION))
437 {
438 /* Look for a user-defined conversion to lvalue that we can use. */
439
440 rval_as_conversion
441 = build_type_conversion (reftype, expr);
442
443 if (rval_as_conversion && rval_as_conversion != error_mark_node
444 && real_lvalue_p (rval_as_conversion))
445 {
446 expr = rval_as_conversion;
447 rval_as_conversion = NULL_TREE;
448 intype = type;
449 can_convert_intype_to_type = 1;
450 }
451 }
452
453 if (((convtype & CONV_STATIC)
454 && can_convert_standard (intype, type, complain))
455 || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type))
456 {
457 {
458 tree ttl = TREE_TYPE (reftype);
459 tree ttr = lvalue_type (expr);
460
461 if ((complain & tf_error)
462 && ! real_lvalue_p (expr))
463 diagnose_ref_binding (loc, reftype, intype, decl);
464
465 if (! (convtype & CONV_CONST)
466 && !at_least_as_qualified_p (ttl, ttr))
467 {
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;
473 }
474 }
475
476 return build_up_reference (reftype, expr, flags, decl, complain);
477 }
478 else if ((convtype & CONV_REINTERPRET) && lvalue_p (expr))
479 {
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 */
484
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);
493
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);
500 }
501 else
502 {
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);
510 }
511
512 if (rval)
513 {
514 /* If we found a way to convert earlier, then use it. */
515 return rval;
516 }
517
518 if (complain & tf_error)
519 error_at (loc, "cannot convert type %qT to type %qT", intype, reftype);
520
521 return error_mark_node;
522 }
523
524 /* We are using a reference VAL for its value. Bash that reference all the
525 way down to its lowest form. */
526
527 tree
528 convert_from_reference (tree val)
529 {
530 if (TREE_TYPE (val)
531 && TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
532 {
533 tree t = TREE_TYPE (TREE_TYPE (val));
534 tree ref = build1 (INDIRECT_REF, t, val);
535
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;
545 }
546
547 return val;
548 }
549
550 /* Really perform an lvalue-to-rvalue conversion, including copying an
551 argument of class type into a temporary. */
552
553 tree
554 force_rvalue (tree expr, tsubst_flags_t complain)
555 {
556 tree type = TREE_TYPE (expr);
557 if (MAYBE_CLASS_TYPE_P (type) && TREE_CODE (expr) != TARGET_EXPR)
558 {
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);
564 }
565 else
566 expr = decay_conversion (expr, complain);
567
568 return expr;
569 }
570
571 \f
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. */
575
576 static tree
577 ignore_overflows (tree expr, tree orig)
578 {
579 if (TREE_CODE (expr) == INTEGER_CST
580 && TREE_CODE (orig) == INTEGER_CST
581 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
582 {
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));
588 }
589 return expr;
590 }
591
592 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
593 properly. */
594
595 tree
596 cp_fold_convert (tree type, tree expr)
597 {
598 tree conv = fold_convert (type, expr);
599 conv = ignore_overflows (conv, expr);
600 return conv;
601 }
602
603 /* C++ conversions, preference to static cast conversions. */
604
605 tree
606 cp_convert (tree type, tree expr, tsubst_flags_t complain)
607 {
608 return ocp_convert (type, expr, CONV_OLD_CONVERT, LOOKUP_NORMAL, complain);
609 }
610
611 /* C++ equivalent of convert_and_check but using cp_convert as the
612 conversion function.
613
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. */
617
618 tree
619 cp_convert_and_check (tree type, tree expr, tsubst_flags_t complain)
620 {
621 tree result;
622
623 if (TREE_TYPE (expr) == type)
624 return expr;
625
626 result = cp_convert (type, expr, complain);
627
628 if ((complain & tf_warning)
629 && c_inhibit_evaluation_warnings == 0)
630 {
631 tree folded = maybe_constant_value (expr);
632 tree stripped = folded;
633 tree folded_result
634 = folded != expr ? cp_convert (type, folded, complain) : result;
635
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);
639
640 if (!TREE_OVERFLOW_P (stripped)
641 && folded_result != error_mark_node)
642 warnings_for_convert_and_check (type, folded, folded_result);
643 }
644
645 return result;
646 }
647
648 /* Conversion...
649
650 FLAGS indicates how we should behave. */
651
652 tree
653 ocp_convert (tree type, tree expr, int convtype, int flags,
654 tsubst_flags_t complain)
655 {
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);
661
662 if (error_operand_p (e) || type == error_mark_node)
663 return error_mark_node;
664
665 complete_type (type);
666 complete_type (TREE_TYPE (expr));
667
668 if ((invalid_conv_diag
669 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
670 {
671 if (complain & tf_error)
672 error (invalid_conv_diag);
673 return error_mark_node;
674 }
675
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;
682
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)))
686 {
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)
702 {
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;
707 }
708 else
709 {
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));
714 }
715 }
716
717 e1 = targetm.convert_to_type (type, e);
718 if (e1)
719 return e1;
720
721 if (code == VOID_TYPE && (convtype & CONV_STATIC))
722 {
723 e = convert_to_void (e, ICV_CAST, complain);
724 return e;
725 }
726
727 if (INTEGRAL_CODE_P (code))
728 {
729 tree intype = TREE_TYPE (e);
730 tree converted;
731
732 if (TREE_CODE (type) == ENUMERAL_TYPE)
733 {
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))
740 {
741 if (complain & tf_error)
742 permerror (loc, "conversion from %q#T to %q#T", intype, type);
743 else
744 return error_mark_node;
745 }
746
747 /* [expr.static.cast]
748
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 && !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);
761 }
762 if (MAYBE_CLASS_TYPE_P (intype))
763 {
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;
771 }
772 if (code == BOOLEAN_TYPE)
773 {
774 if (VOID_TYPE_P (intype))
775 {
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;
781 }
782
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);
788 }
789
790 converted = fold_if_not_in_template (convert_to_integer (type, e));
791
792 /* Ignore any integer overflow caused by the conversion. */
793 return ignore_overflows (converted, e);
794 }
795 if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
796 {
797 if (complain & tf_warning)
798 maybe_warn_zero_as_null_pointer_constant (e, loc);
799 return nullptr_node;
800 }
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)
804 {
805 tree in_vtype = TREE_TYPE (e);
806 if (MAYBE_CLASS_TYPE_P (in_vtype))
807 {
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;
816 }
817 return fold_if_not_in_template (convert_to_vector (type, e));
818 }
819 if (code == REAL_TYPE || code == COMPLEX_TYPE)
820 {
821 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
822 {
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));
831 }
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));
836 }
837
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))
842 {
843 tree dtype = TREE_TYPE (e);
844 tree ctor = NULL_TREE;
845
846 dtype = TYPE_MAIN_VARIANT (dtype);
847
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.
851
852 There may be some ambiguity between using a constructor
853 vs. using a type conversion operator when both apply. */
854
855 ctor = e;
856
857 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
858 return error_mark_node;
859
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
869 {
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);
876 }
877 if (ctor)
878 return build_cplus_new (type, ctor, complain);
879 }
880
881 if (complain & tf_error)
882 {
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);
890 }
891 return error_mark_node;
892 }
893
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.
908
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. */
912
913 tree
914 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
915 {
916 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
917
918 if (expr == error_mark_node
919 || TREE_TYPE (expr) == error_mark_node)
920 return error_mark_node;
921
922 if (implicit == ICV_CAST)
923 mark_exp_read (expr);
924 else
925 {
926 tree exprv = expr;
927
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);
939 }
940
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)
946 {
947 if (complain & tf_error)
948 error_at (loc, "pseudo-destructor is not called");
949 return error_mark_node;
950 }
951 if (VOID_TYPE_P (TREE_TYPE (expr)))
952 return expr;
953 switch (TREE_CODE (expr))
954 {
955 case COND_EXPR:
956 {
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)
965 {
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);
969 }
970 else
971 {
972 if (op1)
973 new_op1 = convert_to_void (op1, ICV_CAST, complain);
974 new_op2 = convert_to_void (op2, ICV_CAST, complain);
975 }
976
977 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
978 TREE_OPERAND (expr, 0), new_op1, new_op2);
979 break;
980 }
981
982 case COMPOUND_EXPR:
983 {
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);
991
992 if (new_op1 != op1)
993 {
994 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
995 TREE_OPERAND (expr, 0), new_op1);
996 expr = t;
997 }
998
999 break;
1000 }
1001
1002 case NON_LVALUE_EXPR:
1003 case NOP_EXPR:
1004 /* These have already decayed to rvalue. */
1005 break;
1006
1007 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1008 break;
1009
1010 case INDIRECT_REF:
1011 {
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));
1017
1018 /* Can't load the value if we don't know the type. */
1019 if (is_volatile && !is_complete)
1020 {
1021 if (complain & tf_warning)
1022 switch (implicit)
1023 {
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 ();
1059 }
1060 }
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)
1064 {
1065 if (complain & tf_warning)
1066 switch (implicit)
1067 {
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 ();
1103 }
1104 }
1105 else if (is_volatile && TREE_ADDRESSABLE (type))
1106 {
1107 if (complain & tf_warning)
1108 switch (implicit)
1109 {
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 ();
1147 }
1148 }
1149 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1150 {
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);
1164 }
1165
1166 break;
1167 }
1168
1169 case VAR_DECL:
1170 {
1171 /* External variables might be incomplete. */
1172 tree type = TREE_TYPE (expr);
1173 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1174
1175 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1176 switch (implicit)
1177 {
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 ();
1213 }
1214
1215 break;
1216 }
1217
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)))
1225 {
1226 tree init = TARGET_EXPR_INITIAL (expr);
1227 if (TREE_CODE (init) == AGGR_INIT_EXPR
1228 && !AGGR_INIT_VIA_CTOR_P (init))
1229 {
1230 tree fn = AGGR_INIT_EXPR_FN (init);
1231 expr = build_call_array_loc (input_location,
1232 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
1233 fn,
1234 aggr_init_expr_nargs (init),
1235 AGGR_INIT_EXPR_ARGP (init));
1236 }
1237 }
1238 break;
1239
1240 default:;
1241 }
1242 expr = resolve_nondeduced_context (expr);
1243 {
1244 tree probe = expr;
1245
1246 if (TREE_CODE (probe) == ADDR_EXPR)
1247 probe = TREE_OPERAND (expr, 0);
1248 if (type_unknown_p (probe))
1249 {
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)
1254 {
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;
1283 }
1284 else
1285 return error_mark_node;
1286 expr = void_zero_node;
1287 }
1288 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1289 {
1290 /* Only warn when there is no &. */
1291 if (complain & tf_warning)
1292 switch (implicit)
1293 {
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 ();
1326 }
1327
1328 if (TREE_CODE (expr) == COMPONENT_REF)
1329 expr = TREE_OPERAND (expr, 0);
1330 }
1331 }
1332
1333 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1334 {
1335 if (implicit != ICV_CAST
1336 && warn_unused_value
1337 && !TREE_NO_WARNING (expr)
1338 && !processing_template_decl)
1339 {
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)
1345 {
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 ();
1374 }
1375 }
1376 else
1377 {
1378 tree e;
1379 enum tree_code code;
1380 enum tree_code_class tclass;
1381
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);
1395
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");
1411 }
1412 }
1413 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1414 }
1415 if (! TREE_SIDE_EFFECTS (expr))
1416 expr = void_zero_node;
1417 return expr;
1418 }
1419
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.
1425
1426 Most of this routine is from build_reinterpret_cast.
1427
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.
1433
1434 Also, if we ever support range variables, we'll probably also have to
1435 do a little bit more work. */
1436
1437 tree
1438 convert (tree type, tree expr)
1439 {
1440 tree intype;
1441
1442 if (type == error_mark_node || expr == error_mark_node)
1443 return error_mark_node;
1444
1445 intype = TREE_TYPE (expr);
1446
1447 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1448 return fold_if_not_in_template (build_nop (type, expr));
1449
1450 return ocp_convert (type, expr, CONV_OLD_CONVERT,
1451 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1452 tf_warning_or_error);
1453 }
1454
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). */
1458
1459 tree
1460 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1461 {
1462 tree e = expr;
1463 enum tree_code code = TREE_CODE (type);
1464
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)));
1469
1470 if (code == POINTER_TYPE)
1471 return fold_if_not_in_template (convert_to_pointer_force (type, e,
1472 complain));
1473
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);
1483
1484 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1485 }
1486
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.
1492
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) */
1497
1498 static tree
1499 build_type_conversion (tree xtype, tree expr)
1500 {
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);
1505 }
1506
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. */
1511
1512 tree
1513 build_expr_type_conversion (int desires, tree expr, bool complain)
1514 {
1515 tree basetype = TREE_TYPE (expr);
1516 tree conv = NULL_TREE;
1517 tree winner = NULL_TREE;
1518
1519 if (expr == null_node
1520 && (desires & WANT_INT)
1521 && !(desires & WANT_NULL))
1522 {
1523 source_location loc =
1524 expansion_point_location_if_in_system_header (input_location);
1525
1526 warning_at (loc, OPT_Wconversion_null,
1527 "converting NULL to non-pointer type");
1528 }
1529
1530 if (basetype == error_mark_node)
1531 return error_mark_node;
1532
1533 if (! MAYBE_CLASS_TYPE_P (basetype))
1534 switch (TREE_CODE (basetype))
1535 {
1536 case INTEGER_TYPE:
1537 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1538 return expr;
1539 /* else fall through... */
1540
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;
1549
1550 case FUNCTION_TYPE:
1551 case ARRAY_TYPE:
1552 return (desires & WANT_POINTER) ? decay_conversion (expr,
1553 tf_warning_or_error)
1554 : NULL_TREE;
1555
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)))
1561 {
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;
1571 }
1572
1573 default:
1574 return NULL_TREE;
1575 }
1576
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;
1583
1584 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1585 {
1586 int win = 0;
1587 tree candidate;
1588 tree cand = TREE_VALUE (conv);
1589 cand = OVL_CURRENT (cand);
1590
1591 if (winner && winner == cand)
1592 continue;
1593
1594 if (DECL_NONCONVERTING_P (cand))
1595 continue;
1596
1597 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1598
1599 switch (TREE_CODE (candidate))
1600 {
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;
1610
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)))
1616 {
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;
1626 }
1627 break;
1628
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;
1635 }
1636
1637 if (win)
1638 {
1639 if (TREE_CODE (cand) == TEMPLATE_DECL)
1640 {
1641 if (complain)
1642 error ("default type conversion can't deduce template"
1643 " argument for %qD", cand);
1644 return error_mark_node;
1645 }
1646
1647 if (winner)
1648 {
1649 tree winner_type
1650 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1651
1652 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1653 candidate))
1654 {
1655 if (complain)
1656 {
1657 error ("ambiguous default type conversion from %qT",
1658 basetype);
1659 error (" candidate conversions include %qD and %qD",
1660 winner, cand);
1661 }
1662 return error_mark_node;
1663 }
1664 }
1665
1666 winner = cand;
1667 }
1668 }
1669
1670 if (winner)
1671 {
1672 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1673 return build_user_type_conversion (type, expr, LOOKUP_NORMAL,
1674 tf_warning_or_error);
1675 }
1676
1677 return NULL_TREE;
1678 }
1679
1680 /* Implements integral promotion (4.1) and float->double promotion. */
1681
1682 tree
1683 type_promotes_to (tree type)
1684 {
1685 tree promoted_type;
1686
1687 if (type == error_mark_node)
1688 return error_mark_node;
1689
1690 type = TYPE_MAIN_VARIANT (type);
1691
1692 /* Check for promotions of target-defined types first. */
1693 promoted_type = targetm.promoted_type (type);
1694 if (promoted_type)
1695 return promoted_type;
1696
1697 /* bool always promotes to int (not unsigned), even if it's the same
1698 size. */
1699 if (TREE_CODE (type) == BOOLEAN_TYPE)
1700 type = integer_type_node;
1701
1702 /* Scoped enums don't promote, but pretend they do for backward ABI bug
1703 compatibility wrt varargs. */
1704 else if (SCOPED_ENUM_P (type) && abi_version_at_least (6))
1705 ;
1706
1707 /* Normally convert enums to int, but convert wide enums to something
1708 wider. */
1709 else if (TREE_CODE (type) == ENUMERAL_TYPE
1710 || type == char16_type_node
1711 || type == char32_type_node
1712 || type == wchar_type_node)
1713 {
1714 int precision = MAX (TYPE_PRECISION (type),
1715 TYPE_PRECISION (integer_type_node));
1716 tree totype = c_common_type_for_size (precision, 0);
1717 if (SCOPED_ENUM_P (type))
1718 warning (OPT_Wabi, "scoped enum %qT will not promote to an integral "
1719 "type in a future version of GCC", type);
1720 if (TREE_CODE (type) == ENUMERAL_TYPE)
1721 type = ENUM_UNDERLYING_TYPE (type);
1722 if (TYPE_UNSIGNED (type)
1723 && ! int_fits_type_p (TYPE_MAX_VALUE (type), totype))
1724 type = c_common_type_for_size (precision, 1);
1725 else
1726 type = totype;
1727 }
1728 else if (c_promoting_integer_type_p (type))
1729 {
1730 /* Retain unsignedness if really not getting bigger. */
1731 if (TYPE_UNSIGNED (type)
1732 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1733 type = unsigned_type_node;
1734 else
1735 type = integer_type_node;
1736 }
1737 else if (type == float_type_node)
1738 type = double_type_node;
1739
1740 return type;
1741 }
1742
1743 /* The routines below this point are carefully written to conform to
1744 the standard. They use the same terminology, and follow the rules
1745 closely. Although they are used only in pt.c at the moment, they
1746 should presumably be used everywhere in the future. */
1747
1748 /* Attempt to perform qualification conversions on EXPR to convert it
1749 to TYPE. Return the resulting expression, or error_mark_node if
1750 the conversion was impossible. */
1751
1752 tree
1753 perform_qualification_conversions (tree type, tree expr)
1754 {
1755 tree expr_type;
1756
1757 expr_type = TREE_TYPE (expr);
1758
1759 if (same_type_p (type, expr_type))
1760 return expr;
1761 else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1762 && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1763 return build_nop (type, expr);
1764 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type)
1765 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1766 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1767 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1768 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1769 return build_nop (type, expr);
1770 else
1771 return error_mark_node;
1772 }