]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/cvt.c
Implement P0012R1, Make exception specifications part of the type system.
[thirdparty/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 /* Conversion...
662
663 FLAGS indicates how we should behave. */
664
665 tree
666 ocp_convert (tree type, tree expr, int convtype, int flags,
667 tsubst_flags_t complain)
668 {
669 tree e = expr;
670 enum tree_code code = TREE_CODE (type);
671 const char *invalid_conv_diag;
672 tree e1;
673 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
674 bool dofold = (convtype & CONV_FOLD);
675
676 if (error_operand_p (e) || type == error_mark_node)
677 return error_mark_node;
678
679 complete_type (type);
680 complete_type (TREE_TYPE (expr));
681
682 if ((invalid_conv_diag
683 = targetm.invalid_conversion (TREE_TYPE (expr), type)))
684 {
685 if (complain & tf_error)
686 error (invalid_conv_diag);
687 return error_mark_node;
688 }
689
690 /* FIXME remove when moving to c_fully_fold model. */
691 if (!CLASS_TYPE_P (type))
692 e = scalar_constant_value (e);
693 if (error_operand_p (e))
694 return error_mark_node;
695
696 if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP))
697 /* We need a new temporary; don't take this shortcut. */;
698 else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
699 {
700 if (same_type_p (type, TREE_TYPE (e)))
701 /* The call to fold will not always remove the NOP_EXPR as
702 might be expected, since if one of the types is a typedef;
703 the comparison in fold is just equality of pointers, not a
704 call to comptypes. We don't call fold in this case because
705 that can result in infinite recursion; fold will call
706 convert, which will call ocp_convert, etc. */
707 return e;
708 /* For complex data types, we need to perform componentwise
709 conversion. */
710 else if (TREE_CODE (type) == COMPLEX_TYPE)
711 return convert_to_complex_maybe_fold (type, e, dofold);
712 else if (VECTOR_TYPE_P (type))
713 return convert_to_vector (type, e);
714 else if (TREE_CODE (e) == TARGET_EXPR)
715 {
716 /* Don't build a NOP_EXPR of class type. Instead, change the
717 type of the temporary. */
718 TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
719 return e;
720 }
721 else
722 {
723 /* We shouldn't be treating objects of ADDRESSABLE type as
724 rvalues. */
725 gcc_assert (!TREE_ADDRESSABLE (type));
726 return build_nop (type, e);
727 }
728 }
729
730 e1 = targetm.convert_to_type (type, e);
731 if (e1)
732 return e1;
733
734 if (code == VOID_TYPE && (convtype & CONV_STATIC))
735 {
736 e = convert_to_void (e, ICV_CAST, complain);
737 return e;
738 }
739
740 if (INTEGRAL_CODE_P (code))
741 {
742 tree intype = TREE_TYPE (e);
743 tree converted;
744
745 if (TREE_CODE (type) == ENUMERAL_TYPE)
746 {
747 /* enum = enum, enum = int, enum = float, (enum)pointer are all
748 errors. */
749 if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
750 || TREE_CODE (intype) == REAL_TYPE)
751 && ! (convtype & CONV_STATIC))
752 || TYPE_PTR_P (intype))
753 {
754 if (complain & tf_error)
755 permerror (loc, "conversion from %q#T to %q#T", intype, type);
756 else
757 return error_mark_node;
758 }
759
760 /* [expr.static.cast]
761
762 8. A value of integral or enumeration type can be explicitly
763 converted to an enumeration type. The value is unchanged if
764 the original value is within the range of the enumeration
765 values. Otherwise, the resulting enumeration value is
766 unspecified. */
767 if ((complain & tf_warning)
768 && TREE_CODE (e) == INTEGER_CST
769 && ENUM_UNDERLYING_TYPE (type)
770 && !int_fits_type_p (e, ENUM_UNDERLYING_TYPE (type)))
771 warning_at (loc, OPT_Wconversion,
772 "the result of the conversion is unspecified because "
773 "%qE is outside the range of type %qT",
774 expr, type);
775 }
776 if (MAYBE_CLASS_TYPE_P (intype))
777 {
778 tree rval;
779 rval = build_type_conversion (type, e);
780 if (rval)
781 return rval;
782 if (complain & tf_error)
783 error_at (loc, "%q#T used where a %qT was expected", intype, type);
784 return error_mark_node;
785 }
786 if (code == BOOLEAN_TYPE)
787 {
788 if (VOID_TYPE_P (intype))
789 {
790 if (complain & tf_error)
791 error_at (loc,
792 "could not convert %qE from %<void%> to %<bool%>",
793 expr);
794 return error_mark_node;
795 }
796
797 /* We can't implicitly convert a scoped enum to bool, so convert
798 to the underlying type first. */
799 if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
800 e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
801 return cp_truthvalue_conversion (e);
802 }
803
804 converted = convert_to_integer_maybe_fold (type, e, dofold);
805
806 /* Ignore any integer overflow caused by the conversion. */
807 return ignore_overflows (converted, e);
808 }
809 if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
810 {
811 if (complain & tf_warning)
812 maybe_warn_zero_as_null_pointer_constant (e, loc);
813 return nullptr_node;
814 }
815 if (POINTER_TYPE_P (type) || TYPE_PTRMEM_P (type))
816 return cp_convert_to_pointer (type, e, dofold, complain);
817 if (code == VECTOR_TYPE)
818 {
819 tree in_vtype = TREE_TYPE (e);
820 if (MAYBE_CLASS_TYPE_P (in_vtype))
821 {
822 tree ret_val;
823 ret_val = build_type_conversion (type, e);
824 if (ret_val)
825 return ret_val;
826 if (complain & tf_error)
827 error_at (loc, "%q#T used where a %qT was expected",
828 in_vtype, type);
829 return error_mark_node;
830 }
831 return convert_to_vector (type, e);
832 }
833 if (code == REAL_TYPE || code == COMPLEX_TYPE)
834 {
835 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
836 {
837 tree rval;
838 rval = build_type_conversion (type, e);
839 if (rval)
840 return rval;
841 else if (complain & tf_error)
842 error_at (loc,
843 "%q#T used where a floating point value was expected",
844 TREE_TYPE (e));
845 }
846 if (code == REAL_TYPE)
847 return convert_to_real_maybe_fold (type, e, dofold);
848 else if (code == COMPLEX_TYPE)
849 return convert_to_complex_maybe_fold (type, e, dofold);
850 }
851
852 /* New C++ semantics: since assignment is now based on
853 memberwise copying, if the rhs type is derived from the
854 lhs type, then we may still do a conversion. */
855 if (RECORD_OR_UNION_CODE_P (code))
856 {
857 tree dtype = TREE_TYPE (e);
858 tree ctor = NULL_TREE;
859
860 dtype = TYPE_MAIN_VARIANT (dtype);
861
862 /* Conversion between aggregate types. New C++ semantics allow
863 objects of derived type to be cast to objects of base type.
864 Old semantics only allowed this between pointers.
865
866 There may be some ambiguity between using a constructor
867 vs. using a type conversion operator when both apply. */
868
869 ctor = e;
870
871 if (abstract_virtuals_error_sfinae (NULL_TREE, type, complain))
872 return error_mark_node;
873
874 if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
875 ctor = perform_implicit_conversion (type, ctor, complain);
876 else if ((flags & LOOKUP_ONLYCONVERTING)
877 && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
878 /* For copy-initialization, first we create a temp of the proper type
879 with a user-defined conversion sequence, then we direct-initialize
880 the target with the temp (see [dcl.init]). */
881 ctor = build_user_type_conversion (type, ctor, flags, complain);
882 else
883 {
884 vec<tree, va_gc> *ctor_vec = make_tree_vector_single (ctor);
885 ctor = build_special_member_call (NULL_TREE,
886 complete_ctor_identifier,
887 &ctor_vec,
888 type, flags, complain);
889 release_tree_vector (ctor_vec);
890 }
891 if (ctor)
892 return build_cplus_new (type, ctor, complain);
893 }
894
895 if (complain & tf_error)
896 {
897 /* If the conversion failed and expr was an invalid use of pointer to
898 member function, try to report a meaningful error. */
899 if (invalid_nonstatic_memfn_p (loc, expr, complain))
900 /* We displayed the error message. */;
901 else
902 error_at (loc, "conversion from %qT to non-scalar type %qT requested",
903 TREE_TYPE (expr), type);
904 }
905 return error_mark_node;
906 }
907
908 /* If CALL is a call, return the callee; otherwise null. */
909
910 tree
911 cp_get_callee (tree call)
912 {
913 if (call == NULL_TREE)
914 return call;
915 else if (TREE_CODE (call) == CALL_EXPR)
916 return CALL_EXPR_FN (call);
917 else if (TREE_CODE (call) == AGGR_INIT_EXPR)
918 return AGGR_INIT_EXPR_FN (call);
919 return NULL_TREE;
920 }
921
922 /* FN is the callee of a CALL_EXPR or AGGR_INIT_EXPR; return the FUNCTION_DECL
923 if we can. */
924
925 tree
926 cp_get_fndecl_from_callee (tree fn)
927 {
928 if (fn == NULL_TREE)
929 return fn;
930 if (TREE_CODE (fn) == FUNCTION_DECL)
931 return fn;
932 tree type = TREE_TYPE (fn);
933 if (type == unknown_type_node)
934 return NULL_TREE;
935 gcc_assert (POINTER_TYPE_P (type));
936 fn = maybe_constant_init (fn);
937 STRIP_NOPS (fn);
938 if (TREE_CODE (fn) == ADDR_EXPR)
939 {
940 fn = TREE_OPERAND (fn, 0);
941 if (TREE_CODE (fn) == FUNCTION_DECL)
942 return fn;
943 }
944 return NULL_TREE;
945 }
946
947 /* Like get_callee_fndecl, but handles AGGR_INIT_EXPR as well and uses the
948 constexpr machinery. */
949
950 tree
951 cp_get_callee_fndecl (tree call)
952 {
953 return cp_get_fndecl_from_callee (cp_get_callee (call));
954 }
955
956 /* Subroutine of convert_to_void. Warn if we're discarding something with
957 attribute [[nodiscard]]. */
958
959 static void
960 maybe_warn_nodiscard (tree expr, impl_conv_void implicit)
961 {
962 tree call = expr;
963 if (TREE_CODE (expr) == TARGET_EXPR)
964 call = TARGET_EXPR_INITIAL (expr);
965 location_t loc = EXPR_LOC_OR_LOC (call, input_location);
966 tree callee = cp_get_callee (call);
967 if (!callee)
968 return;
969
970 tree type = TREE_TYPE (callee);
971 if (TYPE_PTRMEMFUNC_P (type))
972 type = TYPE_PTRMEMFUNC_FN_TYPE (type);
973 if (POINTER_TYPE_P (type))
974 type = TREE_TYPE (type);
975
976 tree rettype = TREE_TYPE (type);
977 tree fn = cp_get_fndecl_from_callee (callee);
978 if (implicit != ICV_CAST && fn
979 && lookup_attribute ("nodiscard", DECL_ATTRIBUTES (fn)))
980 {
981 if (warning_at (loc, OPT_Wunused_result,
982 "ignoring return value of %qD, "
983 "declared with attribute nodiscard", fn))
984 inform (DECL_SOURCE_LOCATION (fn), "declared here");
985 }
986 else if (implicit != ICV_CAST
987 && lookup_attribute ("nodiscard", TYPE_ATTRIBUTES (rettype)))
988 {
989 if (warning_at (loc, OPT_Wunused_result,
990 "ignoring returned value of type %qT, "
991 "declared with attribute nodiscard", rettype))
992 {
993 if (fn)
994 inform (DECL_SOURCE_LOCATION (fn),
995 "in call to %qD, declared here", fn);
996 inform (DECL_SOURCE_LOCATION (TYPE_NAME (rettype)),
997 "%qT declared here", rettype);
998 }
999 }
1000 else if (TREE_CODE (expr) == TARGET_EXPR
1001 && lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (type)))
1002 {
1003 /* The TARGET_EXPR confuses do_warn_unused_result into thinking that the
1004 result is used, so handle that case here. */
1005 if (fn)
1006 {
1007 if (warning_at (loc, OPT_Wunused_result,
1008 "ignoring return value of %qD, "
1009 "declared with attribute warn_unused_result",
1010 fn))
1011 inform (DECL_SOURCE_LOCATION (fn), "declared here");
1012 }
1013 else
1014 warning_at (loc, OPT_Wunused_result,
1015 "ignoring return value of function "
1016 "declared with attribute warn_unused_result");
1017 }
1018 }
1019
1020 /* When an expression is used in a void context, its value is discarded and
1021 no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
1022 stmt.expr/1, expr.comma/1]. This permits dereferencing an incomplete type
1023 in a void context. The C++ standard does not define what an `access' to an
1024 object is, but there is reason to believe that it is the lvalue to rvalue
1025 conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
1026 accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
1027 indicates that volatile semantics should be the same between C and C++
1028 where ever possible. C leaves it implementation defined as to what
1029 constitutes an access to a volatile. So, we interpret `*vp' as a read of
1030 the volatile object `vp' points to, unless that is an incomplete type. For
1031 volatile references we do not do this interpretation, because that would
1032 make it impossible to ignore the reference return value from functions. We
1033 issue warnings in the confusing cases.
1034
1035 The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
1036 to void via a cast. If an expression is being implicitly converted, IMPLICIT
1037 indicates the context of the implicit conversion. */
1038
1039 tree
1040 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
1041 {
1042 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
1043
1044 if (expr == error_mark_node
1045 || TREE_TYPE (expr) == error_mark_node)
1046 return error_mark_node;
1047
1048 if (implicit == ICV_CAST)
1049 mark_exp_read (expr);
1050 else
1051 {
1052 tree exprv = expr;
1053
1054 while (TREE_CODE (exprv) == COMPOUND_EXPR)
1055 exprv = TREE_OPERAND (exprv, 1);
1056 if (DECL_P (exprv)
1057 || handled_component_p (exprv)
1058 || INDIRECT_REF_P (exprv))
1059 /* Expr is not being 'used' here, otherwise we whould have
1060 called mark_{rl}value_use use here, which would have in turn
1061 called mark_exp_read. Rather, we call mark_exp_read directly
1062 to avoid some warnings when
1063 -Wunused-but-set-{variable,parameter} is in effect. */
1064 mark_exp_read (exprv);
1065 }
1066
1067 if (!TREE_TYPE (expr))
1068 return expr;
1069 if (invalid_nonstatic_memfn_p (loc, expr, complain))
1070 return error_mark_node;
1071 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
1072 {
1073 if (complain & tf_error)
1074 error_at (loc, "pseudo-destructor is not called");
1075 return error_mark_node;
1076 }
1077 if (VOID_TYPE_P (TREE_TYPE (expr)))
1078 return expr;
1079 switch (TREE_CODE (expr))
1080 {
1081 case COND_EXPR:
1082 {
1083 /* The two parts of a cond expr might be separate lvalues. */
1084 tree op1 = TREE_OPERAND (expr,1);
1085 tree op2 = TREE_OPERAND (expr,2);
1086 bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
1087 || TREE_SIDE_EFFECTS (op2));
1088 tree new_op1, new_op2;
1089 new_op1 = NULL_TREE;
1090 if (implicit != ICV_CAST && !side_effects)
1091 {
1092 if (op1)
1093 new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
1094 new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
1095 }
1096 else
1097 {
1098 if (op1)
1099 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1100 new_op2 = convert_to_void (op2, ICV_CAST, complain);
1101 }
1102
1103 expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
1104 TREE_OPERAND (expr, 0), new_op1, new_op2);
1105 break;
1106 }
1107
1108 case COMPOUND_EXPR:
1109 {
1110 /* The second part of a compound expr contains the value. */
1111 tree op1 = TREE_OPERAND (expr,1);
1112 tree new_op1;
1113 if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
1114 new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
1115 else
1116 new_op1 = convert_to_void (op1, ICV_CAST, complain);
1117
1118 if (new_op1 != op1)
1119 {
1120 tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
1121 TREE_OPERAND (expr, 0), new_op1);
1122 expr = t;
1123 }
1124
1125 break;
1126 }
1127
1128 case NON_LVALUE_EXPR:
1129 case NOP_EXPR:
1130 /* These have already decayed to rvalue. */
1131 break;
1132
1133 case CALL_EXPR: /* We have a special meaning for volatile void fn(). */
1134 maybe_warn_nodiscard (expr, implicit);
1135 break;
1136
1137 case INDIRECT_REF:
1138 {
1139 tree type = TREE_TYPE (expr);
1140 int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
1141 == REFERENCE_TYPE;
1142 int is_volatile = TYPE_VOLATILE (type);
1143 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1144
1145 /* Can't load the value if we don't know the type. */
1146 if (is_volatile && !is_complete)
1147 {
1148 if (complain & tf_warning)
1149 switch (implicit)
1150 {
1151 case ICV_CAST:
1152 warning_at (loc, 0, "conversion to void will not access "
1153 "object of incomplete type %qT", type);
1154 break;
1155 case ICV_SECOND_OF_COND:
1156 warning_at (loc, 0, "indirection will not access object of "
1157 "incomplete type %qT in second operand "
1158 "of conditional expression", type);
1159 break;
1160 case ICV_THIRD_OF_COND:
1161 warning_at (loc, 0, "indirection will not access object of "
1162 "incomplete type %qT in third operand "
1163 "of conditional expression", type);
1164 break;
1165 case ICV_RIGHT_OF_COMMA:
1166 warning_at (loc, 0, "indirection will not access object of "
1167 "incomplete type %qT in right operand of "
1168 "comma operator", type);
1169 break;
1170 case ICV_LEFT_OF_COMMA:
1171 warning_at (loc, 0, "indirection will not access object of "
1172 "incomplete type %qT in left operand of "
1173 "comma operator", type);
1174 break;
1175 case ICV_STATEMENT:
1176 warning_at (loc, 0, "indirection will not access object of "
1177 "incomplete type %qT in statement", type);
1178 break;
1179 case ICV_THIRD_IN_FOR:
1180 warning_at (loc, 0, "indirection will not access object of "
1181 "incomplete type %qT in for increment "
1182 "expression", type);
1183 break;
1184 default:
1185 gcc_unreachable ();
1186 }
1187 }
1188 /* Don't load the value if this is an implicit dereference, or if
1189 the type needs to be handled by ctors/dtors. */
1190 else if (is_volatile && is_reference)
1191 {
1192 if (complain & tf_warning)
1193 switch (implicit)
1194 {
1195 case ICV_CAST:
1196 warning_at (loc, 0, "conversion to void will not access "
1197 "object of type %qT", type);
1198 break;
1199 case ICV_SECOND_OF_COND:
1200 warning_at (loc, 0, "implicit dereference will not access "
1201 "object of type %qT in second operand of "
1202 "conditional expression", type);
1203 break;
1204 case ICV_THIRD_OF_COND:
1205 warning_at (loc, 0, "implicit dereference will not access "
1206 "object of type %qT in third operand of "
1207 "conditional expression", type);
1208 break;
1209 case ICV_RIGHT_OF_COMMA:
1210 warning_at (loc, 0, "implicit dereference will not access "
1211 "object of type %qT in right operand of "
1212 "comma operator", type);
1213 break;
1214 case ICV_LEFT_OF_COMMA:
1215 warning_at (loc, 0, "implicit dereference will not access "
1216 "object of type %qT in left operand of comma "
1217 "operator", type);
1218 break;
1219 case ICV_STATEMENT:
1220 warning_at (loc, 0, "implicit dereference will not access "
1221 "object of type %qT in statement", type);
1222 break;
1223 case ICV_THIRD_IN_FOR:
1224 warning_at (loc, 0, "implicit dereference will not access "
1225 "object of type %qT in for increment expression",
1226 type);
1227 break;
1228 default:
1229 gcc_unreachable ();
1230 }
1231 }
1232 else if (is_volatile && TREE_ADDRESSABLE (type))
1233 {
1234 if (complain & tf_warning)
1235 switch (implicit)
1236 {
1237 case ICV_CAST:
1238 warning_at (loc, 0, "conversion to void will not access "
1239 "object of non-trivially-copyable type %qT",
1240 type);
1241 break;
1242 case ICV_SECOND_OF_COND:
1243 warning_at (loc, 0, "indirection will not access object of "
1244 "non-trivially-copyable type %qT in second "
1245 "operand of conditional expression", type);
1246 break;
1247 case ICV_THIRD_OF_COND:
1248 warning_at (loc, 0, "indirection will not access object of "
1249 "non-trivially-copyable type %qT in third "
1250 "operand of conditional expression", type);
1251 break;
1252 case ICV_RIGHT_OF_COMMA:
1253 warning_at (loc, 0, "indirection will not access object of "
1254 "non-trivially-copyable type %qT in right "
1255 "operand of comma operator", type);
1256 break;
1257 case ICV_LEFT_OF_COMMA:
1258 warning_at (loc, 0, "indirection will not access object of "
1259 "non-trivially-copyable type %qT in left "
1260 "operand of comma operator", type);
1261 break;
1262 case ICV_STATEMENT:
1263 warning_at (loc, 0, "indirection will not access object of "
1264 "non-trivially-copyable type %qT in statement",
1265 type);
1266 break;
1267 case ICV_THIRD_IN_FOR:
1268 warning_at (loc, 0, "indirection will not access object of "
1269 "non-trivially-copyable type %qT in for "
1270 "increment expression", type);
1271 break;
1272 default:
1273 gcc_unreachable ();
1274 }
1275 }
1276 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1277 {
1278 /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1279 operation is stripped off. Note that we don't warn about
1280 - an expression with TREE_NO_WARNING set. (For an example of
1281 such expressions, see build_over_call in call.c.)
1282 - automatic dereferencing of references, since the user cannot
1283 control it. (See also warn_if_unused_value() in c-common.c.) */
1284 if (warn_unused_value
1285 && implicit != ICV_CAST
1286 && (complain & tf_warning)
1287 && !TREE_NO_WARNING (expr)
1288 && !is_reference)
1289 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1290 expr = TREE_OPERAND (expr, 0);
1291 }
1292
1293 break;
1294 }
1295
1296 case VAR_DECL:
1297 {
1298 /* External variables might be incomplete. */
1299 tree type = TREE_TYPE (expr);
1300 int is_complete = COMPLETE_TYPE_P (complete_type (type));
1301
1302 if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1303 switch (implicit)
1304 {
1305 case ICV_CAST:
1306 warning_at (loc, 0, "conversion to void will not access "
1307 "object %qE of incomplete type %qT", expr, type);
1308 break;
1309 case ICV_SECOND_OF_COND:
1310 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1311 "not be accessed in second operand of "
1312 "conditional expression", expr, type);
1313 break;
1314 case ICV_THIRD_OF_COND:
1315 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1316 "not be accessed in third operand of "
1317 "conditional expression", expr, type);
1318 break;
1319 case ICV_RIGHT_OF_COMMA:
1320 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1321 "not be accessed in right operand of comma operator",
1322 expr, type);
1323 break;
1324 case ICV_LEFT_OF_COMMA:
1325 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1326 "not be accessed in left operand of comma operator",
1327 expr, type);
1328 break;
1329 case ICV_STATEMENT:
1330 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1331 "not be accessed in statement", expr, type);
1332 break;
1333 case ICV_THIRD_IN_FOR:
1334 warning_at (loc, 0, "variable %qE of incomplete type %qT will "
1335 "not be accessed in for increment expression",
1336 expr, type);
1337 break;
1338 default:
1339 gcc_unreachable ();
1340 }
1341
1342 break;
1343 }
1344
1345 case TARGET_EXPR:
1346 /* Don't bother with the temporary object returned from a function if
1347 we don't use it, don't need to destroy it, and won't abort in
1348 assign_temp. We'll still
1349 allocate space for it in expand_call or declare_return_variable,
1350 but we don't need to track it through all the tree phases. */
1351 if (TARGET_EXPR_IMPLICIT_P (expr)
1352 && !TREE_ADDRESSABLE (TREE_TYPE (expr)))
1353 {
1354 tree init = TARGET_EXPR_INITIAL (expr);
1355 if (TREE_CODE (init) == AGGR_INIT_EXPR
1356 && !AGGR_INIT_VIA_CTOR_P (init))
1357 {
1358 tree fn = AGGR_INIT_EXPR_FN (init);
1359 expr = build_call_array_loc (input_location,
1360 TREE_TYPE (TREE_TYPE
1361 (TREE_TYPE (fn))),
1362 fn,
1363 aggr_init_expr_nargs (init),
1364 AGGR_INIT_EXPR_ARGP (init));
1365 }
1366 }
1367 maybe_warn_nodiscard (expr, implicit);
1368 break;
1369
1370 default:;
1371 }
1372 expr = resolve_nondeduced_context (expr, complain);
1373 {
1374 tree probe = expr;
1375
1376 if (TREE_CODE (probe) == ADDR_EXPR)
1377 probe = TREE_OPERAND (expr, 0);
1378 if (type_unknown_p (probe))
1379 {
1380 /* [over.over] enumerates the places where we can take the address
1381 of an overloaded function, and this is not one of them. */
1382 if (complain & tf_error)
1383 switch (implicit)
1384 {
1385 case ICV_CAST:
1386 error_at (loc, "conversion to void "
1387 "cannot resolve address of overloaded function");
1388 break;
1389 case ICV_SECOND_OF_COND:
1390 error_at (loc, "second operand of conditional expression "
1391 "cannot resolve address of overloaded function");
1392 break;
1393 case ICV_THIRD_OF_COND:
1394 error_at (loc, "third operand of conditional expression "
1395 "cannot resolve address of overloaded function");
1396 break;
1397 case ICV_RIGHT_OF_COMMA:
1398 error_at (loc, "right operand of comma operator "
1399 "cannot resolve address of overloaded function");
1400 break;
1401 case ICV_LEFT_OF_COMMA:
1402 error_at (loc, "left operand of comma operator "
1403 "cannot resolve address of overloaded function");
1404 break;
1405 case ICV_STATEMENT:
1406 error_at (loc, "statement "
1407 "cannot resolve address of overloaded function");
1408 break;
1409 case ICV_THIRD_IN_FOR:
1410 error_at (loc, "for increment expression "
1411 "cannot resolve address of overloaded function");
1412 break;
1413 }
1414 else
1415 return error_mark_node;
1416 expr = void_node;
1417 }
1418 else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1419 {
1420 /* Only warn when there is no &. */
1421 if (complain & tf_warning)
1422 switch (implicit)
1423 {
1424 case ICV_SECOND_OF_COND:
1425 warning_at (loc, OPT_Waddress,
1426 "second operand of conditional expression "
1427 "is a reference, not call, to function %qE", expr);
1428 break;
1429 case ICV_THIRD_OF_COND:
1430 warning_at (loc, OPT_Waddress,
1431 "third operand of conditional expression "
1432 "is a reference, not call, to function %qE", expr);
1433 break;
1434 case ICV_RIGHT_OF_COMMA:
1435 warning_at (loc, OPT_Waddress,
1436 "right operand of comma operator "
1437 "is a reference, not call, to function %qE", expr);
1438 break;
1439 case ICV_LEFT_OF_COMMA:
1440 warning_at (loc, OPT_Waddress,
1441 "left operand of comma operator "
1442 "is a reference, not call, to function %qE", expr);
1443 break;
1444 case ICV_STATEMENT:
1445 warning_at (loc, OPT_Waddress,
1446 "statement is a reference, not call, to function %qE",
1447 expr);
1448 break;
1449 case ICV_THIRD_IN_FOR:
1450 warning_at (loc, OPT_Waddress,
1451 "for increment expression "
1452 "is a reference, not call, to function %qE", expr);
1453 break;
1454 default:
1455 gcc_unreachable ();
1456 }
1457
1458 if (TREE_CODE (expr) == COMPONENT_REF)
1459 expr = TREE_OPERAND (expr, 0);
1460 }
1461 }
1462
1463 if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1464 {
1465 if (implicit != ICV_CAST
1466 && warn_unused_value
1467 && !TREE_NO_WARNING (expr)
1468 && !processing_template_decl)
1469 {
1470 /* The middle end does not warn about expressions that have
1471 been explicitly cast to void, so we must do so here. */
1472 if (!TREE_SIDE_EFFECTS (expr)) {
1473 if (complain & tf_warning)
1474 switch (implicit)
1475 {
1476 case ICV_SECOND_OF_COND:
1477 warning_at (loc, OPT_Wunused_value,
1478 "second operand of conditional expression "
1479 "has no effect");
1480 break;
1481 case ICV_THIRD_OF_COND:
1482 warning_at (loc, OPT_Wunused_value,
1483 "third operand of conditional expression "
1484 "has no effect");
1485 break;
1486 case ICV_RIGHT_OF_COMMA:
1487 warning_at (loc, OPT_Wunused_value,
1488 "right operand of comma operator has no effect");
1489 break;
1490 case ICV_LEFT_OF_COMMA:
1491 warning_at (loc, OPT_Wunused_value,
1492 "left operand of comma operator has no effect");
1493 break;
1494 case ICV_STATEMENT:
1495 warning_at (loc, OPT_Wunused_value,
1496 "statement has no effect");
1497 break;
1498 case ICV_THIRD_IN_FOR:
1499 warning_at (loc, OPT_Wunused_value,
1500 "for increment expression has no effect");
1501 break;
1502 default:
1503 gcc_unreachable ();
1504 }
1505 }
1506 else
1507 {
1508 tree e;
1509 enum tree_code code;
1510 enum tree_code_class tclass;
1511
1512 e = expr;
1513 /* We might like to warn about (say) "(int) f()", as the
1514 cast has no effect, but the compiler itself will
1515 generate implicit conversions under some
1516 circumstances. (For example a block copy will be
1517 turned into a call to "__builtin_memcpy", with a
1518 conversion of the return value to an appropriate
1519 type.) So, to avoid false positives, we strip
1520 conversions. Do not use STRIP_NOPs because it will
1521 not strip conversions to "void", as that is not a
1522 mode-preserving conversion. */
1523 while (TREE_CODE (e) == NOP_EXPR)
1524 e = TREE_OPERAND (e, 0);
1525
1526 code = TREE_CODE (e);
1527 tclass = TREE_CODE_CLASS (code);
1528 if ((tclass == tcc_comparison
1529 || tclass == tcc_unary
1530 || (tclass == tcc_binary
1531 && !(code == MODIFY_EXPR
1532 || code == INIT_EXPR
1533 || code == PREDECREMENT_EXPR
1534 || code == PREINCREMENT_EXPR
1535 || code == POSTDECREMENT_EXPR
1536 || code == POSTINCREMENT_EXPR))
1537 || code == VEC_PERM_EXPR
1538 || code == VEC_COND_EXPR)
1539 && (complain & tf_warning))
1540 warning_at (loc, OPT_Wunused_value, "value computed is not used");
1541 }
1542 }
1543 expr = build1 (CONVERT_EXPR, void_type_node, expr);
1544 }
1545 if (! TREE_SIDE_EFFECTS (expr))
1546 expr = void_node;
1547 return expr;
1548 }
1549
1550 /* Create an expression whose value is that of EXPR,
1551 converted to type TYPE. The TREE_TYPE of the value
1552 is always TYPE. This function implements all reasonable
1553 conversions; callers should filter out those that are
1554 not permitted by the language being compiled.
1555
1556 Most of this routine is from build_reinterpret_cast.
1557
1558 The back end cannot call cp_convert (what was convert) because
1559 conversions to/from basetypes may involve memory references
1560 (vbases) and adding or subtracting small values (multiple
1561 inheritance), but it calls convert from the constant folding code
1562 on subtrees of already built trees after it has ripped them apart.
1563
1564 Also, if we ever support range variables, we'll probably also have to
1565 do a little bit more work. */
1566
1567 tree
1568 convert (tree type, tree expr)
1569 {
1570 tree intype;
1571
1572 if (type == error_mark_node || expr == error_mark_node)
1573 return error_mark_node;
1574
1575 intype = TREE_TYPE (expr);
1576
1577 if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1578 return build_nop (type, expr);
1579
1580 return ocp_convert (type, expr, CONV_BACKEND_CONVERT,
1581 LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
1582 tf_warning_or_error);
1583 }
1584
1585 /* Like cp_convert, except permit conversions to take place which
1586 are not normally allowed due to access restrictions
1587 (such as conversion from sub-type to private super-type). */
1588
1589 tree
1590 convert_force (tree type, tree expr, int convtype, tsubst_flags_t complain)
1591 {
1592 tree e = expr;
1593 enum tree_code code = TREE_CODE (type);
1594
1595 if (code == REFERENCE_TYPE)
1596 return convert_to_reference (type, e, CONV_C_CAST, 0,
1597 NULL_TREE, complain);
1598
1599 if (code == POINTER_TYPE)
1600 return convert_to_pointer_force (type, e, complain);
1601
1602 /* From typeck.c convert_for_assignment */
1603 if (((TYPE_PTR_P (TREE_TYPE (e)) && TREE_CODE (e) == ADDR_EXPR
1604 && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1605 || integer_zerop (e)
1606 || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1607 && TYPE_PTRMEMFUNC_P (type))
1608 /* compatible pointer to member functions. */
1609 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1610 /*c_cast_p=*/1, complain);
1611
1612 return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL, complain);
1613 }
1614
1615 /* Convert an aggregate EXPR to type XTYPE. If a conversion
1616 exists, return the attempted conversion. This may
1617 return ERROR_MARK_NODE if the conversion is not
1618 allowed (references private members, etc).
1619 If no conversion exists, NULL_TREE is returned.
1620
1621 FIXME: Ambiguity checking is wrong. Should choose one by the implicit
1622 object parameter, or by the second standard conversion sequence if
1623 that doesn't do it. This will probably wait for an overloading rewrite.
1624 (jason 8/9/95) */
1625
1626 static tree
1627 build_type_conversion (tree xtype, tree expr)
1628 {
1629 /* C++: check to see if we can convert this aggregate type
1630 into the required type. */
1631 return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL,
1632 tf_warning_or_error);
1633 }
1634
1635 /* Convert the given EXPR to one of a group of types suitable for use in an
1636 expression. DESIRES is a combination of various WANT_* flags (q.v.)
1637 which indicates which types are suitable. If COMPLAIN is true, complain
1638 about ambiguity; otherwise, the caller will deal with it. */
1639
1640 tree
1641 build_expr_type_conversion (int desires, tree expr, bool complain)
1642 {
1643 tree basetype = TREE_TYPE (expr);
1644 tree conv = NULL_TREE;
1645 tree winner = NULL_TREE;
1646
1647 if (expr == null_node
1648 && (desires & WANT_INT)
1649 && !(desires & WANT_NULL))
1650 {
1651 source_location loc =
1652 expansion_point_location_if_in_system_header (input_location);
1653
1654 warning_at (loc, OPT_Wconversion_null,
1655 "converting NULL to non-pointer type");
1656 }
1657
1658 if (basetype == error_mark_node)
1659 return error_mark_node;
1660
1661 if (! MAYBE_CLASS_TYPE_P (basetype))
1662 switch (TREE_CODE (basetype))
1663 {
1664 case INTEGER_TYPE:
1665 if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1666 return expr;
1667 /* fall through. */
1668
1669 case BOOLEAN_TYPE:
1670 return (desires & WANT_INT) ? expr : NULL_TREE;
1671 case ENUMERAL_TYPE:
1672 return (desires & WANT_ENUM) ? expr : NULL_TREE;
1673 case REAL_TYPE:
1674 return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1675 case POINTER_TYPE:
1676 return (desires & WANT_POINTER) ? expr : NULL_TREE;
1677
1678 case FUNCTION_TYPE:
1679 case ARRAY_TYPE:
1680 return (desires & WANT_POINTER) ? decay_conversion (expr,
1681 tf_warning_or_error)
1682 : NULL_TREE;
1683
1684 case COMPLEX_TYPE:
1685 case VECTOR_TYPE:
1686 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1687 return NULL_TREE;
1688 switch (TREE_CODE (TREE_TYPE (basetype)))
1689 {
1690 case INTEGER_TYPE:
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 default:
1698 return NULL_TREE;
1699 }
1700
1701 default:
1702 return NULL_TREE;
1703 }
1704
1705 /* The code for conversions from class type is currently only used for
1706 delete expressions. Other expressions are handled by build_new_op. */
1707 if (!complete_type_or_maybe_complain (basetype, expr, complain))
1708 return error_mark_node;
1709 if (!TYPE_HAS_CONVERSION (basetype))
1710 return NULL_TREE;
1711
1712 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1713 {
1714 int win = 0;
1715 tree candidate;
1716 tree cand = TREE_VALUE (conv);
1717 cand = OVL_CURRENT (cand);
1718
1719 if (winner && winner == cand)
1720 continue;
1721
1722 if (DECL_NONCONVERTING_P (cand))
1723 continue;
1724
1725 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1726
1727 switch (TREE_CODE (candidate))
1728 {
1729 case BOOLEAN_TYPE:
1730 case INTEGER_TYPE:
1731 win = (desires & WANT_INT); break;
1732 case ENUMERAL_TYPE:
1733 win = (desires & WANT_ENUM); break;
1734 case REAL_TYPE:
1735 win = (desires & WANT_FLOAT); break;
1736 case POINTER_TYPE:
1737 win = (desires & WANT_POINTER); break;
1738
1739 case COMPLEX_TYPE:
1740 case VECTOR_TYPE:
1741 if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1742 break;
1743 switch (TREE_CODE (TREE_TYPE (candidate)))
1744 {
1745 case BOOLEAN_TYPE:
1746 case INTEGER_TYPE:
1747 win = (desires & WANT_INT); break;
1748 case ENUMERAL_TYPE:
1749 win = (desires & WANT_ENUM); break;
1750 case REAL_TYPE:
1751 win = (desires & WANT_FLOAT); break;
1752 default:
1753 break;
1754 }
1755 break;
1756
1757 default:
1758 /* A wildcard could be instantiated to match any desired
1759 type, but we can't deduce the template argument. */
1760 if (WILDCARD_TYPE_P (candidate))
1761 win = true;
1762 break;
1763 }
1764
1765 if (win)
1766 {
1767 if (TREE_CODE (cand) == TEMPLATE_DECL)
1768 {
1769 if (complain)
1770 error ("default type conversion can't deduce template"
1771 " argument for %qD", cand);
1772 return error_mark_node;
1773 }
1774
1775 if (winner)
1776 {
1777 tree winner_type
1778 = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1779
1780 if (!same_type_ignoring_top_level_qualifiers_p (winner_type,
1781 candidate))
1782 {
1783 if (complain)
1784 {
1785 error ("ambiguous default type conversion from %qT",
1786 basetype);
1787 inform (input_location,
1788 " candidate conversions include %qD and %qD",
1789 winner, cand);
1790 }
1791 return error_mark_node;
1792 }
1793 }
1794
1795 winner = cand;
1796 }
1797 }
1798
1799 if (winner)
1800 {
1801 tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1802 return build_user_type_conversion (type, expr, LOOKUP_NORMAL,
1803 tf_warning_or_error);
1804 }
1805
1806 return NULL_TREE;
1807 }
1808
1809 /* Implements integral promotion (4.1) and float->double promotion. */
1810
1811 tree
1812 type_promotes_to (tree type)
1813 {
1814 tree promoted_type;
1815
1816 if (type == error_mark_node)
1817 return error_mark_node;
1818
1819 type = TYPE_MAIN_VARIANT (type);
1820
1821 /* Check for promotions of target-defined types first. */
1822 promoted_type = targetm.promoted_type (type);
1823 if (promoted_type)
1824 return promoted_type;
1825
1826 /* bool always promotes to int (not unsigned), even if it's the same
1827 size. */
1828 if (TREE_CODE (type) == BOOLEAN_TYPE)
1829 type = integer_type_node;
1830
1831 /* Normally convert enums to int, but convert wide enums to something
1832 wider. Scoped enums don't promote, but pretend they do for backward
1833 ABI bug compatibility wrt varargs. */
1834 else if (TREE_CODE (type) == ENUMERAL_TYPE
1835 || type == char16_type_node
1836 || type == char32_type_node
1837 || type == wchar_type_node)
1838 {
1839 int precision = MAX (TYPE_PRECISION (type),
1840 TYPE_PRECISION (integer_type_node));
1841 tree totype = c_common_type_for_size (precision, 0);
1842 tree prom = type;
1843 if (TREE_CODE (prom) == ENUMERAL_TYPE)
1844 prom = ENUM_UNDERLYING_TYPE (prom);
1845 if (TYPE_UNSIGNED (prom)
1846 && ! int_fits_type_p (TYPE_MAX_VALUE (prom), totype))
1847 prom = c_common_type_for_size (precision, 1);
1848 else
1849 prom = totype;
1850 if (SCOPED_ENUM_P (type))
1851 {
1852 if (abi_version_crosses (6)
1853 && TYPE_MODE (prom) != TYPE_MODE (type))
1854 warning (OPT_Wabi, "scoped enum %qT passed through ... as "
1855 "%qT before -fabi-version=6, %qT after",
1856 type, prom, ENUM_UNDERLYING_TYPE (type));
1857 if (!abi_version_at_least (6))
1858 type = prom;
1859 }
1860 else
1861 type = prom;
1862 }
1863 else if (c_promoting_integer_type_p (type))
1864 {
1865 /* Retain unsignedness if really not getting bigger. */
1866 if (TYPE_UNSIGNED (type)
1867 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1868 type = unsigned_type_node;
1869 else
1870 type = integer_type_node;
1871 }
1872 else if (type == float_type_node)
1873 type = double_type_node;
1874
1875 return type;
1876 }
1877
1878 /* The routines below this point are carefully written to conform to
1879 the standard. They use the same terminology, and follow the rules
1880 closely. Although they are used only in pt.c at the moment, they
1881 should presumably be used everywhere in the future. */
1882
1883 /* Attempt to perform qualification conversions on EXPR to convert it
1884 to TYPE. Return the resulting expression, or error_mark_node if
1885 the conversion was impossible. */
1886
1887 tree
1888 perform_qualification_conversions (tree type, tree expr)
1889 {
1890 tree expr_type;
1891
1892 expr_type = TREE_TYPE (expr);
1893
1894 if (same_type_p (type, expr_type))
1895 return expr;
1896 else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1897 && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1898 return build_nop (type, expr);
1899 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (expr_type)
1900 && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1901 TYPE_PTRMEM_CLASS_TYPE (expr_type))
1902 && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1903 TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1904 return build_nop (type, expr);
1905 else
1906 return error_mark_node;
1907 }
1908
1909 /* True iff T is a transaction-safe function type. */
1910
1911 bool
1912 tx_safe_fn_type_p (tree t)
1913 {
1914 if (TREE_CODE (t) != FUNCTION_TYPE
1915 && TREE_CODE (t) != METHOD_TYPE)
1916 return false;
1917 return !!lookup_attribute ("transaction_safe", TYPE_ATTRIBUTES (t));
1918 }
1919
1920 /* Return the transaction-unsafe variant of transaction-safe function type
1921 T. */
1922
1923 tree
1924 tx_unsafe_fn_variant (tree t)
1925 {
1926 gcc_assert (tx_safe_fn_type_p (t));
1927 tree attrs = remove_attribute ("transaction_safe",
1928 TYPE_ATTRIBUTES (t));
1929 return cp_build_type_attribute_variant (t, attrs);
1930 }
1931
1932 /* Return true iff FROM can convert to TO by a transaction-safety
1933 conversion. */
1934
1935 static bool
1936 can_convert_tx_safety (tree to, tree from)
1937 {
1938 return (flag_tm && tx_safe_fn_type_p (from)
1939 && same_type_p (to, tx_unsafe_fn_variant (from)));
1940 }
1941
1942 /* Return true iff FROM can convert to TO by dropping noexcept. */
1943
1944 static bool
1945 noexcept_conv_p (tree to, tree from)
1946 {
1947 if (!flag_noexcept_type)
1948 return false;
1949
1950 tree t = non_reference (to);
1951 tree f = from;
1952 if (TYPE_PTRMEMFUNC_P (t)
1953 && TYPE_PTRMEMFUNC_P (f))
1954 {
1955 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
1956 f = TYPE_PTRMEMFUNC_FN_TYPE (f);
1957 }
1958 if (TREE_CODE (t) == POINTER_TYPE
1959 && TREE_CODE (f) == POINTER_TYPE)
1960 {
1961 t = TREE_TYPE (t);
1962 f = TREE_TYPE (f);
1963 }
1964 tree_code code = TREE_CODE (f);
1965 if (TREE_CODE (t) != code)
1966 return false;
1967 if (code != FUNCTION_TYPE && code != METHOD_TYPE)
1968 return false;
1969 if (!type_throw_all_p (t)
1970 || type_throw_all_p (f))
1971 return false;
1972 tree v = build_exception_variant (f, NULL_TREE);
1973 return same_type_p (t, v);
1974 }
1975
1976 /* Return true iff FROM can convert to TO by a function pointer conversion. */
1977
1978 bool
1979 fnptr_conv_p (tree to, tree from)
1980 {
1981 tree t = non_reference (to);
1982 tree f = from;
1983 if (TYPE_PTRMEMFUNC_P (t)
1984 && TYPE_PTRMEMFUNC_P (f))
1985 {
1986 t = TYPE_PTRMEMFUNC_FN_TYPE (t);
1987 f = TYPE_PTRMEMFUNC_FN_TYPE (f);
1988 }
1989 if (TREE_CODE (t) == POINTER_TYPE
1990 && TREE_CODE (f) == POINTER_TYPE)
1991 {
1992 t = TREE_TYPE (t);
1993 f = TREE_TYPE (f);
1994 }
1995
1996 return (noexcept_conv_p (t, f)
1997 || can_convert_tx_safety (t, f));
1998 }
1999
2000 /* Return FN with any NOP_EXPRs that represent function pointer
2001 conversions stripped. */
2002
2003 tree
2004 strip_fnptr_conv (tree fn)
2005 {
2006 while (TREE_CODE (fn) == NOP_EXPR)
2007 {
2008 tree op = TREE_OPERAND (fn, 0);
2009 if (fnptr_conv_p (TREE_TYPE (fn), TREE_TYPE (op)))
2010 fn = op;
2011 else
2012 break;
2013 }
2014 return fn;
2015 }