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