* tree.c (cp_expr_location): New.
[official-gcc.git] / gcc / cp / typeck.c
blob936de9fe5c6cf890577e0a07a5b2e499b42d84cd
1 /* Build expressions with type checking for C++ compiler.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* This file is part of the C++ front end.
23 It contains routines to build C++ expressions given their operands,
24 including computing the types of the result, C and C++ specific error
25 checks, and some optimization. */
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 "varasm.h"
34 #include "intl.h"
35 #include "convert.h"
36 #include "c-family/c-objc.h"
37 #include "c-family/c-ubsan.h"
38 #include "params.h"
39 #include "gcc-rich-location.h"
40 #include "stringpool.h"
41 #include "attribs.h"
42 #include "asan.h"
44 static tree cp_build_addr_expr_strict (tree, tsubst_flags_t);
45 static tree cp_build_function_call (tree, tree, tsubst_flags_t);
46 static tree pfn_from_ptrmemfunc (tree);
47 static tree delta_from_ptrmemfunc (tree);
48 static tree convert_for_assignment (tree, tree, impl_conv_rhs, tree, int,
49 tsubst_flags_t, int);
50 static tree cp_pointer_int_sum (location_t, enum tree_code, tree, tree,
51 tsubst_flags_t);
52 static tree rationalize_conditional_expr (enum tree_code, tree,
53 tsubst_flags_t);
54 static int comp_ptr_ttypes_real (tree, tree, int);
55 static bool comp_except_types (tree, tree, bool);
56 static bool comp_array_types (const_tree, const_tree, bool);
57 static tree pointer_diff (location_t, tree, tree, tree, tsubst_flags_t, tree *);
58 static tree get_delta_difference (tree, tree, bool, bool, tsubst_flags_t);
59 static void casts_away_constness_r (tree *, tree *, tsubst_flags_t);
60 static bool casts_away_constness (tree, tree, tsubst_flags_t);
61 static bool maybe_warn_about_returning_address_of_local (tree);
62 static tree lookup_destructor (tree, tree, tree, tsubst_flags_t);
63 static void error_args_num (location_t, tree, bool);
64 static int convert_arguments (tree, vec<tree, va_gc> **, tree, int,
65 tsubst_flags_t);
67 /* Do `exp = require_complete_type (exp);' to make sure exp
68 does not have an incomplete type. (That includes void types.)
69 Returns error_mark_node if the VALUE does not have
70 complete type when this function returns. */
72 tree
73 require_complete_type_sfinae (tree value, tsubst_flags_t complain)
75 tree type;
77 if (processing_template_decl || value == error_mark_node)
78 return value;
80 if (TREE_CODE (value) == OVERLOAD)
81 type = unknown_type_node;
82 else
83 type = TREE_TYPE (value);
85 if (type == error_mark_node)
86 return error_mark_node;
88 /* First, detect a valid value with a complete type. */
89 if (COMPLETE_TYPE_P (type))
90 return value;
92 if (complete_type_or_maybe_complain (type, value, complain))
93 return value;
94 else
95 return error_mark_node;
98 tree
99 require_complete_type (tree value)
101 return require_complete_type_sfinae (value, tf_warning_or_error);
104 /* Try to complete TYPE, if it is incomplete. For example, if TYPE is
105 a template instantiation, do the instantiation. Returns TYPE,
106 whether or not it could be completed, unless something goes
107 horribly wrong, in which case the error_mark_node is returned. */
109 tree
110 complete_type (tree type)
112 if (type == NULL_TREE)
113 /* Rather than crash, we return something sure to cause an error
114 at some point. */
115 return error_mark_node;
117 if (type == error_mark_node || COMPLETE_TYPE_P (type))
119 else if (TREE_CODE (type) == ARRAY_TYPE)
121 tree t = complete_type (TREE_TYPE (type));
122 unsigned int needs_constructing, has_nontrivial_dtor;
123 if (COMPLETE_TYPE_P (t) && !dependent_type_p (type))
124 layout_type (type);
125 needs_constructing
126 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
127 has_nontrivial_dtor
128 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
129 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
131 TYPE_NEEDS_CONSTRUCTING (t) = needs_constructing;
132 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = has_nontrivial_dtor;
135 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
136 instantiate_class_template (TYPE_MAIN_VARIANT (type));
138 return type;
141 /* Like complete_type, but issue an error if the TYPE cannot be completed.
142 VALUE is used for informative diagnostics.
143 Returns NULL_TREE if the type cannot be made complete. */
145 tree
146 complete_type_or_maybe_complain (tree type, tree value, tsubst_flags_t complain)
148 type = complete_type (type);
149 if (type == error_mark_node)
150 /* We already issued an error. */
151 return NULL_TREE;
152 else if (!COMPLETE_TYPE_P (type))
154 if (complain & tf_error)
155 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
156 return NULL_TREE;
158 else
159 return type;
162 tree
163 complete_type_or_else (tree type, tree value)
165 return complete_type_or_maybe_complain (type, value, tf_warning_or_error);
169 /* Return the common type of two parameter lists.
170 We assume that comptypes has already been done and returned 1;
171 if that isn't so, this may crash.
173 As an optimization, free the space we allocate if the parameter
174 lists are already common. */
176 static tree
177 commonparms (tree p1, tree p2)
179 tree oldargs = p1, newargs, n;
180 int i, len;
181 int any_change = 0;
183 len = list_length (p1);
184 newargs = tree_last (p1);
186 if (newargs == void_list_node)
187 i = 1;
188 else
190 i = 0;
191 newargs = 0;
194 for (; i < len; i++)
195 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
197 n = newargs;
199 for (i = 0; p1;
200 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
202 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
204 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
205 any_change = 1;
207 else if (! TREE_PURPOSE (p1))
209 if (TREE_PURPOSE (p2))
211 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
212 any_change = 1;
215 else
217 if (simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)) != 1)
218 any_change = 1;
219 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
221 if (TREE_VALUE (p1) != TREE_VALUE (p2))
223 any_change = 1;
224 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
226 else
227 TREE_VALUE (n) = TREE_VALUE (p1);
229 if (! any_change)
230 return oldargs;
232 return newargs;
235 /* Given a type, perhaps copied for a typedef,
236 find the "original" version of it. */
237 static tree
238 original_type (tree t)
240 int quals = cp_type_quals (t);
241 while (t != error_mark_node
242 && TYPE_NAME (t) != NULL_TREE)
244 tree x = TYPE_NAME (t);
245 if (TREE_CODE (x) != TYPE_DECL)
246 break;
247 x = DECL_ORIGINAL_TYPE (x);
248 if (x == NULL_TREE)
249 break;
250 t = x;
252 return cp_build_qualified_type (t, quals);
255 /* Return the common type for two arithmetic types T1 and T2 under the
256 usual arithmetic conversions. The default conversions have already
257 been applied, and enumerated types converted to their compatible
258 integer types. */
260 static tree
261 cp_common_type (tree t1, tree t2)
263 enum tree_code code1 = TREE_CODE (t1);
264 enum tree_code code2 = TREE_CODE (t2);
265 tree attributes;
266 int i;
269 /* In what follows, we slightly generalize the rules given in [expr] so
270 as to deal with `long long' and `complex'. First, merge the
271 attributes. */
272 attributes = (*targetm.merge_type_attributes) (t1, t2);
274 if (SCOPED_ENUM_P (t1) || SCOPED_ENUM_P (t2))
276 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
277 return build_type_attribute_variant (t1, attributes);
278 else
279 return NULL_TREE;
282 /* FIXME: Attributes. */
283 gcc_assert (ARITHMETIC_TYPE_P (t1)
284 || VECTOR_TYPE_P (t1)
285 || UNSCOPED_ENUM_P (t1));
286 gcc_assert (ARITHMETIC_TYPE_P (t2)
287 || VECTOR_TYPE_P (t2)
288 || UNSCOPED_ENUM_P (t2));
290 /* If one type is complex, form the common type of the non-complex
291 components, then make that complex. Use T1 or T2 if it is the
292 required type. */
293 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
295 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
296 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
297 tree subtype
298 = type_after_usual_arithmetic_conversions (subtype1, subtype2);
300 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
301 return build_type_attribute_variant (t1, attributes);
302 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
303 return build_type_attribute_variant (t2, attributes);
304 else
305 return build_type_attribute_variant (build_complex_type (subtype),
306 attributes);
309 if (code1 == VECTOR_TYPE)
311 /* When we get here we should have two vectors of the same size.
312 Just prefer the unsigned one if present. */
313 if (TYPE_UNSIGNED (t1))
314 return build_type_attribute_variant (t1, attributes);
315 else
316 return build_type_attribute_variant (t2, attributes);
319 /* If only one is real, use it as the result. */
320 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
321 return build_type_attribute_variant (t1, attributes);
322 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
323 return build_type_attribute_variant (t2, attributes);
325 /* Both real or both integers; use the one with greater precision. */
326 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
327 return build_type_attribute_variant (t1, attributes);
328 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
329 return build_type_attribute_variant (t2, attributes);
331 /* The types are the same; no need to do anything fancy. */
332 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
333 return build_type_attribute_variant (t1, attributes);
335 if (code1 != REAL_TYPE)
337 /* If one is unsigned long long, then convert the other to unsigned
338 long long. */
339 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_unsigned_type_node)
340 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_unsigned_type_node))
341 return build_type_attribute_variant (long_long_unsigned_type_node,
342 attributes);
343 /* If one is a long long, and the other is an unsigned long, and
344 long long can represent all the values of an unsigned long, then
345 convert to a long long. Otherwise, convert to an unsigned long
346 long. Otherwise, if either operand is long long, convert the
347 other to long long.
349 Since we're here, we know the TYPE_PRECISION is the same;
350 therefore converting to long long cannot represent all the values
351 of an unsigned long, so we choose unsigned long long in that
352 case. */
353 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_integer_type_node)
354 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_integer_type_node))
356 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
357 ? long_long_unsigned_type_node
358 : long_long_integer_type_node);
359 return build_type_attribute_variant (t, attributes);
362 /* Go through the same procedure, but for longs. */
363 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_unsigned_type_node)
364 || same_type_p (TYPE_MAIN_VARIANT (t2), long_unsigned_type_node))
365 return build_type_attribute_variant (long_unsigned_type_node,
366 attributes);
367 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_integer_type_node)
368 || same_type_p (TYPE_MAIN_VARIANT (t2), long_integer_type_node))
370 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
371 ? long_unsigned_type_node : long_integer_type_node);
372 return build_type_attribute_variant (t, attributes);
375 /* For __intN types, either the type is __int128 (and is lower
376 priority than the types checked above, but higher than other
377 128-bit types) or it's known to not be the same size as other
378 types (enforced in toplev.c). Prefer the unsigned type. */
379 for (i = 0; i < NUM_INT_N_ENTS; i ++)
381 if (int_n_enabled_p [i]
382 && (same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].signed_type)
383 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].signed_type)
384 || same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].unsigned_type)
385 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].unsigned_type)))
387 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
388 ? int_n_trees[i].unsigned_type
389 : int_n_trees[i].signed_type);
390 return build_type_attribute_variant (t, attributes);
394 /* Otherwise prefer the unsigned one. */
395 if (TYPE_UNSIGNED (t1))
396 return build_type_attribute_variant (t1, attributes);
397 else
398 return build_type_attribute_variant (t2, attributes);
400 else
402 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_double_type_node)
403 || same_type_p (TYPE_MAIN_VARIANT (t2), long_double_type_node))
404 return build_type_attribute_variant (long_double_type_node,
405 attributes);
406 if (same_type_p (TYPE_MAIN_VARIANT (t1), double_type_node)
407 || same_type_p (TYPE_MAIN_VARIANT (t2), double_type_node))
408 return build_type_attribute_variant (double_type_node,
409 attributes);
410 if (same_type_p (TYPE_MAIN_VARIANT (t1), float_type_node)
411 || same_type_p (TYPE_MAIN_VARIANT (t2), float_type_node))
412 return build_type_attribute_variant (float_type_node,
413 attributes);
415 /* Two floating-point types whose TYPE_MAIN_VARIANTs are none of
416 the standard C++ floating-point types. Logic earlier in this
417 function has already eliminated the possibility that
418 TYPE_PRECISION (t2) != TYPE_PRECISION (t1), so there's no
419 compelling reason to choose one or the other. */
420 return build_type_attribute_variant (t1, attributes);
424 /* T1 and T2 are arithmetic or enumeration types. Return the type
425 that will result from the "usual arithmetic conversions" on T1 and
426 T2 as described in [expr]. */
428 tree
429 type_after_usual_arithmetic_conversions (tree t1, tree t2)
431 gcc_assert (ARITHMETIC_TYPE_P (t1)
432 || VECTOR_TYPE_P (t1)
433 || UNSCOPED_ENUM_P (t1));
434 gcc_assert (ARITHMETIC_TYPE_P (t2)
435 || VECTOR_TYPE_P (t2)
436 || UNSCOPED_ENUM_P (t2));
438 /* Perform the integral promotions. We do not promote real types here. */
439 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t1)
440 && INTEGRAL_OR_ENUMERATION_TYPE_P (t2))
442 t1 = type_promotes_to (t1);
443 t2 = type_promotes_to (t2);
446 return cp_common_type (t1, t2);
449 static void
450 composite_pointer_error (diagnostic_t kind, tree t1, tree t2,
451 composite_pointer_operation operation)
453 switch (operation)
455 case CPO_COMPARISON:
456 emit_diagnostic (kind, input_location, 0,
457 "comparison between "
458 "distinct pointer types %qT and %qT lacks a cast",
459 t1, t2);
460 break;
461 case CPO_CONVERSION:
462 emit_diagnostic (kind, input_location, 0,
463 "conversion between "
464 "distinct pointer types %qT and %qT lacks a cast",
465 t1, t2);
466 break;
467 case CPO_CONDITIONAL_EXPR:
468 emit_diagnostic (kind, input_location, 0,
469 "conditional expression between "
470 "distinct pointer types %qT and %qT lacks a cast",
471 t1, t2);
472 break;
473 default:
474 gcc_unreachable ();
478 /* Subroutine of composite_pointer_type to implement the recursive
479 case. See that function for documentation of the parameters. */
481 static tree
482 composite_pointer_type_r (tree t1, tree t2,
483 composite_pointer_operation operation,
484 tsubst_flags_t complain)
486 tree pointee1;
487 tree pointee2;
488 tree result_type;
489 tree attributes;
491 /* Determine the types pointed to by T1 and T2. */
492 if (TYPE_PTR_P (t1))
494 pointee1 = TREE_TYPE (t1);
495 pointee2 = TREE_TYPE (t2);
497 else
499 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
500 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
503 /* [expr.rel]
505 Otherwise, the composite pointer type is a pointer type
506 similar (_conv.qual_) to the type of one of the operands,
507 with a cv-qualification signature (_conv.qual_) that is the
508 union of the cv-qualification signatures of the operand
509 types. */
510 if (same_type_ignoring_top_level_qualifiers_p (pointee1, pointee2))
511 result_type = pointee1;
512 else if ((TYPE_PTR_P (pointee1) && TYPE_PTR_P (pointee2))
513 || (TYPE_PTRMEM_P (pointee1) && TYPE_PTRMEM_P (pointee2)))
515 result_type = composite_pointer_type_r (pointee1, pointee2, operation,
516 complain);
517 if (result_type == error_mark_node)
518 return error_mark_node;
520 else
522 if (complain & tf_error)
523 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
524 else
525 return error_mark_node;
526 result_type = void_type_node;
528 result_type = cp_build_qualified_type (result_type,
529 (cp_type_quals (pointee1)
530 | cp_type_quals (pointee2)));
531 /* If the original types were pointers to members, so is the
532 result. */
533 if (TYPE_PTRMEM_P (t1))
535 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
536 TYPE_PTRMEM_CLASS_TYPE (t2)))
538 if (complain & tf_error)
539 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
540 else
541 return error_mark_node;
543 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
544 result_type);
546 else
547 result_type = build_pointer_type (result_type);
549 /* Merge the attributes. */
550 attributes = (*targetm.merge_type_attributes) (t1, t2);
551 return build_type_attribute_variant (result_type, attributes);
554 /* Return the composite pointer type (see [expr.rel]) for T1 and T2.
555 ARG1 and ARG2 are the values with those types. The OPERATION is to
556 describe the operation between the pointer types,
557 in case an error occurs.
559 This routine also implements the computation of a common type for
560 pointers-to-members as per [expr.eq]. */
562 tree
563 composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
564 composite_pointer_operation operation,
565 tsubst_flags_t complain)
567 tree class1;
568 tree class2;
570 /* [expr.rel]
572 If one operand is a null pointer constant, the composite pointer
573 type is the type of the other operand. */
574 if (null_ptr_cst_p (arg1))
575 return t2;
576 if (null_ptr_cst_p (arg2))
577 return t1;
579 /* We have:
581 [expr.rel]
583 If one of the operands has type "pointer to cv1 void*", then
584 the other has type "pointer to cv2T", and the composite pointer
585 type is "pointer to cv12 void", where cv12 is the union of cv1
586 and cv2.
588 If either type is a pointer to void, make sure it is T1. */
589 if (TYPE_PTR_P (t2) && VOID_TYPE_P (TREE_TYPE (t2)))
590 std::swap (t1, t2);
592 /* Now, if T1 is a pointer to void, merge the qualifiers. */
593 if (TYPE_PTR_P (t1) && VOID_TYPE_P (TREE_TYPE (t1)))
595 tree attributes;
596 tree result_type;
598 if (TYPE_PTRFN_P (t2))
600 if (complain & tf_error)
602 switch (operation)
604 case CPO_COMPARISON:
605 pedwarn (input_location, OPT_Wpedantic,
606 "ISO C++ forbids comparison between pointer "
607 "of type %<void *%> and pointer-to-function");
608 break;
609 case CPO_CONVERSION:
610 pedwarn (input_location, OPT_Wpedantic,
611 "ISO C++ forbids conversion between pointer "
612 "of type %<void *%> and pointer-to-function");
613 break;
614 case CPO_CONDITIONAL_EXPR:
615 pedwarn (input_location, OPT_Wpedantic,
616 "ISO C++ forbids conditional expression between "
617 "pointer of type %<void *%> and "
618 "pointer-to-function");
619 break;
620 default:
621 gcc_unreachable ();
624 else
625 return error_mark_node;
627 result_type
628 = cp_build_qualified_type (void_type_node,
629 (cp_type_quals (TREE_TYPE (t1))
630 | cp_type_quals (TREE_TYPE (t2))));
631 result_type = build_pointer_type (result_type);
632 /* Merge the attributes. */
633 attributes = (*targetm.merge_type_attributes) (t1, t2);
634 return build_type_attribute_variant (result_type, attributes);
637 if (c_dialect_objc () && TYPE_PTR_P (t1)
638 && TYPE_PTR_P (t2))
640 if (objc_have_common_type (t1, t2, -3, NULL_TREE))
641 return objc_common_type (t1, t2);
644 /* if T1 or T2 is "pointer to noexcept function" and the other type is
645 "pointer to function", where the function types are otherwise the same,
646 "pointer to function" */
647 if (fnptr_conv_p (t1, t2))
648 return t1;
649 if (fnptr_conv_p (t2, t1))
650 return t2;
652 /* [expr.eq] permits the application of a pointer conversion to
653 bring the pointers to a common type. */
654 if (TYPE_PTR_P (t1) && TYPE_PTR_P (t2)
655 && CLASS_TYPE_P (TREE_TYPE (t1))
656 && CLASS_TYPE_P (TREE_TYPE (t2))
657 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
658 TREE_TYPE (t2)))
660 class1 = TREE_TYPE (t1);
661 class2 = TREE_TYPE (t2);
663 if (DERIVED_FROM_P (class1, class2))
664 t2 = (build_pointer_type
665 (cp_build_qualified_type (class1, cp_type_quals (class2))));
666 else if (DERIVED_FROM_P (class2, class1))
667 t1 = (build_pointer_type
668 (cp_build_qualified_type (class2, cp_type_quals (class1))));
669 else
671 if (complain & tf_error)
672 composite_pointer_error (DK_ERROR, t1, t2, operation);
673 return error_mark_node;
676 /* [expr.eq] permits the application of a pointer-to-member
677 conversion to change the class type of one of the types. */
678 else if (TYPE_PTRMEM_P (t1)
679 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
680 TYPE_PTRMEM_CLASS_TYPE (t2)))
682 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
683 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
685 if (DERIVED_FROM_P (class1, class2))
686 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
687 else if (DERIVED_FROM_P (class2, class1))
688 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
689 else
691 if (complain & tf_error)
692 switch (operation)
694 case CPO_COMPARISON:
695 error ("comparison between distinct "
696 "pointer-to-member types %qT and %qT lacks a cast",
697 t1, t2);
698 break;
699 case CPO_CONVERSION:
700 error ("conversion between distinct "
701 "pointer-to-member types %qT and %qT lacks a cast",
702 t1, t2);
703 break;
704 case CPO_CONDITIONAL_EXPR:
705 error ("conditional expression between distinct "
706 "pointer-to-member types %qT and %qT lacks a cast",
707 t1, t2);
708 break;
709 default:
710 gcc_unreachable ();
712 return error_mark_node;
716 return composite_pointer_type_r (t1, t2, operation, complain);
719 /* Return the merged type of two types.
720 We assume that comptypes has already been done and returned 1;
721 if that isn't so, this may crash.
723 This just combines attributes and default arguments; any other
724 differences would cause the two types to compare unalike. */
726 tree
727 merge_types (tree t1, tree t2)
729 enum tree_code code1;
730 enum tree_code code2;
731 tree attributes;
733 /* Save time if the two types are the same. */
734 if (t1 == t2)
735 return t1;
736 if (original_type (t1) == original_type (t2))
737 return t1;
739 /* If one type is nonsense, use the other. */
740 if (t1 == error_mark_node)
741 return t2;
742 if (t2 == error_mark_node)
743 return t1;
745 /* Handle merging an auto redeclaration with a previous deduced
746 return type. */
747 if (is_auto (t1))
748 return t2;
750 /* Merge the attributes. */
751 attributes = (*targetm.merge_type_attributes) (t1, t2);
753 if (TYPE_PTRMEMFUNC_P (t1))
754 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
755 if (TYPE_PTRMEMFUNC_P (t2))
756 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
758 code1 = TREE_CODE (t1);
759 code2 = TREE_CODE (t2);
760 if (code1 != code2)
762 gcc_assert (code1 == TYPENAME_TYPE || code2 == TYPENAME_TYPE);
763 if (code1 == TYPENAME_TYPE)
765 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
766 code1 = TREE_CODE (t1);
768 else
770 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
771 code2 = TREE_CODE (t2);
775 switch (code1)
777 case POINTER_TYPE:
778 case REFERENCE_TYPE:
779 /* For two pointers, do this recursively on the target type. */
781 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
782 int quals = cp_type_quals (t1);
784 if (code1 == POINTER_TYPE)
786 t1 = build_pointer_type (target);
787 if (TREE_CODE (target) == METHOD_TYPE)
788 t1 = build_ptrmemfunc_type (t1);
790 else
791 t1 = cp_build_reference_type (target, TYPE_REF_IS_RVALUE (t1));
792 t1 = build_type_attribute_variant (t1, attributes);
793 t1 = cp_build_qualified_type (t1, quals);
795 return t1;
798 case OFFSET_TYPE:
800 int quals;
801 tree pointee;
802 quals = cp_type_quals (t1);
803 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
804 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
805 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
806 pointee);
807 t1 = cp_build_qualified_type (t1, quals);
808 break;
811 case ARRAY_TYPE:
813 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
814 /* Save space: see if the result is identical to one of the args. */
815 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
816 return build_type_attribute_variant (t1, attributes);
817 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
818 return build_type_attribute_variant (t2, attributes);
819 /* Merge the element types, and have a size if either arg has one. */
820 t1 = build_cplus_array_type
821 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
822 break;
825 case FUNCTION_TYPE:
826 /* Function types: prefer the one that specified arg types.
827 If both do, merge the arg types. Also merge the return types. */
829 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
830 tree p1 = TYPE_ARG_TYPES (t1);
831 tree p2 = TYPE_ARG_TYPES (t2);
832 tree parms;
834 /* Save space: see if the result is identical to one of the args. */
835 if (valtype == TREE_TYPE (t1) && ! p2)
836 return cp_build_type_attribute_variant (t1, attributes);
837 if (valtype == TREE_TYPE (t2) && ! p1)
838 return cp_build_type_attribute_variant (t2, attributes);
840 /* Simple way if one arg fails to specify argument types. */
841 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
842 parms = p2;
843 else if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
844 parms = p1;
845 else
846 parms = commonparms (p1, p2);
848 cp_cv_quals quals = type_memfn_quals (t1);
849 cp_ref_qualifier rqual = type_memfn_rqual (t1);
850 gcc_assert (quals == type_memfn_quals (t2));
851 gcc_assert (rqual == type_memfn_rqual (t2));
853 tree rval = build_function_type (valtype, parms);
854 rval = apply_memfn_quals (rval, quals);
855 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
856 TYPE_RAISES_EXCEPTIONS (t2));
857 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
858 t1 = build_cp_fntype_variant (rval, rqual, raises, late_return_type_p);
859 break;
862 case METHOD_TYPE:
864 /* Get this value the long way, since TYPE_METHOD_BASETYPE
865 is just the main variant of this. */
866 tree basetype = class_of_this_parm (t2);
867 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
868 TYPE_RAISES_EXCEPTIONS (t2));
869 cp_ref_qualifier rqual = type_memfn_rqual (t1);
870 tree t3;
871 bool late_return_type_1_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
873 /* If this was a member function type, get back to the
874 original type of type member function (i.e., without
875 the class instance variable up front. */
876 t1 = build_function_type (TREE_TYPE (t1),
877 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
878 t2 = build_function_type (TREE_TYPE (t2),
879 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
880 t3 = merge_types (t1, t2);
881 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
882 TYPE_ARG_TYPES (t3));
883 t1 = build_cp_fntype_variant (t3, rqual, raises, late_return_type_1_p);
884 break;
887 case TYPENAME_TYPE:
888 /* There is no need to merge attributes into a TYPENAME_TYPE.
889 When the type is instantiated it will have whatever
890 attributes result from the instantiation. */
891 return t1;
893 default:;
894 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
895 return t1;
896 else if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
897 return t2;
898 break;
901 return cp_build_type_attribute_variant (t1, attributes);
904 /* Return the ARRAY_TYPE type without its domain. */
906 tree
907 strip_array_domain (tree type)
909 tree t2;
910 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
911 if (TYPE_DOMAIN (type) == NULL_TREE)
912 return type;
913 t2 = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
914 return cp_build_type_attribute_variant (t2, TYPE_ATTRIBUTES (type));
917 /* Wrapper around cp_common_type that is used by c-common.c and other
918 front end optimizations that remove promotions.
920 Return the common type for two arithmetic types T1 and T2 under the
921 usual arithmetic conversions. The default conversions have already
922 been applied, and enumerated types converted to their compatible
923 integer types. */
925 tree
926 common_type (tree t1, tree t2)
928 /* If one type is nonsense, use the other */
929 if (t1 == error_mark_node)
930 return t2;
931 if (t2 == error_mark_node)
932 return t1;
934 return cp_common_type (t1, t2);
937 /* Return the common type of two pointer types T1 and T2. This is the
938 type for the result of most arithmetic operations if the operands
939 have the given two types.
941 We assume that comp_target_types has already been done and returned
942 nonzero; if that isn't so, this may crash. */
944 tree
945 common_pointer_type (tree t1, tree t2)
947 gcc_assert ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
948 || (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
949 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)));
951 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
952 CPO_CONVERSION, tf_warning_or_error);
955 /* Compare two exception specifier types for exactness or subsetness, if
956 allowed. Returns false for mismatch, true for match (same, or
957 derived and !exact).
959 [except.spec] "If a class X ... objects of class X or any class publicly
960 and unambiguously derived from X. Similarly, if a pointer type Y * ...
961 exceptions of type Y * or that are pointers to any type publicly and
962 unambiguously derived from Y. Otherwise a function only allows exceptions
963 that have the same type ..."
964 This does not mention cv qualifiers and is different to what throw
965 [except.throw] and catch [except.catch] will do. They will ignore the
966 top level cv qualifiers, and allow qualifiers in the pointer to class
967 example.
969 We implement the letter of the standard. */
971 static bool
972 comp_except_types (tree a, tree b, bool exact)
974 if (same_type_p (a, b))
975 return true;
976 else if (!exact)
978 if (cp_type_quals (a) || cp_type_quals (b))
979 return false;
981 if (TYPE_PTR_P (a) && TYPE_PTR_P (b))
983 a = TREE_TYPE (a);
984 b = TREE_TYPE (b);
985 if (cp_type_quals (a) || cp_type_quals (b))
986 return false;
989 if (TREE_CODE (a) != RECORD_TYPE
990 || TREE_CODE (b) != RECORD_TYPE)
991 return false;
993 if (publicly_uniquely_derived_p (a, b))
994 return true;
996 return false;
999 /* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
1000 If EXACT is ce_derived, T2 can be stricter than T1 (according to 15.4/5).
1001 If EXACT is ce_type, the C++17 type compatibility rules apply.
1002 If EXACT is ce_normal, the compatibility rules in 15.4/3 apply.
1003 If EXACT is ce_exact, the specs must be exactly the same. Exception lists
1004 are unordered, but we've already filtered out duplicates. Most lists will
1005 be in order, we should try to make use of that. */
1007 bool
1008 comp_except_specs (const_tree t1, const_tree t2, int exact)
1010 const_tree probe;
1011 const_tree base;
1012 int length = 0;
1014 if (t1 == t2)
1015 return true;
1017 /* First handle noexcept. */
1018 if (exact < ce_exact)
1020 if (exact == ce_type
1021 && (canonical_eh_spec (CONST_CAST_TREE (t1))
1022 == canonical_eh_spec (CONST_CAST_TREE (t2))))
1023 return true;
1025 /* noexcept(false) is compatible with no exception-specification,
1026 and less strict than any spec. */
1027 if (t1 == noexcept_false_spec)
1028 return t2 == NULL_TREE || exact == ce_derived;
1029 /* Even a derived noexcept(false) is compatible with no
1030 exception-specification. */
1031 if (t2 == noexcept_false_spec)
1032 return t1 == NULL_TREE;
1034 /* Otherwise, if we aren't looking for an exact match, noexcept is
1035 equivalent to throw(). */
1036 if (t1 == noexcept_true_spec)
1037 t1 = empty_except_spec;
1038 if (t2 == noexcept_true_spec)
1039 t2 = empty_except_spec;
1042 /* If any noexcept is left, it is only comparable to itself;
1043 either we're looking for an exact match or we're redeclaring a
1044 template with dependent noexcept. */
1045 if ((t1 && TREE_PURPOSE (t1))
1046 || (t2 && TREE_PURPOSE (t2)))
1047 return (t1 && t2
1048 && cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)));
1050 if (t1 == NULL_TREE) /* T1 is ... */
1051 return t2 == NULL_TREE || exact == ce_derived;
1052 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
1053 return t2 != NULL_TREE && !TREE_VALUE (t2);
1054 if (t2 == NULL_TREE) /* T2 is ... */
1055 return false;
1056 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
1057 return exact == ce_derived;
1059 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
1060 Count how many we find, to determine exactness. For exact matching and
1061 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
1062 O(nm). */
1063 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
1065 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
1067 tree a = TREE_VALUE (probe);
1068 tree b = TREE_VALUE (t2);
1070 if (comp_except_types (a, b, exact))
1072 if (probe == base && exact > ce_derived)
1073 base = TREE_CHAIN (probe);
1074 length++;
1075 break;
1078 if (probe == NULL_TREE)
1079 return false;
1081 return exact == ce_derived || base == NULL_TREE || length == list_length (t1);
1084 /* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
1085 [] can match [size]. */
1087 static bool
1088 comp_array_types (const_tree t1, const_tree t2, bool allow_redeclaration)
1090 tree d1;
1091 tree d2;
1092 tree max1, max2;
1094 if (t1 == t2)
1095 return true;
1097 /* The type of the array elements must be the same. */
1098 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1099 return false;
1101 d1 = TYPE_DOMAIN (t1);
1102 d2 = TYPE_DOMAIN (t2);
1104 if (d1 == d2)
1105 return true;
1107 /* If one of the arrays is dimensionless, and the other has a
1108 dimension, they are of different types. However, it is valid to
1109 write:
1111 extern int a[];
1112 int a[3];
1114 by [basic.link]:
1116 declarations for an array object can specify
1117 array types that differ by the presence or absence of a major
1118 array bound (_dcl.array_). */
1119 if (!d1 || !d2)
1120 return allow_redeclaration;
1122 /* Check that the dimensions are the same. */
1124 if (!cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2)))
1125 return false;
1126 max1 = TYPE_MAX_VALUE (d1);
1127 max2 = TYPE_MAX_VALUE (d2);
1129 if (!cp_tree_equal (max1, max2))
1130 return false;
1132 return true;
1135 /* Compare the relative position of T1 and T2 into their respective
1136 template parameter list.
1137 T1 and T2 must be template parameter types.
1138 Return TRUE if T1 and T2 have the same position, FALSE otherwise. */
1140 static bool
1141 comp_template_parms_position (tree t1, tree t2)
1143 tree index1, index2;
1144 gcc_assert (t1 && t2
1145 && TREE_CODE (t1) == TREE_CODE (t2)
1146 && (TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM
1147 || TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM
1148 || TREE_CODE (t1) == TEMPLATE_TYPE_PARM));
1150 index1 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t1));
1151 index2 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t2));
1153 /* Then compare their relative position. */
1154 if (TEMPLATE_PARM_IDX (index1) != TEMPLATE_PARM_IDX (index2)
1155 || TEMPLATE_PARM_LEVEL (index1) != TEMPLATE_PARM_LEVEL (index2)
1156 || (TEMPLATE_PARM_PARAMETER_PACK (index1)
1157 != TEMPLATE_PARM_PARAMETER_PACK (index2)))
1158 return false;
1160 /* In C++14 we can end up comparing 'auto' to a normal template
1161 parameter. Don't confuse them. */
1162 if (cxx_dialect >= cxx14 && (is_auto (t1) || is_auto (t2)))
1163 return TYPE_IDENTIFIER (t1) == TYPE_IDENTIFIER (t2);
1165 return true;
1168 /* Heuristic check if two parameter types can be considered ABI-equivalent. */
1170 static bool
1171 cxx_safe_arg_type_equiv_p (tree t1, tree t2)
1173 t1 = TYPE_MAIN_VARIANT (t1);
1174 t2 = TYPE_MAIN_VARIANT (t2);
1176 if (TYPE_PTR_P (t1)
1177 && TYPE_PTR_P (t2))
1178 return true;
1180 /* The signedness of the parameter matters only when an integral
1181 type smaller than int is promoted to int, otherwise only the
1182 precision of the parameter matters.
1183 This check should make sure that the callee does not see
1184 undefined values in argument registers. */
1185 if (INTEGRAL_TYPE_P (t1)
1186 && INTEGRAL_TYPE_P (t2)
1187 && TYPE_PRECISION (t1) == TYPE_PRECISION (t2)
1188 && (TYPE_UNSIGNED (t1) == TYPE_UNSIGNED (t2)
1189 || !targetm.calls.promote_prototypes (NULL_TREE)
1190 || TYPE_PRECISION (t1) >= TYPE_PRECISION (integer_type_node)))
1191 return true;
1193 return same_type_p (t1, t2);
1196 /* Check if a type cast between two function types can be considered safe. */
1198 static bool
1199 cxx_safe_function_type_cast_p (tree t1, tree t2)
1201 if (TREE_TYPE (t1) == void_type_node &&
1202 TYPE_ARG_TYPES (t1) == void_list_node)
1203 return true;
1205 if (TREE_TYPE (t2) == void_type_node &&
1206 TYPE_ARG_TYPES (t2) == void_list_node)
1207 return true;
1209 if (!cxx_safe_arg_type_equiv_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1210 return false;
1212 for (t1 = TYPE_ARG_TYPES (t1), t2 = TYPE_ARG_TYPES (t2);
1213 t1 && t2;
1214 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1215 if (!cxx_safe_arg_type_equiv_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1216 return false;
1218 return true;
1221 /* Subroutine in comptypes. */
1223 static bool
1224 structural_comptypes (tree t1, tree t2, int strict)
1226 if (t1 == t2)
1227 return true;
1229 /* Suppress errors caused by previously reported errors. */
1230 if (t1 == error_mark_node || t2 == error_mark_node)
1231 return false;
1233 gcc_assert (TYPE_P (t1) && TYPE_P (t2));
1235 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
1236 current instantiation. */
1237 if (TREE_CODE (t1) == TYPENAME_TYPE)
1238 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
1240 if (TREE_CODE (t2) == TYPENAME_TYPE)
1241 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
1243 if (TYPE_PTRMEMFUNC_P (t1))
1244 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
1245 if (TYPE_PTRMEMFUNC_P (t2))
1246 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
1248 /* Different classes of types can't be compatible. */
1249 if (TREE_CODE (t1) != TREE_CODE (t2))
1250 return false;
1252 /* Qualifiers must match. For array types, we will check when we
1253 recur on the array element types. */
1254 if (TREE_CODE (t1) != ARRAY_TYPE
1255 && cp_type_quals (t1) != cp_type_quals (t2))
1256 return false;
1257 if (TREE_CODE (t1) == FUNCTION_TYPE
1258 && type_memfn_quals (t1) != type_memfn_quals (t2))
1259 return false;
1260 /* Need to check this before TYPE_MAIN_VARIANT.
1261 FIXME function qualifiers should really change the main variant. */
1262 if (TREE_CODE (t1) == FUNCTION_TYPE
1263 || TREE_CODE (t1) == METHOD_TYPE)
1265 if (type_memfn_rqual (t1) != type_memfn_rqual (t2))
1266 return false;
1267 if (flag_noexcept_type
1268 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (t1),
1269 TYPE_RAISES_EXCEPTIONS (t2),
1270 ce_type))
1271 return false;
1274 /* Allow for two different type nodes which have essentially the same
1275 definition. Note that we already checked for equality of the type
1276 qualifiers (just above). */
1278 if (TREE_CODE (t1) != ARRAY_TYPE
1279 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1280 return true;
1283 /* Compare the types. Break out if they could be the same. */
1284 switch (TREE_CODE (t1))
1286 case VOID_TYPE:
1287 case BOOLEAN_TYPE:
1288 /* All void and bool types are the same. */
1289 break;
1291 case INTEGER_TYPE:
1292 case FIXED_POINT_TYPE:
1293 case REAL_TYPE:
1294 /* With these nodes, we can't determine type equivalence by
1295 looking at what is stored in the nodes themselves, because
1296 two nodes might have different TYPE_MAIN_VARIANTs but still
1297 represent the same type. For example, wchar_t and int could
1298 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1299 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1300 and are distinct types. On the other hand, int and the
1301 following typedef
1303 typedef int INT __attribute((may_alias));
1305 have identical properties, different TYPE_MAIN_VARIANTs, but
1306 represent the same type. The canonical type system keeps
1307 track of equivalence in this case, so we fall back on it. */
1308 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1310 case TEMPLATE_TEMPLATE_PARM:
1311 case BOUND_TEMPLATE_TEMPLATE_PARM:
1312 if (!comp_template_parms_position (t1, t2))
1313 return false;
1314 if (!comp_template_parms
1315 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
1316 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
1317 return false;
1318 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
1319 break;
1320 /* Don't check inheritance. */
1321 strict = COMPARE_STRICT;
1322 /* Fall through. */
1324 case RECORD_TYPE:
1325 case UNION_TYPE:
1326 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
1327 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
1328 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
1329 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
1330 break;
1332 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
1333 break;
1334 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
1335 break;
1337 return false;
1339 case OFFSET_TYPE:
1340 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
1341 strict & ~COMPARE_REDECLARATION))
1342 return false;
1343 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1344 return false;
1345 break;
1347 case REFERENCE_TYPE:
1348 if (TYPE_REF_IS_RVALUE (t1) != TYPE_REF_IS_RVALUE (t2))
1349 return false;
1350 /* fall through to checks for pointer types */
1351 gcc_fallthrough ();
1353 case POINTER_TYPE:
1354 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1355 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1356 return false;
1357 break;
1359 case METHOD_TYPE:
1360 case FUNCTION_TYPE:
1361 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1362 return false;
1363 if (!compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2)))
1364 return false;
1365 break;
1367 case ARRAY_TYPE:
1368 /* Target types must match incl. qualifiers. */
1369 if (!comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION)))
1370 return false;
1371 break;
1373 case TEMPLATE_TYPE_PARM:
1374 /* If T1 and T2 don't have the same relative position in their
1375 template parameters set, they can't be equal. */
1376 if (!comp_template_parms_position (t1, t2))
1377 return false;
1378 /* If T1 and T2 don't represent the same class template deduction,
1379 they aren't equal. */
1380 if (CLASS_PLACEHOLDER_TEMPLATE (t1)
1381 != CLASS_PLACEHOLDER_TEMPLATE (t2))
1382 return false;
1383 /* Constrained 'auto's are distinct from parms that don't have the same
1384 constraints. */
1385 if (!equivalent_placeholder_constraints (t1, t2))
1386 return false;
1387 break;
1389 case TYPENAME_TYPE:
1390 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1391 TYPENAME_TYPE_FULLNAME (t2)))
1392 return false;
1393 /* Qualifiers don't matter on scopes. */
1394 if (!same_type_ignoring_top_level_qualifiers_p (TYPE_CONTEXT (t1),
1395 TYPE_CONTEXT (t2)))
1396 return false;
1397 break;
1399 case UNBOUND_CLASS_TEMPLATE:
1400 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1401 return false;
1402 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1403 return false;
1404 break;
1406 case COMPLEX_TYPE:
1407 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1408 return false;
1409 break;
1411 case VECTOR_TYPE:
1412 if (maybe_ne (TYPE_VECTOR_SUBPARTS (t1), TYPE_VECTOR_SUBPARTS (t2))
1413 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1414 return false;
1415 break;
1417 case TYPE_PACK_EXPANSION:
1418 return (same_type_p (PACK_EXPANSION_PATTERN (t1),
1419 PACK_EXPANSION_PATTERN (t2))
1420 && comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
1421 PACK_EXPANSION_EXTRA_ARGS (t2)));
1423 case DECLTYPE_TYPE:
1424 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1425 != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1426 || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1427 != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1428 || (DECLTYPE_FOR_LAMBDA_PROXY (t1)
1429 != DECLTYPE_FOR_LAMBDA_PROXY (t2))
1430 || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1),
1431 DECLTYPE_TYPE_EXPR (t2)))
1432 return false;
1433 break;
1435 case UNDERLYING_TYPE:
1436 return same_type_p (UNDERLYING_TYPE_TYPE (t1),
1437 UNDERLYING_TYPE_TYPE (t2));
1439 default:
1440 return false;
1443 /* If we get here, we know that from a target independent POV the
1444 types are the same. Make sure the target attributes are also
1445 the same. */
1446 return comp_type_attributes (t1, t2);
1449 /* Return true if T1 and T2 are related as allowed by STRICT. STRICT
1450 is a bitwise-or of the COMPARE_* flags. */
1452 bool
1453 comptypes (tree t1, tree t2, int strict)
1455 if (strict == COMPARE_STRICT)
1457 if (t1 == t2)
1458 return true;
1460 if (t1 == error_mark_node || t2 == error_mark_node)
1461 return false;
1463 if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1464 /* At least one of the types requires structural equality, so
1465 perform a deep check. */
1466 return structural_comptypes (t1, t2, strict);
1468 if (flag_checking && USE_CANONICAL_TYPES)
1470 bool result = structural_comptypes (t1, t2, strict);
1472 if (result && TYPE_CANONICAL (t1) != TYPE_CANONICAL (t2))
1473 /* The two types are structurally equivalent, but their
1474 canonical types were different. This is a failure of the
1475 canonical type propagation code.*/
1476 internal_error
1477 ("canonical types differ for identical types %qT and %qT",
1478 t1, t2);
1479 else if (!result && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
1480 /* Two types are structurally different, but the canonical
1481 types are the same. This means we were over-eager in
1482 assigning canonical types. */
1483 internal_error
1484 ("same canonical type node for different types %qT and %qT",
1485 t1, t2);
1487 return result;
1489 if (!flag_checking && USE_CANONICAL_TYPES)
1490 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1491 else
1492 return structural_comptypes (t1, t2, strict);
1494 else if (strict == COMPARE_STRUCTURAL)
1495 return structural_comptypes (t1, t2, COMPARE_STRICT);
1496 else
1497 return structural_comptypes (t1, t2, strict);
1500 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1501 top-level qualifiers. */
1503 bool
1504 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1506 if (type1 == error_mark_node || type2 == error_mark_node)
1507 return false;
1509 type1 = cp_build_qualified_type (type1, TYPE_UNQUALIFIED);
1510 type2 = cp_build_qualified_type (type2, TYPE_UNQUALIFIED);
1511 return same_type_p (type1, type2);
1514 /* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1516 bool
1517 at_least_as_qualified_p (const_tree type1, const_tree type2)
1519 int q1 = cp_type_quals (type1);
1520 int q2 = cp_type_quals (type2);
1522 /* All qualifiers for TYPE2 must also appear in TYPE1. */
1523 return (q1 & q2) == q2;
1526 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1527 more cv-qualified that TYPE1, and 0 otherwise. */
1530 comp_cv_qualification (int q1, int q2)
1532 if (q1 == q2)
1533 return 0;
1535 if ((q1 & q2) == q2)
1536 return 1;
1537 else if ((q1 & q2) == q1)
1538 return -1;
1540 return 0;
1544 comp_cv_qualification (const_tree type1, const_tree type2)
1546 int q1 = cp_type_quals (type1);
1547 int q2 = cp_type_quals (type2);
1548 return comp_cv_qualification (q1, q2);
1551 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1552 subset of the cv-qualification signature of TYPE2, and the types
1553 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1556 comp_cv_qual_signature (tree type1, tree type2)
1558 if (comp_ptr_ttypes_real (type2, type1, -1))
1559 return 1;
1560 else if (comp_ptr_ttypes_real (type1, type2, -1))
1561 return -1;
1562 else
1563 return 0;
1566 /* Subroutines of `comptypes'. */
1568 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1569 equivalent in the sense that functions with those parameter types
1570 can have equivalent types. The two lists must be equivalent,
1571 element by element. */
1573 bool
1574 compparms (const_tree parms1, const_tree parms2)
1576 const_tree t1, t2;
1578 /* An unspecified parmlist matches any specified parmlist
1579 whose argument types don't need default promotions. */
1581 for (t1 = parms1, t2 = parms2;
1582 t1 || t2;
1583 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1585 /* If one parmlist is shorter than the other,
1586 they fail to match. */
1587 if (!t1 || !t2)
1588 return false;
1589 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1590 return false;
1592 return true;
1596 /* Process a sizeof or alignof expression where the operand is a
1597 type. STD_ALIGNOF indicates whether an alignof has C++11 (minimum alignment)
1598 or GNU (preferred alignment) semantics; it is ignored if op is
1599 SIZEOF_EXPR. */
1601 tree
1602 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool std_alignof,
1603 bool complain)
1605 gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1606 if (type == error_mark_node)
1607 return error_mark_node;
1609 type = non_reference (type);
1610 if (TREE_CODE (type) == METHOD_TYPE)
1612 if (complain)
1614 pedwarn (input_location, OPT_Wpointer_arith,
1615 "invalid application of %qs to a member function",
1616 OVL_OP_INFO (false, op)->name);
1617 return size_one_node;
1619 else
1620 return error_mark_node;
1623 bool dependent_p = dependent_type_p (type);
1624 if (!dependent_p)
1625 complete_type (type);
1626 if (dependent_p
1627 /* VLA types will have a non-constant size. In the body of an
1628 uninstantiated template, we don't need to try to compute the
1629 value, because the sizeof expression is not an integral
1630 constant expression in that case. And, if we do try to
1631 compute the value, we'll likely end up with SAVE_EXPRs, which
1632 the template substitution machinery does not expect to see. */
1633 || (processing_template_decl
1634 && COMPLETE_TYPE_P (type)
1635 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1637 tree value = build_min (op, size_type_node, type);
1638 TREE_READONLY (value) = 1;
1639 if (op == ALIGNOF_EXPR && std_alignof)
1640 ALIGNOF_EXPR_STD_P (value) = true;
1641 return value;
1644 return c_sizeof_or_alignof_type (input_location, complete_type (type),
1645 op == SIZEOF_EXPR, std_alignof,
1646 complain);
1649 /* Return the size of the type, without producing any warnings for
1650 types whose size cannot be taken. This routine should be used only
1651 in some other routine that has already produced a diagnostic about
1652 using the size of such a type. */
1653 tree
1654 cxx_sizeof_nowarn (tree type)
1656 if (TREE_CODE (type) == FUNCTION_TYPE
1657 || VOID_TYPE_P (type)
1658 || TREE_CODE (type) == ERROR_MARK)
1659 return size_one_node;
1660 else if (!COMPLETE_TYPE_P (type))
1661 return size_zero_node;
1662 else
1663 return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false, false);
1666 /* Process a sizeof expression where the operand is an expression. */
1668 static tree
1669 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1671 if (e == error_mark_node)
1672 return error_mark_node;
1674 if (processing_template_decl)
1676 e = build_min (SIZEOF_EXPR, size_type_node, e);
1677 TREE_SIDE_EFFECTS (e) = 0;
1678 TREE_READONLY (e) = 1;
1680 return e;
1683 /* To get the size of a static data member declared as an array of
1684 unknown bound, we need to instantiate it. */
1685 if (VAR_P (e)
1686 && VAR_HAD_UNKNOWN_BOUND (e)
1687 && DECL_TEMPLATE_INSTANTIATION (e))
1688 instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1690 if (TREE_CODE (e) == PARM_DECL
1691 && DECL_ARRAY_PARAMETER_P (e)
1692 && (complain & tf_warning))
1694 if (warning (OPT_Wsizeof_array_argument, "%<sizeof%> on array function "
1695 "parameter %qE will return size of %qT", e, TREE_TYPE (e)))
1696 inform (DECL_SOURCE_LOCATION (e), "declared here");
1699 e = mark_type_use (e);
1701 if (bitfield_p (e))
1703 if (complain & tf_error)
1704 error ("invalid application of %<sizeof%> to a bit-field");
1705 else
1706 return error_mark_node;
1707 e = char_type_node;
1709 else if (is_overloaded_fn (e))
1711 if (complain & tf_error)
1712 permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1713 "function type");
1714 else
1715 return error_mark_node;
1716 e = char_type_node;
1718 else if (type_unknown_p (e))
1720 if (complain & tf_error)
1721 cxx_incomplete_type_error (e, TREE_TYPE (e));
1722 else
1723 return error_mark_node;
1724 e = char_type_node;
1726 else
1727 e = TREE_TYPE (e);
1729 return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, false, complain & tf_error);
1732 /* Implement the __alignof keyword: Return the minimum required
1733 alignment of E, measured in bytes. For VAR_DECL's and
1734 FIELD_DECL's return DECL_ALIGN (which can be set from an
1735 "aligned" __attribute__ specification). */
1737 static tree
1738 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1740 tree t;
1742 if (e == error_mark_node)
1743 return error_mark_node;
1745 if (processing_template_decl)
1747 e = build_min (ALIGNOF_EXPR, size_type_node, e);
1748 TREE_SIDE_EFFECTS (e) = 0;
1749 TREE_READONLY (e) = 1;
1751 return e;
1754 e = mark_type_use (e);
1756 if (VAR_P (e))
1757 t = size_int (DECL_ALIGN_UNIT (e));
1758 else if (bitfield_p (e))
1760 if (complain & tf_error)
1761 error ("invalid application of %<__alignof%> to a bit-field");
1762 else
1763 return error_mark_node;
1764 t = size_one_node;
1766 else if (TREE_CODE (e) == COMPONENT_REF
1767 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1768 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1769 else if (is_overloaded_fn (e))
1771 if (complain & tf_error)
1772 permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1773 "function type");
1774 else
1775 return error_mark_node;
1776 if (TREE_CODE (e) == FUNCTION_DECL)
1777 t = size_int (DECL_ALIGN_UNIT (e));
1778 else
1779 t = size_one_node;
1781 else if (type_unknown_p (e))
1783 if (complain & tf_error)
1784 cxx_incomplete_type_error (e, TREE_TYPE (e));
1785 else
1786 return error_mark_node;
1787 t = size_one_node;
1789 else
1790 return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR, false,
1791 complain & tf_error);
1793 return fold_convert (size_type_node, t);
1796 /* Process a sizeof or alignof expression E with code OP where the operand
1797 is an expression. */
1799 tree
1800 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1802 if (op == SIZEOF_EXPR)
1803 return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1804 else
1805 return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1808 /* Build a representation of an expression 'alignas(E).' Return the
1809 folded integer value of E if it is an integral constant expression
1810 that resolves to a valid alignment. If E depends on a template
1811 parameter, return a syntactic representation tree of kind
1812 ALIGNOF_EXPR. Otherwise, return an error_mark_node if the
1813 expression is ill formed, or NULL_TREE if E is NULL_TREE. */
1815 tree
1816 cxx_alignas_expr (tree e)
1818 if (e == NULL_TREE || e == error_mark_node
1819 || (!TYPE_P (e) && !require_potential_rvalue_constant_expression (e)))
1820 return e;
1822 if (TYPE_P (e))
1823 /* [dcl.align]/3:
1825 When the alignment-specifier is of the form
1826 alignas(type-id ), it shall have the same effect as
1827 alignas(alignof(type-id )). */
1829 return cxx_sizeof_or_alignof_type (e, ALIGNOF_EXPR, true, false);
1831 /* If we reach this point, it means the alignas expression if of
1832 the form "alignas(assignment-expression)", so we should follow
1833 what is stated by [dcl.align]/2. */
1835 if (value_dependent_expression_p (e))
1836 /* Leave value-dependent expression alone for now. */
1837 return e;
1839 e = instantiate_non_dependent_expr (e);
1840 e = mark_rvalue_use (e);
1842 /* [dcl.align]/2 says:
1844 the assignment-expression shall be an integral constant
1845 expression. */
1847 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (e)))
1849 error ("%<alignas%> argument has non-integral type %qT", TREE_TYPE (e));
1850 return error_mark_node;
1853 return cxx_constant_value (e);
1857 /* EXPR is being used in a context that is not a function call.
1858 Enforce:
1860 [expr.ref]
1862 The expression can be used only as the left-hand operand of a
1863 member function call.
1865 [expr.mptr.operator]
1867 If the result of .* or ->* is a function, then that result can be
1868 used only as the operand for the function call operator ().
1870 by issuing an error message if appropriate. Returns true iff EXPR
1871 violates these rules. */
1873 bool
1874 invalid_nonstatic_memfn_p (location_t loc, tree expr, tsubst_flags_t complain)
1876 if (expr == NULL_TREE)
1877 return false;
1878 /* Don't enforce this in MS mode. */
1879 if (flag_ms_extensions)
1880 return false;
1881 if (is_overloaded_fn (expr) && !really_overloaded_fn (expr))
1882 expr = get_first_fn (expr);
1883 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1885 if (complain & tf_error)
1887 if (DECL_P (expr))
1889 error_at (loc, "invalid use of non-static member function %qD",
1890 expr);
1891 inform (DECL_SOURCE_LOCATION (expr), "declared here");
1893 else
1894 error_at (loc, "invalid use of non-static member function of "
1895 "type %qT", TREE_TYPE (expr));
1897 return true;
1899 return false;
1902 /* If EXP is a reference to a bitfield, and the type of EXP does not
1903 match the declared type of the bitfield, return the declared type
1904 of the bitfield. Otherwise, return NULL_TREE. */
1906 tree
1907 is_bitfield_expr_with_lowered_type (const_tree exp)
1909 switch (TREE_CODE (exp))
1911 case COND_EXPR:
1912 if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1913 ? TREE_OPERAND (exp, 1)
1914 : TREE_OPERAND (exp, 0)))
1915 return NULL_TREE;
1916 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1918 case COMPOUND_EXPR:
1919 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1921 case MODIFY_EXPR:
1922 case SAVE_EXPR:
1923 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1925 case COMPONENT_REF:
1927 tree field;
1929 field = TREE_OPERAND (exp, 1);
1930 if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1931 return NULL_TREE;
1932 if (same_type_ignoring_top_level_qualifiers_p
1933 (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1934 return NULL_TREE;
1935 return DECL_BIT_FIELD_TYPE (field);
1938 case VAR_DECL:
1939 if (DECL_HAS_VALUE_EXPR_P (exp))
1940 return is_bitfield_expr_with_lowered_type (DECL_VALUE_EXPR
1941 (CONST_CAST_TREE (exp)));
1942 return NULL_TREE;
1944 CASE_CONVERT:
1945 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1946 == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1947 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1948 /* Fallthrough. */
1950 default:
1951 return NULL_TREE;
1955 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1956 bitfield with a lowered type, the type of EXP is returned, rather
1957 than NULL_TREE. */
1959 tree
1960 unlowered_expr_type (const_tree exp)
1962 tree type;
1963 tree etype = TREE_TYPE (exp);
1965 type = is_bitfield_expr_with_lowered_type (exp);
1966 if (type)
1967 type = cp_build_qualified_type (type, cp_type_quals (etype));
1968 else
1969 type = etype;
1971 return type;
1974 /* Perform the conversions in [expr] that apply when an lvalue appears
1975 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1976 function-to-pointer conversions. In addition, bitfield references are
1977 converted to their declared types. Note that this function does not perform
1978 the lvalue-to-rvalue conversion for class types. If you need that conversion
1979 for class types, then you probably need to use force_rvalue.
1981 Although the returned value is being used as an rvalue, this
1982 function does not wrap the returned expression in a
1983 NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1984 that the return value is no longer an lvalue. */
1986 tree
1987 decay_conversion (tree exp,
1988 tsubst_flags_t complain,
1989 bool reject_builtin /* = true */)
1991 tree type;
1992 enum tree_code code;
1993 location_t loc = cp_expr_loc_or_loc (exp, input_location);
1995 type = TREE_TYPE (exp);
1996 if (type == error_mark_node)
1997 return error_mark_node;
1999 exp = resolve_nondeduced_context (exp, complain);
2000 if (type_unknown_p (exp))
2002 if (complain & tf_error)
2003 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
2004 return error_mark_node;
2007 code = TREE_CODE (type);
2009 if (error_operand_p (exp))
2010 return error_mark_node;
2012 if (NULLPTR_TYPE_P (type) && !TREE_SIDE_EFFECTS (exp))
2014 mark_rvalue_use (exp, loc, reject_builtin);
2015 return nullptr_node;
2018 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
2019 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
2020 if (code == VOID_TYPE)
2022 if (complain & tf_error)
2023 error_at (loc, "void value not ignored as it ought to be");
2024 return error_mark_node;
2026 if (invalid_nonstatic_memfn_p (loc, exp, complain))
2027 return error_mark_node;
2028 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
2030 exp = mark_lvalue_use (exp);
2031 if (reject_builtin && reject_gcc_builtin (exp, loc))
2032 return error_mark_node;
2033 return cp_build_addr_expr (exp, complain);
2035 if (code == ARRAY_TYPE)
2037 tree adr;
2038 tree ptrtype;
2040 exp = mark_lvalue_use (exp);
2042 if (INDIRECT_REF_P (exp))
2043 return build_nop (build_pointer_type (TREE_TYPE (type)),
2044 TREE_OPERAND (exp, 0));
2046 if (TREE_CODE (exp) == COMPOUND_EXPR)
2048 tree op1 = decay_conversion (TREE_OPERAND (exp, 1), complain);
2049 if (op1 == error_mark_node)
2050 return error_mark_node;
2051 return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
2052 TREE_OPERAND (exp, 0), op1);
2055 if (!obvalue_p (exp)
2056 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
2058 if (complain & tf_error)
2059 error_at (loc, "invalid use of non-lvalue array");
2060 return error_mark_node;
2063 /* Don't let an array compound literal decay to a pointer. It can
2064 still be used to initialize an array or bind to a reference. */
2065 if (TREE_CODE (exp) == TARGET_EXPR)
2067 if (complain & tf_error)
2068 error_at (loc, "taking address of temporary array");
2069 return error_mark_node;
2072 ptrtype = build_pointer_type (TREE_TYPE (type));
2074 if (VAR_P (exp))
2076 if (!cxx_mark_addressable (exp))
2077 return error_mark_node;
2078 adr = build_nop (ptrtype, build_address (exp));
2079 return adr;
2081 /* This way is better for a COMPONENT_REF since it can
2082 simplify the offset for a component. */
2083 adr = cp_build_addr_expr (exp, complain);
2084 return cp_convert (ptrtype, adr, complain);
2087 /* Otherwise, it's the lvalue-to-rvalue conversion. */
2088 exp = mark_rvalue_use (exp, loc, reject_builtin);
2090 /* If a bitfield is used in a context where integral promotion
2091 applies, then the caller is expected to have used
2092 default_conversion. That function promotes bitfields correctly
2093 before calling this function. At this point, if we have a
2094 bitfield referenced, we may assume that is not subject to
2095 promotion, and that, therefore, the type of the resulting rvalue
2096 is the declared type of the bitfield. */
2097 exp = convert_bitfield_to_declared_type (exp);
2099 /* We do not call rvalue() here because we do not want to wrap EXP
2100 in a NON_LVALUE_EXPR. */
2102 /* [basic.lval]
2104 Non-class rvalues always have cv-unqualified types. */
2105 type = TREE_TYPE (exp);
2106 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
2107 exp = build_nop (cv_unqualified (type), exp);
2109 if (!complete_type_or_maybe_complain (type, exp, complain))
2110 return error_mark_node;
2112 return exp;
2115 /* Perform preparatory conversions, as part of the "usual arithmetic
2116 conversions". In particular, as per [expr]:
2118 Whenever an lvalue expression appears as an operand of an
2119 operator that expects the rvalue for that operand, the
2120 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
2121 standard conversions are applied to convert the expression to an
2122 rvalue.
2124 In addition, we perform integral promotions here, as those are
2125 applied to both operands to a binary operator before determining
2126 what additional conversions should apply. */
2128 static tree
2129 cp_default_conversion (tree exp, tsubst_flags_t complain)
2131 /* Check for target-specific promotions. */
2132 tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
2133 if (promoted_type)
2134 exp = cp_convert (promoted_type, exp, complain);
2135 /* Perform the integral promotions first so that bitfield
2136 expressions (which may promote to "int", even if the bitfield is
2137 declared "unsigned") are promoted correctly. */
2138 else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
2139 exp = cp_perform_integral_promotions (exp, complain);
2140 /* Perform the other conversions. */
2141 exp = decay_conversion (exp, complain);
2143 return exp;
2146 /* C version. */
2148 tree
2149 default_conversion (tree exp)
2151 return cp_default_conversion (exp, tf_warning_or_error);
2154 /* EXPR is an expression with an integral or enumeration type.
2155 Perform the integral promotions in [conv.prom], and return the
2156 converted value. */
2158 tree
2159 cp_perform_integral_promotions (tree expr, tsubst_flags_t complain)
2161 tree type;
2162 tree promoted_type;
2164 expr = mark_rvalue_use (expr);
2165 if (error_operand_p (expr))
2166 return error_mark_node;
2168 /* [conv.prom]
2170 If the bitfield has an enumerated type, it is treated as any
2171 other value of that type for promotion purposes. */
2172 type = is_bitfield_expr_with_lowered_type (expr);
2173 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
2174 type = TREE_TYPE (expr);
2175 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
2176 /* Scoped enums don't promote. */
2177 if (SCOPED_ENUM_P (type))
2178 return expr;
2179 promoted_type = type_promotes_to (type);
2180 if (type != promoted_type)
2181 expr = cp_convert (promoted_type, expr, complain);
2182 return expr;
2185 /* C version. */
2187 tree
2188 perform_integral_promotions (tree expr)
2190 return cp_perform_integral_promotions (expr, tf_warning_or_error);
2193 /* Returns nonzero iff exp is a STRING_CST or the result of applying
2194 decay_conversion to one. */
2197 string_conv_p (const_tree totype, const_tree exp, int warn)
2199 tree t;
2201 if (!TYPE_PTR_P (totype))
2202 return 0;
2204 t = TREE_TYPE (totype);
2205 if (!same_type_p (t, char_type_node)
2206 && !same_type_p (t, char16_type_node)
2207 && !same_type_p (t, char32_type_node)
2208 && !same_type_p (t, wchar_type_node))
2209 return 0;
2211 STRIP_ANY_LOCATION_WRAPPER (exp);
2213 if (TREE_CODE (exp) == STRING_CST)
2215 /* Make sure that we don't try to convert between char and wide chars. */
2216 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
2217 return 0;
2219 else
2221 /* Is this a string constant which has decayed to 'const char *'? */
2222 t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
2223 if (!same_type_p (TREE_TYPE (exp), t))
2224 return 0;
2225 STRIP_NOPS (exp);
2226 if (TREE_CODE (exp) != ADDR_EXPR
2227 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
2228 return 0;
2230 if (warn)
2232 if (cxx_dialect >= cxx11)
2233 pedwarn (input_location, OPT_Wwrite_strings,
2234 "ISO C++ forbids converting a string constant to %qT",
2235 totype);
2236 else
2237 warning (OPT_Wwrite_strings,
2238 "deprecated conversion from string constant to %qT",
2239 totype);
2242 return 1;
2245 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2246 can, for example, use as an lvalue. This code used to be in
2247 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2248 expressions, where we're dealing with aggregates. But now it's again only
2249 called from unary_complex_lvalue. The case (in particular) that led to
2250 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2251 get it there. */
2253 static tree
2254 rationalize_conditional_expr (enum tree_code code, tree t,
2255 tsubst_flags_t complain)
2257 location_t loc = cp_expr_loc_or_loc (t, input_location);
2259 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2260 the first operand is always the one to be used if both operands
2261 are equal, so we know what conditional expression this used to be. */
2262 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2264 tree op0 = TREE_OPERAND (t, 0);
2265 tree op1 = TREE_OPERAND (t, 1);
2267 /* The following code is incorrect if either operand side-effects. */
2268 gcc_assert (!TREE_SIDE_EFFECTS (op0)
2269 && !TREE_SIDE_EFFECTS (op1));
2270 return
2271 build_conditional_expr (loc,
2272 build_x_binary_op (loc,
2273 (TREE_CODE (t) == MIN_EXPR
2274 ? LE_EXPR : GE_EXPR),
2275 op0, TREE_CODE (op0),
2276 op1, TREE_CODE (op1),
2277 /*overload=*/NULL,
2278 complain),
2279 cp_build_unary_op (code, op0, false, complain),
2280 cp_build_unary_op (code, op1, false, complain),
2281 complain);
2284 return
2285 build_conditional_expr (loc, TREE_OPERAND (t, 0),
2286 cp_build_unary_op (code, TREE_OPERAND (t, 1), false,
2287 complain),
2288 cp_build_unary_op (code, TREE_OPERAND (t, 2), false,
2289 complain),
2290 complain);
2293 /* Given the TYPE of an anonymous union field inside T, return the
2294 FIELD_DECL for the field. If not found return NULL_TREE. Because
2295 anonymous unions can nest, we must also search all anonymous unions
2296 that are directly reachable. */
2298 tree
2299 lookup_anon_field (tree t, tree type)
2301 tree field;
2303 t = TYPE_MAIN_VARIANT (t);
2305 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2307 if (TREE_STATIC (field))
2308 continue;
2309 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2310 continue;
2312 /* If we find it directly, return the field. */
2313 if (DECL_NAME (field) == NULL_TREE
2314 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2316 return field;
2319 /* Otherwise, it could be nested, search harder. */
2320 if (DECL_NAME (field) == NULL_TREE
2321 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2323 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2324 if (subfield)
2325 return subfield;
2328 return NULL_TREE;
2331 /* Build an expression representing OBJECT.MEMBER. OBJECT is an
2332 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
2333 non-NULL, it indicates the path to the base used to name MEMBER.
2334 If PRESERVE_REFERENCE is true, the expression returned will have
2335 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
2336 returned will have the type referred to by the reference.
2338 This function does not perform access control; that is either done
2339 earlier by the parser when the name of MEMBER is resolved to MEMBER
2340 itself, or later when overload resolution selects one of the
2341 functions indicated by MEMBER. */
2343 tree
2344 build_class_member_access_expr (cp_expr object, tree member,
2345 tree access_path, bool preserve_reference,
2346 tsubst_flags_t complain)
2348 tree object_type;
2349 tree member_scope;
2350 tree result = NULL_TREE;
2351 tree using_decl = NULL_TREE;
2353 if (error_operand_p (object) || error_operand_p (member))
2354 return error_mark_node;
2356 gcc_assert (DECL_P (member) || BASELINK_P (member));
2358 /* [expr.ref]
2360 The type of the first expression shall be "class object" (of a
2361 complete type). */
2362 object_type = TREE_TYPE (object);
2363 if (!currently_open_class (object_type)
2364 && !complete_type_or_maybe_complain (object_type, object, complain))
2365 return error_mark_node;
2366 if (!CLASS_TYPE_P (object_type))
2368 if (complain & tf_error)
2370 if (INDIRECT_TYPE_P (object_type)
2371 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2372 error ("request for member %qD in %qE, which is of pointer "
2373 "type %qT (maybe you meant to use %<->%> ?)",
2374 member, object.get_value (), object_type);
2375 else
2376 error ("request for member %qD in %qE, which is of non-class "
2377 "type %qT", member, object.get_value (), object_type);
2379 return error_mark_node;
2382 /* The standard does not seem to actually say that MEMBER must be a
2383 member of OBJECT_TYPE. However, that is clearly what is
2384 intended. */
2385 if (DECL_P (member))
2387 member_scope = DECL_CLASS_CONTEXT (member);
2388 if (!mark_used (member, complain) && !(complain & tf_error))
2389 return error_mark_node;
2390 if (TREE_DEPRECATED (member))
2391 warn_deprecated_use (member, NULL_TREE);
2393 else
2394 member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2395 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2396 presently be the anonymous union. Go outwards until we find a
2397 type related to OBJECT_TYPE. */
2398 while ((ANON_AGGR_TYPE_P (member_scope) || UNSCOPED_ENUM_P (member_scope))
2399 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2400 object_type))
2401 member_scope = TYPE_CONTEXT (member_scope);
2402 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2404 if (complain & tf_error)
2406 if (TREE_CODE (member) == FIELD_DECL)
2407 error ("invalid use of nonstatic data member %qE", member);
2408 else
2409 error ("%qD is not a member of %qT", member, object_type);
2411 return error_mark_node;
2414 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2415 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
2416 in the front end; only _DECLs and _REFs are lvalues in the back end. */
2418 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2419 if (temp)
2420 object = cp_build_fold_indirect_ref (temp);
2423 /* In [expr.ref], there is an explicit list of the valid choices for
2424 MEMBER. We check for each of those cases here. */
2425 if (VAR_P (member))
2427 /* A static data member. */
2428 result = member;
2429 mark_exp_read (object);
2430 /* If OBJECT has side-effects, they are supposed to occur. */
2431 if (TREE_SIDE_EFFECTS (object))
2432 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2434 else if (TREE_CODE (member) == FIELD_DECL)
2436 /* A non-static data member. */
2437 bool null_object_p;
2438 int type_quals;
2439 tree member_type;
2441 if (INDIRECT_REF_P (object))
2442 null_object_p =
2443 integer_zerop (tree_strip_nop_conversions (TREE_OPERAND (object, 0)));
2444 else
2445 null_object_p = false;
2447 /* Convert OBJECT to the type of MEMBER. */
2448 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2449 TYPE_MAIN_VARIANT (member_scope)))
2451 tree binfo;
2452 base_kind kind;
2454 binfo = lookup_base (access_path ? access_path : object_type,
2455 member_scope, ba_unique, &kind, complain);
2456 if (binfo == error_mark_node)
2457 return error_mark_node;
2459 /* It is invalid to try to get to a virtual base of a
2460 NULL object. The most common cause is invalid use of
2461 offsetof macro. */
2462 if (null_object_p && kind == bk_via_virtual)
2464 if (complain & tf_error)
2466 error ("invalid access to non-static data member %qD in "
2467 "virtual base of NULL object", member);
2469 return error_mark_node;
2472 /* Convert to the base. */
2473 object = build_base_path (PLUS_EXPR, object, binfo,
2474 /*nonnull=*/1, complain);
2475 /* If we found the base successfully then we should be able
2476 to convert to it successfully. */
2477 gcc_assert (object != error_mark_node);
2480 /* If MEMBER is from an anonymous aggregate, we have converted
2481 OBJECT so that it refers to the class containing the
2482 anonymous union. Generate a reference to the anonymous union
2483 itself, and recur to find MEMBER. */
2484 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2485 /* When this code is called from build_field_call, the
2486 object already has the type of the anonymous union.
2487 That is because the COMPONENT_REF was already
2488 constructed, and was then disassembled before calling
2489 build_field_call. After the function-call code is
2490 cleaned up, this waste can be eliminated. */
2491 && (!same_type_ignoring_top_level_qualifiers_p
2492 (TREE_TYPE (object), DECL_CONTEXT (member))))
2494 tree anonymous_union;
2496 anonymous_union = lookup_anon_field (TREE_TYPE (object),
2497 DECL_CONTEXT (member));
2498 object = build_class_member_access_expr (object,
2499 anonymous_union,
2500 /*access_path=*/NULL_TREE,
2501 preserve_reference,
2502 complain);
2505 /* Compute the type of the field, as described in [expr.ref]. */
2506 type_quals = TYPE_UNQUALIFIED;
2507 member_type = TREE_TYPE (member);
2508 if (!TYPE_REF_P (member_type))
2510 type_quals = (cp_type_quals (member_type)
2511 | cp_type_quals (object_type));
2513 /* A field is const (volatile) if the enclosing object, or the
2514 field itself, is const (volatile). But, a mutable field is
2515 not const, even within a const object. */
2516 if (DECL_MUTABLE_P (member))
2517 type_quals &= ~TYPE_QUAL_CONST;
2518 member_type = cp_build_qualified_type (member_type, type_quals);
2521 result = build3_loc (input_location, COMPONENT_REF, member_type,
2522 object, member, NULL_TREE);
2524 /* Mark the expression const or volatile, as appropriate. Even
2525 though we've dealt with the type above, we still have to mark the
2526 expression itself. */
2527 if (type_quals & TYPE_QUAL_CONST)
2528 TREE_READONLY (result) = 1;
2529 if (type_quals & TYPE_QUAL_VOLATILE)
2530 TREE_THIS_VOLATILE (result) = 1;
2532 else if (BASELINK_P (member))
2534 /* The member is a (possibly overloaded) member function. */
2535 tree functions;
2536 tree type;
2538 /* If the MEMBER is exactly one static member function, then we
2539 know the type of the expression. Otherwise, we must wait
2540 until overload resolution has been performed. */
2541 functions = BASELINK_FUNCTIONS (member);
2542 if (TREE_CODE (functions) == FUNCTION_DECL
2543 && DECL_STATIC_FUNCTION_P (functions))
2544 type = TREE_TYPE (functions);
2545 else
2546 type = unknown_type_node;
2547 /* Note that we do not convert OBJECT to the BASELINK_BINFO
2548 base. That will happen when the function is called. */
2549 result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2551 else if (TREE_CODE (member) == CONST_DECL)
2553 /* The member is an enumerator. */
2554 result = member;
2555 /* If OBJECT has side-effects, they are supposed to occur. */
2556 if (TREE_SIDE_EFFECTS (object))
2557 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2558 object, result);
2560 else if ((using_decl = strip_using_decl (member)) != member)
2561 result = build_class_member_access_expr (object,
2562 using_decl,
2563 access_path, preserve_reference,
2564 complain);
2565 else
2567 if (complain & tf_error)
2568 error ("invalid use of %qD", member);
2569 return error_mark_node;
2572 if (!preserve_reference)
2573 /* [expr.ref]
2575 If E2 is declared to have type "reference to T", then ... the
2576 type of E1.E2 is T. */
2577 result = convert_from_reference (result);
2579 return result;
2582 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2583 SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type. */
2585 static tree
2586 lookup_destructor (tree object, tree scope, tree dtor_name,
2587 tsubst_flags_t complain)
2589 tree object_type = TREE_TYPE (object);
2590 tree dtor_type = TREE_OPERAND (dtor_name, 0);
2591 tree expr;
2593 /* We've already complained about this destructor. */
2594 if (dtor_type == error_mark_node)
2595 return error_mark_node;
2597 if (scope && !check_dtor_name (scope, dtor_type))
2599 if (complain & tf_error)
2600 error ("qualified type %qT does not match destructor name ~%qT",
2601 scope, dtor_type);
2602 return error_mark_node;
2604 if (is_auto (dtor_type))
2605 dtor_type = object_type;
2606 else if (identifier_p (dtor_type))
2608 /* In a template, names we can't find a match for are still accepted
2609 destructor names, and we check them here. */
2610 if (check_dtor_name (object_type, dtor_type))
2611 dtor_type = object_type;
2612 else
2614 if (complain & tf_error)
2615 error ("object type %qT does not match destructor name ~%qT",
2616 object_type, dtor_type);
2617 return error_mark_node;
2621 else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2623 if (complain & tf_error)
2624 error ("the type being destroyed is %qT, but the destructor "
2625 "refers to %qT", TYPE_MAIN_VARIANT (object_type), dtor_type);
2626 return error_mark_node;
2628 expr = lookup_member (dtor_type, complete_dtor_identifier,
2629 /*protect=*/1, /*want_type=*/false,
2630 tf_warning_or_error);
2631 if (!expr)
2633 if (complain & tf_error)
2634 cxx_incomplete_type_error (dtor_name, dtor_type);
2635 return error_mark_node;
2637 expr = (adjust_result_of_qualified_name_lookup
2638 (expr, dtor_type, object_type));
2639 if (scope == NULL_TREE)
2640 /* We need to call adjust_result_of_qualified_name_lookup in case the
2641 destructor names a base class, but we unset BASELINK_QUALIFIED_P so
2642 that we still get virtual function binding. */
2643 BASELINK_QUALIFIED_P (expr) = false;
2644 return expr;
2647 /* An expression of the form "A::template B" has been resolved to
2648 DECL. Issue a diagnostic if B is not a template or template
2649 specialization. */
2651 void
2652 check_template_keyword (tree decl)
2654 /* The standard says:
2656 [temp.names]
2658 If a name prefixed by the keyword template is not a member
2659 template, the program is ill-formed.
2661 DR 228 removed the restriction that the template be a member
2662 template.
2664 DR 96, if accepted would add the further restriction that explicit
2665 template arguments must be provided if the template keyword is
2666 used, but, as of 2005-10-16, that DR is still in "drafting". If
2667 this DR is accepted, then the semantic checks here can be
2668 simplified, as the entity named must in fact be a template
2669 specialization, rather than, as at present, a set of overloaded
2670 functions containing at least one template function. */
2671 if (TREE_CODE (decl) != TEMPLATE_DECL
2672 && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2674 if (VAR_P (decl))
2676 if (DECL_USE_TEMPLATE (decl)
2677 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2679 else
2680 permerror (input_location, "%qD is not a template", decl);
2682 else if (!is_overloaded_fn (decl))
2683 permerror (input_location, "%qD is not a template", decl);
2684 else
2686 bool found = false;
2688 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (decl));
2689 !found && iter; ++iter)
2691 tree fn = *iter;
2692 if (TREE_CODE (fn) == TEMPLATE_DECL
2693 || TREE_CODE (fn) == TEMPLATE_ID_EXPR
2694 || (TREE_CODE (fn) == FUNCTION_DECL
2695 && DECL_USE_TEMPLATE (fn)
2696 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn))))
2697 found = true;
2699 if (!found)
2700 permerror (input_location, "%qD is not a template", decl);
2705 /* Record that an access failure occurred on BASETYPE_PATH attempting
2706 to access FIELD_DECL. */
2708 void
2709 access_failure_info::record_access_failure (tree basetype_path,
2710 tree field_decl)
2712 m_was_inaccessible = true;
2713 m_basetype_path = basetype_path;
2714 m_field_decl = field_decl;
2717 /* If an access failure was recorded, then attempt to locate an
2718 accessor function for the pertinent field, and if one is
2719 available, add a note and fix-it hint suggesting using it. */
2721 void
2722 access_failure_info::maybe_suggest_accessor (bool const_p) const
2724 if (!m_was_inaccessible)
2725 return;
2727 tree accessor
2728 = locate_field_accessor (m_basetype_path, m_field_decl, const_p);
2729 if (!accessor)
2730 return;
2732 /* The accessor must itself be accessible for it to be a reasonable
2733 suggestion. */
2734 if (!accessible_p (m_basetype_path, accessor, true))
2735 return;
2737 rich_location richloc (line_table, input_location);
2738 pretty_printer pp;
2739 pp_printf (&pp, "%s()", IDENTIFIER_POINTER (DECL_NAME (accessor)));
2740 richloc.add_fixit_replace (pp_formatted_text (&pp));
2741 inform (&richloc, "field %q#D can be accessed via %q#D",
2742 m_field_decl, accessor);
2745 /* This function is called by the parser to process a class member
2746 access expression of the form OBJECT.NAME. NAME is a node used by
2747 the parser to represent a name; it is not yet a DECL. It may,
2748 however, be a BASELINK where the BASELINK_FUNCTIONS is a
2749 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
2750 there is no reason to do the lookup twice, so the parser keeps the
2751 BASELINK. TEMPLATE_P is true iff NAME was explicitly declared to
2752 be a template via the use of the "A::template B" syntax. */
2754 tree
2755 finish_class_member_access_expr (cp_expr object, tree name, bool template_p,
2756 tsubst_flags_t complain)
2758 tree expr;
2759 tree object_type;
2760 tree member;
2761 tree access_path = NULL_TREE;
2762 tree orig_object = object;
2763 tree orig_name = name;
2765 if (object == error_mark_node || name == error_mark_node)
2766 return error_mark_node;
2768 /* If OBJECT is an ObjC class instance, we must obey ObjC access rules. */
2769 if (!objc_is_public (object, name))
2770 return error_mark_node;
2772 object_type = TREE_TYPE (object);
2774 if (processing_template_decl)
2776 if (/* If OBJECT is dependent, so is OBJECT.NAME. */
2777 type_dependent_object_expression_p (object)
2778 /* If NAME is "f<args>", where either 'f' or 'args' is
2779 dependent, then the expression is dependent. */
2780 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2781 && dependent_template_id_p (TREE_OPERAND (name, 0),
2782 TREE_OPERAND (name, 1)))
2783 /* If NAME is "T::X" where "T" is dependent, then the
2784 expression is dependent. */
2785 || (TREE_CODE (name) == SCOPE_REF
2786 && TYPE_P (TREE_OPERAND (name, 0))
2787 && dependent_scope_p (TREE_OPERAND (name, 0))))
2789 dependent:
2790 return build_min_nt_loc (UNKNOWN_LOCATION, COMPONENT_REF,
2791 orig_object, orig_name, NULL_TREE);
2793 object = build_non_dependent_expr (object);
2795 else if (c_dialect_objc ()
2796 && identifier_p (name)
2797 && (expr = objc_maybe_build_component_ref (object, name)))
2798 return expr;
2800 /* [expr.ref]
2802 The type of the first expression shall be "class object" (of a
2803 complete type). */
2804 if (!currently_open_class (object_type)
2805 && !complete_type_or_maybe_complain (object_type, object, complain))
2806 return error_mark_node;
2807 if (!CLASS_TYPE_P (object_type))
2809 if (complain & tf_error)
2811 if (INDIRECT_TYPE_P (object_type)
2812 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2813 error ("request for member %qD in %qE, which is of pointer "
2814 "type %qT (maybe you meant to use %<->%> ?)",
2815 name, object.get_value (), object_type);
2816 else
2817 error ("request for member %qD in %qE, which is of non-class "
2818 "type %qT", name, object.get_value (), object_type);
2820 return error_mark_node;
2823 if (BASELINK_P (name))
2824 /* A member function that has already been looked up. */
2825 member = name;
2826 else
2828 bool is_template_id = false;
2829 tree template_args = NULL_TREE;
2830 tree scope = NULL_TREE;
2832 access_path = object_type;
2834 if (TREE_CODE (name) == SCOPE_REF)
2836 /* A qualified name. The qualifying class or namespace `S'
2837 has already been looked up; it is either a TYPE or a
2838 NAMESPACE_DECL. */
2839 scope = TREE_OPERAND (name, 0);
2840 name = TREE_OPERAND (name, 1);
2842 /* If SCOPE is a namespace, then the qualified name does not
2843 name a member of OBJECT_TYPE. */
2844 if (TREE_CODE (scope) == NAMESPACE_DECL)
2846 if (complain & tf_error)
2847 error ("%<%D::%D%> is not a member of %qT",
2848 scope, name, object_type);
2849 return error_mark_node;
2853 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2855 is_template_id = true;
2856 template_args = TREE_OPERAND (name, 1);
2857 name = TREE_OPERAND (name, 0);
2859 if (!identifier_p (name))
2860 name = OVL_NAME (name);
2863 if (scope)
2865 if (TREE_CODE (scope) == ENUMERAL_TYPE)
2867 gcc_assert (!is_template_id);
2868 /* Looking up a member enumerator (c++/56793). */
2869 if (!TYPE_CLASS_SCOPE_P (scope)
2870 || !DERIVED_FROM_P (TYPE_CONTEXT (scope), object_type))
2872 if (complain & tf_error)
2873 error ("%<%D::%D%> is not a member of %qT",
2874 scope, name, object_type);
2875 return error_mark_node;
2877 tree val = lookup_enumerator (scope, name);
2878 if (!val)
2880 if (complain & tf_error)
2881 error ("%qD is not a member of %qD",
2882 name, scope);
2883 return error_mark_node;
2886 if (TREE_SIDE_EFFECTS (object))
2887 val = build2 (COMPOUND_EXPR, TREE_TYPE (val), object, val);
2888 return val;
2891 gcc_assert (CLASS_TYPE_P (scope));
2892 gcc_assert (identifier_p (name) || TREE_CODE (name) == BIT_NOT_EXPR);
2894 if (constructor_name_p (name, scope))
2896 if (complain & tf_error)
2897 error ("cannot call constructor %<%T::%D%> directly",
2898 scope, name);
2899 return error_mark_node;
2902 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
2903 access_path = lookup_base (object_type, scope, ba_check,
2904 NULL, complain);
2905 if (access_path == error_mark_node)
2906 return error_mark_node;
2907 if (!access_path)
2909 if (any_dependent_bases_p (object_type))
2910 goto dependent;
2911 if (complain & tf_error)
2912 error ("%qT is not a base of %qT", scope, object_type);
2913 return error_mark_node;
2917 if (TREE_CODE (name) == BIT_NOT_EXPR)
2919 if (dependent_type_p (object_type))
2920 /* The destructor isn't declared yet. */
2921 goto dependent;
2922 member = lookup_destructor (object, scope, name, complain);
2924 else
2926 /* Look up the member. */
2927 access_failure_info afi;
2928 member = lookup_member (access_path, name, /*protect=*/1,
2929 /*want_type=*/false, complain,
2930 &afi);
2931 afi.maybe_suggest_accessor (TYPE_READONLY (object_type));
2932 if (member == NULL_TREE)
2934 if (dependent_type_p (object_type))
2935 /* Try again at instantiation time. */
2936 goto dependent;
2937 if (complain & tf_error)
2939 tree guessed_id = lookup_member_fuzzy (access_path, name,
2940 /*want_type=*/false);
2941 if (guessed_id)
2943 location_t bogus_component_loc = input_location;
2944 gcc_rich_location rich_loc (bogus_component_loc);
2945 rich_loc.add_fixit_misspelled_id (bogus_component_loc,
2946 guessed_id);
2947 error_at (&rich_loc,
2948 "%q#T has no member named %qE;"
2949 " did you mean %qE?",
2950 TREE_CODE (access_path) == TREE_BINFO
2951 ? TREE_TYPE (access_path) : object_type,
2952 name, guessed_id);
2954 else
2955 error ("%q#T has no member named %qE",
2956 TREE_CODE (access_path) == TREE_BINFO
2957 ? TREE_TYPE (access_path) : object_type, name);
2959 return error_mark_node;
2961 if (member == error_mark_node)
2962 return error_mark_node;
2963 if (DECL_P (member)
2964 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (member)))
2965 /* Dependent type attributes on the decl mean that the TREE_TYPE is
2966 wrong, so don't use it. */
2967 goto dependent;
2968 if (TREE_CODE (member) == USING_DECL && DECL_DEPENDENT_P (member))
2969 goto dependent;
2972 if (is_template_id)
2974 tree templ = member;
2976 if (BASELINK_P (templ))
2977 member = lookup_template_function (templ, template_args);
2978 else if (variable_template_p (templ))
2979 member = (lookup_and_finish_template_variable
2980 (templ, template_args, complain));
2981 else
2983 if (complain & tf_error)
2984 error ("%qD is not a member template function", name);
2985 return error_mark_node;
2990 if (TREE_DEPRECATED (member))
2991 warn_deprecated_use (member, NULL_TREE);
2993 if (template_p)
2994 check_template_keyword (member);
2996 expr = build_class_member_access_expr (object, member, access_path,
2997 /*preserve_reference=*/false,
2998 complain);
2999 if (processing_template_decl && expr != error_mark_node)
3001 if (BASELINK_P (member))
3003 if (TREE_CODE (orig_name) == SCOPE_REF)
3004 BASELINK_QUALIFIED_P (member) = 1;
3005 orig_name = member;
3007 return build_min_non_dep (COMPONENT_REF, expr,
3008 orig_object, orig_name,
3009 NULL_TREE);
3012 return expr;
3015 /* Build a COMPONENT_REF of OBJECT and MEMBER with the appropriate
3016 type. */
3018 tree
3019 build_simple_component_ref (tree object, tree member)
3021 tree type = cp_build_qualified_type (TREE_TYPE (member),
3022 cp_type_quals (TREE_TYPE (object)));
3023 return build3_loc (input_location,
3024 COMPONENT_REF, type,
3025 object, member, NULL_TREE);
3028 /* Return an expression for the MEMBER_NAME field in the internal
3029 representation of PTRMEM, a pointer-to-member function. (Each
3030 pointer-to-member function type gets its own RECORD_TYPE so it is
3031 more convenient to access the fields by name than by FIELD_DECL.)
3032 This routine converts the NAME to a FIELD_DECL and then creates the
3033 node for the complete expression. */
3035 tree
3036 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
3038 tree ptrmem_type;
3039 tree member;
3041 if (TREE_CODE (ptrmem) == CONSTRUCTOR)
3043 unsigned int ix;
3044 tree index, value;
3045 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ptrmem),
3046 ix, index, value)
3047 if (index && DECL_P (index) && DECL_NAME (index) == member_name)
3048 return value;
3049 gcc_unreachable ();
3052 /* This code is a stripped down version of
3053 build_class_member_access_expr. It does not work to use that
3054 routine directly because it expects the object to be of class
3055 type. */
3056 ptrmem_type = TREE_TYPE (ptrmem);
3057 gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
3058 for (member = TYPE_FIELDS (ptrmem_type); member;
3059 member = DECL_CHAIN (member))
3060 if (DECL_NAME (member) == member_name)
3061 break;
3062 tree res = build_simple_component_ref (ptrmem, member);
3064 TREE_NO_WARNING (res) = 1;
3065 return res;
3068 /* Given an expression PTR for a pointer, return an expression
3069 for the value pointed to.
3070 ERRORSTRING is the name of the operator to appear in error messages.
3072 This function may need to overload OPERATOR_FNNAME.
3073 Must also handle REFERENCE_TYPEs for C++. */
3075 tree
3076 build_x_indirect_ref (location_t loc, tree expr, ref_operator errorstring,
3077 tsubst_flags_t complain)
3079 tree orig_expr = expr;
3080 tree rval;
3081 tree overload = NULL_TREE;
3083 if (processing_template_decl)
3085 /* Retain the type if we know the operand is a pointer. */
3086 if (TREE_TYPE (expr) && INDIRECT_TYPE_P (TREE_TYPE (expr)))
3087 return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
3088 if (type_dependent_expression_p (expr))
3089 return build_min_nt_loc (loc, INDIRECT_REF, expr);
3090 expr = build_non_dependent_expr (expr);
3093 rval = build_new_op (loc, INDIRECT_REF, LOOKUP_NORMAL, expr,
3094 NULL_TREE, NULL_TREE, &overload, complain);
3095 if (!rval)
3096 rval = cp_build_indirect_ref (expr, errorstring, complain);
3098 if (processing_template_decl && rval != error_mark_node)
3100 if (overload != NULL_TREE)
3101 return (build_min_non_dep_op_overload
3102 (INDIRECT_REF, rval, overload, orig_expr));
3104 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
3106 else
3107 return rval;
3110 /* The implementation of the above, and of indirection implied by other
3111 constructs. If DO_FOLD is true, fold away INDIRECT_REF of ADDR_EXPR. */
3113 static tree
3114 cp_build_indirect_ref_1 (tree ptr, ref_operator errorstring,
3115 tsubst_flags_t complain, bool do_fold)
3117 tree pointer, type;
3119 /* RO_NULL should only be used with the folding entry points below, not
3120 cp_build_indirect_ref. */
3121 gcc_checking_assert (errorstring != RO_NULL || do_fold);
3123 if (ptr == current_class_ptr
3124 || (TREE_CODE (ptr) == NOP_EXPR
3125 && TREE_OPERAND (ptr, 0) == current_class_ptr
3126 && (same_type_ignoring_top_level_qualifiers_p
3127 (TREE_TYPE (ptr), TREE_TYPE (current_class_ptr)))))
3128 return current_class_ref;
3130 pointer = (TYPE_REF_P (TREE_TYPE (ptr))
3131 ? ptr : decay_conversion (ptr, complain));
3132 if (pointer == error_mark_node)
3133 return error_mark_node;
3135 type = TREE_TYPE (pointer);
3137 if (INDIRECT_TYPE_P (type))
3139 /* [expr.unary.op]
3141 If the type of the expression is "pointer to T," the type
3142 of the result is "T." */
3143 tree t = TREE_TYPE (type);
3145 if ((CONVERT_EXPR_P (ptr)
3146 || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
3147 && (!CLASS_TYPE_P (t) || !CLASSTYPE_EMPTY_P (t)))
3149 /* If a warning is issued, mark it to avoid duplicates from
3150 the backend. This only needs to be done at
3151 warn_strict_aliasing > 2. */
3152 if (warn_strict_aliasing > 2)
3153 if (strict_aliasing_warning (EXPR_LOCATION (ptr),
3154 type, TREE_OPERAND (ptr, 0)))
3155 TREE_NO_WARNING (ptr) = 1;
3158 if (VOID_TYPE_P (t))
3160 /* A pointer to incomplete type (other than cv void) can be
3161 dereferenced [expr.unary.op]/1 */
3162 if (complain & tf_error)
3163 error ("%qT is not a pointer-to-object type", type);
3164 return error_mark_node;
3166 else if (do_fold && TREE_CODE (pointer) == ADDR_EXPR
3167 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
3168 /* The POINTER was something like `&x'. We simplify `*&x' to
3169 `x'. */
3170 return TREE_OPERAND (pointer, 0);
3171 else
3173 tree ref = build1 (INDIRECT_REF, t, pointer);
3175 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
3176 so that we get the proper error message if the result is used
3177 to assign to. Also, &* is supposed to be a no-op. */
3178 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
3179 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
3180 TREE_SIDE_EFFECTS (ref)
3181 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
3182 return ref;
3185 else if (!(complain & tf_error))
3186 /* Don't emit any errors; we'll just return ERROR_MARK_NODE later. */
3188 /* `pointer' won't be an error_mark_node if we were given a
3189 pointer to member, so it's cool to check for this here. */
3190 else if (TYPE_PTRMEM_P (type))
3191 switch (errorstring)
3193 case RO_ARRAY_INDEXING:
3194 error ("invalid use of array indexing on pointer to member");
3195 break;
3196 case RO_UNARY_STAR:
3197 error ("invalid use of unary %<*%> on pointer to member");
3198 break;
3199 case RO_IMPLICIT_CONVERSION:
3200 error ("invalid use of implicit conversion on pointer to member");
3201 break;
3202 case RO_ARROW_STAR:
3203 error ("left hand operand of %<->*%> must be a pointer to class, "
3204 "but is a pointer to member of type %qT", type);
3205 break;
3206 default:
3207 gcc_unreachable ();
3209 else if (pointer != error_mark_node)
3210 invalid_indirection_error (input_location, type, errorstring);
3212 return error_mark_node;
3215 /* Entry point used by c-common, which expects folding. */
3217 tree
3218 build_indirect_ref (location_t /*loc*/,
3219 tree ptr, ref_operator errorstring)
3221 return cp_build_indirect_ref_1 (ptr, errorstring, tf_warning_or_error, true);
3224 /* Entry point used by internal indirection needs that don't correspond to any
3225 syntactic construct. */
3227 tree
3228 cp_build_fold_indirect_ref (tree pointer)
3230 return cp_build_indirect_ref_1 (pointer, RO_NULL, tf_warning_or_error, true);
3233 /* Entry point used by indirection needs that correspond to some syntactic
3234 construct. */
3236 tree
3237 cp_build_indirect_ref (tree ptr, ref_operator errorstring,
3238 tsubst_flags_t complain)
3240 return cp_build_indirect_ref_1 (ptr, errorstring, complain, false);
3243 /* This handles expressions of the form "a[i]", which denotes
3244 an array reference.
3246 This is logically equivalent in C to *(a+i), but we may do it differently.
3247 If A is a variable or a member, we generate a primitive ARRAY_REF.
3248 This avoids forcing the array out of registers, and can work on
3249 arrays that are not lvalues (for example, members of structures returned
3250 by functions).
3252 If INDEX is of some user-defined type, it must be converted to
3253 integer type. Otherwise, to make a compatible PLUS_EXPR, it
3254 will inherit the type of the array, which will be some pointer type.
3256 LOC is the location to use in building the array reference. */
3258 tree
3259 cp_build_array_ref (location_t loc, tree array, tree idx,
3260 tsubst_flags_t complain)
3262 tree ret;
3264 if (idx == 0)
3266 if (complain & tf_error)
3267 error_at (loc, "subscript missing in array reference");
3268 return error_mark_node;
3271 if (TREE_TYPE (array) == error_mark_node
3272 || TREE_TYPE (idx) == error_mark_node)
3273 return error_mark_node;
3275 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
3276 inside it. */
3277 switch (TREE_CODE (array))
3279 case COMPOUND_EXPR:
3281 tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3282 complain);
3283 ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
3284 TREE_OPERAND (array, 0), value);
3285 SET_EXPR_LOCATION (ret, loc);
3286 return ret;
3289 case COND_EXPR:
3290 ret = build_conditional_expr
3291 (loc, TREE_OPERAND (array, 0),
3292 cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3293 complain),
3294 cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
3295 complain),
3296 complain);
3297 protected_set_expr_location (ret, loc);
3298 return ret;
3300 default:
3301 break;
3304 bool non_lvalue = convert_vector_to_array_for_subscript (loc, &array, idx);
3306 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
3308 tree rval, type;
3310 warn_array_subscript_with_type_char (loc, idx);
3312 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
3314 if (complain & tf_error)
3315 error_at (loc, "array subscript is not an integer");
3316 return error_mark_node;
3319 /* Apply integral promotions *after* noticing character types.
3320 (It is unclear why we do these promotions -- the standard
3321 does not say that we should. In fact, the natural thing would
3322 seem to be to convert IDX to ptrdiff_t; we're performing
3323 pointer arithmetic.) */
3324 idx = cp_perform_integral_promotions (idx, complain);
3326 /* An array that is indexed by a non-constant
3327 cannot be stored in a register; we must be able to do
3328 address arithmetic on its address.
3329 Likewise an array of elements of variable size. */
3330 if (TREE_CODE (idx) != INTEGER_CST
3331 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
3332 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
3333 != INTEGER_CST)))
3335 if (!cxx_mark_addressable (array, true))
3336 return error_mark_node;
3339 /* An array that is indexed by a constant value which is not within
3340 the array bounds cannot be stored in a register either; because we
3341 would get a crash in store_bit_field/extract_bit_field when trying
3342 to access a non-existent part of the register. */
3343 if (TREE_CODE (idx) == INTEGER_CST
3344 && TYPE_DOMAIN (TREE_TYPE (array))
3345 && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
3347 if (!cxx_mark_addressable (array))
3348 return error_mark_node;
3351 /* Note in C++ it is valid to subscript a `register' array, since
3352 it is valid to take the address of something with that
3353 storage specification. */
3354 if (extra_warnings)
3356 tree foo = array;
3357 while (TREE_CODE (foo) == COMPONENT_REF)
3358 foo = TREE_OPERAND (foo, 0);
3359 if (VAR_P (foo) && DECL_REGISTER (foo)
3360 && (complain & tf_warning))
3361 warning_at (loc, OPT_Wextra,
3362 "subscripting array declared %<register%>");
3365 type = TREE_TYPE (TREE_TYPE (array));
3366 rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
3367 /* Array ref is const/volatile if the array elements are
3368 or if the array is.. */
3369 TREE_READONLY (rval)
3370 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
3371 TREE_SIDE_EFFECTS (rval)
3372 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
3373 TREE_THIS_VOLATILE (rval)
3374 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
3375 ret = require_complete_type_sfinae (rval, complain);
3376 protected_set_expr_location (ret, loc);
3377 if (non_lvalue)
3378 ret = non_lvalue_loc (loc, ret);
3379 return ret;
3383 tree ar = cp_default_conversion (array, complain);
3384 tree ind = cp_default_conversion (idx, complain);
3386 /* Put the integer in IND to simplify error checking. */
3387 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
3388 std::swap (ar, ind);
3390 if (ar == error_mark_node || ind == error_mark_node)
3391 return error_mark_node;
3393 if (!TYPE_PTR_P (TREE_TYPE (ar)))
3395 if (complain & tf_error)
3396 error_at (loc, "subscripted value is neither array nor pointer");
3397 return error_mark_node;
3399 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
3401 if (complain & tf_error)
3402 error_at (loc, "array subscript is not an integer");
3403 return error_mark_node;
3406 warn_array_subscript_with_type_char (loc, idx);
3408 ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
3409 PLUS_EXPR, ar, ind,
3410 complain),
3411 RO_ARRAY_INDEXING,
3412 complain);
3413 protected_set_expr_location (ret, loc);
3414 if (non_lvalue)
3415 ret = non_lvalue_loc (loc, ret);
3416 return ret;
3420 /* Entry point for Obj-C++. */
3422 tree
3423 build_array_ref (location_t loc, tree array, tree idx)
3425 return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
3428 /* Resolve a pointer to member function. INSTANCE is the object
3429 instance to use, if the member points to a virtual member.
3431 This used to avoid checking for virtual functions if basetype
3432 has no virtual functions, according to an earlier ANSI draft.
3433 With the final ISO C++ rules, such an optimization is
3434 incorrect: A pointer to a derived member can be static_cast
3435 to pointer-to-base-member, as long as the dynamic object
3436 later has the right member. So now we only do this optimization
3437 when we know the dynamic type of the object. */
3439 tree
3440 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function,
3441 tsubst_flags_t complain)
3443 if (TREE_CODE (function) == OFFSET_REF)
3444 function = TREE_OPERAND (function, 1);
3446 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3448 tree idx, delta, e1, e2, e3, vtbl;
3449 bool nonvirtual;
3450 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3451 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3453 tree instance_ptr = *instance_ptrptr;
3454 tree instance_save_expr = 0;
3455 if (instance_ptr == error_mark_node)
3457 if (TREE_CODE (function) == PTRMEM_CST)
3459 /* Extracting the function address from a pmf is only
3460 allowed with -Wno-pmf-conversions. It only works for
3461 pmf constants. */
3462 e1 = build_addr_func (PTRMEM_CST_MEMBER (function), complain);
3463 e1 = convert (fntype, e1);
3464 return e1;
3466 else
3468 if (complain & tf_error)
3469 error ("object missing in use of %qE", function);
3470 return error_mark_node;
3474 /* True if we know that the dynamic type of the object doesn't have
3475 virtual functions, so we can assume the PFN field is a pointer. */
3476 nonvirtual = (COMPLETE_TYPE_P (basetype)
3477 && !TYPE_POLYMORPHIC_P (basetype)
3478 && resolves_to_fixed_type_p (instance_ptr, 0));
3480 /* If we don't really have an object (i.e. in an ill-formed
3481 conversion from PMF to pointer), we can't resolve virtual
3482 functions anyway. */
3483 if (!nonvirtual && is_dummy_object (instance_ptr))
3484 nonvirtual = true;
3486 if (TREE_SIDE_EFFECTS (instance_ptr))
3487 instance_ptr = instance_save_expr = save_expr (instance_ptr);
3489 if (TREE_SIDE_EFFECTS (function))
3490 function = save_expr (function);
3492 /* Start by extracting all the information from the PMF itself. */
3493 e3 = pfn_from_ptrmemfunc (function);
3494 delta = delta_from_ptrmemfunc (function);
3495 idx = build1 (NOP_EXPR, vtable_index_type, e3);
3496 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3498 int flag_sanitize_save;
3499 case ptrmemfunc_vbit_in_pfn:
3500 e1 = cp_build_binary_op (input_location,
3501 BIT_AND_EXPR, idx, integer_one_node,
3502 complain);
3503 idx = cp_build_binary_op (input_location,
3504 MINUS_EXPR, idx, integer_one_node,
3505 complain);
3506 if (idx == error_mark_node)
3507 return error_mark_node;
3508 break;
3510 case ptrmemfunc_vbit_in_delta:
3511 e1 = cp_build_binary_op (input_location,
3512 BIT_AND_EXPR, delta, integer_one_node,
3513 complain);
3514 /* Don't instrument the RSHIFT_EXPR we're about to create because
3515 we're going to use DELTA number of times, and that wouldn't play
3516 well with SAVE_EXPRs therein. */
3517 flag_sanitize_save = flag_sanitize;
3518 flag_sanitize = 0;
3519 delta = cp_build_binary_op (input_location,
3520 RSHIFT_EXPR, delta, integer_one_node,
3521 complain);
3522 flag_sanitize = flag_sanitize_save;
3523 if (delta == error_mark_node)
3524 return error_mark_node;
3525 break;
3527 default:
3528 gcc_unreachable ();
3531 if (e1 == error_mark_node)
3532 return error_mark_node;
3534 /* Convert down to the right base before using the instance. A
3535 special case is that in a pointer to member of class C, C may
3536 be incomplete. In that case, the function will of course be
3537 a member of C, and no conversion is required. In fact,
3538 lookup_base will fail in that case, because incomplete
3539 classes do not have BINFOs. */
3540 if (!same_type_ignoring_top_level_qualifiers_p
3541 (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3543 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3544 basetype, ba_check, NULL, complain);
3545 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3546 1, complain);
3547 if (instance_ptr == error_mark_node)
3548 return error_mark_node;
3550 /* ...and then the delta in the PMF. */
3551 instance_ptr = fold_build_pointer_plus (instance_ptr, delta);
3553 /* Hand back the adjusted 'this' argument to our caller. */
3554 *instance_ptrptr = instance_ptr;
3556 if (nonvirtual)
3557 /* Now just return the pointer. */
3558 return e3;
3560 /* Next extract the vtable pointer from the object. */
3561 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3562 instance_ptr);
3563 vtbl = cp_build_fold_indirect_ref (vtbl);
3564 if (vtbl == error_mark_node)
3565 return error_mark_node;
3567 /* Finally, extract the function pointer from the vtable. */
3568 e2 = fold_build_pointer_plus_loc (input_location, vtbl, idx);
3569 e2 = cp_build_fold_indirect_ref (e2);
3570 if (e2 == error_mark_node)
3571 return error_mark_node;
3572 TREE_CONSTANT (e2) = 1;
3574 /* When using function descriptors, the address of the
3575 vtable entry is treated as a function pointer. */
3576 if (TARGET_VTABLE_USES_DESCRIPTORS)
3577 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3578 cp_build_addr_expr (e2, complain));
3580 e2 = fold_convert (TREE_TYPE (e3), e2);
3581 e1 = build_conditional_expr (input_location, e1, e2, e3, complain);
3582 if (e1 == error_mark_node)
3583 return error_mark_node;
3585 /* Make sure this doesn't get evaluated first inside one of the
3586 branches of the COND_EXPR. */
3587 if (instance_save_expr)
3588 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3589 instance_save_expr, e1);
3591 function = e1;
3593 return function;
3596 /* Used by the C-common bits. */
3597 tree
3598 build_function_call (location_t /*loc*/,
3599 tree function, tree params)
3601 return cp_build_function_call (function, params, tf_warning_or_error);
3604 /* Used by the C-common bits. */
3605 tree
3606 build_function_call_vec (location_t /*loc*/, vec<location_t> /*arg_loc*/,
3607 tree function, vec<tree, va_gc> *params,
3608 vec<tree, va_gc> * /*origtypes*/)
3610 vec<tree, va_gc> *orig_params = params;
3611 tree ret = cp_build_function_call_vec (function, &params,
3612 tf_warning_or_error);
3614 /* cp_build_function_call_vec can reallocate PARAMS by adding
3615 default arguments. That should never happen here. Verify
3616 that. */
3617 gcc_assert (params == orig_params);
3619 return ret;
3622 /* Build a function call using a tree list of arguments. */
3624 static tree
3625 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3627 vec<tree, va_gc> *vec;
3628 tree ret;
3630 vec = make_tree_vector ();
3631 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3632 vec_safe_push (vec, TREE_VALUE (params));
3633 ret = cp_build_function_call_vec (function, &vec, complain);
3634 release_tree_vector (vec);
3635 return ret;
3638 /* Build a function call using varargs. */
3640 tree
3641 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3643 vec<tree, va_gc> *vec;
3644 va_list args;
3645 tree ret, t;
3647 vec = make_tree_vector ();
3648 va_start (args, complain);
3649 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3650 vec_safe_push (vec, t);
3651 va_end (args);
3652 ret = cp_build_function_call_vec (function, &vec, complain);
3653 release_tree_vector (vec);
3654 return ret;
3657 /* Build a function call using a vector of arguments. PARAMS may be
3658 NULL if there are no parameters. This changes the contents of
3659 PARAMS. */
3661 tree
3662 cp_build_function_call_vec (tree function, vec<tree, va_gc> **params,
3663 tsubst_flags_t complain)
3665 tree fntype, fndecl;
3666 int is_method;
3667 tree original = function;
3668 int nargs;
3669 tree *argarray;
3670 tree parm_types;
3671 vec<tree, va_gc> *allocated = NULL;
3672 tree ret;
3674 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3675 expressions, like those used for ObjC messenger dispatches. */
3676 if (params != NULL && !vec_safe_is_empty (*params))
3677 function = objc_rewrite_function_call (function, (**params)[0]);
3679 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3680 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3681 if (TREE_CODE (function) == NOP_EXPR
3682 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3683 function = TREE_OPERAND (function, 0);
3685 if (TREE_CODE (function) == FUNCTION_DECL)
3687 /* If the function is a non-template member function
3688 or a non-template friend, then we need to check the
3689 constraints.
3691 Note that if overload resolution failed with a single
3692 candidate this function will be used to explicitly diagnose
3693 the failure for the single call expression. The check is
3694 technically redundant since we also would have failed in
3695 add_function_candidate. */
3696 if (flag_concepts
3697 && (complain & tf_error)
3698 && !constraints_satisfied_p (function))
3700 error ("cannot call function %qD", function);
3701 location_t loc = DECL_SOURCE_LOCATION (function);
3702 diagnose_constraints (loc, function, NULL_TREE);
3703 return error_mark_node;
3706 if (!mark_used (function, complain) && !(complain & tf_error))
3707 return error_mark_node;
3708 fndecl = function;
3710 /* Convert anything with function type to a pointer-to-function. */
3711 if (DECL_MAIN_P (function))
3713 if (complain & tf_error)
3714 pedwarn (input_location, OPT_Wpedantic,
3715 "ISO C++ forbids calling %<::main%> from within program");
3716 else
3717 return error_mark_node;
3719 function = build_addr_func (function, complain);
3721 else
3723 fndecl = NULL_TREE;
3725 function = build_addr_func (function, complain);
3728 if (function == error_mark_node)
3729 return error_mark_node;
3731 fntype = TREE_TYPE (function);
3733 if (TYPE_PTRMEMFUNC_P (fntype))
3735 if (complain & tf_error)
3736 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3737 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3738 original, original);
3739 return error_mark_node;
3742 is_method = (TYPE_PTR_P (fntype)
3743 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3745 if (!(TYPE_PTRFN_P (fntype)
3746 || is_method
3747 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3749 if (complain & tf_error)
3751 if (!flag_diagnostics_show_caret)
3752 error_at (input_location,
3753 "%qE cannot be used as a function", original);
3754 else if (DECL_P (original))
3755 error_at (input_location,
3756 "%qD cannot be used as a function", original);
3757 else
3758 error_at (input_location,
3759 "expression cannot be used as a function");
3762 return error_mark_node;
3765 /* fntype now gets the type of function pointed to. */
3766 fntype = TREE_TYPE (fntype);
3767 parm_types = TYPE_ARG_TYPES (fntype);
3769 if (params == NULL)
3771 allocated = make_tree_vector ();
3772 params = &allocated;
3775 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3776 complain);
3777 if (nargs < 0)
3778 return error_mark_node;
3780 argarray = (*params)->address ();
3782 /* Check for errors in format strings and inappropriately
3783 null parameters. */
3784 bool warned_p = check_function_arguments (input_location, fndecl, fntype,
3785 nargs, argarray, NULL);
3787 ret = build_cxx_call (function, nargs, argarray, complain);
3789 if (warned_p)
3791 tree c = extract_call_expr (ret);
3792 if (TREE_CODE (c) == CALL_EXPR)
3793 TREE_NO_WARNING (c) = 1;
3796 if (allocated != NULL)
3797 release_tree_vector (allocated);
3799 return ret;
3802 /* Subroutine of convert_arguments.
3803 Print an error message about a wrong number of arguments. */
3805 static void
3806 error_args_num (location_t loc, tree fndecl, bool too_many_p)
3808 if (fndecl)
3810 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3812 if (DECL_NAME (fndecl) == NULL_TREE
3813 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3814 error_at (loc,
3815 too_many_p
3816 ? G_("too many arguments to constructor %q#D")
3817 : G_("too few arguments to constructor %q#D"),
3818 fndecl);
3819 else
3820 error_at (loc,
3821 too_many_p
3822 ? G_("too many arguments to member function %q#D")
3823 : G_("too few arguments to member function %q#D"),
3824 fndecl);
3826 else
3827 error_at (loc,
3828 too_many_p
3829 ? G_("too many arguments to function %q#D")
3830 : G_("too few arguments to function %q#D"),
3831 fndecl);
3832 if (!DECL_IS_BUILTIN (fndecl))
3833 inform (DECL_SOURCE_LOCATION (fndecl), "declared here");
3835 else
3837 if (c_dialect_objc () && objc_message_selector ())
3838 error_at (loc,
3839 too_many_p
3840 ? G_("too many arguments to method %q#D")
3841 : G_("too few arguments to method %q#D"),
3842 objc_message_selector ());
3843 else
3844 error_at (loc, too_many_p ? G_("too many arguments to function")
3845 : G_("too few arguments to function"));
3849 /* Convert the actual parameter expressions in the list VALUES to the
3850 types in the list TYPELIST. The converted expressions are stored
3851 back in the VALUES vector.
3852 If parmdecls is exhausted, or when an element has NULL as its type,
3853 perform the default conversions.
3855 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3857 This is also where warnings about wrong number of args are generated.
3859 Returns the actual number of arguments processed (which might be less
3860 than the length of the vector), or -1 on error.
3862 In C++, unspecified trailing parameters can be filled in with their
3863 default arguments, if such were specified. Do so here. */
3865 static int
3866 convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
3867 int flags, tsubst_flags_t complain)
3869 tree typetail;
3870 unsigned int i;
3872 /* Argument passing is always copy-initialization. */
3873 flags |= LOOKUP_ONLYCONVERTING;
3875 for (i = 0, typetail = typelist;
3876 i < vec_safe_length (*values);
3877 i++)
3879 tree type = typetail ? TREE_VALUE (typetail) : 0;
3880 tree val = (**values)[i];
3882 if (val == error_mark_node || type == error_mark_node)
3883 return -1;
3885 if (type == void_type_node)
3887 if (complain & tf_error)
3889 error_args_num (input_location, fndecl, /*too_many_p=*/true);
3890 return i;
3892 else
3893 return -1;
3896 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3897 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3898 if (TREE_CODE (val) == NOP_EXPR
3899 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3900 && (type == 0 || !TYPE_REF_P (type)))
3901 val = TREE_OPERAND (val, 0);
3903 if (type == 0 || !TYPE_REF_P (type))
3905 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3906 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3907 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3908 val = decay_conversion (val, complain);
3911 if (val == error_mark_node)
3912 return -1;
3914 if (type != 0)
3916 /* Formal parm type is specified by a function prototype. */
3917 tree parmval;
3919 if (!COMPLETE_TYPE_P (complete_type (type)))
3921 if (complain & tf_error)
3923 if (fndecl)
3924 error ("parameter %P of %qD has incomplete type %qT",
3925 i, fndecl, type);
3926 else
3927 error ("parameter %P has incomplete type %qT", i, type);
3929 parmval = error_mark_node;
3931 else
3933 parmval = convert_for_initialization
3934 (NULL_TREE, type, val, flags,
3935 ICR_ARGPASS, fndecl, i, complain);
3936 parmval = convert_for_arg_passing (type, parmval, complain);
3939 if (parmval == error_mark_node)
3940 return -1;
3942 (**values)[i] = parmval;
3944 else
3946 if (fndecl && magic_varargs_p (fndecl))
3947 /* Don't do ellipsis conversion for __built_in_constant_p
3948 as this will result in spurious errors for non-trivial
3949 types. */
3950 val = require_complete_type_sfinae (val, complain);
3951 else
3952 val = convert_arg_to_ellipsis (val, complain);
3954 (**values)[i] = val;
3957 if (typetail)
3958 typetail = TREE_CHAIN (typetail);
3961 if (typetail != 0 && typetail != void_list_node)
3963 /* See if there are default arguments that can be used. Because
3964 we hold default arguments in the FUNCTION_TYPE (which is so
3965 wrong), we can see default parameters here from deduced
3966 contexts (and via typeof) for indirect function calls.
3967 Fortunately we know whether we have a function decl to
3968 provide default arguments in a language conformant
3969 manner. */
3970 if (fndecl && TREE_PURPOSE (typetail)
3971 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3973 for (; typetail != void_list_node; ++i)
3975 /* After DR777, with explicit template args we can end up with a
3976 default argument followed by no default argument. */
3977 if (!TREE_PURPOSE (typetail))
3978 break;
3979 tree parmval
3980 = convert_default_arg (TREE_VALUE (typetail),
3981 TREE_PURPOSE (typetail),
3982 fndecl, i, complain);
3984 if (parmval == error_mark_node)
3985 return -1;
3987 vec_safe_push (*values, parmval);
3988 typetail = TREE_CHAIN (typetail);
3989 /* ends with `...'. */
3990 if (typetail == NULL_TREE)
3991 break;
3995 if (typetail && typetail != void_list_node)
3997 if (complain & tf_error)
3998 error_args_num (input_location, fndecl, /*too_many_p=*/false);
3999 return -1;
4003 return (int) i;
4006 /* Build a binary-operation expression, after performing default
4007 conversions on the operands. CODE is the kind of expression to
4008 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
4009 are the tree codes which correspond to ARG1 and ARG2 when issuing
4010 warnings about possibly misplaced parentheses. They may differ
4011 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
4012 folding (e.g., if the parser sees "a | 1 + 1", it may call this
4013 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
4014 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
4015 ARG2_CODE as ERROR_MARK. */
4017 tree
4018 build_x_binary_op (location_t loc, enum tree_code code, tree arg1,
4019 enum tree_code arg1_code, tree arg2,
4020 enum tree_code arg2_code, tree *overload_p,
4021 tsubst_flags_t complain)
4023 tree orig_arg1;
4024 tree orig_arg2;
4025 tree expr;
4026 tree overload = NULL_TREE;
4028 orig_arg1 = arg1;
4029 orig_arg2 = arg2;
4031 if (processing_template_decl)
4033 if (type_dependent_expression_p (arg1)
4034 || type_dependent_expression_p (arg2))
4035 return build_min_nt_loc (loc, code, arg1, arg2);
4036 arg1 = build_non_dependent_expr (arg1);
4037 arg2 = build_non_dependent_expr (arg2);
4040 if (code == DOTSTAR_EXPR)
4041 expr = build_m_component_ref (arg1, arg2, complain);
4042 else
4043 expr = build_new_op (loc, code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
4044 &overload, complain);
4046 if (overload_p != NULL)
4047 *overload_p = overload;
4049 /* Check for cases such as x+y<<z which users are likely to
4050 misinterpret. But don't warn about obj << x + y, since that is a
4051 common idiom for I/O. */
4052 if (warn_parentheses
4053 && (complain & tf_warning)
4054 && !processing_template_decl
4055 && !error_operand_p (arg1)
4056 && !error_operand_p (arg2)
4057 && (code != LSHIFT_EXPR
4058 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
4059 warn_about_parentheses (loc, code, arg1_code, orig_arg1,
4060 arg2_code, orig_arg2);
4062 if (processing_template_decl && expr != error_mark_node)
4064 if (overload != NULL_TREE)
4065 return (build_min_non_dep_op_overload
4066 (code, expr, overload, orig_arg1, orig_arg2));
4068 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
4071 return expr;
4074 /* Build and return an ARRAY_REF expression. */
4076 tree
4077 build_x_array_ref (location_t loc, tree arg1, tree arg2,
4078 tsubst_flags_t complain)
4080 tree orig_arg1 = arg1;
4081 tree orig_arg2 = arg2;
4082 tree expr;
4083 tree overload = NULL_TREE;
4085 if (processing_template_decl)
4087 if (type_dependent_expression_p (arg1)
4088 || type_dependent_expression_p (arg2))
4089 return build_min_nt_loc (loc, ARRAY_REF, arg1, arg2,
4090 NULL_TREE, NULL_TREE);
4091 arg1 = build_non_dependent_expr (arg1);
4092 arg2 = build_non_dependent_expr (arg2);
4095 expr = build_new_op (loc, ARRAY_REF, LOOKUP_NORMAL, arg1, arg2,
4096 NULL_TREE, &overload, complain);
4098 if (processing_template_decl && expr != error_mark_node)
4100 if (overload != NULL_TREE)
4101 return (build_min_non_dep_op_overload
4102 (ARRAY_REF, expr, overload, orig_arg1, orig_arg2));
4104 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
4105 NULL_TREE, NULL_TREE);
4107 return expr;
4110 /* Return whether OP is an expression of enum type cast to integer
4111 type. In C++ even unsigned enum types are cast to signed integer
4112 types. We do not want to issue warnings about comparisons between
4113 signed and unsigned types when one of the types is an enum type.
4114 Those warnings are always false positives in practice. */
4116 static bool
4117 enum_cast_to_int (tree op)
4119 if (CONVERT_EXPR_P (op)
4120 && TREE_TYPE (op) == integer_type_node
4121 && TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == ENUMERAL_TYPE
4122 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 0))))
4123 return true;
4125 /* The cast may have been pushed into a COND_EXPR. */
4126 if (TREE_CODE (op) == COND_EXPR)
4127 return (enum_cast_to_int (TREE_OPERAND (op, 1))
4128 || enum_cast_to_int (TREE_OPERAND (op, 2)));
4130 return false;
4133 /* For the c-common bits. */
4134 tree
4135 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
4136 bool /*convert_p*/)
4138 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
4141 /* Build a vector comparison of ARG0 and ARG1 using CODE opcode
4142 into a value of TYPE type. Comparison is done via VEC_COND_EXPR. */
4144 static tree
4145 build_vec_cmp (tree_code code, tree type,
4146 tree arg0, tree arg1)
4148 tree zero_vec = build_zero_cst (type);
4149 tree minus_one_vec = build_minus_one_cst (type);
4150 tree cmp_type = build_same_sized_truth_vector_type(type);
4151 tree cmp = build2 (code, cmp_type, arg0, arg1);
4152 return build3 (VEC_COND_EXPR, type, cmp, minus_one_vec, zero_vec);
4155 /* Possibly warn about an address never being NULL. */
4157 static void
4158 warn_for_null_address (location_t location, tree op, tsubst_flags_t complain)
4160 if (!warn_address
4161 || (complain & tf_warning) == 0
4162 || c_inhibit_evaluation_warnings != 0
4163 || TREE_NO_WARNING (op))
4164 return;
4166 tree cop = fold_non_dependent_expr (op);
4168 if (TREE_CODE (cop) == ADDR_EXPR
4169 && decl_with_nonnull_addr_p (TREE_OPERAND (cop, 0))
4170 && !TREE_NO_WARNING (cop))
4171 warning_at (location, OPT_Waddress, "the address of %qD will never "
4172 "be NULL", TREE_OPERAND (cop, 0));
4174 if (CONVERT_EXPR_P (op)
4175 && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (op, 0))))
4177 tree inner_op = op;
4178 STRIP_NOPS (inner_op);
4180 if (DECL_P (inner_op))
4181 warning_at (location, OPT_Waddress,
4182 "the compiler can assume that the address of "
4183 "%qD will never be NULL", inner_op);
4187 /* Build a binary-operation expression without default conversions.
4188 CODE is the kind of expression to build.
4189 LOCATION is the location_t of the operator in the source code.
4190 This function differs from `build' in several ways:
4191 the data type of the result is computed and recorded in it,
4192 warnings are generated if arg data types are invalid,
4193 special handling for addition and subtraction of pointers is known,
4194 and some optimization is done (operations on narrow ints
4195 are done in the narrower type when that gives the same result).
4196 Constant folding is also done before the result is returned.
4198 Note that the operands will never have enumeral types
4199 because either they have just had the default conversions performed
4200 or they have both just been converted to some other type in which
4201 the arithmetic is to be done.
4203 C++: must do special pointer arithmetic when implementing
4204 multiple inheritance, and deal with pointer to member functions. */
4206 tree
4207 cp_build_binary_op (location_t location,
4208 enum tree_code code, tree orig_op0, tree orig_op1,
4209 tsubst_flags_t complain)
4211 tree op0, op1;
4212 enum tree_code code0, code1;
4213 tree type0, type1;
4214 const char *invalid_op_diag;
4216 /* Expression code to give to the expression when it is built.
4217 Normally this is CODE, which is what the caller asked for,
4218 but in some special cases we change it. */
4219 enum tree_code resultcode = code;
4221 /* Data type in which the computation is to be performed.
4222 In the simplest cases this is the common type of the arguments. */
4223 tree result_type = NULL_TREE;
4225 /* Nonzero means operands have already been type-converted
4226 in whatever way is necessary.
4227 Zero means they need to be converted to RESULT_TYPE. */
4228 int converted = 0;
4230 /* Nonzero means create the expression with this type, rather than
4231 RESULT_TYPE. */
4232 tree build_type = 0;
4234 /* Nonzero means after finally constructing the expression
4235 convert it to this type. */
4236 tree final_type = 0;
4238 tree result, result_ovl;
4240 /* Nonzero if this is an operation like MIN or MAX which can
4241 safely be computed in short if both args are promoted shorts.
4242 Also implies COMMON.
4243 -1 indicates a bitwise operation; this makes a difference
4244 in the exact conditions for when it is safe to do the operation
4245 in a narrower mode. */
4246 int shorten = 0;
4248 /* Nonzero if this is a comparison operation;
4249 if both args are promoted shorts, compare the original shorts.
4250 Also implies COMMON. */
4251 int short_compare = 0;
4253 /* Nonzero means set RESULT_TYPE to the common type of the args. */
4254 int common = 0;
4256 /* True if both operands have arithmetic type. */
4257 bool arithmetic_types_p;
4259 /* Apply default conversions. */
4260 op0 = orig_op0;
4261 op1 = orig_op1;
4263 /* Remember whether we're doing / or %. */
4264 bool doing_div_or_mod = false;
4266 /* Remember whether we're doing << or >>. */
4267 bool doing_shift = false;
4269 /* Tree holding instrumentation expression. */
4270 tree instrument_expr = NULL_TREE;
4272 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
4273 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
4274 || code == TRUTH_XOR_EXPR)
4276 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
4277 op0 = decay_conversion (op0, complain);
4278 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
4279 op1 = decay_conversion (op1, complain);
4281 else
4283 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
4284 op0 = cp_default_conversion (op0, complain);
4285 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
4286 op1 = cp_default_conversion (op1, complain);
4289 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
4290 STRIP_TYPE_NOPS (op0);
4291 STRIP_TYPE_NOPS (op1);
4293 /* DTRT if one side is an overloaded function, but complain about it. */
4294 if (type_unknown_p (op0))
4296 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
4297 if (t != error_mark_node)
4299 if (complain & tf_error)
4300 permerror (input_location, "assuming cast to type %qT from overloaded function",
4301 TREE_TYPE (t));
4302 op0 = t;
4305 if (type_unknown_p (op1))
4307 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
4308 if (t != error_mark_node)
4310 if (complain & tf_error)
4311 permerror (input_location, "assuming cast to type %qT from overloaded function",
4312 TREE_TYPE (t));
4313 op1 = t;
4317 type0 = TREE_TYPE (op0);
4318 type1 = TREE_TYPE (op1);
4320 /* The expression codes of the data types of the arguments tell us
4321 whether the arguments are integers, floating, pointers, etc. */
4322 code0 = TREE_CODE (type0);
4323 code1 = TREE_CODE (type1);
4325 /* If an error was already reported for one of the arguments,
4326 avoid reporting another error. */
4327 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
4328 return error_mark_node;
4330 if ((invalid_op_diag
4331 = targetm.invalid_binary_op (code, type0, type1)))
4333 if (complain & tf_error)
4334 error (invalid_op_diag);
4335 return error_mark_node;
4338 /* Issue warnings about peculiar, but valid, uses of NULL. */
4339 if ((null_node_p (orig_op0) || null_node_p (orig_op1))
4340 /* It's reasonable to use pointer values as operands of &&
4341 and ||, so NULL is no exception. */
4342 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
4343 && ( /* Both are NULL (or 0) and the operation was not a
4344 comparison or a pointer subtraction. */
4345 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
4346 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
4347 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
4348 || (!null_ptr_cst_p (orig_op0)
4349 && !TYPE_PTR_OR_PTRMEM_P (type0))
4350 || (!null_ptr_cst_p (orig_op1)
4351 && !TYPE_PTR_OR_PTRMEM_P (type1)))
4352 && (complain & tf_warning))
4354 source_location loc =
4355 expansion_point_location_if_in_system_header (input_location);
4357 warning_at (loc, OPT_Wpointer_arith, "NULL used in arithmetic");
4360 /* In case when one of the operands of the binary operation is
4361 a vector and another is a scalar -- convert scalar to vector. */
4362 if ((code0 == VECTOR_TYPE) != (code1 == VECTOR_TYPE))
4364 enum stv_conv convert_flag = scalar_to_vector (location, code, op0, op1,
4365 complain & tf_error);
4367 switch (convert_flag)
4369 case stv_error:
4370 return error_mark_node;
4371 case stv_firstarg:
4373 op0 = convert (TREE_TYPE (type1), op0);
4374 op0 = save_expr (op0);
4375 op0 = build_vector_from_val (type1, op0);
4376 type0 = TREE_TYPE (op0);
4377 code0 = TREE_CODE (type0);
4378 converted = 1;
4379 break;
4381 case stv_secondarg:
4383 op1 = convert (TREE_TYPE (type0), op1);
4384 op1 = save_expr (op1);
4385 op1 = build_vector_from_val (type0, op1);
4386 type1 = TREE_TYPE (op1);
4387 code1 = TREE_CODE (type1);
4388 converted = 1;
4389 break;
4391 default:
4392 break;
4396 switch (code)
4398 case MINUS_EXPR:
4399 /* Subtraction of two similar pointers.
4400 We must subtract them as integers, then divide by object size. */
4401 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
4402 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
4403 TREE_TYPE (type1)))
4405 result = pointer_diff (location, op0, op1,
4406 common_pointer_type (type0, type1), complain,
4407 &instrument_expr);
4408 if (instrument_expr != NULL)
4409 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
4410 instrument_expr, result);
4412 return result;
4414 /* In all other cases except pointer - int, the usual arithmetic
4415 rules apply. */
4416 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
4418 common = 1;
4419 break;
4421 /* The pointer - int case is just like pointer + int; fall
4422 through. */
4423 gcc_fallthrough ();
4424 case PLUS_EXPR:
4425 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
4426 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
4428 tree ptr_operand;
4429 tree int_operand;
4430 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
4431 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
4432 if (processing_template_decl)
4434 result_type = TREE_TYPE (ptr_operand);
4435 break;
4437 return cp_pointer_int_sum (location, code,
4438 ptr_operand,
4439 int_operand,
4440 complain);
4442 common = 1;
4443 break;
4445 case MULT_EXPR:
4446 common = 1;
4447 break;
4449 case TRUNC_DIV_EXPR:
4450 case CEIL_DIV_EXPR:
4451 case FLOOR_DIV_EXPR:
4452 case ROUND_DIV_EXPR:
4453 case EXACT_DIV_EXPR:
4454 if (TREE_CODE (op0) == SIZEOF_EXPR && TREE_CODE (op1) == SIZEOF_EXPR)
4456 tree type0 = TREE_OPERAND (op0, 0);
4457 tree type1 = TREE_OPERAND (op1, 0);
4458 tree first_arg = type0;
4459 if (!TYPE_P (type0))
4460 type0 = TREE_TYPE (type0);
4461 if (!TYPE_P (type1))
4462 type1 = TREE_TYPE (type1);
4463 if (INDIRECT_TYPE_P (type0) && same_type_p (TREE_TYPE (type0), type1)
4464 && !(TREE_CODE (first_arg) == PARM_DECL
4465 && DECL_ARRAY_PARAMETER_P (first_arg)
4466 && warn_sizeof_array_argument)
4467 && (complain & tf_warning))
4468 if (warning_at (location, OPT_Wsizeof_pointer_div,
4469 "division %<sizeof (%T) / sizeof (%T)%> does "
4470 "not compute the number of array elements",
4471 type0, type1))
4472 if (DECL_P (first_arg))
4473 inform (DECL_SOURCE_LOCATION (first_arg),
4474 "first %<sizeof%> operand was declared here");
4477 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4478 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
4479 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4480 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
4482 enum tree_code tcode0 = code0, tcode1 = code1;
4483 tree cop1 = fold_non_dependent_expr (op1);
4484 doing_div_or_mod = true;
4485 warn_for_div_by_zero (location, cop1);
4487 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
4488 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
4489 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
4490 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
4492 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
4493 resultcode = RDIV_EXPR;
4494 else
4495 /* When dividing two signed integers, we have to promote to int.
4496 unless we divide by a constant != -1. Note that default
4497 conversion will have been performed on the operands at this
4498 point, so we have to dig out the original type to find out if
4499 it was unsigned. */
4500 shorten = ((TREE_CODE (op0) == NOP_EXPR
4501 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4502 || (TREE_CODE (op1) == INTEGER_CST
4503 && ! integer_all_onesp (op1)));
4505 common = 1;
4507 break;
4509 case BIT_AND_EXPR:
4510 case BIT_IOR_EXPR:
4511 case BIT_XOR_EXPR:
4512 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4513 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4514 && !VECTOR_FLOAT_TYPE_P (type0)
4515 && !VECTOR_FLOAT_TYPE_P (type1)))
4516 shorten = -1;
4517 break;
4519 case TRUNC_MOD_EXPR:
4520 case FLOOR_MOD_EXPR:
4522 tree cop1 = fold_non_dependent_expr (op1);
4523 doing_div_or_mod = true;
4524 warn_for_div_by_zero (location, cop1);
4527 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4528 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4529 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
4530 common = 1;
4531 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4533 /* Although it would be tempting to shorten always here, that loses
4534 on some targets, since the modulo instruction is undefined if the
4535 quotient can't be represented in the computation mode. We shorten
4536 only if unsigned or if dividing by something we know != -1. */
4537 shorten = ((TREE_CODE (op0) == NOP_EXPR
4538 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4539 || (TREE_CODE (op1) == INTEGER_CST
4540 && ! integer_all_onesp (op1)));
4541 common = 1;
4543 break;
4545 case TRUTH_ANDIF_EXPR:
4546 case TRUTH_ORIF_EXPR:
4547 case TRUTH_AND_EXPR:
4548 case TRUTH_OR_EXPR:
4549 if (!VECTOR_TYPE_P (type0) && VECTOR_TYPE_P (type1))
4551 if (!COMPARISON_CLASS_P (op1))
4552 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4553 build_zero_cst (type1), complain);
4554 if (code == TRUTH_ANDIF_EXPR)
4556 tree z = build_zero_cst (TREE_TYPE (op1));
4557 return build_conditional_expr (location, op0, op1, z, complain);
4559 else if (code == TRUTH_ORIF_EXPR)
4561 tree m1 = build_all_ones_cst (TREE_TYPE (op1));
4562 return build_conditional_expr (location, op0, m1, op1, complain);
4564 else
4565 gcc_unreachable ();
4567 if (VECTOR_TYPE_P (type0))
4569 if (!COMPARISON_CLASS_P (op0))
4570 op0 = cp_build_binary_op (EXPR_LOCATION (op0), NE_EXPR, op0,
4571 build_zero_cst (type0), complain);
4572 if (!VECTOR_TYPE_P (type1))
4574 tree m1 = build_all_ones_cst (TREE_TYPE (op0));
4575 tree z = build_zero_cst (TREE_TYPE (op0));
4576 op1 = build_conditional_expr (location, op1, m1, z, complain);
4578 else if (!COMPARISON_CLASS_P (op1))
4579 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4580 build_zero_cst (type1), complain);
4582 if (code == TRUTH_ANDIF_EXPR)
4583 code = BIT_AND_EXPR;
4584 else if (code == TRUTH_ORIF_EXPR)
4585 code = BIT_IOR_EXPR;
4586 else
4587 gcc_unreachable ();
4589 return cp_build_binary_op (location, code, op0, op1, complain);
4592 result_type = boolean_type_node;
4593 break;
4595 /* Shift operations: result has same type as first operand;
4596 always convert second operand to int.
4597 Also set SHORT_SHIFT if shifting rightward. */
4599 case RSHIFT_EXPR:
4600 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4601 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4603 result_type = type0;
4604 converted = 1;
4606 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4607 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4608 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4609 && known_eq (TYPE_VECTOR_SUBPARTS (type0),
4610 TYPE_VECTOR_SUBPARTS (type1)))
4612 result_type = type0;
4613 converted = 1;
4615 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4617 tree const_op1 = fold_non_dependent_expr (op1);
4618 if (TREE_CODE (const_op1) != INTEGER_CST)
4619 const_op1 = op1;
4620 result_type = type0;
4621 doing_shift = true;
4622 if (TREE_CODE (const_op1) == INTEGER_CST)
4624 if (tree_int_cst_lt (const_op1, integer_zero_node))
4626 if ((complain & tf_warning)
4627 && c_inhibit_evaluation_warnings == 0)
4628 warning (OPT_Wshift_count_negative,
4629 "right shift count is negative");
4631 else
4633 if (compare_tree_int (const_op1, TYPE_PRECISION (type0)) >= 0
4634 && (complain & tf_warning)
4635 && c_inhibit_evaluation_warnings == 0)
4636 warning (OPT_Wshift_count_overflow,
4637 "right shift count >= width of type");
4640 /* Avoid converting op1 to result_type later. */
4641 converted = 1;
4643 break;
4645 case LSHIFT_EXPR:
4646 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4647 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4649 result_type = type0;
4650 converted = 1;
4652 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4653 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4654 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4655 && known_eq (TYPE_VECTOR_SUBPARTS (type0),
4656 TYPE_VECTOR_SUBPARTS (type1)))
4658 result_type = type0;
4659 converted = 1;
4661 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4663 tree const_op0 = fold_non_dependent_expr (op0);
4664 if (TREE_CODE (const_op0) != INTEGER_CST)
4665 const_op0 = op0;
4666 tree const_op1 = fold_non_dependent_expr (op1);
4667 if (TREE_CODE (const_op1) != INTEGER_CST)
4668 const_op1 = op1;
4669 result_type = type0;
4670 doing_shift = true;
4671 if (TREE_CODE (const_op0) == INTEGER_CST
4672 && tree_int_cst_sgn (const_op0) < 0
4673 && (complain & tf_warning)
4674 && c_inhibit_evaluation_warnings == 0)
4675 warning (OPT_Wshift_negative_value,
4676 "left shift of negative value");
4677 if (TREE_CODE (const_op1) == INTEGER_CST)
4679 if (tree_int_cst_lt (const_op1, integer_zero_node))
4681 if ((complain & tf_warning)
4682 && c_inhibit_evaluation_warnings == 0)
4683 warning (OPT_Wshift_count_negative,
4684 "left shift count is negative");
4686 else if (compare_tree_int (const_op1,
4687 TYPE_PRECISION (type0)) >= 0)
4689 if ((complain & tf_warning)
4690 && c_inhibit_evaluation_warnings == 0)
4691 warning (OPT_Wshift_count_overflow,
4692 "left shift count >= width of type");
4694 else if (TREE_CODE (const_op0) == INTEGER_CST
4695 && (complain & tf_warning))
4696 maybe_warn_shift_overflow (location, const_op0, const_op1);
4698 /* Avoid converting op1 to result_type later. */
4699 converted = 1;
4701 break;
4703 case RROTATE_EXPR:
4704 case LROTATE_EXPR:
4705 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4707 result_type = type0;
4708 if (TREE_CODE (op1) == INTEGER_CST)
4710 if (tree_int_cst_lt (op1, integer_zero_node))
4712 if (complain & tf_warning)
4713 warning (0, (code == LROTATE_EXPR)
4714 ? G_("left rotate count is negative")
4715 : G_("right rotate count is negative"));
4717 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
4719 if (complain & tf_warning)
4720 warning (0, (code == LROTATE_EXPR)
4721 ? G_("left rotate count >= width of type")
4722 : G_("right rotate count >= width of type"));
4725 /* Convert the shift-count to an integer, regardless of
4726 size of value being shifted. */
4727 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
4728 op1 = cp_convert (integer_type_node, op1, complain);
4730 break;
4732 case EQ_EXPR:
4733 case NE_EXPR:
4734 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4735 goto vector_compare;
4736 if ((complain & tf_warning)
4737 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
4738 warning (OPT_Wfloat_equal,
4739 "comparing floating point with == or != is unsafe");
4740 if ((complain & tf_warning)
4741 && ((TREE_CODE (orig_op0) == STRING_CST
4742 && !integer_zerop (cp_fully_fold (op1)))
4743 || (TREE_CODE (orig_op1) == STRING_CST
4744 && !integer_zerop (cp_fully_fold (op0)))))
4745 warning (OPT_Waddress, "comparison with string literal results "
4746 "in unspecified behavior");
4748 build_type = boolean_type_node;
4749 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4750 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
4751 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4752 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
4753 short_compare = 1;
4754 else if (((code0 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type0))
4755 && null_ptr_cst_p (orig_op1))
4756 /* Handle, eg, (void*)0 (c++/43906), and more. */
4757 || (code0 == POINTER_TYPE
4758 && TYPE_PTR_P (type1) && integer_zerop (op1)))
4760 if (TYPE_PTR_P (type1))
4761 result_type = composite_pointer_type (type0, type1, op0, op1,
4762 CPO_COMPARISON, complain);
4763 else
4764 result_type = type0;
4766 if (char_type_p (TREE_TYPE (orig_op1))
4767 && warning (OPT_Wpointer_compare,
4768 "comparison between pointer and zero character "
4769 "constant"))
4770 inform (input_location,
4771 "did you mean to dereference the pointer?");
4772 warn_for_null_address (location, op0, complain);
4774 else if (((code1 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type1))
4775 && null_ptr_cst_p (orig_op0))
4776 /* Handle, eg, (void*)0 (c++/43906), and more. */
4777 || (code1 == POINTER_TYPE
4778 && TYPE_PTR_P (type0) && integer_zerop (op0)))
4780 if (TYPE_PTR_P (type0))
4781 result_type = composite_pointer_type (type0, type1, op0, op1,
4782 CPO_COMPARISON, complain);
4783 else
4784 result_type = type1;
4786 if (char_type_p (TREE_TYPE (orig_op0))
4787 && warning (OPT_Wpointer_compare,
4788 "comparison between pointer and zero character "
4789 "constant"))
4790 inform (input_location,
4791 "did you mean to dereference the pointer?");
4792 warn_for_null_address (location, op1, complain);
4794 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4795 || (TYPE_PTRDATAMEM_P (type0) && TYPE_PTRDATAMEM_P (type1)))
4796 result_type = composite_pointer_type (type0, type1, op0, op1,
4797 CPO_COMPARISON, complain);
4798 else if (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1))
4799 /* One of the operands must be of nullptr_t type. */
4800 result_type = TREE_TYPE (nullptr_node);
4801 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4803 result_type = type0;
4804 if (complain & tf_error)
4805 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4806 else
4807 return error_mark_node;
4809 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4811 result_type = type1;
4812 if (complain & tf_error)
4813 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4814 else
4815 return error_mark_node;
4817 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (orig_op1))
4819 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4820 == ptrmemfunc_vbit_in_delta)
4822 tree pfn0, delta0, e1, e2;
4824 if (TREE_SIDE_EFFECTS (op0))
4825 op0 = save_expr (op0);
4827 pfn0 = pfn_from_ptrmemfunc (op0);
4828 delta0 = delta_from_ptrmemfunc (op0);
4829 e1 = cp_build_binary_op (location,
4830 EQ_EXPR,
4831 pfn0,
4832 build_zero_cst (TREE_TYPE (pfn0)),
4833 complain);
4834 e2 = cp_build_binary_op (location,
4835 BIT_AND_EXPR,
4836 delta0,
4837 integer_one_node,
4838 complain);
4840 if (complain & tf_warning)
4841 maybe_warn_zero_as_null_pointer_constant (op1, input_location);
4843 e2 = cp_build_binary_op (location,
4844 EQ_EXPR, e2, integer_zero_node,
4845 complain);
4846 op0 = cp_build_binary_op (location,
4847 TRUTH_ANDIF_EXPR, e1, e2,
4848 complain);
4849 op1 = cp_convert (TREE_TYPE (op0), integer_one_node, complain);
4851 else
4853 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4854 op1 = cp_convert (TREE_TYPE (op0), op1, complain);
4856 result_type = TREE_TYPE (op0);
4858 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (orig_op0))
4859 return cp_build_binary_op (location, code, op1, op0, complain);
4860 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4862 tree type;
4863 /* E will be the final comparison. */
4864 tree e;
4865 /* E1 and E2 are for scratch. */
4866 tree e1;
4867 tree e2;
4868 tree pfn0;
4869 tree pfn1;
4870 tree delta0;
4871 tree delta1;
4873 type = composite_pointer_type (type0, type1, op0, op1,
4874 CPO_COMPARISON, complain);
4876 if (!same_type_p (TREE_TYPE (op0), type))
4877 op0 = cp_convert_and_check (type, op0, complain);
4878 if (!same_type_p (TREE_TYPE (op1), type))
4879 op1 = cp_convert_and_check (type, op1, complain);
4881 if (op0 == error_mark_node || op1 == error_mark_node)
4882 return error_mark_node;
4884 if (TREE_SIDE_EFFECTS (op0))
4885 op0 = save_expr (op0);
4886 if (TREE_SIDE_EFFECTS (op1))
4887 op1 = save_expr (op1);
4889 pfn0 = pfn_from_ptrmemfunc (op0);
4890 pfn0 = cp_fully_fold (pfn0);
4891 /* Avoid -Waddress warnings (c++/64877). */
4892 if (TREE_CODE (pfn0) == ADDR_EXPR)
4893 TREE_NO_WARNING (pfn0) = 1;
4894 pfn1 = pfn_from_ptrmemfunc (op1);
4895 pfn1 = cp_fully_fold (pfn1);
4896 delta0 = delta_from_ptrmemfunc (op0);
4897 delta1 = delta_from_ptrmemfunc (op1);
4898 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4899 == ptrmemfunc_vbit_in_delta)
4901 /* We generate:
4903 (op0.pfn == op1.pfn
4904 && ((op0.delta == op1.delta)
4905 || (!op0.pfn && op0.delta & 1 == 0
4906 && op1.delta & 1 == 0))
4908 The reason for the `!op0.pfn' bit is that a NULL
4909 pointer-to-member is any member with a zero PFN and
4910 LSB of the DELTA field is 0. */
4912 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4913 delta0,
4914 integer_one_node,
4915 complain);
4916 e1 = cp_build_binary_op (location,
4917 EQ_EXPR, e1, integer_zero_node,
4918 complain);
4919 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4920 delta1,
4921 integer_one_node,
4922 complain);
4923 e2 = cp_build_binary_op (location,
4924 EQ_EXPR, e2, integer_zero_node,
4925 complain);
4926 e1 = cp_build_binary_op (location,
4927 TRUTH_ANDIF_EXPR, e2, e1,
4928 complain);
4929 e2 = cp_build_binary_op (location, EQ_EXPR,
4930 pfn0,
4931 build_zero_cst (TREE_TYPE (pfn0)),
4932 complain);
4933 e2 = cp_build_binary_op (location,
4934 TRUTH_ANDIF_EXPR, e2, e1, complain);
4935 e1 = cp_build_binary_op (location,
4936 EQ_EXPR, delta0, delta1, complain);
4937 e1 = cp_build_binary_op (location,
4938 TRUTH_ORIF_EXPR, e1, e2, complain);
4940 else
4942 /* We generate:
4944 (op0.pfn == op1.pfn
4945 && (!op0.pfn || op0.delta == op1.delta))
4947 The reason for the `!op0.pfn' bit is that a NULL
4948 pointer-to-member is any member with a zero PFN; the
4949 DELTA field is unspecified. */
4951 e1 = cp_build_binary_op (location,
4952 EQ_EXPR, delta0, delta1, complain);
4953 e2 = cp_build_binary_op (location,
4954 EQ_EXPR,
4955 pfn0,
4956 build_zero_cst (TREE_TYPE (pfn0)),
4957 complain);
4958 e1 = cp_build_binary_op (location,
4959 TRUTH_ORIF_EXPR, e1, e2, complain);
4961 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4962 e = cp_build_binary_op (location,
4963 TRUTH_ANDIF_EXPR, e2, e1, complain);
4964 if (code == EQ_EXPR)
4965 return e;
4966 return cp_build_binary_op (location,
4967 EQ_EXPR, e, integer_zero_node, complain);
4969 else
4971 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4972 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4973 type1));
4974 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4975 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4976 type0));
4979 break;
4981 case MAX_EXPR:
4982 case MIN_EXPR:
4983 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4984 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4985 shorten = 1;
4986 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4987 result_type = composite_pointer_type (type0, type1, op0, op1,
4988 CPO_COMPARISON, complain);
4989 break;
4991 case LE_EXPR:
4992 case GE_EXPR:
4993 case LT_EXPR:
4994 case GT_EXPR:
4995 if (TREE_CODE (orig_op0) == STRING_CST
4996 || TREE_CODE (orig_op1) == STRING_CST)
4998 if (complain & tf_warning)
4999 warning (OPT_Waddress, "comparison with string literal results "
5000 "in unspecified behavior");
5003 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
5005 vector_compare:
5006 tree intt;
5007 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
5008 TREE_TYPE (type1))
5009 && !vector_types_compatible_elements_p (type0, type1))
5011 if (complain & tf_error)
5013 error_at (location, "comparing vectors with different "
5014 "element types");
5015 inform (location, "operand types are %qT and %qT",
5016 type0, type1);
5018 return error_mark_node;
5021 if (maybe_ne (TYPE_VECTOR_SUBPARTS (type0),
5022 TYPE_VECTOR_SUBPARTS (type1)))
5024 if (complain & tf_error)
5026 error_at (location, "comparing vectors with different "
5027 "number of elements");
5028 inform (location, "operand types are %qT and %qT",
5029 type0, type1);
5031 return error_mark_node;
5034 /* It's not precisely specified how the usual arithmetic
5035 conversions apply to the vector types. Here, we use
5036 the unsigned type if one of the operands is signed and
5037 the other one is unsigned. */
5038 if (TYPE_UNSIGNED (type0) != TYPE_UNSIGNED (type1))
5040 if (!TYPE_UNSIGNED (type0))
5041 op0 = build1 (VIEW_CONVERT_EXPR, type1, op0);
5042 else
5043 op1 = build1 (VIEW_CONVERT_EXPR, type0, op1);
5044 warning_at (location, OPT_Wsign_compare, "comparison between "
5045 "types %qT and %qT", type0, type1);
5048 /* Always construct signed integer vector type. */
5049 intt = c_common_type_for_size
5050 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (type0))), 0);
5051 if (!intt)
5053 if (complain & tf_error)
5054 error_at (location, "could not find an integer type "
5055 "of the same size as %qT", TREE_TYPE (type0));
5056 return error_mark_node;
5058 result_type = build_opaque_vector_type (intt,
5059 TYPE_VECTOR_SUBPARTS (type0));
5060 converted = 1;
5061 return build_vec_cmp (resultcode, result_type, op0, op1);
5063 build_type = boolean_type_node;
5064 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
5065 || code0 == ENUMERAL_TYPE)
5066 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
5067 || code1 == ENUMERAL_TYPE))
5068 short_compare = 1;
5069 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
5070 result_type = composite_pointer_type (type0, type1, op0, op1,
5071 CPO_COMPARISON, complain);
5072 else if (code0 == POINTER_TYPE && null_ptr_cst_p (orig_op1))
5074 result_type = type0;
5075 if (extra_warnings && (complain & tf_warning))
5076 warning (OPT_Wextra,
5077 "ordered comparison of pointer with integer zero");
5079 else if (code1 == POINTER_TYPE && null_ptr_cst_p (orig_op0))
5081 result_type = type1;
5082 if (extra_warnings && (complain & tf_warning))
5083 warning (OPT_Wextra,
5084 "ordered comparison of pointer with integer zero");
5086 else if (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1))
5087 /* One of the operands must be of nullptr_t type. */
5088 result_type = TREE_TYPE (nullptr_node);
5089 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
5091 result_type = type0;
5092 if (complain & tf_error)
5093 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
5094 else
5095 return error_mark_node;
5097 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
5099 result_type = type1;
5100 if (complain & tf_error)
5101 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
5102 else
5103 return error_mark_node;
5106 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
5107 && sanitize_flags_p (SANITIZE_POINTER_COMPARE))
5109 op0 = save_expr (op0);
5110 op1 = save_expr (op1);
5112 tree tt = builtin_decl_explicit (BUILT_IN_ASAN_POINTER_COMPARE);
5113 instrument_expr = build_call_expr_loc (location, tt, 2, op0, op1);
5116 break;
5118 case UNORDERED_EXPR:
5119 case ORDERED_EXPR:
5120 case UNLT_EXPR:
5121 case UNLE_EXPR:
5122 case UNGT_EXPR:
5123 case UNGE_EXPR:
5124 case UNEQ_EXPR:
5125 build_type = integer_type_node;
5126 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
5128 if (complain & tf_error)
5129 error ("unordered comparison on non-floating point argument");
5130 return error_mark_node;
5132 common = 1;
5133 break;
5135 default:
5136 break;
5139 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
5140 || code0 == ENUMERAL_TYPE)
5141 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
5142 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
5143 arithmetic_types_p = 1;
5144 else
5146 arithmetic_types_p = 0;
5147 /* Vector arithmetic is only allowed when both sides are vectors. */
5148 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
5150 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
5151 || !vector_types_compatible_elements_p (type0, type1))
5153 if (complain & tf_error)
5155 /* "location" already embeds the locations of the
5156 operands, so we don't need to add them separately
5157 to richloc. */
5158 rich_location richloc (line_table, location);
5159 binary_op_error (&richloc, code, type0, type1);
5161 return error_mark_node;
5163 arithmetic_types_p = 1;
5166 /* Determine the RESULT_TYPE, if it is not already known. */
5167 if (!result_type
5168 && arithmetic_types_p
5169 && (shorten || common || short_compare))
5171 result_type = cp_common_type (type0, type1);
5172 if (complain & tf_warning)
5173 do_warn_double_promotion (result_type, type0, type1,
5174 "implicit conversion from %qH to %qI "
5175 "to match other operand of binary "
5176 "expression",
5177 location);
5180 if (!result_type)
5182 if (complain & tf_error)
5183 error_at (location,
5184 "invalid operands of types %qT and %qT to binary %qO",
5185 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
5186 return error_mark_node;
5189 /* If we're in a template, the only thing we need to know is the
5190 RESULT_TYPE. */
5191 if (processing_template_decl)
5193 /* Since the middle-end checks the type when doing a build2, we
5194 need to build the tree in pieces. This built tree will never
5195 get out of the front-end as we replace it when instantiating
5196 the template. */
5197 tree tmp = build2 (resultcode,
5198 build_type ? build_type : result_type,
5199 NULL_TREE, op1);
5200 TREE_OPERAND (tmp, 0) = op0;
5201 return tmp;
5204 /* Remember the original type; RESULT_TYPE might be changed later on
5205 by shorten_binary_op. */
5206 tree orig_type = result_type;
5208 if (arithmetic_types_p)
5210 bool first_complex = (code0 == COMPLEX_TYPE);
5211 bool second_complex = (code1 == COMPLEX_TYPE);
5212 int none_complex = (!first_complex && !second_complex);
5214 /* Adapted from patch for c/24581. */
5215 if (first_complex != second_complex
5216 && (code == PLUS_EXPR
5217 || code == MINUS_EXPR
5218 || code == MULT_EXPR
5219 || (code == TRUNC_DIV_EXPR && first_complex))
5220 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
5221 && flag_signed_zeros)
5223 /* An operation on mixed real/complex operands must be
5224 handled specially, but the language-independent code can
5225 more easily optimize the plain complex arithmetic if
5226 -fno-signed-zeros. */
5227 tree real_type = TREE_TYPE (result_type);
5228 tree real, imag;
5229 if (first_complex)
5231 if (TREE_TYPE (op0) != result_type)
5232 op0 = cp_convert_and_check (result_type, op0, complain);
5233 if (TREE_TYPE (op1) != real_type)
5234 op1 = cp_convert_and_check (real_type, op1, complain);
5236 else
5238 if (TREE_TYPE (op0) != real_type)
5239 op0 = cp_convert_and_check (real_type, op0, complain);
5240 if (TREE_TYPE (op1) != result_type)
5241 op1 = cp_convert_and_check (result_type, op1, complain);
5243 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
5244 return error_mark_node;
5245 if (first_complex)
5247 op0 = save_expr (op0);
5248 real = cp_build_unary_op (REALPART_EXPR, op0, true, complain);
5249 imag = cp_build_unary_op (IMAGPART_EXPR, op0, true, complain);
5250 switch (code)
5252 case MULT_EXPR:
5253 case TRUNC_DIV_EXPR:
5254 op1 = save_expr (op1);
5255 imag = build2 (resultcode, real_type, imag, op1);
5256 /* Fall through. */
5257 case PLUS_EXPR:
5258 case MINUS_EXPR:
5259 real = build2 (resultcode, real_type, real, op1);
5260 break;
5261 default:
5262 gcc_unreachable();
5265 else
5267 op1 = save_expr (op1);
5268 real = cp_build_unary_op (REALPART_EXPR, op1, true, complain);
5269 imag = cp_build_unary_op (IMAGPART_EXPR, op1, true, complain);
5270 switch (code)
5272 case MULT_EXPR:
5273 op0 = save_expr (op0);
5274 imag = build2 (resultcode, real_type, op0, imag);
5275 /* Fall through. */
5276 case PLUS_EXPR:
5277 real = build2 (resultcode, real_type, op0, real);
5278 break;
5279 case MINUS_EXPR:
5280 real = build2 (resultcode, real_type, op0, real);
5281 imag = build1 (NEGATE_EXPR, real_type, imag);
5282 break;
5283 default:
5284 gcc_unreachable();
5287 result = build2 (COMPLEX_EXPR, result_type, real, imag);
5288 return result;
5291 /* For certain operations (which identify themselves by shorten != 0)
5292 if both args were extended from the same smaller type,
5293 do the arithmetic in that type and then extend.
5295 shorten !=0 and !=1 indicates a bitwise operation.
5296 For them, this optimization is safe only if
5297 both args are zero-extended or both are sign-extended.
5298 Otherwise, we might change the result.
5299 E.g., (short)-1 | (unsigned short)-1 is (int)-1
5300 but calculated in (unsigned short) it would be (unsigned short)-1. */
5302 if (shorten && none_complex)
5304 final_type = result_type;
5305 result_type = shorten_binary_op (result_type, op0, op1,
5306 shorten == -1);
5309 /* Comparison operations are shortened too but differently.
5310 They identify themselves by setting short_compare = 1. */
5312 if (short_compare)
5314 /* We call shorten_compare only for diagnostic-reason. */
5315 tree xop0 = fold_simple (op0), xop1 = fold_simple (op1),
5316 xresult_type = result_type;
5317 enum tree_code xresultcode = resultcode;
5318 shorten_compare (location, &xop0, &xop1, &xresult_type,
5319 &xresultcode);
5322 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
5323 && warn_sign_compare
5324 /* Do not warn until the template is instantiated; we cannot
5325 bound the ranges of the arguments until that point. */
5326 && !processing_template_decl
5327 && (complain & tf_warning)
5328 && c_inhibit_evaluation_warnings == 0
5329 /* Even unsigned enum types promote to signed int. We don't
5330 want to issue -Wsign-compare warnings for this case. */
5331 && !enum_cast_to_int (orig_op0)
5332 && !enum_cast_to_int (orig_op1))
5334 tree oop0 = maybe_constant_value (orig_op0);
5335 tree oop1 = maybe_constant_value (orig_op1);
5337 if (TREE_CODE (oop0) != INTEGER_CST)
5338 oop0 = cp_fully_fold (orig_op0);
5339 if (TREE_CODE (oop1) != INTEGER_CST)
5340 oop1 = cp_fully_fold (orig_op1);
5341 warn_for_sign_compare (location, oop0, oop1, op0, op1,
5342 result_type, resultcode);
5346 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
5347 Then the expression will be built.
5348 It will be given type FINAL_TYPE if that is nonzero;
5349 otherwise, it will be given type RESULT_TYPE. */
5350 if (! converted)
5352 if (TREE_TYPE (op0) != result_type)
5353 op0 = cp_convert_and_check (result_type, op0, complain);
5354 if (TREE_TYPE (op1) != result_type)
5355 op1 = cp_convert_and_check (result_type, op1, complain);
5357 if (op0 == error_mark_node || op1 == error_mark_node)
5358 return error_mark_node;
5361 if (build_type == NULL_TREE)
5362 build_type = result_type;
5364 if (sanitize_flags_p ((SANITIZE_SHIFT
5365 | SANITIZE_DIVIDE | SANITIZE_FLOAT_DIVIDE))
5366 && current_function_decl != NULL_TREE
5367 && !processing_template_decl
5368 && (doing_div_or_mod || doing_shift))
5370 /* OP0 and/or OP1 might have side-effects. */
5371 op0 = cp_save_expr (op0);
5372 op1 = cp_save_expr (op1);
5373 op0 = fold_non_dependent_expr (op0);
5374 op1 = fold_non_dependent_expr (op1);
5375 if (doing_div_or_mod
5376 && sanitize_flags_p (SANITIZE_DIVIDE | SANITIZE_FLOAT_DIVIDE))
5378 /* For diagnostics we want to use the promoted types without
5379 shorten_binary_op. So convert the arguments to the
5380 original result_type. */
5381 tree cop0 = op0;
5382 tree cop1 = op1;
5383 if (TREE_TYPE (cop0) != orig_type)
5384 cop0 = cp_convert (orig_type, op0, complain);
5385 if (TREE_TYPE (cop1) != orig_type)
5386 cop1 = cp_convert (orig_type, op1, complain);
5387 instrument_expr = ubsan_instrument_division (location, cop0, cop1);
5389 else if (doing_shift && sanitize_flags_p (SANITIZE_SHIFT))
5390 instrument_expr = ubsan_instrument_shift (location, code, op0, op1);
5393 result = build2_loc (location, resultcode, build_type, op0, op1);
5394 if (final_type != 0)
5395 result = cp_convert (final_type, result, complain);
5397 if (instrument_expr != NULL)
5398 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
5399 instrument_expr, result);
5401 if (!processing_template_decl)
5403 op0 = cp_fully_fold (op0);
5404 /* Only consider the second argument if the first isn't overflowed. */
5405 if (!CONSTANT_CLASS_P (op0) || TREE_OVERFLOW_P (op0))
5406 return result;
5407 op1 = cp_fully_fold (op1);
5408 if (!CONSTANT_CLASS_P (op1) || TREE_OVERFLOW_P (op1))
5409 return result;
5411 else if (!CONSTANT_CLASS_P (op0) || !CONSTANT_CLASS_P (op1)
5412 || TREE_OVERFLOW_P (op0) || TREE_OVERFLOW_P (op1))
5413 return result;
5415 result_ovl = fold_build2 (resultcode, build_type, op0, op1);
5416 if (TREE_OVERFLOW_P (result_ovl))
5417 overflow_warning (location, result_ovl);
5419 return result;
5422 /* Build a VEC_PERM_EXPR.
5423 This is a simple wrapper for c_build_vec_perm_expr. */
5424 tree
5425 build_x_vec_perm_expr (location_t loc,
5426 tree arg0, tree arg1, tree arg2,
5427 tsubst_flags_t complain)
5429 tree orig_arg0 = arg0;
5430 tree orig_arg1 = arg1;
5431 tree orig_arg2 = arg2;
5432 if (processing_template_decl)
5434 if (type_dependent_expression_p (arg0)
5435 || type_dependent_expression_p (arg1)
5436 || type_dependent_expression_p (arg2))
5437 return build_min_nt_loc (loc, VEC_PERM_EXPR, arg0, arg1, arg2);
5438 arg0 = build_non_dependent_expr (arg0);
5439 if (arg1)
5440 arg1 = build_non_dependent_expr (arg1);
5441 arg2 = build_non_dependent_expr (arg2);
5443 tree exp = c_build_vec_perm_expr (loc, arg0, arg1, arg2, complain & tf_error);
5444 if (processing_template_decl && exp != error_mark_node)
5445 return build_min_non_dep (VEC_PERM_EXPR, exp, orig_arg0,
5446 orig_arg1, orig_arg2);
5447 return exp;
5450 /* Return a tree for the sum or difference (RESULTCODE says which)
5451 of pointer PTROP and integer INTOP. */
5453 static tree
5454 cp_pointer_int_sum (location_t loc, enum tree_code resultcode, tree ptrop,
5455 tree intop, tsubst_flags_t complain)
5457 tree res_type = TREE_TYPE (ptrop);
5459 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
5460 in certain circumstance (when it's valid to do so). So we need
5461 to make sure it's complete. We don't need to check here, if we
5462 can actually complete it at all, as those checks will be done in
5463 pointer_int_sum() anyway. */
5464 complete_type (TREE_TYPE (res_type));
5466 return pointer_int_sum (loc, resultcode, ptrop,
5467 intop, complain & tf_warning_or_error);
5470 /* Return a tree for the difference of pointers OP0 and OP1.
5471 The resulting tree has type int. If POINTER_SUBTRACT sanitization is
5472 enabled, assign to INSTRUMENT_EXPR call to libsanitizer. */
5474 static tree
5475 pointer_diff (location_t loc, tree op0, tree op1, tree ptrtype,
5476 tsubst_flags_t complain, tree *instrument_expr)
5478 tree result, inttype;
5479 tree restype = ptrdiff_type_node;
5480 tree target_type = TREE_TYPE (ptrtype);
5482 if (!complete_type_or_else (target_type, NULL_TREE))
5483 return error_mark_node;
5485 if (VOID_TYPE_P (target_type))
5487 if (complain & tf_error)
5488 permerror (loc, "ISO C++ forbids using pointer of "
5489 "type %<void *%> in subtraction");
5490 else
5491 return error_mark_node;
5493 if (TREE_CODE (target_type) == FUNCTION_TYPE)
5495 if (complain & tf_error)
5496 permerror (loc, "ISO C++ forbids using pointer to "
5497 "a function in subtraction");
5498 else
5499 return error_mark_node;
5501 if (TREE_CODE (target_type) == METHOD_TYPE)
5503 if (complain & tf_error)
5504 permerror (loc, "ISO C++ forbids using pointer to "
5505 "a method in subtraction");
5506 else
5507 return error_mark_node;
5510 /* Determine integer type result of the subtraction. This will usually
5511 be the same as the result type (ptrdiff_t), but may need to be a wider
5512 type if pointers for the address space are wider than ptrdiff_t. */
5513 if (TYPE_PRECISION (restype) < TYPE_PRECISION (TREE_TYPE (op0)))
5514 inttype = c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op0)), 0);
5515 else
5516 inttype = restype;
5518 if (sanitize_flags_p (SANITIZE_POINTER_SUBTRACT))
5520 op0 = save_expr (op0);
5521 op1 = save_expr (op1);
5523 tree tt = builtin_decl_explicit (BUILT_IN_ASAN_POINTER_SUBTRACT);
5524 *instrument_expr = build_call_expr_loc (loc, tt, 2, op0, op1);
5527 /* First do the subtraction, then build the divide operator
5528 and only convert at the very end.
5529 Do not do default conversions in case restype is a short type. */
5531 /* POINTER_DIFF_EXPR requires a signed integer type of the same size as
5532 pointers. If some platform cannot provide that, or has a larger
5533 ptrdiff_type to support differences larger than half the address
5534 space, cast the pointers to some larger integer type and do the
5535 computations in that type. */
5536 if (TYPE_PRECISION (inttype) > TYPE_PRECISION (TREE_TYPE (op0)))
5537 op0 = cp_build_binary_op (loc,
5538 MINUS_EXPR,
5539 cp_convert (inttype, op0, complain),
5540 cp_convert (inttype, op1, complain),
5541 complain);
5542 else
5543 op0 = build2_loc (loc, POINTER_DIFF_EXPR, inttype, op0, op1);
5545 /* This generates an error if op1 is a pointer to an incomplete type. */
5546 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
5548 if (complain & tf_error)
5549 error_at (loc, "invalid use of a pointer to an incomplete type in "
5550 "pointer arithmetic");
5551 else
5552 return error_mark_node;
5555 if (pointer_to_zero_sized_aggr_p (TREE_TYPE (op1)))
5557 if (complain & tf_error)
5558 error_at (loc, "arithmetic on pointer to an empty aggregate");
5559 else
5560 return error_mark_node;
5563 op1 = (TYPE_PTROB_P (ptrtype)
5564 ? size_in_bytes_loc (loc, target_type)
5565 : integer_one_node);
5567 /* Do the division. */
5569 result = build2_loc (loc, EXACT_DIV_EXPR, inttype, op0,
5570 cp_convert (inttype, op1, complain));
5571 return cp_convert (restype, result, complain);
5574 /* Construct and perhaps optimize a tree representation
5575 for a unary operation. CODE, a tree_code, specifies the operation
5576 and XARG is the operand. */
5578 tree
5579 build_x_unary_op (location_t loc, enum tree_code code, cp_expr xarg,
5580 tsubst_flags_t complain)
5582 tree orig_expr = xarg;
5583 tree exp;
5584 int ptrmem = 0;
5585 tree overload = NULL_TREE;
5587 if (processing_template_decl)
5589 if (type_dependent_expression_p (xarg))
5590 return build_min_nt_loc (loc, code, xarg.get_value (), NULL_TREE);
5592 xarg = build_non_dependent_expr (xarg);
5595 exp = NULL_TREE;
5597 /* [expr.unary.op] says:
5599 The address of an object of incomplete type can be taken.
5601 (And is just the ordinary address operator, not an overloaded
5602 "operator &".) However, if the type is a template
5603 specialization, we must complete the type at this point so that
5604 an overloaded "operator &" will be available if required. */
5605 if (code == ADDR_EXPR
5606 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
5607 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
5608 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
5609 || (TREE_CODE (xarg) == OFFSET_REF)))
5610 /* Don't look for a function. */;
5611 else
5612 exp = build_new_op (loc, code, LOOKUP_NORMAL, xarg, NULL_TREE,
5613 NULL_TREE, &overload, complain);
5615 if (!exp && code == ADDR_EXPR)
5617 if (is_overloaded_fn (xarg))
5619 tree fn = get_first_fn (xarg);
5620 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
5622 if (complain & tf_error)
5623 error (DECL_CONSTRUCTOR_P (fn)
5624 ? G_("taking address of constructor %qD")
5625 : G_("taking address of destructor %qD"),
5626 fn);
5627 return error_mark_node;
5631 /* A pointer to member-function can be formed only by saying
5632 &X::mf. */
5633 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
5634 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
5636 if (TREE_CODE (xarg) != OFFSET_REF
5637 || !TYPE_P (TREE_OPERAND (xarg, 0)))
5639 if (complain & tf_error)
5641 error ("invalid use of %qE to form a "
5642 "pointer-to-member-function", xarg.get_value ());
5643 if (TREE_CODE (xarg) != OFFSET_REF)
5644 inform (input_location, " a qualified-id is required");
5646 return error_mark_node;
5648 else
5650 if (complain & tf_error)
5651 error ("parentheses around %qE cannot be used to form a"
5652 " pointer-to-member-function",
5653 xarg.get_value ());
5654 else
5655 return error_mark_node;
5656 PTRMEM_OK_P (xarg) = 1;
5660 if (TREE_CODE (xarg) == OFFSET_REF)
5662 ptrmem = PTRMEM_OK_P (xarg);
5664 if (!ptrmem && !flag_ms_extensions
5665 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
5667 /* A single non-static member, make sure we don't allow a
5668 pointer-to-member. */
5669 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
5670 TREE_OPERAND (xarg, 0),
5671 ovl_make (TREE_OPERAND (xarg, 1)));
5672 PTRMEM_OK_P (xarg) = ptrmem;
5676 exp = cp_build_addr_expr_strict (xarg, complain);
5679 if (processing_template_decl && exp != error_mark_node)
5681 if (overload != NULL_TREE)
5682 return (build_min_non_dep_op_overload
5683 (code, exp, overload, orig_expr, integer_zero_node));
5685 exp = build_min_non_dep (code, exp, orig_expr,
5686 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
5688 if (TREE_CODE (exp) == ADDR_EXPR)
5689 PTRMEM_OK_P (exp) = ptrmem;
5690 return exp;
5693 /* Construct and perhaps optimize a tree representation
5694 for __builtin_addressof operation. ARG specifies the operand. */
5696 tree
5697 cp_build_addressof (location_t loc, tree arg, tsubst_flags_t complain)
5699 tree orig_expr = arg;
5701 if (processing_template_decl)
5703 if (type_dependent_expression_p (arg))
5704 return build_min_nt_loc (loc, ADDRESSOF_EXPR, arg, NULL_TREE);
5706 arg = build_non_dependent_expr (arg);
5709 tree exp = cp_build_addr_expr_strict (arg, complain);
5711 if (processing_template_decl && exp != error_mark_node)
5712 exp = build_min_non_dep (ADDRESSOF_EXPR, exp, orig_expr, NULL_TREE);
5713 return exp;
5716 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
5717 constants, where a null value is represented by an INTEGER_CST of
5718 -1. */
5720 tree
5721 cp_truthvalue_conversion (tree expr)
5723 tree type = TREE_TYPE (expr);
5724 if (TYPE_PTR_OR_PTRMEM_P (type)
5725 /* Avoid ICE on invalid use of non-static member function. */
5726 || TREE_CODE (expr) == FUNCTION_DECL)
5727 return build_binary_op (input_location, NE_EXPR, expr, nullptr_node, true);
5728 else
5729 return c_common_truthvalue_conversion (input_location, expr);
5732 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
5734 tree
5735 condition_conversion (tree expr)
5737 tree t;
5738 /* Anything that might happen in a template should go through
5739 maybe_convert_cond. */
5740 gcc_assert (!processing_template_decl);
5741 t = perform_implicit_conversion_flags (boolean_type_node, expr,
5742 tf_warning_or_error, LOOKUP_NORMAL);
5743 t = fold_build_cleanup_point_expr (boolean_type_node, t);
5744 return t;
5747 /* Returns the address of T. This function will fold away
5748 ADDR_EXPR of INDIRECT_REF. */
5750 tree
5751 build_address (tree t)
5753 if (error_operand_p (t) || !cxx_mark_addressable (t))
5754 return error_mark_node;
5755 gcc_checking_assert (TREE_CODE (t) != CONSTRUCTOR
5756 || processing_template_decl);
5757 t = build_fold_addr_expr_loc (EXPR_LOCATION (t), t);
5758 if (TREE_CODE (t) != ADDR_EXPR)
5759 t = rvalue (t);
5760 return t;
5763 /* Return a NOP_EXPR converting EXPR to TYPE. */
5765 tree
5766 build_nop (tree type, tree expr)
5768 if (type == error_mark_node || error_operand_p (expr))
5769 return expr;
5770 return build1_loc (EXPR_LOCATION (expr), NOP_EXPR, type, expr);
5773 /* Take the address of ARG, whatever that means under C++ semantics.
5774 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
5775 and class rvalues as well.
5777 Nothing should call this function directly; instead, callers should use
5778 cp_build_addr_expr or cp_build_addr_expr_strict. */
5780 static tree
5781 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
5783 tree argtype;
5784 tree val;
5786 if (!arg || error_operand_p (arg))
5787 return error_mark_node;
5789 arg = mark_lvalue_use (arg);
5790 if (error_operand_p (arg))
5791 return error_mark_node;
5793 argtype = lvalue_type (arg);
5795 gcc_assert (!(identifier_p (arg) && IDENTIFIER_ANY_OP_P (arg)));
5797 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
5798 && !really_overloaded_fn (arg))
5800 /* They're trying to take the address of a unique non-static
5801 member function. This is ill-formed (except in MS-land),
5802 but let's try to DTRT.
5803 Note: We only handle unique functions here because we don't
5804 want to complain if there's a static overload; non-unique
5805 cases will be handled by instantiate_type. But we need to
5806 handle this case here to allow casts on the resulting PMF.
5807 We could defer this in non-MS mode, but it's easier to give
5808 a useful error here. */
5810 /* Inside constant member functions, the `this' pointer
5811 contains an extra const qualifier. TYPE_MAIN_VARIANT
5812 is used here to remove this const from the diagnostics
5813 and the created OFFSET_REF. */
5814 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
5815 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
5816 if (!mark_used (fn, complain) && !(complain & tf_error))
5817 return error_mark_node;
5819 if (! flag_ms_extensions)
5821 tree name = DECL_NAME (fn);
5822 if (!(complain & tf_error))
5823 return error_mark_node;
5824 else if (current_class_type
5825 && TREE_OPERAND (arg, 0) == current_class_ref)
5826 /* An expression like &memfn. */
5827 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
5828 " or parenthesized non-static member function to form"
5829 " a pointer to member function. Say %<&%T::%D%>",
5830 base, name);
5831 else
5832 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
5833 " function to form a pointer to member function."
5834 " Say %<&%T::%D%>",
5835 base, name);
5837 arg = build_offset_ref (base, fn, /*address_p=*/true, complain);
5840 /* Uninstantiated types are all functions. Taking the
5841 address of a function is a no-op, so just return the
5842 argument. */
5843 if (type_unknown_p (arg))
5844 return build1 (ADDR_EXPR, unknown_type_node, arg);
5846 if (TREE_CODE (arg) == OFFSET_REF)
5847 /* We want a pointer to member; bypass all the code for actually taking
5848 the address of something. */
5849 goto offset_ref;
5851 /* Anything not already handled and not a true memory reference
5852 is an error. */
5853 if (TREE_CODE (argtype) != FUNCTION_TYPE
5854 && TREE_CODE (argtype) != METHOD_TYPE)
5856 cp_lvalue_kind kind = lvalue_kind (arg);
5857 if (kind == clk_none)
5859 if (complain & tf_error)
5860 lvalue_error (input_location, lv_addressof);
5861 return error_mark_node;
5863 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
5865 if (!(complain & tf_error))
5866 return error_mark_node;
5867 /* Make this a permerror because we used to accept it. */
5868 permerror (input_location, "taking address of rvalue");
5872 if (TYPE_REF_P (argtype))
5874 tree type = build_pointer_type (TREE_TYPE (argtype));
5875 arg = build1 (CONVERT_EXPR, type, arg);
5876 return arg;
5878 else if (pedantic && DECL_MAIN_P (arg))
5880 /* ARM $3.4 */
5881 /* Apparently a lot of autoconf scripts for C++ packages do this,
5882 so only complain if -Wpedantic. */
5883 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
5884 pedwarn (input_location, OPT_Wpedantic,
5885 "ISO C++ forbids taking address of function %<::main%>");
5886 else if (flag_pedantic_errors)
5887 return error_mark_node;
5890 /* Let &* cancel out to simplify resulting code. */
5891 if (INDIRECT_REF_P (arg))
5893 arg = TREE_OPERAND (arg, 0);
5894 if (TYPE_REF_P (TREE_TYPE (arg)))
5896 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
5897 arg = build1 (CONVERT_EXPR, type, arg);
5899 else
5900 /* Don't let this be an lvalue. */
5901 arg = rvalue (arg);
5902 return arg;
5905 /* Handle complex lvalues (when permitted)
5906 by reduction to simpler cases. */
5907 val = unary_complex_lvalue (ADDR_EXPR, arg);
5908 if (val != 0)
5909 return val;
5911 switch (TREE_CODE (arg))
5913 CASE_CONVERT:
5914 case FLOAT_EXPR:
5915 case FIX_TRUNC_EXPR:
5916 /* We should have handled this above in the lvalue_kind check. */
5917 gcc_unreachable ();
5918 break;
5920 case BASELINK:
5921 arg = BASELINK_FUNCTIONS (arg);
5922 /* Fall through. */
5924 case OVERLOAD:
5925 arg = OVL_FIRST (arg);
5926 break;
5928 case OFFSET_REF:
5929 offset_ref:
5930 /* Turn a reference to a non-static data member into a
5931 pointer-to-member. */
5933 tree type;
5934 tree t;
5936 gcc_assert (PTRMEM_OK_P (arg));
5938 t = TREE_OPERAND (arg, 1);
5939 if (TYPE_REF_P (TREE_TYPE (t)))
5941 if (complain & tf_error)
5942 error ("cannot create pointer to reference member %qD", t);
5943 return error_mark_node;
5946 type = build_ptrmem_type (context_for_name_lookup (t),
5947 TREE_TYPE (t));
5948 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
5949 return t;
5952 default:
5953 break;
5956 if (argtype != error_mark_node)
5957 argtype = build_pointer_type (argtype);
5959 if (bitfield_p (arg))
5961 if (complain & tf_error)
5962 error ("attempt to take address of bit-field");
5963 return error_mark_node;
5966 /* In a template, we are processing a non-dependent expression
5967 so we can just form an ADDR_EXPR with the correct type. */
5968 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
5970 if (TREE_CODE (arg) == FUNCTION_DECL
5971 && !mark_used (arg, complain) && !(complain & tf_error))
5972 return error_mark_node;
5973 val = build_address (arg);
5974 if (TREE_CODE (arg) == OFFSET_REF)
5975 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
5977 else if (BASELINK_P (TREE_OPERAND (arg, 1)))
5979 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
5981 /* We can only get here with a single static member
5982 function. */
5983 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
5984 && DECL_STATIC_FUNCTION_P (fn));
5985 if (!mark_used (fn, complain) && !(complain & tf_error))
5986 return error_mark_node;
5987 val = build_address (fn);
5988 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
5989 /* Do not lose object's side effects. */
5990 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
5991 TREE_OPERAND (arg, 0), val);
5993 else
5995 tree object = TREE_OPERAND (arg, 0);
5996 tree field = TREE_OPERAND (arg, 1);
5997 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5998 (TREE_TYPE (object), decl_type_context (field)));
5999 val = build_address (arg);
6002 if (TYPE_PTR_P (argtype)
6003 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
6005 build_ptrmemfunc_type (argtype);
6006 val = build_ptrmemfunc (argtype, val, 0,
6007 /*c_cast_p=*/false,
6008 complain);
6011 return val;
6014 /* Take the address of ARG if it has one, even if it's an rvalue. */
6016 tree
6017 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
6019 return cp_build_addr_expr_1 (arg, 0, complain);
6022 /* Take the address of ARG, but only if it's an lvalue. */
6024 static tree
6025 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
6027 return cp_build_addr_expr_1 (arg, 1, complain);
6030 /* C++: Must handle pointers to members.
6032 Perhaps type instantiation should be extended to handle conversion
6033 from aggregates to types we don't yet know we want? (Or are those
6034 cases typically errors which should be reported?)
6036 NOCONVERT suppresses the default promotions (such as from short to int). */
6038 tree
6039 cp_build_unary_op (enum tree_code code, tree xarg, bool noconvert,
6040 tsubst_flags_t complain)
6042 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
6043 tree arg = xarg;
6044 location_t location = cp_expr_loc_or_loc (arg, input_location);
6045 tree argtype = 0;
6046 const char *errstring = NULL;
6047 tree val;
6048 const char *invalid_op_diag;
6050 if (!arg || error_operand_p (arg))
6051 return error_mark_node;
6053 if ((invalid_op_diag
6054 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
6055 ? CONVERT_EXPR
6056 : code),
6057 TREE_TYPE (xarg))))
6059 if (complain & tf_error)
6060 error (invalid_op_diag);
6061 return error_mark_node;
6064 switch (code)
6066 case UNARY_PLUS_EXPR:
6067 case NEGATE_EXPR:
6069 int flags = WANT_ARITH | WANT_ENUM;
6070 /* Unary plus (but not unary minus) is allowed on pointers. */
6071 if (code == UNARY_PLUS_EXPR)
6072 flags |= WANT_POINTER;
6073 arg = build_expr_type_conversion (flags, arg, true);
6074 if (!arg)
6075 errstring = (code == NEGATE_EXPR
6076 ? _("wrong type argument to unary minus")
6077 : _("wrong type argument to unary plus"));
6078 else
6080 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
6081 arg = cp_perform_integral_promotions (arg, complain);
6083 /* Make sure the result is not an lvalue: a unary plus or minus
6084 expression is always a rvalue. */
6085 arg = rvalue (arg);
6088 break;
6090 case BIT_NOT_EXPR:
6091 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
6093 code = CONJ_EXPR;
6094 if (!noconvert)
6096 arg = cp_default_conversion (arg, complain);
6097 if (arg == error_mark_node)
6098 return error_mark_node;
6101 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
6102 | WANT_VECTOR_OR_COMPLEX,
6103 arg, true)))
6104 errstring = _("wrong type argument to bit-complement");
6105 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
6107 /* Warn if the expression has boolean value. */
6108 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE
6109 && (complain & tf_warning)
6110 && warning_at (location, OPT_Wbool_operation,
6111 "%<~%> on an expression of type bool"))
6112 inform (location, "did you mean to use logical not (%<!%>)?");
6113 arg = cp_perform_integral_promotions (arg, complain);
6115 else if (!noconvert && VECTOR_TYPE_P (TREE_TYPE (arg)))
6116 arg = mark_rvalue_use (arg);
6117 break;
6119 case ABS_EXPR:
6120 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
6121 errstring = _("wrong type argument to abs");
6122 else if (!noconvert)
6124 arg = cp_default_conversion (arg, complain);
6125 if (arg == error_mark_node)
6126 return error_mark_node;
6128 break;
6130 case CONJ_EXPR:
6131 /* Conjugating a real value is a no-op, but allow it anyway. */
6132 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
6133 errstring = _("wrong type argument to conjugation");
6134 else if (!noconvert)
6136 arg = cp_default_conversion (arg, complain);
6137 if (arg == error_mark_node)
6138 return error_mark_node;
6140 break;
6142 case TRUTH_NOT_EXPR:
6143 if (VECTOR_TYPE_P (TREE_TYPE (arg)))
6144 return cp_build_binary_op (input_location, EQ_EXPR, arg,
6145 build_zero_cst (TREE_TYPE (arg)), complain);
6146 arg = perform_implicit_conversion (boolean_type_node, arg,
6147 complain);
6148 val = invert_truthvalue_loc (input_location, arg);
6149 if (arg != error_mark_node)
6150 return val;
6151 errstring = _("in argument to unary !");
6152 break;
6154 case NOP_EXPR:
6155 break;
6157 case REALPART_EXPR:
6158 case IMAGPART_EXPR:
6159 arg = build_real_imag_expr (input_location, code, arg);
6160 return arg;
6162 case PREINCREMENT_EXPR:
6163 case POSTINCREMENT_EXPR:
6164 case PREDECREMENT_EXPR:
6165 case POSTDECREMENT_EXPR:
6166 /* Handle complex lvalues (when permitted)
6167 by reduction to simpler cases. */
6169 val = unary_complex_lvalue (code, arg);
6170 if (val != 0)
6171 return val;
6173 arg = mark_lvalue_use (arg);
6175 /* Increment or decrement the real part of the value,
6176 and don't change the imaginary part. */
6177 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
6179 tree real, imag;
6181 arg = cp_stabilize_reference (arg);
6182 real = cp_build_unary_op (REALPART_EXPR, arg, true, complain);
6183 imag = cp_build_unary_op (IMAGPART_EXPR, arg, true, complain);
6184 real = cp_build_unary_op (code, real, true, complain);
6185 if (real == error_mark_node || imag == error_mark_node)
6186 return error_mark_node;
6187 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
6188 real, imag);
6191 /* Report invalid types. */
6193 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
6194 arg, true)))
6196 if (code == PREINCREMENT_EXPR)
6197 errstring = _("no pre-increment operator for type");
6198 else if (code == POSTINCREMENT_EXPR)
6199 errstring = _("no post-increment operator for type");
6200 else if (code == PREDECREMENT_EXPR)
6201 errstring = _("no pre-decrement operator for type");
6202 else
6203 errstring = _("no post-decrement operator for type");
6204 break;
6206 else if (arg == error_mark_node)
6207 return error_mark_node;
6209 /* Report something read-only. */
6211 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
6212 || TREE_READONLY (arg))
6214 if (complain & tf_error)
6215 cxx_readonly_error (arg, ((code == PREINCREMENT_EXPR
6216 || code == POSTINCREMENT_EXPR)
6217 ? lv_increment : lv_decrement));
6218 else
6219 return error_mark_node;
6223 tree inc;
6224 tree declared_type = unlowered_expr_type (arg);
6226 argtype = TREE_TYPE (arg);
6228 /* ARM $5.2.5 last annotation says this should be forbidden. */
6229 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
6231 if (complain & tf_error)
6232 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
6233 ? G_("ISO C++ forbids incrementing an enum")
6234 : G_("ISO C++ forbids decrementing an enum"));
6235 else
6236 return error_mark_node;
6239 /* Compute the increment. */
6241 if (TYPE_PTR_P (argtype))
6243 tree type = complete_type (TREE_TYPE (argtype));
6245 if (!COMPLETE_OR_VOID_TYPE_P (type))
6247 if (complain & tf_error)
6248 error (((code == PREINCREMENT_EXPR
6249 || code == POSTINCREMENT_EXPR))
6250 ? G_("cannot increment a pointer to incomplete type %qT")
6251 : G_("cannot decrement a pointer to incomplete type %qT"),
6252 TREE_TYPE (argtype));
6253 else
6254 return error_mark_node;
6256 else if (!TYPE_PTROB_P (argtype))
6258 if (complain & tf_error)
6259 pedwarn (input_location, OPT_Wpointer_arith,
6260 (code == PREINCREMENT_EXPR
6261 || code == POSTINCREMENT_EXPR)
6262 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
6263 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
6264 argtype);
6265 else
6266 return error_mark_node;
6269 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
6271 else
6272 inc = VECTOR_TYPE_P (argtype)
6273 ? build_one_cst (argtype)
6274 : integer_one_node;
6276 inc = cp_convert (argtype, inc, complain);
6278 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
6279 need to ask Objective-C to build the increment or decrement
6280 expression for it. */
6281 if (objc_is_property_ref (arg))
6282 return objc_build_incr_expr_for_property_ref (input_location, code,
6283 arg, inc);
6285 /* Complain about anything else that is not a true lvalue. */
6286 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
6287 || code == POSTINCREMENT_EXPR)
6288 ? lv_increment : lv_decrement),
6289 complain))
6290 return error_mark_node;
6292 /* Forbid using -- or ++ in C++17 on `bool'. */
6293 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
6295 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
6297 if (complain & tf_error)
6298 error ("use of an operand of type %qT in %<operator--%> "
6299 "is forbidden", boolean_type_node);
6300 return error_mark_node;
6302 else
6304 if (cxx_dialect >= cxx17)
6306 if (complain & tf_error)
6307 error ("use of an operand of type %qT in "
6308 "%<operator++%> is forbidden in C++17",
6309 boolean_type_node);
6310 return error_mark_node;
6312 /* Otherwise, [depr.incr.bool] says this is deprecated. */
6313 else if (!in_system_header_at (input_location))
6314 warning (OPT_Wdeprecated, "use of an operand of type %qT "
6315 "in %<operator++%> is deprecated",
6316 boolean_type_node);
6318 val = boolean_increment (code, arg);
6320 else if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
6321 /* An rvalue has no cv-qualifiers. */
6322 val = build2 (code, cv_unqualified (TREE_TYPE (arg)), arg, inc);
6323 else
6324 val = build2 (code, TREE_TYPE (arg), arg, inc);
6326 TREE_SIDE_EFFECTS (val) = 1;
6327 return val;
6330 case ADDR_EXPR:
6331 /* Note that this operation never does default_conversion
6332 regardless of NOCONVERT. */
6333 return cp_build_addr_expr (arg, complain);
6335 default:
6336 break;
6339 if (!errstring)
6341 if (argtype == 0)
6342 argtype = TREE_TYPE (arg);
6343 return build1 (code, argtype, arg);
6346 if (complain & tf_error)
6347 error ("%s", errstring);
6348 return error_mark_node;
6351 /* Hook for the c-common bits that build a unary op. */
6352 tree
6353 build_unary_op (location_t /*location*/,
6354 enum tree_code code, tree xarg, bool noconvert)
6356 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
6359 /* Adjust LVALUE, an MODIFY_EXPR, PREINCREMENT_EXPR or PREDECREMENT_EXPR,
6360 so that it is a valid lvalue even for GENERIC by replacing
6361 (lhs = rhs) with ((lhs = rhs), lhs)
6362 (--lhs) with ((--lhs), lhs)
6363 (++lhs) with ((++lhs), lhs)
6364 and if lhs has side-effects, calling cp_stabilize_reference on it, so
6365 that it can be evaluated multiple times. */
6367 tree
6368 genericize_compound_lvalue (tree lvalue)
6370 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lvalue, 0)))
6371 lvalue = build2 (TREE_CODE (lvalue), TREE_TYPE (lvalue),
6372 cp_stabilize_reference (TREE_OPERAND (lvalue, 0)),
6373 TREE_OPERAND (lvalue, 1));
6374 return build2 (COMPOUND_EXPR, TREE_TYPE (TREE_OPERAND (lvalue, 0)),
6375 lvalue, TREE_OPERAND (lvalue, 0));
6378 /* Apply unary lvalue-demanding operator CODE to the expression ARG
6379 for certain kinds of expressions which are not really lvalues
6380 but which we can accept as lvalues.
6382 If ARG is not a kind of expression we can handle, return
6383 NULL_TREE. */
6385 tree
6386 unary_complex_lvalue (enum tree_code code, tree arg)
6388 /* Inside a template, making these kinds of adjustments is
6389 pointless; we are only concerned with the type of the
6390 expression. */
6391 if (processing_template_decl)
6392 return NULL_TREE;
6394 /* Handle (a, b) used as an "lvalue". */
6395 if (TREE_CODE (arg) == COMPOUND_EXPR)
6397 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), false,
6398 tf_warning_or_error);
6399 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
6400 TREE_OPERAND (arg, 0), real_result);
6403 /* Handle (a ? b : c) used as an "lvalue". */
6404 if (TREE_CODE (arg) == COND_EXPR
6405 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
6406 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
6408 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
6409 if (TREE_CODE (arg) == MODIFY_EXPR
6410 || TREE_CODE (arg) == PREINCREMENT_EXPR
6411 || TREE_CODE (arg) == PREDECREMENT_EXPR)
6412 return unary_complex_lvalue (code, genericize_compound_lvalue (arg));
6414 if (code != ADDR_EXPR)
6415 return NULL_TREE;
6417 /* Handle (a = b) used as an "lvalue" for `&'. */
6418 if (TREE_CODE (arg) == MODIFY_EXPR
6419 || TREE_CODE (arg) == INIT_EXPR)
6421 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), false,
6422 tf_warning_or_error);
6423 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
6424 arg, real_result);
6425 TREE_NO_WARNING (arg) = 1;
6426 return arg;
6429 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
6430 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
6431 || TREE_CODE (arg) == OFFSET_REF)
6432 return NULL_TREE;
6434 /* We permit compiler to make function calls returning
6435 objects of aggregate type look like lvalues. */
6437 tree targ = arg;
6439 if (TREE_CODE (targ) == SAVE_EXPR)
6440 targ = TREE_OPERAND (targ, 0);
6442 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
6444 if (TREE_CODE (arg) == SAVE_EXPR)
6445 targ = arg;
6446 else
6447 targ = build_cplus_new (TREE_TYPE (arg), arg, tf_warning_or_error);
6448 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
6451 if (TREE_CODE (arg) == SAVE_EXPR && INDIRECT_REF_P (targ))
6452 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
6453 TREE_OPERAND (targ, 0), current_function_decl, NULL);
6456 /* Don't let anything else be handled specially. */
6457 return NULL_TREE;
6460 /* Mark EXP saying that we need to be able to take the
6461 address of it; it should not be allocated in a register.
6462 Value is true if successful. ARRAY_REF_P is true if this
6463 is for ARRAY_REF construction - in that case we don't want
6464 to look through VIEW_CONVERT_EXPR from VECTOR_TYPE to ARRAY_TYPE,
6465 it is fine to use ARRAY_REFs for vector subscripts on vector
6466 register variables.
6468 C++: we do not allow `current_class_ptr' to be addressable. */
6470 bool
6471 cxx_mark_addressable (tree exp, bool array_ref_p)
6473 tree x = exp;
6475 while (1)
6476 switch (TREE_CODE (x))
6478 case VIEW_CONVERT_EXPR:
6479 if (array_ref_p
6480 && TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
6481 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (x, 0))))
6482 return true;
6483 /* FALLTHRU */
6484 case ADDR_EXPR:
6485 case COMPONENT_REF:
6486 case ARRAY_REF:
6487 case REALPART_EXPR:
6488 case IMAGPART_EXPR:
6489 x = TREE_OPERAND (x, 0);
6490 break;
6492 case PARM_DECL:
6493 if (x == current_class_ptr)
6495 error ("cannot take the address of %<this%>, which is an rvalue expression");
6496 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
6497 return true;
6499 /* Fall through. */
6501 case VAR_DECL:
6502 /* Caller should not be trying to mark initialized
6503 constant fields addressable. */
6504 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
6505 || DECL_IN_AGGR_P (x) == 0
6506 || TREE_STATIC (x)
6507 || DECL_EXTERNAL (x));
6508 /* Fall through. */
6510 case RESULT_DECL:
6511 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
6512 && !DECL_ARTIFICIAL (x))
6514 if (VAR_P (x) && DECL_HARD_REGISTER (x))
6516 error
6517 ("address of explicit register variable %qD requested", x);
6518 return false;
6520 else if (extra_warnings)
6521 warning
6522 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
6524 TREE_ADDRESSABLE (x) = 1;
6525 return true;
6527 case CONST_DECL:
6528 case FUNCTION_DECL:
6529 TREE_ADDRESSABLE (x) = 1;
6530 return true;
6532 case CONSTRUCTOR:
6533 TREE_ADDRESSABLE (x) = 1;
6534 return true;
6536 case TARGET_EXPR:
6537 TREE_ADDRESSABLE (x) = 1;
6538 cxx_mark_addressable (TREE_OPERAND (x, 0));
6539 return true;
6541 default:
6542 return true;
6546 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
6548 tree
6549 build_x_conditional_expr (location_t loc, tree ifexp, tree op1, tree op2,
6550 tsubst_flags_t complain)
6552 tree orig_ifexp = ifexp;
6553 tree orig_op1 = op1;
6554 tree orig_op2 = op2;
6555 tree expr;
6557 if (processing_template_decl)
6559 /* The standard says that the expression is type-dependent if
6560 IFEXP is type-dependent, even though the eventual type of the
6561 expression doesn't dependent on IFEXP. */
6562 if (type_dependent_expression_p (ifexp)
6563 /* As a GNU extension, the middle operand may be omitted. */
6564 || (op1 && type_dependent_expression_p (op1))
6565 || type_dependent_expression_p (op2))
6566 return build_min_nt_loc (loc, COND_EXPR, ifexp, op1, op2);
6567 ifexp = build_non_dependent_expr (ifexp);
6568 if (op1)
6569 op1 = build_non_dependent_expr (op1);
6570 op2 = build_non_dependent_expr (op2);
6573 expr = build_conditional_expr (loc, ifexp, op1, op2, complain);
6574 if (processing_template_decl && expr != error_mark_node)
6576 tree min = build_min_non_dep (COND_EXPR, expr,
6577 orig_ifexp, orig_op1, orig_op2);
6578 expr = convert_from_reference (min);
6580 return expr;
6583 /* Given a list of expressions, return a compound expression
6584 that performs them all and returns the value of the last of them. */
6586 tree
6587 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
6588 tsubst_flags_t complain)
6590 tree expr = TREE_VALUE (list);
6592 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6593 && !CONSTRUCTOR_IS_DIRECT_INIT (expr))
6595 if (complain & tf_error)
6596 pedwarn (cp_expr_loc_or_loc (expr, input_location), 0,
6597 "list-initializer for non-class type must not "
6598 "be parenthesized");
6599 else
6600 return error_mark_node;
6603 if (TREE_CHAIN (list))
6605 if (complain & tf_error)
6606 switch (exp)
6608 case ELK_INIT:
6609 permerror (input_location, "expression list treated as compound "
6610 "expression in initializer");
6611 break;
6612 case ELK_MEM_INIT:
6613 permerror (input_location, "expression list treated as compound "
6614 "expression in mem-initializer");
6615 break;
6616 case ELK_FUNC_CAST:
6617 permerror (input_location, "expression list treated as compound "
6618 "expression in functional cast");
6619 break;
6620 default:
6621 gcc_unreachable ();
6623 else
6624 return error_mark_node;
6626 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
6627 expr = build_x_compound_expr (EXPR_LOCATION (TREE_VALUE (list)),
6628 expr, TREE_VALUE (list), complain);
6631 return expr;
6634 /* Like build_x_compound_expr_from_list, but using a VEC. */
6636 tree
6637 build_x_compound_expr_from_vec (vec<tree, va_gc> *vec, const char *msg,
6638 tsubst_flags_t complain)
6640 if (vec_safe_is_empty (vec))
6641 return NULL_TREE;
6642 else if (vec->length () == 1)
6643 return (*vec)[0];
6644 else
6646 tree expr;
6647 unsigned int ix;
6648 tree t;
6650 if (msg != NULL)
6652 if (complain & tf_error)
6653 permerror (input_location,
6654 "%s expression list treated as compound expression",
6655 msg);
6656 else
6657 return error_mark_node;
6660 expr = (*vec)[0];
6661 for (ix = 1; vec->iterate (ix, &t); ++ix)
6662 expr = build_x_compound_expr (EXPR_LOCATION (t), expr,
6663 t, complain);
6665 return expr;
6669 /* Handle overloading of the ',' operator when needed. */
6671 tree
6672 build_x_compound_expr (location_t loc, tree op1, tree op2,
6673 tsubst_flags_t complain)
6675 tree result;
6676 tree orig_op1 = op1;
6677 tree orig_op2 = op2;
6678 tree overload = NULL_TREE;
6680 if (processing_template_decl)
6682 if (type_dependent_expression_p (op1)
6683 || type_dependent_expression_p (op2))
6684 return build_min_nt_loc (loc, COMPOUND_EXPR, op1, op2);
6685 op1 = build_non_dependent_expr (op1);
6686 op2 = build_non_dependent_expr (op2);
6689 result = build_new_op (loc, COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2,
6690 NULL_TREE, &overload, complain);
6691 if (!result)
6692 result = cp_build_compound_expr (op1, op2, complain);
6694 if (processing_template_decl && result != error_mark_node)
6696 if (overload != NULL_TREE)
6697 return (build_min_non_dep_op_overload
6698 (COMPOUND_EXPR, result, overload, orig_op1, orig_op2));
6700 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
6703 return result;
6706 /* Like cp_build_compound_expr, but for the c-common bits. */
6708 tree
6709 build_compound_expr (location_t /*loc*/, tree lhs, tree rhs)
6711 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
6714 /* Build a compound expression. */
6716 tree
6717 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
6719 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
6721 if (lhs == error_mark_node || rhs == error_mark_node)
6722 return error_mark_node;
6724 if (TREE_CODE (rhs) == TARGET_EXPR)
6726 /* If the rhs is a TARGET_EXPR, then build the compound
6727 expression inside the target_expr's initializer. This
6728 helps the compiler to eliminate unnecessary temporaries. */
6729 tree init = TREE_OPERAND (rhs, 1);
6731 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
6732 TREE_OPERAND (rhs, 1) = init;
6734 return rhs;
6737 if (type_unknown_p (rhs))
6739 if (complain & tf_error)
6740 error ("no context to resolve type of %qE", rhs);
6741 return error_mark_node;
6744 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
6747 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
6748 casts away constness. CAST gives the type of cast. Returns true
6749 if the cast is ill-formed, false if it is well-formed.
6751 ??? This function warns for casting away any qualifier not just
6752 const. We would like to specify exactly what qualifiers are casted
6753 away.
6756 static bool
6757 check_for_casting_away_constness (tree src_type, tree dest_type,
6758 enum tree_code cast, tsubst_flags_t complain)
6760 /* C-style casts are allowed to cast away constness. With
6761 WARN_CAST_QUAL, we still want to issue a warning. */
6762 if (cast == CAST_EXPR && !warn_cast_qual)
6763 return false;
6765 if (!casts_away_constness (src_type, dest_type, complain))
6766 return false;
6768 switch (cast)
6770 case CAST_EXPR:
6771 if (complain & tf_warning)
6772 warning (OPT_Wcast_qual,
6773 "cast from type %qT to type %qT casts away qualifiers",
6774 src_type, dest_type);
6775 return false;
6777 case STATIC_CAST_EXPR:
6778 if (complain & tf_error)
6779 error ("static_cast from type %qT to type %qT casts away qualifiers",
6780 src_type, dest_type);
6781 return true;
6783 case REINTERPRET_CAST_EXPR:
6784 if (complain & tf_error)
6785 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
6786 src_type, dest_type);
6787 return true;
6789 default:
6790 gcc_unreachable();
6794 /* Warns if the cast from expression EXPR to type TYPE is useless. */
6795 void
6796 maybe_warn_about_useless_cast (tree type, tree expr, tsubst_flags_t complain)
6798 if (warn_useless_cast
6799 && complain & tf_warning)
6801 if ((TYPE_REF_P (type)
6802 && (TYPE_REF_IS_RVALUE (type)
6803 ? xvalue_p (expr) : lvalue_p (expr))
6804 && same_type_p (TREE_TYPE (expr), TREE_TYPE (type)))
6805 || same_type_p (TREE_TYPE (expr), type))
6806 warning (OPT_Wuseless_cast, "useless cast to type %q#T", type);
6810 /* Warns if the cast ignores cv-qualifiers on TYPE. */
6811 void
6812 maybe_warn_about_cast_ignoring_quals (tree type, tsubst_flags_t complain)
6814 if (warn_ignored_qualifiers
6815 && complain & tf_warning
6816 && !CLASS_TYPE_P (type)
6817 && (cp_type_quals (type) & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)))
6819 warning (OPT_Wignored_qualifiers, "type qualifiers ignored on cast "
6820 "result type");
6824 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
6825 (another pointer-to-member type in the same hierarchy) and return
6826 the converted expression. If ALLOW_INVERSE_P is permitted, a
6827 pointer-to-derived may be converted to pointer-to-base; otherwise,
6828 only the other direction is permitted. If C_CAST_P is true, this
6829 conversion is taking place as part of a C-style cast. */
6831 tree
6832 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
6833 bool c_cast_p, tsubst_flags_t complain)
6835 if (same_type_p (type, TREE_TYPE (expr)))
6836 return expr;
6838 if (TYPE_PTRDATAMEM_P (type))
6840 tree obase = TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr));
6841 tree nbase = TYPE_PTRMEM_CLASS_TYPE (type);
6842 tree delta = (get_delta_difference
6843 (obase, nbase,
6844 allow_inverse_p, c_cast_p, complain));
6846 if (delta == error_mark_node)
6847 return error_mark_node;
6849 if (!same_type_p (obase, nbase))
6851 if (TREE_CODE (expr) == PTRMEM_CST)
6852 expr = cplus_expand_constant (expr);
6854 tree cond = cp_build_binary_op (input_location, EQ_EXPR, expr,
6855 build_int_cst (TREE_TYPE (expr), -1),
6856 complain);
6857 tree op1 = build_nop (ptrdiff_type_node, expr);
6858 tree op2 = cp_build_binary_op (input_location, PLUS_EXPR, op1, delta,
6859 complain);
6861 expr = fold_build3_loc (input_location,
6862 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
6865 return build_nop (type, expr);
6867 else
6868 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
6869 allow_inverse_p, c_cast_p, complain);
6872 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
6873 this static_cast is being attempted as one of the possible casts
6874 allowed by a C-style cast. (In that case, accessibility of base
6875 classes is not considered, and it is OK to cast away
6876 constness.) Return the result of the cast. *VALID_P is set to
6877 indicate whether or not the cast was valid. */
6879 static tree
6880 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
6881 bool *valid_p, tsubst_flags_t complain)
6883 tree intype;
6884 tree result;
6885 cp_lvalue_kind clk;
6887 /* Assume the cast is valid. */
6888 *valid_p = true;
6890 intype = unlowered_expr_type (expr);
6892 /* Save casted types in the function's used types hash table. */
6893 used_types_insert (type);
6895 /* A prvalue of non-class type is cv-unqualified. */
6896 if (!CLASS_TYPE_P (type))
6897 type = cv_unqualified (type);
6899 /* [expr.static.cast]
6901 An lvalue of type "cv1 B", where B is a class type, can be cast
6902 to type "reference to cv2 D", where D is a class derived (clause
6903 _class.derived_) from B, if a valid standard conversion from
6904 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
6905 same cv-qualification as, or greater cv-qualification than, cv1,
6906 and B is not a virtual base class of D. */
6907 /* We check this case before checking the validity of "TYPE t =
6908 EXPR;" below because for this case:
6910 struct B {};
6911 struct D : public B { D(const B&); };
6912 extern B& b;
6913 void f() { static_cast<const D&>(b); }
6915 we want to avoid constructing a new D. The standard is not
6916 completely clear about this issue, but our interpretation is
6917 consistent with other compilers. */
6918 if (TYPE_REF_P (type)
6919 && CLASS_TYPE_P (TREE_TYPE (type))
6920 && CLASS_TYPE_P (intype)
6921 && (TYPE_REF_IS_RVALUE (type) || lvalue_p (expr))
6922 && DERIVED_FROM_P (intype, TREE_TYPE (type))
6923 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
6924 build_pointer_type (TYPE_MAIN_VARIANT
6925 (TREE_TYPE (type))),
6926 complain)
6927 && (c_cast_p
6928 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6930 tree base;
6932 if (processing_template_decl)
6933 return expr;
6935 /* There is a standard conversion from "D*" to "B*" even if "B"
6936 is ambiguous or inaccessible. If this is really a
6937 static_cast, then we check both for inaccessibility and
6938 ambiguity. However, if this is a static_cast being performed
6939 because the user wrote a C-style cast, then accessibility is
6940 not considered. */
6941 base = lookup_base (TREE_TYPE (type), intype,
6942 c_cast_p ? ba_unique : ba_check,
6943 NULL, complain);
6944 expr = build_address (expr);
6946 if (sanitize_flags_p (SANITIZE_VPTR))
6948 tree ubsan_check
6949 = cp_ubsan_maybe_instrument_downcast (input_location, type,
6950 intype, expr);
6951 if (ubsan_check)
6952 expr = ubsan_check;
6955 /* Convert from "B*" to "D*". This function will check that "B"
6956 is not a virtual base of "D". Even if we don't have a guarantee
6957 that expr is NULL, if the static_cast is to a reference type,
6958 it is UB if it would be NULL, so omit the non-NULL check. */
6959 expr = build_base_path (MINUS_EXPR, expr, base,
6960 /*nonnull=*/flag_delete_null_pointer_checks,
6961 complain);
6963 /* Convert the pointer to a reference -- but then remember that
6964 there are no expressions with reference type in C++.
6966 We call rvalue so that there's an actual tree code
6967 (NON_LVALUE_EXPR) for the static_cast; otherwise, if the operand
6968 is a variable with the same type, the conversion would get folded
6969 away, leaving just the variable and causing lvalue_kind to give
6970 the wrong answer. */
6971 expr = cp_fold_convert (type, expr);
6973 /* When -fsanitize=null, make sure to diagnose reference binding to
6974 NULL even when the reference is converted to pointer later on. */
6975 if (sanitize_flags_p (SANITIZE_NULL)
6976 && TREE_CODE (expr) == COND_EXPR
6977 && TREE_OPERAND (expr, 2)
6978 && TREE_CODE (TREE_OPERAND (expr, 2)) == INTEGER_CST
6979 && TREE_TYPE (TREE_OPERAND (expr, 2)) == type)
6980 ubsan_maybe_instrument_reference (&TREE_OPERAND (expr, 2));
6982 return convert_from_reference (rvalue (expr));
6985 /* "A glvalue of type cv1 T1 can be cast to type rvalue reference to
6986 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
6987 if (TYPE_REF_P (type)
6988 && TYPE_REF_IS_RVALUE (type)
6989 && (clk = real_lvalue_p (expr))
6990 && reference_related_p (TREE_TYPE (type), intype)
6991 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6993 if (processing_template_decl)
6994 return expr;
6995 if (clk == clk_ordinary)
6997 /* Handle the (non-bit-field) lvalue case here by casting to
6998 lvalue reference and then changing it to an rvalue reference.
6999 Casting an xvalue to rvalue reference will be handled by the
7000 main code path. */
7001 tree lref = cp_build_reference_type (TREE_TYPE (type), false);
7002 result = (perform_direct_initialization_if_possible
7003 (lref, expr, c_cast_p, complain));
7004 result = build1 (NON_LVALUE_EXPR, type, result);
7005 return convert_from_reference (result);
7007 else
7008 /* For a bit-field or packed field, bind to a temporary. */
7009 expr = rvalue (expr);
7012 /* Resolve overloaded address here rather than once in
7013 implicit_conversion and again in the inverse code below. */
7014 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
7016 expr = instantiate_type (type, expr, complain);
7017 intype = TREE_TYPE (expr);
7020 /* [expr.static.cast]
7022 Any expression can be explicitly converted to type cv void. */
7023 if (VOID_TYPE_P (type))
7024 return convert_to_void (expr, ICV_CAST, complain);
7026 /* [class.abstract]
7027 An abstract class shall not be used ... as the type of an explicit
7028 conversion. */
7029 if (abstract_virtuals_error_sfinae (ACU_CAST, type, complain))
7030 return error_mark_node;
7032 /* [expr.static.cast]
7034 An expression e can be explicitly converted to a type T using a
7035 static_cast of the form static_cast<T>(e) if the declaration T
7036 t(e);" is well-formed, for some invented temporary variable
7037 t. */
7038 result = perform_direct_initialization_if_possible (type, expr,
7039 c_cast_p, complain);
7040 if (result)
7042 if (processing_template_decl)
7043 return expr;
7045 result = convert_from_reference (result);
7047 /* [expr.static.cast]
7049 If T is a reference type, the result is an lvalue; otherwise,
7050 the result is an rvalue. */
7051 if (!TYPE_REF_P (type))
7053 result = rvalue (result);
7055 if (result == expr && SCALAR_TYPE_P (type))
7056 /* Leave some record of the cast. */
7057 result = build_nop (type, expr);
7059 return result;
7062 /* [expr.static.cast]
7064 The inverse of any standard conversion sequence (clause _conv_),
7065 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
7066 (_conv.array_), function-to-pointer (_conv.func_), and boolean
7067 (_conv.bool_) conversions, can be performed explicitly using
7068 static_cast subject to the restriction that the explicit
7069 conversion does not cast away constness (_expr.const.cast_), and
7070 the following additional rules for specific cases: */
7071 /* For reference, the conversions not excluded are: integral
7072 promotions, floating point promotion, integral conversions,
7073 floating point conversions, floating-integral conversions,
7074 pointer conversions, and pointer to member conversions. */
7075 /* DR 128
7077 A value of integral _or enumeration_ type can be explicitly
7078 converted to an enumeration type. */
7079 /* The effect of all that is that any conversion between any two
7080 types which are integral, floating, or enumeration types can be
7081 performed. */
7082 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
7083 || SCALAR_FLOAT_TYPE_P (type))
7084 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
7085 || SCALAR_FLOAT_TYPE_P (intype)))
7087 if (processing_template_decl)
7088 return expr;
7089 return ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL, complain);
7092 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
7093 && CLASS_TYPE_P (TREE_TYPE (type))
7094 && CLASS_TYPE_P (TREE_TYPE (intype))
7095 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
7096 (TREE_TYPE (intype))),
7097 build_pointer_type (TYPE_MAIN_VARIANT
7098 (TREE_TYPE (type))),
7099 complain))
7101 tree base;
7103 if (processing_template_decl)
7104 return expr;
7106 if (!c_cast_p
7107 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
7108 complain))
7109 return error_mark_node;
7110 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
7111 c_cast_p ? ba_unique : ba_check,
7112 NULL, complain);
7113 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
7114 complain);
7116 if (sanitize_flags_p (SANITIZE_VPTR))
7118 tree ubsan_check
7119 = cp_ubsan_maybe_instrument_downcast (input_location, type,
7120 intype, expr);
7121 if (ubsan_check)
7122 expr = ubsan_check;
7125 return cp_fold_convert (type, expr);
7128 if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
7129 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
7131 tree c1;
7132 tree c2;
7133 tree t1;
7134 tree t2;
7136 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
7137 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
7139 if (TYPE_PTRDATAMEM_P (type))
7141 t1 = (build_ptrmem_type
7142 (c1,
7143 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
7144 t2 = (build_ptrmem_type
7145 (c2,
7146 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
7148 else
7150 t1 = intype;
7151 t2 = type;
7153 if (can_convert (t1, t2, complain) || can_convert (t2, t1, complain))
7155 if (!c_cast_p
7156 && check_for_casting_away_constness (intype, type,
7157 STATIC_CAST_EXPR,
7158 complain))
7159 return error_mark_node;
7160 if (processing_template_decl)
7161 return expr;
7162 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
7163 c_cast_p, complain);
7167 /* [expr.static.cast]
7169 An rvalue of type "pointer to cv void" can be explicitly
7170 converted to a pointer to object type. A value of type pointer
7171 to object converted to "pointer to cv void" and back to the
7172 original pointer type will have its original value. */
7173 if (TYPE_PTR_P (intype)
7174 && VOID_TYPE_P (TREE_TYPE (intype))
7175 && TYPE_PTROB_P (type))
7177 if (!c_cast_p
7178 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
7179 complain))
7180 return error_mark_node;
7181 if (processing_template_decl)
7182 return expr;
7183 return build_nop (type, expr);
7186 *valid_p = false;
7187 return error_mark_node;
7190 /* Return an expression representing static_cast<TYPE>(EXPR). */
7192 tree
7193 build_static_cast (tree type, tree oexpr, tsubst_flags_t complain)
7195 tree expr = oexpr;
7196 tree result;
7197 bool valid_p;
7199 if (type == error_mark_node || expr == error_mark_node)
7200 return error_mark_node;
7202 bool dependent = (dependent_type_p (type)
7203 || type_dependent_expression_p (expr));
7204 if (dependent)
7206 tmpl:
7207 expr = build_min (STATIC_CAST_EXPR, type, oexpr);
7208 /* We don't know if it will or will not have side effects. */
7209 TREE_SIDE_EFFECTS (expr) = 1;
7210 return convert_from_reference (expr);
7212 else if (processing_template_decl)
7213 expr = build_non_dependent_expr (expr);
7215 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7216 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7217 if (!TYPE_REF_P (type)
7218 && TREE_CODE (expr) == NOP_EXPR
7219 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7220 expr = TREE_OPERAND (expr, 0);
7222 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
7223 complain);
7224 if (valid_p)
7226 if (result != error_mark_node)
7228 maybe_warn_about_useless_cast (type, expr, complain);
7229 maybe_warn_about_cast_ignoring_quals (type, complain);
7231 if (processing_template_decl)
7232 goto tmpl;
7233 return result;
7236 if (complain & tf_error)
7237 error ("invalid static_cast from type %qT to type %qT",
7238 TREE_TYPE (expr), type);
7239 return error_mark_node;
7242 /* EXPR is an expression with member function or pointer-to-member
7243 function type. TYPE is a pointer type. Converting EXPR to TYPE is
7244 not permitted by ISO C++, but we accept it in some modes. If we
7245 are not in one of those modes, issue a diagnostic. Return the
7246 converted expression. */
7248 tree
7249 convert_member_func_to_ptr (tree type, tree expr, tsubst_flags_t complain)
7251 tree intype;
7252 tree decl;
7254 intype = TREE_TYPE (expr);
7255 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
7256 || TREE_CODE (intype) == METHOD_TYPE);
7258 if (!(complain & tf_warning_or_error))
7259 return error_mark_node;
7261 if (pedantic || warn_pmf2ptr)
7262 pedwarn (input_location, pedantic ? OPT_Wpedantic : OPT_Wpmf_conversions,
7263 "converting from %qH to %qI", intype, type);
7265 if (TREE_CODE (intype) == METHOD_TYPE)
7266 expr = build_addr_func (expr, complain);
7267 else if (TREE_CODE (expr) == PTRMEM_CST)
7268 expr = build_address (PTRMEM_CST_MEMBER (expr));
7269 else
7271 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
7272 decl = build_address (decl);
7273 expr = get_member_function_from_ptrfunc (&decl, expr, complain);
7276 if (expr == error_mark_node)
7277 return error_mark_node;
7279 return build_nop (type, expr);
7282 /* Build a NOP_EXPR to TYPE, but mark it as a reinterpret_cast so that
7283 constexpr evaluation knows to reject it. */
7285 static tree
7286 build_nop_reinterpret (tree type, tree expr)
7288 tree ret = build_nop (type, expr);
7289 if (ret != expr)
7290 REINTERPRET_CAST_P (ret) = true;
7291 return ret;
7294 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
7295 If C_CAST_P is true, this reinterpret cast is being done as part of
7296 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
7297 indicate whether or not reinterpret_cast was valid. */
7299 static tree
7300 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
7301 bool *valid_p, tsubst_flags_t complain)
7303 tree intype;
7305 /* Assume the cast is invalid. */
7306 if (valid_p)
7307 *valid_p = true;
7309 if (type == error_mark_node || error_operand_p (expr))
7310 return error_mark_node;
7312 intype = TREE_TYPE (expr);
7314 /* Save casted types in the function's used types hash table. */
7315 used_types_insert (type);
7317 /* A prvalue of non-class type is cv-unqualified. */
7318 if (!CLASS_TYPE_P (type))
7319 type = cv_unqualified (type);
7321 /* [expr.reinterpret.cast]
7322 A glvalue expression of type T1 can be cast to the type
7323 "reference to T2" if an expression of type "pointer to T1" can be
7324 explicitly converted to the type "pointer to T2" using a
7325 reinterpret_cast. */
7326 if (TYPE_REF_P (type))
7328 if (TYPE_REF_IS_RVALUE (type))
7330 if (!obvalue_p (expr))
7331 /* Perform the temporary materialization conversion. */
7332 expr = get_target_expr_sfinae (expr, complain);
7334 else if (!lvalue_p (expr))
7336 if (complain & tf_error)
7337 error ("invalid cast of an rvalue expression of type "
7338 "%qT to type %qT",
7339 intype, type);
7340 return error_mark_node;
7343 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
7344 "B" are related class types; the reinterpret_cast does not
7345 adjust the pointer. */
7346 if (TYPE_PTR_P (intype)
7347 && (complain & tf_warning)
7348 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
7349 COMPARE_BASE | COMPARE_DERIVED)))
7350 warning (0, "casting %qT to %qT does not dereference pointer",
7351 intype, type);
7353 expr = cp_build_addr_expr (expr, complain);
7355 if (warn_strict_aliasing > 2)
7356 strict_aliasing_warning (EXPR_LOCATION (expr), type, expr);
7358 if (expr != error_mark_node)
7359 expr = build_reinterpret_cast_1
7360 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
7361 valid_p, complain);
7362 if (expr != error_mark_node)
7363 /* cp_build_indirect_ref isn't right for rvalue refs. */
7364 expr = convert_from_reference (fold_convert (type, expr));
7365 return expr;
7368 /* As a G++ extension, we consider conversions from member
7369 functions, and pointers to member functions to
7370 pointer-to-function and pointer-to-void types. If
7371 -Wno-pmf-conversions has not been specified,
7372 convert_member_func_to_ptr will issue an error message. */
7373 if ((TYPE_PTRMEMFUNC_P (intype)
7374 || TREE_CODE (intype) == METHOD_TYPE)
7375 && TYPE_PTR_P (type)
7376 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
7377 || VOID_TYPE_P (TREE_TYPE (type))))
7378 return convert_member_func_to_ptr (type, expr, complain);
7380 /* If the cast is not to a reference type, the lvalue-to-rvalue,
7381 array-to-pointer, and function-to-pointer conversions are
7382 performed. */
7383 expr = decay_conversion (expr, complain);
7385 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7386 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7387 if (TREE_CODE (expr) == NOP_EXPR
7388 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7389 expr = TREE_OPERAND (expr, 0);
7391 if (error_operand_p (expr))
7392 return error_mark_node;
7394 intype = TREE_TYPE (expr);
7396 /* [expr.reinterpret.cast]
7397 A pointer can be converted to any integral type large enough to
7398 hold it. ... A value of type std::nullptr_t can be converted to
7399 an integral type; the conversion has the same meaning and
7400 validity as a conversion of (void*)0 to the integral type. */
7401 if (CP_INTEGRAL_TYPE_P (type)
7402 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
7404 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
7406 if (complain & tf_error)
7407 permerror (input_location, "cast from %qH to %qI loses precision",
7408 intype, type);
7409 else
7410 return error_mark_node;
7412 if (NULLPTR_TYPE_P (intype))
7413 return build_int_cst (type, 0);
7415 /* [expr.reinterpret.cast]
7416 A value of integral or enumeration type can be explicitly
7417 converted to a pointer. */
7418 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
7419 /* OK */
7421 else if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
7422 || TYPE_PTR_OR_PTRMEM_P (type))
7423 && same_type_p (type, intype))
7424 /* DR 799 */
7425 return rvalue (expr);
7426 else if (TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
7428 if ((complain & tf_warning)
7429 && !cxx_safe_function_type_cast_p (TREE_TYPE (type),
7430 TREE_TYPE (intype)))
7431 warning (OPT_Wcast_function_type,
7432 "cast between incompatible function types"
7433 " from %qH to %qI", intype, type);
7434 return build_nop_reinterpret (type, expr);
7436 else if (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype))
7438 if ((complain & tf_warning)
7439 && !cxx_safe_function_type_cast_p
7440 (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (type)),
7441 TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE_RAW (intype))))
7442 warning (OPT_Wcast_function_type,
7443 "cast between incompatible pointer to member types"
7444 " from %qH to %qI", intype, type);
7445 return build_nop_reinterpret (type, expr);
7447 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
7448 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
7450 if (!c_cast_p
7451 && check_for_casting_away_constness (intype, type,
7452 REINTERPRET_CAST_EXPR,
7453 complain))
7454 return error_mark_node;
7455 /* Warn about possible alignment problems. */
7456 if ((STRICT_ALIGNMENT || warn_cast_align == 2)
7457 && (complain & tf_warning)
7458 && !VOID_TYPE_P (type)
7459 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
7460 && COMPLETE_TYPE_P (TREE_TYPE (type))
7461 && COMPLETE_TYPE_P (TREE_TYPE (intype))
7462 && min_align_of_type (TREE_TYPE (type))
7463 > min_align_of_type (TREE_TYPE (intype)))
7464 warning (OPT_Wcast_align, "cast from %qH to %qI "
7465 "increases required alignment of target type", intype, type);
7467 if (warn_strict_aliasing <= 2)
7468 /* strict_aliasing_warning STRIP_NOPs its expr. */
7469 strict_aliasing_warning (EXPR_LOCATION (expr), type, expr);
7471 return build_nop_reinterpret (type, expr);
7473 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
7474 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
7476 if (complain & tf_warning)
7477 /* C++11 5.2.10 p8 says that "Converting a function pointer to an
7478 object pointer type or vice versa is conditionally-supported." */
7479 warning (OPT_Wconditionally_supported,
7480 "casting between pointer-to-function and pointer-to-object "
7481 "is conditionally-supported");
7482 return build_nop_reinterpret (type, expr);
7484 else if (VECTOR_TYPE_P (type))
7485 return convert_to_vector (type, expr);
7486 else if (VECTOR_TYPE_P (intype)
7487 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
7488 return convert_to_integer_nofold (type, expr);
7489 else
7491 if (valid_p)
7492 *valid_p = false;
7493 if (complain & tf_error)
7494 error ("invalid cast from type %qT to type %qT", intype, type);
7495 return error_mark_node;
7498 expr = cp_convert (type, expr, complain);
7499 if (TREE_CODE (expr) == NOP_EXPR)
7500 /* Mark any nop_expr that created as a reintepret_cast. */
7501 REINTERPRET_CAST_P (expr) = true;
7502 return expr;
7505 tree
7506 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
7508 tree r;
7510 if (type == error_mark_node || expr == error_mark_node)
7511 return error_mark_node;
7513 if (processing_template_decl)
7515 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
7517 if (!TREE_SIDE_EFFECTS (t)
7518 && type_dependent_expression_p (expr))
7519 /* There might turn out to be side effects inside expr. */
7520 TREE_SIDE_EFFECTS (t) = 1;
7521 return convert_from_reference (t);
7524 r = build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
7525 /*valid_p=*/NULL, complain);
7526 if (r != error_mark_node)
7528 maybe_warn_about_useless_cast (type, expr, complain);
7529 maybe_warn_about_cast_ignoring_quals (type, complain);
7531 return r;
7534 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
7535 return an appropriate expression. Otherwise, return
7536 error_mark_node. If the cast is not valid, and COMPLAIN is true,
7537 then a diagnostic will be issued. If VALID_P is non-NULL, we are
7538 performing a C-style cast, its value upon return will indicate
7539 whether or not the conversion succeeded. */
7541 static tree
7542 build_const_cast_1 (tree dst_type, tree expr, tsubst_flags_t complain,
7543 bool *valid_p)
7545 tree src_type;
7546 tree reference_type;
7548 /* Callers are responsible for handling error_mark_node as a
7549 destination type. */
7550 gcc_assert (dst_type != error_mark_node);
7551 /* In a template, callers should be building syntactic
7552 representations of casts, not using this machinery. */
7553 gcc_assert (!processing_template_decl);
7555 /* Assume the conversion is invalid. */
7556 if (valid_p)
7557 *valid_p = false;
7559 if (!INDIRECT_TYPE_P (dst_type) && !TYPE_PTRDATAMEM_P (dst_type))
7561 if (complain & tf_error)
7562 error ("invalid use of const_cast with type %qT, "
7563 "which is not a pointer, "
7564 "reference, nor a pointer-to-data-member type", dst_type);
7565 return error_mark_node;
7568 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
7570 if (complain & tf_error)
7571 error ("invalid use of const_cast with type %qT, which is a pointer "
7572 "or reference to a function type", dst_type);
7573 return error_mark_node;
7576 /* A prvalue of non-class type is cv-unqualified. */
7577 dst_type = cv_unqualified (dst_type);
7579 /* Save casted types in the function's used types hash table. */
7580 used_types_insert (dst_type);
7582 src_type = TREE_TYPE (expr);
7583 /* Expressions do not really have reference types. */
7584 if (TYPE_REF_P (src_type))
7585 src_type = TREE_TYPE (src_type);
7587 /* [expr.const.cast]
7589 For two object types T1 and T2, if a pointer to T1 can be explicitly
7590 converted to the type "pointer to T2" using a const_cast, then the
7591 following conversions can also be made:
7593 -- an lvalue of type T1 can be explicitly converted to an lvalue of
7594 type T2 using the cast const_cast<T2&>;
7596 -- a glvalue of type T1 can be explicitly converted to an xvalue of
7597 type T2 using the cast const_cast<T2&&>; and
7599 -- if T1 is a class type, a prvalue of type T1 can be explicitly
7600 converted to an xvalue of type T2 using the cast const_cast<T2&&>. */
7602 if (TYPE_REF_P (dst_type))
7604 reference_type = dst_type;
7605 if (!TYPE_REF_IS_RVALUE (dst_type)
7606 ? lvalue_p (expr)
7607 : obvalue_p (expr))
7608 /* OK. */;
7609 else
7611 if (complain & tf_error)
7612 error ("invalid const_cast of an rvalue of type %qT to type %qT",
7613 src_type, dst_type);
7614 return error_mark_node;
7616 dst_type = build_pointer_type (TREE_TYPE (dst_type));
7617 src_type = build_pointer_type (src_type);
7619 else
7621 reference_type = NULL_TREE;
7622 /* If the destination type is not a reference type, the
7623 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
7624 conversions are performed. */
7625 src_type = type_decays_to (src_type);
7626 if (src_type == error_mark_node)
7627 return error_mark_node;
7630 if (TYPE_PTR_P (src_type) || TYPE_PTRDATAMEM_P (src_type))
7632 if (comp_ptr_ttypes_const (dst_type, src_type))
7634 if (valid_p)
7636 *valid_p = true;
7637 /* This cast is actually a C-style cast. Issue a warning if
7638 the user is making a potentially unsafe cast. */
7639 check_for_casting_away_constness (src_type, dst_type,
7640 CAST_EXPR, complain);
7641 /* ??? comp_ptr_ttypes_const ignores TYPE_ALIGN. */
7642 if ((STRICT_ALIGNMENT || warn_cast_align == 2)
7643 && (complain & tf_warning)
7644 && min_align_of_type (TREE_TYPE (dst_type))
7645 > min_align_of_type (TREE_TYPE (src_type)))
7646 warning (OPT_Wcast_align, "cast from %qH to %qI "
7647 "increases required alignment of target type",
7648 src_type, dst_type);
7650 if (reference_type)
7652 expr = cp_build_addr_expr (expr, complain);
7653 if (expr == error_mark_node)
7654 return error_mark_node;
7655 expr = build_nop (reference_type, expr);
7656 return convert_from_reference (expr);
7658 else
7660 expr = decay_conversion (expr, complain);
7661 if (expr == error_mark_node)
7662 return error_mark_node;
7664 /* build_c_cast puts on a NOP_EXPR to make the result not an
7665 lvalue. Strip such NOP_EXPRs if VALUE is being used in
7666 non-lvalue context. */
7667 if (TREE_CODE (expr) == NOP_EXPR
7668 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7669 expr = TREE_OPERAND (expr, 0);
7670 return build_nop (dst_type, expr);
7673 else if (valid_p
7674 && !at_least_as_qualified_p (TREE_TYPE (dst_type),
7675 TREE_TYPE (src_type)))
7676 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR,
7677 complain);
7680 if (complain & tf_error)
7681 error ("invalid const_cast from type %qT to type %qT",
7682 src_type, dst_type);
7683 return error_mark_node;
7686 tree
7687 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
7689 tree r;
7691 if (type == error_mark_node || error_operand_p (expr))
7692 return error_mark_node;
7694 if (processing_template_decl)
7696 tree t = build_min (CONST_CAST_EXPR, type, expr);
7698 if (!TREE_SIDE_EFFECTS (t)
7699 && type_dependent_expression_p (expr))
7700 /* There might turn out to be side effects inside expr. */
7701 TREE_SIDE_EFFECTS (t) = 1;
7702 return convert_from_reference (t);
7705 r = build_const_cast_1 (type, expr, complain, /*valid_p=*/NULL);
7706 if (r != error_mark_node)
7708 maybe_warn_about_useless_cast (type, expr, complain);
7709 maybe_warn_about_cast_ignoring_quals (type, complain);
7711 return r;
7714 /* Like cp_build_c_cast, but for the c-common bits. */
7716 tree
7717 build_c_cast (location_t /*loc*/, tree type, tree expr)
7719 return cp_build_c_cast (type, expr, tf_warning_or_error);
7722 /* Like the "build_c_cast" used for c-common, but using cp_expr to
7723 preserve location information even for tree nodes that don't
7724 support it. */
7726 cp_expr
7727 build_c_cast (location_t loc, tree type, cp_expr expr)
7729 cp_expr result = cp_build_c_cast (type, expr, tf_warning_or_error);
7730 result.set_location (loc);
7731 return result;
7734 /* Build an expression representing an explicit C-style cast to type
7735 TYPE of expression EXPR. */
7737 tree
7738 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
7740 tree value = expr;
7741 tree result;
7742 bool valid_p;
7744 if (type == error_mark_node || error_operand_p (expr))
7745 return error_mark_node;
7747 if (processing_template_decl)
7749 tree t = build_min (CAST_EXPR, type,
7750 tree_cons (NULL_TREE, value, NULL_TREE));
7751 /* We don't know if it will or will not have side effects. */
7752 TREE_SIDE_EFFECTS (t) = 1;
7753 return convert_from_reference (t);
7756 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
7757 'Class') should always be retained, because this information aids
7758 in method lookup. */
7759 if (objc_is_object_ptr (type)
7760 && objc_is_object_ptr (TREE_TYPE (expr)))
7761 return build_nop (type, expr);
7763 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7764 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7765 if (!TYPE_REF_P (type)
7766 && TREE_CODE (value) == NOP_EXPR
7767 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
7768 value = TREE_OPERAND (value, 0);
7770 if (TREE_CODE (type) == ARRAY_TYPE)
7772 /* Allow casting from T1* to T2[] because Cfront allows it.
7773 NIHCL uses it. It is not valid ISO C++ however. */
7774 if (TYPE_PTR_P (TREE_TYPE (expr)))
7776 if (complain & tf_error)
7777 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
7778 else
7779 return error_mark_node;
7780 type = build_pointer_type (TREE_TYPE (type));
7782 else
7784 if (complain & tf_error)
7785 error ("ISO C++ forbids casting to an array type %qT", type);
7786 return error_mark_node;
7790 if (TREE_CODE (type) == FUNCTION_TYPE
7791 || TREE_CODE (type) == METHOD_TYPE)
7793 if (complain & tf_error)
7794 error ("invalid cast to function type %qT", type);
7795 return error_mark_node;
7798 if (TYPE_PTR_P (type)
7799 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
7800 /* Casting to an integer of smaller size is an error detected elsewhere. */
7801 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
7802 /* Don't warn about converting any constant. */
7803 && !TREE_CONSTANT (value))
7804 warning_at (input_location, OPT_Wint_to_pointer_cast,
7805 "cast to pointer from integer of different size");
7807 /* A C-style cast can be a const_cast. */
7808 result = build_const_cast_1 (type, value, complain & tf_warning,
7809 &valid_p);
7810 if (valid_p)
7812 if (result != error_mark_node)
7814 maybe_warn_about_useless_cast (type, value, complain);
7815 maybe_warn_about_cast_ignoring_quals (type, complain);
7817 return result;
7820 /* Or a static cast. */
7821 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
7822 &valid_p, complain);
7823 /* Or a reinterpret_cast. */
7824 if (!valid_p)
7825 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
7826 &valid_p, complain);
7827 /* The static_cast or reinterpret_cast may be followed by a
7828 const_cast. */
7829 if (valid_p
7830 /* A valid cast may result in errors if, for example, a
7831 conversion to an ambiguous base class is required. */
7832 && !error_operand_p (result))
7834 tree result_type;
7836 maybe_warn_about_useless_cast (type, value, complain);
7837 maybe_warn_about_cast_ignoring_quals (type, complain);
7839 /* Non-class rvalues always have cv-unqualified type. */
7840 if (!CLASS_TYPE_P (type))
7841 type = TYPE_MAIN_VARIANT (type);
7842 result_type = TREE_TYPE (result);
7843 if (!CLASS_TYPE_P (result_type) && !TYPE_REF_P (type))
7844 result_type = TYPE_MAIN_VARIANT (result_type);
7845 /* If the type of RESULT does not match TYPE, perform a
7846 const_cast to make it match. If the static_cast or
7847 reinterpret_cast succeeded, we will differ by at most
7848 cv-qualification, so the follow-on const_cast is guaranteed
7849 to succeed. */
7850 if (!same_type_p (non_reference (type), non_reference (result_type)))
7852 result = build_const_cast_1 (type, result, false, &valid_p);
7853 gcc_assert (valid_p);
7855 return result;
7858 return error_mark_node;
7861 /* For use from the C common bits. */
7862 tree
7863 build_modify_expr (location_t location,
7864 tree lhs, tree /*lhs_origtype*/,
7865 enum tree_code modifycode,
7866 location_t /*rhs_location*/, tree rhs,
7867 tree /*rhs_origtype*/)
7869 return cp_build_modify_expr (location, lhs, modifycode, rhs,
7870 tf_warning_or_error);
7873 /* Build an assignment expression of lvalue LHS from value RHS.
7874 MODIFYCODE is the code for a binary operator that we use
7875 to combine the old value of LHS with RHS to get the new value.
7876 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
7878 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
7880 tree
7881 cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
7882 tree rhs, tsubst_flags_t complain)
7884 lhs = mark_lvalue_use_nonread (lhs);
7886 tree result = NULL_TREE;
7887 tree newrhs = rhs;
7888 tree lhstype = TREE_TYPE (lhs);
7889 tree olhs = lhs;
7890 tree olhstype = lhstype;
7891 bool plain_assign = (modifycode == NOP_EXPR);
7892 bool compound_side_effects_p = false;
7893 tree preeval = NULL_TREE;
7895 /* Avoid duplicate error messages from operands that had errors. */
7896 if (error_operand_p (lhs) || error_operand_p (rhs))
7897 return error_mark_node;
7899 while (TREE_CODE (lhs) == COMPOUND_EXPR)
7901 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
7902 compound_side_effects_p = true;
7903 lhs = TREE_OPERAND (lhs, 1);
7906 /* Handle control structure constructs used as "lvalues". Note that we
7907 leave COMPOUND_EXPR on the LHS because it is sequenced after the RHS. */
7908 switch (TREE_CODE (lhs))
7910 /* Handle --foo = 5; as these are valid constructs in C++. */
7911 case PREDECREMENT_EXPR:
7912 case PREINCREMENT_EXPR:
7913 if (compound_side_effects_p)
7914 newrhs = rhs = stabilize_expr (rhs, &preeval);
7915 lhs = genericize_compound_lvalue (lhs);
7916 maybe_add_compound:
7917 /* If we had (bar, --foo) = 5; or (bar, (baz, --foo)) = 5;
7918 and looked through the COMPOUND_EXPRs, readd them now around
7919 the resulting lhs. */
7920 if (TREE_CODE (olhs) == COMPOUND_EXPR)
7922 lhs = build2 (COMPOUND_EXPR, lhstype, TREE_OPERAND (olhs, 0), lhs);
7923 tree *ptr = &TREE_OPERAND (lhs, 1);
7924 for (olhs = TREE_OPERAND (olhs, 1);
7925 TREE_CODE (olhs) == COMPOUND_EXPR;
7926 olhs = TREE_OPERAND (olhs, 1))
7928 *ptr = build2 (COMPOUND_EXPR, lhstype,
7929 TREE_OPERAND (olhs, 0), *ptr);
7930 ptr = &TREE_OPERAND (*ptr, 1);
7933 break;
7935 case MODIFY_EXPR:
7936 if (compound_side_effects_p)
7937 newrhs = rhs = stabilize_expr (rhs, &preeval);
7938 lhs = genericize_compound_lvalue (lhs);
7939 goto maybe_add_compound;
7941 case MIN_EXPR:
7942 case MAX_EXPR:
7943 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
7944 when neither operand has side-effects. */
7945 if (!lvalue_or_else (lhs, lv_assign, complain))
7946 return error_mark_node;
7948 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
7949 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
7951 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
7952 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
7953 boolean_type_node,
7954 TREE_OPERAND (lhs, 0),
7955 TREE_OPERAND (lhs, 1)),
7956 TREE_OPERAND (lhs, 0),
7957 TREE_OPERAND (lhs, 1));
7958 gcc_fallthrough ();
7960 /* Handle (a ? b : c) used as an "lvalue". */
7961 case COND_EXPR:
7963 /* Produce (a ? (b = rhs) : (c = rhs))
7964 except that the RHS goes through a save-expr
7965 so the code to compute it is only emitted once. */
7966 tree cond;
7968 if (VOID_TYPE_P (TREE_TYPE (rhs)))
7970 if (complain & tf_error)
7971 error ("void value not ignored as it ought to be");
7972 return error_mark_node;
7975 rhs = stabilize_expr (rhs, &preeval);
7977 /* Check this here to avoid odd errors when trying to convert
7978 a throw to the type of the COND_EXPR. */
7979 if (!lvalue_or_else (lhs, lv_assign, complain))
7980 return error_mark_node;
7982 cond = build_conditional_expr
7983 (input_location, TREE_OPERAND (lhs, 0),
7984 cp_build_modify_expr (loc, TREE_OPERAND (lhs, 1),
7985 modifycode, rhs, complain),
7986 cp_build_modify_expr (loc, TREE_OPERAND (lhs, 2),
7987 modifycode, rhs, complain),
7988 complain);
7990 if (cond == error_mark_node)
7991 return cond;
7992 /* If we had (e, (a ? b : c)) = d; or (e, (f, (a ? b : c))) = d;
7993 and looked through the COMPOUND_EXPRs, readd them now around
7994 the resulting cond before adding the preevaluated rhs. */
7995 if (TREE_CODE (olhs) == COMPOUND_EXPR)
7997 cond = build2 (COMPOUND_EXPR, TREE_TYPE (cond),
7998 TREE_OPERAND (olhs, 0), cond);
7999 tree *ptr = &TREE_OPERAND (cond, 1);
8000 for (olhs = TREE_OPERAND (olhs, 1);
8001 TREE_CODE (olhs) == COMPOUND_EXPR;
8002 olhs = TREE_OPERAND (olhs, 1))
8004 *ptr = build2 (COMPOUND_EXPR, TREE_TYPE (cond),
8005 TREE_OPERAND (olhs, 0), *ptr);
8006 ptr = &TREE_OPERAND (*ptr, 1);
8009 /* Make sure the code to compute the rhs comes out
8010 before the split. */
8011 result = cond;
8012 goto ret;
8015 default:
8016 lhs = olhs;
8017 break;
8020 if (modifycode == INIT_EXPR)
8022 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
8023 /* Do the default thing. */;
8024 else if (TREE_CODE (rhs) == CONSTRUCTOR)
8026 /* Compound literal. */
8027 if (! same_type_p (TREE_TYPE (rhs), lhstype))
8028 /* Call convert to generate an error; see PR 11063. */
8029 rhs = convert (lhstype, rhs);
8030 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
8031 TREE_SIDE_EFFECTS (result) = 1;
8032 goto ret;
8034 else if (! MAYBE_CLASS_TYPE_P (lhstype))
8035 /* Do the default thing. */;
8036 else
8038 vec<tree, va_gc> *rhs_vec = make_tree_vector_single (rhs);
8039 result = build_special_member_call (lhs, complete_ctor_identifier,
8040 &rhs_vec, lhstype, LOOKUP_NORMAL,
8041 complain);
8042 release_tree_vector (rhs_vec);
8043 if (result == NULL_TREE)
8044 return error_mark_node;
8045 goto ret;
8048 else
8050 lhs = require_complete_type_sfinae (lhs, complain);
8051 if (lhs == error_mark_node)
8052 return error_mark_node;
8054 if (modifycode == NOP_EXPR)
8056 if (c_dialect_objc ())
8058 result = objc_maybe_build_modify_expr (lhs, rhs);
8059 if (result)
8060 goto ret;
8063 /* `operator=' is not an inheritable operator. */
8064 if (! MAYBE_CLASS_TYPE_P (lhstype))
8065 /* Do the default thing. */;
8066 else
8068 result = build_new_op (input_location, MODIFY_EXPR,
8069 LOOKUP_NORMAL, lhs, rhs,
8070 make_node (NOP_EXPR), /*overload=*/NULL,
8071 complain);
8072 if (result == NULL_TREE)
8073 return error_mark_node;
8074 goto ret;
8076 lhstype = olhstype;
8078 else
8080 tree init = NULL_TREE;
8082 /* A binary op has been requested. Combine the old LHS
8083 value with the RHS producing the value we should actually
8084 store into the LHS. */
8085 gcc_assert (!((TYPE_REF_P (lhstype)
8086 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
8087 || MAYBE_CLASS_TYPE_P (lhstype)));
8089 /* Preevaluate the RHS to make sure its evaluation is complete
8090 before the lvalue-to-rvalue conversion of the LHS:
8092 [expr.ass] With respect to an indeterminately-sequenced
8093 function call, the operation of a compound assignment is a
8094 single evaluation. [ Note: Therefore, a function call shall
8095 not intervene between the lvalue-to-rvalue conversion and the
8096 side effect associated with any single compound assignment
8097 operator. -- end note ] */
8098 lhs = cp_stabilize_reference (lhs);
8099 rhs = decay_conversion (rhs, complain);
8100 if (rhs == error_mark_node)
8101 return error_mark_node;
8102 rhs = stabilize_expr (rhs, &init);
8103 newrhs = cp_build_binary_op (loc, modifycode, lhs, rhs, complain);
8104 if (newrhs == error_mark_node)
8106 if (complain & tf_error)
8107 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
8108 TREE_TYPE (lhs), TREE_TYPE (rhs));
8109 return error_mark_node;
8112 if (init)
8113 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), init, newrhs);
8115 /* Now it looks like a plain assignment. */
8116 modifycode = NOP_EXPR;
8117 if (c_dialect_objc ())
8119 result = objc_maybe_build_modify_expr (lhs, newrhs);
8120 if (result)
8121 goto ret;
8124 gcc_assert (!TYPE_REF_P (lhstype));
8125 gcc_assert (!TYPE_REF_P (TREE_TYPE (newrhs)));
8128 /* The left-hand side must be an lvalue. */
8129 if (!lvalue_or_else (lhs, lv_assign, complain))
8130 return error_mark_node;
8132 /* Warn about modifying something that is `const'. Don't warn if
8133 this is initialization. */
8134 if (modifycode != INIT_EXPR
8135 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
8136 /* Functions are not modifiable, even though they are
8137 lvalues. */
8138 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
8139 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
8140 /* If it's an aggregate and any field is const, then it is
8141 effectively const. */
8142 || (CLASS_TYPE_P (lhstype)
8143 && C_TYPE_FIELDS_READONLY (lhstype))))
8145 if (complain & tf_error)
8146 cxx_readonly_error (lhs, lv_assign);
8147 return error_mark_node;
8150 /* If storing into a structure or union member, it may have been given a
8151 lowered bitfield type. We need to convert to the declared type first,
8152 so retrieve it now. */
8154 olhstype = unlowered_expr_type (lhs);
8156 /* Convert new value to destination type. */
8158 if (TREE_CODE (lhstype) == ARRAY_TYPE)
8160 int from_array;
8162 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
8164 if (modifycode != INIT_EXPR)
8166 if (complain & tf_error)
8167 error ("assigning to an array from an initializer list");
8168 return error_mark_node;
8170 if (check_array_initializer (lhs, lhstype, newrhs))
8171 return error_mark_node;
8172 newrhs = digest_init (lhstype, newrhs, complain);
8173 if (newrhs == error_mark_node)
8174 return error_mark_node;
8177 /* C++11 8.5/17: "If the destination type is an array of characters,
8178 an array of char16_t, an array of char32_t, or an array of wchar_t,
8179 and the initializer is a string literal...". */
8180 else if (TREE_CODE (newrhs) == STRING_CST
8181 && char_type_p (TREE_TYPE (TYPE_MAIN_VARIANT (lhstype)))
8182 && modifycode == INIT_EXPR)
8184 newrhs = digest_init (lhstype, newrhs, complain);
8185 if (newrhs == error_mark_node)
8186 return error_mark_node;
8189 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
8190 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
8192 if (complain & tf_error)
8193 error ("incompatible types in assignment of %qT to %qT",
8194 TREE_TYPE (rhs), lhstype);
8195 return error_mark_node;
8198 /* Allow array assignment in compiler-generated code. */
8199 else if (!current_function_decl
8200 || !DECL_DEFAULTED_FN (current_function_decl))
8202 /* This routine is used for both initialization and assignment.
8203 Make sure the diagnostic message differentiates the context. */
8204 if (complain & tf_error)
8206 if (modifycode == INIT_EXPR)
8207 error ("array used as initializer");
8208 else
8209 error ("invalid array assignment");
8211 return error_mark_node;
8214 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
8215 ? 1 + (modifycode != INIT_EXPR): 0;
8216 result = build_vec_init (lhs, NULL_TREE, newrhs,
8217 /*explicit_value_init_p=*/false,
8218 from_array, complain);
8219 goto ret;
8222 if (modifycode == INIT_EXPR)
8223 /* Calls with INIT_EXPR are all direct-initialization, so don't set
8224 LOOKUP_ONLYCONVERTING. */
8225 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
8226 ICR_INIT, NULL_TREE, 0,
8227 complain);
8228 else
8229 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
8230 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
8232 if (!same_type_p (lhstype, olhstype))
8233 newrhs = cp_convert_and_check (lhstype, newrhs, complain);
8235 if (modifycode != INIT_EXPR)
8237 if (TREE_CODE (newrhs) == CALL_EXPR
8238 && TYPE_NEEDS_CONSTRUCTING (lhstype))
8239 newrhs = build_cplus_new (lhstype, newrhs, complain);
8241 /* Can't initialize directly from a TARGET_EXPR, since that would
8242 cause the lhs to be constructed twice, and possibly result in
8243 accidental self-initialization. So we force the TARGET_EXPR to be
8244 expanded without a target. */
8245 if (TREE_CODE (newrhs) == TARGET_EXPR)
8246 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
8247 TREE_OPERAND (newrhs, 0));
8250 if (newrhs == error_mark_node)
8251 return error_mark_node;
8253 if (c_dialect_objc () && flag_objc_gc)
8255 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
8257 if (result)
8258 goto ret;
8261 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
8262 lhstype, lhs, newrhs);
8264 TREE_SIDE_EFFECTS (result) = 1;
8265 if (!plain_assign)
8266 TREE_NO_WARNING (result) = 1;
8268 ret:
8269 if (preeval)
8270 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), preeval, result);
8271 return result;
8274 cp_expr
8275 build_x_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
8276 tree rhs, tsubst_flags_t complain)
8278 tree orig_lhs = lhs;
8279 tree orig_rhs = rhs;
8280 tree overload = NULL_TREE;
8281 tree op = build_nt (modifycode, NULL_TREE, NULL_TREE);
8283 if (processing_template_decl)
8285 if (modifycode == NOP_EXPR
8286 || type_dependent_expression_p (lhs)
8287 || type_dependent_expression_p (rhs))
8288 return build_min_nt_loc (loc, MODOP_EXPR, lhs,
8289 build_min_nt_loc (loc, modifycode, NULL_TREE,
8290 NULL_TREE), rhs);
8292 lhs = build_non_dependent_expr (lhs);
8293 rhs = build_non_dependent_expr (rhs);
8296 if (modifycode != NOP_EXPR)
8298 tree rval = build_new_op (loc, MODIFY_EXPR, LOOKUP_NORMAL,
8299 lhs, rhs, op, &overload, complain);
8300 if (rval)
8302 if (rval == error_mark_node)
8303 return rval;
8304 TREE_NO_WARNING (rval) = 1;
8305 if (processing_template_decl)
8307 if (overload != NULL_TREE)
8308 return (build_min_non_dep_op_overload
8309 (MODIFY_EXPR, rval, overload, orig_lhs, orig_rhs));
8311 return (build_min_non_dep
8312 (MODOP_EXPR, rval, orig_lhs, op, orig_rhs));
8314 return rval;
8317 return cp_build_modify_expr (loc, lhs, modifycode, rhs, complain);
8320 /* Helper function for get_delta_difference which assumes FROM is a base
8321 class of TO. Returns a delta for the conversion of pointer-to-member
8322 of FROM to pointer-to-member of TO. If the conversion is invalid and
8323 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
8324 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
8325 If C_CAST_P is true, this conversion is taking place as part of a
8326 C-style cast. */
8328 static tree
8329 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
8330 tsubst_flags_t complain)
8332 tree binfo;
8333 base_kind kind;
8335 binfo = lookup_base (to, from, c_cast_p ? ba_unique : ba_check,
8336 &kind, complain);
8338 if (binfo == error_mark_node)
8340 if (!(complain & tf_error))
8341 return error_mark_node;
8343 error (" in pointer to member function conversion");
8344 return size_zero_node;
8346 else if (binfo)
8348 if (kind != bk_via_virtual)
8349 return BINFO_OFFSET (binfo);
8350 else
8351 /* FROM is a virtual base class of TO. Issue an error or warning
8352 depending on whether or not this is a reinterpret cast. */
8354 if (!(complain & tf_error))
8355 return error_mark_node;
8357 error ("pointer to member conversion via virtual base %qT",
8358 BINFO_TYPE (binfo_from_vbase (binfo)));
8360 return size_zero_node;
8363 else
8364 return NULL_TREE;
8367 /* Get difference in deltas for different pointer to member function
8368 types. If the conversion is invalid and tf_error is not set in
8369 COMPLAIN, returns error_mark_node, otherwise returns an integer
8370 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
8371 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
8372 conversions as well. If C_CAST_P is true this conversion is taking
8373 place as part of a C-style cast.
8375 Note that the naming of FROM and TO is kind of backwards; the return
8376 value is what we add to a TO in order to get a FROM. They are named
8377 this way because we call this function to find out how to convert from
8378 a pointer to member of FROM to a pointer to member of TO. */
8380 static tree
8381 get_delta_difference (tree from, tree to,
8382 bool allow_inverse_p,
8383 bool c_cast_p, tsubst_flags_t complain)
8385 tree result;
8387 if (same_type_ignoring_top_level_qualifiers_p (from, to))
8388 /* Pointer to member of incomplete class is permitted*/
8389 result = size_zero_node;
8390 else
8391 result = get_delta_difference_1 (from, to, c_cast_p, complain);
8393 if (result == error_mark_node)
8394 return error_mark_node;
8396 if (!result)
8398 if (!allow_inverse_p)
8400 if (!(complain & tf_error))
8401 return error_mark_node;
8403 error_not_base_type (from, to);
8404 error (" in pointer to member conversion");
8405 result = size_zero_node;
8407 else
8409 result = get_delta_difference_1 (to, from, c_cast_p, complain);
8411 if (result == error_mark_node)
8412 return error_mark_node;
8414 if (result)
8415 result = size_diffop_loc (input_location,
8416 size_zero_node, result);
8417 else
8419 if (!(complain & tf_error))
8420 return error_mark_node;
8422 error_not_base_type (from, to);
8423 error (" in pointer to member conversion");
8424 result = size_zero_node;
8429 return convert_to_integer (ptrdiff_type_node, result);
8432 /* Return a constructor for the pointer-to-member-function TYPE using
8433 the other components as specified. */
8435 tree
8436 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
8438 tree u = NULL_TREE;
8439 tree delta_field;
8440 tree pfn_field;
8441 vec<constructor_elt, va_gc> *v;
8443 /* Pull the FIELD_DECLs out of the type. */
8444 pfn_field = TYPE_FIELDS (type);
8445 delta_field = DECL_CHAIN (pfn_field);
8447 /* Make sure DELTA has the type we want. */
8448 delta = convert_and_check (input_location, delta_type_node, delta);
8450 /* Convert to the correct target type if necessary. */
8451 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
8453 /* Finish creating the initializer. */
8454 vec_alloc (v, 2);
8455 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
8456 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
8457 u = build_constructor (type, v);
8458 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
8459 TREE_STATIC (u) = (TREE_CONSTANT (u)
8460 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
8461 != NULL_TREE)
8462 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
8463 != NULL_TREE));
8464 return u;
8467 /* Build a constructor for a pointer to member function. It can be
8468 used to initialize global variables, local variable, or used
8469 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
8470 want to be.
8472 If FORCE is nonzero, then force this conversion, even if
8473 we would rather not do it. Usually set when using an explicit
8474 cast. A C-style cast is being processed iff C_CAST_P is true.
8476 Return error_mark_node, if something goes wrong. */
8478 tree
8479 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
8480 tsubst_flags_t complain)
8482 tree fn;
8483 tree pfn_type;
8484 tree to_type;
8486 if (error_operand_p (pfn))
8487 return error_mark_node;
8489 pfn_type = TREE_TYPE (pfn);
8490 to_type = build_ptrmemfunc_type (type);
8492 /* Handle multiple conversions of pointer to member functions. */
8493 if (TYPE_PTRMEMFUNC_P (pfn_type))
8495 tree delta = NULL_TREE;
8496 tree npfn = NULL_TREE;
8497 tree n;
8499 if (!force
8500 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn,
8501 LOOKUP_NORMAL, complain))
8503 if (complain & tf_error)
8504 error ("invalid conversion to type %qT from type %qT",
8505 to_type, pfn_type);
8506 else
8507 return error_mark_node;
8510 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
8511 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
8512 force,
8513 c_cast_p, complain);
8514 if (n == error_mark_node)
8515 return error_mark_node;
8517 /* We don't have to do any conversion to convert a
8518 pointer-to-member to its own type. But, we don't want to
8519 just return a PTRMEM_CST if there's an explicit cast; that
8520 cast should make the expression an invalid template argument. */
8521 if (TREE_CODE (pfn) != PTRMEM_CST)
8523 if (same_type_p (to_type, pfn_type))
8524 return pfn;
8525 else if (integer_zerop (n) && TREE_CODE (pfn) != CONSTRUCTOR)
8526 return build_reinterpret_cast (to_type, pfn,
8527 complain);
8530 if (TREE_SIDE_EFFECTS (pfn))
8531 pfn = save_expr (pfn);
8533 /* Obtain the function pointer and the current DELTA. */
8534 if (TREE_CODE (pfn) == PTRMEM_CST)
8535 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
8536 else
8538 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
8539 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
8542 /* Just adjust the DELTA field. */
8543 gcc_assert (same_type_ignoring_top_level_qualifiers_p
8544 (TREE_TYPE (delta), ptrdiff_type_node));
8545 if (!integer_zerop (n))
8547 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
8548 n = cp_build_binary_op (input_location,
8549 LSHIFT_EXPR, n, integer_one_node,
8550 complain);
8551 delta = cp_build_binary_op (input_location,
8552 PLUS_EXPR, delta, n, complain);
8554 return build_ptrmemfunc1 (to_type, delta, npfn);
8557 /* Handle null pointer to member function conversions. */
8558 if (null_ptr_cst_p (pfn))
8560 pfn = cp_build_c_cast (type, pfn, complain);
8561 return build_ptrmemfunc1 (to_type,
8562 integer_zero_node,
8563 pfn);
8566 if (type_unknown_p (pfn))
8567 return instantiate_type (type, pfn, complain);
8569 fn = TREE_OPERAND (pfn, 0);
8570 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
8571 /* In a template, we will have preserved the
8572 OFFSET_REF. */
8573 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
8574 return make_ptrmem_cst (to_type, fn);
8577 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
8578 given by CST.
8580 ??? There is no consistency as to the types returned for the above
8581 values. Some code acts as if it were a sizetype and some as if it were
8582 integer_type_node. */
8584 void
8585 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
8587 tree type = TREE_TYPE (cst);
8588 tree fn = PTRMEM_CST_MEMBER (cst);
8589 tree ptr_class, fn_class;
8591 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
8593 /* The class that the function belongs to. */
8594 fn_class = DECL_CONTEXT (fn);
8596 /* The class that we're creating a pointer to member of. */
8597 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
8599 /* First, calculate the adjustment to the function's class. */
8600 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
8601 /*c_cast_p=*/0, tf_warning_or_error);
8603 if (!DECL_VIRTUAL_P (fn))
8604 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type),
8605 build_addr_func (fn, tf_warning_or_error));
8606 else
8608 /* If we're dealing with a virtual function, we have to adjust 'this'
8609 again, to point to the base which provides the vtable entry for
8610 fn; the call will do the opposite adjustment. */
8611 tree orig_class = DECL_CONTEXT (fn);
8612 tree binfo = binfo_or_else (orig_class, fn_class);
8613 *delta = fold_build2 (PLUS_EXPR, TREE_TYPE (*delta),
8614 *delta, BINFO_OFFSET (binfo));
8616 /* We set PFN to the vtable offset at which the function can be
8617 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
8618 case delta is shifted left, and then incremented). */
8619 *pfn = DECL_VINDEX (fn);
8620 *pfn = fold_build2 (MULT_EXPR, integer_type_node, *pfn,
8621 TYPE_SIZE_UNIT (vtable_entry_type));
8623 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
8625 case ptrmemfunc_vbit_in_pfn:
8626 *pfn = fold_build2 (PLUS_EXPR, integer_type_node, *pfn,
8627 integer_one_node);
8628 break;
8630 case ptrmemfunc_vbit_in_delta:
8631 *delta = fold_build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
8632 *delta, integer_one_node);
8633 *delta = fold_build2 (PLUS_EXPR, TREE_TYPE (*delta),
8634 *delta, integer_one_node);
8635 break;
8637 default:
8638 gcc_unreachable ();
8641 *pfn = fold_convert (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
8645 /* Return an expression for PFN from the pointer-to-member function
8646 given by T. */
8648 static tree
8649 pfn_from_ptrmemfunc (tree t)
8651 if (TREE_CODE (t) == PTRMEM_CST)
8653 tree delta;
8654 tree pfn;
8656 expand_ptrmemfunc_cst (t, &delta, &pfn);
8657 if (pfn)
8658 return pfn;
8661 return build_ptrmemfunc_access_expr (t, pfn_identifier);
8664 /* Return an expression for DELTA from the pointer-to-member function
8665 given by T. */
8667 static tree
8668 delta_from_ptrmemfunc (tree t)
8670 if (TREE_CODE (t) == PTRMEM_CST)
8672 tree delta;
8673 tree pfn;
8675 expand_ptrmemfunc_cst (t, &delta, &pfn);
8676 if (delta)
8677 return delta;
8680 return build_ptrmemfunc_access_expr (t, delta_identifier);
8683 /* Convert value RHS to type TYPE as preparation for an assignment to
8684 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
8685 implicit conversion is. If FNDECL is non-NULL, we are doing the
8686 conversion in order to pass the PARMNUMth argument of FNDECL.
8687 If FNDECL is NULL, we are doing the conversion in function pointer
8688 argument passing, conversion in initialization, etc. */
8690 static tree
8691 convert_for_assignment (tree type, tree rhs,
8692 impl_conv_rhs errtype, tree fndecl, int parmnum,
8693 tsubst_flags_t complain, int flags)
8695 tree rhstype;
8696 enum tree_code coder;
8698 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
8699 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
8700 rhs = TREE_OPERAND (rhs, 0);
8702 /* Handle [dcl.init.list] direct-list-initialization from
8703 single element of enumeration with a fixed underlying type. */
8704 if (is_direct_enum_init (type, rhs))
8706 tree elt = CONSTRUCTOR_ELT (rhs, 0)->value;
8707 if (check_narrowing (ENUM_UNDERLYING_TYPE (type), elt, complain))
8709 warning_sentinel w (warn_useless_cast);
8710 warning_sentinel w2 (warn_ignored_qualifiers);
8711 rhs = cp_build_c_cast (type, elt, complain);
8713 else
8714 rhs = error_mark_node;
8717 rhstype = TREE_TYPE (rhs);
8718 coder = TREE_CODE (rhstype);
8720 if (VECTOR_TYPE_P (type) && coder == VECTOR_TYPE
8721 && vector_types_convertible_p (type, rhstype, true))
8723 rhs = mark_rvalue_use (rhs);
8724 return convert (type, rhs);
8727 if (rhs == error_mark_node || rhstype == error_mark_node)
8728 return error_mark_node;
8729 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
8730 return error_mark_node;
8732 /* The RHS of an assignment cannot have void type. */
8733 if (coder == VOID_TYPE)
8735 if (complain & tf_error)
8736 error ("void value not ignored as it ought to be");
8737 return error_mark_node;
8740 if (c_dialect_objc ())
8742 int parmno;
8743 tree selector;
8744 tree rname = fndecl;
8746 switch (errtype)
8748 case ICR_ASSIGN:
8749 parmno = -1;
8750 break;
8751 case ICR_INIT:
8752 parmno = -2;
8753 break;
8754 default:
8755 selector = objc_message_selector ();
8756 parmno = parmnum;
8757 if (selector && parmno > 1)
8759 rname = selector;
8760 parmno -= 1;
8764 if (objc_compare_types (type, rhstype, parmno, rname))
8766 rhs = mark_rvalue_use (rhs);
8767 return convert (type, rhs);
8771 /* [expr.ass]
8773 The expression is implicitly converted (clause _conv_) to the
8774 cv-unqualified type of the left operand.
8776 We allow bad conversions here because by the time we get to this point
8777 we are committed to doing the conversion. If we end up doing a bad
8778 conversion, convert_like will complain. */
8779 if (!can_convert_arg_bad (type, rhstype, rhs, flags, complain))
8781 /* When -Wno-pmf-conversions is use, we just silently allow
8782 conversions from pointers-to-members to plain pointers. If
8783 the conversion doesn't work, cp_convert will complain. */
8784 if (!warn_pmf2ptr
8785 && TYPE_PTR_P (type)
8786 && TYPE_PTRMEMFUNC_P (rhstype))
8787 rhs = cp_convert (strip_top_quals (type), rhs, complain);
8788 else
8790 if (complain & tf_error)
8792 /* If the right-hand side has unknown type, then it is an
8793 overloaded function. Call instantiate_type to get error
8794 messages. */
8795 if (rhstype == unknown_type_node)
8797 tree r = instantiate_type (type, rhs, tf_warning_or_error);
8798 /* -fpermissive might allow this; recurse. */
8799 if (!seen_error ())
8800 return convert_for_assignment (type, r, errtype, fndecl,
8801 parmnum, complain, flags);
8803 else if (fndecl)
8805 error_at (cp_expr_loc_or_loc (rhs, input_location),
8806 "cannot convert %qH to %qI",
8807 rhstype, type);
8808 inform (get_fndecl_argument_location (fndecl, parmnum),
8809 " initializing argument %P of %qD", parmnum, fndecl);
8811 else
8812 switch (errtype)
8814 case ICR_DEFAULT_ARGUMENT:
8815 error ("cannot convert %qH to %qI in default argument",
8816 rhstype, type);
8817 break;
8818 case ICR_ARGPASS:
8819 error ("cannot convert %qH to %qI in argument passing",
8820 rhstype, type);
8821 break;
8822 case ICR_CONVERTING:
8823 error ("cannot convert %qH to %qI",
8824 rhstype, type);
8825 break;
8826 case ICR_INIT:
8827 error ("cannot convert %qH to %qI in initialization",
8828 rhstype, type);
8829 break;
8830 case ICR_RETURN:
8831 error ("cannot convert %qH to %qI in return",
8832 rhstype, type);
8833 break;
8834 case ICR_ASSIGN:
8835 error ("cannot convert %qH to %qI in assignment",
8836 rhstype, type);
8837 break;
8838 default:
8839 gcc_unreachable();
8841 if (TYPE_PTR_P (rhstype)
8842 && TYPE_PTR_P (type)
8843 && CLASS_TYPE_P (TREE_TYPE (rhstype))
8844 && CLASS_TYPE_P (TREE_TYPE (type))
8845 && !COMPLETE_TYPE_P (TREE_TYPE (rhstype)))
8846 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL
8847 (TREE_TYPE (rhstype))),
8848 "class type %qT is incomplete", TREE_TYPE (rhstype));
8850 return error_mark_node;
8853 if (warn_suggest_attribute_format)
8855 const enum tree_code codel = TREE_CODE (type);
8856 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
8857 && coder == codel
8858 && check_missing_format_attribute (type, rhstype)
8859 && (complain & tf_warning))
8860 switch (errtype)
8862 case ICR_ARGPASS:
8863 case ICR_DEFAULT_ARGUMENT:
8864 if (fndecl)
8865 warning (OPT_Wsuggest_attribute_format,
8866 "parameter %qP of %qD might be a candidate "
8867 "for a format attribute", parmnum, fndecl);
8868 else
8869 warning (OPT_Wsuggest_attribute_format,
8870 "parameter might be a candidate "
8871 "for a format attribute");
8872 break;
8873 case ICR_CONVERTING:
8874 warning (OPT_Wsuggest_attribute_format,
8875 "target of conversion might be a candidate "
8876 "for a format attribute");
8877 break;
8878 case ICR_INIT:
8879 warning (OPT_Wsuggest_attribute_format,
8880 "target of initialization might be a candidate "
8881 "for a format attribute");
8882 break;
8883 case ICR_RETURN:
8884 warning (OPT_Wsuggest_attribute_format,
8885 "return type might be a candidate "
8886 "for a format attribute");
8887 break;
8888 case ICR_ASSIGN:
8889 warning (OPT_Wsuggest_attribute_format,
8890 "left-hand side of assignment might be a candidate "
8891 "for a format attribute");
8892 break;
8893 default:
8894 gcc_unreachable();
8898 /* If -Wparentheses, warn about a = b = c when a has type bool and b
8899 does not. */
8900 if (warn_parentheses
8901 && TREE_CODE (type) == BOOLEAN_TYPE
8902 && TREE_CODE (rhs) == MODIFY_EXPR
8903 && !TREE_NO_WARNING (rhs)
8904 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
8905 && (complain & tf_warning))
8907 location_t loc = cp_expr_loc_or_loc (rhs, input_location);
8909 warning_at (loc, OPT_Wparentheses,
8910 "suggest parentheses around assignment used as truth value");
8911 TREE_NO_WARNING (rhs) = 1;
8914 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
8915 complain, flags);
8918 /* Convert RHS to be of type TYPE.
8919 If EXP is nonzero, it is the target of the initialization.
8920 ERRTYPE indicates what kind of error the implicit conversion is.
8922 Two major differences between the behavior of
8923 `convert_for_assignment' and `convert_for_initialization'
8924 are that references are bashed in the former, while
8925 copied in the latter, and aggregates are assigned in
8926 the former (operator=) while initialized in the
8927 latter (X(X&)).
8929 If using constructor make sure no conversion operator exists, if one does
8930 exist, an ambiguity exists. */
8932 tree
8933 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
8934 impl_conv_rhs errtype, tree fndecl, int parmnum,
8935 tsubst_flags_t complain)
8937 enum tree_code codel = TREE_CODE (type);
8938 tree rhstype;
8939 enum tree_code coder;
8941 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
8942 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
8943 if (TREE_CODE (rhs) == NOP_EXPR
8944 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
8945 && codel != REFERENCE_TYPE)
8946 rhs = TREE_OPERAND (rhs, 0);
8948 if (type == error_mark_node
8949 || rhs == error_mark_node
8950 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
8951 return error_mark_node;
8953 if (MAYBE_CLASS_TYPE_P (non_reference (type)))
8955 else if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
8956 && TREE_CODE (type) != ARRAY_TYPE
8957 && (!TYPE_REF_P (type)
8958 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
8959 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
8960 && !TYPE_REFFN_P (type))
8961 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
8962 rhs = decay_conversion (rhs, complain);
8964 rhstype = TREE_TYPE (rhs);
8965 coder = TREE_CODE (rhstype);
8967 if (coder == ERROR_MARK)
8968 return error_mark_node;
8970 /* We accept references to incomplete types, so we can
8971 return here before checking if RHS is of complete type. */
8973 if (codel == REFERENCE_TYPE)
8975 /* This should eventually happen in convert_arguments. */
8976 int savew = 0, savee = 0;
8978 if (fndecl)
8979 savew = warningcount + werrorcount, savee = errorcount;
8980 rhs = initialize_reference (type, rhs, flags, complain);
8982 if (fndecl
8983 && (warningcount + werrorcount > savew || errorcount > savee))
8984 inform (DECL_SOURCE_LOCATION (fndecl),
8985 "in passing argument %P of %qD", parmnum, fndecl);
8987 return rhs;
8990 if (exp != 0)
8991 exp = require_complete_type_sfinae (exp, complain);
8992 if (exp == error_mark_node)
8993 return error_mark_node;
8995 rhstype = non_reference (rhstype);
8997 type = complete_type (type);
8999 if (DIRECT_INIT_EXPR_P (type, rhs))
9000 /* Don't try to do copy-initialization if we already have
9001 direct-initialization. */
9002 return rhs;
9004 if (MAYBE_CLASS_TYPE_P (type))
9005 return perform_implicit_conversion_flags (type, rhs, complain, flags);
9007 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
9008 complain, flags);
9011 /* If RETVAL is the address of, or a reference to, a local variable or
9012 temporary give an appropriate warning and return true. */
9014 static bool
9015 maybe_warn_about_returning_address_of_local (tree retval)
9017 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
9018 tree whats_returned = fold_for_warn (retval);
9019 location_t loc = cp_expr_loc_or_loc (retval, input_location);
9021 for (;;)
9023 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
9024 whats_returned = TREE_OPERAND (whats_returned, 1);
9025 else if (CONVERT_EXPR_P (whats_returned)
9026 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
9027 whats_returned = TREE_OPERAND (whats_returned, 0);
9028 else
9029 break;
9032 if (TREE_CODE (whats_returned) == TARGET_EXPR
9033 && is_std_init_list (TREE_TYPE (whats_returned)))
9035 tree init = TARGET_EXPR_INITIAL (whats_returned);
9036 if (TREE_CODE (init) == CONSTRUCTOR)
9037 /* Pull out the array address. */
9038 whats_returned = CONSTRUCTOR_ELT (init, 0)->value;
9039 else if (TREE_CODE (init) == INDIRECT_REF)
9040 /* The source of a trivial copy looks like *(T*)&var. */
9041 whats_returned = TREE_OPERAND (init, 0);
9042 else
9043 return false;
9044 STRIP_NOPS (whats_returned);
9047 if (TREE_CODE (whats_returned) != ADDR_EXPR)
9048 return false;
9049 whats_returned = TREE_OPERAND (whats_returned, 0);
9051 while (TREE_CODE (whats_returned) == COMPONENT_REF
9052 || TREE_CODE (whats_returned) == ARRAY_REF)
9053 whats_returned = TREE_OPERAND (whats_returned, 0);
9055 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
9056 || TREE_CODE (whats_returned) == TARGET_EXPR)
9058 if (TYPE_REF_P (valtype))
9059 warning_at (loc, OPT_Wreturn_local_addr,
9060 "returning reference to temporary");
9061 else if (is_std_init_list (valtype))
9062 warning_at (loc, OPT_Winit_list_lifetime,
9063 "returning temporary initializer_list does not extend "
9064 "the lifetime of the underlying array");
9065 return true;
9068 if (DECL_P (whats_returned)
9069 && DECL_NAME (whats_returned)
9070 && DECL_FUNCTION_SCOPE_P (whats_returned)
9071 && !is_capture_proxy (whats_returned)
9072 && !(TREE_STATIC (whats_returned)
9073 || TREE_PUBLIC (whats_returned)))
9075 bool w = false;
9076 if (TYPE_REF_P (valtype))
9077 w = warning_at (loc, OPT_Wreturn_local_addr,
9078 "reference to local variable %qD returned",
9079 whats_returned);
9080 else if (is_std_init_list (valtype))
9081 w = warning_at (loc, OPT_Winit_list_lifetime,
9082 "returning local initializer_list variable %qD "
9083 "does not extend the lifetime of the underlying array",
9084 whats_returned);
9085 else if (TREE_CODE (whats_returned) == LABEL_DECL)
9086 w = warning_at (loc, OPT_Wreturn_local_addr,
9087 "address of label %qD returned",
9088 whats_returned);
9089 else
9090 w = warning_at (loc, OPT_Wreturn_local_addr,
9091 "address of local variable %qD returned",
9092 whats_returned);
9093 if (w)
9094 inform (DECL_SOURCE_LOCATION (whats_returned),
9095 "declared here");
9096 return true;
9099 return false;
9102 /* Check that returning RETVAL from the current function is valid.
9103 Return an expression explicitly showing all conversions required to
9104 change RETVAL into the function return type, and to assign it to
9105 the DECL_RESULT for the function. Set *NO_WARNING to true if
9106 code reaches end of non-void function warning shouldn't be issued
9107 on this RETURN_EXPR. */
9109 tree
9110 check_return_expr (tree retval, bool *no_warning)
9112 tree result;
9113 /* The type actually returned by the function. */
9114 tree valtype;
9115 /* The type the function is declared to return, or void if
9116 the declared type is incomplete. */
9117 tree functype;
9118 int fn_returns_value_p;
9119 bool named_return_value_okay_p;
9121 *no_warning = false;
9123 /* A `volatile' function is one that isn't supposed to return, ever.
9124 (This is a G++ extension, used to get better code for functions
9125 that call the `volatile' function.) */
9126 if (TREE_THIS_VOLATILE (current_function_decl))
9127 warning (0, "function declared %<noreturn%> has a %<return%> statement");
9129 /* Check for various simple errors. */
9130 if (DECL_DESTRUCTOR_P (current_function_decl))
9132 if (retval)
9133 error ("returning a value from a destructor");
9134 return NULL_TREE;
9136 else if (DECL_CONSTRUCTOR_P (current_function_decl))
9138 if (in_function_try_handler)
9139 /* If a return statement appears in a handler of the
9140 function-try-block of a constructor, the program is ill-formed. */
9141 error ("cannot return from a handler of a function-try-block of a constructor");
9142 else if (retval)
9143 /* You can't return a value from a constructor. */
9144 error ("returning a value from a constructor");
9145 return NULL_TREE;
9148 const tree saved_retval = retval;
9150 if (processing_template_decl)
9152 current_function_returns_value = 1;
9154 if (check_for_bare_parameter_packs (retval))
9155 return error_mark_node;
9157 /* If one of the types might be void, we can't tell whether we're
9158 returning a value. */
9159 if ((WILDCARD_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl)))
9160 && !current_function_auto_return_pattern)
9161 || (retval != NULL_TREE
9162 && (TREE_TYPE (retval) == NULL_TREE
9163 || WILDCARD_TYPE_P (TREE_TYPE (retval)))))
9164 goto dependent;
9167 functype = TREE_TYPE (TREE_TYPE (current_function_decl));
9169 /* Deduce auto return type from a return statement. */
9170 if (current_function_auto_return_pattern)
9172 tree auto_node;
9173 tree type;
9175 if (!retval && !is_auto (current_function_auto_return_pattern))
9177 /* Give a helpful error message. */
9178 error ("return-statement with no value, in function returning %qT",
9179 current_function_auto_return_pattern);
9180 inform (input_location, "only plain %<auto%> return type can be "
9181 "deduced to %<void%>");
9182 type = error_mark_node;
9184 else if (retval && BRACE_ENCLOSED_INITIALIZER_P (retval))
9186 error ("returning initializer list");
9187 type = error_mark_node;
9189 else
9191 if (!retval)
9192 retval = void_node;
9193 auto_node = type_uses_auto (current_function_auto_return_pattern);
9194 type = do_auto_deduction (current_function_auto_return_pattern,
9195 retval, auto_node);
9198 if (type == error_mark_node)
9199 /* Leave it. */;
9200 else if (functype == current_function_auto_return_pattern)
9201 apply_deduced_return_type (current_function_decl, type);
9202 else if (!same_type_p (type, functype))
9204 if (LAMBDA_FUNCTION_P (current_function_decl))
9205 error ("inconsistent types %qT and %qT deduced for "
9206 "lambda return type", functype, type);
9207 else
9208 error ("inconsistent deduction for auto return type: "
9209 "%qT and then %qT", functype, type);
9211 functype = type;
9214 result = DECL_RESULT (current_function_decl);
9215 valtype = TREE_TYPE (result);
9216 gcc_assert (valtype != NULL_TREE);
9217 fn_returns_value_p = !VOID_TYPE_P (valtype);
9219 /* Check for a return statement with no return value in a function
9220 that's supposed to return a value. */
9221 if (!retval && fn_returns_value_p)
9223 if (functype != error_mark_node)
9224 permerror (input_location, "return-statement with no value, in "
9225 "function returning %qT", valtype);
9226 /* Remember that this function did return. */
9227 current_function_returns_value = 1;
9228 /* And signal caller that TREE_NO_WARNING should be set on the
9229 RETURN_EXPR to avoid control reaches end of non-void function
9230 warnings in tree-cfg.c. */
9231 *no_warning = true;
9233 /* Check for a return statement with a value in a function that
9234 isn't supposed to return a value. */
9235 else if (retval && !fn_returns_value_p)
9237 if (VOID_TYPE_P (TREE_TYPE (retval)))
9238 /* You can return a `void' value from a function of `void'
9239 type. In that case, we have to evaluate the expression for
9240 its side-effects. */
9241 finish_expr_stmt (retval);
9242 else
9243 permerror (input_location,
9244 "return-statement with a value, in function "
9245 "returning %qT", valtype);
9246 current_function_returns_null = 1;
9248 /* There's really no value to return, after all. */
9249 return NULL_TREE;
9251 else if (!retval)
9252 /* Remember that this function can sometimes return without a
9253 value. */
9254 current_function_returns_null = 1;
9255 else
9256 /* Remember that this function did return a value. */
9257 current_function_returns_value = 1;
9259 /* Check for erroneous operands -- but after giving ourselves a
9260 chance to provide an error about returning a value from a void
9261 function. */
9262 if (error_operand_p (retval))
9264 current_function_return_value = error_mark_node;
9265 return error_mark_node;
9268 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
9269 if (IDENTIFIER_NEW_OP_P (DECL_NAME (current_function_decl))
9270 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
9271 && ! flag_check_new
9272 && retval && null_ptr_cst_p (retval))
9273 warning (0, "%<operator new%> must not return NULL unless it is "
9274 "declared %<throw()%> (or -fcheck-new is in effect)");
9276 /* Effective C++ rule 15. See also start_function. */
9277 if (warn_ecpp
9278 && DECL_NAME (current_function_decl) == assign_op_identifier
9279 && !type_dependent_expression_p (retval))
9281 bool warn = true;
9283 /* The function return type must be a reference to the current
9284 class. */
9285 if (TYPE_REF_P (valtype)
9286 && same_type_ignoring_top_level_qualifiers_p
9287 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
9289 /* Returning '*this' is obviously OK. */
9290 if (retval == current_class_ref)
9291 warn = false;
9292 /* If we are calling a function whose return type is the same of
9293 the current class reference, it is ok. */
9294 else if (INDIRECT_REF_P (retval)
9295 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
9296 warn = false;
9299 if (warn)
9300 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
9303 if (dependent_type_p (functype)
9304 || type_dependent_expression_p (retval))
9306 dependent:
9307 /* We should not have changed the return value. */
9308 gcc_assert (retval == saved_retval);
9309 return retval;
9312 /* The fabled Named Return Value optimization, as per [class.copy]/15:
9314 [...] For a function with a class return type, if the expression
9315 in the return statement is the name of a local object, and the cv-
9316 unqualified type of the local object is the same as the function
9317 return type, an implementation is permitted to omit creating the tem-
9318 porary object to hold the function return value [...]
9320 So, if this is a value-returning function that always returns the same
9321 local variable, remember it.
9323 It might be nice to be more flexible, and choose the first suitable
9324 variable even if the function sometimes returns something else, but
9325 then we run the risk of clobbering the variable we chose if the other
9326 returned expression uses the chosen variable somehow. And people expect
9327 this restriction, anyway. (jason 2000-11-19)
9329 See finish_function and finalize_nrv for the rest of this optimization. */
9331 named_return_value_okay_p =
9332 (retval != NULL_TREE
9333 && !processing_template_decl
9334 /* Must be a local, automatic variable. */
9335 && VAR_P (retval)
9336 && DECL_CONTEXT (retval) == current_function_decl
9337 && ! TREE_STATIC (retval)
9338 /* And not a lambda or anonymous union proxy. */
9339 && !DECL_HAS_VALUE_EXPR_P (retval)
9340 && (DECL_ALIGN (retval) <= DECL_ALIGN (result))
9341 /* The cv-unqualified type of the returned value must be the
9342 same as the cv-unqualified return type of the
9343 function. */
9344 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
9345 (TYPE_MAIN_VARIANT (functype)))
9346 /* And the returned value must be non-volatile. */
9347 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
9349 if (fn_returns_value_p && flag_elide_constructors)
9351 if (named_return_value_okay_p
9352 && (current_function_return_value == NULL_TREE
9353 || current_function_return_value == retval))
9354 current_function_return_value = retval;
9355 else
9356 current_function_return_value = error_mark_node;
9359 /* We don't need to do any conversions when there's nothing being
9360 returned. */
9361 if (!retval)
9362 return NULL_TREE;
9364 /* Do any required conversions. */
9365 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
9366 /* No conversions are required. */
9368 else
9370 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
9372 /* The functype's return type will have been set to void, if it
9373 was an incomplete type. Just treat this as 'return;' */
9374 if (VOID_TYPE_P (functype))
9375 return error_mark_node;
9377 /* If we had an id-expression obfuscated by force_paren_expr, we need
9378 to undo it so we can try to treat it as an rvalue below. */
9379 retval = maybe_undo_parenthesized_ref (retval);
9381 if (processing_template_decl)
9382 retval = build_non_dependent_expr (retval);
9384 /* Under C++11 [12.8/32 class.copy], a returned lvalue is sometimes
9385 treated as an rvalue for the purposes of overload resolution to
9386 favor move constructors over copy constructors.
9388 Note that these conditions are similar to, but not as strict as,
9389 the conditions for the named return value optimization. */
9390 bool converted = false;
9391 if ((cxx_dialect != cxx98)
9392 && ((VAR_P (retval) && !DECL_HAS_VALUE_EXPR_P (retval))
9393 || TREE_CODE (retval) == PARM_DECL)
9394 && DECL_CONTEXT (retval) == current_function_decl
9395 && !TREE_STATIC (retval)
9396 /* This is only interesting for class type. */
9397 && CLASS_TYPE_P (functype))
9399 tree moved = move (retval);
9400 moved = convert_for_initialization
9401 (NULL_TREE, functype, moved, flags|LOOKUP_PREFER_RVALUE,
9402 ICR_RETURN, NULL_TREE, 0, tf_none);
9403 if (moved != error_mark_node)
9405 retval = moved;
9406 converted = true;
9410 /* First convert the value to the function's return type, then
9411 to the type of return value's location to handle the
9412 case that functype is smaller than the valtype. */
9413 if (!converted)
9414 retval = convert_for_initialization
9415 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
9416 tf_warning_or_error);
9417 retval = convert (valtype, retval);
9419 /* If the conversion failed, treat this just like `return;'. */
9420 if (retval == error_mark_node)
9421 return retval;
9422 /* We can't initialize a register from a AGGR_INIT_EXPR. */
9423 else if (! cfun->returns_struct
9424 && TREE_CODE (retval) == TARGET_EXPR
9425 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
9426 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
9427 TREE_OPERAND (retval, 0));
9428 else if (!processing_template_decl
9429 && maybe_warn_about_returning_address_of_local (retval)
9430 && INDIRECT_TYPE_P (valtype))
9431 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
9432 build_zero_cst (TREE_TYPE (retval)));
9435 if (processing_template_decl)
9436 return saved_retval;
9438 /* Actually copy the value returned into the appropriate location. */
9439 if (retval && retval != result)
9440 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
9442 return retval;
9446 /* Returns nonzero if the pointer-type FROM can be converted to the
9447 pointer-type TO via a qualification conversion. If CONSTP is -1,
9448 then we return nonzero if the pointers are similar, and the
9449 cv-qualification signature of FROM is a proper subset of that of TO.
9451 If CONSTP is positive, then all outer pointers have been
9452 const-qualified. */
9454 static int
9455 comp_ptr_ttypes_real (tree to, tree from, int constp)
9457 bool to_more_cv_qualified = false;
9458 bool is_opaque_pointer = false;
9460 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
9462 if (TREE_CODE (to) != TREE_CODE (from))
9463 return 0;
9465 if (TREE_CODE (from) == OFFSET_TYPE
9466 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
9467 TYPE_OFFSET_BASETYPE (to)))
9468 return 0;
9470 /* Const and volatile mean something different for function types,
9471 so the usual checks are not appropriate. */
9472 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
9474 if (!at_least_as_qualified_p (to, from))
9475 return 0;
9477 if (!at_least_as_qualified_p (from, to))
9479 if (constp == 0)
9480 return 0;
9481 to_more_cv_qualified = true;
9484 if (constp > 0)
9485 constp &= TYPE_READONLY (to);
9488 if (VECTOR_TYPE_P (to))
9489 is_opaque_pointer = vector_targets_convertible_p (to, from);
9491 if (!TYPE_PTR_P (to) && !TYPE_PTRDATAMEM_P (to))
9492 return ((constp >= 0 || to_more_cv_qualified)
9493 && (is_opaque_pointer
9494 || same_type_ignoring_top_level_qualifiers_p (to, from)));
9498 /* When comparing, say, char ** to char const **, this function takes
9499 the 'char *' and 'char const *'. Do not pass non-pointer/reference
9500 types to this function. */
9503 comp_ptr_ttypes (tree to, tree from)
9505 return comp_ptr_ttypes_real (to, from, 1);
9508 /* Returns true iff FNTYPE is a non-class type that involves
9509 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
9510 if a parameter type is ill-formed. */
9512 bool
9513 error_type_p (const_tree type)
9515 tree t;
9517 switch (TREE_CODE (type))
9519 case ERROR_MARK:
9520 return true;
9522 case POINTER_TYPE:
9523 case REFERENCE_TYPE:
9524 case OFFSET_TYPE:
9525 return error_type_p (TREE_TYPE (type));
9527 case FUNCTION_TYPE:
9528 case METHOD_TYPE:
9529 if (error_type_p (TREE_TYPE (type)))
9530 return true;
9531 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
9532 if (error_type_p (TREE_VALUE (t)))
9533 return true;
9534 return false;
9536 case RECORD_TYPE:
9537 if (TYPE_PTRMEMFUNC_P (type))
9538 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
9539 return false;
9541 default:
9542 return false;
9546 /* Returns true if to and from are (possibly multi-level) pointers to the same
9547 type or inheritance-related types, regardless of cv-quals. */
9549 bool
9550 ptr_reasonably_similar (const_tree to, const_tree from)
9552 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
9554 /* Any target type is similar enough to void. */
9555 if (VOID_TYPE_P (to))
9556 return !error_type_p (from);
9557 if (VOID_TYPE_P (from))
9558 return !error_type_p (to);
9560 if (TREE_CODE (to) != TREE_CODE (from))
9561 return false;
9563 if (TREE_CODE (from) == OFFSET_TYPE
9564 && comptypes (TYPE_OFFSET_BASETYPE (to),
9565 TYPE_OFFSET_BASETYPE (from),
9566 COMPARE_BASE | COMPARE_DERIVED))
9567 continue;
9569 if (VECTOR_TYPE_P (to)
9570 && vector_types_convertible_p (to, from, false))
9571 return true;
9573 if (TREE_CODE (to) == INTEGER_TYPE
9574 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
9575 return true;
9577 if (TREE_CODE (to) == FUNCTION_TYPE)
9578 return !error_type_p (to) && !error_type_p (from);
9580 if (!TYPE_PTR_P (to))
9582 /* When either type is incomplete avoid DERIVED_FROM_P,
9583 which may call complete_type (c++/57942). */
9584 bool b = !COMPLETE_TYPE_P (to) || !COMPLETE_TYPE_P (from);
9585 return comptypes
9586 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
9587 b ? COMPARE_STRICT : COMPARE_BASE | COMPARE_DERIVED);
9592 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
9593 pointer-to-member types) are the same, ignoring cv-qualification at
9594 all levels. */
9596 bool
9597 comp_ptr_ttypes_const (tree to, tree from)
9599 bool is_opaque_pointer = false;
9601 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
9603 if (TREE_CODE (to) != TREE_CODE (from))
9604 return false;
9606 if (TREE_CODE (from) == OFFSET_TYPE
9607 && same_type_p (TYPE_OFFSET_BASETYPE (from),
9608 TYPE_OFFSET_BASETYPE (to)))
9609 continue;
9611 if (VECTOR_TYPE_P (to))
9612 is_opaque_pointer = vector_targets_convertible_p (to, from);
9614 if (!TYPE_PTR_P (to))
9615 return (is_opaque_pointer
9616 || same_type_ignoring_top_level_qualifiers_p (to, from));
9620 /* Returns the type qualifiers for this type, including the qualifiers on the
9621 elements for an array type. */
9624 cp_type_quals (const_tree type)
9626 int quals;
9627 /* This CONST_CAST is okay because strip_array_types returns its
9628 argument unmodified and we assign it to a const_tree. */
9629 type = strip_array_types (CONST_CAST_TREE (type));
9630 if (type == error_mark_node
9631 /* Quals on a FUNCTION_TYPE are memfn quals. */
9632 || TREE_CODE (type) == FUNCTION_TYPE)
9633 return TYPE_UNQUALIFIED;
9634 quals = TYPE_QUALS (type);
9635 /* METHOD and REFERENCE_TYPEs should never have quals. */
9636 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
9637 && !TYPE_REF_P (type))
9638 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
9639 == TYPE_UNQUALIFIED));
9640 return quals;
9643 /* Returns the function-ref-qualifier for TYPE */
9645 cp_ref_qualifier
9646 type_memfn_rqual (const_tree type)
9648 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE
9649 || TREE_CODE (type) == METHOD_TYPE);
9651 if (!FUNCTION_REF_QUALIFIED (type))
9652 return REF_QUAL_NONE;
9653 else if (FUNCTION_RVALUE_QUALIFIED (type))
9654 return REF_QUAL_RVALUE;
9655 else
9656 return REF_QUAL_LVALUE;
9659 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
9660 METHOD_TYPE. */
9663 type_memfn_quals (const_tree type)
9665 if (TREE_CODE (type) == FUNCTION_TYPE)
9666 return TYPE_QUALS (type);
9667 else if (TREE_CODE (type) == METHOD_TYPE)
9668 return cp_type_quals (class_of_this_parm (type));
9669 else
9670 gcc_unreachable ();
9673 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
9674 MEMFN_QUALS and its ref-qualifier to RQUAL. */
9676 tree
9677 apply_memfn_quals (tree type, cp_cv_quals memfn_quals, cp_ref_qualifier rqual)
9679 /* Could handle METHOD_TYPE here if necessary. */
9680 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
9681 if (TYPE_QUALS (type) == memfn_quals
9682 && type_memfn_rqual (type) == rqual)
9683 return type;
9685 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
9686 complex. */
9687 tree result = build_qualified_type (type, memfn_quals);
9688 return build_ref_qualified_type (result, rqual);
9691 /* Returns nonzero if TYPE is const or volatile. */
9693 bool
9694 cv_qualified_p (const_tree type)
9696 int quals = cp_type_quals (type);
9697 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
9700 /* Returns nonzero if the TYPE contains a mutable member. */
9702 bool
9703 cp_has_mutable_p (const_tree type)
9705 /* This CONST_CAST is okay because strip_array_types returns its
9706 argument unmodified and we assign it to a const_tree. */
9707 type = strip_array_types (CONST_CAST_TREE(type));
9709 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
9712 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
9713 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
9714 approximation. In particular, consider:
9716 int f();
9717 struct S { int i; };
9718 const S s = { f(); }
9720 Here, we will make "s" as TREE_READONLY (because it is declared
9721 "const") -- only to reverse ourselves upon seeing that the
9722 initializer is non-constant. */
9724 void
9725 cp_apply_type_quals_to_decl (int type_quals, tree decl)
9727 tree type = TREE_TYPE (decl);
9729 if (type == error_mark_node)
9730 return;
9732 if (TREE_CODE (decl) == TYPE_DECL)
9733 return;
9735 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
9736 && type_quals != TYPE_UNQUALIFIED));
9738 /* Avoid setting TREE_READONLY incorrectly. */
9739 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
9740 constructor can produce constant init, so rely on cp_finish_decl to
9741 clear TREE_READONLY if the variable has non-constant init. */
9743 /* If the type has (or might have) a mutable component, that component
9744 might be modified. */
9745 if (TYPE_HAS_MUTABLE_P (type) || !COMPLETE_TYPE_P (type))
9746 type_quals &= ~TYPE_QUAL_CONST;
9748 c_apply_type_quals_to_decl (type_quals, decl);
9751 /* Subroutine of casts_away_constness. Make T1 and T2 point at
9752 exemplar types such that casting T1 to T2 is casting away constness
9753 if and only if there is no implicit conversion from T1 to T2. */
9755 static void
9756 casts_away_constness_r (tree *t1, tree *t2, tsubst_flags_t complain)
9758 int quals1;
9759 int quals2;
9761 /* [expr.const.cast]
9763 For multi-level pointer to members and multi-level mixed pointers
9764 and pointers to members (conv.qual), the "member" aspect of a
9765 pointer to member level is ignored when determining if a const
9766 cv-qualifier has been cast away. */
9767 /* [expr.const.cast]
9769 For two pointer types:
9771 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
9772 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
9773 K is min(N,M)
9775 casting from X1 to X2 casts away constness if, for a non-pointer
9776 type T there does not exist an implicit conversion (clause
9777 _conv_) from:
9779 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
9783 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
9784 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRDATAMEM_P (*t1))
9785 || (!TYPE_PTR_P (*t2) && !TYPE_PTRDATAMEM_P (*t2)))
9787 *t1 = cp_build_qualified_type (void_type_node,
9788 cp_type_quals (*t1));
9789 *t2 = cp_build_qualified_type (void_type_node,
9790 cp_type_quals (*t2));
9791 return;
9794 quals1 = cp_type_quals (*t1);
9795 quals2 = cp_type_quals (*t2);
9797 if (TYPE_PTRDATAMEM_P (*t1))
9798 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
9799 else
9800 *t1 = TREE_TYPE (*t1);
9801 if (TYPE_PTRDATAMEM_P (*t2))
9802 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
9803 else
9804 *t2 = TREE_TYPE (*t2);
9806 casts_away_constness_r (t1, t2, complain);
9807 *t1 = build_pointer_type (*t1);
9808 *t2 = build_pointer_type (*t2);
9809 *t1 = cp_build_qualified_type (*t1, quals1);
9810 *t2 = cp_build_qualified_type (*t2, quals2);
9813 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
9814 constness.
9816 ??? This function returns non-zero if casting away qualifiers not
9817 just const. We would like to return to the caller exactly which
9818 qualifiers are casted away to give more accurate diagnostics.
9821 static bool
9822 casts_away_constness (tree t1, tree t2, tsubst_flags_t complain)
9824 if (TYPE_REF_P (t2))
9826 /* [expr.const.cast]
9828 Casting from an lvalue of type T1 to an lvalue of type T2
9829 using a reference cast casts away constness if a cast from an
9830 rvalue of type "pointer to T1" to the type "pointer to T2"
9831 casts away constness. */
9832 t1 = (TYPE_REF_P (t1) ? TREE_TYPE (t1) : t1);
9833 return casts_away_constness (build_pointer_type (t1),
9834 build_pointer_type (TREE_TYPE (t2)),
9835 complain);
9838 if (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
9839 /* [expr.const.cast]
9841 Casting from an rvalue of type "pointer to data member of X
9842 of type T1" to the type "pointer to data member of Y of type
9843 T2" casts away constness if a cast from an rvalue of type
9844 "pointer to T1" to the type "pointer to T2" casts away
9845 constness. */
9846 return casts_away_constness
9847 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
9848 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)),
9849 complain);
9851 /* Casting away constness is only something that makes sense for
9852 pointer or reference types. */
9853 if (!TYPE_PTR_P (t1) || !TYPE_PTR_P (t2))
9854 return false;
9856 /* Top-level qualifiers don't matter. */
9857 t1 = TYPE_MAIN_VARIANT (t1);
9858 t2 = TYPE_MAIN_VARIANT (t2);
9859 casts_away_constness_r (&t1, &t2, complain);
9860 if (!can_convert (t2, t1, complain))
9861 return true;
9863 return false;
9866 /* If T is a REFERENCE_TYPE return the type to which T refers.
9867 Otherwise, return T itself. */
9869 tree
9870 non_reference (tree t)
9872 if (t && TYPE_REF_P (t))
9873 t = TREE_TYPE (t);
9874 return t;
9878 /* Return nonzero if REF is an lvalue valid for this language;
9879 otherwise, print an error message and return zero. USE says
9880 how the lvalue is being used and so selects the error message. */
9883 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
9885 cp_lvalue_kind kind = lvalue_kind (ref);
9887 if (kind == clk_none)
9889 if (complain & tf_error)
9890 lvalue_error (input_location, use);
9891 return 0;
9893 else if (kind & (clk_rvalueref|clk_class))
9895 if (!(complain & tf_error))
9896 return 0;
9897 /* Make this a permerror because we used to accept it. */
9898 permerror (input_location, "using rvalue as lvalue");
9900 return 1;
9903 /* Return true if a user-defined literal operator is a raw operator. */
9905 bool
9906 check_raw_literal_operator (const_tree decl)
9908 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9909 tree argtype;
9910 int arity;
9911 bool maybe_raw_p = false;
9913 /* Count the number and type of arguments and check for ellipsis. */
9914 for (argtype = argtypes, arity = 0;
9915 argtype && argtype != void_list_node;
9916 ++arity, argtype = TREE_CHAIN (argtype))
9918 tree t = TREE_VALUE (argtype);
9920 if (same_type_p (t, const_string_type_node))
9921 maybe_raw_p = true;
9923 if (!argtype)
9924 return false; /* Found ellipsis. */
9926 if (!maybe_raw_p || arity != 1)
9927 return false;
9929 return true;
9933 /* Return true if a user-defined literal operator has one of the allowed
9934 argument types. */
9936 bool
9937 check_literal_operator_args (const_tree decl,
9938 bool *long_long_unsigned_p, bool *long_double_p)
9940 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9942 *long_long_unsigned_p = false;
9943 *long_double_p = false;
9944 if (processing_template_decl || processing_specialization)
9945 return argtypes == void_list_node;
9946 else
9948 tree argtype;
9949 int arity;
9950 int max_arity = 2;
9952 /* Count the number and type of arguments and check for ellipsis. */
9953 for (argtype = argtypes, arity = 0;
9954 argtype && argtype != void_list_node;
9955 argtype = TREE_CHAIN (argtype))
9957 tree t = TREE_VALUE (argtype);
9958 ++arity;
9960 if (TYPE_PTR_P (t))
9962 bool maybe_raw_p = false;
9963 t = TREE_TYPE (t);
9964 if (cp_type_quals (t) != TYPE_QUAL_CONST)
9965 return false;
9966 t = TYPE_MAIN_VARIANT (t);
9967 if ((maybe_raw_p = same_type_p (t, char_type_node))
9968 || same_type_p (t, wchar_type_node)
9969 || same_type_p (t, char16_type_node)
9970 || same_type_p (t, char32_type_node))
9972 argtype = TREE_CHAIN (argtype);
9973 if (!argtype)
9974 return false;
9975 t = TREE_VALUE (argtype);
9976 if (maybe_raw_p && argtype == void_list_node)
9977 return true;
9978 else if (same_type_p (t, size_type_node))
9980 ++arity;
9981 continue;
9983 else
9984 return false;
9987 else if (same_type_p (t, long_long_unsigned_type_node))
9989 max_arity = 1;
9990 *long_long_unsigned_p = true;
9992 else if (same_type_p (t, long_double_type_node))
9994 max_arity = 1;
9995 *long_double_p = true;
9997 else if (same_type_p (t, char_type_node))
9998 max_arity = 1;
9999 else if (same_type_p (t, wchar_type_node))
10000 max_arity = 1;
10001 else if (same_type_p (t, char16_type_node))
10002 max_arity = 1;
10003 else if (same_type_p (t, char32_type_node))
10004 max_arity = 1;
10005 else
10006 return false;
10008 if (!argtype)
10009 return false; /* Found ellipsis. */
10011 if (arity != max_arity)
10012 return false;
10014 return true;
10018 /* Always returns false since unlike C90, C++ has no concept of implicit
10019 function declarations. */
10021 bool
10022 c_decl_implicit (const_tree)
10024 return false;