]> gcc.gnu.org Git - gcc.git/blob - gcc/cp/cvt.c
C++17 copy elision improvements.
[gcc.git] / gcc / cp / cvt.c
1 /* Language-level data type conversion for GNU C++.
2 Copyright (C) 1987-2016 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 "target.h"
31 #include "cp-tree.h"
32 #include "stor-layout.h"
33 #include "flags.h"
34 #include "intl.h"
35 #include "convert.h"
36
37 static tree convert_to_pointer_force (tree, tree, tsubst_flags_t);
38 static tree build_type_conversion (tree, tree);
39 static tree build_up_reference (tree, tree, int, tree, tsubst_flags_t);
40 static void diagnose_ref_binding (location_t, tree, tree, tree);
41
42 /* Change of width--truncation and extension of integers or reals--
43 is represented with NOP_EXPR. Proper functioning of many things
44 assumes that no other conversions can be NOP_EXPRs.
45
46 Conversion between integer and pointer is represented with CONVERT_EXPR.
47 Converting integer to real uses FLOAT_EXPR
48 and real to integer uses FIX_TRUNC_EXPR.
49
50 Here is a list of all the functions that assume that widening and
51 narrowing is always done with a NOP_EXPR:
52 In convert.c, convert_to_integer[_maybe_fold].
53 In c-typeck.c, build_binary_op_nodefault (boolean ops),
54 and c_common_truthvalue_conversion.
55 In expr.c: expand_expr, for operands of a MULT_EXPR.
56 In fold-const.c: fold.
57 In tree.c: get_narrower and get_unwidened.
58
59 C++: in multiple-inheritance, converting between pointers may involve
60 adjusting them by a delta stored within the class definition. */
61 \f
62 /* Subroutines of `convert'. */
63
64 /* if converting pointer to pointer
65 if dealing with classes, check for derived->base or vice versa
66 else if dealing with method pointers, delegate
67 else convert blindly
68 else if converting class, pass off to build_type_conversion
69 else try C-style pointer conversion. */
70
71 static tree
72 cp_convert_to_pointer (tree type, tree expr, bool dofold,
73 tsubst_flags_t complain)
74 {
75 tree intype = TREE_TYPE (expr);
76 enum tree_code form;
77 tree rval;
78 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
79
80 if (intype == error_mark_node)
81 return error_mark_node;
82
83 if (MAYBE_CLASS_TYPE_P (intype))
84 {
85 intype = complete_type (intype);
86 if (!COMPLETE_TYPE_P (intype))
87 {
88 if (complain & tf_error)
89 error_at (loc, "can%'t convert from incomplete type %qT to %qT",
90 intype, type);
91 return error_mark_node;
92 }
93
94 rval = build_type_conversion (type, expr);
95 if (rval)
96 {
97 if ((complain & tf_error)
98 && rval == error_mark_node)
99 error_at (loc, "conversion of %qE from %qT to %qT is ambiguous",
100 expr, intype, type);
101 return rval;
102 }
103 }
104
105 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
106 if (TYPE_PTR_P (type)
107 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
108 || VOID_TYPE_P (TREE_TYPE (type))))
109 {
110 if (TYPE_PTRMEMFUNC_P (intype)
111 || TREE_CODE (intype) == METHOD_TYPE)
112 return convert_member_func_to_ptr (type, expr, complain);
113 if (TYPE_PTR_P (TREE_TYPE (expr)))
114 return build_nop (type, expr);
115 intype = TREE_TYPE (expr);
116 }
117
118 if (expr == error_mark_node)
119 return error_mark_node;
120
121 form = TREE_CODE (intype);
122
123 if (POINTER_TYPE_P (intype))
124 {
125 intype = TYPE_MAIN_VARIANT (intype);
126
127 if (TYPE_MAIN_VARIANT (type) != intype
128 && TYPE_PTR_P (type)
129 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
130 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
131 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
132 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
133 {
134 enum tree_code code = PLUS_EXPR;
135 tree binfo;
136 tree intype_class;
137 tree type_class;
138 bool same_p;
139
140 intype_class = TREE_TYPE (intype);
141 type_class = TREE_TYPE (type);
142
143 same_p = same_type_p (TYPE_MAIN_VARIANT (intype_class),
144 TYPE_MAIN_VARIANT (type_class));
145 binfo = NULL_TREE;
146 /* Try derived to base conversion. */
147 if (!same_p)
148 binfo = lookup_base (intype_class, type_class, ba_check,
149 NULL, complain);
150 if (!same_p && !binfo)
151 {
152 /* Try base to derived conversion. */
153 binfo = lookup_base (type_class, intype_class, ba_check,
154 NULL, complain);
155 code = MINUS_EXPR;
156 }
157 if (binfo == error_mark_node)
158 return error_mark_node;
159 if (binfo || same_p)
160 {
161 if (binfo)
162 expr = build_base_path (code, expr, binfo, 0, complain);
163 /* Add any qualifier conversions. */
164 return build_nop (type, expr);
165 }
166 }
167
168 if (TYPE_PTRMEMFUNC_P (type))
169 {
170 if (complain & tf_error)
171 error_at (loc, "cannot convert %qE from type %qT to type %qT",
172 expr, intype, type);
173 return error_mark_node;
174 }
175
176 return build_nop (type, expr);
177 }
178 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
179 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
180 return convert_ptrmem (type, expr, /*allow_inverse_p=*/false,
181 /*c_cast_p=*/false, complain);
182 else if (TYPE_PTRMEMFUNC_P (intype))
183 {
184 if (!warn_pmf2ptr)
185 {
186 if (TREE_CODE (expr) == PTRMEM_CST)
187 return cp_convert_to_pointer (type, PTRMEM_CST_MEMBER (expr),
188 dofold, complain);
189 else if (TREE_CODE (expr) == OFFSET_REF)
190 {
191 tree object = TREE_OPERAND (expr, 0);
192 return get_member_function_from_ptrfunc (&object,
193 TREE_OPERAND (expr, 1),
194 complain);
195 }
196 }
197 if (complain & tf_error)
198 error_at (loc, "cannot convert %qE from type %qT to type %qT",
199 expr, intype, type);
200 return error_mark_node;
201 }
202
203 if (null_ptr_cst_p (expr))
204 {
205 if (TYPE_PTRMEMFUNC_P (type))
206 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
207 /*c_cast_p=*/false, complain);
208
209 if (complain & tf_warning)
210 maybe_warn_zero_as_null_pointer_constant (expr, loc);
211
212 /* A NULL pointer-to-data-member is represented by -1, not by
213 zero. */
214 tree val = (TYPE_PTRDATAMEM_P (type)
215 ? build_int_cst_type (type, -1)
216 : build_int_cst (type, 0));
217
218 return (TREE_SIDE_EFFECTS (expr)
219 ? build2 (COMPOUND_EXPR, type, expr, val) : val);
220 }
221 else if (TYPE_PTRMEM_P (type) && INTEGRAL_CODE_P (form))
222 {
223 if (complain & tf_error)
224 error_at (loc, "invalid conversion from %qT to %qT", intype, type);
225 return error_mark_node;
226 }
227
228 if (INTEGRAL_CODE_P (form))
229 {
230 if (TYPE_PRECISION (intype) == POINTER_SIZE)
231 return build1 (CONVERT_EXPR, type, expr);
232 expr = cp_convert (c_common_type_for_size (POINTER_SIZE, 0), expr,
233 complain);
234 /* Modes may be different but sizes should be the same. There
235 is supposed to be some integral type that is the same width
236 as a pointer. */
237 gcc_assert (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (expr)))
238 == GET_MODE_SIZE (TYPE_MODE (type)));
239
240 return convert_to_pointer_maybe_fold (type, expr, dofold);
241 }
242
243 if (type_unknown_p (expr))
244 return instantiate_type (type, expr, complain);
245
246 if (complain & tf_error)
247 error_at (loc, "cannot convert %qE from type %qT to type %qT",
248 expr, intype, type);
249 return error_mark_node;
250 }
251
252 /* Like convert, except permit conversions to take place which
253 are not normally allowed due to access restrictions
254 (such as conversion from sub-type to private super-type). */
255
256 static tree
257 convert_to_pointer_force (tree type, tree expr, tsubst_flags_t complain)
258 {
259 tree intype = TREE_TYPE (expr);
260 enum tree_code form = TREE_CODE (intype);
261
262 if (form == POINTER_TYPE)
263 {
264 intype = TYPE_MAIN_VARIANT (intype);
265
266 if (TYPE_MAIN_VARIANT (type) != intype
267 && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
268 && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
269 && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
270 && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
271 {
272 enum tree_code code = PLUS_EXPR;
273 tree binfo;
274
275 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
276 ba_unique, NULL, complain);
277 if (!binfo)
278 {
279 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
280 ba_unique, NULL, complain);
281 code = MINUS_EXPR;
282 }
283 if (binfo == error_mark_node)
284 return error_mark_node;
285 if (binfo)
286 {
287 expr = build_base_path (code, expr, binfo, 0, complain);
288 if (expr == error_mark_node)
289 return error_mark_node;
290 /* Add any qualifier conversions. */
291 if (!same_type_p (TREE_TYPE (TREE_TYPE (expr)),
292 TREE_TYPE (type)))
293 expr = build_nop (type, expr);
294 return expr;
295 }
296 }
297 }
298
299 return cp_convert_to_pointer (type, expr, /*fold*/false, complain);
300 }
301
302 /* We are passing something to a function which requires a reference.
303 The type we are interested in is in TYPE. The initial
304 value we have to begin with is in ARG.
305
306 FLAGS controls how we manage access checking.
307 DIRECT_BIND in FLAGS controls how any temporaries are generated.
308 If DIRECT_BIND is set, DECL is the reference we're binding to. */
309
310 static tree
311 build_up_reference (tree type, tree arg, int flags, tree decl,
312 tsubst_flags_t complain)
313 {
314 tree rval;
315 tree argtype = TREE_TYPE (arg);
316 tree target_type = TREE_TYPE (type);
317
318 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
319
320 if ((flags & DIRECT_BIND) && ! lvalue_p (arg))
321 {
322 /* Create a new temporary variable. We can't just use a TARGET_EXPR
323 here because it needs to live as long as DECL. */
324 tree targ = arg;
325
326 arg = make_temporary_var_for_ref_to_temp (decl, target_type);
327
328 /* Process the initializer for the declaration. */
329 DECL_INITIAL (arg) = targ;
330 cp_finish_decl (arg, targ, /*init_const_expr_p=*/false, NULL_TREE,
331 LOOKUP_ONLYCONVERTING|DIRECT_BIND);
332 }
333 else if (!(flags & DIRECT_BIND) && ! obvalue_p (arg))
334 return get_target_expr_sfinae (arg, complain);
335
336 /* If we had a way to wrap this up, and say, if we ever needed its
337 address, transform all occurrences of the register, into a memory
338 reference we could win better. */
339 rval = cp_build_addr_expr (arg, complain);
340 if (rval == error_mark_node)
341 return error_mark_node;
342
343 if ((flags & LOOKUP_PROTECT)
344 && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
345 && MAYBE_CLASS_TYPE_P (argtype)
346 && MAYBE_CLASS_TYPE_P (target_type))
347 {
348 /* We go through lookup_base for the access control. */
349 tree binfo = lookup_base (argtype, target_type, ba_check,
350 NULL, complain);
351 if (binfo == error_mark_node)
352 return error_mark_node;
353 if (binfo == NULL_TREE)
354 return error_not_base_type (target_type, argtype);
355 rval = build_base_path (PLUS_EXPR, rval, binfo, 1, complain);
356 }
357 else
358 rval
359 = convert_to_pointer_force (build_pointer_type (target_type),
360 rval, complain);
361 return build_nop (type, rval);
362 }
363
364 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
365 INTYPE is the original rvalue type and DECL is an optional _DECL node
366 for diagnostics.
367
368 [dcl.init.ref] says that if an rvalue is used to
369 initialize a reference, then the reference must be to a
370 non-volatile const type. */
371
372 static void
373 diagnose_ref_binding (location_t loc, tree reftype, tree intype, tree decl)
374 {
375 tree ttl = TREE_TYPE (reftype);
376
377 if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl))
378 {
379 const char *msg;
380
381 if (CP_TYPE_VOLATILE_P (ttl) && decl)
382 msg = G_("initialization of volatile reference type %q#T from "
383 "rvalue of type %qT");
384 else if (CP_TYPE_VOLATILE_P (ttl))
385 msg = G_("conversion to volatile reference type %q#T "
386 "from rvalue of type %qT");
387 else if (decl)
388 msg = G_("initialization of non-const reference type %q#T from "
389 "rvalue of type %qT");
390 else
391 msg = G_("conversion to non-const reference type %q#T from "
392 "rvalue of type %qT");
393
394 permerror (loc, msg, reftype, intype);
395 }
396 }
397
398 /* For C++: Only need to do one-level references, but cannot
399 get tripped up on signed/unsigned differences.
400
401 DECL is either NULL_TREE or the _DECL node for a reference that is being
402 initialized. It can be error_mark_node if we don't know the _DECL but
403 we know it's an initialization. */
404
405 tree
406 convert_to_reference (tree reftype, tree expr, int convtype,
407 int flags, tree decl, tsubst_flags_t complain)
408 {
409 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (reftype));
410 tree intype;
411 tree rval = NULL_TREE;
412 tree rval_as_conversion = NULL_TREE;
413 bool can_convert_intype_to_type;
414 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
415
416 if (TREE_CODE (type) == FUNCTION_TYPE
417 && TREE_TYPE (expr) == unknown_type_node)
418 expr = instantiate_type (type, expr, complain);
419
420 if (expr == error_mark_node)
421 return error_mark_node;
422
423 intype = TREE_TYPE (expr);
424
425 gcc_assert (TREE_CODE (intype) != REFERENCE_TYPE);
426 gcc_assert (TREE_CODE (reftype) == REFERENCE_TYPE);
427
428 intype = TYPE_MAIN_VARIANT (intype);
429
430 can_convert_intype_to_type = can_convert_standard (type, intype, complain);
431
432 if (!can_convert_intype_to_type
433 && (convtype & CONV_IMPLICIT) && MAYBE_CLASS_TYPE_P (intype)
434 && ! (flags & LOOKUP_NO_CONVERSION))
435 {
436 /* Look for a user-defined conversion to lvalue that we can use. */
437
438 rval_as_conversion
439 = build_type_conversion (reftype, expr);
440
441 if (rval_as_conversion && rval_as_conversion != error_mark_node
442 && lvalue_p (rval_as_conversion))
443 {
444 expr = rval_as_conversion;
445 rval_as_conversion = NULL_TREE;
446 intype = type;
447 can_convert_intype_to_type = 1;
448 }
449 }
450
451 if (((convtype & CONV_STATIC)
452 && can_convert_standard (intype, type, complain))
453 || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type))
454 {
455 {
456 tree ttl = TREE_TYPE (reftype);
457 tree ttr = lvalue_type (expr);
458
459 if ((complain & tf_error)
460 && ! lvalue_p (expr))
461 diagnose_ref_binding (loc, reftype, intype, decl);
462
463 if (! (convtype & CONV_CONST)
464 && !at_least_as_qualified_p (ttl, ttr))
465 {
466 if (complain & tf_error)
467 permerror (loc, "conversion from %qT to %qT discards qualifiers",
468 ttr, reftype);
469 else
470 return error_mark_node;
471 }
472 }
473
474 return build_up_reference (reftype, expr, flags, decl, complain);
475 }
476 else if ((convtype & CONV_REINTERPRET) && obvalue_p (expr))
477 {
478 /* When casting an lvalue to a reference type, just convert into
479 a pointer to the new type and deference it. This is allowed
480 by San Diego WP section 5.2.9 paragraph 12, though perhaps it
481 should be done directly (jason). (int &)ri ---> *(int*)&ri */
482
483 /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
484 meant. */
485 if ((complain & tf_warning)
486 && TYPE_PTR_P (intype)
487 && (comptypes (TREE_TYPE (intype), type,
488 COMPARE_BASE | COMPARE_DERIVED)))
489 warning_at (loc, 0, "casting %qT to %qT does not dereference pointer",
490 intype, reftype);
491
492 rval = cp_build_addr_expr (expr, complain);
493 if (rval != error_mark_node)
494 rval = convert_force (build_pointer_type (TREE_TYPE (reftype)),
495 rval, 0, complain);
496 if (rval != error_mark_node)
497 rval = build1 (NOP_EXPR, reftype, rval);
498 }
499 else
500 {
501 rval = convert_for_initialization (NULL_TREE, type, expr, flags,
502 ICR_CONVERTING, 0, 0, complain);
503 if (rval == NULL_TREE || rval == error_mark_node)
504 return rval;
505 if (complain & tf_error)
506 diagnose_ref_binding (loc, reftype, intype, decl);
507 rval = build_up_reference (reftype, rval, flags, decl, complain);
508 }
509
510 if (rval)
511 {
512 /* If we found a way to convert earlier, then use it. */
513 return rval;
514 }
515
516 if (complain & tf_error)
517 error_at (loc, "cannot convert type %qT to type %qT", intype, reftype);
518
519 return error_mark_node;
520 }
521
522 /* We are using a reference VAL for its value. Bash that reference all the
523 way down to its lowest form. */
524
525 tree
526 convert_from_reference (tree val)
527 {
528 if (TREE_TYPE (val)
529 && TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
530 {
531 tree t = TREE_TYPE (TREE_TYPE (val));
532 tree ref = build1 (INDIRECT_REF, t, val);
533
534 mark_exp_read (val);
535 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
536 so that we get the proper error message if the result is used
537 to assign to. Also, &* is supposed to be a no-op. */
538 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
539 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
540 TREE_SIDE_EFFECTS (ref)
541 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (val));
542 val = ref;
543 }
544
545 return val;
546 }
547
548 /* Really perform an lvalue-to-rvalue conversion, including copying an
549 argument of class type into a temporary. */
550
551 tree
552 force_rvalue (tree expr, tsubst_flags_t complain)
553 {
554 tree type = TREE_TYPE (expr);
555 if (MAYBE_CLASS_TYPE_P (type) && TREE_CODE (expr) != TARGET_EXPR)
556 {
557 vec<tree, va_gc> *args = make_tree_vector_single (expr);
558 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
559 &args, type, LOOKUP_NORMAL, complain);
560 release_tree_vector (args);
561 expr = build_cplus_new (type, expr, complain);
562 }
563 else
564 expr = decay_conversion (expr, complain);
565
566 return expr;
567 }
568
569 \f
570 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
571 TREE_OVERFLOW set only if it is set in ORIG. Otherwise, return EXPR
572 unchanged. */
573
574 static tree
575 ignore_overflows (tree expr, tree orig)
576 {
577 if (TREE_CODE (expr) == INTEGER_CST
578 && TREE_CODE (orig) == INTEGER_CST
579 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
580 {
581 gcc_assert (!TREE_OVERFLOW (orig));
582 /* Ensure constant sharing. */
583 expr = wide_int_to_tree (TREE_TYPE (expr), expr);
584 }
585 return expr;
586 }
587
588 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
589 properly. */
590
591 tree
592 cp_fold_convert (tree type, tree expr)
593 {
594 tree conv;
595 if (TREE_TYPE (expr) == type)
596 conv = expr;
597 else if (TREE_CODE (expr) == PTRMEM_CST)
598 {
599 /* Avoid wrapping a PTRMEM_CST in NOP_EXPR. */
600 conv = copy_node (expr);
601 TREE_TYPE (conv) = type;
602 }
603 else
604 {
605 conv = fold_convert (type, expr);
606 conv = ignore_overflows (conv, expr);
607 }
608 return conv;
609 }
610
611 /* C++ conversions, preference to static cast conversions. */
612
613 tree
614 cp_convert (tree type, tree expr, tsubst_flags_t complain)
615 {
616 return ocp_convert (type, expr, CONV_OLD_CONVERT, LOOKUP_NORMAL, complain);
617 }
618
619 /* C++ equivalent of convert_and_check but using cp_convert as the
620 conversion function.
621
622 Convert EXPR to TYPE, warning about conversion problems with constants.
623 Invoke this function on every expression that is converted implicitly,
624 i.e. because of language rules and not because of an explicit cast. */
625
626 tree
627 cp_convert_and_check (tree type, tree expr, tsubst_flags_t complain)
628 {
629 tree result;
630
631 if (TREE_TYPE (expr) == type)
632 return expr;
633 if (expr == error_mark_node)
634 return expr;
635 result = cp_convert (type, expr, complain);
636
637 if ((complain & tf_warning)
638 && c_inhibit_evaluation_warnings == 0)
639 {
640 tree folded = cp_fully_fold (expr);
641 tree folded_result;
642 if (folded == expr)
643 folded_result = result;
644 else
645 {
646 /* Avoid bogus -Wparentheses warnings. */
647 warning_sentinel w (warn_parentheses);
648 warning_sentinel c (warn_int_in_bool_context);
649 folded_result = cp_convert (type, folded, tf_none);
650 }
651 folded_result = fold_simple (folded_result);
652 if (!TREE_OVERFLOW_P (folded)
653 && folded_result != error_mark_node)
654 warnings_for_convert_and_check (EXPR_LOC_OR_LOC (expr, input_location),
655 type, folded, folded_result);
656 }
657
658 return result;
659 }
660
661 /* Returns true if we should avoid even doing overload resolution for copying
662 EXPR to initialize a TYPE. */
663
664 bool
665 early_elide_copy (tree type, tree expr)
666 {
667 if (TREE_CODE (expr) != TARGET_EXPR)
668 return false;
669 /* List-initialization and direct-initialization don't involve a copy. */
670 if (TARGET_EXPR_LIST_INIT_P (expr)
671 || TARGET_EXPR_DIRECT_INIT_P (expr))
672 return true;
673 /* In C++17, "If the initializer expression is a prvalue and the
674 cv-unqualified version of the source type is the same class as the class
675 of the destination, the initializer expression is used to initialize the
676 destination object." */
677 return (cxx_dialect >= cxx1z
678 && (same_type_ignoring_top_level_qualifiers_p
679 (type, TREE_TYPE (expr))));
680 }
681
682 /* Conversion...
683
684 FLAGS indicates how we should behave. */
685
686 tree
687 ocp_convert (tree type, tree expr, int convtype, int flags,
688 tsubst_flags_t complain)
689 {
690 tree e = expr;
691 enum tree_code code = TREE_CODE (type);
692 const char *invalid_conv_diag;
693 tree e1;
694 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
695 bool dofold = (convtype & CONV_FOLD);
696
697 if (error_operand_p (e) || type == error_mark_node)
698 return error_mark_node;
699
700 complete_type (type);
701 complete_type (TREE_TYPE (expr));
702
703 if ((invalid_conv_diag
704 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
705 {
706 if (complain & tf_error)
707 error (invalid_conv_diag);
708 return error_mark_node;
709 }
710
711 /* FIXME remove when moving to c_fully_fold model. */
712 if (!CLASS_TYPE_P (type))
713 e = scalar_constant_value (e);
714 if (error_operand_p (e))
715 return error_mark_node;
716
717 if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP)
718 && !early_elide_copy (type, e))
719 /* We need a new temporary; don't take this shortcut. */;
720 else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
721 {
722 if (same_type_p (type, TREE_TYPE (e)))
723 /* The call to fold will not always remove the NOP_EXPR as
724 might be expected, since if one of the types is a typedef;
725 the comparison in fold is just equality of pointers, not a
726 call to comptypes. We don't call fold in this case because
727 that can result in infinite recursion; fold will call
728 convert, which will call ocp_convert, etc. */
729 return e;
730 /* For complex data types, we need to perform componentwise
731 conversion. */
732 else if (TREE_CODE (type) == COMPLEX_TYPE)
733 return convert_to_complex_maybe_fold (type, e, dofold);
734 else if (VECTOR_TYPE_P (type))
735 return convert_to_vector (type, e);
736 else if (TREE_CODE (e) == TARGET_EXPR)
737 {
738 /* Don't build a NOP_EXPR of class type. Instead, change the
739 type of the temporary. */
740 TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
741 return e;
742 }
743 else
744 {
745 /* We shouldn't be treating objects of ADDRESSABLE type as
746 rvalues. */
747 gcc_assert (!TREE_ADDRESSABLE (type));
748 return build_nop (type, e);
749 }
750 }
751
752 e1 = targetm.convert_to_type (type, e);
753 if (e1)
754 return e1;
755
756 if (code == VOID_TYPE && (convtype & CONV_STATIC))
757 {
758 e = convert_to_void (e, ICV_CAST, complain);
759 return e;
760 }
761
762 if (INTEGRAL_CODE_P (code))
763 {
764 tree intype = TREE_TYPE (e);
765 tree converted;
766
767 if (TREE_CODE (type) == ENUMERAL_TYPE)
768 {
769 /* enum = enum, enum = int, enum = float, (enum)pointer are all
770 errors. */
771 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
772 || TREE_CODE (intype) == REAL_TYPE)
773 && ! (convtype & CONV_STATIC))
774 || TYPE_PTR_P (intype))
775 {
776 if (complain & tf_error)
777 permerror (loc, "conversion from %q#T to %q#T", intype, type);
778 else
779 return error_mark_node;
780 }
781
782 /* [expr.static.cast]
783
784 8. A value of integral or enumeration type can be explicitly
785 converted to an enumeration type. The value is unchanged if
786 the original value is within the range of the enumeration
787 values. Otherwise, the resulting enumeration value is
788 unspecified. */
789 if ((complain & tf_warning)
790 && TREE_CODE (e) == INTEGER_CST
791 && ENUM_UNDERLYING_TYPE (type)
792 && !int_fits_type_p (e, ENUM_UNDERLYING_TYPE (type)))
793 warning_at (loc, OPT_Wconversion,
794 "the result of the conversion is unspecified because "
795 "%qE is outside the range of type %qT",
796 expr, type);
797 }
798 if (MAYBE_CLASS_TYPE_P (intype))
799 {
800 tree rval;
801 rval = build_type_conversion (type, e);
802 if (rval)
803 return rval;
804 if (complain & tf_error)
805 error_at (loc, "%q#T used where a %qT was expected", intype, type);
806 return error_mark_node;
807 }
808 if (code == BOOLEAN_TYPE)
809 {
810 if (VOID_TYPE_P (intype))
811 {
812 if (complain & tf_error)
813 error_at (loc,
814 "could not convert %qE from %<void%> to %<bool%>",
815 expr);
816 return error_mark_node;
817 }
818
819 /* We can't implicitly convert a scoped enum to bool, so convert
820 to the underlying type first. */
821 if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
822 e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
823 return cp_truthvalue_conversion (e);
824 }
825
826 converted = convert_to_integer_maybe_fold (type, e, dofold);
827
828 /* Ignore any integer overflow caused by the conversion. */
829 return ignore_overflows (converted, e);
830 }
831 if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
832 {
833 if (complain & tf_warning)
834 maybe_warn_zero_as_null_pointer_constant (e, loc);
835 return nullptr_node;
836 }
837 if (POINTER_TYPE_P (type) || TYPE_PTRMEM_P (type))
838 return cp_convert_to_pointer (type, e, dofold, complain);
839 if (code == VECTOR_TYPE)
840 {
841 tree in_vtype = TREE_TYPE (e);
842 if (MAYBE_CLASS_TYPE_P (in_vtype))
843 {
844 tree ret_val;
845 ret_val = build_type_conversion (type, e);
846 if (ret_val)
847 return ret_val;
848 if (complain & tf_error)
849 error_at (loc, "%q#T used where a %qT was expected",
850 in_vtype, type);
851 return error_mark_node;
852 }
853 return convert_to_vector (type, e);
854 }
855 if (code == REAL_TYPE || code == COMPLEX_TYPE)
856 {
857 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
858 {
859 tree rval;
860 rval = build_type_conversion (type, e);
861 if (rval)
862 return rval;
863 else if (complain & tf_error)
864 error_at (loc,
865 "%q#T used where a floating point value was expected",
866 TREE_TYPE (e));
867 }
868 if (code == REAL_TYPE)
869 return convert_to_real_maybe_fold (type, e, dofold);
870 else if (code == COMPLEX_TYPE)
871 return convert_to_complex_maybe_fold (type, e, dofold);
872 }
873
874 /* New C++ semantics: since assignment is now based on
875 memberwise copying, if the rhs type is derived from the
876 lhs type, then we may still do a conversion. */
877 if (RECORD_OR_UNION_CODE_P (code))
878 {
879 tree dtype = TREE_TYPE (e);
880 tree ctor = NULL_TREE;
881
882 dtype = TYPE_MAIN_VARIANT (dtype);
883
884 /* Conversion between aggregate types. New C++ semantics allow
885 objects of derived type to be cast to objects of base type.
886 Old semantics only allowed this between pointers.
887
888 There may be some ambiguity between using a constructor
889 vs. using a type conversion operator when both apply. */
890
891 ctor = e;
892
893 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
894 return error_mark_node;
895
896 if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
897 ctor = perform_implicit_conversion (type, ctor, complain);
898 else if ((flags & LOOKUP_ONLYCONVERTING)
899 && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
900 /* For copy-initialization, first we create a temp of the proper type
901 with a user-defined conversion sequence, then we direct-initialize
902 the target with the temp (see [dcl.init]). */
903 ctor = build_user_type_conversion (type, ctor, flags, complain);
904 else
905 {
906 vec<tree, va_gc> *ctor_vec = make_tree_vector_single (ctor);
907 ctor = build_special_member_call (NULL_TREE,
908 complete_ctor_identifier,
909 &ctor_vec,
910 type, flags, complain);
911 release_tree_vector (ctor_vec);
912 }
913 if (ctor)
914 return build_cplus_new (type, ctor, complain);
915 }
916
917 if (complain & tf_error)
918 {
919 /* If the conversion failed and expr was an invalid use of pointer to
920 member function, try to report a meaningful error. */
921 if (invalid_nonstatic_memfn_p (loc, expr, complain))
922 /* We displayed the error message. */;
923 else
924 error_at (loc, "conversion from %qT to non-scalar type %qT requested",
925 TREE_TYPE (expr), type);
926 }
927 return error_mark_node;
928 }
929
930 /* If CALL is a call, return the callee; otherwise null. */
931
932 tree
933 cp_get_callee (tree call)
934 {
935 if (call == NULL_TREE)
936 return call;
937 else if (TREE_CODE (call) == CALL_EXPR)
938 return CALL_EXPR_FN (call);
939 else if (TREE_CODE (call) == AGGR_INIT_EXPR)
940 return AGGR_INIT_EXPR_FN (call);
941 return NULL_TREE;
942 }
943
944 /* FN is the callee of a CALL_EXPR or AGGR_INIT_EXPR; return the FUNCTION_DECL
945 if we can. */
946
947 tree
948 cp_get_fndecl_from_callee (tree fn)
949 {
950 if (fn == NULL_TREE)
951 return fn;
952 if (TREE_CODE (fn) == FUNCTION_DECL)
953 return fn;
954 tree type = TREE_TYPE (fn);
955 if (type == unknown_type_node)
956 return NULL_TREE;
957 gcc_assert (POINTER_TYPE_P (type));
958 fn = maybe_constant_init (fn);
959 STRIP_NOPS (fn);
960 if (TREE_CODE (fn) == ADDR_EXPR)
961 {
962 fn = TREE_OPERAND (fn, 0);
963 if (TREE_CODE (fn) == FUNCTION_DECL)
964 return fn;
965 }
966 return NULL_TREE;
967 }
968
969 /* Like get_callee_fndecl, but handles AGGR_INIT_EXPR as well and uses the
970 constexpr machinery. */
971
972 tree
973 cp_get_callee_fndecl (tree call)
974 {
975 return cp_get_fndecl_from_callee (cp_get_callee (call));
976 }
977
978 /* Subroutine of convert_to_void. Warn if we're discarding something with
979 attribute [[nodiscard]]. */
980
981 static void
982 maybe_warn_nodiscard (tree expr, impl_conv_void implicit)
983 {
984 tree call = expr;
985 if (TREE_CODE (expr) == TARGET_EXPR)
986 call = TARGET_EXPR_INITIAL (expr);
987 location_t loc = EXPR_LOC_OR_LOC (call, input_location);
988 tree callee = cp_get_callee (call);
989 if (!callee)
990 return;
991
992 tree type = TREE_TYPE (callee);
993 if (TYPE_PTRMEMFUNC_P (type))
994 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
995 if (POINTER_TYPE_P (type))
996 type = TREE_TYPE (type);
997
998 tree rettype = TREE_TYPE (type);
999 tree fn = cp_get_fndecl_from_callee (callee);
1000 if (implicit != ICV_CAST && fn
1001 && lookup_attribute ("nodiscard", DECL_ATTRIBUTES (fn)))
1002 {
1003 if (warning_at (loc, OPT_Wunused_result,
1004 "ignoring return value of %qD, "
1005 "declared with attribute nodiscard", fn))
1006 inform (DECL_SOURCE_LOCATION (fn), "declared here");
1007 }
1008 else if (implicit != ICV_CAST
1009 && lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype)))
1010 {
1011 if (warning_at (loc, OPT_Wunused_result,
1012 "ignoring returned value of type %qT, "
1013 "declared with attribute nodiscard", rettype))
1014 {
1015 if (fn)
1016 inform (DECL_SOURCE_LOCATION (fn),
1017 "in call to %qD, declared here", fn);
1018 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype)),
1019 "%qT declared here", rettype);
1020 }
1021 }
1022 else if (TREE_CODE (expr) == TARGET_EXPR
1023 && lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (type)))
1024 {
1025 /* The TARGET_EXPR confuses do_warn_unused_result into thinking that the
1026 result is used, so handle that case here. */
1027 if (fn)
1028 {
1029 if (warning_at (loc, OPT_Wunused_result,
1030 "ignoring return value of %qD, "
1031 "declared with attribute warn_unused_result",
1032 fn))
1033 inform (DECL_SOURCE_LOCATION (fn), "declared here");
1034 }
1035 else
1036 warning_at (loc, OPT_Wunused_result,
1037 "ignoring return value of function "
1038 "declared with attribute warn_unused_result");
1039 }
1040 }
1041
1042 /* When an expression is used in a void context, its value is discarded and
1043 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
1044 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
1045 in a void context. The C++ standard does not define what an `access' to an
1046 object is, but there is reason to believe that it is the lvalue to rvalue
1047 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
1048 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
1049 indicates that volatile semantics should be the same between C and C++
1050 where ever possible. C leaves it implementation defined as to what
1051 constitutes an access to a volatile. So, we interpret `*vp' as a read of
1052 the volatile object `vp' points to, unless that is an incomplete type. For
1053 volatile references we do not do this interpretation, because that would
1054 make it impossible to ignore the reference return value from functions. We
1055 issue warnings in the confusing cases.
1056
1057 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
1058 to void via a cast. If an expression is being implicitly converted, IMPLICIT
1059 indicates the context of the implicit conversion. */
1060
1061 tree
1062 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
1063 {
1064 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
1065
1066 if (expr == error_mark_node
1067 || TREE_TYPE (expr) == error_mark_node)
1068 return error_mark_node;
1069
1070 if (implicit == ICV_CAST)
1071 mark_exp_read (expr);
1072 else
1073 {
1074 tree exprv = expr;
1075
1076 while (TREE_CODE (exprv) == COMPOUND_EXPR)
1077 exprv = TREE_OPERAND (exprv, 1);
1078 if (DECL_P (exprv)
1079 || handled_component_p (exprv)
1080 || INDIRECT_REF_P (exprv))
1081 /* Expr is not being 'used' here, otherwise we whould have
1082 called mark_{rl}value_use use here, which would have in turn
1083 called mark_exp_read. Rather, we call mark_exp_read directly
1084 to avoid some warnings when
1085 -Wunused-but-set-{variable,parameter} is in effect. */
1086 mark_exp_read (exprv);
1087 }
1088
1089 if (!TREE_TYPE (expr))
1090 return expr;
1091 if (invalid_nonstatic_memfn_p (loc, expr, complain))
1092 return error_mark_node;
1093 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
1094 {
1095 if (complain & tf_error)
1096 error_at (loc, "pseudo-destructor is not called");
1097 return error_mark_node;
1098 }
1099 if (VOID_TYPE_P (TREE_TYPE (expr)))
1100 return expr;
1101 switch (TREE_CODE (expr))
1102 {
1103 case COND_EXPR:
1104 {
1105 /* The two parts of a cond expr might be separate lvalues. */
1106 tree op1 = TREE_OPERAND (expr,1);
1107 tree op2 = TREE_OPERAND (expr,2);
1108 bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
1109 || TREE_SIDE_EFFECTS (op2));
1110 tree new_op1, new_op2;
1111 new_op1 = NULL_TREE;
1112 if (implicit != ICV_CAST && !side_effects)
1113 {
1114 if (op1)
1115 new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
1116 new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
1117 }
1118 else
1119 {
1120 if (op1)
1121 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1122 new_op2 = convert_to_void (op2, ICV_CAST, complain);
1123 }
1124
1125 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
1126 TREE_OPERAND (expr, 0), new_op1, new_op2);
1127 break;
1128 }
1129
1130 case COMPOUND_EXPR:
1131 {
1132 /* The second part of a compound expr contains the value. */
1133 tree op1 = TREE_OPERAND (expr,1);
1134 tree new_op1;
1135 if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
1136 new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
1137 else
1138 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1139
1140 if (new_op1 != op1)
1141 {
1142 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
1143 TREE_OPERAND (expr, 0), new_op1);
1144 expr = t;
1145 }
1146
1147 break;
1148 }
1149
1150 case NON_LVALUE_EXPR:
1151 case NOP_EXPR:
1152 /* These have already decayed to rvalue. */
1153 break;
1154
1155 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1156 maybe_warn_nodiscard (expr, implicit);
1157 break;
1158
1159 case INDIRECT_REF:
1160 {
1161 tree type = TREE_TYPE (expr);
1162 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
1163 == REFERENCE_TYPE;
1164 int is_volatile = TYPE_VOLATILE (type);
1165 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1166
1167 /* Can't load the value if we don't know the type. */
1168 if (is_volatile && !is_complete)
1169 {
1170 if (complain & tf_warning)
1171 switch (implicit)
1172 {
1173 case ICV_CAST:
1174 warning_at (loc, 0, "conversion to void will not access "
1175 "object of incomplete type %qT", type);
1176 break;
1177 case ICV_SECOND_OF_COND:
1178 warning_at (loc, 0, "indirection will not access object of "
1179 "incomplete type %qT in second operand "
1180 "of conditional expression", type);
1181 break;
1182 case ICV_THIRD_OF_COND:
1183 warning_at (loc, 0, "indirection will not access object of "
1184 "incomplete type %qT in third operand "
1185 "of conditional expression", type);
1186 break;
1187 case ICV_RIGHT_OF_COMMA:
1188 warning_at (loc, 0, "indirection will not access object of "
1189 "incomplete type %qT in right operand of "
1190 "comma operator", type);
1191 break;
1192 case ICV_LEFT_OF_COMMA:
1193 warning_at (loc, 0, "indirection will not access object of "
1194 "incomplete type %qT in left operand of "
1195 "comma operator", type);
1196 break;
1197 case ICV_STATEMENT:
1198 warning_at (loc, 0, "indirection will not access object of "
1199 "incomplete type %qT in statement", type);
1200 break;
1201 case ICV_THIRD_IN_FOR:
1202 warning_at (loc, 0, "indirection will not access object of "
1203 "incomplete type %qT in for increment "
1204 "expression", type);
1205 break;
1206 default:
1207 gcc_unreachable ();
1208 }
1209 }
1210 /* Don't load the value if this is an implicit dereference, or if
1211 the type needs to be handled by ctors/dtors. */
1212 else if (is_volatile && is_reference)
1213 {
1214 if (complain & tf_warning)
1215 switch (implicit)
1216 {
1217 case ICV_CAST:
1218 warning_at (loc, 0, "conversion to void will not access "
1219 "object of type %qT", type);
1220 break;
1221 case ICV_SECOND_OF_COND:
1222 warning_at (loc, 0, "implicit dereference will not access "
1223 "object of type %qT in second operand of "
1224 "conditional expression", type);
1225 break;
1226 case ICV_THIRD_OF_COND:
1227 warning_at (loc, 0, "implicit dereference will not access "
1228 "object of type %qT in third operand of "
1229 "conditional expression", type);
1230 break;
1231 case ICV_RIGHT_OF_COMMA:
1232 warning_at (loc, 0, "implicit dereference will not access "
1233 "object of type %qT in right operand of "
1234 "comma operator", type);
1235 break;
1236 case ICV_LEFT_OF_COMMA:
1237 warning_at (loc, 0, "implicit dereference will not access "
1238 "object of type %qT in left operand of comma "
1239 "operator", type);
1240 break;
1241 case ICV_STATEMENT:
1242 warning_at (loc, 0, "implicit dereference will not access "
1243 "object of type %qT in statement", type);
1244 break;
1245 case ICV_THIRD_IN_FOR:
1246 warning_at (loc, 0, "implicit dereference will not access "
1247 "object of type %qT in for increment expression",
1248 type);
1249 break;
1250 default:
1251 gcc_unreachable ();
1252 }
1253 }
1254 else if (is_volatile && TREE_ADDRESSABLE (type))
1255 {
1256 if (complain & tf_warning)
1257 switch (implicit)
1258 {
1259 case ICV_CAST:
1260 warning_at (loc, 0, "conversion to void will not access "
1261 "object of non-trivially-copyable type %qT",
1262 type);
1263 break;
1264 case ICV_SECOND_OF_COND:
1265 warning_at (loc, 0, "indirection will not access object of "
1266 "non-trivially-copyable type %qT in second "
1267 "operand of conditional expression", type);
1268 break;
1269 case ICV_THIRD_OF_COND:
1270 warning_at (loc, 0, "indirection will not access object of "
1271 "non-trivially-copyable type %qT in third "
1272 "operand of conditional expression", type);
1273 break;
1274 case ICV_RIGHT_OF_COMMA:
1275 warning_at (loc, 0, "indirection will not access object of "
1276 "non-trivially-copyable type %qT in right "
1277 "operand of comma operator", type);
1278 break;
1279 case ICV_LEFT_OF_COMMA:
1280 warning_at (loc, 0, "indirection will not access object of "
1281 "non-trivially-copyable type %qT in left "
1282 "operand of comma operator", type);
1283 break;
1284 case ICV_STATEMENT:
1285 warning_at (loc, 0, "indirection will not access object of "
1286 "non-trivially-copyable type %qT in statement",
1287 type);
1288 break;
1289 case ICV_THIRD_IN_FOR:
1290 warning_at (loc, 0, "indirection will not access object of "
1291 "non-trivially-copyable type %qT in for "
1292 "increment expression", type);
1293 break;
1294 default:
1295 gcc_unreachable ();
1296 }
1297 }
1298 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1299 {
1300 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1301 operation is stripped off. Note that we don't warn about
1302 - an expression with TREE_NO_WARNING set. (For an example of
1303 such expressions, see build_over_call in call.c.)
1304 - automatic dereferencing of references, since the user cannot
1305 control it. (See also warn_if_unused_value() in c-common.c.) */
1306 if (warn_unused_value
1307 && implicit != ICV_CAST
1308 && (complain & tf_warning)
1309 && !TREE_NO_WARNING (expr)
1310 && !is_reference)
1311 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1312 expr = TREE_OPERAND (expr, 0);
1313 }
1314
1315 break;
1316 }
1317
1318 case VAR_DECL:
1319 {
1320 /* External variables might be incomplete. */
1321 tree type = TREE_TYPE (expr);
1322 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1323
1324 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1325 switch (implicit)
1326 {
1327 case ICV_CAST:
1328 warning_at (loc, 0, "conversion to void will not access "
1329 "object %qE of incomplete type %qT", expr, type);
1330 break;
1331 case ICV_SECOND_OF_COND:
1332 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1333 "not be accessed in second operand of "
1334 "conditional expression", expr, type);
1335 break;
1336 case ICV_THIRD_OF_COND:
1337 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1338 "not be accessed in third operand of "
1339 "conditional expression", expr, type);
1340 break;
1341 case ICV_RIGHT_OF_COMMA:
1342 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1343 "not be accessed in right operand of comma operator",
1344 expr, type);
1345 break;
1346 case ICV_LEFT_OF_COMMA:
1347 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1348 "not be accessed in left operand of comma operator",
1349 expr, type);
1350 break;
1351 case ICV_STATEMENT:
1352 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1353 "not be accessed in statement", expr, type);
1354 break;
1355 case ICV_THIRD_IN_FOR:
1356 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1357 "not be accessed in for increment expression",
1358 expr, type);
1359 break;
1360 default:
1361 gcc_unreachable ();
1362 }
1363
1364 break;
1365 }
1366
1367 case TARGET_EXPR:
1368 /* Don't bother with the temporary object returned from a function if
1369 we don't use it, don't need to destroy it, and won't abort in
1370 assign_temp. We'll still
1371 allocate space for it in expand_call or declare_return_variable,
1372 but we don't need to track it through all the tree phases. */
1373 if (TARGET_EXPR_IMPLICIT_P (expr)
1374 && !TREE_ADDRESSABLE (TREE_TYPE (expr)))
1375 {
1376 tree init = TARGET_EXPR_INITIAL (expr);
1377 if (TREE_CODE (init) == AGGR_INIT_EXPR
1378 && !AGGR_INIT_VIA_CTOR_P (init))
1379 {
1380 tree fn = AGGR_INIT_EXPR_FN (init);
1381 expr = build_call_array_loc (input_location,
1382 TREE_TYPE (TREE_TYPE
1383 (TREE_TYPE (fn))),
1384 fn,
1385 aggr_init_expr_nargs (init),
1386 AGGR_INIT_EXPR_ARGP (init));
1387 }
1388 }
1389 maybe_warn_nodiscard (expr, implicit);
1390 break;
1391
1392 default:;
1393 }
1394 expr = resolve_nondeduced_context (expr, complain);
1395 {
1396 tree probe = expr;
1397
1398 if (TREE_CODE (probe) == ADDR_EXPR)
1399 probe = TREE_OPERAND (expr, 0);
1400 if (type_unknown_p (probe))
1401 {
1402 /* [over.over] enumerates the places where we can take the address
1403 of an overloaded function, and this is not one of them. */
1404 if (complain & tf_error)
1405 switch (implicit)
1406 {
1407 case ICV_CAST:
1408 error_at (loc, "conversion to void "
1409 "cannot resolve address of overloaded function");
1410 break;
1411 case ICV_SECOND_OF_COND:
1412 error_at (loc, "second operand of conditional expression "
1413 "cannot resolve address of overloaded function");
1414 break;
1415 case ICV_THIRD_OF_COND:
1416 error_at (loc, "third operand of conditional expression "
1417 "cannot resolve address of overloaded function");
1418 break;
1419 case ICV_RIGHT_OF_COMMA:
1420 error_at (loc, "right operand of comma operator "
1421 "cannot resolve address of overloaded function");
1422 break;
1423 case ICV_LEFT_OF_COMMA:
1424 error_at (loc, "left operand of comma operator "
1425 "cannot resolve address of overloaded function");
1426 break;
1427 case ICV_STATEMENT:
1428 error_at (loc, "statement "
1429 "cannot resolve address of overloaded function");
1430 break;
1431 case ICV_THIRD_IN_FOR:
1432 error_at (loc, "for increment expression "
1433 "cannot resolve address of overloaded function");
1434 break;
1435 }
1436 else
1437 return error_mark_node;
1438 expr = void_node;
1439 }
1440 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1441 {
1442 /* Only warn when there is no &. */
1443 if (complain & tf_warning)
1444 switch (implicit)
1445 {
1446 case ICV_SECOND_OF_COND:
1447 warning_at (loc, OPT_Waddress,
1448 "second operand of conditional expression "
1449 "is a reference, not call, to function %qE", expr);
1450 break;
1451 case ICV_THIRD_OF_COND:
1452 warning_at (loc, OPT_Waddress,
1453 "third operand of conditional expression "
1454 "is a reference, not call, to function %qE", expr);
1455 break;
1456 case ICV_RIGHT_OF_COMMA:
1457 warning_at (loc, OPT_Waddress,
1458 "right operand of comma operator "
1459 "is a reference, not call, to function %qE", expr);
1460 break;
1461 case ICV_LEFT_OF_COMMA:
1462 warning_at (loc, OPT_Waddress,
1463 "left operand of comma operator "
1464 "is a reference, not call, to function %qE", expr);
1465 break;
1466 case ICV_STATEMENT:
1467 warning_at (loc, OPT_Waddress,
1468 "statement is a reference, not call, to function %qE",
1469 expr);
1470 break;
1471 case ICV_THIRD_IN_FOR:
1472 warning_at (loc, OPT_Waddress,
1473 "for increment expression "
1474 "is a reference, not call, to function %qE", expr);
1475 break;
1476 default:
1477 gcc_unreachable ();
1478 }
1479
1480 if (TREE_CODE (expr) == COMPONENT_REF)
1481 expr = TREE_OPERAND (expr, 0);
1482 }
1483 }
1484
1485 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1486 {
1487 if (implicit != ICV_CAST
1488 && warn_unused_value
1489 && !TREE_NO_WARNING (expr)
1490 && !processing_template_decl)
1491 {
1492 /* The middle end does not warn about expressions that have
1493 been explicitly cast to void, so we must do so here. */
1494 if (!TREE_SIDE_EFFECTS (expr)) {
1495 if (complain & tf_warning)
1496 switch (implicit)
1497 {
1498 case ICV_SECOND_OF_COND:
1499 warning_at (loc, OPT_Wunused_value,
1500 "second operand of conditional expression "
1501 "has no effect");
1502 break;
1503 case ICV_THIRD_OF_COND:
1504 warning_at (loc, OPT_Wunused_value,
1505 "third operand of conditional expression "
1506 "has no effect");
1507 break;
1508 case ICV_RIGHT_OF_COMMA:
1509 warning_at (loc, OPT_Wunused_value,
1510 "right operand of comma operator has no effect");
1511 break;
1512 case ICV_LEFT_OF_COMMA:
1513 warning_at (loc, OPT_Wunused_value,
1514 "left operand of comma operator has no effect");
1515 break;
1516 case ICV_STATEMENT:
1517 warning_at (loc, OPT_Wunused_value,
1518 "statement has no effect");
1519 break;
1520 case ICV_THIRD_IN_FOR:
1521 warning_at (loc, OPT_Wunused_value,
1522 "for increment expression has no effect");
1523 break;
1524 default:
1525 gcc_unreachable ();
1526 }
1527 }
1528 else
1529 {
1530 tree e;
1531 enum tree_code code;
1532 enum tree_code_class tclass;
1533
1534 e = expr;
1535 /* We might like to warn about (say) "(int) f()", as the
1536 cast has no effect, but the compiler itself will
1537 generate implicit conversions under some
1538 circumstances. (For example a block copy will be
1539 turned into a call to "__builtin_memcpy", with a
1540 conversion of the return value to an appropriate
1541 type.) So, to avoid false positives, we strip
1542 conversions. Do not use STRIP_NOPs because it will
1543 not strip conversions to "void", as that is not a
1544 mode-preserving conversion. */
1545 while (TREE_CODE (e) == NOP_EXPR)
1546 e = TREE_OPERAND (e, 0);
1547
1548 code = TREE_CODE (e);
1549 tclass = TREE_CODE_CLASS (code);
1550 if ((tclass == tcc_comparison
1551 || tclass == tcc_unary
1552 || (tclass == tcc_binary
1553 && !(code == MODIFY_EXPR
1554 || code == INIT_EXPR
1555 || code == PREDECREMENT_EXPR
1556 || code == PREINCREMENT_EXPR
1557 || code == POSTDECREMENT_EXPR
1558 || code == POSTINCREMENT_EXPR))
1559 || code == VEC_PERM_EXPR
1560 || code == VEC_COND_EXPR)
1561 && (complain & tf_warning))
1562 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1563 }
1564 }
1565 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1566 }
1567 if (! TREE_SIDE_EFFECTS (expr))
1568 expr = void_node;
1569 return expr;
1570 }
1571
1572 /* Create an expression whose value is that of EXPR,
1573 converted to type TYPE. The TREE_TYPE of the value
1574 is always TYPE. This function implements all reasonable
1575 conversions; callers should filter out those that are
1576 not permitted by the language being compiled.
1577
1578 Most of this routine is from build_reinterpret_cast.
1579
1580 The back end cannot call cp_convert (what was convert) because
1581 conversions to/from basetypes may involve memory references
1582 (vbases) and adding or subtracting small values (multiple
1583 inheritance), but it calls convert from the constant folding code
1584 on subtrees of already built trees after it has ripped them apart.
1585
1586 Also, if we ever support range variables, we'll probably also have to
1587 do a little bit more work. */
1588
1589 tree
1590 convert (tree type, tree expr)
1591 {
1592 tree intype;
1593
1594 if (type == error_mark_node || expr == error_mark_node)
1595 return error_mark_node;
1596
1597 intype = TREE_TYPE (expr);
1598
1599 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1600 return build_nop (type, expr);
1601
1602 return ocp_convert (type, expr, CONV_BACKEND_CONVERT,
1603 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1604 tf_warning_or_error);
1605 }
1606
1607 /* Like cp_convert, except permit conversions to take place which
1608 are not normally allowed due to access restrictions
1609 (such as conversion from sub-type to private super-type). */
1610
1611 tree
1612 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1613 {
1614 tree e = expr;
1615 enum tree_code code = TREE_CODE (type);
1616
1617 if (code == REFERENCE_TYPE)
1618 return convert_to_reference (type, e, CONV_C_CAST, 0,
1619 NULL_TREE, complain);
1620
1621 if (code == POINTER_TYPE)
1622 return convert_to_pointer_force (type, e, complain);
1623
1624 /* From typeck.c convert_for_assignment */
1625 if (((TYPE_PTR_P (TREE_TYPE (e)) && TREE_CODE (e) == ADDR_EXPR
1626 && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1627 || integer_zerop (e)
1628 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1629 && TYPE_PTRMEMFUNC_P (type))
1630 /* compatible pointer to member functions. */
1631 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1632 /*c_cast_p=*/1, complain);
1633
1634 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1635 }
1636
1637 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1638 exists, return the attempted conversion. This may
1639 return ERROR_MARK_NODE if the conversion is not
1640 allowed (references private members, etc).
1641 If no conversion exists, NULL_TREE is returned.
1642
1643 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1644 object parameter, or by the second standard conversion sequence if
1645 that doesn't do it. This will probably wait for an overloading rewrite.
1646 (jason 8/9/95) */
1647
1648 static tree
1649 build_type_conversion (tree xtype, tree expr)
1650 {
1651 /* C++: check to see if we can convert this aggregate type
1652 into the required type. */
1653 return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL,
1654 tf_warning_or_error);
1655 }
1656
1657 /* Convert the given EXPR to one of a group of types suitable for use in an
1658 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1659 which indicates which types are suitable. If COMPLAIN is true, complain
1660 about ambiguity; otherwise, the caller will deal with it. */
1661
1662 tree
1663 build_expr_type_conversion (int desires, tree expr, bool complain)
1664 {
1665 tree basetype = TREE_TYPE (expr);
1666 tree conv = NULL_TREE;
1667 tree winner = NULL_TREE;
1668
1669 if (expr == null_node
1670 && (desires & WANT_INT)
1671 && !(desires & WANT_NULL))
1672 {
1673 source_location loc =
1674 expansion_point_location_if_in_system_header (input_location);
1675
1676 warning_at (loc, OPT_Wconversion_null,
1677 "converting NULL to non-pointer type");
1678 }
1679
1680 if (basetype == error_mark_node)
1681 return error_mark_node;
1682
1683 if (! MAYBE_CLASS_TYPE_P (basetype))
1684 switch (TREE_CODE (basetype))
1685 {
1686 case INTEGER_TYPE:
1687 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1688 return expr;
1689 /* fall through. */
1690
1691 case BOOLEAN_TYPE:
1692 return (desires & WANT_INT) ? expr : NULL_TREE;
1693 case ENUMERAL_TYPE:
1694 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1695 case REAL_TYPE:
1696 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1697 case POINTER_TYPE:
1698 return (desires & WANT_POINTER) ? expr : NULL_TREE;
1699
1700 case FUNCTION_TYPE:
1701 case ARRAY_TYPE:
1702 return (desires & WANT_POINTER) ? decay_conversion (expr,
1703 tf_warning_or_error)
1704 : NULL_TREE;
1705
1706 case COMPLEX_TYPE:
1707 case VECTOR_TYPE:
1708 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1709 return NULL_TREE;
1710 switch (TREE_CODE (TREE_TYPE (basetype)))
1711 {
1712 case INTEGER_TYPE:
1713 case BOOLEAN_TYPE:
1714 return (desires & WANT_INT) ? expr : NULL_TREE;
1715 case ENUMERAL_TYPE:
1716 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1717 case REAL_TYPE:
1718 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1719 default:
1720 return NULL_TREE;
1721 }
1722
1723 default:
1724 return NULL_TREE;
1725 }
1726
1727 /* The code for conversions from class type is currently only used for
1728 delete expressions. Other expressions are handled by build_new_op. */
1729 if (!complete_type_or_maybe_complain (basetype, expr, complain))
1730 return error_mark_node;
1731 if (!TYPE_HAS_CONVERSION (basetype))
1732 return NULL_TREE;
1733
1734 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1735 {
1736 int win = 0;
1737 tree candidate;
1738 tree cand = TREE_VALUE (conv);
1739 cand = OVL_CURRENT (cand);
1740
1741 if (winner && winner == cand)
1742 continue;
1743
1744 if (DECL_NONCONVERTING_P (cand))
1745 continue;
1746
1747 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1748
1749 switch (TREE_CODE (candidate))
1750 {
1751 case BOOLEAN_TYPE:
1752 case INTEGER_TYPE:
1753 win = (desires & WANT_INT); break;
1754 case ENUMERAL_TYPE:
1755 win = (desires & WANT_ENUM); break;
1756 case REAL_TYPE:
1757 win = (desires & WANT_FLOAT); break;
1758 case POINTER_TYPE:
1759 win = (desires & WANT_POINTER); break;
1760
1761 case COMPLEX_TYPE:
1762 case VECTOR_TYPE:
1763 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1764 break;
1765 switch (TREE_CODE (TREE_TYPE (candidate)))
1766 {
1767 case BOOLEAN_TYPE:
1768 case INTEGER_TYPE:
1769 win = (desires & WANT_INT); break;
1770 case ENUMERAL_TYPE:
1771 win = (desires & WANT_ENUM); break;
1772 case REAL_TYPE:
1773 win = (desires & WANT_FLOAT); break;
1774 default:
1775 break;
1776 }
1777 break;
1778
1779 default:
1780 /* A wildcard could be instantiated to match any desired
1781 type, but we can't deduce the template argument. */
1782 if (WILDCARD_TYPE_P (candidate))
1783 win = true;
1784 break;
1785 }
1786
1787 if (win)
1788 {
1789 if (TREE_CODE (cand) == TEMPLATE_DECL)
1790 {
1791 if (complain)
1792 error ("default type conversion can't deduce template"
1793 " argument for %qD", cand);
1794 return error_mark_node;
1795 }
1796
1797 if (winner)
1798 {
1799 tree winner_type
1800 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1801
1802 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1803 candidate))
1804 {
1805 if (complain)
1806 {
1807 error ("ambiguous default type conversion from %qT",
1808 basetype);
1809 inform (input_location,
1810 " candidate conversions include %qD and %qD",
1811 winner, cand);
1812 }
1813 return error_mark_node;
1814 }
1815 }
1816
1817 winner = cand;
1818 }
1819 }
1820
1821 if (winner)
1822 {
1823 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1824 return build_user_type_conversion (type, expr, LOOKUP_NORMAL,
1825 tf_warning_or_error);
1826 }
1827
1828 return NULL_TREE;
1829 }
1830
1831 /* Implements integral promotion (4.1) and float->double promotion. */
1832
1833 tree
1834 type_promotes_to (tree type)
1835 {
1836 tree promoted_type;
1837
1838 if (type == error_mark_node)
1839 return error_mark_node;
1840
1841 type = TYPE_MAIN_VARIANT (type);
1842
1843 /* Check for promotions of target-defined types first. */
1844 promoted_type = targetm.promoted_type (type);
1845 if (promoted_type)
1846 return promoted_type;
1847
1848 /* bool always promotes to int (not unsigned), even if it's the same
1849 size. */
1850 if (TREE_CODE (type) == BOOLEAN_TYPE)
1851 type = integer_type_node;
1852
1853 /* Normally convert enums to int, but convert wide enums to something
1854 wider. Scoped enums don't promote, but pretend they do for backward
1855 ABI bug compatibility wrt varargs. */
1856 else if (TREE_CODE (type) == ENUMERAL_TYPE
1857 || type == char16_type_node
1858 || type == char32_type_node
1859 || type == wchar_type_node)
1860 {
1861 int precision = MAX (TYPE_PRECISION (type),
1862 TYPE_PRECISION (integer_type_node));
1863 tree totype = c_common_type_for_size (precision, 0);
1864 tree prom = type;
1865 if (TREE_CODE (prom) == ENUMERAL_TYPE)
1866 prom = ENUM_UNDERLYING_TYPE (prom);
1867 if (TYPE_UNSIGNED (prom)
1868 && ! int_fits_type_p (TYPE_MAX_VALUE (prom), totype))
1869 prom = c_common_type_for_size (precision, 1);
1870 else
1871 prom = totype;
1872 if (SCOPED_ENUM_P (type))
1873 {
1874 if (abi_version_crosses (6)
1875 && TYPE_MODE (prom) != TYPE_MODE (type))
1876 warning (OPT_Wabi, "scoped enum %qT passed through ... as "
1877 "%qT before -fabi-version=6, %qT after",
1878 type, prom, ENUM_UNDERLYING_TYPE (type));
1879 if (!abi_version_at_least (6))
1880 type = prom;
1881 }
1882 else
1883 type = prom;
1884 }
1885 else if (c_promoting_integer_type_p (type))
1886 {
1887 /* Retain unsignedness if really not getting bigger. */
1888 if (TYPE_UNSIGNED (type)
1889 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1890 type = unsigned_type_node;
1891 else
1892 type = integer_type_node;
1893 }
1894 else if (type == float_type_node)
1895 type = double_type_node;
1896
1897 return type;
1898 }
1899
1900 /* The routines below this point are carefully written to conform to
1901 the standard. They use the same terminology, and follow the rules
1902 closely. Although they are used only in pt.c at the moment, they
1903 should presumably be used everywhere in the future. */
1904
1905 /* Attempt to perform qualification conversions on EXPR to convert it
1906 to TYPE. Return the resulting expression, or error_mark_node if
1907 the conversion was impossible. */
1908
1909 tree
1910 perform_qualification_conversions (tree type, tree expr)
1911 {
1912 tree expr_type;
1913
1914 expr_type = TREE_TYPE (expr);
1915
1916 if (same_type_p (type, expr_type))
1917 return expr;
1918 else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1919 && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1920 return build_nop (type, expr);
1921 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type)
1922 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1923 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1924 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1925 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1926 return build_nop (type, expr);
1927 else
1928 return error_mark_node;
1929 }
1930
1931 /* True iff T is a transaction-safe function type. */
1932
1933 bool
1934 tx_safe_fn_type_p (tree t)
1935 {
1936 if (TREE_CODE (t) != FUNCTION_TYPE
1937 && TREE_CODE (t) != METHOD_TYPE)
1938 return false;
1939 return !!lookup_attribute ("transaction_safe", TYPE_ATTRIBUTES (t));
1940 }
1941
1942 /* Return the transaction-unsafe variant of transaction-safe function type
1943 T. */
1944
1945 tree
1946 tx_unsafe_fn_variant (tree t)
1947 {
1948 gcc_assert (tx_safe_fn_type_p (t));
1949 tree attrs = remove_attribute ("transaction_safe",
1950 TYPE_ATTRIBUTES (t));
1951 return cp_build_type_attribute_variant (t, attrs);
1952 }
1953
1954 /* Return true iff FROM can convert to TO by a transaction-safety
1955 conversion. */
1956
1957 bool
1958 can_convert_tx_safety (tree to, tree from)
1959 {
1960 return (flag_tm && tx_safe_fn_type_p (from)
1961 && same_type_p (to, tx_unsafe_fn_variant (from)));
1962 }
This page took 0.114727 seconds and 5 git commands to generate.