2016-05-04 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / cp / typeck.c
blob95c777d7721ceca690f10d167563ca51de97fe7e
1 /* Build expressions with type checking for C++ compiler.
2 Copyright (C) 1987-2016 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"
40 static tree cp_build_addr_expr_strict (tree, tsubst_flags_t);
41 static tree cp_build_function_call (tree, tree, tsubst_flags_t);
42 static tree pfn_from_ptrmemfunc (tree);
43 static tree delta_from_ptrmemfunc (tree);
44 static tree convert_for_assignment (tree, tree, impl_conv_rhs, tree, int,
45 tsubst_flags_t, int);
46 static tree cp_pointer_int_sum (enum tree_code, tree, tree, tsubst_flags_t);
47 static tree rationalize_conditional_expr (enum tree_code, tree,
48 tsubst_flags_t);
49 static int comp_ptr_ttypes_real (tree, tree, int);
50 static bool comp_except_types (tree, tree, bool);
51 static bool comp_array_types (const_tree, const_tree, bool);
52 static tree pointer_diff (tree, tree, tree, tsubst_flags_t);
53 static tree get_delta_difference (tree, tree, bool, bool, tsubst_flags_t);
54 static void casts_away_constness_r (tree *, tree *, tsubst_flags_t);
55 static bool casts_away_constness (tree, tree, tsubst_flags_t);
56 static bool maybe_warn_about_returning_address_of_local (tree);
57 static tree lookup_destructor (tree, tree, tree, tsubst_flags_t);
58 static void error_args_num (location_t, tree, bool);
59 static int convert_arguments (tree, vec<tree, va_gc> **, tree, int,
60 tsubst_flags_t);
62 /* Do `exp = require_complete_type (exp);' to make sure exp
63 does not have an incomplete type. (That includes void types.)
64 Returns error_mark_node if the VALUE does not have
65 complete type when this function returns. */
67 tree
68 require_complete_type_sfinae (tree value, tsubst_flags_t complain)
70 tree type;
72 if (processing_template_decl || value == error_mark_node)
73 return value;
75 if (TREE_CODE (value) == OVERLOAD)
76 type = unknown_type_node;
77 else
78 type = TREE_TYPE (value);
80 if (type == error_mark_node)
81 return error_mark_node;
83 /* First, detect a valid value with a complete type. */
84 if (COMPLETE_TYPE_P (type))
85 return value;
87 if (complete_type_or_maybe_complain (type, value, complain))
88 return value;
89 else
90 return error_mark_node;
93 tree
94 require_complete_type (tree value)
96 return require_complete_type_sfinae (value, tf_warning_or_error);
99 /* Try to complete TYPE, if it is incomplete. For example, if TYPE is
100 a template instantiation, do the instantiation. Returns TYPE,
101 whether or not it could be completed, unless something goes
102 horribly wrong, in which case the error_mark_node is returned. */
104 tree
105 complete_type (tree type)
107 if (type == NULL_TREE)
108 /* Rather than crash, we return something sure to cause an error
109 at some point. */
110 return error_mark_node;
112 if (type == error_mark_node || COMPLETE_TYPE_P (type))
114 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
116 tree t = complete_type (TREE_TYPE (type));
117 unsigned int needs_constructing, has_nontrivial_dtor;
118 if (COMPLETE_TYPE_P (t) && !dependent_type_p (type))
119 layout_type (type);
120 needs_constructing
121 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
122 has_nontrivial_dtor
123 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
124 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
126 TYPE_NEEDS_CONSTRUCTING (t) = needs_constructing;
127 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = has_nontrivial_dtor;
130 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
131 instantiate_class_template (TYPE_MAIN_VARIANT (type));
133 return type;
136 /* Like complete_type, but issue an error if the TYPE cannot be completed.
137 VALUE is used for informative diagnostics.
138 Returns NULL_TREE if the type cannot be made complete. */
140 tree
141 complete_type_or_maybe_complain (tree type, tree value, tsubst_flags_t complain)
143 type = complete_type (type);
144 if (type == error_mark_node)
145 /* We already issued an error. */
146 return NULL_TREE;
147 else if (!COMPLETE_TYPE_P (type))
149 if (complain & tf_error)
150 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
151 return NULL_TREE;
153 else
154 return type;
157 tree
158 complete_type_or_else (tree type, tree value)
160 return complete_type_or_maybe_complain (type, value, tf_warning_or_error);
163 /* Return truthvalue of whether type of EXP is instantiated. */
166 type_unknown_p (const_tree exp)
168 return (TREE_CODE (exp) == TREE_LIST
169 || TREE_TYPE (exp) == unknown_type_node);
173 /* Return the common type of two parameter lists.
174 We assume that comptypes has already been done and returned 1;
175 if that isn't so, this may crash.
177 As an optimization, free the space we allocate if the parameter
178 lists are already common. */
180 static tree
181 commonparms (tree p1, tree p2)
183 tree oldargs = p1, newargs, n;
184 int i, len;
185 int any_change = 0;
187 len = list_length (p1);
188 newargs = tree_last (p1);
190 if (newargs == void_list_node)
191 i = 1;
192 else
194 i = 0;
195 newargs = 0;
198 for (; i < len; i++)
199 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
201 n = newargs;
203 for (i = 0; p1;
204 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
206 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
208 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
209 any_change = 1;
211 else if (! TREE_PURPOSE (p1))
213 if (TREE_PURPOSE (p2))
215 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
216 any_change = 1;
219 else
221 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
222 any_change = 1;
223 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
225 if (TREE_VALUE (p1) != TREE_VALUE (p2))
227 any_change = 1;
228 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
230 else
231 TREE_VALUE (n) = TREE_VALUE (p1);
233 if (! any_change)
234 return oldargs;
236 return newargs;
239 /* Given a type, perhaps copied for a typedef,
240 find the "original" version of it. */
241 static tree
242 original_type (tree t)
244 int quals = cp_type_quals (t);
245 while (t != error_mark_node
246 && TYPE_NAME (t) != NULL_TREE)
248 tree x = TYPE_NAME (t);
249 if (TREE_CODE (x) != TYPE_DECL)
250 break;
251 x = DECL_ORIGINAL_TYPE (x);
252 if (x == NULL_TREE)
253 break;
254 t = x;
256 return cp_build_qualified_type (t, quals);
259 /* Return the common type for two arithmetic types T1 and T2 under the
260 usual arithmetic conversions. The default conversions have already
261 been applied, and enumerated types converted to their compatible
262 integer types. */
264 static tree
265 cp_common_type (tree t1, tree t2)
267 enum tree_code code1 = TREE_CODE (t1);
268 enum tree_code code2 = TREE_CODE (t2);
269 tree attributes;
270 int i;
273 /* In what follows, we slightly generalize the rules given in [expr] so
274 as to deal with `long long' and `complex'. First, merge the
275 attributes. */
276 attributes = (*targetm.merge_type_attributes) (t1, t2);
278 if (SCOPED_ENUM_P (t1) || SCOPED_ENUM_P (t2))
280 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
281 return build_type_attribute_variant (t1, attributes);
282 else
283 return NULL_TREE;
286 /* FIXME: Attributes. */
287 gcc_assert (ARITHMETIC_TYPE_P (t1)
288 || VECTOR_TYPE_P (t1)
289 || UNSCOPED_ENUM_P (t1));
290 gcc_assert (ARITHMETIC_TYPE_P (t2)
291 || VECTOR_TYPE_P (t2)
292 || UNSCOPED_ENUM_P (t2));
294 /* If one type is complex, form the common type of the non-complex
295 components, then make that complex. Use T1 or T2 if it is the
296 required type. */
297 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
299 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
300 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
301 tree subtype
302 = type_after_usual_arithmetic_conversions (subtype1, subtype2);
304 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
305 return build_type_attribute_variant (t1, attributes);
306 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
307 return build_type_attribute_variant (t2, attributes);
308 else
309 return build_type_attribute_variant (build_complex_type (subtype),
310 attributes);
313 if (code1 == VECTOR_TYPE)
315 /* When we get here we should have two vectors of the same size.
316 Just prefer the unsigned one if present. */
317 if (TYPE_UNSIGNED (t1))
318 return build_type_attribute_variant (t1, attributes);
319 else
320 return build_type_attribute_variant (t2, attributes);
323 /* If only one is real, use it as the result. */
324 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
325 return build_type_attribute_variant (t1, attributes);
326 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
327 return build_type_attribute_variant (t2, attributes);
329 /* Both real or both integers; use the one with greater precision. */
330 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
331 return build_type_attribute_variant (t1, attributes);
332 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
333 return build_type_attribute_variant (t2, attributes);
335 /* The types are the same; no need to do anything fancy. */
336 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
337 return build_type_attribute_variant (t1, attributes);
339 if (code1 != REAL_TYPE)
341 /* If one is unsigned long long, then convert the other to unsigned
342 long long. */
343 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_unsigned_type_node)
344 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_unsigned_type_node))
345 return build_type_attribute_variant (long_long_unsigned_type_node,
346 attributes);
347 /* If one is a long long, and the other is an unsigned long, and
348 long long can represent all the values of an unsigned long, then
349 convert to a long long. Otherwise, convert to an unsigned long
350 long. Otherwise, if either operand is long long, convert the
351 other to long long.
353 Since we're here, we know the TYPE_PRECISION is the same;
354 therefore converting to long long cannot represent all the values
355 of an unsigned long, so we choose unsigned long long in that
356 case. */
357 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_integer_type_node)
358 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_integer_type_node))
360 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
361 ? long_long_unsigned_type_node
362 : long_long_integer_type_node);
363 return build_type_attribute_variant (t, attributes);
366 /* Go through the same procedure, but for longs. */
367 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_unsigned_type_node)
368 || same_type_p (TYPE_MAIN_VARIANT (t2), long_unsigned_type_node))
369 return build_type_attribute_variant (long_unsigned_type_node,
370 attributes);
371 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_integer_type_node)
372 || same_type_p (TYPE_MAIN_VARIANT (t2), long_integer_type_node))
374 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
375 ? long_unsigned_type_node : long_integer_type_node);
376 return build_type_attribute_variant (t, attributes);
379 /* For __intN types, either the type is __int128 (and is lower
380 priority than the types checked above, but higher than other
381 128-bit types) or it's known to not be the same size as other
382 types (enforced in toplev.c). Prefer the unsigned type. */
383 for (i = 0; i < NUM_INT_N_ENTS; i ++)
385 if (int_n_enabled_p [i]
386 && (same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].signed_type)
387 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].signed_type)
388 || same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].unsigned_type)
389 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].unsigned_type)))
391 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
392 ? int_n_trees[i].unsigned_type
393 : int_n_trees[i].signed_type);
394 return build_type_attribute_variant (t, attributes);
398 /* Otherwise prefer the unsigned one. */
399 if (TYPE_UNSIGNED (t1))
400 return build_type_attribute_variant (t1, attributes);
401 else
402 return build_type_attribute_variant (t2, attributes);
404 else
406 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_double_type_node)
407 || same_type_p (TYPE_MAIN_VARIANT (t2), long_double_type_node))
408 return build_type_attribute_variant (long_double_type_node,
409 attributes);
410 if (same_type_p (TYPE_MAIN_VARIANT (t1), double_type_node)
411 || same_type_p (TYPE_MAIN_VARIANT (t2), double_type_node))
412 return build_type_attribute_variant (double_type_node,
413 attributes);
414 if (same_type_p (TYPE_MAIN_VARIANT (t1), float_type_node)
415 || same_type_p (TYPE_MAIN_VARIANT (t2), float_type_node))
416 return build_type_attribute_variant (float_type_node,
417 attributes);
419 /* Two floating-point types whose TYPE_MAIN_VARIANTs are none of
420 the standard C++ floating-point types. Logic earlier in this
421 function has already eliminated the possibility that
422 TYPE_PRECISION (t2) != TYPE_PRECISION (t1), so there's no
423 compelling reason to choose one or the other. */
424 return build_type_attribute_variant (t1, attributes);
428 /* T1 and T2 are arithmetic or enumeration types. Return the type
429 that will result from the "usual arithmetic conversions" on T1 and
430 T2 as described in [expr]. */
432 tree
433 type_after_usual_arithmetic_conversions (tree t1, tree t2)
435 gcc_assert (ARITHMETIC_TYPE_P (t1)
436 || VECTOR_TYPE_P (t1)
437 || UNSCOPED_ENUM_P (t1));
438 gcc_assert (ARITHMETIC_TYPE_P (t2)
439 || VECTOR_TYPE_P (t2)
440 || UNSCOPED_ENUM_P (t2));
442 /* Perform the integral promotions. We do not promote real types here. */
443 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t1)
444 && INTEGRAL_OR_ENUMERATION_TYPE_P (t2))
446 t1 = type_promotes_to (t1);
447 t2 = type_promotes_to (t2);
450 return cp_common_type (t1, t2);
453 static void
454 composite_pointer_error (diagnostic_t kind, tree t1, tree t2,
455 composite_pointer_operation operation)
457 switch (operation)
459 case CPO_COMPARISON:
460 emit_diagnostic (kind, input_location, 0,
461 "comparison between "
462 "distinct pointer types %qT and %qT lacks a cast",
463 t1, t2);
464 break;
465 case CPO_CONVERSION:
466 emit_diagnostic (kind, input_location, 0,
467 "conversion between "
468 "distinct pointer types %qT and %qT lacks a cast",
469 t1, t2);
470 break;
471 case CPO_CONDITIONAL_EXPR:
472 emit_diagnostic (kind, input_location, 0,
473 "conditional expression between "
474 "distinct pointer types %qT and %qT lacks a cast",
475 t1, t2);
476 break;
477 default:
478 gcc_unreachable ();
482 /* Subroutine of composite_pointer_type to implement the recursive
483 case. See that function for documentation of the parameters. */
485 static tree
486 composite_pointer_type_r (tree t1, tree t2,
487 composite_pointer_operation operation,
488 tsubst_flags_t complain)
490 tree pointee1;
491 tree pointee2;
492 tree result_type;
493 tree attributes;
495 /* Determine the types pointed to by T1 and T2. */
496 if (TYPE_PTR_P (t1))
498 pointee1 = TREE_TYPE (t1);
499 pointee2 = TREE_TYPE (t2);
501 else
503 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
504 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
507 /* [expr.rel]
509 Otherwise, the composite pointer type is a pointer type
510 similar (_conv.qual_) to the type of one of the operands,
511 with a cv-qualification signature (_conv.qual_) that is the
512 union of the cv-qualification signatures of the operand
513 types. */
514 if (same_type_ignoring_top_level_qualifiers_p (pointee1, pointee2))
515 result_type = pointee1;
516 else if ((TYPE_PTR_P (pointee1) && TYPE_PTR_P (pointee2))
517 || (TYPE_PTRMEM_P (pointee1) && TYPE_PTRMEM_P (pointee2)))
519 result_type = composite_pointer_type_r (pointee1, pointee2, operation,
520 complain);
521 if (result_type == error_mark_node)
522 return error_mark_node;
524 else
526 if (complain & tf_error)
527 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
528 else
529 return error_mark_node;
530 result_type = void_type_node;
532 result_type = cp_build_qualified_type (result_type,
533 (cp_type_quals (pointee1)
534 | cp_type_quals (pointee2)));
535 /* If the original types were pointers to members, so is the
536 result. */
537 if (TYPE_PTRMEM_P (t1))
539 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
540 TYPE_PTRMEM_CLASS_TYPE (t2)))
542 if (complain & tf_error)
543 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
544 else
545 return error_mark_node;
547 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
548 result_type);
550 else
551 result_type = build_pointer_type (result_type);
553 /* Merge the attributes. */
554 attributes = (*targetm.merge_type_attributes) (t1, t2);
555 return build_type_attribute_variant (result_type, attributes);
558 /* Return the composite pointer type (see [expr.rel]) for T1 and T2.
559 ARG1 and ARG2 are the values with those types. The OPERATION is to
560 describe the operation between the pointer types,
561 in case an error occurs.
563 This routine also implements the computation of a common type for
564 pointers-to-members as per [expr.eq]. */
566 tree
567 composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
568 composite_pointer_operation operation,
569 tsubst_flags_t complain)
571 tree class1;
572 tree class2;
574 /* [expr.rel]
576 If one operand is a null pointer constant, the composite pointer
577 type is the type of the other operand. */
578 if (null_ptr_cst_p (arg1))
579 return t2;
580 if (null_ptr_cst_p (arg2))
581 return t1;
583 /* We have:
585 [expr.rel]
587 If one of the operands has type "pointer to cv1 void*", then
588 the other has type "pointer to cv2T", and the composite pointer
589 type is "pointer to cv12 void", where cv12 is the union of cv1
590 and cv2.
592 If either type is a pointer to void, make sure it is T1. */
593 if (TYPE_PTR_P (t2) && VOID_TYPE_P (TREE_TYPE (t2)))
594 std::swap (t1, t2);
596 /* Now, if T1 is a pointer to void, merge the qualifiers. */
597 if (TYPE_PTR_P (t1) && VOID_TYPE_P (TREE_TYPE (t1)))
599 tree attributes;
600 tree result_type;
602 if (TYPE_PTRFN_P (t2))
604 if (complain & tf_error)
606 switch (operation)
608 case CPO_COMPARISON:
609 pedwarn (input_location, OPT_Wpedantic,
610 "ISO C++ forbids comparison between pointer "
611 "of type %<void *%> and pointer-to-function");
612 break;
613 case CPO_CONVERSION:
614 pedwarn (input_location, OPT_Wpedantic,
615 "ISO C++ forbids conversion between pointer "
616 "of type %<void *%> and pointer-to-function");
617 break;
618 case CPO_CONDITIONAL_EXPR:
619 pedwarn (input_location, OPT_Wpedantic,
620 "ISO C++ forbids conditional expression between "
621 "pointer of type %<void *%> and "
622 "pointer-to-function");
623 break;
624 default:
625 gcc_unreachable ();
628 else
629 return error_mark_node;
631 result_type
632 = cp_build_qualified_type (void_type_node,
633 (cp_type_quals (TREE_TYPE (t1))
634 | cp_type_quals (TREE_TYPE (t2))));
635 result_type = build_pointer_type (result_type);
636 /* Merge the attributes. */
637 attributes = (*targetm.merge_type_attributes) (t1, t2);
638 return build_type_attribute_variant (result_type, attributes);
641 if (c_dialect_objc () && TYPE_PTR_P (t1)
642 && TYPE_PTR_P (t2))
644 if (objc_have_common_type (t1, t2, -3, NULL_TREE))
645 return objc_common_type (t1, t2);
648 /* [expr.eq] permits the application of a pointer conversion to
649 bring the pointers to a common type. */
650 if (TYPE_PTR_P (t1) && TYPE_PTR_P (t2)
651 && CLASS_TYPE_P (TREE_TYPE (t1))
652 && CLASS_TYPE_P (TREE_TYPE (t2))
653 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
654 TREE_TYPE (t2)))
656 class1 = TREE_TYPE (t1);
657 class2 = TREE_TYPE (t2);
659 if (DERIVED_FROM_P (class1, class2))
660 t2 = (build_pointer_type
661 (cp_build_qualified_type (class1, cp_type_quals (class2))));
662 else if (DERIVED_FROM_P (class2, class1))
663 t1 = (build_pointer_type
664 (cp_build_qualified_type (class2, cp_type_quals (class1))));
665 else
667 if (complain & tf_error)
668 composite_pointer_error (DK_ERROR, t1, t2, operation);
669 return error_mark_node;
672 /* [expr.eq] permits the application of a pointer-to-member
673 conversion to change the class type of one of the types. */
674 else if (TYPE_PTRMEM_P (t1)
675 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
676 TYPE_PTRMEM_CLASS_TYPE (t2)))
678 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
679 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
681 if (DERIVED_FROM_P (class1, class2))
682 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
683 else if (DERIVED_FROM_P (class2, class1))
684 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
685 else
687 if (complain & tf_error)
688 switch (operation)
690 case CPO_COMPARISON:
691 error ("comparison between distinct "
692 "pointer-to-member types %qT and %qT lacks a cast",
693 t1, t2);
694 break;
695 case CPO_CONVERSION:
696 error ("conversion between distinct "
697 "pointer-to-member types %qT and %qT lacks a cast",
698 t1, t2);
699 break;
700 case CPO_CONDITIONAL_EXPR:
701 error ("conditional expression between distinct "
702 "pointer-to-member types %qT and %qT lacks a cast",
703 t1, t2);
704 break;
705 default:
706 gcc_unreachable ();
708 return error_mark_node;
711 else if (TYPE_PTR_P (t1) && TYPE_PTR_P (t2)
712 && FUNC_OR_METHOD_TYPE_P (TREE_TYPE (t1))
713 && TREE_CODE (TREE_TYPE (t2)) == TREE_CODE (TREE_TYPE (t1)))
715 /* ...if T1 is "pointer to transaction_safe function" and T2 is "pointer
716 to function", where the function types are otherwise the same, T2, and
717 vice versa.... */
718 tree f1 = TREE_TYPE (t1);
719 tree f2 = TREE_TYPE (t2);
720 bool safe1 = tx_safe_fn_type_p (f1);
721 bool safe2 = tx_safe_fn_type_p (f2);
722 if (safe1 && !safe2)
723 t1 = build_pointer_type (tx_unsafe_fn_variant (f1));
724 else if (safe2 && !safe1)
725 t2 = build_pointer_type (tx_unsafe_fn_variant (f2));
728 return composite_pointer_type_r (t1, t2, operation, complain);
731 /* Return the merged type of two types.
732 We assume that comptypes has already been done and returned 1;
733 if that isn't so, this may crash.
735 This just combines attributes and default arguments; any other
736 differences would cause the two types to compare unalike. */
738 tree
739 merge_types (tree t1, tree t2)
741 enum tree_code code1;
742 enum tree_code code2;
743 tree attributes;
745 /* Save time if the two types are the same. */
746 if (t1 == t2)
747 return t1;
748 if (original_type (t1) == original_type (t2))
749 return t1;
751 /* If one type is nonsense, use the other. */
752 if (t1 == error_mark_node)
753 return t2;
754 if (t2 == error_mark_node)
755 return t1;
757 /* Handle merging an auto redeclaration with a previous deduced
758 return type. */
759 if (is_auto (t1))
760 return t2;
762 /* Merge the attributes. */
763 attributes = (*targetm.merge_type_attributes) (t1, t2);
765 if (TYPE_PTRMEMFUNC_P (t1))
766 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
767 if (TYPE_PTRMEMFUNC_P (t2))
768 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
770 code1 = TREE_CODE (t1);
771 code2 = TREE_CODE (t2);
772 if (code1 != code2)
774 gcc_assert (code1 == TYPENAME_TYPE || code2 == TYPENAME_TYPE);
775 if (code1 == TYPENAME_TYPE)
777 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
778 code1 = TREE_CODE (t1);
780 else
782 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
783 code2 = TREE_CODE (t2);
787 switch (code1)
789 case POINTER_TYPE:
790 case REFERENCE_TYPE:
791 /* For two pointers, do this recursively on the target type. */
793 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
794 int quals = cp_type_quals (t1);
796 if (code1 == POINTER_TYPE)
798 t1 = build_pointer_type (target);
799 if (TREE_CODE (target) == METHOD_TYPE)
800 t1 = build_ptrmemfunc_type (t1);
802 else
803 t1 = cp_build_reference_type (target, TYPE_REF_IS_RVALUE (t1));
804 t1 = build_type_attribute_variant (t1, attributes);
805 t1 = cp_build_qualified_type (t1, quals);
807 return t1;
810 case OFFSET_TYPE:
812 int quals;
813 tree pointee;
814 quals = cp_type_quals (t1);
815 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
816 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
817 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
818 pointee);
819 t1 = cp_build_qualified_type (t1, quals);
820 break;
823 case ARRAY_TYPE:
825 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
826 /* Save space: see if the result is identical to one of the args. */
827 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
828 return build_type_attribute_variant (t1, attributes);
829 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
830 return build_type_attribute_variant (t2, attributes);
831 /* Merge the element types, and have a size if either arg has one. */
832 t1 = build_cplus_array_type
833 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
834 break;
837 case FUNCTION_TYPE:
838 /* Function types: prefer the one that specified arg types.
839 If both do, merge the arg types. Also merge the return types. */
841 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
842 tree p1 = TYPE_ARG_TYPES (t1);
843 tree p2 = TYPE_ARG_TYPES (t2);
844 tree parms;
845 tree rval, raises;
846 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
848 /* Save space: see if the result is identical to one of the args. */
849 if (valtype == TREE_TYPE (t1) && ! p2)
850 return cp_build_type_attribute_variant (t1, attributes);
851 if (valtype == TREE_TYPE (t2) && ! p1)
852 return cp_build_type_attribute_variant (t2, attributes);
854 /* Simple way if one arg fails to specify argument types. */
855 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
856 parms = p2;
857 else if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
858 parms = p1;
859 else
860 parms = commonparms (p1, p2);
862 rval = build_function_type (valtype, parms);
863 gcc_assert (type_memfn_quals (t1) == type_memfn_quals (t2));
864 gcc_assert (type_memfn_rqual (t1) == type_memfn_rqual (t2));
865 rval = apply_memfn_quals (rval,
866 type_memfn_quals (t1),
867 type_memfn_rqual (t1));
868 raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
869 TYPE_RAISES_EXCEPTIONS (t2));
870 t1 = build_exception_variant (rval, raises);
871 if (late_return_type_p)
872 TYPE_HAS_LATE_RETURN_TYPE (t1) = 1;
873 break;
876 case METHOD_TYPE:
878 /* Get this value the long way, since TYPE_METHOD_BASETYPE
879 is just the main variant of this. */
880 tree basetype = class_of_this_parm (t2);
881 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
882 TYPE_RAISES_EXCEPTIONS (t2));
883 cp_ref_qualifier rqual = type_memfn_rqual (t1);
884 tree t3;
885 bool late_return_type_1_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
886 bool late_return_type_2_p = TYPE_HAS_LATE_RETURN_TYPE (t2);
888 /* If this was a member function type, get back to the
889 original type of type member function (i.e., without
890 the class instance variable up front. */
891 t1 = build_function_type (TREE_TYPE (t1),
892 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
893 t2 = build_function_type (TREE_TYPE (t2),
894 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
895 t3 = merge_types (t1, t2);
896 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
897 TYPE_ARG_TYPES (t3));
898 t1 = build_exception_variant (t3, raises);
899 t1 = build_ref_qualified_type (t1, rqual);
900 if (late_return_type_1_p)
901 TYPE_HAS_LATE_RETURN_TYPE (t1) = 1;
902 if (late_return_type_2_p)
903 TYPE_HAS_LATE_RETURN_TYPE (t2) = 1;
904 break;
907 case TYPENAME_TYPE:
908 /* There is no need to merge attributes into a TYPENAME_TYPE.
909 When the type is instantiated it will have whatever
910 attributes result from the instantiation. */
911 return t1;
913 default:;
916 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
917 return t1;
918 else if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
919 return t2;
920 else
921 return cp_build_type_attribute_variant (t1, attributes);
924 /* Return the ARRAY_TYPE type without its domain. */
926 tree
927 strip_array_domain (tree type)
929 tree t2;
930 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
931 if (TYPE_DOMAIN (type) == NULL_TREE)
932 return type;
933 t2 = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
934 return cp_build_type_attribute_variant (t2, TYPE_ATTRIBUTES (type));
937 /* Wrapper around cp_common_type that is used by c-common.c and other
938 front end optimizations that remove promotions.
940 Return the common type for two arithmetic types T1 and T2 under the
941 usual arithmetic conversions. The default conversions have already
942 been applied, and enumerated types converted to their compatible
943 integer types. */
945 tree
946 common_type (tree t1, tree t2)
948 /* If one type is nonsense, use the other */
949 if (t1 == error_mark_node)
950 return t2;
951 if (t2 == error_mark_node)
952 return t1;
954 return cp_common_type (t1, t2);
957 /* Return the common type of two pointer types T1 and T2. This is the
958 type for the result of most arithmetic operations if the operands
959 have the given two types.
961 We assume that comp_target_types has already been done and returned
962 nonzero; if that isn't so, this may crash. */
964 tree
965 common_pointer_type (tree t1, tree t2)
967 gcc_assert ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
968 || (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
969 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)));
971 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
972 CPO_CONVERSION, tf_warning_or_error);
975 /* Compare two exception specifier types for exactness or subsetness, if
976 allowed. Returns false for mismatch, true for match (same, or
977 derived and !exact).
979 [except.spec] "If a class X ... objects of class X or any class publicly
980 and unambiguously derived from X. Similarly, if a pointer type Y * ...
981 exceptions of type Y * or that are pointers to any type publicly and
982 unambiguously derived from Y. Otherwise a function only allows exceptions
983 that have the same type ..."
984 This does not mention cv qualifiers and is different to what throw
985 [except.throw] and catch [except.catch] will do. They will ignore the
986 top level cv qualifiers, and allow qualifiers in the pointer to class
987 example.
989 We implement the letter of the standard. */
991 static bool
992 comp_except_types (tree a, tree b, bool exact)
994 if (same_type_p (a, b))
995 return true;
996 else if (!exact)
998 if (cp_type_quals (a) || cp_type_quals (b))
999 return false;
1001 if (TYPE_PTR_P (a) && TYPE_PTR_P (b))
1003 a = TREE_TYPE (a);
1004 b = TREE_TYPE (b);
1005 if (cp_type_quals (a) || cp_type_quals (b))
1006 return false;
1009 if (TREE_CODE (a) != RECORD_TYPE
1010 || TREE_CODE (b) != RECORD_TYPE)
1011 return false;
1013 if (publicly_uniquely_derived_p (a, b))
1014 return true;
1016 return false;
1019 /* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
1020 If EXACT is ce_derived, T2 can be stricter than T1 (according to 15.4/5).
1021 If EXACT is ce_normal, the compatibility rules in 15.4/3 apply.
1022 If EXACT is ce_exact, the specs must be exactly the same. Exception lists
1023 are unordered, but we've already filtered out duplicates. Most lists will
1024 be in order, we should try to make use of that. */
1026 bool
1027 comp_except_specs (const_tree t1, const_tree t2, int exact)
1029 const_tree probe;
1030 const_tree base;
1031 int length = 0;
1033 if (t1 == t2)
1034 return true;
1036 /* First handle noexcept. */
1037 if (exact < ce_exact)
1039 /* noexcept(false) is compatible with no exception-specification,
1040 and stricter than any spec. */
1041 if (t1 == noexcept_false_spec)
1042 return t2 == NULL_TREE || exact == ce_derived;
1043 /* Even a derived noexcept(false) is compatible with no
1044 exception-specification. */
1045 if (t2 == noexcept_false_spec)
1046 return t1 == NULL_TREE;
1048 /* Otherwise, if we aren't looking for an exact match, noexcept is
1049 equivalent to throw(). */
1050 if (t1 == noexcept_true_spec)
1051 t1 = empty_except_spec;
1052 if (t2 == noexcept_true_spec)
1053 t2 = empty_except_spec;
1056 /* If any noexcept is left, it is only comparable to itself;
1057 either we're looking for an exact match or we're redeclaring a
1058 template with dependent noexcept. */
1059 if ((t1 && TREE_PURPOSE (t1))
1060 || (t2 && TREE_PURPOSE (t2)))
1061 return (t1 && t2
1062 && cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)));
1064 if (t1 == NULL_TREE) /* T1 is ... */
1065 return t2 == NULL_TREE || exact == ce_derived;
1066 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
1067 return t2 != NULL_TREE && !TREE_VALUE (t2);
1068 if (t2 == NULL_TREE) /* T2 is ... */
1069 return false;
1070 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
1071 return exact == ce_derived;
1073 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
1074 Count how many we find, to determine exactness. For exact matching and
1075 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
1076 O(nm). */
1077 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
1079 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
1081 tree a = TREE_VALUE (probe);
1082 tree b = TREE_VALUE (t2);
1084 if (comp_except_types (a, b, exact))
1086 if (probe == base && exact > ce_derived)
1087 base = TREE_CHAIN (probe);
1088 length++;
1089 break;
1092 if (probe == NULL_TREE)
1093 return false;
1095 return exact == ce_derived || base == NULL_TREE || length == list_length (t1);
1098 /* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
1099 [] can match [size]. */
1101 static bool
1102 comp_array_types (const_tree t1, const_tree t2, bool allow_redeclaration)
1104 tree d1;
1105 tree d2;
1106 tree max1, max2;
1108 if (t1 == t2)
1109 return true;
1111 /* The type of the array elements must be the same. */
1112 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1113 return false;
1115 d1 = TYPE_DOMAIN (t1);
1116 d2 = TYPE_DOMAIN (t2);
1118 if (d1 == d2)
1119 return true;
1121 /* If one of the arrays is dimensionless, and the other has a
1122 dimension, they are of different types. However, it is valid to
1123 write:
1125 extern int a[];
1126 int a[3];
1128 by [basic.link]:
1130 declarations for an array object can specify
1131 array types that differ by the presence or absence of a major
1132 array bound (_dcl.array_). */
1133 if (!d1 || !d2)
1134 return allow_redeclaration;
1136 /* Check that the dimensions are the same. */
1138 if (!cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2)))
1139 return false;
1140 max1 = TYPE_MAX_VALUE (d1);
1141 max2 = TYPE_MAX_VALUE (d2);
1143 if (!cp_tree_equal (max1, max2))
1144 return false;
1146 return true;
1149 /* Compare the relative position of T1 and T2 into their respective
1150 template parameter list.
1151 T1 and T2 must be template parameter types.
1152 Return TRUE if T1 and T2 have the same position, FALSE otherwise. */
1154 static bool
1155 comp_template_parms_position (tree t1, tree t2)
1157 tree index1, index2;
1158 gcc_assert (t1 && t2
1159 && TREE_CODE (t1) == TREE_CODE (t2)
1160 && (TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM
1161 || TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM
1162 || TREE_CODE (t1) == TEMPLATE_TYPE_PARM));
1164 index1 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t1));
1165 index2 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t2));
1167 /* Then compare their relative position. */
1168 if (TEMPLATE_PARM_IDX (index1) != TEMPLATE_PARM_IDX (index2)
1169 || TEMPLATE_PARM_LEVEL (index1) != TEMPLATE_PARM_LEVEL (index2)
1170 || (TEMPLATE_PARM_PARAMETER_PACK (index1)
1171 != TEMPLATE_PARM_PARAMETER_PACK (index2)))
1172 return false;
1174 /* In C++14 we can end up comparing 'auto' to a normal template
1175 parameter. Don't confuse them. */
1176 if (cxx_dialect >= cxx14 && (is_auto (t1) || is_auto (t2)))
1177 return TYPE_IDENTIFIER (t1) == TYPE_IDENTIFIER (t2);
1179 return true;
1182 /* Subroutine in comptypes. */
1184 static bool
1185 structural_comptypes (tree t1, tree t2, int strict)
1187 if (t1 == t2)
1188 return true;
1190 /* Suppress errors caused by previously reported errors. */
1191 if (t1 == error_mark_node || t2 == error_mark_node)
1192 return false;
1194 gcc_assert (TYPE_P (t1) && TYPE_P (t2));
1196 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
1197 current instantiation. */
1198 if (TREE_CODE (t1) == TYPENAME_TYPE)
1199 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
1201 if (TREE_CODE (t2) == TYPENAME_TYPE)
1202 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
1204 if (TYPE_PTRMEMFUNC_P (t1))
1205 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
1206 if (TYPE_PTRMEMFUNC_P (t2))
1207 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
1209 /* Different classes of types can't be compatible. */
1210 if (TREE_CODE (t1) != TREE_CODE (t2))
1211 return false;
1213 /* Qualifiers must match. For array types, we will check when we
1214 recur on the array element types. */
1215 if (TREE_CODE (t1) != ARRAY_TYPE
1216 && cp_type_quals (t1) != cp_type_quals (t2))
1217 return false;
1218 if (TREE_CODE (t1) == FUNCTION_TYPE
1219 && type_memfn_quals (t1) != type_memfn_quals (t2))
1220 return false;
1221 /* Need to check this before TYPE_MAIN_VARIANT.
1222 FIXME function qualifiers should really change the main variant. */
1223 if ((TREE_CODE (t1) == FUNCTION_TYPE
1224 || TREE_CODE (t1) == METHOD_TYPE)
1225 && type_memfn_rqual (t1) != type_memfn_rqual (t2))
1226 return false;
1227 if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2))
1228 return false;
1230 /* Allow for two different type nodes which have essentially the same
1231 definition. Note that we already checked for equality of the type
1232 qualifiers (just above). */
1234 if (TREE_CODE (t1) != ARRAY_TYPE
1235 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1236 return true;
1239 /* Compare the types. Break out if they could be the same. */
1240 switch (TREE_CODE (t1))
1242 case VOID_TYPE:
1243 case BOOLEAN_TYPE:
1244 /* All void and bool types are the same. */
1245 break;
1247 case INTEGER_TYPE:
1248 case FIXED_POINT_TYPE:
1249 case REAL_TYPE:
1250 /* With these nodes, we can't determine type equivalence by
1251 looking at what is stored in the nodes themselves, because
1252 two nodes might have different TYPE_MAIN_VARIANTs but still
1253 represent the same type. For example, wchar_t and int could
1254 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1255 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1256 and are distinct types. On the other hand, int and the
1257 following typedef
1259 typedef int INT __attribute((may_alias));
1261 have identical properties, different TYPE_MAIN_VARIANTs, but
1262 represent the same type. The canonical type system keeps
1263 track of equivalence in this case, so we fall back on it. */
1264 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1266 case TEMPLATE_TEMPLATE_PARM:
1267 case BOUND_TEMPLATE_TEMPLATE_PARM:
1268 if (!comp_template_parms_position (t1, t2))
1269 return false;
1270 if (!comp_template_parms
1271 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
1272 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
1273 return false;
1274 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
1275 break;
1276 /* Don't check inheritance. */
1277 strict = COMPARE_STRICT;
1278 /* Fall through. */
1280 case RECORD_TYPE:
1281 case UNION_TYPE:
1282 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
1283 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
1284 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
1285 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
1286 break;
1288 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
1289 break;
1290 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
1291 break;
1293 return false;
1295 case OFFSET_TYPE:
1296 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
1297 strict & ~COMPARE_REDECLARATION))
1298 return false;
1299 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1300 return false;
1301 break;
1303 case REFERENCE_TYPE:
1304 if (TYPE_REF_IS_RVALUE (t1) != TYPE_REF_IS_RVALUE (t2))
1305 return false;
1306 /* fall through to checks for pointer types */
1308 case POINTER_TYPE:
1309 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1310 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1311 return false;
1312 break;
1314 case METHOD_TYPE:
1315 case FUNCTION_TYPE:
1316 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1317 return false;
1318 if (!compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2)))
1319 return false;
1320 break;
1322 case ARRAY_TYPE:
1323 /* Target types must match incl. qualifiers. */
1324 if (!comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION)))
1325 return false;
1326 break;
1328 case TEMPLATE_TYPE_PARM:
1329 /* If T1 and T2 don't have the same relative position in their
1330 template parameters set, they can't be equal. */
1331 if (!comp_template_parms_position (t1, t2))
1332 return false;
1333 /* Constrained 'auto's are distinct from parms that don't have the same
1334 constraints. */
1335 if (!equivalent_placeholder_constraints (t1, t2))
1336 return false;
1337 break;
1339 case TYPENAME_TYPE:
1340 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1341 TYPENAME_TYPE_FULLNAME (t2)))
1342 return false;
1343 /* Qualifiers don't matter on scopes. */
1344 if (!same_type_ignoring_top_level_qualifiers_p (TYPE_CONTEXT (t1),
1345 TYPE_CONTEXT (t2)))
1346 return false;
1347 break;
1349 case UNBOUND_CLASS_TEMPLATE:
1350 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1351 return false;
1352 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1353 return false;
1354 break;
1356 case COMPLEX_TYPE:
1357 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1358 return false;
1359 break;
1361 case VECTOR_TYPE:
1362 if (TYPE_VECTOR_SUBPARTS (t1) != TYPE_VECTOR_SUBPARTS (t2)
1363 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1364 return false;
1365 break;
1367 case TYPE_PACK_EXPANSION:
1368 return (same_type_p (PACK_EXPANSION_PATTERN (t1),
1369 PACK_EXPANSION_PATTERN (t2))
1370 && comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
1371 PACK_EXPANSION_EXTRA_ARGS (t2)));
1373 case DECLTYPE_TYPE:
1374 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1375 != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1376 || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1377 != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1378 || (DECLTYPE_FOR_LAMBDA_PROXY (t1)
1379 != DECLTYPE_FOR_LAMBDA_PROXY (t2))
1380 || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1),
1381 DECLTYPE_TYPE_EXPR (t2)))
1382 return false;
1383 break;
1385 case UNDERLYING_TYPE:
1386 return same_type_p (UNDERLYING_TYPE_TYPE (t1),
1387 UNDERLYING_TYPE_TYPE (t2));
1389 default:
1390 return false;
1393 /* If we get here, we know that from a target independent POV the
1394 types are the same. Make sure the target attributes are also
1395 the same. */
1396 return comp_type_attributes (t1, t2);
1399 /* Return true if T1 and T2 are related as allowed by STRICT. STRICT
1400 is a bitwise-or of the COMPARE_* flags. */
1402 bool
1403 comptypes (tree t1, tree t2, int strict)
1405 if (strict == COMPARE_STRICT)
1407 if (t1 == t2)
1408 return true;
1410 if (t1 == error_mark_node || t2 == error_mark_node)
1411 return false;
1413 if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1414 /* At least one of the types requires structural equality, so
1415 perform a deep check. */
1416 return structural_comptypes (t1, t2, strict);
1418 if (flag_checking && USE_CANONICAL_TYPES)
1420 bool result = structural_comptypes (t1, t2, strict);
1422 if (result && TYPE_CANONICAL (t1) != TYPE_CANONICAL (t2))
1423 /* The two types are structurally equivalent, but their
1424 canonical types were different. This is a failure of the
1425 canonical type propagation code.*/
1426 internal_error
1427 ("canonical types differ for identical types %T and %T",
1428 t1, t2);
1429 else if (!result && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
1430 /* Two types are structurally different, but the canonical
1431 types are the same. This means we were over-eager in
1432 assigning canonical types. */
1433 internal_error
1434 ("same canonical type node for different types %T and %T",
1435 t1, t2);
1437 return result;
1439 if (!flag_checking && USE_CANONICAL_TYPES)
1440 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1441 else
1442 return structural_comptypes (t1, t2, strict);
1444 else if (strict == COMPARE_STRUCTURAL)
1445 return structural_comptypes (t1, t2, COMPARE_STRICT);
1446 else
1447 return structural_comptypes (t1, t2, strict);
1450 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1451 top-level qualifiers. */
1453 bool
1454 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1456 if (type1 == error_mark_node || type2 == error_mark_node)
1457 return false;
1459 return same_type_p (TYPE_MAIN_VARIANT (type1), TYPE_MAIN_VARIANT (type2));
1462 /* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1464 bool
1465 at_least_as_qualified_p (const_tree type1, const_tree type2)
1467 int q1 = cp_type_quals (type1);
1468 int q2 = cp_type_quals (type2);
1470 /* All qualifiers for TYPE2 must also appear in TYPE1. */
1471 return (q1 & q2) == q2;
1474 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1475 more cv-qualified that TYPE1, and 0 otherwise. */
1478 comp_cv_qualification (int q1, int q2)
1480 if (q1 == q2)
1481 return 0;
1483 if ((q1 & q2) == q2)
1484 return 1;
1485 else if ((q1 & q2) == q1)
1486 return -1;
1488 return 0;
1492 comp_cv_qualification (const_tree type1, const_tree type2)
1494 int q1 = cp_type_quals (type1);
1495 int q2 = cp_type_quals (type2);
1496 return comp_cv_qualification (q1, q2);
1499 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1500 subset of the cv-qualification signature of TYPE2, and the types
1501 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1504 comp_cv_qual_signature (tree type1, tree type2)
1506 if (comp_ptr_ttypes_real (type2, type1, -1))
1507 return 1;
1508 else if (comp_ptr_ttypes_real (type1, type2, -1))
1509 return -1;
1510 else
1511 return 0;
1514 /* Subroutines of `comptypes'. */
1516 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1517 equivalent in the sense that functions with those parameter types
1518 can have equivalent types. The two lists must be equivalent,
1519 element by element. */
1521 bool
1522 compparms (const_tree parms1, const_tree parms2)
1524 const_tree t1, t2;
1526 /* An unspecified parmlist matches any specified parmlist
1527 whose argument types don't need default promotions. */
1529 for (t1 = parms1, t2 = parms2;
1530 t1 || t2;
1531 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1533 /* If one parmlist is shorter than the other,
1534 they fail to match. */
1535 if (!t1 || !t2)
1536 return false;
1537 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1538 return false;
1540 return true;
1544 /* Process a sizeof or alignof expression where the operand is a
1545 type. */
1547 tree
1548 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
1550 tree value;
1551 bool dependent_p;
1553 gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1554 if (type == error_mark_node)
1555 return error_mark_node;
1557 type = non_reference (type);
1558 if (TREE_CODE (type) == METHOD_TYPE)
1560 if (complain)
1561 pedwarn (input_location, OPT_Wpointer_arith,
1562 "invalid application of %qs to a member function",
1563 operator_name_info[(int) op].name);
1564 else
1565 return error_mark_node;
1566 value = size_one_node;
1569 dependent_p = dependent_type_p (type);
1570 if (!dependent_p)
1571 complete_type (type);
1572 if (dependent_p
1573 /* VLA types will have a non-constant size. In the body of an
1574 uninstantiated template, we don't need to try to compute the
1575 value, because the sizeof expression is not an integral
1576 constant expression in that case. And, if we do try to
1577 compute the value, we'll likely end up with SAVE_EXPRs, which
1578 the template substitution machinery does not expect to see. */
1579 || (processing_template_decl
1580 && COMPLETE_TYPE_P (type)
1581 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1583 value = build_min (op, size_type_node, type);
1584 TREE_READONLY (value) = 1;
1585 return value;
1588 return c_sizeof_or_alignof_type (input_location, complete_type (type),
1589 op == SIZEOF_EXPR, false,
1590 complain);
1593 /* Return the size of the type, without producing any warnings for
1594 types whose size cannot be taken. This routine should be used only
1595 in some other routine that has already produced a diagnostic about
1596 using the size of such a type. */
1597 tree
1598 cxx_sizeof_nowarn (tree type)
1600 if (TREE_CODE (type) == FUNCTION_TYPE
1601 || VOID_TYPE_P (type)
1602 || TREE_CODE (type) == ERROR_MARK)
1603 return size_one_node;
1604 else if (!COMPLETE_TYPE_P (type))
1605 return size_zero_node;
1606 else
1607 return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false);
1610 /* Process a sizeof expression where the operand is an expression. */
1612 static tree
1613 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1615 if (e == error_mark_node)
1616 return error_mark_node;
1618 if (processing_template_decl)
1620 e = build_min (SIZEOF_EXPR, size_type_node, e);
1621 TREE_SIDE_EFFECTS (e) = 0;
1622 TREE_READONLY (e) = 1;
1624 return e;
1627 /* To get the size of a static data member declared as an array of
1628 unknown bound, we need to instantiate it. */
1629 if (VAR_P (e)
1630 && VAR_HAD_UNKNOWN_BOUND (e)
1631 && DECL_TEMPLATE_INSTANTIATION (e))
1632 instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1634 if (TREE_CODE (e) == PARM_DECL
1635 && DECL_ARRAY_PARAMETER_P (e)
1636 && (complain & tf_warning))
1638 if (warning (OPT_Wsizeof_array_argument, "%<sizeof%> on array function "
1639 "parameter %qE will return size of %qT", e, TREE_TYPE (e)))
1640 inform (DECL_SOURCE_LOCATION (e), "declared here");
1643 e = mark_type_use (e);
1645 if (TREE_CODE (e) == COMPONENT_REF
1646 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1647 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1649 if (complain & tf_error)
1650 error ("invalid application of %<sizeof%> to a bit-field");
1651 else
1652 return error_mark_node;
1653 e = char_type_node;
1655 else if (is_overloaded_fn (e))
1657 if (complain & tf_error)
1658 permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1659 "function type");
1660 else
1661 return error_mark_node;
1662 e = char_type_node;
1664 else if (type_unknown_p (e))
1666 if (complain & tf_error)
1667 cxx_incomplete_type_error (e, TREE_TYPE (e));
1668 else
1669 return error_mark_node;
1670 e = char_type_node;
1672 else
1673 e = TREE_TYPE (e);
1675 return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, complain & tf_error);
1678 /* Implement the __alignof keyword: Return the minimum required
1679 alignment of E, measured in bytes. For VAR_DECL's and
1680 FIELD_DECL's return DECL_ALIGN (which can be set from an
1681 "aligned" __attribute__ specification). */
1683 static tree
1684 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1686 tree t;
1688 if (e == error_mark_node)
1689 return error_mark_node;
1691 if (processing_template_decl)
1693 e = build_min (ALIGNOF_EXPR, size_type_node, e);
1694 TREE_SIDE_EFFECTS (e) = 0;
1695 TREE_READONLY (e) = 1;
1697 return e;
1700 e = mark_type_use (e);
1702 if (VAR_P (e))
1703 t = size_int (DECL_ALIGN_UNIT (e));
1704 else if (TREE_CODE (e) == COMPONENT_REF
1705 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1706 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1708 if (complain & tf_error)
1709 error ("invalid application of %<__alignof%> to a bit-field");
1710 else
1711 return error_mark_node;
1712 t = size_one_node;
1714 else if (TREE_CODE (e) == COMPONENT_REF
1715 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1716 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1717 else if (is_overloaded_fn (e))
1719 if (complain & tf_error)
1720 permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1721 "function type");
1722 else
1723 return error_mark_node;
1724 if (TREE_CODE (e) == FUNCTION_DECL)
1725 t = size_int (DECL_ALIGN_UNIT (e));
1726 else
1727 t = size_one_node;
1729 else if (type_unknown_p (e))
1731 if (complain & tf_error)
1732 cxx_incomplete_type_error (e, TREE_TYPE (e));
1733 else
1734 return error_mark_node;
1735 t = size_one_node;
1737 else
1738 return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR,
1739 complain & tf_error);
1741 return fold_convert (size_type_node, t);
1744 /* Process a sizeof or alignof expression E with code OP where the operand
1745 is an expression. */
1747 tree
1748 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1750 if (op == SIZEOF_EXPR)
1751 return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1752 else
1753 return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1756 /* Build a representation of an expression 'alignas(E).' Return the
1757 folded integer value of E if it is an integral constant expression
1758 that resolves to a valid alignment. If E depends on a template
1759 parameter, return a syntactic representation tree of kind
1760 ALIGNOF_EXPR. Otherwise, return an error_mark_node if the
1761 expression is ill formed, or NULL_TREE if E is NULL_TREE. */
1763 tree
1764 cxx_alignas_expr (tree e)
1766 if (e == NULL_TREE || e == error_mark_node
1767 || (!TYPE_P (e) && !require_potential_rvalue_constant_expression (e)))
1768 return e;
1770 if (TYPE_P (e))
1771 /* [dcl.align]/3:
1773 When the alignment-specifier is of the form
1774 alignas(type-id ), it shall have the same effect as
1775 alignas(alignof(type-id )). */
1777 return cxx_sizeof_or_alignof_type (e, ALIGNOF_EXPR, false);
1779 /* If we reach this point, it means the alignas expression if of
1780 the form "alignas(assignment-expression)", so we should follow
1781 what is stated by [dcl.align]/2. */
1783 if (value_dependent_expression_p (e))
1784 /* Leave value-dependent expression alone for now. */
1785 return e;
1787 e = instantiate_non_dependent_expr (e);
1788 e = mark_rvalue_use (e);
1790 /* [dcl.align]/2 says:
1792 the assignment-expression shall be an integral constant
1793 expression. */
1795 return cxx_constant_value (e);
1799 /* EXPR is being used in a context that is not a function call.
1800 Enforce:
1802 [expr.ref]
1804 The expression can be used only as the left-hand operand of a
1805 member function call.
1807 [expr.mptr.operator]
1809 If the result of .* or ->* is a function, then that result can be
1810 used only as the operand for the function call operator ().
1812 by issuing an error message if appropriate. Returns true iff EXPR
1813 violates these rules. */
1815 bool
1816 invalid_nonstatic_memfn_p (location_t loc, tree expr, tsubst_flags_t complain)
1818 if (expr == NULL_TREE)
1819 return false;
1820 /* Don't enforce this in MS mode. */
1821 if (flag_ms_extensions)
1822 return false;
1823 if (is_overloaded_fn (expr) && !really_overloaded_fn (expr))
1824 expr = get_first_fn (expr);
1825 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1827 if (complain & tf_error)
1829 if (DECL_P (expr))
1831 error_at (loc, "invalid use of non-static member function %qD",
1832 expr);
1833 inform (DECL_SOURCE_LOCATION (expr), "declared here");
1835 else
1836 error_at (loc, "invalid use of non-static member function of "
1837 "type %qT", TREE_TYPE (expr));
1839 return true;
1841 return false;
1844 /* If EXP is a reference to a bitfield, and the type of EXP does not
1845 match the declared type of the bitfield, return the declared type
1846 of the bitfield. Otherwise, return NULL_TREE. */
1848 tree
1849 is_bitfield_expr_with_lowered_type (const_tree exp)
1851 switch (TREE_CODE (exp))
1853 case COND_EXPR:
1854 if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1855 ? TREE_OPERAND (exp, 1)
1856 : TREE_OPERAND (exp, 0)))
1857 return NULL_TREE;
1858 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1860 case COMPOUND_EXPR:
1861 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1863 case MODIFY_EXPR:
1864 case SAVE_EXPR:
1865 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1867 case COMPONENT_REF:
1869 tree field;
1871 field = TREE_OPERAND (exp, 1);
1872 if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1873 return NULL_TREE;
1874 if (same_type_ignoring_top_level_qualifiers_p
1875 (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1876 return NULL_TREE;
1877 return DECL_BIT_FIELD_TYPE (field);
1880 CASE_CONVERT:
1881 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1882 == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1883 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1884 /* Fallthrough. */
1886 default:
1887 return NULL_TREE;
1891 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1892 bitfield with a lowered type, the type of EXP is returned, rather
1893 than NULL_TREE. */
1895 tree
1896 unlowered_expr_type (const_tree exp)
1898 tree type;
1899 tree etype = TREE_TYPE (exp);
1901 type = is_bitfield_expr_with_lowered_type (exp);
1902 if (type)
1903 type = cp_build_qualified_type (type, cp_type_quals (etype));
1904 else
1905 type = etype;
1907 return type;
1910 /* Perform the conversions in [expr] that apply when an lvalue appears
1911 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1912 function-to-pointer conversions. In addition, bitfield references are
1913 converted to their declared types. Note that this function does not perform
1914 the lvalue-to-rvalue conversion for class types. If you need that conversion
1915 for class types, then you probably need to use force_rvalue.
1917 Although the returned value is being used as an rvalue, this
1918 function does not wrap the returned expression in a
1919 NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1920 that the return value is no longer an lvalue. */
1922 tree
1923 decay_conversion (tree exp,
1924 tsubst_flags_t complain,
1925 bool reject_builtin /* = true */)
1927 tree type;
1928 enum tree_code code;
1929 location_t loc = EXPR_LOC_OR_LOC (exp, input_location);
1931 type = TREE_TYPE (exp);
1932 if (type == error_mark_node)
1933 return error_mark_node;
1935 exp = resolve_nondeduced_context (exp, complain);
1936 if (type_unknown_p (exp))
1938 if (complain & tf_error)
1939 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
1940 return error_mark_node;
1943 code = TREE_CODE (type);
1945 if (error_operand_p (exp))
1946 return error_mark_node;
1948 if (NULLPTR_TYPE_P (type) && !TREE_SIDE_EFFECTS (exp))
1949 return nullptr_node;
1951 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1952 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1953 if (code == VOID_TYPE)
1955 if (complain & tf_error)
1956 error_at (loc, "void value not ignored as it ought to be");
1957 return error_mark_node;
1959 if (invalid_nonstatic_memfn_p (loc, exp, complain))
1960 return error_mark_node;
1961 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
1963 exp = mark_lvalue_use (exp);
1964 if (reject_builtin && reject_gcc_builtin (exp, loc))
1965 return error_mark_node;
1966 return cp_build_addr_expr (exp, complain);
1968 if (code == ARRAY_TYPE)
1970 tree adr;
1971 tree ptrtype;
1973 exp = mark_lvalue_use (exp);
1975 if (INDIRECT_REF_P (exp))
1976 return build_nop (build_pointer_type (TREE_TYPE (type)),
1977 TREE_OPERAND (exp, 0));
1979 if (TREE_CODE (exp) == COMPOUND_EXPR)
1981 tree op1 = decay_conversion (TREE_OPERAND (exp, 1), complain);
1982 if (op1 == error_mark_node)
1983 return error_mark_node;
1984 return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
1985 TREE_OPERAND (exp, 0), op1);
1988 if (!lvalue_p (exp)
1989 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1991 if (complain & tf_error)
1992 error_at (loc, "invalid use of non-lvalue array");
1993 return error_mark_node;
1996 /* Don't let an array compound literal decay to a pointer. It can
1997 still be used to initialize an array or bind to a reference. */
1998 if (TREE_CODE (exp) == TARGET_EXPR)
2000 if (complain & tf_error)
2001 error_at (loc, "taking address of temporary array");
2002 return error_mark_node;
2005 ptrtype = build_pointer_type (TREE_TYPE (type));
2007 if (VAR_P (exp))
2009 if (!cxx_mark_addressable (exp))
2010 return error_mark_node;
2011 adr = build_nop (ptrtype, build_address (exp));
2012 return adr;
2014 /* This way is better for a COMPONENT_REF since it can
2015 simplify the offset for a component. */
2016 adr = cp_build_addr_expr (exp, complain);
2017 return cp_convert (ptrtype, adr, complain);
2020 /* Otherwise, it's the lvalue-to-rvalue conversion. */
2021 exp = mark_rvalue_use (exp, loc, reject_builtin);
2023 /* If a bitfield is used in a context where integral promotion
2024 applies, then the caller is expected to have used
2025 default_conversion. That function promotes bitfields correctly
2026 before calling this function. At this point, if we have a
2027 bitfield referenced, we may assume that is not subject to
2028 promotion, and that, therefore, the type of the resulting rvalue
2029 is the declared type of the bitfield. */
2030 exp = convert_bitfield_to_declared_type (exp);
2032 /* We do not call rvalue() here because we do not want to wrap EXP
2033 in a NON_LVALUE_EXPR. */
2035 /* [basic.lval]
2037 Non-class rvalues always have cv-unqualified types. */
2038 type = TREE_TYPE (exp);
2039 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
2040 exp = build_nop (cv_unqualified (type), exp);
2042 if (!complete_type_or_maybe_complain (type, exp, complain))
2043 return error_mark_node;
2045 return exp;
2048 /* Perform preparatory conversions, as part of the "usual arithmetic
2049 conversions". In particular, as per [expr]:
2051 Whenever an lvalue expression appears as an operand of an
2052 operator that expects the rvalue for that operand, the
2053 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
2054 standard conversions are applied to convert the expression to an
2055 rvalue.
2057 In addition, we perform integral promotions here, as those are
2058 applied to both operands to a binary operator before determining
2059 what additional conversions should apply. */
2061 static tree
2062 cp_default_conversion (tree exp, tsubst_flags_t complain)
2064 /* Check for target-specific promotions. */
2065 tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
2066 if (promoted_type)
2067 exp = cp_convert (promoted_type, exp, complain);
2068 /* Perform the integral promotions first so that bitfield
2069 expressions (which may promote to "int", even if the bitfield is
2070 declared "unsigned") are promoted correctly. */
2071 else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
2072 exp = cp_perform_integral_promotions (exp, complain);
2073 /* Perform the other conversions. */
2074 exp = decay_conversion (exp, complain);
2076 return exp;
2079 /* C version. */
2081 tree
2082 default_conversion (tree exp)
2084 return cp_default_conversion (exp, tf_warning_or_error);
2087 /* EXPR is an expression with an integral or enumeration type.
2088 Perform the integral promotions in [conv.prom], and return the
2089 converted value. */
2091 tree
2092 cp_perform_integral_promotions (tree expr, tsubst_flags_t complain)
2094 tree type;
2095 tree promoted_type;
2097 expr = mark_rvalue_use (expr);
2099 /* [conv.prom]
2101 If the bitfield has an enumerated type, it is treated as any
2102 other value of that type for promotion purposes. */
2103 type = is_bitfield_expr_with_lowered_type (expr);
2104 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
2105 type = TREE_TYPE (expr);
2106 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
2107 /* Scoped enums don't promote. */
2108 if (SCOPED_ENUM_P (type))
2109 return expr;
2110 promoted_type = type_promotes_to (type);
2111 if (type != promoted_type)
2112 expr = cp_convert (promoted_type, expr, complain);
2113 return expr;
2116 /* C version. */
2118 tree
2119 perform_integral_promotions (tree expr)
2121 return cp_perform_integral_promotions (expr, tf_warning_or_error);
2124 /* Returns nonzero iff exp is a STRING_CST or the result of applying
2125 decay_conversion to one. */
2128 string_conv_p (const_tree totype, const_tree exp, int warn)
2130 tree t;
2132 if (!TYPE_PTR_P (totype))
2133 return 0;
2135 t = TREE_TYPE (totype);
2136 if (!same_type_p (t, char_type_node)
2137 && !same_type_p (t, char16_type_node)
2138 && !same_type_p (t, char32_type_node)
2139 && !same_type_p (t, wchar_type_node))
2140 return 0;
2142 if (TREE_CODE (exp) == STRING_CST)
2144 /* Make sure that we don't try to convert between char and wide chars. */
2145 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
2146 return 0;
2148 else
2150 /* Is this a string constant which has decayed to 'const char *'? */
2151 t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
2152 if (!same_type_p (TREE_TYPE (exp), t))
2153 return 0;
2154 STRIP_NOPS (exp);
2155 if (TREE_CODE (exp) != ADDR_EXPR
2156 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
2157 return 0;
2159 if (warn)
2161 if (cxx_dialect >= cxx11)
2162 pedwarn (input_location,
2163 pedantic ? OPT_Wpedantic : OPT_Wwrite_strings,
2164 "ISO C++ forbids converting a string constant to %qT",
2165 totype);
2166 else
2167 warning (OPT_Wwrite_strings,
2168 "deprecated conversion from string constant to %qT",
2169 totype);
2172 return 1;
2175 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2176 can, for example, use as an lvalue. This code used to be in
2177 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2178 expressions, where we're dealing with aggregates. But now it's again only
2179 called from unary_complex_lvalue. The case (in particular) that led to
2180 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2181 get it there. */
2183 static tree
2184 rationalize_conditional_expr (enum tree_code code, tree t,
2185 tsubst_flags_t complain)
2187 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
2189 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2190 the first operand is always the one to be used if both operands
2191 are equal, so we know what conditional expression this used to be. */
2192 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2194 tree op0 = TREE_OPERAND (t, 0);
2195 tree op1 = TREE_OPERAND (t, 1);
2197 /* The following code is incorrect if either operand side-effects. */
2198 gcc_assert (!TREE_SIDE_EFFECTS (op0)
2199 && !TREE_SIDE_EFFECTS (op1));
2200 return
2201 build_conditional_expr (loc,
2202 build_x_binary_op (loc,
2203 (TREE_CODE (t) == MIN_EXPR
2204 ? LE_EXPR : GE_EXPR),
2205 op0, TREE_CODE (op0),
2206 op1, TREE_CODE (op1),
2207 /*overload=*/NULL,
2208 complain),
2209 cp_build_unary_op (code, op0, 0, complain),
2210 cp_build_unary_op (code, op1, 0, complain),
2211 complain);
2214 return
2215 build_conditional_expr (loc, TREE_OPERAND (t, 0),
2216 cp_build_unary_op (code, TREE_OPERAND (t, 1), 0,
2217 complain),
2218 cp_build_unary_op (code, TREE_OPERAND (t, 2), 0,
2219 complain),
2220 complain);
2223 /* Given the TYPE of an anonymous union field inside T, return the
2224 FIELD_DECL for the field. If not found return NULL_TREE. Because
2225 anonymous unions can nest, we must also search all anonymous unions
2226 that are directly reachable. */
2228 tree
2229 lookup_anon_field (tree t, tree type)
2231 tree field;
2233 t = TYPE_MAIN_VARIANT (t);
2235 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2237 if (TREE_STATIC (field))
2238 continue;
2239 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2240 continue;
2242 /* If we find it directly, return the field. */
2243 if (DECL_NAME (field) == NULL_TREE
2244 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2246 return field;
2249 /* Otherwise, it could be nested, search harder. */
2250 if (DECL_NAME (field) == NULL_TREE
2251 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2253 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2254 if (subfield)
2255 return subfield;
2258 return NULL_TREE;
2261 /* Build an expression representing OBJECT.MEMBER. OBJECT is an
2262 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
2263 non-NULL, it indicates the path to the base used to name MEMBER.
2264 If PRESERVE_REFERENCE is true, the expression returned will have
2265 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
2266 returned will have the type referred to by the reference.
2268 This function does not perform access control; that is either done
2269 earlier by the parser when the name of MEMBER is resolved to MEMBER
2270 itself, or later when overload resolution selects one of the
2271 functions indicated by MEMBER. */
2273 tree
2274 build_class_member_access_expr (cp_expr object, tree member,
2275 tree access_path, bool preserve_reference,
2276 tsubst_flags_t complain)
2278 tree object_type;
2279 tree member_scope;
2280 tree result = NULL_TREE;
2281 tree using_decl = NULL_TREE;
2283 if (error_operand_p (object) || error_operand_p (member))
2284 return error_mark_node;
2286 gcc_assert (DECL_P (member) || BASELINK_P (member));
2288 /* [expr.ref]
2290 The type of the first expression shall be "class object" (of a
2291 complete type). */
2292 object_type = TREE_TYPE (object);
2293 if (!currently_open_class (object_type)
2294 && !complete_type_or_maybe_complain (object_type, object, complain))
2295 return error_mark_node;
2296 if (!CLASS_TYPE_P (object_type))
2298 if (complain & tf_error)
2300 if (POINTER_TYPE_P (object_type)
2301 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2302 error ("request for member %qD in %qE, which is of pointer "
2303 "type %qT (maybe you meant to use %<->%> ?)",
2304 member, object.get_value (), object_type);
2305 else
2306 error ("request for member %qD in %qE, which is of non-class "
2307 "type %qT", member, object.get_value (), object_type);
2309 return error_mark_node;
2312 /* The standard does not seem to actually say that MEMBER must be a
2313 member of OBJECT_TYPE. However, that is clearly what is
2314 intended. */
2315 if (DECL_P (member))
2317 member_scope = DECL_CLASS_CONTEXT (member);
2318 if (!mark_used (member, complain) && !(complain & tf_error))
2319 return error_mark_node;
2320 if (TREE_DEPRECATED (member))
2321 warn_deprecated_use (member, NULL_TREE);
2323 else
2324 member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2325 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2326 presently be the anonymous union. Go outwards until we find a
2327 type related to OBJECT_TYPE. */
2328 while ((ANON_AGGR_TYPE_P (member_scope) || UNSCOPED_ENUM_P (member_scope))
2329 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2330 object_type))
2331 member_scope = TYPE_CONTEXT (member_scope);
2332 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2334 if (complain & tf_error)
2336 if (TREE_CODE (member) == FIELD_DECL)
2337 error ("invalid use of nonstatic data member %qE", member);
2338 else
2339 error ("%qD is not a member of %qT", member, object_type);
2341 return error_mark_node;
2344 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2345 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
2346 in the front end; only _DECLs and _REFs are lvalues in the back end. */
2348 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2349 if (temp)
2350 object = cp_build_indirect_ref (temp, RO_NULL, complain);
2353 /* In [expr.ref], there is an explicit list of the valid choices for
2354 MEMBER. We check for each of those cases here. */
2355 if (VAR_P (member))
2357 /* A static data member. */
2358 result = member;
2359 mark_exp_read (object);
2360 /* If OBJECT has side-effects, they are supposed to occur. */
2361 if (TREE_SIDE_EFFECTS (object))
2362 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2364 else if (TREE_CODE (member) == FIELD_DECL)
2366 /* A non-static data member. */
2367 bool null_object_p;
2368 int type_quals;
2369 tree member_type;
2371 if (INDIRECT_REF_P (object))
2372 null_object_p =
2373 integer_zerop (tree_strip_nop_conversions (TREE_OPERAND (object, 0)));
2374 else
2375 null_object_p = false;
2377 /* Convert OBJECT to the type of MEMBER. */
2378 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2379 TYPE_MAIN_VARIANT (member_scope)))
2381 tree binfo;
2382 base_kind kind;
2384 binfo = lookup_base (access_path ? access_path : object_type,
2385 member_scope, ba_unique, &kind, complain);
2386 if (binfo == error_mark_node)
2387 return error_mark_node;
2389 /* It is invalid to try to get to a virtual base of a
2390 NULL object. The most common cause is invalid use of
2391 offsetof macro. */
2392 if (null_object_p && kind == bk_via_virtual)
2394 if (complain & tf_error)
2396 error ("invalid access to non-static data member %qD in "
2397 "virtual base of NULL object", member);
2399 return error_mark_node;
2402 /* Convert to the base. */
2403 object = build_base_path (PLUS_EXPR, object, binfo,
2404 /*nonnull=*/1, complain);
2405 /* If we found the base successfully then we should be able
2406 to convert to it successfully. */
2407 gcc_assert (object != error_mark_node);
2410 /* If MEMBER is from an anonymous aggregate, we have converted
2411 OBJECT so that it refers to the class containing the
2412 anonymous union. Generate a reference to the anonymous union
2413 itself, and recur to find MEMBER. */
2414 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2415 /* When this code is called from build_field_call, the
2416 object already has the type of the anonymous union.
2417 That is because the COMPONENT_REF was already
2418 constructed, and was then disassembled before calling
2419 build_field_call. After the function-call code is
2420 cleaned up, this waste can be eliminated. */
2421 && (!same_type_ignoring_top_level_qualifiers_p
2422 (TREE_TYPE (object), DECL_CONTEXT (member))))
2424 tree anonymous_union;
2426 anonymous_union = lookup_anon_field (TREE_TYPE (object),
2427 DECL_CONTEXT (member));
2428 object = build_class_member_access_expr (object,
2429 anonymous_union,
2430 /*access_path=*/NULL_TREE,
2431 preserve_reference,
2432 complain);
2435 /* Compute the type of the field, as described in [expr.ref]. */
2436 type_quals = TYPE_UNQUALIFIED;
2437 member_type = TREE_TYPE (member);
2438 if (TREE_CODE (member_type) != REFERENCE_TYPE)
2440 type_quals = (cp_type_quals (member_type)
2441 | cp_type_quals (object_type));
2443 /* A field is const (volatile) if the enclosing object, or the
2444 field itself, is const (volatile). But, a mutable field is
2445 not const, even within a const object. */
2446 if (DECL_MUTABLE_P (member))
2447 type_quals &= ~TYPE_QUAL_CONST;
2448 member_type = cp_build_qualified_type (member_type, type_quals);
2451 result = build3_loc (input_location, COMPONENT_REF, member_type,
2452 object, member, NULL_TREE);
2454 /* Mark the expression const or volatile, as appropriate. Even
2455 though we've dealt with the type above, we still have to mark the
2456 expression itself. */
2457 if (type_quals & TYPE_QUAL_CONST)
2458 TREE_READONLY (result) = 1;
2459 if (type_quals & TYPE_QUAL_VOLATILE)
2460 TREE_THIS_VOLATILE (result) = 1;
2462 else if (BASELINK_P (member))
2464 /* The member is a (possibly overloaded) member function. */
2465 tree functions;
2466 tree type;
2468 /* If the MEMBER is exactly one static member function, then we
2469 know the type of the expression. Otherwise, we must wait
2470 until overload resolution has been performed. */
2471 functions = BASELINK_FUNCTIONS (member);
2472 if (TREE_CODE (functions) == FUNCTION_DECL
2473 && DECL_STATIC_FUNCTION_P (functions))
2474 type = TREE_TYPE (functions);
2475 else
2476 type = unknown_type_node;
2477 /* Note that we do not convert OBJECT to the BASELINK_BINFO
2478 base. That will happen when the function is called. */
2479 result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2481 else if (TREE_CODE (member) == CONST_DECL)
2483 /* The member is an enumerator. */
2484 result = member;
2485 /* If OBJECT has side-effects, they are supposed to occur. */
2486 if (TREE_SIDE_EFFECTS (object))
2487 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2488 object, result);
2490 else if ((using_decl = strip_using_decl (member)) != member)
2491 result = build_class_member_access_expr (object,
2492 using_decl,
2493 access_path, preserve_reference,
2494 complain);
2495 else
2497 if (complain & tf_error)
2498 error ("invalid use of %qD", member);
2499 return error_mark_node;
2502 if (!preserve_reference)
2503 /* [expr.ref]
2505 If E2 is declared to have type "reference to T", then ... the
2506 type of E1.E2 is T. */
2507 result = convert_from_reference (result);
2509 return result;
2512 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2513 SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type. */
2515 static tree
2516 lookup_destructor (tree object, tree scope, tree dtor_name,
2517 tsubst_flags_t complain)
2519 tree object_type = TREE_TYPE (object);
2520 tree dtor_type = TREE_OPERAND (dtor_name, 0);
2521 tree expr;
2523 /* We've already complained about this destructor. */
2524 if (dtor_type == error_mark_node)
2525 return error_mark_node;
2527 if (scope && !check_dtor_name (scope, dtor_type))
2529 if (complain & tf_error)
2530 error ("qualified type %qT does not match destructor name ~%qT",
2531 scope, dtor_type);
2532 return error_mark_node;
2534 if (is_auto (dtor_type))
2535 dtor_type = object_type;
2536 else if (identifier_p (dtor_type))
2538 /* In a template, names we can't find a match for are still accepted
2539 destructor names, and we check them here. */
2540 if (check_dtor_name (object_type, dtor_type))
2541 dtor_type = object_type;
2542 else
2544 if (complain & tf_error)
2545 error ("object type %qT does not match destructor name ~%qT",
2546 object_type, dtor_type);
2547 return error_mark_node;
2551 else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2553 if (complain & tf_error)
2554 error ("the type being destroyed is %qT, but the destructor "
2555 "refers to %qT", TYPE_MAIN_VARIANT (object_type), dtor_type);
2556 return error_mark_node;
2558 expr = lookup_member (dtor_type, complete_dtor_identifier,
2559 /*protect=*/1, /*want_type=*/false,
2560 tf_warning_or_error);
2561 if (!expr)
2563 if (complain & tf_error)
2564 cxx_incomplete_type_error (dtor_name, dtor_type);
2565 return error_mark_node;
2567 expr = (adjust_result_of_qualified_name_lookup
2568 (expr, dtor_type, object_type));
2569 if (scope == NULL_TREE)
2570 /* We need to call adjust_result_of_qualified_name_lookup in case the
2571 destructor names a base class, but we unset BASELINK_QUALIFIED_P so
2572 that we still get virtual function binding. */
2573 BASELINK_QUALIFIED_P (expr) = false;
2574 return expr;
2577 /* An expression of the form "A::template B" has been resolved to
2578 DECL. Issue a diagnostic if B is not a template or template
2579 specialization. */
2581 void
2582 check_template_keyword (tree decl)
2584 /* The standard says:
2586 [temp.names]
2588 If a name prefixed by the keyword template is not a member
2589 template, the program is ill-formed.
2591 DR 228 removed the restriction that the template be a member
2592 template.
2594 DR 96, if accepted would add the further restriction that explicit
2595 template arguments must be provided if the template keyword is
2596 used, but, as of 2005-10-16, that DR is still in "drafting". If
2597 this DR is accepted, then the semantic checks here can be
2598 simplified, as the entity named must in fact be a template
2599 specialization, rather than, as at present, a set of overloaded
2600 functions containing at least one template function. */
2601 if (TREE_CODE (decl) != TEMPLATE_DECL
2602 && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2604 if (VAR_P (decl))
2606 if (DECL_USE_TEMPLATE (decl)
2607 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2609 else
2610 permerror (input_location, "%qD is not a template", decl);
2612 else if (!is_overloaded_fn (decl))
2613 permerror (input_location, "%qD is not a template", decl);
2614 else
2616 tree fns;
2617 fns = decl;
2618 if (BASELINK_P (fns))
2619 fns = BASELINK_FUNCTIONS (fns);
2620 while (fns)
2622 tree fn = OVL_CURRENT (fns);
2623 if (TREE_CODE (fn) == TEMPLATE_DECL
2624 || TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2625 break;
2626 if (TREE_CODE (fn) == FUNCTION_DECL
2627 && DECL_USE_TEMPLATE (fn)
2628 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
2629 break;
2630 fns = OVL_NEXT (fns);
2632 if (!fns)
2633 permerror (input_location, "%qD is not a template", decl);
2638 /* This function is called by the parser to process a class member
2639 access expression of the form OBJECT.NAME. NAME is a node used by
2640 the parser to represent a name; it is not yet a DECL. It may,
2641 however, be a BASELINK where the BASELINK_FUNCTIONS is a
2642 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
2643 there is no reason to do the lookup twice, so the parser keeps the
2644 BASELINK. TEMPLATE_P is true iff NAME was explicitly declared to
2645 be a template via the use of the "A::template B" syntax. */
2647 tree
2648 finish_class_member_access_expr (cp_expr object, tree name, bool template_p,
2649 tsubst_flags_t complain)
2651 tree expr;
2652 tree object_type;
2653 tree member;
2654 tree access_path = NULL_TREE;
2655 tree orig_object = object;
2656 tree orig_name = name;
2658 if (object == error_mark_node || name == error_mark_node)
2659 return error_mark_node;
2661 /* If OBJECT is an ObjC class instance, we must obey ObjC access rules. */
2662 if (!objc_is_public (object, name))
2663 return error_mark_node;
2665 object_type = TREE_TYPE (object);
2667 if (processing_template_decl)
2669 if (/* If OBJECT is dependent, so is OBJECT.NAME. */
2670 type_dependent_expression_p (object)
2671 /* If NAME is "f<args>", where either 'f' or 'args' is
2672 dependent, then the expression is dependent. */
2673 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2674 && dependent_template_id_p (TREE_OPERAND (name, 0),
2675 TREE_OPERAND (name, 1)))
2676 /* If NAME is "T::X" where "T" is dependent, then the
2677 expression is dependent. */
2678 || (TREE_CODE (name) == SCOPE_REF
2679 && TYPE_P (TREE_OPERAND (name, 0))
2680 && dependent_type_p (TREE_OPERAND (name, 0))))
2681 return build_min_nt_loc (UNKNOWN_LOCATION, COMPONENT_REF,
2682 object.get_value (), name, NULL_TREE);
2683 object = build_non_dependent_expr (object);
2685 else if (c_dialect_objc ()
2686 && identifier_p (name)
2687 && (expr = objc_maybe_build_component_ref (object, name)))
2688 return expr;
2690 /* [expr.ref]
2692 The type of the first expression shall be "class object" (of a
2693 complete type). */
2694 if (!currently_open_class (object_type)
2695 && !complete_type_or_maybe_complain (object_type, object, complain))
2696 return error_mark_node;
2697 if (!CLASS_TYPE_P (object_type))
2699 if (complain & tf_error)
2701 if (POINTER_TYPE_P (object_type)
2702 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2703 error ("request for member %qD in %qE, which is of pointer "
2704 "type %qT (maybe you meant to use %<->%> ?)",
2705 name, object.get_value (), object_type);
2706 else
2707 error ("request for member %qD in %qE, which is of non-class "
2708 "type %qT", name, object.get_value (), object_type);
2710 return error_mark_node;
2713 if (BASELINK_P (name))
2714 /* A member function that has already been looked up. */
2715 member = name;
2716 else
2718 bool is_template_id = false;
2719 tree template_args = NULL_TREE;
2720 tree scope;
2722 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2724 is_template_id = true;
2725 template_args = TREE_OPERAND (name, 1);
2726 name = TREE_OPERAND (name, 0);
2728 if (TREE_CODE (name) == OVERLOAD)
2729 name = DECL_NAME (get_first_fn (name));
2730 else if (DECL_P (name))
2731 name = DECL_NAME (name);
2734 if (TREE_CODE (name) == SCOPE_REF)
2736 /* A qualified name. The qualifying class or namespace `S'
2737 has already been looked up; it is either a TYPE or a
2738 NAMESPACE_DECL. */
2739 scope = TREE_OPERAND (name, 0);
2740 name = TREE_OPERAND (name, 1);
2742 /* If SCOPE is a namespace, then the qualified name does not
2743 name a member of OBJECT_TYPE. */
2744 if (TREE_CODE (scope) == NAMESPACE_DECL)
2746 if (complain & tf_error)
2747 error ("%<%D::%D%> is not a member of %qT",
2748 scope, name, object_type);
2749 return error_mark_node;
2752 if (TREE_CODE (scope) == ENUMERAL_TYPE)
2754 /* Looking up a member enumerator (c++/56793). */
2755 if (!TYPE_CLASS_SCOPE_P (scope)
2756 || !DERIVED_FROM_P (TYPE_CONTEXT (scope), object_type))
2758 if (complain & tf_error)
2759 error ("%<%D::%D%> is not a member of %qT",
2760 scope, name, object_type);
2761 return error_mark_node;
2763 tree val = lookup_enumerator (scope, name);
2764 if (!val)
2766 if (complain & tf_error)
2767 error ("%qD is not a member of %qD",
2768 name, scope);
2769 return error_mark_node;
2772 if (TREE_SIDE_EFFECTS (object))
2773 val = build2 (COMPOUND_EXPR, TREE_TYPE (val), object, val);
2774 return val;
2777 gcc_assert (CLASS_TYPE_P (scope));
2778 gcc_assert (identifier_p (name) || TREE_CODE (name) == BIT_NOT_EXPR);
2780 if (constructor_name_p (name, scope))
2782 if (complain & tf_error)
2783 error ("cannot call constructor %<%T::%D%> directly",
2784 scope, name);
2785 return error_mark_node;
2788 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
2789 access_path = lookup_base (object_type, scope, ba_check,
2790 NULL, complain);
2791 if (access_path == error_mark_node)
2792 return error_mark_node;
2793 if (!access_path)
2795 if (complain & tf_error)
2796 error ("%qT is not a base of %qT", scope, object_type);
2797 return error_mark_node;
2800 else
2802 scope = NULL_TREE;
2803 access_path = object_type;
2806 if (TREE_CODE (name) == BIT_NOT_EXPR)
2807 member = lookup_destructor (object, scope, name, complain);
2808 else
2810 /* Look up the member. */
2811 member = lookup_member (access_path, name, /*protect=*/1,
2812 /*want_type=*/false, complain);
2813 if (member == NULL_TREE)
2815 if (complain & tf_error)
2817 tree guessed_id = lookup_member_fuzzy (access_path, name,
2818 /*want_type=*/false);
2819 if (guessed_id)
2821 location_t bogus_component_loc = input_location;
2822 rich_location rich_loc (line_table, bogus_component_loc);
2823 source_range bogus_component_range =
2824 get_range_from_loc (line_table, bogus_component_loc);
2825 rich_loc.add_fixit_replace
2826 (bogus_component_range,
2827 IDENTIFIER_POINTER (guessed_id));
2828 error_at_rich_loc
2829 (&rich_loc,
2830 "%q#T has no member named %qE; did you mean %qE?",
2831 TREE_CODE (access_path) == TREE_BINFO
2832 ? TREE_TYPE (access_path) : object_type, name,
2833 guessed_id);
2835 else
2836 error ("%q#T has no member named %qE",
2837 TREE_CODE (access_path) == TREE_BINFO
2838 ? TREE_TYPE (access_path) : object_type, name);
2840 return error_mark_node;
2842 if (member == error_mark_node)
2843 return error_mark_node;
2846 if (is_template_id)
2848 tree templ = member;
2850 if (BASELINK_P (templ))
2851 templ = lookup_template_function (templ, template_args);
2852 else
2854 if (complain & tf_error)
2855 error ("%qD is not a member template function", name);
2856 return error_mark_node;
2861 if (TREE_DEPRECATED (member))
2862 warn_deprecated_use (member, NULL_TREE);
2864 if (template_p)
2865 check_template_keyword (member);
2867 expr = build_class_member_access_expr (object, member, access_path,
2868 /*preserve_reference=*/false,
2869 complain);
2870 if (processing_template_decl && expr != error_mark_node)
2872 if (BASELINK_P (member))
2874 if (TREE_CODE (orig_name) == SCOPE_REF)
2875 BASELINK_QUALIFIED_P (member) = 1;
2876 orig_name = member;
2878 return build_min_non_dep (COMPONENT_REF, expr,
2879 orig_object, orig_name,
2880 NULL_TREE);
2883 return expr;
2886 /* Build a COMPONENT_REF of OBJECT and MEMBER with the appropriate
2887 type. */
2889 tree
2890 build_simple_component_ref (tree object, tree member)
2892 tree type = cp_build_qualified_type (TREE_TYPE (member),
2893 cp_type_quals (TREE_TYPE (object)));
2894 return build3_loc (input_location,
2895 COMPONENT_REF, type,
2896 object, member, NULL_TREE);
2899 /* Return an expression for the MEMBER_NAME field in the internal
2900 representation of PTRMEM, a pointer-to-member function. (Each
2901 pointer-to-member function type gets its own RECORD_TYPE so it is
2902 more convenient to access the fields by name than by FIELD_DECL.)
2903 This routine converts the NAME to a FIELD_DECL and then creates the
2904 node for the complete expression. */
2906 tree
2907 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
2909 tree ptrmem_type;
2910 tree member;
2912 /* This code is a stripped down version of
2913 build_class_member_access_expr. It does not work to use that
2914 routine directly because it expects the object to be of class
2915 type. */
2916 ptrmem_type = TREE_TYPE (ptrmem);
2917 gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
2918 for (member = TYPE_FIELDS (ptrmem_type); member;
2919 member = DECL_CHAIN (member))
2920 if (DECL_NAME (member) == member_name)
2921 break;
2922 return build_simple_component_ref (ptrmem, member);
2925 /* Given an expression PTR for a pointer, return an expression
2926 for the value pointed to.
2927 ERRORSTRING is the name of the operator to appear in error messages.
2929 This function may need to overload OPERATOR_FNNAME.
2930 Must also handle REFERENCE_TYPEs for C++. */
2932 tree
2933 build_x_indirect_ref (location_t loc, tree expr, ref_operator errorstring,
2934 tsubst_flags_t complain)
2936 tree orig_expr = expr;
2937 tree rval;
2938 tree overload = NULL_TREE;
2940 if (processing_template_decl)
2942 /* Retain the type if we know the operand is a pointer. */
2943 if (TREE_TYPE (expr) && POINTER_TYPE_P (TREE_TYPE (expr)))
2944 return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
2945 if (type_dependent_expression_p (expr))
2946 return build_min_nt_loc (loc, INDIRECT_REF, expr);
2947 expr = build_non_dependent_expr (expr);
2950 rval = build_new_op (loc, INDIRECT_REF, LOOKUP_NORMAL, expr,
2951 NULL_TREE, NULL_TREE, &overload, complain);
2952 if (!rval)
2953 rval = cp_build_indirect_ref (expr, errorstring, complain);
2955 if (processing_template_decl && rval != error_mark_node)
2957 if (overload != NULL_TREE)
2958 return (build_min_non_dep_op_overload
2959 (INDIRECT_REF, rval, overload, orig_expr));
2961 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
2963 else
2964 return rval;
2967 /* Helper function called from c-common. */
2968 tree
2969 build_indirect_ref (location_t /*loc*/,
2970 tree ptr, ref_operator errorstring)
2972 return cp_build_indirect_ref (ptr, errorstring, tf_warning_or_error);
2975 tree
2976 cp_build_indirect_ref (tree ptr, ref_operator errorstring,
2977 tsubst_flags_t complain)
2979 tree pointer, type;
2981 if (ptr == current_class_ptr
2982 || (TREE_CODE (ptr) == NOP_EXPR
2983 && TREE_OPERAND (ptr, 0) == current_class_ptr
2984 && (same_type_ignoring_top_level_qualifiers_p
2985 (TREE_TYPE (ptr), TREE_TYPE (current_class_ptr)))))
2986 return current_class_ref;
2988 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2989 ? ptr : decay_conversion (ptr, complain));
2990 if (pointer == error_mark_node)
2991 return error_mark_node;
2993 type = TREE_TYPE (pointer);
2995 if (POINTER_TYPE_P (type))
2997 /* [expr.unary.op]
2999 If the type of the expression is "pointer to T," the type
3000 of the result is "T." */
3001 tree t = TREE_TYPE (type);
3003 if ((CONVERT_EXPR_P (ptr)
3004 || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
3005 && (!CLASS_TYPE_P (t) || !CLASSTYPE_EMPTY_P (t)))
3007 /* If a warning is issued, mark it to avoid duplicates from
3008 the backend. This only needs to be done at
3009 warn_strict_aliasing > 2. */
3010 if (warn_strict_aliasing > 2)
3011 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (ptr, 0)),
3012 type, TREE_OPERAND (ptr, 0)))
3013 TREE_NO_WARNING (ptr) = 1;
3016 if (VOID_TYPE_P (t))
3018 /* A pointer to incomplete type (other than cv void) can be
3019 dereferenced [expr.unary.op]/1 */
3020 if (complain & tf_error)
3021 error ("%qT is not a pointer-to-object type", type);
3022 return error_mark_node;
3024 else if (TREE_CODE (pointer) == ADDR_EXPR
3025 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
3026 /* The POINTER was something like `&x'. We simplify `*&x' to
3027 `x'. */
3028 return TREE_OPERAND (pointer, 0);
3029 else
3031 tree ref = build1 (INDIRECT_REF, t, pointer);
3033 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
3034 so that we get the proper error message if the result is used
3035 to assign to. Also, &* is supposed to be a no-op. */
3036 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
3037 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
3038 TREE_SIDE_EFFECTS (ref)
3039 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
3040 return ref;
3043 else if (!(complain & tf_error))
3044 /* Don't emit any errors; we'll just return ERROR_MARK_NODE later. */
3046 /* `pointer' won't be an error_mark_node if we were given a
3047 pointer to member, so it's cool to check for this here. */
3048 else if (TYPE_PTRMEM_P (type))
3049 switch (errorstring)
3051 case RO_ARRAY_INDEXING:
3052 error ("invalid use of array indexing on pointer to member");
3053 break;
3054 case RO_UNARY_STAR:
3055 error ("invalid use of unary %<*%> on pointer to member");
3056 break;
3057 case RO_IMPLICIT_CONVERSION:
3058 error ("invalid use of implicit conversion on pointer to member");
3059 break;
3060 case RO_ARROW_STAR:
3061 error ("left hand operand of %<->*%> must be a pointer to class, "
3062 "but is a pointer to member of type %qT", type);
3063 break;
3064 default:
3065 gcc_unreachable ();
3067 else if (pointer != error_mark_node)
3068 invalid_indirection_error (input_location, type, errorstring);
3070 return error_mark_node;
3073 /* This handles expressions of the form "a[i]", which denotes
3074 an array reference.
3076 This is logically equivalent in C to *(a+i), but we may do it differently.
3077 If A is a variable or a member, we generate a primitive ARRAY_REF.
3078 This avoids forcing the array out of registers, and can work on
3079 arrays that are not lvalues (for example, members of structures returned
3080 by functions).
3082 If INDEX is of some user-defined type, it must be converted to
3083 integer type. Otherwise, to make a compatible PLUS_EXPR, it
3084 will inherit the type of the array, which will be some pointer type.
3086 LOC is the location to use in building the array reference. */
3088 tree
3089 cp_build_array_ref (location_t loc, tree array, tree idx,
3090 tsubst_flags_t complain)
3092 tree ret;
3094 if (idx == 0)
3096 if (complain & tf_error)
3097 error_at (loc, "subscript missing in array reference");
3098 return error_mark_node;
3101 /* If an array's index is an array notation, then its rank cannot be
3102 greater than one. */
3103 if (flag_cilkplus && contains_array_notation_expr (idx))
3105 size_t rank = 0;
3107 /* If find_rank returns false, then it should have reported an error,
3108 thus it is unnecessary for repetition. */
3109 if (!find_rank (loc, idx, idx, true, &rank))
3110 return error_mark_node;
3111 if (rank > 1)
3113 error_at (loc, "rank of the array%'s index is greater than 1");
3114 return error_mark_node;
3117 if (TREE_TYPE (array) == error_mark_node
3118 || TREE_TYPE (idx) == error_mark_node)
3119 return error_mark_node;
3121 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
3122 inside it. */
3123 switch (TREE_CODE (array))
3125 case COMPOUND_EXPR:
3127 tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3128 complain);
3129 ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
3130 TREE_OPERAND (array, 0), value);
3131 SET_EXPR_LOCATION (ret, loc);
3132 return ret;
3135 case COND_EXPR:
3136 ret = build_conditional_expr
3137 (loc, TREE_OPERAND (array, 0),
3138 cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3139 complain),
3140 cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
3141 complain),
3142 complain);
3143 protected_set_expr_location (ret, loc);
3144 return ret;
3146 default:
3147 break;
3150 bool non_lvalue
3151 = convert_vector_to_pointer_for_subscript (loc, &array, idx);
3153 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
3155 tree rval, type;
3157 warn_array_subscript_with_type_char (loc, idx);
3159 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
3161 if (complain & tf_error)
3162 error_at (loc, "array subscript is not an integer");
3163 return error_mark_node;
3166 /* Apply integral promotions *after* noticing character types.
3167 (It is unclear why we do these promotions -- the standard
3168 does not say that we should. In fact, the natural thing would
3169 seem to be to convert IDX to ptrdiff_t; we're performing
3170 pointer arithmetic.) */
3171 idx = cp_perform_integral_promotions (idx, complain);
3173 /* An array that is indexed by a non-constant
3174 cannot be stored in a register; we must be able to do
3175 address arithmetic on its address.
3176 Likewise an array of elements of variable size. */
3177 if (TREE_CODE (idx) != INTEGER_CST
3178 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
3179 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
3180 != INTEGER_CST)))
3182 if (!cxx_mark_addressable (array))
3183 return error_mark_node;
3186 /* An array that is indexed by a constant value which is not within
3187 the array bounds cannot be stored in a register either; because we
3188 would get a crash in store_bit_field/extract_bit_field when trying
3189 to access a non-existent part of the register. */
3190 if (TREE_CODE (idx) == INTEGER_CST
3191 && TYPE_DOMAIN (TREE_TYPE (array))
3192 && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
3194 if (!cxx_mark_addressable (array))
3195 return error_mark_node;
3198 /* Note in C++ it is valid to subscript a `register' array, since
3199 it is valid to take the address of something with that
3200 storage specification. */
3201 if (extra_warnings)
3203 tree foo = array;
3204 while (TREE_CODE (foo) == COMPONENT_REF)
3205 foo = TREE_OPERAND (foo, 0);
3206 if (VAR_P (foo) && DECL_REGISTER (foo)
3207 && (complain & tf_warning))
3208 warning_at (loc, OPT_Wextra,
3209 "subscripting array declared %<register%>");
3212 type = TREE_TYPE (TREE_TYPE (array));
3213 rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
3214 /* Array ref is const/volatile if the array elements are
3215 or if the array is.. */
3216 TREE_READONLY (rval)
3217 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
3218 TREE_SIDE_EFFECTS (rval)
3219 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
3220 TREE_THIS_VOLATILE (rval)
3221 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
3222 ret = require_complete_type_sfinae (rval, complain);
3223 protected_set_expr_location (ret, loc);
3224 if (non_lvalue)
3225 ret = non_lvalue_loc (loc, ret);
3226 return ret;
3230 tree ar = cp_default_conversion (array, complain);
3231 tree ind = cp_default_conversion (idx, complain);
3233 /* Put the integer in IND to simplify error checking. */
3234 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
3235 std::swap (ar, ind);
3237 if (ar == error_mark_node || ind == error_mark_node)
3238 return error_mark_node;
3240 if (!TYPE_PTR_P (TREE_TYPE (ar)))
3242 if (complain & tf_error)
3243 error_at (loc, "subscripted value is neither array nor pointer");
3244 return error_mark_node;
3246 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
3248 if (complain & tf_error)
3249 error_at (loc, "array subscript is not an integer");
3250 return error_mark_node;
3253 warn_array_subscript_with_type_char (loc, idx);
3255 ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
3256 PLUS_EXPR, ar, ind,
3257 complain),
3258 RO_ARRAY_INDEXING,
3259 complain);
3260 protected_set_expr_location (ret, loc);
3261 if (non_lvalue)
3262 ret = non_lvalue_loc (loc, ret);
3263 return ret;
3267 /* Entry point for Obj-C++. */
3269 tree
3270 build_array_ref (location_t loc, tree array, tree idx)
3272 return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
3275 /* Resolve a pointer to member function. INSTANCE is the object
3276 instance to use, if the member points to a virtual member.
3278 This used to avoid checking for virtual functions if basetype
3279 has no virtual functions, according to an earlier ANSI draft.
3280 With the final ISO C++ rules, such an optimization is
3281 incorrect: A pointer to a derived member can be static_cast
3282 to pointer-to-base-member, as long as the dynamic object
3283 later has the right member. So now we only do this optimization
3284 when we know the dynamic type of the object. */
3286 tree
3287 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function,
3288 tsubst_flags_t complain)
3290 if (TREE_CODE (function) == OFFSET_REF)
3291 function = TREE_OPERAND (function, 1);
3293 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3295 tree idx, delta, e1, e2, e3, vtbl;
3296 bool nonvirtual;
3297 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3298 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3300 tree instance_ptr = *instance_ptrptr;
3301 tree instance_save_expr = 0;
3302 if (instance_ptr == error_mark_node)
3304 if (TREE_CODE (function) == PTRMEM_CST)
3306 /* Extracting the function address from a pmf is only
3307 allowed with -Wno-pmf-conversions. It only works for
3308 pmf constants. */
3309 e1 = build_addr_func (PTRMEM_CST_MEMBER (function), complain);
3310 e1 = convert (fntype, e1);
3311 return e1;
3313 else
3315 if (complain & tf_error)
3316 error ("object missing in use of %qE", function);
3317 return error_mark_node;
3321 /* True if we know that the dynamic type of the object doesn't have
3322 virtual functions, so we can assume the PFN field is a pointer. */
3323 nonvirtual = (COMPLETE_TYPE_P (basetype)
3324 && !TYPE_POLYMORPHIC_P (basetype)
3325 && resolves_to_fixed_type_p (instance_ptr, 0));
3327 /* If we don't really have an object (i.e. in an ill-formed
3328 conversion from PMF to pointer), we can't resolve virtual
3329 functions anyway. */
3330 if (!nonvirtual && is_dummy_object (instance_ptr))
3331 nonvirtual = true;
3333 if (TREE_SIDE_EFFECTS (instance_ptr))
3334 instance_ptr = instance_save_expr = save_expr (instance_ptr);
3336 if (TREE_SIDE_EFFECTS (function))
3337 function = save_expr (function);
3339 /* Start by extracting all the information from the PMF itself. */
3340 e3 = pfn_from_ptrmemfunc (function);
3341 delta = delta_from_ptrmemfunc (function);
3342 idx = build1 (NOP_EXPR, vtable_index_type, e3);
3343 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3345 int flag_sanitize_save;
3346 case ptrmemfunc_vbit_in_pfn:
3347 e1 = cp_build_binary_op (input_location,
3348 BIT_AND_EXPR, idx, integer_one_node,
3349 complain);
3350 idx = cp_build_binary_op (input_location,
3351 MINUS_EXPR, idx, integer_one_node,
3352 complain);
3353 if (idx == error_mark_node)
3354 return error_mark_node;
3355 break;
3357 case ptrmemfunc_vbit_in_delta:
3358 e1 = cp_build_binary_op (input_location,
3359 BIT_AND_EXPR, delta, integer_one_node,
3360 complain);
3361 /* Don't instrument the RSHIFT_EXPR we're about to create because
3362 we're going to use DELTA number of times, and that wouldn't play
3363 well with SAVE_EXPRs therein. */
3364 flag_sanitize_save = flag_sanitize;
3365 flag_sanitize = 0;
3366 delta = cp_build_binary_op (input_location,
3367 RSHIFT_EXPR, delta, integer_one_node,
3368 complain);
3369 flag_sanitize = flag_sanitize_save;
3370 if (delta == error_mark_node)
3371 return error_mark_node;
3372 break;
3374 default:
3375 gcc_unreachable ();
3378 if (e1 == error_mark_node)
3379 return error_mark_node;
3381 /* Convert down to the right base before using the instance. A
3382 special case is that in a pointer to member of class C, C may
3383 be incomplete. In that case, the function will of course be
3384 a member of C, and no conversion is required. In fact,
3385 lookup_base will fail in that case, because incomplete
3386 classes do not have BINFOs. */
3387 if (!same_type_ignoring_top_level_qualifiers_p
3388 (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3390 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3391 basetype, ba_check, NULL, complain);
3392 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3393 1, complain);
3394 if (instance_ptr == error_mark_node)
3395 return error_mark_node;
3397 /* ...and then the delta in the PMF. */
3398 instance_ptr = fold_build_pointer_plus (instance_ptr, delta);
3400 /* Hand back the adjusted 'this' argument to our caller. */
3401 *instance_ptrptr = instance_ptr;
3403 if (nonvirtual)
3404 /* Now just return the pointer. */
3405 return e3;
3407 /* Next extract the vtable pointer from the object. */
3408 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3409 instance_ptr);
3410 vtbl = cp_build_indirect_ref (vtbl, RO_NULL, complain);
3411 if (vtbl == error_mark_node)
3412 return error_mark_node;
3414 /* Finally, extract the function pointer from the vtable. */
3415 e2 = fold_build_pointer_plus_loc (input_location, vtbl, idx);
3416 e2 = cp_build_indirect_ref (e2, RO_NULL, complain);
3417 if (e2 == error_mark_node)
3418 return error_mark_node;
3419 TREE_CONSTANT (e2) = 1;
3421 /* When using function descriptors, the address of the
3422 vtable entry is treated as a function pointer. */
3423 if (TARGET_VTABLE_USES_DESCRIPTORS)
3424 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3425 cp_build_addr_expr (e2, complain));
3427 e2 = fold_convert (TREE_TYPE (e3), e2);
3428 e1 = build_conditional_expr (input_location, e1, e2, e3, complain);
3429 if (e1 == error_mark_node)
3430 return error_mark_node;
3432 /* Make sure this doesn't get evaluated first inside one of the
3433 branches of the COND_EXPR. */
3434 if (instance_save_expr)
3435 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3436 instance_save_expr, e1);
3438 function = e1;
3440 return function;
3443 /* Used by the C-common bits. */
3444 tree
3445 build_function_call (location_t /*loc*/,
3446 tree function, tree params)
3448 return cp_build_function_call (function, params, tf_warning_or_error);
3451 /* Used by the C-common bits. */
3452 tree
3453 build_function_call_vec (location_t /*loc*/, vec<location_t> /*arg_loc*/,
3454 tree function, vec<tree, va_gc> *params,
3455 vec<tree, va_gc> * /*origtypes*/)
3457 vec<tree, va_gc> *orig_params = params;
3458 tree ret = cp_build_function_call_vec (function, &params,
3459 tf_warning_or_error);
3461 /* cp_build_function_call_vec can reallocate PARAMS by adding
3462 default arguments. That should never happen here. Verify
3463 that. */
3464 gcc_assert (params == orig_params);
3466 return ret;
3469 /* Build a function call using a tree list of arguments. */
3471 static tree
3472 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3474 vec<tree, va_gc> *vec;
3475 tree ret;
3477 vec = make_tree_vector ();
3478 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3479 vec_safe_push (vec, TREE_VALUE (params));
3480 ret = cp_build_function_call_vec (function, &vec, complain);
3481 release_tree_vector (vec);
3482 return ret;
3485 /* Build a function call using varargs. */
3487 tree
3488 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3490 vec<tree, va_gc> *vec;
3491 va_list args;
3492 tree ret, t;
3494 vec = make_tree_vector ();
3495 va_start (args, complain);
3496 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3497 vec_safe_push (vec, t);
3498 va_end (args);
3499 ret = cp_build_function_call_vec (function, &vec, complain);
3500 release_tree_vector (vec);
3501 return ret;
3504 /* Build a function call using a vector of arguments. PARAMS may be
3505 NULL if there are no parameters. This changes the contents of
3506 PARAMS. */
3508 tree
3509 cp_build_function_call_vec (tree function, vec<tree, va_gc> **params,
3510 tsubst_flags_t complain)
3512 tree fntype, fndecl;
3513 int is_method;
3514 tree original = function;
3515 int nargs;
3516 tree *argarray;
3517 tree parm_types;
3518 vec<tree, va_gc> *allocated = NULL;
3519 tree ret;
3521 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3522 expressions, like those used for ObjC messenger dispatches. */
3523 if (params != NULL && !vec_safe_is_empty (*params))
3524 function = objc_rewrite_function_call (function, (**params)[0]);
3526 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3527 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3528 if (TREE_CODE (function) == NOP_EXPR
3529 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3530 function = TREE_OPERAND (function, 0);
3532 if (TREE_CODE (function) == FUNCTION_DECL)
3534 /* If the function is a non-template member function
3535 or a non-template friend, then we need to check the
3536 constraints.
3538 Note that if overload resolution failed with a single
3539 candidate this function will be used to explicitly diagnose
3540 the failure for the single call expression. The check is
3541 technically redundant since we also would have failed in
3542 add_function_candidate. */
3543 if (flag_concepts
3544 && (complain & tf_error)
3545 && !constraints_satisfied_p (function))
3547 error ("cannot call function %qD", function);
3548 location_t loc = DECL_SOURCE_LOCATION (function);
3549 diagnose_constraints (loc, function, NULL_TREE);
3550 return error_mark_node;
3553 if (!mark_used (function, complain) && !(complain & tf_error))
3554 return error_mark_node;
3555 fndecl = function;
3557 /* Convert anything with function type to a pointer-to-function. */
3558 if (DECL_MAIN_P (function))
3560 if (complain & tf_error)
3561 pedwarn (input_location, OPT_Wpedantic,
3562 "ISO C++ forbids calling %<::main%> from within program");
3563 else
3564 return error_mark_node;
3566 function = build_addr_func (function, complain);
3568 else
3570 fndecl = NULL_TREE;
3572 function = build_addr_func (function, complain);
3575 if (function == error_mark_node)
3576 return error_mark_node;
3578 fntype = TREE_TYPE (function);
3580 if (TYPE_PTRMEMFUNC_P (fntype))
3582 if (complain & tf_error)
3583 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3584 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3585 original, original);
3586 return error_mark_node;
3589 is_method = (TYPE_PTR_P (fntype)
3590 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3592 if (!(TYPE_PTRFN_P (fntype)
3593 || is_method
3594 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3596 if (complain & tf_error)
3598 if (!flag_diagnostics_show_caret)
3599 error_at (input_location,
3600 "%qE cannot be used as a function", original);
3601 else if (DECL_P (original))
3602 error_at (input_location,
3603 "%qD cannot be used as a function", original);
3604 else
3605 error_at (input_location,
3606 "expression cannot be used as a function");
3609 return error_mark_node;
3612 /* fntype now gets the type of function pointed to. */
3613 fntype = TREE_TYPE (fntype);
3614 parm_types = TYPE_ARG_TYPES (fntype);
3616 if (params == NULL)
3618 allocated = make_tree_vector ();
3619 params = &allocated;
3622 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3623 complain);
3624 if (nargs < 0)
3625 return error_mark_node;
3627 argarray = (*params)->address ();
3629 /* Check for errors in format strings and inappropriately
3630 null parameters. */
3631 check_function_arguments (input_location, fntype, nargs, argarray);
3633 ret = build_cxx_call (function, nargs, argarray, complain);
3635 if (allocated != NULL)
3636 release_tree_vector (allocated);
3638 return ret;
3641 /* Subroutine of convert_arguments.
3642 Print an error message about a wrong number of arguments. */
3644 static void
3645 error_args_num (location_t loc, tree fndecl, bool too_many_p)
3647 if (fndecl)
3649 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3651 if (DECL_NAME (fndecl) == NULL_TREE
3652 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3653 error_at (loc,
3654 too_many_p
3655 ? G_("too many arguments to constructor %q#D")
3656 : G_("too few arguments to constructor %q#D"),
3657 fndecl);
3658 else
3659 error_at (loc,
3660 too_many_p
3661 ? G_("too many arguments to member function %q#D")
3662 : G_("too few arguments to member function %q#D"),
3663 fndecl);
3665 else
3666 error_at (loc,
3667 too_many_p
3668 ? G_("too many arguments to function %q#D")
3669 : G_("too few arguments to function %q#D"),
3670 fndecl);
3671 if (!DECL_IS_BUILTIN (fndecl))
3672 inform (DECL_SOURCE_LOCATION (fndecl), "declared here");
3674 else
3676 if (c_dialect_objc () && objc_message_selector ())
3677 error_at (loc,
3678 too_many_p
3679 ? G_("too many arguments to method %q#D")
3680 : G_("too few arguments to method %q#D"),
3681 objc_message_selector ());
3682 else
3683 error_at (loc, too_many_p ? G_("too many arguments to function")
3684 : G_("too few arguments to function"));
3688 /* Convert the actual parameter expressions in the list VALUES to the
3689 types in the list TYPELIST. The converted expressions are stored
3690 back in the VALUES vector.
3691 If parmdecls is exhausted, or when an element has NULL as its type,
3692 perform the default conversions.
3694 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3696 This is also where warnings about wrong number of args are generated.
3698 Returns the actual number of arguments processed (which might be less
3699 than the length of the vector), or -1 on error.
3701 In C++, unspecified trailing parameters can be filled in with their
3702 default arguments, if such were specified. Do so here. */
3704 static int
3705 convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
3706 int flags, tsubst_flags_t complain)
3708 tree typetail;
3709 unsigned int i;
3711 /* Argument passing is always copy-initialization. */
3712 flags |= LOOKUP_ONLYCONVERTING;
3714 for (i = 0, typetail = typelist;
3715 i < vec_safe_length (*values);
3716 i++)
3718 tree type = typetail ? TREE_VALUE (typetail) : 0;
3719 tree val = (**values)[i];
3721 if (val == error_mark_node || type == error_mark_node)
3722 return -1;
3724 if (type == void_type_node)
3726 if (complain & tf_error)
3728 error_args_num (input_location, fndecl, /*too_many_p=*/true);
3729 return i;
3731 else
3732 return -1;
3735 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3736 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3737 if (TREE_CODE (val) == NOP_EXPR
3738 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3739 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3740 val = TREE_OPERAND (val, 0);
3742 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3744 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3745 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3746 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3747 val = decay_conversion (val, complain);
3750 if (val == error_mark_node)
3751 return -1;
3753 if (type != 0)
3755 /* Formal parm type is specified by a function prototype. */
3756 tree parmval;
3758 if (!COMPLETE_TYPE_P (complete_type (type)))
3760 if (complain & tf_error)
3762 if (fndecl)
3763 error ("parameter %P of %qD has incomplete type %qT",
3764 i, fndecl, type);
3765 else
3766 error ("parameter %P has incomplete type %qT", i, type);
3768 parmval = error_mark_node;
3770 else
3772 parmval = convert_for_initialization
3773 (NULL_TREE, type, val, flags,
3774 ICR_ARGPASS, fndecl, i, complain);
3775 parmval = convert_for_arg_passing (type, parmval, complain);
3778 if (parmval == error_mark_node)
3779 return -1;
3781 (**values)[i] = parmval;
3783 else
3785 if (fndecl && magic_varargs_p (fndecl))
3786 /* Don't do ellipsis conversion for __built_in_constant_p
3787 as this will result in spurious errors for non-trivial
3788 types. */
3789 val = require_complete_type_sfinae (val, complain);
3790 else
3791 val = convert_arg_to_ellipsis (val, complain);
3793 (**values)[i] = val;
3796 if (typetail)
3797 typetail = TREE_CHAIN (typetail);
3800 if (typetail != 0 && typetail != void_list_node)
3802 /* See if there are default arguments that can be used. Because
3803 we hold default arguments in the FUNCTION_TYPE (which is so
3804 wrong), we can see default parameters here from deduced
3805 contexts (and via typeof) for indirect function calls.
3806 Fortunately we know whether we have a function decl to
3807 provide default arguments in a language conformant
3808 manner. */
3809 if (fndecl && TREE_PURPOSE (typetail)
3810 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3812 for (; typetail != void_list_node; ++i)
3814 tree parmval
3815 = convert_default_arg (TREE_VALUE (typetail),
3816 TREE_PURPOSE (typetail),
3817 fndecl, i, complain);
3819 if (parmval == error_mark_node)
3820 return -1;
3822 vec_safe_push (*values, parmval);
3823 typetail = TREE_CHAIN (typetail);
3824 /* ends with `...'. */
3825 if (typetail == NULL_TREE)
3826 break;
3829 else
3831 if (complain & tf_error)
3832 error_args_num (input_location, fndecl, /*too_many_p=*/false);
3833 return -1;
3837 return (int) i;
3840 /* Build a binary-operation expression, after performing default
3841 conversions on the operands. CODE is the kind of expression to
3842 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
3843 are the tree codes which correspond to ARG1 and ARG2 when issuing
3844 warnings about possibly misplaced parentheses. They may differ
3845 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3846 folding (e.g., if the parser sees "a | 1 + 1", it may call this
3847 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3848 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3849 ARG2_CODE as ERROR_MARK. */
3851 tree
3852 build_x_binary_op (location_t loc, enum tree_code code, tree arg1,
3853 enum tree_code arg1_code, tree arg2,
3854 enum tree_code arg2_code, tree *overload_p,
3855 tsubst_flags_t complain)
3857 tree orig_arg1;
3858 tree orig_arg2;
3859 tree expr;
3860 tree overload = NULL_TREE;
3862 orig_arg1 = arg1;
3863 orig_arg2 = arg2;
3865 if (processing_template_decl)
3867 if (type_dependent_expression_p (arg1)
3868 || type_dependent_expression_p (arg2))
3869 return build_min_nt_loc (loc, code, arg1, arg2);
3870 arg1 = build_non_dependent_expr (arg1);
3871 arg2 = build_non_dependent_expr (arg2);
3874 if (code == DOTSTAR_EXPR)
3875 expr = build_m_component_ref (arg1, arg2, complain);
3876 else
3877 expr = build_new_op (loc, code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3878 &overload, complain);
3880 if (overload_p != NULL)
3881 *overload_p = overload;
3883 /* Check for cases such as x+y<<z which users are likely to
3884 misinterpret. But don't warn about obj << x + y, since that is a
3885 common idiom for I/O. */
3886 if (warn_parentheses
3887 && (complain & tf_warning)
3888 && !processing_template_decl
3889 && !error_operand_p (arg1)
3890 && !error_operand_p (arg2)
3891 && (code != LSHIFT_EXPR
3892 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3893 warn_about_parentheses (loc, code, arg1_code, orig_arg1,
3894 arg2_code, orig_arg2);
3896 if (processing_template_decl && expr != error_mark_node)
3898 if (overload != NULL_TREE)
3899 return (build_min_non_dep_op_overload
3900 (code, expr, overload, orig_arg1, orig_arg2));
3902 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3905 return expr;
3908 /* Build and return an ARRAY_REF expression. */
3910 tree
3911 build_x_array_ref (location_t loc, tree arg1, tree arg2,
3912 tsubst_flags_t complain)
3914 tree orig_arg1 = arg1;
3915 tree orig_arg2 = arg2;
3916 tree expr;
3917 tree overload = NULL_TREE;
3919 if (processing_template_decl)
3921 if (type_dependent_expression_p (arg1)
3922 || type_dependent_expression_p (arg2))
3923 return build_min_nt_loc (loc, ARRAY_REF, arg1, arg2,
3924 NULL_TREE, NULL_TREE);
3925 arg1 = build_non_dependent_expr (arg1);
3926 arg2 = build_non_dependent_expr (arg2);
3929 expr = build_new_op (loc, ARRAY_REF, LOOKUP_NORMAL, arg1, arg2,
3930 NULL_TREE, &overload, complain);
3932 if (processing_template_decl && expr != error_mark_node)
3934 if (overload != NULL_TREE)
3935 return (build_min_non_dep_op_overload
3936 (ARRAY_REF, expr, overload, orig_arg1, orig_arg2));
3938 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3939 NULL_TREE, NULL_TREE);
3941 return expr;
3944 /* Return whether OP is an expression of enum type cast to integer
3945 type. In C++ even unsigned enum types are cast to signed integer
3946 types. We do not want to issue warnings about comparisons between
3947 signed and unsigned types when one of the types is an enum type.
3948 Those warnings are always false positives in practice. */
3950 static bool
3951 enum_cast_to_int (tree op)
3953 if (CONVERT_EXPR_P (op)
3954 && TREE_TYPE (op) == integer_type_node
3955 && TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == ENUMERAL_TYPE
3956 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 0))))
3957 return true;
3959 /* The cast may have been pushed into a COND_EXPR. */
3960 if (TREE_CODE (op) == COND_EXPR)
3961 return (enum_cast_to_int (TREE_OPERAND (op, 1))
3962 || enum_cast_to_int (TREE_OPERAND (op, 2)));
3964 return false;
3967 /* For the c-common bits. */
3968 tree
3969 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3970 int /*convert_p*/)
3972 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3975 /* Build a vector comparison of ARG0 and ARG1 using CODE opcode
3976 into a value of TYPE type. Comparison is done via VEC_COND_EXPR. */
3978 static tree
3979 build_vec_cmp (tree_code code, tree type,
3980 tree arg0, tree arg1)
3982 tree zero_vec = build_zero_cst (type);
3983 tree minus_one_vec = build_minus_one_cst (type);
3984 tree cmp_type = build_same_sized_truth_vector_type(type);
3985 tree cmp = build2 (code, cmp_type, arg0, arg1);
3986 return build3 (VEC_COND_EXPR, type, cmp, minus_one_vec, zero_vec);
3989 /* Possibly warn about an address never being NULL. */
3991 static void
3992 warn_for_null_address (location_t location, tree op, tsubst_flags_t complain)
3994 if (!warn_address
3995 || (complain & tf_warning) == 0
3996 || c_inhibit_evaluation_warnings != 0
3997 || TREE_NO_WARNING (op))
3998 return;
4000 tree cop = fold_non_dependent_expr (op);
4002 if (TREE_CODE (cop) == ADDR_EXPR
4003 && decl_with_nonnull_addr_p (TREE_OPERAND (cop, 0))
4004 && !TREE_NO_WARNING (cop))
4005 warning_at (location, OPT_Waddress, "the address of %qD will never "
4006 "be NULL", TREE_OPERAND (cop, 0));
4008 if (CONVERT_EXPR_P (op)
4009 && TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == REFERENCE_TYPE)
4011 tree inner_op = op;
4012 STRIP_NOPS (inner_op);
4014 if (DECL_P (inner_op))
4015 warning_at (location, OPT_Waddress,
4016 "the compiler can assume that the address of "
4017 "%qD will never be NULL", inner_op);
4021 /* Build a binary-operation expression without default conversions.
4022 CODE is the kind of expression to build.
4023 LOCATION is the location_t of the operator in the source code.
4024 This function differs from `build' in several ways:
4025 the data type of the result is computed and recorded in it,
4026 warnings are generated if arg data types are invalid,
4027 special handling for addition and subtraction of pointers is known,
4028 and some optimization is done (operations on narrow ints
4029 are done in the narrower type when that gives the same result).
4030 Constant folding is also done before the result is returned.
4032 Note that the operands will never have enumeral types
4033 because either they have just had the default conversions performed
4034 or they have both just been converted to some other type in which
4035 the arithmetic is to be done.
4037 C++: must do special pointer arithmetic when implementing
4038 multiple inheritance, and deal with pointer to member functions. */
4040 tree
4041 cp_build_binary_op (location_t location,
4042 enum tree_code code, tree orig_op0, tree orig_op1,
4043 tsubst_flags_t complain)
4045 tree op0, op1;
4046 enum tree_code code0, code1;
4047 tree type0, type1;
4048 const char *invalid_op_diag;
4050 /* Expression code to give to the expression when it is built.
4051 Normally this is CODE, which is what the caller asked for,
4052 but in some special cases we change it. */
4053 enum tree_code resultcode = code;
4055 /* Data type in which the computation is to be performed.
4056 In the simplest cases this is the common type of the arguments. */
4057 tree result_type = NULL;
4059 /* Nonzero means operands have already been type-converted
4060 in whatever way is necessary.
4061 Zero means they need to be converted to RESULT_TYPE. */
4062 int converted = 0;
4064 /* Nonzero means create the expression with this type, rather than
4065 RESULT_TYPE. */
4066 tree build_type = 0;
4068 /* Nonzero means after finally constructing the expression
4069 convert it to this type. */
4070 tree final_type = 0;
4072 tree result, result_ovl;
4073 tree orig_type = NULL;
4075 /* Nonzero if this is an operation like MIN or MAX which can
4076 safely be computed in short if both args are promoted shorts.
4077 Also implies COMMON.
4078 -1 indicates a bitwise operation; this makes a difference
4079 in the exact conditions for when it is safe to do the operation
4080 in a narrower mode. */
4081 int shorten = 0;
4083 /* Nonzero if this is a comparison operation;
4084 if both args are promoted shorts, compare the original shorts.
4085 Also implies COMMON. */
4086 int short_compare = 0;
4088 /* Nonzero means set RESULT_TYPE to the common type of the args. */
4089 int common = 0;
4091 /* True if both operands have arithmetic type. */
4092 bool arithmetic_types_p;
4094 /* Apply default conversions. */
4095 op0 = orig_op0;
4096 op1 = orig_op1;
4098 /* Remember whether we're doing / or %. */
4099 bool doing_div_or_mod = false;
4101 /* Remember whether we're doing << or >>. */
4102 bool doing_shift = false;
4104 /* Tree holding instrumentation expression. */
4105 tree instrument_expr = NULL;
4107 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
4108 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
4109 || code == TRUTH_XOR_EXPR)
4111 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
4112 op0 = decay_conversion (op0, complain);
4113 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
4114 op1 = decay_conversion (op1, complain);
4116 else
4118 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
4119 op0 = cp_default_conversion (op0, complain);
4120 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
4121 op1 = cp_default_conversion (op1, complain);
4124 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
4125 STRIP_TYPE_NOPS (op0);
4126 STRIP_TYPE_NOPS (op1);
4128 /* DTRT if one side is an overloaded function, but complain about it. */
4129 if (type_unknown_p (op0))
4131 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
4132 if (t != error_mark_node)
4134 if (complain & tf_error)
4135 permerror (input_location, "assuming cast to type %qT from overloaded function",
4136 TREE_TYPE (t));
4137 op0 = t;
4140 if (type_unknown_p (op1))
4142 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
4143 if (t != error_mark_node)
4145 if (complain & tf_error)
4146 permerror (input_location, "assuming cast to type %qT from overloaded function",
4147 TREE_TYPE (t));
4148 op1 = t;
4152 type0 = TREE_TYPE (op0);
4153 type1 = TREE_TYPE (op1);
4155 /* The expression codes of the data types of the arguments tell us
4156 whether the arguments are integers, floating, pointers, etc. */
4157 code0 = TREE_CODE (type0);
4158 code1 = TREE_CODE (type1);
4160 /* If an error was already reported for one of the arguments,
4161 avoid reporting another error. */
4162 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
4163 return error_mark_node;
4165 if ((invalid_op_diag
4166 = targetm.invalid_binary_op (code, type0, type1)))
4168 if (complain & tf_error)
4169 error (invalid_op_diag);
4170 return error_mark_node;
4173 /* Issue warnings about peculiar, but valid, uses of NULL. */
4174 if ((orig_op0 == null_node || orig_op1 == null_node)
4175 /* It's reasonable to use pointer values as operands of &&
4176 and ||, so NULL is no exception. */
4177 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
4178 && ( /* Both are NULL (or 0) and the operation was not a
4179 comparison or a pointer subtraction. */
4180 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
4181 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
4182 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
4183 || (!null_ptr_cst_p (orig_op0)
4184 && !TYPE_PTR_OR_PTRMEM_P (type0))
4185 || (!null_ptr_cst_p (orig_op1)
4186 && !TYPE_PTR_OR_PTRMEM_P (type1)))
4187 && (complain & tf_warning))
4189 source_location loc =
4190 expansion_point_location_if_in_system_header (input_location);
4192 warning_at (loc, OPT_Wpointer_arith, "NULL used in arithmetic");
4195 /* In case when one of the operands of the binary operation is
4196 a vector and another is a scalar -- convert scalar to vector. */
4197 if ((code0 == VECTOR_TYPE) != (code1 == VECTOR_TYPE))
4199 enum stv_conv convert_flag = scalar_to_vector (location, code, op0, op1,
4200 complain & tf_error);
4202 switch (convert_flag)
4204 case stv_error:
4205 return error_mark_node;
4206 case stv_firstarg:
4208 op0 = convert (TREE_TYPE (type1), op0);
4209 op0 = save_expr (op0);
4210 op0 = build_vector_from_val (type1, op0);
4211 type0 = TREE_TYPE (op0);
4212 code0 = TREE_CODE (type0);
4213 converted = 1;
4214 break;
4216 case stv_secondarg:
4218 op1 = convert (TREE_TYPE (type0), op1);
4219 op1 = save_expr (op1);
4220 op1 = build_vector_from_val (type0, op1);
4221 type1 = TREE_TYPE (op1);
4222 code1 = TREE_CODE (type1);
4223 converted = 1;
4224 break;
4226 default:
4227 break;
4231 switch (code)
4233 case MINUS_EXPR:
4234 /* Subtraction of two similar pointers.
4235 We must subtract them as integers, then divide by object size. */
4236 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
4237 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
4238 TREE_TYPE (type1)))
4239 return pointer_diff (op0, op1, common_pointer_type (type0, type1),
4240 complain);
4241 /* In all other cases except pointer - int, the usual arithmetic
4242 rules apply. */
4243 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
4245 common = 1;
4246 break;
4248 /* The pointer - int case is just like pointer + int; fall
4249 through. */
4250 case PLUS_EXPR:
4251 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
4252 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
4254 tree ptr_operand;
4255 tree int_operand;
4256 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
4257 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
4258 if (processing_template_decl)
4260 result_type = TREE_TYPE (ptr_operand);
4261 break;
4263 return cp_pointer_int_sum (code,
4264 ptr_operand,
4265 int_operand,
4266 complain);
4268 common = 1;
4269 break;
4271 case MULT_EXPR:
4272 common = 1;
4273 break;
4275 case TRUNC_DIV_EXPR:
4276 case CEIL_DIV_EXPR:
4277 case FLOOR_DIV_EXPR:
4278 case ROUND_DIV_EXPR:
4279 case EXACT_DIV_EXPR:
4280 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4281 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
4282 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4283 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
4285 enum tree_code tcode0 = code0, tcode1 = code1;
4286 tree cop1 = fold_non_dependent_expr (op1);
4287 doing_div_or_mod = true;
4288 warn_for_div_by_zero (location, cop1);
4290 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
4291 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
4292 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
4293 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
4295 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
4296 resultcode = RDIV_EXPR;
4297 else
4298 /* When dividing two signed integers, we have to promote to int.
4299 unless we divide by a constant != -1. Note that default
4300 conversion will have been performed on the operands at this
4301 point, so we have to dig out the original type to find out if
4302 it was unsigned. */
4303 shorten = ((TREE_CODE (op0) == NOP_EXPR
4304 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4305 || (TREE_CODE (op1) == INTEGER_CST
4306 && ! integer_all_onesp (op1)));
4308 common = 1;
4310 break;
4312 case BIT_AND_EXPR:
4313 case BIT_IOR_EXPR:
4314 case BIT_XOR_EXPR:
4315 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4316 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4317 && !VECTOR_FLOAT_TYPE_P (type0)
4318 && !VECTOR_FLOAT_TYPE_P (type1)))
4319 shorten = -1;
4320 break;
4322 case TRUNC_MOD_EXPR:
4323 case FLOOR_MOD_EXPR:
4325 tree cop1 = fold_non_dependent_expr (op1);
4326 doing_div_or_mod = true;
4327 warn_for_div_by_zero (location, cop1);
4330 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4331 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4332 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
4333 common = 1;
4334 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4336 /* Although it would be tempting to shorten always here, that loses
4337 on some targets, since the modulo instruction is undefined if the
4338 quotient can't be represented in the computation mode. We shorten
4339 only if unsigned or if dividing by something we know != -1. */
4340 shorten = ((TREE_CODE (op0) == NOP_EXPR
4341 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4342 || (TREE_CODE (op1) == INTEGER_CST
4343 && ! integer_all_onesp (op1)));
4344 common = 1;
4346 break;
4348 case TRUTH_ANDIF_EXPR:
4349 case TRUTH_ORIF_EXPR:
4350 case TRUTH_AND_EXPR:
4351 case TRUTH_OR_EXPR:
4352 if (!VECTOR_TYPE_P (type0) && VECTOR_TYPE_P (type1))
4354 if (!COMPARISON_CLASS_P (op1))
4355 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4356 build_zero_cst (type1), complain);
4357 if (code == TRUTH_ANDIF_EXPR)
4359 tree z = build_zero_cst (TREE_TYPE (op1));
4360 return build_conditional_expr (location, op0, op1, z, complain);
4362 else if (code == TRUTH_ORIF_EXPR)
4364 tree m1 = build_all_ones_cst (TREE_TYPE (op1));
4365 return build_conditional_expr (location, op0, m1, op1, complain);
4367 else
4368 gcc_unreachable ();
4370 if (VECTOR_TYPE_P (type0))
4372 if (!COMPARISON_CLASS_P (op0))
4373 op0 = cp_build_binary_op (EXPR_LOCATION (op0), NE_EXPR, op0,
4374 build_zero_cst (type0), complain);
4375 if (!VECTOR_TYPE_P (type1))
4377 tree m1 = build_all_ones_cst (TREE_TYPE (op0));
4378 tree z = build_zero_cst (TREE_TYPE (op0));
4379 op1 = build_conditional_expr (location, op1, m1, z, complain);
4381 else if (!COMPARISON_CLASS_P (op1))
4382 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4383 build_zero_cst (type1), complain);
4385 if (code == TRUTH_ANDIF_EXPR)
4386 code = BIT_AND_EXPR;
4387 else if (code == TRUTH_ORIF_EXPR)
4388 code = BIT_IOR_EXPR;
4389 else
4390 gcc_unreachable ();
4392 return cp_build_binary_op (location, code, op0, op1, complain);
4395 result_type = boolean_type_node;
4396 break;
4398 /* Shift operations: result has same type as first operand;
4399 always convert second operand to int.
4400 Also set SHORT_SHIFT if shifting rightward. */
4402 case RSHIFT_EXPR:
4403 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4404 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4406 result_type = type0;
4407 converted = 1;
4409 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4410 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4411 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4412 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
4414 result_type = type0;
4415 converted = 1;
4417 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4419 tree const_op1 = fold_non_dependent_expr (op1);
4420 if (TREE_CODE (const_op1) != INTEGER_CST)
4421 const_op1 = op1;
4422 result_type = type0;
4423 doing_shift = true;
4424 if (TREE_CODE (const_op1) == INTEGER_CST)
4426 if (tree_int_cst_lt (const_op1, integer_zero_node))
4428 if ((complain & tf_warning)
4429 && c_inhibit_evaluation_warnings == 0)
4430 warning (OPT_Wshift_count_negative,
4431 "right shift count is negative");
4433 else
4435 if (compare_tree_int (const_op1, TYPE_PRECISION (type0)) >= 0
4436 && (complain & tf_warning)
4437 && c_inhibit_evaluation_warnings == 0)
4438 warning (OPT_Wshift_count_overflow,
4439 "right shift count >= width of type");
4442 /* Avoid converting op1 to result_type later. */
4443 converted = 1;
4445 break;
4447 case LSHIFT_EXPR:
4448 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4449 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4451 result_type = type0;
4452 converted = 1;
4454 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4455 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4456 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4457 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
4459 result_type = type0;
4460 converted = 1;
4462 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4464 tree const_op0 = fold_non_dependent_expr (op0);
4465 if (TREE_CODE (const_op0) != INTEGER_CST)
4466 const_op0 = op0;
4467 tree const_op1 = fold_non_dependent_expr (op1);
4468 if (TREE_CODE (const_op1) != INTEGER_CST)
4469 const_op1 = op1;
4470 result_type = type0;
4471 doing_shift = true;
4472 if (TREE_CODE (const_op0) == INTEGER_CST
4473 && tree_int_cst_sgn (const_op0) < 0
4474 && (complain & tf_warning)
4475 && c_inhibit_evaluation_warnings == 0)
4476 warning (OPT_Wshift_negative_value,
4477 "left shift of negative value");
4478 if (TREE_CODE (const_op1) == INTEGER_CST)
4480 if (tree_int_cst_lt (const_op1, integer_zero_node))
4482 if ((complain & tf_warning)
4483 && c_inhibit_evaluation_warnings == 0)
4484 warning (OPT_Wshift_count_negative,
4485 "left shift count is negative");
4487 else if (compare_tree_int (const_op1,
4488 TYPE_PRECISION (type0)) >= 0)
4490 if ((complain & tf_warning)
4491 && c_inhibit_evaluation_warnings == 0)
4492 warning (OPT_Wshift_count_overflow,
4493 "left shift count >= width of type");
4495 else if (TREE_CODE (const_op0) == INTEGER_CST
4496 && (complain & tf_warning))
4497 maybe_warn_shift_overflow (location, const_op0, const_op1);
4499 /* Avoid converting op1 to result_type later. */
4500 converted = 1;
4502 break;
4504 case RROTATE_EXPR:
4505 case LROTATE_EXPR:
4506 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4508 result_type = type0;
4509 if (TREE_CODE (op1) == INTEGER_CST)
4511 if (tree_int_cst_lt (op1, integer_zero_node))
4513 if (complain & tf_warning)
4514 warning (0, (code == LROTATE_EXPR)
4515 ? G_("left rotate count is negative")
4516 : G_("right rotate count is negative"));
4518 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
4520 if (complain & tf_warning)
4521 warning (0, (code == LROTATE_EXPR)
4522 ? G_("left rotate count >= width of type")
4523 : G_("right rotate count >= width of type"));
4526 /* Convert the shift-count to an integer, regardless of
4527 size of value being shifted. */
4528 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
4529 op1 = cp_convert (integer_type_node, op1, complain);
4531 break;
4533 case EQ_EXPR:
4534 case NE_EXPR:
4535 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4536 goto vector_compare;
4537 if ((complain & tf_warning)
4538 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
4539 warning (OPT_Wfloat_equal,
4540 "comparing floating point with == or != is unsafe");
4541 if ((complain & tf_warning)
4542 && ((TREE_CODE (orig_op0) == STRING_CST
4543 && !integer_zerop (cp_fully_fold (op1)))
4544 || (TREE_CODE (orig_op1) == STRING_CST
4545 && !integer_zerop (cp_fully_fold (op0)))))
4546 warning (OPT_Waddress, "comparison with string literal results "
4547 "in unspecified behavior");
4549 build_type = boolean_type_node;
4550 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4551 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
4552 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4553 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
4554 short_compare = 1;
4555 else if (((code0 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type0))
4556 && null_ptr_cst_p (op1))
4557 /* Handle, eg, (void*)0 (c++/43906), and more. */
4558 || (code0 == POINTER_TYPE
4559 && TYPE_PTR_P (type1) && integer_zerop (op1)))
4561 if (TYPE_PTR_P (type1))
4562 result_type = composite_pointer_type (type0, type1, op0, op1,
4563 CPO_COMPARISON, complain);
4564 else
4565 result_type = type0;
4567 warn_for_null_address (location, op0, complain);
4569 else if (((code1 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type1))
4570 && null_ptr_cst_p (op0))
4571 /* Handle, eg, (void*)0 (c++/43906), and more. */
4572 || (code1 == POINTER_TYPE
4573 && TYPE_PTR_P (type0) && integer_zerop (op0)))
4575 if (TYPE_PTR_P (type0))
4576 result_type = composite_pointer_type (type0, type1, op0, op1,
4577 CPO_COMPARISON, complain);
4578 else
4579 result_type = type1;
4581 warn_for_null_address (location, op1, complain);
4583 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4584 || (TYPE_PTRDATAMEM_P (type0) && TYPE_PTRDATAMEM_P (type1)))
4585 result_type = composite_pointer_type (type0, type1, op0, op1,
4586 CPO_COMPARISON, complain);
4587 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4588 /* One of the operands must be of nullptr_t type. */
4589 result_type = TREE_TYPE (nullptr_node);
4590 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4592 result_type = type0;
4593 if (complain & tf_error)
4594 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4595 else
4596 return error_mark_node;
4598 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4600 result_type = type1;
4601 if (complain & tf_error)
4602 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4603 else
4604 return error_mark_node;
4606 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
4608 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4609 == ptrmemfunc_vbit_in_delta)
4611 tree pfn0, delta0, e1, e2;
4613 if (TREE_SIDE_EFFECTS (op0))
4614 op0 = save_expr (op0);
4616 pfn0 = pfn_from_ptrmemfunc (op0);
4617 delta0 = delta_from_ptrmemfunc (op0);
4618 e1 = cp_build_binary_op (location,
4619 EQ_EXPR,
4620 pfn0,
4621 build_zero_cst (TREE_TYPE (pfn0)),
4622 complain);
4623 e2 = cp_build_binary_op (location,
4624 BIT_AND_EXPR,
4625 delta0,
4626 integer_one_node,
4627 complain);
4629 if (complain & tf_warning)
4630 maybe_warn_zero_as_null_pointer_constant (op1, input_location);
4632 e2 = cp_build_binary_op (location,
4633 EQ_EXPR, e2, integer_zero_node,
4634 complain);
4635 op0 = cp_build_binary_op (location,
4636 TRUTH_ANDIF_EXPR, e1, e2,
4637 complain);
4638 op1 = cp_convert (TREE_TYPE (op0), integer_one_node, complain);
4640 else
4642 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4643 op1 = cp_convert (TREE_TYPE (op0), op1, complain);
4645 result_type = TREE_TYPE (op0);
4647 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
4648 return cp_build_binary_op (location, code, op1, op0, complain);
4649 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4651 tree type;
4652 /* E will be the final comparison. */
4653 tree e;
4654 /* E1 and E2 are for scratch. */
4655 tree e1;
4656 tree e2;
4657 tree pfn0;
4658 tree pfn1;
4659 tree delta0;
4660 tree delta1;
4662 type = composite_pointer_type (type0, type1, op0, op1,
4663 CPO_COMPARISON, complain);
4665 if (!same_type_p (TREE_TYPE (op0), type))
4666 op0 = cp_convert_and_check (type, op0, complain);
4667 if (!same_type_p (TREE_TYPE (op1), type))
4668 op1 = cp_convert_and_check (type, op1, complain);
4670 if (op0 == error_mark_node || op1 == error_mark_node)
4671 return error_mark_node;
4673 if (TREE_SIDE_EFFECTS (op0))
4674 op0 = save_expr (op0);
4675 if (TREE_SIDE_EFFECTS (op1))
4676 op1 = save_expr (op1);
4678 pfn0 = pfn_from_ptrmemfunc (op0);
4679 pfn0 = cp_fully_fold (pfn0);
4680 /* Avoid -Waddress warnings (c++/64877). */
4681 if (TREE_CODE (pfn0) == ADDR_EXPR)
4682 TREE_NO_WARNING (pfn0) = 1;
4683 pfn1 = pfn_from_ptrmemfunc (op1);
4684 pfn1 = cp_fully_fold (pfn1);
4685 delta0 = delta_from_ptrmemfunc (op0);
4686 delta1 = delta_from_ptrmemfunc (op1);
4687 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4688 == ptrmemfunc_vbit_in_delta)
4690 /* We generate:
4692 (op0.pfn == op1.pfn
4693 && ((op0.delta == op1.delta)
4694 || (!op0.pfn && op0.delta & 1 == 0
4695 && op1.delta & 1 == 0))
4697 The reason for the `!op0.pfn' bit is that a NULL
4698 pointer-to-member is any member with a zero PFN and
4699 LSB of the DELTA field is 0. */
4701 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4702 delta0,
4703 integer_one_node,
4704 complain);
4705 e1 = cp_build_binary_op (location,
4706 EQ_EXPR, e1, integer_zero_node,
4707 complain);
4708 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4709 delta1,
4710 integer_one_node,
4711 complain);
4712 e2 = cp_build_binary_op (location,
4713 EQ_EXPR, e2, integer_zero_node,
4714 complain);
4715 e1 = cp_build_binary_op (location,
4716 TRUTH_ANDIF_EXPR, e2, e1,
4717 complain);
4718 e2 = cp_build_binary_op (location, EQ_EXPR,
4719 pfn0,
4720 build_zero_cst (TREE_TYPE (pfn0)),
4721 complain);
4722 e2 = cp_build_binary_op (location,
4723 TRUTH_ANDIF_EXPR, e2, e1, complain);
4724 e1 = cp_build_binary_op (location,
4725 EQ_EXPR, delta0, delta1, complain);
4726 e1 = cp_build_binary_op (location,
4727 TRUTH_ORIF_EXPR, e1, e2, complain);
4729 else
4731 /* We generate:
4733 (op0.pfn == op1.pfn
4734 && (!op0.pfn || op0.delta == op1.delta))
4736 The reason for the `!op0.pfn' bit is that a NULL
4737 pointer-to-member is any member with a zero PFN; the
4738 DELTA field is unspecified. */
4740 e1 = cp_build_binary_op (location,
4741 EQ_EXPR, delta0, delta1, complain);
4742 e2 = cp_build_binary_op (location,
4743 EQ_EXPR,
4744 pfn0,
4745 build_zero_cst (TREE_TYPE (pfn0)),
4746 complain);
4747 e1 = cp_build_binary_op (location,
4748 TRUTH_ORIF_EXPR, e1, e2, complain);
4750 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4751 e = cp_build_binary_op (location,
4752 TRUTH_ANDIF_EXPR, e2, e1, complain);
4753 if (code == EQ_EXPR)
4754 return e;
4755 return cp_build_binary_op (location,
4756 EQ_EXPR, e, integer_zero_node, complain);
4758 else
4760 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4761 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4762 type1));
4763 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4764 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4765 type0));
4768 break;
4770 case MAX_EXPR:
4771 case MIN_EXPR:
4772 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4773 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4774 shorten = 1;
4775 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4776 result_type = composite_pointer_type (type0, type1, op0, op1,
4777 CPO_COMPARISON, complain);
4778 break;
4780 case LE_EXPR:
4781 case GE_EXPR:
4782 case LT_EXPR:
4783 case GT_EXPR:
4784 if (TREE_CODE (orig_op0) == STRING_CST
4785 || TREE_CODE (orig_op1) == STRING_CST)
4787 if (complain & tf_warning)
4788 warning (OPT_Waddress, "comparison with string literal results "
4789 "in unspecified behavior");
4792 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4794 vector_compare:
4795 tree intt;
4796 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
4797 TREE_TYPE (type1))
4798 && !vector_types_compatible_elements_p (type0, type1))
4800 if (complain & tf_error)
4802 error_at (location, "comparing vectors with different "
4803 "element types");
4804 inform (location, "operand types are %qT and %qT",
4805 type0, type1);
4807 return error_mark_node;
4810 if (TYPE_VECTOR_SUBPARTS (type0) != TYPE_VECTOR_SUBPARTS (type1))
4812 if (complain & tf_error)
4814 error_at (location, "comparing vectors with different "
4815 "number of elements");
4816 inform (location, "operand types are %qT and %qT",
4817 type0, type1);
4819 return error_mark_node;
4822 /* It's not precisely specified how the usual arithmetic
4823 conversions apply to the vector types. Here, we use
4824 the unsigned type if one of the operands is signed and
4825 the other one is unsigned. */
4826 if (TYPE_UNSIGNED (type0) != TYPE_UNSIGNED (type1))
4828 if (!TYPE_UNSIGNED (type0))
4829 op0 = build1 (VIEW_CONVERT_EXPR, type1, op0);
4830 else
4831 op1 = build1 (VIEW_CONVERT_EXPR, type0, op1);
4832 warning_at (location, OPT_Wsign_compare, "comparison between "
4833 "types %qT and %qT", type0, type1);
4836 /* Always construct signed integer vector type. */
4837 intt = c_common_type_for_size (GET_MODE_BITSIZE
4838 (TYPE_MODE (TREE_TYPE (type0))), 0);
4839 if (!intt)
4841 if (complain & tf_error)
4842 error_at (location, "could not find an integer type "
4843 "of the same size as %qT", TREE_TYPE (type0));
4844 return error_mark_node;
4846 result_type = build_opaque_vector_type (intt,
4847 TYPE_VECTOR_SUBPARTS (type0));
4848 converted = 1;
4849 return build_vec_cmp (resultcode, result_type, op0, op1);
4851 build_type = boolean_type_node;
4852 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4853 || code0 == ENUMERAL_TYPE)
4854 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4855 || code1 == ENUMERAL_TYPE))
4856 short_compare = 1;
4857 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4858 result_type = composite_pointer_type (type0, type1, op0, op1,
4859 CPO_COMPARISON, complain);
4860 else if (code0 == POINTER_TYPE && null_ptr_cst_p (op1))
4862 result_type = type0;
4863 if (extra_warnings && (complain & tf_warning))
4864 warning (OPT_Wextra,
4865 "ordered comparison of pointer with integer zero");
4867 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op0))
4869 result_type = type1;
4870 if (extra_warnings && (complain & tf_warning))
4871 warning (OPT_Wextra,
4872 "ordered comparison of pointer with integer zero");
4874 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4875 /* One of the operands must be of nullptr_t type. */
4876 result_type = TREE_TYPE (nullptr_node);
4877 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4879 result_type = type0;
4880 if (complain & tf_error)
4881 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4882 else
4883 return error_mark_node;
4885 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4887 result_type = type1;
4888 if (complain & tf_error)
4889 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4890 else
4891 return error_mark_node;
4893 break;
4895 case UNORDERED_EXPR:
4896 case ORDERED_EXPR:
4897 case UNLT_EXPR:
4898 case UNLE_EXPR:
4899 case UNGT_EXPR:
4900 case UNGE_EXPR:
4901 case UNEQ_EXPR:
4902 build_type = integer_type_node;
4903 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
4905 if (complain & tf_error)
4906 error ("unordered comparison on non-floating point argument");
4907 return error_mark_node;
4909 common = 1;
4910 break;
4912 default:
4913 break;
4916 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
4917 || code0 == ENUMERAL_TYPE)
4918 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4919 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
4920 arithmetic_types_p = 1;
4921 else
4923 arithmetic_types_p = 0;
4924 /* Vector arithmetic is only allowed when both sides are vectors. */
4925 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4927 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
4928 || !vector_types_compatible_elements_p (type0, type1))
4930 if (complain & tf_error)
4932 /* "location" already embeds the locations of the
4933 operands, so we don't need to add them separately
4934 to richloc. */
4935 rich_location richloc (line_table, location);
4936 binary_op_error (&richloc, code, type0, type1);
4938 return error_mark_node;
4940 arithmetic_types_p = 1;
4943 /* Determine the RESULT_TYPE, if it is not already known. */
4944 if (!result_type
4945 && arithmetic_types_p
4946 && (shorten || common || short_compare))
4948 result_type = cp_common_type (type0, type1);
4949 if (complain & tf_warning)
4950 do_warn_double_promotion (result_type, type0, type1,
4951 "implicit conversion from %qT to %qT "
4952 "to match other operand of binary "
4953 "expression",
4954 location);
4957 if (!result_type)
4959 if (complain & tf_error)
4960 error_at (location,
4961 "invalid operands of types %qT and %qT to binary %qO",
4962 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
4963 return error_mark_node;
4966 /* If we're in a template, the only thing we need to know is the
4967 RESULT_TYPE. */
4968 if (processing_template_decl)
4970 /* Since the middle-end checks the type when doing a build2, we
4971 need to build the tree in pieces. This built tree will never
4972 get out of the front-end as we replace it when instantiating
4973 the template. */
4974 tree tmp = build2 (resultcode,
4975 build_type ? build_type : result_type,
4976 NULL_TREE, op1);
4977 TREE_OPERAND (tmp, 0) = op0;
4978 return tmp;
4981 if (arithmetic_types_p)
4983 bool first_complex = (code0 == COMPLEX_TYPE);
4984 bool second_complex = (code1 == COMPLEX_TYPE);
4985 int none_complex = (!first_complex && !second_complex);
4987 /* Adapted from patch for c/24581. */
4988 if (first_complex != second_complex
4989 && (code == PLUS_EXPR
4990 || code == MINUS_EXPR
4991 || code == MULT_EXPR
4992 || (code == TRUNC_DIV_EXPR && first_complex))
4993 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
4994 && flag_signed_zeros)
4996 /* An operation on mixed real/complex operands must be
4997 handled specially, but the language-independent code can
4998 more easily optimize the plain complex arithmetic if
4999 -fno-signed-zeros. */
5000 tree real_type = TREE_TYPE (result_type);
5001 tree real, imag;
5002 if (first_complex)
5004 if (TREE_TYPE (op0) != result_type)
5005 op0 = cp_convert_and_check (result_type, op0, complain);
5006 if (TREE_TYPE (op1) != real_type)
5007 op1 = cp_convert_and_check (real_type, op1, complain);
5009 else
5011 if (TREE_TYPE (op0) != real_type)
5012 op0 = cp_convert_and_check (real_type, op0, complain);
5013 if (TREE_TYPE (op1) != result_type)
5014 op1 = cp_convert_and_check (result_type, op1, complain);
5016 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
5017 return error_mark_node;
5018 if (first_complex)
5020 op0 = save_expr (op0);
5021 real = cp_build_unary_op (REALPART_EXPR, op0, 1, complain);
5022 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain);
5023 switch (code)
5025 case MULT_EXPR:
5026 case TRUNC_DIV_EXPR:
5027 op1 = save_expr (op1);
5028 imag = build2 (resultcode, real_type, imag, op1);
5029 /* Fall through. */
5030 case PLUS_EXPR:
5031 case MINUS_EXPR:
5032 real = build2 (resultcode, real_type, real, op1);
5033 break;
5034 default:
5035 gcc_unreachable();
5038 else
5040 op1 = save_expr (op1);
5041 real = cp_build_unary_op (REALPART_EXPR, op1, 1, complain);
5042 imag = cp_build_unary_op (IMAGPART_EXPR, op1, 1, complain);
5043 switch (code)
5045 case MULT_EXPR:
5046 op0 = save_expr (op0);
5047 imag = build2 (resultcode, real_type, op0, imag);
5048 /* Fall through. */
5049 case PLUS_EXPR:
5050 real = build2 (resultcode, real_type, op0, real);
5051 break;
5052 case MINUS_EXPR:
5053 real = build2 (resultcode, real_type, op0, real);
5054 imag = build1 (NEGATE_EXPR, real_type, imag);
5055 break;
5056 default:
5057 gcc_unreachable();
5060 result = build2 (COMPLEX_EXPR, result_type, real, imag);
5061 return result;
5064 /* For certain operations (which identify themselves by shorten != 0)
5065 if both args were extended from the same smaller type,
5066 do the arithmetic in that type and then extend.
5068 shorten !=0 and !=1 indicates a bitwise operation.
5069 For them, this optimization is safe only if
5070 both args are zero-extended or both are sign-extended.
5071 Otherwise, we might change the result.
5072 E.g., (short)-1 | (unsigned short)-1 is (int)-1
5073 but calculated in (unsigned short) it would be (unsigned short)-1. */
5075 if (shorten && none_complex)
5077 orig_type = result_type;
5078 final_type = result_type;
5079 result_type = shorten_binary_op (result_type, op0, op1,
5080 shorten == -1);
5083 /* Comparison operations are shortened too but differently.
5084 They identify themselves by setting short_compare = 1. */
5086 if (short_compare)
5088 /* We call shorten_compare only for diagnostic-reason. */
5089 tree xop0 = fold_simple (op0), xop1 = fold_simple (op1),
5090 xresult_type = result_type;
5091 enum tree_code xresultcode = resultcode;
5092 shorten_compare (location, &xop0, &xop1, &xresult_type,
5093 &xresultcode);
5096 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
5097 && warn_sign_compare
5098 /* Do not warn until the template is instantiated; we cannot
5099 bound the ranges of the arguments until that point. */
5100 && !processing_template_decl
5101 && (complain & tf_warning)
5102 && c_inhibit_evaluation_warnings == 0
5103 /* Even unsigned enum types promote to signed int. We don't
5104 want to issue -Wsign-compare warnings for this case. */
5105 && !enum_cast_to_int (orig_op0)
5106 && !enum_cast_to_int (orig_op1))
5108 tree oop0 = maybe_constant_value (orig_op0);
5109 tree oop1 = maybe_constant_value (orig_op1);
5111 if (TREE_CODE (oop0) != INTEGER_CST)
5112 oop0 = cp_fully_fold (orig_op0);
5113 if (TREE_CODE (oop1) != INTEGER_CST)
5114 oop1 = cp_fully_fold (orig_op1);
5115 warn_for_sign_compare (location, oop0, oop1, op0, op1,
5116 result_type, resultcode);
5120 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
5121 Then the expression will be built.
5122 It will be given type FINAL_TYPE if that is nonzero;
5123 otherwise, it will be given type RESULT_TYPE. */
5124 if (! converted)
5126 if (TREE_TYPE (op0) != result_type)
5127 op0 = cp_convert_and_check (result_type, op0, complain);
5128 if (TREE_TYPE (op1) != result_type)
5129 op1 = cp_convert_and_check (result_type, op1, complain);
5131 if (op0 == error_mark_node || op1 == error_mark_node)
5132 return error_mark_node;
5135 if (build_type == NULL_TREE)
5136 build_type = result_type;
5138 if ((flag_sanitize & (SANITIZE_SHIFT | SANITIZE_DIVIDE
5139 | SANITIZE_FLOAT_DIVIDE))
5140 && !processing_template_decl
5141 && do_ubsan_in_current_function ()
5142 && (doing_div_or_mod || doing_shift))
5144 /* OP0 and/or OP1 might have side-effects. */
5145 op0 = cp_save_expr (op0);
5146 op1 = cp_save_expr (op1);
5147 op0 = fold_non_dependent_expr (op0);
5148 op1 = fold_non_dependent_expr (op1);
5149 if (doing_div_or_mod && (flag_sanitize & (SANITIZE_DIVIDE
5150 | SANITIZE_FLOAT_DIVIDE)))
5152 /* For diagnostics we want to use the promoted types without
5153 shorten_binary_op. So convert the arguments to the
5154 original result_type. */
5155 tree cop0 = op0;
5156 tree cop1 = op1;
5157 if (orig_type != NULL && result_type != orig_type)
5159 cop0 = cp_convert (orig_type, op0, complain);
5160 cop1 = cp_convert (orig_type, op1, complain);
5162 instrument_expr = ubsan_instrument_division (location, cop0, cop1);
5164 else if (doing_shift && (flag_sanitize & SANITIZE_SHIFT))
5165 instrument_expr = ubsan_instrument_shift (location, code, op0, op1);
5168 result = build2_loc (location, resultcode, build_type, op0, op1);
5169 if (final_type != 0)
5170 result = cp_convert (final_type, result, complain);
5172 if (instrument_expr != NULL)
5173 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
5174 instrument_expr, result);
5176 if (!processing_template_decl)
5178 op0 = cp_fully_fold (op0);
5179 /* Only consider the second argument if the first isn't overflowed. */
5180 if (!CONSTANT_CLASS_P (op0) || TREE_OVERFLOW_P (op0))
5181 return result;
5182 op1 = cp_fully_fold (op1);
5183 if (!CONSTANT_CLASS_P (op1) || TREE_OVERFLOW_P (op1))
5184 return result;
5186 else if (!CONSTANT_CLASS_P (op0) || !CONSTANT_CLASS_P (op1)
5187 || TREE_OVERFLOW_P (op0) || TREE_OVERFLOW_P (op1))
5188 return result;
5190 result_ovl = fold_build2 (resultcode, build_type, op0, op1);
5191 if (TREE_OVERFLOW_P (result_ovl))
5192 overflow_warning (location, result_ovl);
5194 return result;
5197 /* Build a VEC_PERM_EXPR.
5198 This is a simple wrapper for c_build_vec_perm_expr. */
5199 tree
5200 build_x_vec_perm_expr (location_t loc,
5201 tree arg0, tree arg1, tree arg2,
5202 tsubst_flags_t complain)
5204 tree orig_arg0 = arg0;
5205 tree orig_arg1 = arg1;
5206 tree orig_arg2 = arg2;
5207 if (processing_template_decl)
5209 if (type_dependent_expression_p (arg0)
5210 || type_dependent_expression_p (arg1)
5211 || type_dependent_expression_p (arg2))
5212 return build_min_nt_loc (loc, VEC_PERM_EXPR, arg0, arg1, arg2);
5213 arg0 = build_non_dependent_expr (arg0);
5214 if (arg1)
5215 arg1 = build_non_dependent_expr (arg1);
5216 arg2 = build_non_dependent_expr (arg2);
5218 tree exp = c_build_vec_perm_expr (loc, arg0, arg1, arg2, complain & tf_error);
5219 if (processing_template_decl && exp != error_mark_node)
5220 return build_min_non_dep (VEC_PERM_EXPR, exp, orig_arg0,
5221 orig_arg1, orig_arg2);
5222 return exp;
5225 /* Return a tree for the sum or difference (RESULTCODE says which)
5226 of pointer PTROP and integer INTOP. */
5228 static tree
5229 cp_pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop,
5230 tsubst_flags_t complain)
5232 tree res_type = TREE_TYPE (ptrop);
5234 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
5235 in certain circumstance (when it's valid to do so). So we need
5236 to make sure it's complete. We don't need to check here, if we
5237 can actually complete it at all, as those checks will be done in
5238 pointer_int_sum() anyway. */
5239 complete_type (TREE_TYPE (res_type));
5241 return pointer_int_sum (input_location, resultcode, ptrop,
5242 intop, complain & tf_warning_or_error);
5245 /* Return a tree for the difference of pointers OP0 and OP1.
5246 The resulting tree has type int. */
5248 static tree
5249 pointer_diff (tree op0, tree op1, tree ptrtype, tsubst_flags_t complain)
5251 tree result;
5252 tree restype = ptrdiff_type_node;
5253 tree target_type = TREE_TYPE (ptrtype);
5255 if (!complete_type_or_else (target_type, NULL_TREE))
5256 return error_mark_node;
5258 if (VOID_TYPE_P (target_type))
5260 if (complain & tf_error)
5261 permerror (input_location, "ISO C++ forbids using pointer of "
5262 "type %<void *%> in subtraction");
5263 else
5264 return error_mark_node;
5266 if (TREE_CODE (target_type) == FUNCTION_TYPE)
5268 if (complain & tf_error)
5269 permerror (input_location, "ISO C++ forbids using pointer to "
5270 "a function in subtraction");
5271 else
5272 return error_mark_node;
5274 if (TREE_CODE (target_type) == METHOD_TYPE)
5276 if (complain & tf_error)
5277 permerror (input_location, "ISO C++ forbids using pointer to "
5278 "a method in subtraction");
5279 else
5280 return error_mark_node;
5283 /* First do the subtraction as integers;
5284 then drop through to build the divide operator. */
5286 op0 = cp_build_binary_op (input_location,
5287 MINUS_EXPR,
5288 cp_convert (restype, op0, complain),
5289 cp_convert (restype, op1, complain),
5290 complain);
5292 /* This generates an error if op1 is a pointer to an incomplete type. */
5293 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
5295 if (complain & tf_error)
5296 error ("invalid use of a pointer to an incomplete type in "
5297 "pointer arithmetic");
5298 else
5299 return error_mark_node;
5302 if (pointer_to_zero_sized_aggr_p (TREE_TYPE (op1)))
5304 if (complain & tf_error)
5305 error ("arithmetic on pointer to an empty aggregate");
5306 else
5307 return error_mark_node;
5310 op1 = (TYPE_PTROB_P (ptrtype)
5311 ? size_in_bytes (target_type)
5312 : integer_one_node);
5314 /* Do the division. */
5316 result = build2 (EXACT_DIV_EXPR, restype, op0,
5317 cp_convert (restype, op1, complain));
5318 return result;
5321 /* Construct and perhaps optimize a tree representation
5322 for a unary operation. CODE, a tree_code, specifies the operation
5323 and XARG is the operand. */
5325 tree
5326 build_x_unary_op (location_t loc, enum tree_code code, cp_expr xarg,
5327 tsubst_flags_t complain)
5329 tree orig_expr = xarg;
5330 tree exp;
5331 int ptrmem = 0;
5332 tree overload = NULL_TREE;
5334 if (processing_template_decl)
5336 if (type_dependent_expression_p (xarg))
5337 return build_min_nt_loc (loc, code, xarg.get_value (), NULL_TREE);
5339 xarg = build_non_dependent_expr (xarg);
5342 exp = NULL_TREE;
5344 /* [expr.unary.op] says:
5346 The address of an object of incomplete type can be taken.
5348 (And is just the ordinary address operator, not an overloaded
5349 "operator &".) However, if the type is a template
5350 specialization, we must complete the type at this point so that
5351 an overloaded "operator &" will be available if required. */
5352 if (code == ADDR_EXPR
5353 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
5354 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
5355 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
5356 || (TREE_CODE (xarg) == OFFSET_REF)))
5357 /* Don't look for a function. */;
5358 else
5359 exp = build_new_op (loc, code, LOOKUP_NORMAL, xarg, NULL_TREE,
5360 NULL_TREE, &overload, complain);
5362 if (!exp && code == ADDR_EXPR)
5364 if (is_overloaded_fn (xarg))
5366 tree fn = get_first_fn (xarg);
5367 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
5369 if (complain & tf_error)
5370 error (DECL_CONSTRUCTOR_P (fn)
5371 ? G_("taking address of constructor %qE")
5372 : G_("taking address of destructor %qE"),
5373 xarg.get_value ());
5374 return error_mark_node;
5378 /* A pointer to member-function can be formed only by saying
5379 &X::mf. */
5380 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
5381 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
5383 if (TREE_CODE (xarg) != OFFSET_REF
5384 || !TYPE_P (TREE_OPERAND (xarg, 0)))
5386 if (complain & tf_error)
5388 error ("invalid use of %qE to form a "
5389 "pointer-to-member-function", xarg.get_value ());
5390 if (TREE_CODE (xarg) != OFFSET_REF)
5391 inform (input_location, " a qualified-id is required");
5393 return error_mark_node;
5395 else
5397 if (complain & tf_error)
5398 error ("parentheses around %qE cannot be used to form a"
5399 " pointer-to-member-function",
5400 xarg.get_value ());
5401 else
5402 return error_mark_node;
5403 PTRMEM_OK_P (xarg) = 1;
5407 if (TREE_CODE (xarg) == OFFSET_REF)
5409 ptrmem = PTRMEM_OK_P (xarg);
5411 if (!ptrmem && !flag_ms_extensions
5412 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
5414 /* A single non-static member, make sure we don't allow a
5415 pointer-to-member. */
5416 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
5417 TREE_OPERAND (xarg, 0),
5418 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
5419 PTRMEM_OK_P (xarg) = ptrmem;
5423 exp = cp_build_addr_expr_strict (xarg, complain);
5426 if (processing_template_decl && exp != error_mark_node)
5428 if (overload != NULL_TREE)
5429 return (build_min_non_dep_op_overload
5430 (code, exp, overload, orig_expr, integer_zero_node));
5432 exp = build_min_non_dep (code, exp, orig_expr,
5433 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
5435 if (TREE_CODE (exp) == ADDR_EXPR)
5436 PTRMEM_OK_P (exp) = ptrmem;
5437 return exp;
5440 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
5441 constants, where a null value is represented by an INTEGER_CST of
5442 -1. */
5444 tree
5445 cp_truthvalue_conversion (tree expr)
5447 tree type = TREE_TYPE (expr);
5448 if (TYPE_PTRDATAMEM_P (type)
5449 /* Avoid ICE on invalid use of non-static member function. */
5450 || TREE_CODE (expr) == FUNCTION_DECL)
5451 return build_binary_op (EXPR_LOCATION (expr),
5452 NE_EXPR, expr, nullptr_node, 1);
5453 else if (TYPE_PTR_P (type) || TYPE_PTRMEMFUNC_P (type))
5455 /* With -Wzero-as-null-pointer-constant do not warn for an
5456 'if (p)' or a 'while (!p)', where p is a pointer. */
5457 tree ret;
5458 ++c_inhibit_evaluation_warnings;
5459 ret = c_common_truthvalue_conversion (input_location, expr);
5460 --c_inhibit_evaluation_warnings;
5461 return ret;
5463 else
5464 return c_common_truthvalue_conversion (input_location, expr);
5467 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
5469 tree
5470 condition_conversion (tree expr)
5472 tree t;
5473 if (processing_template_decl)
5474 return expr;
5475 t = perform_implicit_conversion_flags (boolean_type_node, expr,
5476 tf_warning_or_error, LOOKUP_NORMAL);
5477 t = fold_build_cleanup_point_expr (boolean_type_node, t);
5478 return t;
5481 /* Returns the address of T. This function will fold away
5482 ADDR_EXPR of INDIRECT_REF. */
5484 tree
5485 build_address (tree t)
5487 if (error_operand_p (t) || !cxx_mark_addressable (t))
5488 return error_mark_node;
5489 gcc_checking_assert (TREE_CODE (t) != CONSTRUCTOR);
5490 t = build_fold_addr_expr (t);
5491 if (TREE_CODE (t) != ADDR_EXPR)
5492 t = rvalue (t);
5493 return t;
5496 /* Return a NOP_EXPR converting EXPR to TYPE. */
5498 tree
5499 build_nop (tree type, tree expr)
5501 if (type == error_mark_node || error_operand_p (expr))
5502 return expr;
5503 return build1_loc (EXPR_LOCATION (expr), NOP_EXPR, type, expr);
5506 /* Take the address of ARG, whatever that means under C++ semantics.
5507 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
5508 and class rvalues as well.
5510 Nothing should call this function directly; instead, callers should use
5511 cp_build_addr_expr or cp_build_addr_expr_strict. */
5513 static tree
5514 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
5516 tree argtype;
5517 tree val;
5519 if (!arg || error_operand_p (arg))
5520 return error_mark_node;
5522 arg = mark_lvalue_use (arg);
5523 argtype = lvalue_type (arg);
5525 gcc_assert (!identifier_p (arg) || !IDENTIFIER_OPNAME_P (arg));
5527 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
5528 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
5530 /* They're trying to take the address of a unique non-static
5531 member function. This is ill-formed (except in MS-land),
5532 but let's try to DTRT.
5533 Note: We only handle unique functions here because we don't
5534 want to complain if there's a static overload; non-unique
5535 cases will be handled by instantiate_type. But we need to
5536 handle this case here to allow casts on the resulting PMF.
5537 We could defer this in non-MS mode, but it's easier to give
5538 a useful error here. */
5540 /* Inside constant member functions, the `this' pointer
5541 contains an extra const qualifier. TYPE_MAIN_VARIANT
5542 is used here to remove this const from the diagnostics
5543 and the created OFFSET_REF. */
5544 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
5545 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
5546 if (!mark_used (fn, complain) && !(complain & tf_error))
5547 return error_mark_node;
5549 if (! flag_ms_extensions)
5551 tree name = DECL_NAME (fn);
5552 if (!(complain & tf_error))
5553 return error_mark_node;
5554 else if (current_class_type
5555 && TREE_OPERAND (arg, 0) == current_class_ref)
5556 /* An expression like &memfn. */
5557 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
5558 " or parenthesized non-static member function to form"
5559 " a pointer to member function. Say %<&%T::%D%>",
5560 base, name);
5561 else
5562 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
5563 " function to form a pointer to member function."
5564 " Say %<&%T::%D%>",
5565 base, name);
5567 arg = build_offset_ref (base, fn, /*address_p=*/true, complain);
5570 /* Uninstantiated types are all functions. Taking the
5571 address of a function is a no-op, so just return the
5572 argument. */
5573 if (type_unknown_p (arg))
5574 return build1 (ADDR_EXPR, unknown_type_node, arg);
5576 if (TREE_CODE (arg) == OFFSET_REF)
5577 /* We want a pointer to member; bypass all the code for actually taking
5578 the address of something. */
5579 goto offset_ref;
5581 /* Anything not already handled and not a true memory reference
5582 is an error. */
5583 if (TREE_CODE (argtype) != FUNCTION_TYPE
5584 && TREE_CODE (argtype) != METHOD_TYPE)
5586 cp_lvalue_kind kind = lvalue_kind (arg);
5587 if (kind == clk_none)
5589 if (complain & tf_error)
5590 lvalue_error (input_location, lv_addressof);
5591 return error_mark_node;
5593 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
5595 if (!(complain & tf_error))
5596 return error_mark_node;
5597 if (kind & clk_class)
5598 /* Make this a permerror because we used to accept it. */
5599 permerror (input_location, "taking address of temporary");
5600 else
5601 error ("taking address of xvalue (rvalue reference)");
5605 if (TREE_CODE (argtype) == REFERENCE_TYPE)
5607 tree type = build_pointer_type (TREE_TYPE (argtype));
5608 arg = build1 (CONVERT_EXPR, type, arg);
5609 return arg;
5611 else if (pedantic && DECL_MAIN_P (arg))
5613 /* ARM $3.4 */
5614 /* Apparently a lot of autoconf scripts for C++ packages do this,
5615 so only complain if -Wpedantic. */
5616 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
5617 pedwarn (input_location, OPT_Wpedantic,
5618 "ISO C++ forbids taking address of function %<::main%>");
5619 else if (flag_pedantic_errors)
5620 return error_mark_node;
5623 /* Let &* cancel out to simplify resulting code. */
5624 if (INDIRECT_REF_P (arg))
5626 /* We don't need to have `current_class_ptr' wrapped in a
5627 NON_LVALUE_EXPR node. */
5628 if (arg == current_class_ref)
5629 return current_class_ptr;
5631 arg = TREE_OPERAND (arg, 0);
5632 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
5634 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
5635 arg = build1 (CONVERT_EXPR, type, arg);
5637 else
5638 /* Don't let this be an lvalue. */
5639 arg = rvalue (arg);
5640 return arg;
5643 /* ??? Cope with user tricks that amount to offsetof. */
5644 if (TREE_CODE (argtype) != FUNCTION_TYPE
5645 && TREE_CODE (argtype) != METHOD_TYPE
5646 && argtype != unknown_type_node
5647 && (val = get_base_address (arg))
5648 && COMPLETE_TYPE_P (TREE_TYPE (val))
5649 && INDIRECT_REF_P (val)
5650 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
5652 tree type = build_pointer_type (argtype);
5653 return fold_convert (type, fold_offsetof_1 (arg));
5656 /* Handle complex lvalues (when permitted)
5657 by reduction to simpler cases. */
5658 val = unary_complex_lvalue (ADDR_EXPR, arg);
5659 if (val != 0)
5660 return val;
5662 switch (TREE_CODE (arg))
5664 CASE_CONVERT:
5665 case FLOAT_EXPR:
5666 case FIX_TRUNC_EXPR:
5667 /* Even if we're not being pedantic, we cannot allow this
5668 extension when we're instantiating in a SFINAE
5669 context. */
5670 if (! lvalue_p (arg) && complain == tf_none)
5672 if (complain & tf_error)
5673 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
5674 else
5675 return error_mark_node;
5677 break;
5679 case BASELINK:
5680 arg = BASELINK_FUNCTIONS (arg);
5681 /* Fall through. */
5683 case OVERLOAD:
5684 arg = OVL_CURRENT (arg);
5685 break;
5687 case OFFSET_REF:
5688 offset_ref:
5689 /* Turn a reference to a non-static data member into a
5690 pointer-to-member. */
5692 tree type;
5693 tree t;
5695 gcc_assert (PTRMEM_OK_P (arg));
5697 t = TREE_OPERAND (arg, 1);
5698 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
5700 if (complain & tf_error)
5701 error ("cannot create pointer to reference member %qD", t);
5702 return error_mark_node;
5705 type = build_ptrmem_type (context_for_name_lookup (t),
5706 TREE_TYPE (t));
5707 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
5708 return t;
5711 default:
5712 break;
5715 if (argtype != error_mark_node)
5716 argtype = build_pointer_type (argtype);
5718 /* In a template, we are processing a non-dependent expression
5719 so we can just form an ADDR_EXPR with the correct type. */
5720 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
5722 val = build_address (arg);
5723 if (TREE_CODE (arg) == OFFSET_REF)
5724 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
5726 else if (BASELINK_P (TREE_OPERAND (arg, 1)))
5728 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
5730 /* We can only get here with a single static member
5731 function. */
5732 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
5733 && DECL_STATIC_FUNCTION_P (fn));
5734 if (!mark_used (fn, complain) && !(complain & tf_error))
5735 return error_mark_node;
5736 val = build_address (fn);
5737 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
5738 /* Do not lose object's side effects. */
5739 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
5740 TREE_OPERAND (arg, 0), val);
5742 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
5744 if (complain & tf_error)
5745 error ("attempt to take address of bit-field structure member %qD",
5746 TREE_OPERAND (arg, 1));
5747 return error_mark_node;
5749 else
5751 tree object = TREE_OPERAND (arg, 0);
5752 tree field = TREE_OPERAND (arg, 1);
5753 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5754 (TREE_TYPE (object), decl_type_context (field)));
5755 val = build_address (arg);
5758 if (TYPE_PTR_P (argtype)
5759 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
5761 build_ptrmemfunc_type (argtype);
5762 val = build_ptrmemfunc (argtype, val, 0,
5763 /*c_cast_p=*/false,
5764 complain);
5767 return val;
5770 /* Take the address of ARG if it has one, even if it's an rvalue. */
5772 tree
5773 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
5775 return cp_build_addr_expr_1 (arg, 0, complain);
5778 /* Take the address of ARG, but only if it's an lvalue. */
5780 static tree
5781 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
5783 return cp_build_addr_expr_1 (arg, 1, complain);
5786 /* C++: Must handle pointers to members.
5788 Perhaps type instantiation should be extended to handle conversion
5789 from aggregates to types we don't yet know we want? (Or are those
5790 cases typically errors which should be reported?)
5792 NOCONVERT nonzero suppresses the default promotions
5793 (such as from short to int). */
5795 tree
5796 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
5797 tsubst_flags_t complain)
5799 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
5800 tree arg = xarg;
5801 tree argtype = 0;
5802 const char *errstring = NULL;
5803 tree val;
5804 const char *invalid_op_diag;
5806 if (!arg || error_operand_p (arg))
5807 return error_mark_node;
5809 if ((invalid_op_diag
5810 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
5811 ? CONVERT_EXPR
5812 : code),
5813 TREE_TYPE (xarg))))
5815 if (complain & tf_error)
5816 error (invalid_op_diag);
5817 return error_mark_node;
5820 switch (code)
5822 case UNARY_PLUS_EXPR:
5823 case NEGATE_EXPR:
5825 int flags = WANT_ARITH | WANT_ENUM;
5826 /* Unary plus (but not unary minus) is allowed on pointers. */
5827 if (code == UNARY_PLUS_EXPR)
5828 flags |= WANT_POINTER;
5829 arg = build_expr_type_conversion (flags, arg, true);
5830 if (!arg)
5831 errstring = (code == NEGATE_EXPR
5832 ? _("wrong type argument to unary minus")
5833 : _("wrong type argument to unary plus"));
5834 else
5836 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5837 arg = cp_perform_integral_promotions (arg, complain);
5839 /* Make sure the result is not an lvalue: a unary plus or minus
5840 expression is always a rvalue. */
5841 arg = rvalue (arg);
5844 break;
5846 case BIT_NOT_EXPR:
5847 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5849 code = CONJ_EXPR;
5850 if (!noconvert)
5852 arg = cp_default_conversion (arg, complain);
5853 if (arg == error_mark_node)
5854 return error_mark_node;
5857 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5858 | WANT_VECTOR_OR_COMPLEX,
5859 arg, true)))
5860 errstring = _("wrong type argument to bit-complement");
5861 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5862 arg = cp_perform_integral_promotions (arg, complain);
5863 break;
5865 case ABS_EXPR:
5866 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5867 errstring = _("wrong type argument to abs");
5868 else if (!noconvert)
5870 arg = cp_default_conversion (arg, complain);
5871 if (arg == error_mark_node)
5872 return error_mark_node;
5874 break;
5876 case CONJ_EXPR:
5877 /* Conjugating a real value is a no-op, but allow it anyway. */
5878 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5879 errstring = _("wrong type argument to conjugation");
5880 else if (!noconvert)
5882 arg = cp_default_conversion (arg, complain);
5883 if (arg == error_mark_node)
5884 return error_mark_node;
5886 break;
5888 case TRUTH_NOT_EXPR:
5889 if (VECTOR_TYPE_P (TREE_TYPE (arg)))
5890 return cp_build_binary_op (input_location, EQ_EXPR, arg,
5891 build_zero_cst (TREE_TYPE (arg)), complain);
5892 arg = perform_implicit_conversion (boolean_type_node, arg,
5893 complain);
5894 val = invert_truthvalue_loc (input_location, arg);
5895 if (arg != error_mark_node)
5896 return val;
5897 errstring = _("in argument to unary !");
5898 break;
5900 case NOP_EXPR:
5901 break;
5903 case REALPART_EXPR:
5904 case IMAGPART_EXPR:
5905 arg = build_real_imag_expr (input_location, code, arg);
5906 return arg;
5908 case PREINCREMENT_EXPR:
5909 case POSTINCREMENT_EXPR:
5910 case PREDECREMENT_EXPR:
5911 case POSTDECREMENT_EXPR:
5912 /* Handle complex lvalues (when permitted)
5913 by reduction to simpler cases. */
5915 val = unary_complex_lvalue (code, arg);
5916 if (val != 0)
5917 return val;
5919 arg = mark_lvalue_use (arg);
5921 /* Increment or decrement the real part of the value,
5922 and don't change the imaginary part. */
5923 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5925 tree real, imag;
5927 arg = cp_stabilize_reference (arg);
5928 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5929 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5930 real = cp_build_unary_op (code, real, 1, complain);
5931 if (real == error_mark_node || imag == error_mark_node)
5932 return error_mark_node;
5933 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5934 real, imag);
5937 /* Report invalid types. */
5939 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5940 arg, true)))
5942 if (code == PREINCREMENT_EXPR)
5943 errstring = _("no pre-increment operator for type");
5944 else if (code == POSTINCREMENT_EXPR)
5945 errstring = _("no post-increment operator for type");
5946 else if (code == PREDECREMENT_EXPR)
5947 errstring = _("no pre-decrement operator for type");
5948 else
5949 errstring = _("no post-decrement operator for type");
5950 break;
5952 else if (arg == error_mark_node)
5953 return error_mark_node;
5955 /* Report something read-only. */
5957 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5958 || TREE_READONLY (arg))
5960 if (complain & tf_error)
5961 cxx_readonly_error (arg, ((code == PREINCREMENT_EXPR
5962 || code == POSTINCREMENT_EXPR)
5963 ? lv_increment : lv_decrement));
5964 else
5965 return error_mark_node;
5969 tree inc;
5970 tree declared_type = unlowered_expr_type (arg);
5972 argtype = TREE_TYPE (arg);
5974 /* ARM $5.2.5 last annotation says this should be forbidden. */
5975 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5977 if (complain & tf_error)
5978 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5979 ? G_("ISO C++ forbids incrementing an enum")
5980 : G_("ISO C++ forbids decrementing an enum"));
5981 else
5982 return error_mark_node;
5985 /* Compute the increment. */
5987 if (TYPE_PTR_P (argtype))
5989 tree type = complete_type (TREE_TYPE (argtype));
5991 if (!COMPLETE_OR_VOID_TYPE_P (type))
5993 if (complain & tf_error)
5994 error (((code == PREINCREMENT_EXPR
5995 || code == POSTINCREMENT_EXPR))
5996 ? G_("cannot increment a pointer to incomplete type %qT")
5997 : G_("cannot decrement a pointer to incomplete type %qT"),
5998 TREE_TYPE (argtype));
5999 else
6000 return error_mark_node;
6002 else if (!TYPE_PTROB_P (argtype))
6004 if (complain & tf_error)
6005 pedwarn (input_location, OPT_Wpointer_arith,
6006 (code == PREINCREMENT_EXPR
6007 || code == POSTINCREMENT_EXPR)
6008 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
6009 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
6010 argtype);
6011 else
6012 return error_mark_node;
6015 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
6017 else
6018 inc = VECTOR_TYPE_P (argtype)
6019 ? build_one_cst (argtype)
6020 : integer_one_node;
6022 inc = cp_convert (argtype, inc, complain);
6024 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
6025 need to ask Objective-C to build the increment or decrement
6026 expression for it. */
6027 if (objc_is_property_ref (arg))
6028 return objc_build_incr_expr_for_property_ref (input_location, code,
6029 arg, inc);
6031 /* Complain about anything else that is not a true lvalue. */
6032 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
6033 || code == POSTINCREMENT_EXPR)
6034 ? lv_increment : lv_decrement),
6035 complain))
6036 return error_mark_node;
6038 /* Forbid using -- on `bool'. */
6039 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
6041 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
6043 if (complain & tf_error)
6044 error ("invalid use of Boolean expression as operand "
6045 "to %<operator--%>");
6046 return error_mark_node;
6048 val = boolean_increment (code, arg);
6050 else if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
6051 /* An rvalue has no cv-qualifiers. */
6052 val = build2 (code, cv_unqualified (TREE_TYPE (arg)), arg, inc);
6053 else
6054 val = build2 (code, TREE_TYPE (arg), arg, inc);
6056 TREE_SIDE_EFFECTS (val) = 1;
6057 return val;
6060 case ADDR_EXPR:
6061 /* Note that this operation never does default_conversion
6062 regardless of NOCONVERT. */
6063 return cp_build_addr_expr (arg, complain);
6065 default:
6066 break;
6069 if (!errstring)
6071 if (argtype == 0)
6072 argtype = TREE_TYPE (arg);
6073 return build1 (code, argtype, arg);
6076 if (complain & tf_error)
6077 error ("%s", errstring);
6078 return error_mark_node;
6081 /* Hook for the c-common bits that build a unary op. */
6082 tree
6083 build_unary_op (location_t /*location*/,
6084 enum tree_code code, tree xarg, int noconvert)
6086 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
6089 /* Apply unary lvalue-demanding operator CODE to the expression ARG
6090 for certain kinds of expressions which are not really lvalues
6091 but which we can accept as lvalues.
6093 If ARG is not a kind of expression we can handle, return
6094 NULL_TREE. */
6096 tree
6097 unary_complex_lvalue (enum tree_code code, tree arg)
6099 /* Inside a template, making these kinds of adjustments is
6100 pointless; we are only concerned with the type of the
6101 expression. */
6102 if (processing_template_decl)
6103 return NULL_TREE;
6105 /* Handle (a, b) used as an "lvalue". */
6106 if (TREE_CODE (arg) == COMPOUND_EXPR)
6108 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
6109 tf_warning_or_error);
6110 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
6111 TREE_OPERAND (arg, 0), real_result);
6114 /* Handle (a ? b : c) used as an "lvalue". */
6115 if (TREE_CODE (arg) == COND_EXPR
6116 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
6117 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
6119 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
6120 if (TREE_CODE (arg) == MODIFY_EXPR
6121 || TREE_CODE (arg) == PREINCREMENT_EXPR
6122 || TREE_CODE (arg) == PREDECREMENT_EXPR)
6124 tree lvalue = TREE_OPERAND (arg, 0);
6125 if (TREE_SIDE_EFFECTS (lvalue))
6127 lvalue = cp_stabilize_reference (lvalue);
6128 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
6129 lvalue, TREE_OPERAND (arg, 1));
6131 return unary_complex_lvalue
6132 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
6135 if (code != ADDR_EXPR)
6136 return NULL_TREE;
6138 /* Handle (a = b) used as an "lvalue" for `&'. */
6139 if (TREE_CODE (arg) == MODIFY_EXPR
6140 || TREE_CODE (arg) == INIT_EXPR)
6142 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
6143 tf_warning_or_error);
6144 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
6145 arg, real_result);
6146 TREE_NO_WARNING (arg) = 1;
6147 return arg;
6150 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
6151 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
6152 || TREE_CODE (arg) == OFFSET_REF)
6153 return NULL_TREE;
6155 /* We permit compiler to make function calls returning
6156 objects of aggregate type look like lvalues. */
6158 tree targ = arg;
6160 if (TREE_CODE (targ) == SAVE_EXPR)
6161 targ = TREE_OPERAND (targ, 0);
6163 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
6165 if (TREE_CODE (arg) == SAVE_EXPR)
6166 targ = arg;
6167 else
6168 targ = build_cplus_new (TREE_TYPE (arg), arg, tf_warning_or_error);
6169 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
6172 if (TREE_CODE (arg) == SAVE_EXPR && INDIRECT_REF_P (targ))
6173 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
6174 TREE_OPERAND (targ, 0), current_function_decl, NULL);
6177 /* Don't let anything else be handled specially. */
6178 return NULL_TREE;
6181 /* Mark EXP saying that we need to be able to take the
6182 address of it; it should not be allocated in a register.
6183 Value is true if successful.
6185 C++: we do not allow `current_class_ptr' to be addressable. */
6187 bool
6188 cxx_mark_addressable (tree exp)
6190 tree x = exp;
6192 while (1)
6193 switch (TREE_CODE (x))
6195 case ADDR_EXPR:
6196 case COMPONENT_REF:
6197 case ARRAY_REF:
6198 case REALPART_EXPR:
6199 case IMAGPART_EXPR:
6200 x = TREE_OPERAND (x, 0);
6201 break;
6203 case PARM_DECL:
6204 if (x == current_class_ptr)
6206 error ("cannot take the address of %<this%>, which is an rvalue expression");
6207 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
6208 return true;
6210 /* Fall through. */
6212 case VAR_DECL:
6213 /* Caller should not be trying to mark initialized
6214 constant fields addressable. */
6215 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
6216 || DECL_IN_AGGR_P (x) == 0
6217 || TREE_STATIC (x)
6218 || DECL_EXTERNAL (x));
6219 /* Fall through. */
6221 case RESULT_DECL:
6222 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
6223 && !DECL_ARTIFICIAL (x))
6225 if (VAR_P (x) && DECL_HARD_REGISTER (x))
6227 error
6228 ("address of explicit register variable %qD requested", x);
6229 return false;
6231 else if (extra_warnings)
6232 warning
6233 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
6235 TREE_ADDRESSABLE (x) = 1;
6236 return true;
6238 case CONST_DECL:
6239 case FUNCTION_DECL:
6240 TREE_ADDRESSABLE (x) = 1;
6241 return true;
6243 case CONSTRUCTOR:
6244 TREE_ADDRESSABLE (x) = 1;
6245 return true;
6247 case TARGET_EXPR:
6248 TREE_ADDRESSABLE (x) = 1;
6249 cxx_mark_addressable (TREE_OPERAND (x, 0));
6250 return true;
6252 default:
6253 return true;
6257 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
6259 tree
6260 build_x_conditional_expr (location_t loc, tree ifexp, tree op1, tree op2,
6261 tsubst_flags_t complain)
6263 tree orig_ifexp = ifexp;
6264 tree orig_op1 = op1;
6265 tree orig_op2 = op2;
6266 tree expr;
6268 if (processing_template_decl)
6270 /* The standard says that the expression is type-dependent if
6271 IFEXP is type-dependent, even though the eventual type of the
6272 expression doesn't dependent on IFEXP. */
6273 if (type_dependent_expression_p (ifexp)
6274 /* As a GNU extension, the middle operand may be omitted. */
6275 || (op1 && type_dependent_expression_p (op1))
6276 || type_dependent_expression_p (op2))
6277 return build_min_nt_loc (loc, COND_EXPR, ifexp, op1, op2);
6278 ifexp = build_non_dependent_expr (ifexp);
6279 if (op1)
6280 op1 = build_non_dependent_expr (op1);
6281 op2 = build_non_dependent_expr (op2);
6284 expr = build_conditional_expr (loc, ifexp, op1, op2, complain);
6285 if (processing_template_decl && expr != error_mark_node
6286 && TREE_CODE (expr) != VEC_COND_EXPR)
6288 tree min = build_min_non_dep (COND_EXPR, expr,
6289 orig_ifexp, orig_op1, orig_op2);
6290 /* Remember that the result is an lvalue or xvalue. */
6291 if (lvalue_or_rvalue_with_address_p (expr)
6292 && !lvalue_or_rvalue_with_address_p (min))
6293 TREE_TYPE (min) = cp_build_reference_type (TREE_TYPE (min),
6294 !real_lvalue_p (expr));
6295 expr = convert_from_reference (min);
6297 return expr;
6300 /* Given a list of expressions, return a compound expression
6301 that performs them all and returns the value of the last of them. */
6303 tree
6304 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
6305 tsubst_flags_t complain)
6307 tree expr = TREE_VALUE (list);
6309 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6310 && !CONSTRUCTOR_IS_DIRECT_INIT (expr))
6312 if (complain & tf_error)
6313 pedwarn (EXPR_LOC_OR_LOC (expr, input_location), 0,
6314 "list-initializer for non-class type must not "
6315 "be parenthesized");
6316 else
6317 return error_mark_node;
6320 if (TREE_CHAIN (list))
6322 if (complain & tf_error)
6323 switch (exp)
6325 case ELK_INIT:
6326 permerror (input_location, "expression list treated as compound "
6327 "expression in initializer");
6328 break;
6329 case ELK_MEM_INIT:
6330 permerror (input_location, "expression list treated as compound "
6331 "expression in mem-initializer");
6332 break;
6333 case ELK_FUNC_CAST:
6334 permerror (input_location, "expression list treated as compound "
6335 "expression in functional cast");
6336 break;
6337 default:
6338 gcc_unreachable ();
6340 else
6341 return error_mark_node;
6343 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
6344 expr = build_x_compound_expr (EXPR_LOCATION (TREE_VALUE (list)),
6345 expr, TREE_VALUE (list), complain);
6348 return expr;
6351 /* Like build_x_compound_expr_from_list, but using a VEC. */
6353 tree
6354 build_x_compound_expr_from_vec (vec<tree, va_gc> *vec, const char *msg,
6355 tsubst_flags_t complain)
6357 if (vec_safe_is_empty (vec))
6358 return NULL_TREE;
6359 else if (vec->length () == 1)
6360 return (*vec)[0];
6361 else
6363 tree expr;
6364 unsigned int ix;
6365 tree t;
6367 if (msg != NULL)
6369 if (complain & tf_error)
6370 permerror (input_location,
6371 "%s expression list treated as compound expression",
6372 msg);
6373 else
6374 return error_mark_node;
6377 expr = (*vec)[0];
6378 for (ix = 1; vec->iterate (ix, &t); ++ix)
6379 expr = build_x_compound_expr (EXPR_LOCATION (t), expr,
6380 t, complain);
6382 return expr;
6386 /* Handle overloading of the ',' operator when needed. */
6388 tree
6389 build_x_compound_expr (location_t loc, tree op1, tree op2,
6390 tsubst_flags_t complain)
6392 tree result;
6393 tree orig_op1 = op1;
6394 tree orig_op2 = op2;
6395 tree overload = NULL_TREE;
6397 if (processing_template_decl)
6399 if (type_dependent_expression_p (op1)
6400 || type_dependent_expression_p (op2))
6401 return build_min_nt_loc (loc, COMPOUND_EXPR, op1, op2);
6402 op1 = build_non_dependent_expr (op1);
6403 op2 = build_non_dependent_expr (op2);
6406 result = build_new_op (loc, COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2,
6407 NULL_TREE, &overload, complain);
6408 if (!result)
6409 result = cp_build_compound_expr (op1, op2, complain);
6411 if (processing_template_decl && result != error_mark_node)
6413 if (overload != NULL_TREE)
6414 return (build_min_non_dep_op_overload
6415 (COMPOUND_EXPR, result, overload, orig_op1, orig_op2));
6417 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
6420 return result;
6423 /* Like cp_build_compound_expr, but for the c-common bits. */
6425 tree
6426 build_compound_expr (location_t /*loc*/, tree lhs, tree rhs)
6428 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
6431 /* Build a compound expression. */
6433 tree
6434 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
6436 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
6438 if (lhs == error_mark_node || rhs == error_mark_node)
6439 return error_mark_node;
6441 if (flag_cilkplus
6442 && (TREE_CODE (lhs) == CILK_SPAWN_STMT
6443 || TREE_CODE (rhs) == CILK_SPAWN_STMT))
6445 location_t loc = (EXPR_HAS_LOCATION (lhs) ? EXPR_LOCATION (lhs)
6446 : EXPR_LOCATION (rhs));
6447 error_at (loc,
6448 "spawned function call cannot be part of a comma expression");
6449 return error_mark_node;
6452 if (TREE_CODE (rhs) == TARGET_EXPR)
6454 /* If the rhs is a TARGET_EXPR, then build the compound
6455 expression inside the target_expr's initializer. This
6456 helps the compiler to eliminate unnecessary temporaries. */
6457 tree init = TREE_OPERAND (rhs, 1);
6459 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
6460 TREE_OPERAND (rhs, 1) = init;
6462 return rhs;
6465 if (type_unknown_p (rhs))
6467 if (complain & tf_error)
6468 error ("no context to resolve type of %qE", rhs);
6469 return error_mark_node;
6472 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
6475 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
6476 casts away constness. CAST gives the type of cast. Returns true
6477 if the cast is ill-formed, false if it is well-formed.
6479 ??? This function warns for casting away any qualifier not just
6480 const. We would like to specify exactly what qualifiers are casted
6481 away.
6484 static bool
6485 check_for_casting_away_constness (tree src_type, tree dest_type,
6486 enum tree_code cast, tsubst_flags_t complain)
6488 /* C-style casts are allowed to cast away constness. With
6489 WARN_CAST_QUAL, we still want to issue a warning. */
6490 if (cast == CAST_EXPR && !warn_cast_qual)
6491 return false;
6493 if (!casts_away_constness (src_type, dest_type, complain))
6494 return false;
6496 switch (cast)
6498 case CAST_EXPR:
6499 if (complain & tf_warning)
6500 warning (OPT_Wcast_qual,
6501 "cast from type %qT to type %qT casts away qualifiers",
6502 src_type, dest_type);
6503 return false;
6505 case STATIC_CAST_EXPR:
6506 if (complain & tf_error)
6507 error ("static_cast from type %qT to type %qT casts away qualifiers",
6508 src_type, dest_type);
6509 return true;
6511 case REINTERPRET_CAST_EXPR:
6512 if (complain & tf_error)
6513 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
6514 src_type, dest_type);
6515 return true;
6517 default:
6518 gcc_unreachable();
6523 Warns if the cast from expression EXPR to type TYPE is useless.
6525 void
6526 maybe_warn_about_useless_cast (tree type, tree expr, tsubst_flags_t complain)
6528 if (warn_useless_cast
6529 && complain & tf_warning)
6531 if ((TREE_CODE (type) == REFERENCE_TYPE
6532 && (TYPE_REF_IS_RVALUE (type)
6533 ? xvalue_p (expr) : real_lvalue_p (expr))
6534 && same_type_p (TREE_TYPE (expr), TREE_TYPE (type)))
6535 || same_type_p (TREE_TYPE (expr), type))
6536 warning (OPT_Wuseless_cast, "useless cast to type %qT", type);
6540 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
6541 (another pointer-to-member type in the same hierarchy) and return
6542 the converted expression. If ALLOW_INVERSE_P is permitted, a
6543 pointer-to-derived may be converted to pointer-to-base; otherwise,
6544 only the other direction is permitted. If C_CAST_P is true, this
6545 conversion is taking place as part of a C-style cast. */
6547 tree
6548 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
6549 bool c_cast_p, tsubst_flags_t complain)
6551 if (TYPE_PTRDATAMEM_P (type))
6553 tree delta;
6555 if (TREE_CODE (expr) == PTRMEM_CST)
6556 expr = cplus_expand_constant (expr);
6557 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
6558 TYPE_PTRMEM_CLASS_TYPE (type),
6559 allow_inverse_p,
6560 c_cast_p, complain);
6561 if (delta == error_mark_node)
6562 return error_mark_node;
6564 if (!integer_zerop (delta))
6566 tree cond, op1, op2;
6568 cond = cp_build_binary_op (input_location,
6569 EQ_EXPR,
6570 expr,
6571 build_int_cst (TREE_TYPE (expr), -1),
6572 complain);
6573 op1 = build_nop (ptrdiff_type_node, expr);
6574 op2 = cp_build_binary_op (input_location,
6575 PLUS_EXPR, op1, delta,
6576 complain);
6578 expr = fold_build3_loc (input_location,
6579 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
6583 return build_nop (type, expr);
6585 else
6586 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
6587 allow_inverse_p, c_cast_p, complain);
6590 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
6591 this static_cast is being attempted as one of the possible casts
6592 allowed by a C-style cast. (In that case, accessibility of base
6593 classes is not considered, and it is OK to cast away
6594 constness.) Return the result of the cast. *VALID_P is set to
6595 indicate whether or not the cast was valid. */
6597 static tree
6598 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
6599 bool *valid_p, tsubst_flags_t complain)
6601 tree intype;
6602 tree result;
6603 cp_lvalue_kind clk;
6605 /* Assume the cast is valid. */
6606 *valid_p = true;
6608 intype = unlowered_expr_type (expr);
6610 /* Save casted types in the function's used types hash table. */
6611 used_types_insert (type);
6613 /* [expr.static.cast]
6615 An lvalue of type "cv1 B", where B is a class type, can be cast
6616 to type "reference to cv2 D", where D is a class derived (clause
6617 _class.derived_) from B, if a valid standard conversion from
6618 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
6619 same cv-qualification as, or greater cv-qualification than, cv1,
6620 and B is not a virtual base class of D. */
6621 /* We check this case before checking the validity of "TYPE t =
6622 EXPR;" below because for this case:
6624 struct B {};
6625 struct D : public B { D(const B&); };
6626 extern B& b;
6627 void f() { static_cast<const D&>(b); }
6629 we want to avoid constructing a new D. The standard is not
6630 completely clear about this issue, but our interpretation is
6631 consistent with other compilers. */
6632 if (TREE_CODE (type) == REFERENCE_TYPE
6633 && CLASS_TYPE_P (TREE_TYPE (type))
6634 && CLASS_TYPE_P (intype)
6635 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
6636 && DERIVED_FROM_P (intype, TREE_TYPE (type))
6637 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
6638 build_pointer_type (TYPE_MAIN_VARIANT
6639 (TREE_TYPE (type))),
6640 complain)
6641 && (c_cast_p
6642 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6644 tree base;
6646 /* There is a standard conversion from "D*" to "B*" even if "B"
6647 is ambiguous or inaccessible. If this is really a
6648 static_cast, then we check both for inaccessibility and
6649 ambiguity. However, if this is a static_cast being performed
6650 because the user wrote a C-style cast, then accessibility is
6651 not considered. */
6652 base = lookup_base (TREE_TYPE (type), intype,
6653 c_cast_p ? ba_unique : ba_check,
6654 NULL, complain);
6655 expr = build_address (expr);
6657 if (flag_sanitize & SANITIZE_VPTR)
6659 tree ubsan_check
6660 = cp_ubsan_maybe_instrument_downcast (input_location, type,
6661 intype, expr);
6662 if (ubsan_check)
6663 expr = ubsan_check;
6666 /* Convert from "B*" to "D*". This function will check that "B"
6667 is not a virtual base of "D". */
6668 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
6669 complain);
6671 /* Convert the pointer to a reference -- but then remember that
6672 there are no expressions with reference type in C++.
6674 We call rvalue so that there's an actual tree code
6675 (NON_LVALUE_EXPR) for the static_cast; otherwise, if the operand
6676 is a variable with the same type, the conversion would get folded
6677 away, leaving just the variable and causing lvalue_kind to give
6678 the wrong answer. */
6679 return convert_from_reference (rvalue (cp_fold_convert (type, expr)));
6682 /* "A glvalue of type cv1 T1 can be cast to type rvalue reference to
6683 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
6684 if (TREE_CODE (type) == REFERENCE_TYPE
6685 && TYPE_REF_IS_RVALUE (type)
6686 && (clk = real_lvalue_p (expr))
6687 && reference_related_p (TREE_TYPE (type), intype)
6688 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6690 if (clk == clk_ordinary)
6692 /* Handle the (non-bit-field) lvalue case here by casting to
6693 lvalue reference and then changing it to an rvalue reference.
6694 Casting an xvalue to rvalue reference will be handled by the
6695 main code path. */
6696 tree lref = cp_build_reference_type (TREE_TYPE (type), false);
6697 result = (perform_direct_initialization_if_possible
6698 (lref, expr, c_cast_p, complain));
6699 result = build1 (NON_LVALUE_EXPR, type, result);
6700 return convert_from_reference (result);
6702 else
6703 /* For a bit-field or packed field, bind to a temporary. */
6704 expr = rvalue (expr);
6707 /* Resolve overloaded address here rather than once in
6708 implicit_conversion and again in the inverse code below. */
6709 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
6711 expr = instantiate_type (type, expr, complain);
6712 intype = TREE_TYPE (expr);
6715 /* [expr.static.cast]
6717 Any expression can be explicitly converted to type cv void. */
6718 if (VOID_TYPE_P (type))
6719 return convert_to_void (expr, ICV_CAST, complain);
6721 /* [class.abstract]
6722 An abstract class shall not be used ... as the type of an explicit
6723 conversion. */
6724 if (abstract_virtuals_error_sfinae (ACU_CAST, type, complain))
6725 return error_mark_node;
6727 /* [expr.static.cast]
6729 An expression e can be explicitly converted to a type T using a
6730 static_cast of the form static_cast<T>(e) if the declaration T
6731 t(e);" is well-formed, for some invented temporary variable
6732 t. */
6733 result = perform_direct_initialization_if_possible (type, expr,
6734 c_cast_p, complain);
6735 if (result)
6737 result = convert_from_reference (result);
6739 /* [expr.static.cast]
6741 If T is a reference type, the result is an lvalue; otherwise,
6742 the result is an rvalue. */
6743 if (TREE_CODE (type) != REFERENCE_TYPE)
6745 result = rvalue (result);
6747 if (result == expr && SCALAR_TYPE_P (type))
6748 /* Leave some record of the cast. */
6749 result = build_nop (type, expr);
6751 return result;
6754 /* [expr.static.cast]
6756 The inverse of any standard conversion sequence (clause _conv_),
6757 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
6758 (_conv.array_), function-to-pointer (_conv.func_), and boolean
6759 (_conv.bool_) conversions, can be performed explicitly using
6760 static_cast subject to the restriction that the explicit
6761 conversion does not cast away constness (_expr.const.cast_), and
6762 the following additional rules for specific cases: */
6763 /* For reference, the conversions not excluded are: integral
6764 promotions, floating point promotion, integral conversions,
6765 floating point conversions, floating-integral conversions,
6766 pointer conversions, and pointer to member conversions. */
6767 /* DR 128
6769 A value of integral _or enumeration_ type can be explicitly
6770 converted to an enumeration type. */
6771 /* The effect of all that is that any conversion between any two
6772 types which are integral, floating, or enumeration types can be
6773 performed. */
6774 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
6775 || SCALAR_FLOAT_TYPE_P (type))
6776 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
6777 || SCALAR_FLOAT_TYPE_P (intype)))
6778 return ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL, complain);
6780 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
6781 && CLASS_TYPE_P (TREE_TYPE (type))
6782 && CLASS_TYPE_P (TREE_TYPE (intype))
6783 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
6784 (TREE_TYPE (intype))),
6785 build_pointer_type (TYPE_MAIN_VARIANT
6786 (TREE_TYPE (type))),
6787 complain))
6789 tree base;
6791 if (!c_cast_p
6792 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
6793 complain))
6794 return error_mark_node;
6795 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
6796 c_cast_p ? ba_unique : ba_check,
6797 NULL, complain);
6798 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
6799 complain);
6801 if (flag_sanitize & SANITIZE_VPTR)
6803 tree ubsan_check
6804 = cp_ubsan_maybe_instrument_downcast (input_location, type,
6805 intype, expr);
6806 if (ubsan_check)
6807 expr = ubsan_check;
6810 return cp_fold_convert (type, expr);
6813 if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
6814 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6816 tree c1;
6817 tree c2;
6818 tree t1;
6819 tree t2;
6821 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
6822 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
6824 if (TYPE_PTRDATAMEM_P (type))
6826 t1 = (build_ptrmem_type
6827 (c1,
6828 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
6829 t2 = (build_ptrmem_type
6830 (c2,
6831 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
6833 else
6835 t1 = intype;
6836 t2 = type;
6838 if (can_convert (t1, t2, complain) || can_convert (t2, t1, complain))
6840 if (!c_cast_p
6841 && check_for_casting_away_constness (intype, type,
6842 STATIC_CAST_EXPR,
6843 complain))
6844 return error_mark_node;
6845 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
6846 c_cast_p, complain);
6850 /* [expr.static.cast]
6852 An rvalue of type "pointer to cv void" can be explicitly
6853 converted to a pointer to object type. A value of type pointer
6854 to object converted to "pointer to cv void" and back to the
6855 original pointer type will have its original value. */
6856 if (TYPE_PTR_P (intype)
6857 && VOID_TYPE_P (TREE_TYPE (intype))
6858 && TYPE_PTROB_P (type))
6860 if (!c_cast_p
6861 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
6862 complain))
6863 return error_mark_node;
6864 return build_nop (type, expr);
6867 *valid_p = false;
6868 return error_mark_node;
6871 /* Return an expression representing static_cast<TYPE>(EXPR). */
6873 tree
6874 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
6876 tree result;
6877 bool valid_p;
6879 if (type == error_mark_node || expr == error_mark_node)
6880 return error_mark_node;
6882 if (processing_template_decl)
6884 expr = build_min (STATIC_CAST_EXPR, type, expr);
6885 /* We don't know if it will or will not have side effects. */
6886 TREE_SIDE_EFFECTS (expr) = 1;
6887 return convert_from_reference (expr);
6890 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6891 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6892 if (TREE_CODE (type) != REFERENCE_TYPE
6893 && TREE_CODE (expr) == NOP_EXPR
6894 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6895 expr = TREE_OPERAND (expr, 0);
6897 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
6898 complain);
6899 if (valid_p)
6901 if (result != error_mark_node)
6902 maybe_warn_about_useless_cast (type, expr, complain);
6903 return result;
6906 if (complain & tf_error)
6907 error ("invalid static_cast from type %qT to type %qT",
6908 TREE_TYPE (expr), type);
6909 return error_mark_node;
6912 /* EXPR is an expression with member function or pointer-to-member
6913 function type. TYPE is a pointer type. Converting EXPR to TYPE is
6914 not permitted by ISO C++, but we accept it in some modes. If we
6915 are not in one of those modes, issue a diagnostic. Return the
6916 converted expression. */
6918 tree
6919 convert_member_func_to_ptr (tree type, tree expr, tsubst_flags_t complain)
6921 tree intype;
6922 tree decl;
6924 intype = TREE_TYPE (expr);
6925 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
6926 || TREE_CODE (intype) == METHOD_TYPE);
6928 if (!(complain & tf_warning_or_error))
6929 return error_mark_node;
6931 if (pedantic || warn_pmf2ptr)
6932 pedwarn (input_location, pedantic ? OPT_Wpedantic : OPT_Wpmf_conversions,
6933 "converting from %qT to %qT", intype, type);
6935 if (TREE_CODE (intype) == METHOD_TYPE)
6936 expr = build_addr_func (expr, complain);
6937 else if (TREE_CODE (expr) == PTRMEM_CST)
6938 expr = build_address (PTRMEM_CST_MEMBER (expr));
6939 else
6941 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
6942 decl = build_address (decl);
6943 expr = get_member_function_from_ptrfunc (&decl, expr, complain);
6946 if (expr == error_mark_node)
6947 return error_mark_node;
6949 return build_nop (type, expr);
6952 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
6953 If C_CAST_P is true, this reinterpret cast is being done as part of
6954 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
6955 indicate whether or not reinterpret_cast was valid. */
6957 static tree
6958 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6959 bool *valid_p, tsubst_flags_t complain)
6961 tree intype;
6963 /* Assume the cast is invalid. */
6964 if (valid_p)
6965 *valid_p = true;
6967 if (type == error_mark_node || error_operand_p (expr))
6968 return error_mark_node;
6970 intype = TREE_TYPE (expr);
6972 /* Save casted types in the function's used types hash table. */
6973 used_types_insert (type);
6975 /* [expr.reinterpret.cast]
6976 An lvalue expression of type T1 can be cast to the type
6977 "reference to T2" if an expression of type "pointer to T1" can be
6978 explicitly converted to the type "pointer to T2" using a
6979 reinterpret_cast. */
6980 if (TREE_CODE (type) == REFERENCE_TYPE)
6982 if (! real_lvalue_p (expr))
6984 if (complain & tf_error)
6985 error ("invalid cast of an rvalue expression of type "
6986 "%qT to type %qT",
6987 intype, type);
6988 return error_mark_node;
6991 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6992 "B" are related class types; the reinterpret_cast does not
6993 adjust the pointer. */
6994 if (TYPE_PTR_P (intype)
6995 && (complain & tf_warning)
6996 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6997 COMPARE_BASE | COMPARE_DERIVED)))
6998 warning (0, "casting %qT to %qT does not dereference pointer",
6999 intype, type);
7001 expr = cp_build_addr_expr (expr, complain);
7003 if (warn_strict_aliasing > 2)
7004 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
7006 if (expr != error_mark_node)
7007 expr = build_reinterpret_cast_1
7008 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
7009 valid_p, complain);
7010 if (expr != error_mark_node)
7011 /* cp_build_indirect_ref isn't right for rvalue refs. */
7012 expr = convert_from_reference (fold_convert (type, expr));
7013 return expr;
7016 /* As a G++ extension, we consider conversions from member
7017 functions, and pointers to member functions to
7018 pointer-to-function and pointer-to-void types. If
7019 -Wno-pmf-conversions has not been specified,
7020 convert_member_func_to_ptr will issue an error message. */
7021 if ((TYPE_PTRMEMFUNC_P (intype)
7022 || TREE_CODE (intype) == METHOD_TYPE)
7023 && TYPE_PTR_P (type)
7024 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
7025 || VOID_TYPE_P (TREE_TYPE (type))))
7026 return convert_member_func_to_ptr (type, expr, complain);
7028 /* If the cast is not to a reference type, the lvalue-to-rvalue,
7029 array-to-pointer, and function-to-pointer conversions are
7030 performed. */
7031 expr = decay_conversion (expr, complain);
7033 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7034 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7035 if (TREE_CODE (expr) == NOP_EXPR
7036 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7037 expr = TREE_OPERAND (expr, 0);
7039 if (error_operand_p (expr))
7040 return error_mark_node;
7042 intype = TREE_TYPE (expr);
7044 /* [expr.reinterpret.cast]
7045 A pointer can be converted to any integral type large enough to
7046 hold it. ... A value of type std::nullptr_t can be converted to
7047 an integral type; the conversion has the same meaning and
7048 validity as a conversion of (void*)0 to the integral type. */
7049 if (CP_INTEGRAL_TYPE_P (type)
7050 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
7052 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
7054 if (complain & tf_error)
7055 permerror (input_location, "cast from %qT to %qT loses precision",
7056 intype, type);
7057 else
7058 return error_mark_node;
7060 if (NULLPTR_TYPE_P (intype))
7061 return build_int_cst (type, 0);
7063 /* [expr.reinterpret.cast]
7064 A value of integral or enumeration type can be explicitly
7065 converted to a pointer. */
7066 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
7067 /* OK */
7069 else if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
7070 || TYPE_PTR_OR_PTRMEM_P (type))
7071 && same_type_p (type, intype))
7072 /* DR 799 */
7073 return rvalue (expr);
7074 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
7075 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
7076 return build_nop (type, expr);
7077 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
7078 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
7080 tree sexpr = expr;
7082 if (!c_cast_p
7083 && check_for_casting_away_constness (intype, type,
7084 REINTERPRET_CAST_EXPR,
7085 complain))
7086 return error_mark_node;
7087 /* Warn about possible alignment problems. */
7088 if (STRICT_ALIGNMENT && warn_cast_align
7089 && (complain & tf_warning)
7090 && !VOID_TYPE_P (type)
7091 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
7092 && COMPLETE_TYPE_P (TREE_TYPE (type))
7093 && COMPLETE_TYPE_P (TREE_TYPE (intype))
7094 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
7095 warning (OPT_Wcast_align, "cast from %qT to %qT "
7096 "increases required alignment of target type", intype, type);
7098 /* We need to strip nops here, because the front end likes to
7099 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
7100 STRIP_NOPS (sexpr);
7101 if (warn_strict_aliasing <= 2)
7102 strict_aliasing_warning (intype, type, sexpr);
7104 return build_nop (type, expr);
7106 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
7107 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
7109 if (complain & tf_warning)
7110 /* C++11 5.2.10 p8 says that "Converting a function pointer to an
7111 object pointer type or vice versa is conditionally-supported." */
7112 warning (OPT_Wconditionally_supported,
7113 "casting between pointer-to-function and pointer-to-object "
7114 "is conditionally-supported");
7115 return build_nop (type, expr);
7117 else if (VECTOR_TYPE_P (type))
7118 return convert_to_vector (type, expr);
7119 else if (VECTOR_TYPE_P (intype)
7120 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
7121 return convert_to_integer_nofold (type, expr);
7122 else
7124 if (valid_p)
7125 *valid_p = false;
7126 if (complain & tf_error)
7127 error ("invalid cast from type %qT to type %qT", intype, type);
7128 return error_mark_node;
7131 return cp_convert (type, expr, complain);
7134 tree
7135 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
7137 tree r;
7139 if (type == error_mark_node || expr == error_mark_node)
7140 return error_mark_node;
7142 if (processing_template_decl)
7144 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
7146 if (!TREE_SIDE_EFFECTS (t)
7147 && type_dependent_expression_p (expr))
7148 /* There might turn out to be side effects inside expr. */
7149 TREE_SIDE_EFFECTS (t) = 1;
7150 return convert_from_reference (t);
7153 r = build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
7154 /*valid_p=*/NULL, complain);
7155 if (r != error_mark_node)
7156 maybe_warn_about_useless_cast (type, expr, complain);
7157 return r;
7160 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
7161 return an appropriate expression. Otherwise, return
7162 error_mark_node. If the cast is not valid, and COMPLAIN is true,
7163 then a diagnostic will be issued. If VALID_P is non-NULL, we are
7164 performing a C-style cast, its value upon return will indicate
7165 whether or not the conversion succeeded. */
7167 static tree
7168 build_const_cast_1 (tree dst_type, tree expr, tsubst_flags_t complain,
7169 bool *valid_p)
7171 tree src_type;
7172 tree reference_type;
7174 /* Callers are responsible for handling error_mark_node as a
7175 destination type. */
7176 gcc_assert (dst_type != error_mark_node);
7177 /* In a template, callers should be building syntactic
7178 representations of casts, not using this machinery. */
7179 gcc_assert (!processing_template_decl);
7181 /* Assume the conversion is invalid. */
7182 if (valid_p)
7183 *valid_p = false;
7185 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRDATAMEM_P (dst_type))
7187 if (complain & tf_error)
7188 error ("invalid use of const_cast with type %qT, "
7189 "which is not a pointer, "
7190 "reference, nor a pointer-to-data-member type", dst_type);
7191 return error_mark_node;
7194 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
7196 if (complain & tf_error)
7197 error ("invalid use of const_cast with type %qT, which is a pointer "
7198 "or reference to a function type", dst_type);
7199 return error_mark_node;
7202 /* Save casted types in the function's used types hash table. */
7203 used_types_insert (dst_type);
7205 src_type = TREE_TYPE (expr);
7206 /* Expressions do not really have reference types. */
7207 if (TREE_CODE (src_type) == REFERENCE_TYPE)
7208 src_type = TREE_TYPE (src_type);
7210 /* [expr.const.cast]
7212 For two object types T1 and T2, if a pointer to T1 can be explicitly
7213 converted to the type "pointer to T2" using a const_cast, then the
7214 following conversions can also be made:
7216 -- an lvalue of type T1 can be explicitly converted to an lvalue of
7217 type T2 using the cast const_cast<T2&>;
7219 -- a glvalue of type T1 can be explicitly converted to an xvalue of
7220 type T2 using the cast const_cast<T2&&>; and
7222 -- if T1 is a class type, a prvalue of type T1 can be explicitly
7223 converted to an xvalue of type T2 using the cast const_cast<T2&&>. */
7225 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
7227 reference_type = dst_type;
7228 if (!TYPE_REF_IS_RVALUE (dst_type)
7229 ? real_lvalue_p (expr)
7230 : (CLASS_TYPE_P (TREE_TYPE (dst_type))
7231 ? lvalue_p (expr)
7232 : lvalue_or_rvalue_with_address_p (expr)))
7233 /* OK. */;
7234 else
7236 if (complain & tf_error)
7237 error ("invalid const_cast of an rvalue of type %qT to type %qT",
7238 src_type, dst_type);
7239 return error_mark_node;
7241 dst_type = build_pointer_type (TREE_TYPE (dst_type));
7242 src_type = build_pointer_type (src_type);
7244 else
7246 reference_type = NULL_TREE;
7247 /* If the destination type is not a reference type, the
7248 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
7249 conversions are performed. */
7250 src_type = type_decays_to (src_type);
7251 if (src_type == error_mark_node)
7252 return error_mark_node;
7255 if (TYPE_PTR_P (src_type) || TYPE_PTRDATAMEM_P (src_type))
7257 if (comp_ptr_ttypes_const (dst_type, src_type))
7259 if (valid_p)
7261 *valid_p = true;
7262 /* This cast is actually a C-style cast. Issue a warning if
7263 the user is making a potentially unsafe cast. */
7264 check_for_casting_away_constness (src_type, dst_type,
7265 CAST_EXPR, complain);
7267 if (reference_type)
7269 expr = cp_build_addr_expr (expr, complain);
7270 if (expr == error_mark_node)
7271 return error_mark_node;
7272 expr = build_nop (reference_type, expr);
7273 return convert_from_reference (expr);
7275 else
7277 expr = decay_conversion (expr, complain);
7278 if (expr == error_mark_node)
7279 return error_mark_node;
7281 /* build_c_cast puts on a NOP_EXPR to make the result not an
7282 lvalue. Strip such NOP_EXPRs if VALUE is being used in
7283 non-lvalue context. */
7284 if (TREE_CODE (expr) == NOP_EXPR
7285 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7286 expr = TREE_OPERAND (expr, 0);
7287 return build_nop (dst_type, expr);
7290 else if (valid_p
7291 && !at_least_as_qualified_p (TREE_TYPE (dst_type),
7292 TREE_TYPE (src_type)))
7293 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR,
7294 complain);
7297 if (complain & tf_error)
7298 error ("invalid const_cast from type %qT to type %qT",
7299 src_type, dst_type);
7300 return error_mark_node;
7303 tree
7304 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
7306 tree r;
7308 if (type == error_mark_node || error_operand_p (expr))
7309 return error_mark_node;
7311 if (processing_template_decl)
7313 tree t = build_min (CONST_CAST_EXPR, type, expr);
7315 if (!TREE_SIDE_EFFECTS (t)
7316 && type_dependent_expression_p (expr))
7317 /* There might turn out to be side effects inside expr. */
7318 TREE_SIDE_EFFECTS (t) = 1;
7319 return convert_from_reference (t);
7322 r = build_const_cast_1 (type, expr, complain, /*valid_p=*/NULL);
7323 if (r != error_mark_node)
7324 maybe_warn_about_useless_cast (type, expr, complain);
7325 return r;
7328 /* Like cp_build_c_cast, but for the c-common bits. */
7330 tree
7331 build_c_cast (location_t /*loc*/, tree type, tree expr)
7333 return cp_build_c_cast (type, expr, tf_warning_or_error);
7336 /* Like the "build_c_cast" used for c-common, but using cp_expr to
7337 preserve location information even for tree nodes that don't
7338 support it. */
7340 cp_expr
7341 build_c_cast (location_t loc, tree type, cp_expr expr)
7343 cp_expr result = cp_build_c_cast (type, expr, tf_warning_or_error);
7344 result.set_location (loc);
7345 return result;
7348 /* Build an expression representing an explicit C-style cast to type
7349 TYPE of expression EXPR. */
7351 tree
7352 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
7354 tree value = expr;
7355 tree result;
7356 bool valid_p;
7358 if (type == error_mark_node || error_operand_p (expr))
7359 return error_mark_node;
7361 if (processing_template_decl)
7363 tree t = build_min (CAST_EXPR, type,
7364 tree_cons (NULL_TREE, value, NULL_TREE));
7365 /* We don't know if it will or will not have side effects. */
7366 TREE_SIDE_EFFECTS (t) = 1;
7367 return convert_from_reference (t);
7370 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
7371 'Class') should always be retained, because this information aids
7372 in method lookup. */
7373 if (objc_is_object_ptr (type)
7374 && objc_is_object_ptr (TREE_TYPE (expr)))
7375 return build_nop (type, expr);
7377 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7378 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7379 if (TREE_CODE (type) != REFERENCE_TYPE
7380 && TREE_CODE (value) == NOP_EXPR
7381 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
7382 value = TREE_OPERAND (value, 0);
7384 if (TREE_CODE (type) == ARRAY_TYPE)
7386 /* Allow casting from T1* to T2[] because Cfront allows it.
7387 NIHCL uses it. It is not valid ISO C++ however. */
7388 if (TYPE_PTR_P (TREE_TYPE (expr)))
7390 if (complain & tf_error)
7391 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
7392 else
7393 return error_mark_node;
7394 type = build_pointer_type (TREE_TYPE (type));
7396 else
7398 if (complain & tf_error)
7399 error ("ISO C++ forbids casting to an array type %qT", type);
7400 return error_mark_node;
7404 if (TREE_CODE (type) == FUNCTION_TYPE
7405 || TREE_CODE (type) == METHOD_TYPE)
7407 if (complain & tf_error)
7408 error ("invalid cast to function type %qT", type);
7409 return error_mark_node;
7412 if (TYPE_PTR_P (type)
7413 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
7414 /* Casting to an integer of smaller size is an error detected elsewhere. */
7415 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
7416 /* Don't warn about converting any constant. */
7417 && !TREE_CONSTANT (value))
7418 warning_at (input_location, OPT_Wint_to_pointer_cast,
7419 "cast to pointer from integer of different size");
7421 /* A C-style cast can be a const_cast. */
7422 result = build_const_cast_1 (type, value, complain & tf_warning,
7423 &valid_p);
7424 if (valid_p)
7426 if (result != error_mark_node)
7427 maybe_warn_about_useless_cast (type, value, complain);
7428 return result;
7431 /* Or a static cast. */
7432 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
7433 &valid_p, complain);
7434 /* Or a reinterpret_cast. */
7435 if (!valid_p)
7436 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
7437 &valid_p, complain);
7438 /* The static_cast or reinterpret_cast may be followed by a
7439 const_cast. */
7440 if (valid_p
7441 /* A valid cast may result in errors if, for example, a
7442 conversion to an ambiguous base class is required. */
7443 && !error_operand_p (result))
7445 tree result_type;
7447 maybe_warn_about_useless_cast (type, value, complain);
7449 /* Non-class rvalues always have cv-unqualified type. */
7450 if (!CLASS_TYPE_P (type))
7451 type = TYPE_MAIN_VARIANT (type);
7452 result_type = TREE_TYPE (result);
7453 if (!CLASS_TYPE_P (result_type) && TREE_CODE (type) != REFERENCE_TYPE)
7454 result_type = TYPE_MAIN_VARIANT (result_type);
7455 /* If the type of RESULT does not match TYPE, perform a
7456 const_cast to make it match. If the static_cast or
7457 reinterpret_cast succeeded, we will differ by at most
7458 cv-qualification, so the follow-on const_cast is guaranteed
7459 to succeed. */
7460 if (!same_type_p (non_reference (type), non_reference (result_type)))
7462 result = build_const_cast_1 (type, result, false, &valid_p);
7463 gcc_assert (valid_p);
7465 return result;
7468 return error_mark_node;
7471 /* For use from the C common bits. */
7472 tree
7473 build_modify_expr (location_t /*location*/,
7474 tree lhs, tree /*lhs_origtype*/,
7475 enum tree_code modifycode,
7476 location_t /*rhs_location*/, tree rhs,
7477 tree /*rhs_origtype*/)
7479 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
7482 /* Build an assignment expression of lvalue LHS from value RHS.
7483 MODIFYCODE is the code for a binary operator that we use
7484 to combine the old value of LHS with RHS to get the new value.
7485 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
7487 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
7489 tree
7490 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
7491 tsubst_flags_t complain)
7493 tree result;
7494 tree newrhs = rhs;
7495 tree lhstype = TREE_TYPE (lhs);
7496 tree olhstype = lhstype;
7497 bool plain_assign = (modifycode == NOP_EXPR);
7499 /* Avoid duplicate error messages from operands that had errors. */
7500 if (error_operand_p (lhs) || error_operand_p (rhs))
7501 return error_mark_node;
7503 /* Handle control structure constructs used as "lvalues". */
7504 switch (TREE_CODE (lhs))
7506 /* Handle --foo = 5; as these are valid constructs in C++. */
7507 case PREDECREMENT_EXPR:
7508 case PREINCREMENT_EXPR:
7509 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
7510 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
7511 cp_stabilize_reference (TREE_OPERAND (lhs, 0)),
7512 TREE_OPERAND (lhs, 1));
7513 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
7514 modifycode, rhs, complain);
7515 if (newrhs == error_mark_node)
7516 return error_mark_node;
7517 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
7519 /* Handle (a, b) used as an "lvalue". */
7520 case COMPOUND_EXPR:
7521 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
7522 modifycode, rhs, complain);
7523 if (newrhs == error_mark_node)
7524 return error_mark_node;
7525 return build2 (COMPOUND_EXPR, lhstype,
7526 TREE_OPERAND (lhs, 0), newrhs);
7528 case MODIFY_EXPR:
7529 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
7530 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
7531 cp_stabilize_reference (TREE_OPERAND (lhs, 0)),
7532 TREE_OPERAND (lhs, 1));
7533 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
7534 complain);
7535 if (newrhs == error_mark_node)
7536 return error_mark_node;
7537 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
7539 case MIN_EXPR:
7540 case MAX_EXPR:
7541 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
7542 when neither operand has side-effects. */
7543 if (!lvalue_or_else (lhs, lv_assign, complain))
7544 return error_mark_node;
7546 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
7547 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
7549 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
7550 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
7551 boolean_type_node,
7552 TREE_OPERAND (lhs, 0),
7553 TREE_OPERAND (lhs, 1)),
7554 TREE_OPERAND (lhs, 0),
7555 TREE_OPERAND (lhs, 1));
7556 /* Fall through. */
7558 /* Handle (a ? b : c) used as an "lvalue". */
7559 case COND_EXPR:
7561 /* Produce (a ? (b = rhs) : (c = rhs))
7562 except that the RHS goes through a save-expr
7563 so the code to compute it is only emitted once. */
7564 tree cond;
7565 tree preeval = NULL_TREE;
7567 if (VOID_TYPE_P (TREE_TYPE (rhs)))
7569 if (complain & tf_error)
7570 error ("void value not ignored as it ought to be");
7571 return error_mark_node;
7574 rhs = stabilize_expr (rhs, &preeval);
7576 /* Check this here to avoid odd errors when trying to convert
7577 a throw to the type of the COND_EXPR. */
7578 if (!lvalue_or_else (lhs, lv_assign, complain))
7579 return error_mark_node;
7581 cond = build_conditional_expr
7582 (input_location, TREE_OPERAND (lhs, 0),
7583 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
7584 modifycode, rhs, complain),
7585 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
7586 modifycode, rhs, complain),
7587 complain);
7589 if (cond == error_mark_node)
7590 return cond;
7591 /* Make sure the code to compute the rhs comes out
7592 before the split. */
7593 if (preeval)
7594 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
7595 return cond;
7598 default:
7599 break;
7602 if (modifycode == INIT_EXPR)
7604 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
7605 /* Do the default thing. */;
7606 else if (TREE_CODE (rhs) == CONSTRUCTOR)
7608 /* Compound literal. */
7609 if (! same_type_p (TREE_TYPE (rhs), lhstype))
7610 /* Call convert to generate an error; see PR 11063. */
7611 rhs = convert (lhstype, rhs);
7612 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
7613 TREE_SIDE_EFFECTS (result) = 1;
7614 return result;
7616 else if (! MAYBE_CLASS_TYPE_P (lhstype))
7617 /* Do the default thing. */;
7618 else
7620 vec<tree, va_gc> *rhs_vec = make_tree_vector_single (rhs);
7621 result = build_special_member_call (lhs, complete_ctor_identifier,
7622 &rhs_vec, lhstype, LOOKUP_NORMAL,
7623 complain);
7624 release_tree_vector (rhs_vec);
7625 if (result == NULL_TREE)
7626 return error_mark_node;
7627 return result;
7630 else
7632 lhs = require_complete_type_sfinae (lhs, complain);
7633 if (lhs == error_mark_node)
7634 return error_mark_node;
7636 if (modifycode == NOP_EXPR)
7638 if (c_dialect_objc ())
7640 result = objc_maybe_build_modify_expr (lhs, rhs);
7641 if (result)
7642 return result;
7645 /* `operator=' is not an inheritable operator. */
7646 if (! MAYBE_CLASS_TYPE_P (lhstype))
7647 /* Do the default thing. */;
7648 else
7650 result = build_new_op (input_location, MODIFY_EXPR,
7651 LOOKUP_NORMAL, lhs, rhs,
7652 make_node (NOP_EXPR), /*overload=*/NULL,
7653 complain);
7654 if (result == NULL_TREE)
7655 return error_mark_node;
7656 return result;
7658 lhstype = olhstype;
7660 else
7662 tree init = NULL_TREE;
7664 /* A binary op has been requested. Combine the old LHS
7665 value with the RHS producing the value we should actually
7666 store into the LHS. */
7667 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
7668 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
7669 || MAYBE_CLASS_TYPE_P (lhstype)));
7671 /* Preevaluate the RHS to make sure its evaluation is complete
7672 before the lvalue-to-rvalue conversion of the LHS:
7674 [expr.ass] With respect to an indeterminately-sequenced
7675 function call, the operation of a compound assignment is a
7676 single evaluation. [ Note: Therefore, a function call shall
7677 not intervene between the lvalue-to-rvalue conversion and the
7678 side effect associated with any single compound assignment
7679 operator. -- end note ] */
7680 lhs = cp_stabilize_reference (lhs);
7681 rhs = rvalue (rhs);
7682 rhs = stabilize_expr (rhs, &init);
7683 newrhs = cp_build_binary_op (input_location,
7684 modifycode, lhs, rhs,
7685 complain);
7686 if (newrhs == error_mark_node)
7688 if (complain & tf_error)
7689 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
7690 TREE_TYPE (lhs), TREE_TYPE (rhs));
7691 return error_mark_node;
7694 if (init)
7695 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), init, newrhs);
7697 /* Now it looks like a plain assignment. */
7698 modifycode = NOP_EXPR;
7699 if (c_dialect_objc ())
7701 result = objc_maybe_build_modify_expr (lhs, newrhs);
7702 if (result)
7703 return result;
7706 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
7707 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
7710 /* The left-hand side must be an lvalue. */
7711 if (!lvalue_or_else (lhs, lv_assign, complain))
7712 return error_mark_node;
7714 /* Warn about modifying something that is `const'. Don't warn if
7715 this is initialization. */
7716 if (modifycode != INIT_EXPR
7717 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
7718 /* Functions are not modifiable, even though they are
7719 lvalues. */
7720 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
7721 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
7722 /* If it's an aggregate and any field is const, then it is
7723 effectively const. */
7724 || (CLASS_TYPE_P (lhstype)
7725 && C_TYPE_FIELDS_READONLY (lhstype))))
7727 if (complain & tf_error)
7728 cxx_readonly_error (lhs, lv_assign);
7729 else
7730 return error_mark_node;
7733 /* If storing into a structure or union member, it may have been given a
7734 lowered bitfield type. We need to convert to the declared type first,
7735 so retrieve it now. */
7737 olhstype = unlowered_expr_type (lhs);
7739 /* Convert new value to destination type. */
7741 if (TREE_CODE (lhstype) == ARRAY_TYPE)
7743 int from_array;
7745 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
7747 if (modifycode != INIT_EXPR)
7749 if (complain & tf_error)
7750 error ("assigning to an array from an initializer list");
7751 return error_mark_node;
7753 if (check_array_initializer (lhs, lhstype, newrhs))
7754 return error_mark_node;
7755 newrhs = digest_init (lhstype, newrhs, complain);
7756 if (newrhs == error_mark_node)
7757 return error_mark_node;
7760 /* C++11 8.5/17: "If the destination type is an array of characters,
7761 an array of char16_t, an array of char32_t, or an array of wchar_t,
7762 and the initializer is a string literal...". */
7763 else if (TREE_CODE (newrhs) == STRING_CST
7764 && char_type_p (TREE_TYPE (TYPE_MAIN_VARIANT (lhstype)))
7765 && modifycode == INIT_EXPR)
7767 newrhs = digest_init (lhstype, newrhs, complain);
7768 if (newrhs == error_mark_node)
7769 return error_mark_node;
7772 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
7773 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
7775 if (complain & tf_error)
7776 error ("incompatible types in assignment of %qT to %qT",
7777 TREE_TYPE (rhs), lhstype);
7778 return error_mark_node;
7781 /* Allow array assignment in compiler-generated code. */
7782 else if (!current_function_decl
7783 || !DECL_DEFAULTED_FN (current_function_decl))
7785 /* This routine is used for both initialization and assignment.
7786 Make sure the diagnostic message differentiates the context. */
7787 if (complain & tf_error)
7789 if (modifycode == INIT_EXPR)
7790 error ("array used as initializer");
7791 else
7792 error ("invalid array assignment");
7794 return error_mark_node;
7797 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
7798 ? 1 + (modifycode != INIT_EXPR): 0;
7799 return build_vec_init (lhs, NULL_TREE, newrhs,
7800 /*explicit_value_init_p=*/false,
7801 from_array, complain);
7804 if (modifycode == INIT_EXPR)
7805 /* Calls with INIT_EXPR are all direct-initialization, so don't set
7806 LOOKUP_ONLYCONVERTING. */
7807 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
7808 ICR_INIT, NULL_TREE, 0,
7809 complain);
7810 else
7811 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
7812 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
7814 if (!same_type_p (lhstype, olhstype))
7815 newrhs = cp_convert_and_check (lhstype, newrhs, complain);
7817 if (modifycode != INIT_EXPR)
7819 if (TREE_CODE (newrhs) == CALL_EXPR
7820 && TYPE_NEEDS_CONSTRUCTING (lhstype))
7821 newrhs = build_cplus_new (lhstype, newrhs, complain);
7823 /* Can't initialize directly from a TARGET_EXPR, since that would
7824 cause the lhs to be constructed twice, and possibly result in
7825 accidental self-initialization. So we force the TARGET_EXPR to be
7826 expanded without a target. */
7827 if (TREE_CODE (newrhs) == TARGET_EXPR)
7828 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
7829 TREE_OPERAND (newrhs, 0));
7832 if (newrhs == error_mark_node)
7833 return error_mark_node;
7835 if (c_dialect_objc () && flag_objc_gc)
7837 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
7839 if (result)
7840 return result;
7843 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
7844 lhstype, lhs, newrhs);
7846 TREE_SIDE_EFFECTS (result) = 1;
7847 if (!plain_assign)
7848 TREE_NO_WARNING (result) = 1;
7850 return result;
7853 cp_expr
7854 build_x_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
7855 tree rhs, tsubst_flags_t complain)
7857 tree orig_lhs = lhs;
7858 tree orig_rhs = rhs;
7859 tree overload = NULL_TREE;
7860 tree op = build_nt (modifycode, NULL_TREE, NULL_TREE);
7862 if (processing_template_decl)
7864 if (modifycode == NOP_EXPR
7865 || type_dependent_expression_p (lhs)
7866 || type_dependent_expression_p (rhs))
7867 return build_min_nt_loc (loc, MODOP_EXPR, lhs,
7868 build_min_nt_loc (loc, modifycode, NULL_TREE,
7869 NULL_TREE), rhs);
7871 lhs = build_non_dependent_expr (lhs);
7872 rhs = build_non_dependent_expr (rhs);
7875 if (modifycode != NOP_EXPR)
7877 tree rval = build_new_op (loc, MODIFY_EXPR, LOOKUP_NORMAL,
7878 lhs, rhs, op, &overload, complain);
7879 if (rval)
7881 if (rval == error_mark_node)
7882 return rval;
7883 TREE_NO_WARNING (rval) = 1;
7884 if (processing_template_decl)
7886 if (overload != NULL_TREE)
7887 return (build_min_non_dep_op_overload
7888 (MODIFY_EXPR, rval, overload, orig_lhs, orig_rhs));
7890 return (build_min_non_dep
7891 (MODOP_EXPR, rval, orig_lhs, op, orig_rhs));
7893 return rval;
7896 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
7899 /* Helper function for get_delta_difference which assumes FROM is a base
7900 class of TO. Returns a delta for the conversion of pointer-to-member
7901 of FROM to pointer-to-member of TO. If the conversion is invalid and
7902 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
7903 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
7904 If C_CAST_P is true, this conversion is taking place as part of a
7905 C-style cast. */
7907 static tree
7908 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
7909 tsubst_flags_t complain)
7911 tree binfo;
7912 base_kind kind;
7914 binfo = lookup_base (to, from, c_cast_p ? ba_unique : ba_check,
7915 &kind, complain);
7917 if (binfo == error_mark_node)
7919 if (!(complain & tf_error))
7920 return error_mark_node;
7922 error (" in pointer to member function conversion");
7923 return size_zero_node;
7925 else if (binfo)
7927 if (kind != bk_via_virtual)
7928 return BINFO_OFFSET (binfo);
7929 else
7930 /* FROM is a virtual base class of TO. Issue an error or warning
7931 depending on whether or not this is a reinterpret cast. */
7933 if (!(complain & tf_error))
7934 return error_mark_node;
7936 error ("pointer to member conversion via virtual base %qT",
7937 BINFO_TYPE (binfo_from_vbase (binfo)));
7939 return size_zero_node;
7942 else
7943 return NULL_TREE;
7946 /* Get difference in deltas for different pointer to member function
7947 types. If the conversion is invalid and tf_error is not set in
7948 COMPLAIN, returns error_mark_node, otherwise returns an integer
7949 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
7950 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
7951 conversions as well. If C_CAST_P is true this conversion is taking
7952 place as part of a C-style cast.
7954 Note that the naming of FROM and TO is kind of backwards; the return
7955 value is what we add to a TO in order to get a FROM. They are named
7956 this way because we call this function to find out how to convert from
7957 a pointer to member of FROM to a pointer to member of TO. */
7959 static tree
7960 get_delta_difference (tree from, tree to,
7961 bool allow_inverse_p,
7962 bool c_cast_p, tsubst_flags_t complain)
7964 tree result;
7966 if (same_type_ignoring_top_level_qualifiers_p (from, to))
7967 /* Pointer to member of incomplete class is permitted*/
7968 result = size_zero_node;
7969 else
7970 result = get_delta_difference_1 (from, to, c_cast_p, complain);
7972 if (result == error_mark_node)
7973 return error_mark_node;
7975 if (!result)
7977 if (!allow_inverse_p)
7979 if (!(complain & tf_error))
7980 return error_mark_node;
7982 error_not_base_type (from, to);
7983 error (" in pointer to member conversion");
7984 result = size_zero_node;
7986 else
7988 result = get_delta_difference_1 (to, from, c_cast_p, complain);
7990 if (result == error_mark_node)
7991 return error_mark_node;
7993 if (result)
7994 result = size_diffop_loc (input_location,
7995 size_zero_node, result);
7996 else
7998 if (!(complain & tf_error))
7999 return error_mark_node;
8001 error_not_base_type (from, to);
8002 error (" in pointer to member conversion");
8003 result = size_zero_node;
8008 return convert_to_integer (ptrdiff_type_node, result);
8011 /* Return a constructor for the pointer-to-member-function TYPE using
8012 the other components as specified. */
8014 tree
8015 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
8017 tree u = NULL_TREE;
8018 tree delta_field;
8019 tree pfn_field;
8020 vec<constructor_elt, va_gc> *v;
8022 /* Pull the FIELD_DECLs out of the type. */
8023 pfn_field = TYPE_FIELDS (type);
8024 delta_field = DECL_CHAIN (pfn_field);
8026 /* Make sure DELTA has the type we want. */
8027 delta = convert_and_check (input_location, delta_type_node, delta);
8029 /* Convert to the correct target type if necessary. */
8030 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
8032 /* Finish creating the initializer. */
8033 vec_alloc (v, 2);
8034 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
8035 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
8036 u = build_constructor (type, v);
8037 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
8038 TREE_STATIC (u) = (TREE_CONSTANT (u)
8039 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
8040 != NULL_TREE)
8041 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
8042 != NULL_TREE));
8043 return u;
8046 /* Build a constructor for a pointer to member function. It can be
8047 used to initialize global variables, local variable, or used
8048 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
8049 want to be.
8051 If FORCE is nonzero, then force this conversion, even if
8052 we would rather not do it. Usually set when using an explicit
8053 cast. A C-style cast is being processed iff C_CAST_P is true.
8055 Return error_mark_node, if something goes wrong. */
8057 tree
8058 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
8059 tsubst_flags_t complain)
8061 tree fn;
8062 tree pfn_type;
8063 tree to_type;
8065 if (error_operand_p (pfn))
8066 return error_mark_node;
8068 pfn_type = TREE_TYPE (pfn);
8069 to_type = build_ptrmemfunc_type (type);
8071 /* Handle multiple conversions of pointer to member functions. */
8072 if (TYPE_PTRMEMFUNC_P (pfn_type))
8074 tree delta = NULL_TREE;
8075 tree npfn = NULL_TREE;
8076 tree n;
8078 if (!force
8079 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn,
8080 LOOKUP_NORMAL, complain))
8082 if (complain & tf_error)
8083 error ("invalid conversion to type %qT from type %qT",
8084 to_type, pfn_type);
8085 else
8086 return error_mark_node;
8089 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
8090 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
8091 force,
8092 c_cast_p, complain);
8093 if (n == error_mark_node)
8094 return error_mark_node;
8096 /* We don't have to do any conversion to convert a
8097 pointer-to-member to its own type. But, we don't want to
8098 just return a PTRMEM_CST if there's an explicit cast; that
8099 cast should make the expression an invalid template argument. */
8100 if (TREE_CODE (pfn) != PTRMEM_CST)
8102 if (same_type_p (to_type, pfn_type))
8103 return pfn;
8104 else if (integer_zerop (n))
8105 return build_reinterpret_cast (to_type, pfn,
8106 complain);
8109 if (TREE_SIDE_EFFECTS (pfn))
8110 pfn = save_expr (pfn);
8112 /* Obtain the function pointer and the current DELTA. */
8113 if (TREE_CODE (pfn) == PTRMEM_CST)
8114 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
8115 else
8117 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
8118 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
8121 /* Just adjust the DELTA field. */
8122 gcc_assert (same_type_ignoring_top_level_qualifiers_p
8123 (TREE_TYPE (delta), ptrdiff_type_node));
8124 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
8125 n = cp_build_binary_op (input_location,
8126 LSHIFT_EXPR, n, integer_one_node,
8127 complain);
8128 delta = cp_build_binary_op (input_location,
8129 PLUS_EXPR, delta, n, complain);
8130 return build_ptrmemfunc1 (to_type, delta, npfn);
8133 /* Handle null pointer to member function conversions. */
8134 if (null_ptr_cst_p (pfn))
8136 pfn = cp_build_c_cast (type, pfn, complain);
8137 return build_ptrmemfunc1 (to_type,
8138 integer_zero_node,
8139 pfn);
8142 if (type_unknown_p (pfn))
8143 return instantiate_type (type, pfn, complain);
8145 fn = TREE_OPERAND (pfn, 0);
8146 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
8147 /* In a template, we will have preserved the
8148 OFFSET_REF. */
8149 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
8150 return make_ptrmem_cst (to_type, fn);
8153 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
8154 given by CST.
8156 ??? There is no consistency as to the types returned for the above
8157 values. Some code acts as if it were a sizetype and some as if it were
8158 integer_type_node. */
8160 void
8161 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
8163 tree type = TREE_TYPE (cst);
8164 tree fn = PTRMEM_CST_MEMBER (cst);
8165 tree ptr_class, fn_class;
8167 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
8169 /* The class that the function belongs to. */
8170 fn_class = DECL_CONTEXT (fn);
8172 /* The class that we're creating a pointer to member of. */
8173 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
8175 /* First, calculate the adjustment to the function's class. */
8176 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
8177 /*c_cast_p=*/0, tf_warning_or_error);
8179 if (!DECL_VIRTUAL_P (fn))
8180 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type),
8181 build_addr_func (fn, tf_warning_or_error));
8182 else
8184 /* If we're dealing with a virtual function, we have to adjust 'this'
8185 again, to point to the base which provides the vtable entry for
8186 fn; the call will do the opposite adjustment. */
8187 tree orig_class = DECL_CONTEXT (fn);
8188 tree binfo = binfo_or_else (orig_class, fn_class);
8189 *delta = fold_build2 (PLUS_EXPR, TREE_TYPE (*delta),
8190 *delta, BINFO_OFFSET (binfo));
8192 /* We set PFN to the vtable offset at which the function can be
8193 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
8194 case delta is shifted left, and then incremented). */
8195 *pfn = DECL_VINDEX (fn);
8196 *pfn = fold_build2 (MULT_EXPR, integer_type_node, *pfn,
8197 TYPE_SIZE_UNIT (vtable_entry_type));
8199 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
8201 case ptrmemfunc_vbit_in_pfn:
8202 *pfn = fold_build2 (PLUS_EXPR, integer_type_node, *pfn,
8203 integer_one_node);
8204 break;
8206 case ptrmemfunc_vbit_in_delta:
8207 *delta = fold_build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
8208 *delta, integer_one_node);
8209 *delta = fold_build2 (PLUS_EXPR, TREE_TYPE (*delta),
8210 *delta, integer_one_node);
8211 break;
8213 default:
8214 gcc_unreachable ();
8217 *pfn = fold_convert (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
8221 /* Return an expression for PFN from the pointer-to-member function
8222 given by T. */
8224 static tree
8225 pfn_from_ptrmemfunc (tree t)
8227 if (TREE_CODE (t) == PTRMEM_CST)
8229 tree delta;
8230 tree pfn;
8232 expand_ptrmemfunc_cst (t, &delta, &pfn);
8233 if (pfn)
8234 return pfn;
8237 return build_ptrmemfunc_access_expr (t, pfn_identifier);
8240 /* Return an expression for DELTA from the pointer-to-member function
8241 given by T. */
8243 static tree
8244 delta_from_ptrmemfunc (tree t)
8246 if (TREE_CODE (t) == PTRMEM_CST)
8248 tree delta;
8249 tree pfn;
8251 expand_ptrmemfunc_cst (t, &delta, &pfn);
8252 if (delta)
8253 return delta;
8256 return build_ptrmemfunc_access_expr (t, delta_identifier);
8259 /* Convert value RHS to type TYPE as preparation for an assignment to
8260 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
8261 implicit conversion is. If FNDECL is non-NULL, we are doing the
8262 conversion in order to pass the PARMNUMth argument of FNDECL.
8263 If FNDECL is NULL, we are doing the conversion in function pointer
8264 argument passing, conversion in initialization, etc. */
8266 static tree
8267 convert_for_assignment (tree type, tree rhs,
8268 impl_conv_rhs errtype, tree fndecl, int parmnum,
8269 tsubst_flags_t complain, int flags)
8271 tree rhstype;
8272 enum tree_code coder;
8274 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
8275 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
8276 rhs = TREE_OPERAND (rhs, 0);
8278 rhstype = TREE_TYPE (rhs);
8279 coder = TREE_CODE (rhstype);
8281 if (VECTOR_TYPE_P (type) && coder == VECTOR_TYPE
8282 && vector_types_convertible_p (type, rhstype, true))
8284 rhs = mark_rvalue_use (rhs);
8285 return convert (type, rhs);
8288 if (rhs == error_mark_node || rhstype == error_mark_node)
8289 return error_mark_node;
8290 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
8291 return error_mark_node;
8293 /* The RHS of an assignment cannot have void type. */
8294 if (coder == VOID_TYPE)
8296 if (complain & tf_error)
8297 error ("void value not ignored as it ought to be");
8298 return error_mark_node;
8301 if (c_dialect_objc ())
8303 int parmno;
8304 tree selector;
8305 tree rname = fndecl;
8307 switch (errtype)
8309 case ICR_ASSIGN:
8310 parmno = -1;
8311 break;
8312 case ICR_INIT:
8313 parmno = -2;
8314 break;
8315 default:
8316 selector = objc_message_selector ();
8317 parmno = parmnum;
8318 if (selector && parmno > 1)
8320 rname = selector;
8321 parmno -= 1;
8325 if (objc_compare_types (type, rhstype, parmno, rname))
8327 rhs = mark_rvalue_use (rhs);
8328 return convert (type, rhs);
8332 /* [expr.ass]
8334 The expression is implicitly converted (clause _conv_) to the
8335 cv-unqualified type of the left operand.
8337 We allow bad conversions here because by the time we get to this point
8338 we are committed to doing the conversion. If we end up doing a bad
8339 conversion, convert_like will complain. */
8340 if (!can_convert_arg_bad (type, rhstype, rhs, flags, complain))
8342 /* When -Wno-pmf-conversions is use, we just silently allow
8343 conversions from pointers-to-members to plain pointers. If
8344 the conversion doesn't work, cp_convert will complain. */
8345 if (!warn_pmf2ptr
8346 && TYPE_PTR_P (type)
8347 && TYPE_PTRMEMFUNC_P (rhstype))
8348 rhs = cp_convert (strip_top_quals (type), rhs, complain);
8349 else
8351 if (complain & tf_error)
8353 /* If the right-hand side has unknown type, then it is an
8354 overloaded function. Call instantiate_type to get error
8355 messages. */
8356 if (rhstype == unknown_type_node)
8357 instantiate_type (type, rhs, tf_warning_or_error);
8358 else if (fndecl)
8359 error ("cannot convert %qT to %qT for argument %qP to %qD",
8360 rhstype, type, parmnum, fndecl);
8361 else
8362 switch (errtype)
8364 case ICR_DEFAULT_ARGUMENT:
8365 error ("cannot convert %qT to %qT in default argument",
8366 rhstype, type);
8367 break;
8368 case ICR_ARGPASS:
8369 error ("cannot convert %qT to %qT in argument passing",
8370 rhstype, type);
8371 break;
8372 case ICR_CONVERTING:
8373 error ("cannot convert %qT to %qT",
8374 rhstype, type);
8375 break;
8376 case ICR_INIT:
8377 error ("cannot convert %qT to %qT in initialization",
8378 rhstype, type);
8379 break;
8380 case ICR_RETURN:
8381 error ("cannot convert %qT to %qT in return",
8382 rhstype, type);
8383 break;
8384 case ICR_ASSIGN:
8385 error ("cannot convert %qT to %qT in assignment",
8386 rhstype, type);
8387 break;
8388 default:
8389 gcc_unreachable();
8391 if (TYPE_PTR_P (rhstype)
8392 && TYPE_PTR_P (type)
8393 && CLASS_TYPE_P (TREE_TYPE (rhstype))
8394 && CLASS_TYPE_P (TREE_TYPE (type))
8395 && !COMPLETE_TYPE_P (TREE_TYPE (rhstype)))
8396 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL
8397 (TREE_TYPE (rhstype))),
8398 "class type %qT is incomplete", TREE_TYPE (rhstype));
8400 return error_mark_node;
8403 if (warn_suggest_attribute_format)
8405 const enum tree_code codel = TREE_CODE (type);
8406 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
8407 && coder == codel
8408 && check_missing_format_attribute (type, rhstype)
8409 && (complain & tf_warning))
8410 switch (errtype)
8412 case ICR_ARGPASS:
8413 case ICR_DEFAULT_ARGUMENT:
8414 if (fndecl)
8415 warning (OPT_Wsuggest_attribute_format,
8416 "parameter %qP of %qD might be a candidate "
8417 "for a format attribute", parmnum, fndecl);
8418 else
8419 warning (OPT_Wsuggest_attribute_format,
8420 "parameter might be a candidate "
8421 "for a format attribute");
8422 break;
8423 case ICR_CONVERTING:
8424 warning (OPT_Wsuggest_attribute_format,
8425 "target of conversion might be a candidate "
8426 "for a format attribute");
8427 break;
8428 case ICR_INIT:
8429 warning (OPT_Wsuggest_attribute_format,
8430 "target of initialization might be a candidate "
8431 "for a format attribute");
8432 break;
8433 case ICR_RETURN:
8434 warning (OPT_Wsuggest_attribute_format,
8435 "return type might be a candidate "
8436 "for a format attribute");
8437 break;
8438 case ICR_ASSIGN:
8439 warning (OPT_Wsuggest_attribute_format,
8440 "left-hand side of assignment might be a candidate "
8441 "for a format attribute");
8442 break;
8443 default:
8444 gcc_unreachable();
8448 /* If -Wparentheses, warn about a = b = c when a has type bool and b
8449 does not. */
8450 if (warn_parentheses
8451 && TREE_CODE (type) == BOOLEAN_TYPE
8452 && TREE_CODE (rhs) == MODIFY_EXPR
8453 && !TREE_NO_WARNING (rhs)
8454 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
8455 && (complain & tf_warning))
8457 location_t loc = EXPR_LOC_OR_LOC (rhs, input_location);
8459 warning_at (loc, OPT_Wparentheses,
8460 "suggest parentheses around assignment used as truth value");
8461 TREE_NO_WARNING (rhs) = 1;
8464 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
8465 complain, flags);
8468 /* Convert RHS to be of type TYPE.
8469 If EXP is nonzero, it is the target of the initialization.
8470 ERRTYPE indicates what kind of error the implicit conversion is.
8472 Two major differences between the behavior of
8473 `convert_for_assignment' and `convert_for_initialization'
8474 are that references are bashed in the former, while
8475 copied in the latter, and aggregates are assigned in
8476 the former (operator=) while initialized in the
8477 latter (X(X&)).
8479 If using constructor make sure no conversion operator exists, if one does
8480 exist, an ambiguity exists. */
8482 tree
8483 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
8484 impl_conv_rhs errtype, tree fndecl, int parmnum,
8485 tsubst_flags_t complain)
8487 enum tree_code codel = TREE_CODE (type);
8488 tree rhstype;
8489 enum tree_code coder;
8491 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
8492 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
8493 if (TREE_CODE (rhs) == NOP_EXPR
8494 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
8495 && codel != REFERENCE_TYPE)
8496 rhs = TREE_OPERAND (rhs, 0);
8498 if (type == error_mark_node
8499 || rhs == error_mark_node
8500 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
8501 return error_mark_node;
8503 if (MAYBE_CLASS_TYPE_P (non_reference (type)))
8505 else if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
8506 && TREE_CODE (type) != ARRAY_TYPE
8507 && (TREE_CODE (type) != REFERENCE_TYPE
8508 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
8509 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
8510 && !TYPE_REFFN_P (type))
8511 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
8512 rhs = decay_conversion (rhs, complain);
8514 rhstype = TREE_TYPE (rhs);
8515 coder = TREE_CODE (rhstype);
8517 if (coder == ERROR_MARK)
8518 return error_mark_node;
8520 /* We accept references to incomplete types, so we can
8521 return here before checking if RHS is of complete type. */
8523 if (codel == REFERENCE_TYPE)
8525 /* This should eventually happen in convert_arguments. */
8526 int savew = 0, savee = 0;
8528 if (fndecl)
8529 savew = warningcount + werrorcount, savee = errorcount;
8530 rhs = initialize_reference (type, rhs, flags, complain);
8532 if (fndecl
8533 && (warningcount + werrorcount > savew || errorcount > savee))
8534 inform (DECL_SOURCE_LOCATION (fndecl),
8535 "in passing argument %P of %qD", parmnum, fndecl);
8537 return rhs;
8540 if (exp != 0)
8541 exp = require_complete_type_sfinae (exp, complain);
8542 if (exp == error_mark_node)
8543 return error_mark_node;
8545 rhstype = non_reference (rhstype);
8547 type = complete_type (type);
8549 if (DIRECT_INIT_EXPR_P (type, rhs))
8550 /* Don't try to do copy-initialization if we already have
8551 direct-initialization. */
8552 return rhs;
8554 if (MAYBE_CLASS_TYPE_P (type))
8555 return perform_implicit_conversion_flags (type, rhs, complain, flags);
8557 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
8558 complain, flags);
8561 /* If RETVAL is the address of, or a reference to, a local variable or
8562 temporary give an appropriate warning and return true. */
8564 static bool
8565 maybe_warn_about_returning_address_of_local (tree retval)
8567 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
8568 tree whats_returned = retval;
8570 for (;;)
8572 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
8573 whats_returned = TREE_OPERAND (whats_returned, 1);
8574 else if (CONVERT_EXPR_P (whats_returned)
8575 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
8576 whats_returned = TREE_OPERAND (whats_returned, 0);
8577 else
8578 break;
8581 if (TREE_CODE (whats_returned) != ADDR_EXPR)
8582 return false;
8583 whats_returned = TREE_OPERAND (whats_returned, 0);
8585 while (TREE_CODE (whats_returned) == COMPONENT_REF
8586 || TREE_CODE (whats_returned) == ARRAY_REF)
8587 whats_returned = TREE_OPERAND (whats_returned, 0);
8589 if (TREE_CODE (valtype) == REFERENCE_TYPE)
8591 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
8592 || TREE_CODE (whats_returned) == TARGET_EXPR)
8594 warning (OPT_Wreturn_local_addr, "returning reference to temporary");
8595 return true;
8597 if (VAR_P (whats_returned)
8598 && DECL_NAME (whats_returned)
8599 && TEMP_NAME_P (DECL_NAME (whats_returned)))
8601 warning (OPT_Wreturn_local_addr, "reference to non-lvalue returned");
8602 return true;
8606 if (DECL_P (whats_returned)
8607 && DECL_NAME (whats_returned)
8608 && DECL_FUNCTION_SCOPE_P (whats_returned)
8609 && !is_capture_proxy (whats_returned)
8610 && !(TREE_STATIC (whats_returned)
8611 || TREE_PUBLIC (whats_returned)))
8613 if (TREE_CODE (valtype) == REFERENCE_TYPE)
8614 warning_at (DECL_SOURCE_LOCATION (whats_returned),
8615 OPT_Wreturn_local_addr,
8616 "reference to local variable %qD returned",
8617 whats_returned);
8618 else if (TREE_CODE (whats_returned) == LABEL_DECL)
8619 warning_at (DECL_SOURCE_LOCATION (whats_returned),
8620 OPT_Wreturn_local_addr, "address of label %qD returned",
8621 whats_returned);
8622 else
8623 warning_at (DECL_SOURCE_LOCATION (whats_returned),
8624 OPT_Wreturn_local_addr, "address of local variable %qD "
8625 "returned", whats_returned);
8626 return true;
8629 return false;
8632 /* Check that returning RETVAL from the current function is valid.
8633 Return an expression explicitly showing all conversions required to
8634 change RETVAL into the function return type, and to assign it to
8635 the DECL_RESULT for the function. Set *NO_WARNING to true if
8636 code reaches end of non-void function warning shouldn't be issued
8637 on this RETURN_EXPR. */
8639 tree
8640 check_return_expr (tree retval, bool *no_warning)
8642 tree result;
8643 /* The type actually returned by the function. */
8644 tree valtype;
8645 /* The type the function is declared to return, or void if
8646 the declared type is incomplete. */
8647 tree functype;
8648 int fn_returns_value_p;
8649 bool named_return_value_okay_p;
8651 *no_warning = false;
8653 if (flag_cilkplus && retval && contains_cilk_spawn_stmt (retval))
8655 error_at (EXPR_LOCATION (retval), "use of %<_Cilk_spawn%> in a return "
8656 "statement is not allowed");
8657 return NULL_TREE;
8660 /* A `volatile' function is one that isn't supposed to return, ever.
8661 (This is a G++ extension, used to get better code for functions
8662 that call the `volatile' function.) */
8663 if (TREE_THIS_VOLATILE (current_function_decl))
8664 warning (0, "function declared %<noreturn%> has a %<return%> statement");
8666 /* Check for various simple errors. */
8667 if (DECL_DESTRUCTOR_P (current_function_decl))
8669 if (retval)
8670 error ("returning a value from a destructor");
8671 return NULL_TREE;
8673 else if (DECL_CONSTRUCTOR_P (current_function_decl))
8675 if (in_function_try_handler)
8676 /* If a return statement appears in a handler of the
8677 function-try-block of a constructor, the program is ill-formed. */
8678 error ("cannot return from a handler of a function-try-block of a constructor");
8679 else if (retval)
8680 /* You can't return a value from a constructor. */
8681 error ("returning a value from a constructor");
8682 return NULL_TREE;
8685 const tree saved_retval = retval;
8687 if (processing_template_decl)
8689 current_function_returns_value = 1;
8691 if (check_for_bare_parameter_packs (retval))
8692 return error_mark_node;
8694 if (WILDCARD_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl)))
8695 || (retval != NULL_TREE
8696 && type_dependent_expression_p (retval)))
8697 return retval;
8700 functype = TREE_TYPE (TREE_TYPE (current_function_decl));
8702 /* Deduce auto return type from a return statement. */
8703 if (current_function_auto_return_pattern)
8705 tree auto_node;
8706 tree type;
8708 if (!retval && !is_auto (current_function_auto_return_pattern))
8710 /* Give a helpful error message. */
8711 error ("return-statement with no value, in function returning %qT",
8712 current_function_auto_return_pattern);
8713 inform (input_location, "only plain %<auto%> return type can be "
8714 "deduced to %<void%>");
8715 type = error_mark_node;
8717 else if (retval && BRACE_ENCLOSED_INITIALIZER_P (retval))
8719 error ("returning initializer list");
8720 type = error_mark_node;
8722 else
8724 if (!retval)
8725 retval = void_node;
8726 auto_node = type_uses_auto (current_function_auto_return_pattern);
8727 type = do_auto_deduction (current_function_auto_return_pattern,
8728 retval, auto_node);
8731 if (type == error_mark_node)
8732 /* Leave it. */;
8733 else if (functype == current_function_auto_return_pattern)
8734 apply_deduced_return_type (current_function_decl, type);
8735 else if (!same_type_p (type, functype))
8737 if (LAMBDA_FUNCTION_P (current_function_decl))
8738 error ("inconsistent types %qT and %qT deduced for "
8739 "lambda return type", functype, type);
8740 else
8741 error ("inconsistent deduction for auto return type: "
8742 "%qT and then %qT", functype, type);
8744 functype = type;
8747 result = DECL_RESULT (current_function_decl);
8748 valtype = TREE_TYPE (result);
8749 gcc_assert (valtype != NULL_TREE);
8750 fn_returns_value_p = !VOID_TYPE_P (valtype);
8752 /* Check for a return statement with no return value in a function
8753 that's supposed to return a value. */
8754 if (!retval && fn_returns_value_p)
8756 if (functype != error_mark_node)
8757 permerror (input_location, "return-statement with no value, in "
8758 "function returning %qT", valtype);
8759 /* Remember that this function did return. */
8760 current_function_returns_value = 1;
8761 /* And signal caller that TREE_NO_WARNING should be set on the
8762 RETURN_EXPR to avoid control reaches end of non-void function
8763 warnings in tree-cfg.c. */
8764 *no_warning = true;
8766 /* Check for a return statement with a value in a function that
8767 isn't supposed to return a value. */
8768 else if (retval && !fn_returns_value_p)
8770 if (VOID_TYPE_P (TREE_TYPE (retval)))
8771 /* You can return a `void' value from a function of `void'
8772 type. In that case, we have to evaluate the expression for
8773 its side-effects. */
8774 finish_expr_stmt (retval);
8775 else
8776 permerror (input_location, "return-statement with a value, in function "
8777 "returning 'void'");
8778 current_function_returns_null = 1;
8780 /* There's really no value to return, after all. */
8781 return NULL_TREE;
8783 else if (!retval)
8784 /* Remember that this function can sometimes return without a
8785 value. */
8786 current_function_returns_null = 1;
8787 else
8788 /* Remember that this function did return a value. */
8789 current_function_returns_value = 1;
8791 /* Check for erroneous operands -- but after giving ourselves a
8792 chance to provide an error about returning a value from a void
8793 function. */
8794 if (error_operand_p (retval))
8796 current_function_return_value = error_mark_node;
8797 return error_mark_node;
8800 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
8801 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
8802 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
8803 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
8804 && ! flag_check_new
8805 && retval && null_ptr_cst_p (retval))
8806 warning (0, "%<operator new%> must not return NULL unless it is "
8807 "declared %<throw()%> (or -fcheck-new is in effect)");
8809 /* Effective C++ rule 15. See also start_function. */
8810 if (warn_ecpp
8811 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
8813 bool warn = true;
8815 /* The function return type must be a reference to the current
8816 class. */
8817 if (TREE_CODE (valtype) == REFERENCE_TYPE
8818 && same_type_ignoring_top_level_qualifiers_p
8819 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
8821 /* Returning '*this' is obviously OK. */
8822 if (retval == current_class_ref)
8823 warn = false;
8824 /* If we are calling a function whose return type is the same of
8825 the current class reference, it is ok. */
8826 else if (INDIRECT_REF_P (retval)
8827 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
8828 warn = false;
8831 if (warn)
8832 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
8835 if (processing_template_decl)
8837 /* We should not have changed the return value. */
8838 gcc_assert (retval == saved_retval);
8839 return retval;
8842 /* The fabled Named Return Value optimization, as per [class.copy]/15:
8844 [...] For a function with a class return type, if the expression
8845 in the return statement is the name of a local object, and the cv-
8846 unqualified type of the local object is the same as the function
8847 return type, an implementation is permitted to omit creating the tem-
8848 porary object to hold the function return value [...]
8850 So, if this is a value-returning function that always returns the same
8851 local variable, remember it.
8853 It might be nice to be more flexible, and choose the first suitable
8854 variable even if the function sometimes returns something else, but
8855 then we run the risk of clobbering the variable we chose if the other
8856 returned expression uses the chosen variable somehow. And people expect
8857 this restriction, anyway. (jason 2000-11-19)
8859 See finish_function and finalize_nrv for the rest of this optimization. */
8861 named_return_value_okay_p =
8862 (retval != NULL_TREE
8863 /* Must be a local, automatic variable. */
8864 && VAR_P (retval)
8865 && DECL_CONTEXT (retval) == current_function_decl
8866 && ! TREE_STATIC (retval)
8867 /* And not a lambda or anonymous union proxy. */
8868 && !DECL_HAS_VALUE_EXPR_P (retval)
8869 && (DECL_ALIGN (retval) <= DECL_ALIGN (result))
8870 /* The cv-unqualified type of the returned value must be the
8871 same as the cv-unqualified return type of the
8872 function. */
8873 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
8874 (TYPE_MAIN_VARIANT (functype)))
8875 /* And the returned value must be non-volatile. */
8876 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
8878 if (fn_returns_value_p && flag_elide_constructors)
8880 if (named_return_value_okay_p
8881 && (current_function_return_value == NULL_TREE
8882 || current_function_return_value == retval))
8883 current_function_return_value = retval;
8884 else
8885 current_function_return_value = error_mark_node;
8888 /* We don't need to do any conversions when there's nothing being
8889 returned. */
8890 if (!retval)
8891 return NULL_TREE;
8893 /* Do any required conversions. */
8894 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
8895 /* No conversions are required. */
8897 else
8899 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
8901 /* The functype's return type will have been set to void, if it
8902 was an incomplete type. Just treat this as 'return;' */
8903 if (VOID_TYPE_P (functype))
8904 return error_mark_node;
8906 /* If we had an id-expression obfuscated by force_paren_expr, we need
8907 to undo it so we can try to treat it as an rvalue below. */
8908 retval = maybe_undo_parenthesized_ref (retval);
8910 /* Under C++11 [12.8/32 class.copy], a returned lvalue is sometimes
8911 treated as an rvalue for the purposes of overload resolution to
8912 favor move constructors over copy constructors.
8914 Note that these conditions are similar to, but not as strict as,
8915 the conditions for the named return value optimization. */
8916 if ((cxx_dialect != cxx98)
8917 && ((VAR_P (retval) && !DECL_HAS_VALUE_EXPR_P (retval))
8918 || TREE_CODE (retval) == PARM_DECL)
8919 && DECL_CONTEXT (retval) == current_function_decl
8920 && !TREE_STATIC (retval)
8921 /* This is only interesting for class type. */
8922 && CLASS_TYPE_P (functype))
8923 flags = flags | LOOKUP_PREFER_RVALUE;
8925 /* First convert the value to the function's return type, then
8926 to the type of return value's location to handle the
8927 case that functype is smaller than the valtype. */
8928 retval = convert_for_initialization
8929 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
8930 tf_warning_or_error);
8931 retval = convert (valtype, retval);
8933 /* If the conversion failed, treat this just like `return;'. */
8934 if (retval == error_mark_node)
8935 return retval;
8936 /* We can't initialize a register from a AGGR_INIT_EXPR. */
8937 else if (! cfun->returns_struct
8938 && TREE_CODE (retval) == TARGET_EXPR
8939 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
8940 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
8941 TREE_OPERAND (retval, 0));
8942 else if (maybe_warn_about_returning_address_of_local (retval))
8943 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
8944 build_zero_cst (TREE_TYPE (retval)));
8947 /* Actually copy the value returned into the appropriate location. */
8948 if (retval && retval != result)
8949 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
8951 return retval;
8955 /* Returns nonzero if the pointer-type FROM can be converted to the
8956 pointer-type TO via a qualification conversion. If CONSTP is -1,
8957 then we return nonzero if the pointers are similar, and the
8958 cv-qualification signature of FROM is a proper subset of that of TO.
8960 If CONSTP is positive, then all outer pointers have been
8961 const-qualified. */
8963 static int
8964 comp_ptr_ttypes_real (tree to, tree from, int constp)
8966 bool to_more_cv_qualified = false;
8967 bool is_opaque_pointer = false;
8969 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8971 if (TREE_CODE (to) != TREE_CODE (from))
8972 return 0;
8974 if (TREE_CODE (from) == OFFSET_TYPE
8975 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
8976 TYPE_OFFSET_BASETYPE (to)))
8977 return 0;
8979 /* Const and volatile mean something different for function types,
8980 so the usual checks are not appropriate. */
8981 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
8983 if (!at_least_as_qualified_p (to, from))
8984 return 0;
8986 if (!at_least_as_qualified_p (from, to))
8988 if (constp == 0)
8989 return 0;
8990 to_more_cv_qualified = true;
8993 if (constp > 0)
8994 constp &= TYPE_READONLY (to);
8997 if (VECTOR_TYPE_P (to))
8998 is_opaque_pointer = vector_targets_convertible_p (to, from);
9000 if (!TYPE_PTR_P (to) && !TYPE_PTRDATAMEM_P (to))
9001 return ((constp >= 0 || to_more_cv_qualified)
9002 && (is_opaque_pointer
9003 || same_type_ignoring_top_level_qualifiers_p (to, from)));
9007 /* When comparing, say, char ** to char const **, this function takes
9008 the 'char *' and 'char const *'. Do not pass non-pointer/reference
9009 types to this function. */
9012 comp_ptr_ttypes (tree to, tree from)
9014 return comp_ptr_ttypes_real (to, from, 1);
9017 /* Returns true iff FNTYPE is a non-class type that involves
9018 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
9019 if a parameter type is ill-formed. */
9021 bool
9022 error_type_p (const_tree type)
9024 tree t;
9026 switch (TREE_CODE (type))
9028 case ERROR_MARK:
9029 return true;
9031 case POINTER_TYPE:
9032 case REFERENCE_TYPE:
9033 case OFFSET_TYPE:
9034 return error_type_p (TREE_TYPE (type));
9036 case FUNCTION_TYPE:
9037 case METHOD_TYPE:
9038 if (error_type_p (TREE_TYPE (type)))
9039 return true;
9040 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
9041 if (error_type_p (TREE_VALUE (t)))
9042 return true;
9043 return false;
9045 case RECORD_TYPE:
9046 if (TYPE_PTRMEMFUNC_P (type))
9047 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
9048 return false;
9050 default:
9051 return false;
9055 /* Returns true if to and from are (possibly multi-level) pointers to the same
9056 type or inheritance-related types, regardless of cv-quals. */
9058 bool
9059 ptr_reasonably_similar (const_tree to, const_tree from)
9061 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
9063 /* Any target type is similar enough to void. */
9064 if (VOID_TYPE_P (to))
9065 return !error_type_p (from);
9066 if (VOID_TYPE_P (from))
9067 return !error_type_p (to);
9069 if (TREE_CODE (to) != TREE_CODE (from))
9070 return false;
9072 if (TREE_CODE (from) == OFFSET_TYPE
9073 && comptypes (TYPE_OFFSET_BASETYPE (to),
9074 TYPE_OFFSET_BASETYPE (from),
9075 COMPARE_BASE | COMPARE_DERIVED))
9076 continue;
9078 if (VECTOR_TYPE_P (to)
9079 && vector_types_convertible_p (to, from, false))
9080 return true;
9082 if (TREE_CODE (to) == INTEGER_TYPE
9083 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
9084 return true;
9086 if (TREE_CODE (to) == FUNCTION_TYPE)
9087 return !error_type_p (to) && !error_type_p (from);
9089 if (!TYPE_PTR_P (to))
9091 /* When either type is incomplete avoid DERIVED_FROM_P,
9092 which may call complete_type (c++/57942). */
9093 bool b = !COMPLETE_TYPE_P (to) || !COMPLETE_TYPE_P (from);
9094 return comptypes
9095 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
9096 b ? COMPARE_STRICT : COMPARE_BASE | COMPARE_DERIVED);
9101 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
9102 pointer-to-member types) are the same, ignoring cv-qualification at
9103 all levels. */
9105 bool
9106 comp_ptr_ttypes_const (tree to, tree from)
9108 bool is_opaque_pointer = false;
9110 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
9112 if (TREE_CODE (to) != TREE_CODE (from))
9113 return false;
9115 if (TREE_CODE (from) == OFFSET_TYPE
9116 && same_type_p (TYPE_OFFSET_BASETYPE (from),
9117 TYPE_OFFSET_BASETYPE (to)))
9118 continue;
9120 if (VECTOR_TYPE_P (to))
9121 is_opaque_pointer = vector_targets_convertible_p (to, from);
9123 if (!TYPE_PTR_P (to))
9124 return (is_opaque_pointer
9125 || same_type_ignoring_top_level_qualifiers_p (to, from));
9129 /* Returns the type qualifiers for this type, including the qualifiers on the
9130 elements for an array type. */
9133 cp_type_quals (const_tree type)
9135 int quals;
9136 /* This CONST_CAST is okay because strip_array_types returns its
9137 argument unmodified and we assign it to a const_tree. */
9138 type = strip_array_types (CONST_CAST_TREE (type));
9139 if (type == error_mark_node
9140 /* Quals on a FUNCTION_TYPE are memfn quals. */
9141 || TREE_CODE (type) == FUNCTION_TYPE)
9142 return TYPE_UNQUALIFIED;
9143 quals = TYPE_QUALS (type);
9144 /* METHOD and REFERENCE_TYPEs should never have quals. */
9145 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
9146 && TREE_CODE (type) != REFERENCE_TYPE)
9147 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
9148 == TYPE_UNQUALIFIED));
9149 return quals;
9152 /* Returns the function-ref-qualifier for TYPE */
9154 cp_ref_qualifier
9155 type_memfn_rqual (const_tree type)
9157 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE
9158 || TREE_CODE (type) == METHOD_TYPE);
9160 if (!FUNCTION_REF_QUALIFIED (type))
9161 return REF_QUAL_NONE;
9162 else if (FUNCTION_RVALUE_QUALIFIED (type))
9163 return REF_QUAL_RVALUE;
9164 else
9165 return REF_QUAL_LVALUE;
9168 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
9169 METHOD_TYPE. */
9172 type_memfn_quals (const_tree type)
9174 if (TREE_CODE (type) == FUNCTION_TYPE)
9175 return TYPE_QUALS (type);
9176 else if (TREE_CODE (type) == METHOD_TYPE)
9177 return cp_type_quals (class_of_this_parm (type));
9178 else
9179 gcc_unreachable ();
9182 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
9183 MEMFN_QUALS and its ref-qualifier to RQUAL. */
9185 tree
9186 apply_memfn_quals (tree type, cp_cv_quals memfn_quals, cp_ref_qualifier rqual)
9188 /* Could handle METHOD_TYPE here if necessary. */
9189 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
9190 if (TYPE_QUALS (type) == memfn_quals
9191 && type_memfn_rqual (type) == rqual)
9192 return type;
9194 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
9195 complex. */
9196 tree result = build_qualified_type (type, memfn_quals);
9197 if (tree canon = TYPE_CANONICAL (result))
9198 if (canon != result)
9199 /* check_qualified_type doesn't check the ref-qualifier, so make sure
9200 TYPE_CANONICAL is correct. */
9201 TYPE_CANONICAL (result)
9202 = build_ref_qualified_type (canon, type_memfn_rqual (result));
9203 result = build_exception_variant (result, TYPE_RAISES_EXCEPTIONS (type));
9204 return build_ref_qualified_type (result, rqual);
9207 /* Returns nonzero if TYPE is const or volatile. */
9209 bool
9210 cv_qualified_p (const_tree type)
9212 int quals = cp_type_quals (type);
9213 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
9216 /* Returns nonzero if the TYPE contains a mutable member. */
9218 bool
9219 cp_has_mutable_p (const_tree type)
9221 /* This CONST_CAST is okay because strip_array_types returns its
9222 argument unmodified and we assign it to a const_tree. */
9223 type = strip_array_types (CONST_CAST_TREE(type));
9225 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
9228 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
9229 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
9230 approximation. In particular, consider:
9232 int f();
9233 struct S { int i; };
9234 const S s = { f(); }
9236 Here, we will make "s" as TREE_READONLY (because it is declared
9237 "const") -- only to reverse ourselves upon seeing that the
9238 initializer is non-constant. */
9240 void
9241 cp_apply_type_quals_to_decl (int type_quals, tree decl)
9243 tree type = TREE_TYPE (decl);
9245 if (type == error_mark_node)
9246 return;
9248 if (TREE_CODE (decl) == TYPE_DECL)
9249 return;
9251 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
9252 && type_quals != TYPE_UNQUALIFIED));
9254 /* Avoid setting TREE_READONLY incorrectly. */
9255 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
9256 constructor can produce constant init, so rely on cp_finish_decl to
9257 clear TREE_READONLY if the variable has non-constant init. */
9259 /* If the type has (or might have) a mutable component, that component
9260 might be modified. */
9261 if (TYPE_HAS_MUTABLE_P (type) || !COMPLETE_TYPE_P (type))
9262 type_quals &= ~TYPE_QUAL_CONST;
9264 c_apply_type_quals_to_decl (type_quals, decl);
9267 /* Subroutine of casts_away_constness. Make T1 and T2 point at
9268 exemplar types such that casting T1 to T2 is casting away constness
9269 if and only if there is no implicit conversion from T1 to T2. */
9271 static void
9272 casts_away_constness_r (tree *t1, tree *t2, tsubst_flags_t complain)
9274 int quals1;
9275 int quals2;
9277 /* [expr.const.cast]
9279 For multi-level pointer to members and multi-level mixed pointers
9280 and pointers to members (conv.qual), the "member" aspect of a
9281 pointer to member level is ignored when determining if a const
9282 cv-qualifier has been cast away. */
9283 /* [expr.const.cast]
9285 For two pointer types:
9287 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
9288 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
9289 K is min(N,M)
9291 casting from X1 to X2 casts away constness if, for a non-pointer
9292 type T there does not exist an implicit conversion (clause
9293 _conv_) from:
9295 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
9299 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
9300 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRDATAMEM_P (*t1))
9301 || (!TYPE_PTR_P (*t2) && !TYPE_PTRDATAMEM_P (*t2)))
9303 *t1 = cp_build_qualified_type (void_type_node,
9304 cp_type_quals (*t1));
9305 *t2 = cp_build_qualified_type (void_type_node,
9306 cp_type_quals (*t2));
9307 return;
9310 quals1 = cp_type_quals (*t1);
9311 quals2 = cp_type_quals (*t2);
9313 if (TYPE_PTRDATAMEM_P (*t1))
9314 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
9315 else
9316 *t1 = TREE_TYPE (*t1);
9317 if (TYPE_PTRDATAMEM_P (*t2))
9318 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
9319 else
9320 *t2 = TREE_TYPE (*t2);
9322 casts_away_constness_r (t1, t2, complain);
9323 *t1 = build_pointer_type (*t1);
9324 *t2 = build_pointer_type (*t2);
9325 *t1 = cp_build_qualified_type (*t1, quals1);
9326 *t2 = cp_build_qualified_type (*t2, quals2);
9329 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
9330 constness.
9332 ??? This function returns non-zero if casting away qualifiers not
9333 just const. We would like to return to the caller exactly which
9334 qualifiers are casted away to give more accurate diagnostics.
9337 static bool
9338 casts_away_constness (tree t1, tree t2, tsubst_flags_t complain)
9340 if (TREE_CODE (t2) == REFERENCE_TYPE)
9342 /* [expr.const.cast]
9344 Casting from an lvalue of type T1 to an lvalue of type T2
9345 using a reference cast casts away constness if a cast from an
9346 rvalue of type "pointer to T1" to the type "pointer to T2"
9347 casts away constness. */
9348 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
9349 return casts_away_constness (build_pointer_type (t1),
9350 build_pointer_type (TREE_TYPE (t2)),
9351 complain);
9354 if (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
9355 /* [expr.const.cast]
9357 Casting from an rvalue of type "pointer to data member of X
9358 of type T1" to the type "pointer to data member of Y of type
9359 T2" casts away constness if a cast from an rvalue of type
9360 "pointer to T1" to the type "pointer to T2" casts away
9361 constness. */
9362 return casts_away_constness
9363 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
9364 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)),
9365 complain);
9367 /* Casting away constness is only something that makes sense for
9368 pointer or reference types. */
9369 if (!TYPE_PTR_P (t1) || !TYPE_PTR_P (t2))
9370 return false;
9372 /* Top-level qualifiers don't matter. */
9373 t1 = TYPE_MAIN_VARIANT (t1);
9374 t2 = TYPE_MAIN_VARIANT (t2);
9375 casts_away_constness_r (&t1, &t2, complain);
9376 if (!can_convert (t2, t1, complain))
9377 return true;
9379 return false;
9382 /* If T is a REFERENCE_TYPE return the type to which T refers.
9383 Otherwise, return T itself. */
9385 tree
9386 non_reference (tree t)
9388 if (t && TREE_CODE (t) == REFERENCE_TYPE)
9389 t = TREE_TYPE (t);
9390 return t;
9394 /* Return nonzero if REF is an lvalue valid for this language;
9395 otherwise, print an error message and return zero. USE says
9396 how the lvalue is being used and so selects the error message. */
9399 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
9401 cp_lvalue_kind kind = lvalue_kind (ref);
9403 if (kind == clk_none)
9405 if (complain & tf_error)
9406 lvalue_error (input_location, use);
9407 return 0;
9409 else if (kind & (clk_rvalueref|clk_class))
9411 if (!(complain & tf_error))
9412 return 0;
9413 if (kind & clk_class)
9414 /* Make this a permerror because we used to accept it. */
9415 permerror (input_location, "using temporary as lvalue");
9416 else
9417 error ("using xvalue (rvalue reference) as lvalue");
9419 return 1;
9422 /* Return true if a user-defined literal operator is a raw operator. */
9424 bool
9425 check_raw_literal_operator (const_tree decl)
9427 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9428 tree argtype;
9429 int arity;
9430 bool maybe_raw_p = false;
9432 /* Count the number and type of arguments and check for ellipsis. */
9433 for (argtype = argtypes, arity = 0;
9434 argtype && argtype != void_list_node;
9435 ++arity, argtype = TREE_CHAIN (argtype))
9437 tree t = TREE_VALUE (argtype);
9439 if (same_type_p (t, const_string_type_node))
9440 maybe_raw_p = true;
9442 if (!argtype)
9443 return false; /* Found ellipsis. */
9445 if (!maybe_raw_p || arity != 1)
9446 return false;
9448 return true;
9452 /* Return true if a user-defined literal operator has one of the allowed
9453 argument types. */
9455 bool
9456 check_literal_operator_args (const_tree decl,
9457 bool *long_long_unsigned_p, bool *long_double_p)
9459 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9461 *long_long_unsigned_p = false;
9462 *long_double_p = false;
9463 if (processing_template_decl || processing_specialization)
9464 return argtypes == void_list_node;
9465 else
9467 tree argtype;
9468 int arity;
9469 int max_arity = 2;
9471 /* Count the number and type of arguments and check for ellipsis. */
9472 for (argtype = argtypes, arity = 0;
9473 argtype && argtype != void_list_node;
9474 argtype = TREE_CHAIN (argtype))
9476 tree t = TREE_VALUE (argtype);
9477 ++arity;
9479 if (TYPE_PTR_P (t))
9481 bool maybe_raw_p = false;
9482 t = TREE_TYPE (t);
9483 if (cp_type_quals (t) != TYPE_QUAL_CONST)
9484 return false;
9485 t = TYPE_MAIN_VARIANT (t);
9486 if ((maybe_raw_p = same_type_p (t, char_type_node))
9487 || same_type_p (t, wchar_type_node)
9488 || same_type_p (t, char16_type_node)
9489 || same_type_p (t, char32_type_node))
9491 argtype = TREE_CHAIN (argtype);
9492 if (!argtype)
9493 return false;
9494 t = TREE_VALUE (argtype);
9495 if (maybe_raw_p && argtype == void_list_node)
9496 return true;
9497 else if (same_type_p (t, size_type_node))
9499 ++arity;
9500 continue;
9502 else
9503 return false;
9506 else if (same_type_p (t, long_long_unsigned_type_node))
9508 max_arity = 1;
9509 *long_long_unsigned_p = true;
9511 else if (same_type_p (t, long_double_type_node))
9513 max_arity = 1;
9514 *long_double_p = true;
9516 else if (same_type_p (t, char_type_node))
9517 max_arity = 1;
9518 else if (same_type_p (t, wchar_type_node))
9519 max_arity = 1;
9520 else if (same_type_p (t, char16_type_node))
9521 max_arity = 1;
9522 else if (same_type_p (t, char32_type_node))
9523 max_arity = 1;
9524 else
9525 return false;
9527 if (!argtype)
9528 return false; /* Found ellipsis. */
9530 if (arity != max_arity)
9531 return false;
9533 return true;
9537 /* Always returns false since unlike C90, C++ has no concept of implicit
9538 function declarations. */
9540 bool
9541 c_decl_implicit (const_tree)
9543 return false;