generic-match-head.c (types_match): Handle non-types.
[official-gcc.git] / gcc / cp / typeck.c
blob549e4b161f5b0bd9da486694d4883aeacb705a13
1 /* Build expressions with type checking for C++ compiler.
2 Copyright (C) 1987-2015 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 "tm.h"
31 #include "hash-set.h"
32 #include "machmode.h"
33 #include "vec.h"
34 #include "double-int.h"
35 #include "input.h"
36 #include "alias.h"
37 #include "symtab.h"
38 #include "wide-int.h"
39 #include "inchash.h"
40 #include "tree.h"
41 #include "fold-const.h"
42 #include "stor-layout.h"
43 #include "varasm.h"
44 #include "cp-tree.h"
45 #include "flags.h"
46 #include "diagnostic.h"
47 #include "intl.h"
48 #include "target.h"
49 #include "convert.h"
50 #include "c-family/c-common.h"
51 #include "c-family/c-objc.h"
52 #include "c-family/c-ubsan.h"
53 #include "params.h"
55 static tree cp_build_addr_expr_strict (tree, tsubst_flags_t);
56 static tree cp_build_function_call (tree, tree, tsubst_flags_t);
57 static tree pfn_from_ptrmemfunc (tree);
58 static tree delta_from_ptrmemfunc (tree);
59 static tree convert_for_assignment (tree, tree, impl_conv_rhs, tree, int,
60 tsubst_flags_t, int);
61 static tree cp_pointer_int_sum (enum tree_code, tree, tree, tsubst_flags_t);
62 static tree rationalize_conditional_expr (enum tree_code, tree,
63 tsubst_flags_t);
64 static int comp_ptr_ttypes_real (tree, tree, int);
65 static bool comp_except_types (tree, tree, bool);
66 static bool comp_array_types (const_tree, const_tree, bool);
67 static tree pointer_diff (tree, tree, tree, tsubst_flags_t);
68 static tree get_delta_difference (tree, tree, bool, bool, tsubst_flags_t);
69 static void casts_away_constness_r (tree *, tree *, tsubst_flags_t);
70 static bool casts_away_constness (tree, tree, tsubst_flags_t);
71 static bool maybe_warn_about_returning_address_of_local (tree);
72 static tree lookup_destructor (tree, tree, tree, tsubst_flags_t);
73 static void warn_args_num (location_t, tree, bool);
74 static int convert_arguments (tree, vec<tree, va_gc> **, tree, int,
75 tsubst_flags_t);
77 /* Do `exp = require_complete_type (exp);' to make sure exp
78 does not have an incomplete type. (That includes void types.)
79 Returns error_mark_node if the VALUE does not have
80 complete type when this function returns. */
82 tree
83 require_complete_type_sfinae (tree value, tsubst_flags_t complain)
85 tree type;
87 if (processing_template_decl || value == error_mark_node)
88 return value;
90 if (TREE_CODE (value) == OVERLOAD)
91 type = unknown_type_node;
92 else
93 type = TREE_TYPE (value);
95 if (type == error_mark_node)
96 return error_mark_node;
98 /* First, detect a valid value with a complete type. */
99 if (COMPLETE_TYPE_P (type))
100 return value;
102 if (complete_type_or_maybe_complain (type, value, complain))
103 return value;
104 else
105 return error_mark_node;
108 tree
109 require_complete_type (tree value)
111 return require_complete_type_sfinae (value, tf_warning_or_error);
114 /* Try to complete TYPE, if it is incomplete. For example, if TYPE is
115 a template instantiation, do the instantiation. Returns TYPE,
116 whether or not it could be completed, unless something goes
117 horribly wrong, in which case the error_mark_node is returned. */
119 tree
120 complete_type (tree type)
122 if (type == NULL_TREE)
123 /* Rather than crash, we return something sure to cause an error
124 at some point. */
125 return error_mark_node;
127 if (type == error_mark_node || COMPLETE_TYPE_P (type))
129 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
131 tree t = complete_type (TREE_TYPE (type));
132 unsigned int needs_constructing, has_nontrivial_dtor;
133 if (COMPLETE_TYPE_P (t) && !dependent_type_p (type))
134 layout_type (type);
135 needs_constructing
136 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
137 has_nontrivial_dtor
138 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
139 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
141 TYPE_NEEDS_CONSTRUCTING (t) = needs_constructing;
142 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = has_nontrivial_dtor;
145 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
146 instantiate_class_template (TYPE_MAIN_VARIANT (type));
148 return type;
151 /* Like complete_type, but issue an error if the TYPE cannot be completed.
152 VALUE is used for informative diagnostics.
153 Returns NULL_TREE if the type cannot be made complete. */
155 tree
156 complete_type_or_maybe_complain (tree type, tree value, tsubst_flags_t complain)
158 type = complete_type (type);
159 if (type == error_mark_node)
160 /* We already issued an error. */
161 return NULL_TREE;
162 else if (!COMPLETE_TYPE_P (type))
164 if (complain & tf_error)
165 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
166 return NULL_TREE;
168 else
169 return type;
172 tree
173 complete_type_or_else (tree type, tree value)
175 return complete_type_or_maybe_complain (type, value, tf_warning_or_error);
178 /* Return truthvalue of whether type of EXP is instantiated. */
181 type_unknown_p (const_tree exp)
183 return (TREE_CODE (exp) == TREE_LIST
184 || TREE_TYPE (exp) == unknown_type_node);
188 /* Return the common type of two parameter lists.
189 We assume that comptypes has already been done and returned 1;
190 if that isn't so, this may crash.
192 As an optimization, free the space we allocate if the parameter
193 lists are already common. */
195 static tree
196 commonparms (tree p1, tree p2)
198 tree oldargs = p1, newargs, n;
199 int i, len;
200 int any_change = 0;
202 len = list_length (p1);
203 newargs = tree_last (p1);
205 if (newargs == void_list_node)
206 i = 1;
207 else
209 i = 0;
210 newargs = 0;
213 for (; i < len; i++)
214 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
216 n = newargs;
218 for (i = 0; p1;
219 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
221 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
223 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
224 any_change = 1;
226 else if (! TREE_PURPOSE (p1))
228 if (TREE_PURPOSE (p2))
230 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
231 any_change = 1;
234 else
236 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
237 any_change = 1;
238 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
240 if (TREE_VALUE (p1) != TREE_VALUE (p2))
242 any_change = 1;
243 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
245 else
246 TREE_VALUE (n) = TREE_VALUE (p1);
248 if (! any_change)
249 return oldargs;
251 return newargs;
254 /* Given a type, perhaps copied for a typedef,
255 find the "original" version of it. */
256 static tree
257 original_type (tree t)
259 int quals = cp_type_quals (t);
260 while (t != error_mark_node
261 && TYPE_NAME (t) != NULL_TREE)
263 tree x = TYPE_NAME (t);
264 if (TREE_CODE (x) != TYPE_DECL)
265 break;
266 x = DECL_ORIGINAL_TYPE (x);
267 if (x == NULL_TREE)
268 break;
269 t = x;
271 return cp_build_qualified_type (t, quals);
274 /* Return the common type for two arithmetic types T1 and T2 under the
275 usual arithmetic conversions. The default conversions have already
276 been applied, and enumerated types converted to their compatible
277 integer types. */
279 static tree
280 cp_common_type (tree t1, tree t2)
282 enum tree_code code1 = TREE_CODE (t1);
283 enum tree_code code2 = TREE_CODE (t2);
284 tree attributes;
285 int i;
288 /* In what follows, we slightly generalize the rules given in [expr] so
289 as to deal with `long long' and `complex'. First, merge the
290 attributes. */
291 attributes = (*targetm.merge_type_attributes) (t1, t2);
293 if (SCOPED_ENUM_P (t1) || SCOPED_ENUM_P (t2))
295 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
296 return build_type_attribute_variant (t1, attributes);
297 else
298 return NULL_TREE;
301 /* FIXME: Attributes. */
302 gcc_assert (ARITHMETIC_TYPE_P (t1)
303 || TREE_CODE (t1) == VECTOR_TYPE
304 || UNSCOPED_ENUM_P (t1));
305 gcc_assert (ARITHMETIC_TYPE_P (t2)
306 || TREE_CODE (t2) == VECTOR_TYPE
307 || UNSCOPED_ENUM_P (t2));
309 /* If one type is complex, form the common type of the non-complex
310 components, then make that complex. Use T1 or T2 if it is the
311 required type. */
312 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
314 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
315 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
316 tree subtype
317 = type_after_usual_arithmetic_conversions (subtype1, subtype2);
319 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
320 return build_type_attribute_variant (t1, attributes);
321 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
322 return build_type_attribute_variant (t2, attributes);
323 else
324 return build_type_attribute_variant (build_complex_type (subtype),
325 attributes);
328 if (code1 == VECTOR_TYPE)
330 /* When we get here we should have two vectors of the same size.
331 Just prefer the unsigned one if present. */
332 if (TYPE_UNSIGNED (t1))
333 return build_type_attribute_variant (t1, attributes);
334 else
335 return build_type_attribute_variant (t2, attributes);
338 /* If only one is real, use it as the result. */
339 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
340 return build_type_attribute_variant (t1, attributes);
341 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
342 return build_type_attribute_variant (t2, attributes);
344 /* Both real or both integers; use the one with greater precision. */
345 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
346 return build_type_attribute_variant (t1, attributes);
347 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
348 return build_type_attribute_variant (t2, attributes);
350 /* The types are the same; no need to do anything fancy. */
351 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
352 return build_type_attribute_variant (t1, attributes);
354 if (code1 != REAL_TYPE)
356 /* If one is unsigned long long, then convert the other to unsigned
357 long long. */
358 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_unsigned_type_node)
359 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_unsigned_type_node))
360 return build_type_attribute_variant (long_long_unsigned_type_node,
361 attributes);
362 /* If one is a long long, and the other is an unsigned long, and
363 long long can represent all the values of an unsigned long, then
364 convert to a long long. Otherwise, convert to an unsigned long
365 long. Otherwise, if either operand is long long, convert the
366 other to long long.
368 Since we're here, we know the TYPE_PRECISION is the same;
369 therefore converting to long long cannot represent all the values
370 of an unsigned long, so we choose unsigned long long in that
371 case. */
372 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_integer_type_node)
373 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_integer_type_node))
375 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
376 ? long_long_unsigned_type_node
377 : long_long_integer_type_node);
378 return build_type_attribute_variant (t, attributes);
381 /* Go through the same procedure, but for longs. */
382 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_unsigned_type_node)
383 || same_type_p (TYPE_MAIN_VARIANT (t2), long_unsigned_type_node))
384 return build_type_attribute_variant (long_unsigned_type_node,
385 attributes);
386 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_integer_type_node)
387 || same_type_p (TYPE_MAIN_VARIANT (t2), long_integer_type_node))
389 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
390 ? long_unsigned_type_node : long_integer_type_node);
391 return build_type_attribute_variant (t, attributes);
394 /* For __intN types, either the type is __int128 (and is lower
395 priority than the types checked above, but higher than other
396 128-bit types) or it's known to not be the same size as other
397 types (enforced in toplev.c). Prefer the unsigned type. */
398 for (i = 0; i < NUM_INT_N_ENTS; i ++)
400 if (int_n_enabled_p [i]
401 && (same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].signed_type)
402 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].signed_type)
403 || same_type_p (TYPE_MAIN_VARIANT (t1), int_n_trees[i].unsigned_type)
404 || same_type_p (TYPE_MAIN_VARIANT (t2), int_n_trees[i].unsigned_type)))
406 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
407 ? int_n_trees[i].unsigned_type
408 : int_n_trees[i].signed_type);
409 return build_type_attribute_variant (t, attributes);
413 /* Otherwise prefer the unsigned one. */
414 if (TYPE_UNSIGNED (t1))
415 return build_type_attribute_variant (t1, attributes);
416 else
417 return build_type_attribute_variant (t2, attributes);
419 else
421 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_double_type_node)
422 || same_type_p (TYPE_MAIN_VARIANT (t2), long_double_type_node))
423 return build_type_attribute_variant (long_double_type_node,
424 attributes);
425 if (same_type_p (TYPE_MAIN_VARIANT (t1), double_type_node)
426 || same_type_p (TYPE_MAIN_VARIANT (t2), double_type_node))
427 return build_type_attribute_variant (double_type_node,
428 attributes);
429 if (same_type_p (TYPE_MAIN_VARIANT (t1), float_type_node)
430 || same_type_p (TYPE_MAIN_VARIANT (t2), float_type_node))
431 return build_type_attribute_variant (float_type_node,
432 attributes);
434 /* Two floating-point types whose TYPE_MAIN_VARIANTs are none of
435 the standard C++ floating-point types. Logic earlier in this
436 function has already eliminated the possibility that
437 TYPE_PRECISION (t2) != TYPE_PRECISION (t1), so there's no
438 compelling reason to choose one or the other. */
439 return build_type_attribute_variant (t1, attributes);
443 /* T1 and T2 are arithmetic or enumeration types. Return the type
444 that will result from the "usual arithmetic conversions" on T1 and
445 T2 as described in [expr]. */
447 tree
448 type_after_usual_arithmetic_conversions (tree t1, tree t2)
450 gcc_assert (ARITHMETIC_TYPE_P (t1)
451 || TREE_CODE (t1) == VECTOR_TYPE
452 || UNSCOPED_ENUM_P (t1));
453 gcc_assert (ARITHMETIC_TYPE_P (t2)
454 || TREE_CODE (t2) == VECTOR_TYPE
455 || UNSCOPED_ENUM_P (t2));
457 /* Perform the integral promotions. We do not promote real types here. */
458 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t1)
459 && INTEGRAL_OR_ENUMERATION_TYPE_P (t2))
461 t1 = type_promotes_to (t1);
462 t2 = type_promotes_to (t2);
465 return cp_common_type (t1, t2);
468 static void
469 composite_pointer_error (diagnostic_t kind, tree t1, tree t2,
470 composite_pointer_operation operation)
472 switch (operation)
474 case CPO_COMPARISON:
475 emit_diagnostic (kind, input_location, 0,
476 "comparison between "
477 "distinct pointer types %qT and %qT lacks a cast",
478 t1, t2);
479 break;
480 case CPO_CONVERSION:
481 emit_diagnostic (kind, input_location, 0,
482 "conversion between "
483 "distinct pointer types %qT and %qT lacks a cast",
484 t1, t2);
485 break;
486 case CPO_CONDITIONAL_EXPR:
487 emit_diagnostic (kind, input_location, 0,
488 "conditional expression between "
489 "distinct pointer types %qT and %qT lacks a cast",
490 t1, t2);
491 break;
492 default:
493 gcc_unreachable ();
497 /* Subroutine of composite_pointer_type to implement the recursive
498 case. See that function for documentation of the parameters. */
500 static tree
501 composite_pointer_type_r (tree t1, tree t2,
502 composite_pointer_operation operation,
503 tsubst_flags_t complain)
505 tree pointee1;
506 tree pointee2;
507 tree result_type;
508 tree attributes;
510 /* Determine the types pointed to by T1 and T2. */
511 if (TYPE_PTR_P (t1))
513 pointee1 = TREE_TYPE (t1);
514 pointee2 = TREE_TYPE (t2);
516 else
518 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
519 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
522 /* [expr.rel]
524 Otherwise, the composite pointer type is a pointer type
525 similar (_conv.qual_) to the type of one of the operands,
526 with a cv-qualification signature (_conv.qual_) that is the
527 union of the cv-qualification signatures of the operand
528 types. */
529 if (same_type_ignoring_top_level_qualifiers_p (pointee1, pointee2))
530 result_type = pointee1;
531 else if ((TYPE_PTR_P (pointee1) && TYPE_PTR_P (pointee2))
532 || (TYPE_PTRMEM_P (pointee1) && TYPE_PTRMEM_P (pointee2)))
534 result_type = composite_pointer_type_r (pointee1, pointee2, operation,
535 complain);
536 if (result_type == error_mark_node)
537 return error_mark_node;
539 else
541 if (complain & tf_error)
542 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
543 else
544 return error_mark_node;
545 result_type = void_type_node;
547 result_type = cp_build_qualified_type (result_type,
548 (cp_type_quals (pointee1)
549 | cp_type_quals (pointee2)));
550 /* If the original types were pointers to members, so is the
551 result. */
552 if (TYPE_PTRMEM_P (t1))
554 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
555 TYPE_PTRMEM_CLASS_TYPE (t2)))
557 if (complain & tf_error)
558 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
559 else
560 return error_mark_node;
562 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
563 result_type);
565 else
566 result_type = build_pointer_type (result_type);
568 /* Merge the attributes. */
569 attributes = (*targetm.merge_type_attributes) (t1, t2);
570 return build_type_attribute_variant (result_type, attributes);
573 /* Return the composite pointer type (see [expr.rel]) for T1 and T2.
574 ARG1 and ARG2 are the values with those types. The OPERATION is to
575 describe the operation between the pointer types,
576 in case an error occurs.
578 This routine also implements the computation of a common type for
579 pointers-to-members as per [expr.eq]. */
581 tree
582 composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
583 composite_pointer_operation operation,
584 tsubst_flags_t complain)
586 tree class1;
587 tree class2;
589 /* [expr.rel]
591 If one operand is a null pointer constant, the composite pointer
592 type is the type of the other operand. */
593 if (null_ptr_cst_p (arg1))
594 return t2;
595 if (null_ptr_cst_p (arg2))
596 return t1;
598 /* We have:
600 [expr.rel]
602 If one of the operands has type "pointer to cv1 void*", then
603 the other has type "pointer to cv2T", and the composite pointer
604 type is "pointer to cv12 void", where cv12 is the union of cv1
605 and cv2.
607 If either type is a pointer to void, make sure it is T1. */
608 if (TYPE_PTR_P (t2) && VOID_TYPE_P (TREE_TYPE (t2)))
610 tree t;
611 t = t1;
612 t1 = t2;
613 t2 = t;
616 /* Now, if T1 is a pointer to void, merge the qualifiers. */
617 if (TYPE_PTR_P (t1) && VOID_TYPE_P (TREE_TYPE (t1)))
619 tree attributes;
620 tree result_type;
622 if (TYPE_PTRFN_P (t2))
624 if (complain & tf_error)
626 switch (operation)
628 case CPO_COMPARISON:
629 pedwarn (input_location, OPT_Wpedantic,
630 "ISO C++ forbids comparison between pointer "
631 "of type %<void *%> and pointer-to-function");
632 break;
633 case CPO_CONVERSION:
634 pedwarn (input_location, OPT_Wpedantic,
635 "ISO C++ forbids conversion between pointer "
636 "of type %<void *%> and pointer-to-function");
637 break;
638 case CPO_CONDITIONAL_EXPR:
639 pedwarn (input_location, OPT_Wpedantic,
640 "ISO C++ forbids conditional expression between "
641 "pointer of type %<void *%> and "
642 "pointer-to-function");
643 break;
644 default:
645 gcc_unreachable ();
648 else
649 return error_mark_node;
651 result_type
652 = cp_build_qualified_type (void_type_node,
653 (cp_type_quals (TREE_TYPE (t1))
654 | cp_type_quals (TREE_TYPE (t2))));
655 result_type = build_pointer_type (result_type);
656 /* Merge the attributes. */
657 attributes = (*targetm.merge_type_attributes) (t1, t2);
658 return build_type_attribute_variant (result_type, attributes);
661 if (c_dialect_objc () && TYPE_PTR_P (t1)
662 && TYPE_PTR_P (t2))
664 if (objc_have_common_type (t1, t2, -3, NULL_TREE))
665 return objc_common_type (t1, t2);
668 /* [expr.eq] permits the application of a pointer conversion to
669 bring the pointers to a common type. */
670 if (TYPE_PTR_P (t1) && TYPE_PTR_P (t2)
671 && CLASS_TYPE_P (TREE_TYPE (t1))
672 && CLASS_TYPE_P (TREE_TYPE (t2))
673 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
674 TREE_TYPE (t2)))
676 class1 = TREE_TYPE (t1);
677 class2 = TREE_TYPE (t2);
679 if (DERIVED_FROM_P (class1, class2))
680 t2 = (build_pointer_type
681 (cp_build_qualified_type (class1, cp_type_quals (class2))));
682 else if (DERIVED_FROM_P (class2, class1))
683 t1 = (build_pointer_type
684 (cp_build_qualified_type (class2, cp_type_quals (class1))));
685 else
687 if (complain & tf_error)
688 composite_pointer_error (DK_ERROR, t1, t2, operation);
689 return error_mark_node;
692 /* [expr.eq] permits the application of a pointer-to-member
693 conversion to change the class type of one of the types. */
694 else if (TYPE_PTRMEM_P (t1)
695 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
696 TYPE_PTRMEM_CLASS_TYPE (t2)))
698 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
699 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
701 if (DERIVED_FROM_P (class1, class2))
702 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
703 else if (DERIVED_FROM_P (class2, class1))
704 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
705 else
707 if (complain & tf_error)
708 switch (operation)
710 case CPO_COMPARISON:
711 error ("comparison between distinct "
712 "pointer-to-member types %qT and %qT lacks a cast",
713 t1, t2);
714 break;
715 case CPO_CONVERSION:
716 error ("conversion between distinct "
717 "pointer-to-member types %qT and %qT lacks a cast",
718 t1, t2);
719 break;
720 case CPO_CONDITIONAL_EXPR:
721 error ("conditional expression between distinct "
722 "pointer-to-member types %qT and %qT lacks a cast",
723 t1, t2);
724 break;
725 default:
726 gcc_unreachable ();
728 return error_mark_node;
732 return composite_pointer_type_r (t1, t2, operation, complain);
735 /* Return the merged type of two types.
736 We assume that comptypes has already been done and returned 1;
737 if that isn't so, this may crash.
739 This just combines attributes and default arguments; any other
740 differences would cause the two types to compare unalike. */
742 tree
743 merge_types (tree t1, tree t2)
745 enum tree_code code1;
746 enum tree_code code2;
747 tree attributes;
749 /* Save time if the two types are the same. */
750 if (t1 == t2)
751 return t1;
752 if (original_type (t1) == original_type (t2))
753 return t1;
755 /* If one type is nonsense, use the other. */
756 if (t1 == error_mark_node)
757 return t2;
758 if (t2 == error_mark_node)
759 return t1;
761 /* Handle merging an auto redeclaration with a previous deduced
762 return type. */
763 if (is_auto (t1))
764 return t2;
766 /* Merge the attributes. */
767 attributes = (*targetm.merge_type_attributes) (t1, t2);
769 if (TYPE_PTRMEMFUNC_P (t1))
770 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
771 if (TYPE_PTRMEMFUNC_P (t2))
772 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
774 code1 = TREE_CODE (t1);
775 code2 = TREE_CODE (t2);
776 if (code1 != code2)
778 gcc_assert (code1 == TYPENAME_TYPE || code2 == TYPENAME_TYPE);
779 if (code1 == TYPENAME_TYPE)
781 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
782 code1 = TREE_CODE (t1);
784 else
786 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
787 code2 = TREE_CODE (t2);
791 switch (code1)
793 case POINTER_TYPE:
794 case REFERENCE_TYPE:
795 /* For two pointers, do this recursively on the target type. */
797 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
798 int quals = cp_type_quals (t1);
800 if (code1 == POINTER_TYPE)
801 t1 = build_pointer_type (target);
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 if (TREE_CODE (target) == METHOD_TYPE)
808 t1 = build_ptrmemfunc_type (t1);
810 return t1;
813 case OFFSET_TYPE:
815 int quals;
816 tree pointee;
817 quals = cp_type_quals (t1);
818 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
819 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
820 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
821 pointee);
822 t1 = cp_build_qualified_type (t1, quals);
823 break;
826 case ARRAY_TYPE:
828 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
829 /* Save space: see if the result is identical to one of the args. */
830 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
831 return build_type_attribute_variant (t1, attributes);
832 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
833 return build_type_attribute_variant (t2, attributes);
834 /* Merge the element types, and have a size if either arg has one. */
835 t1 = build_cplus_array_type
836 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
837 break;
840 case FUNCTION_TYPE:
841 /* Function types: prefer the one that specified arg types.
842 If both do, merge the arg types. Also merge the return types. */
844 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
845 tree p1 = TYPE_ARG_TYPES (t1);
846 tree p2 = TYPE_ARG_TYPES (t2);
847 tree parms;
848 tree rval, raises;
849 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
851 /* Save space: see if the result is identical to one of the args. */
852 if (valtype == TREE_TYPE (t1) && ! p2)
853 return cp_build_type_attribute_variant (t1, attributes);
854 if (valtype == TREE_TYPE (t2) && ! p1)
855 return cp_build_type_attribute_variant (t2, attributes);
857 /* Simple way if one arg fails to specify argument types. */
858 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
859 parms = p2;
860 else if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
861 parms = p1;
862 else
863 parms = commonparms (p1, p2);
865 rval = build_function_type (valtype, parms);
866 gcc_assert (type_memfn_quals (t1) == type_memfn_quals (t2));
867 gcc_assert (type_memfn_rqual (t1) == type_memfn_rqual (t2));
868 rval = apply_memfn_quals (rval,
869 type_memfn_quals (t1),
870 type_memfn_rqual (t1));
871 raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
872 TYPE_RAISES_EXCEPTIONS (t2));
873 t1 = build_exception_variant (rval, raises);
874 if (late_return_type_p)
875 TYPE_HAS_LATE_RETURN_TYPE (t1) = 1;
876 break;
879 case METHOD_TYPE:
881 /* Get this value the long way, since TYPE_METHOD_BASETYPE
882 is just the main variant of this. */
883 tree basetype = class_of_this_parm (t2);
884 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
885 TYPE_RAISES_EXCEPTIONS (t2));
886 cp_ref_qualifier rqual = type_memfn_rqual (t1);
887 tree t3;
888 bool late_return_type_1_p = TYPE_HAS_LATE_RETURN_TYPE (t1);
889 bool late_return_type_2_p = TYPE_HAS_LATE_RETURN_TYPE (t2);
891 /* If this was a member function type, get back to the
892 original type of type member function (i.e., without
893 the class instance variable up front. */
894 t1 = build_function_type (TREE_TYPE (t1),
895 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
896 t2 = build_function_type (TREE_TYPE (t2),
897 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
898 t3 = merge_types (t1, t2);
899 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
900 TYPE_ARG_TYPES (t3));
901 t1 = build_exception_variant (t3, raises);
902 t1 = build_ref_qualified_type (t1, rqual);
903 if (late_return_type_1_p)
904 TYPE_HAS_LATE_RETURN_TYPE (t1) = 1;
905 if (late_return_type_2_p)
906 TYPE_HAS_LATE_RETURN_TYPE (t2) = 1;
907 break;
910 case TYPENAME_TYPE:
911 /* There is no need to merge attributes into a TYPENAME_TYPE.
912 When the type is instantiated it will have whatever
913 attributes result from the instantiation. */
914 return t1;
916 default:;
919 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
920 return t1;
921 else if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
922 return t2;
923 else
924 return cp_build_type_attribute_variant (t1, attributes);
927 /* Return the ARRAY_TYPE type without its domain. */
929 tree
930 strip_array_domain (tree type)
932 tree t2;
933 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
934 if (TYPE_DOMAIN (type) == NULL_TREE)
935 return type;
936 t2 = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
937 return cp_build_type_attribute_variant (t2, TYPE_ATTRIBUTES (type));
940 /* Wrapper around cp_common_type that is used by c-common.c and other
941 front end optimizations that remove promotions.
943 Return the common type for two arithmetic types T1 and T2 under the
944 usual arithmetic conversions. The default conversions have already
945 been applied, and enumerated types converted to their compatible
946 integer types. */
948 tree
949 common_type (tree t1, tree t2)
951 /* If one type is nonsense, use the other */
952 if (t1 == error_mark_node)
953 return t2;
954 if (t2 == error_mark_node)
955 return t1;
957 return cp_common_type (t1, t2);
960 /* Return the common type of two pointer types T1 and T2. This is the
961 type for the result of most arithmetic operations if the operands
962 have the given two types.
964 We assume that comp_target_types has already been done and returned
965 nonzero; if that isn't so, this may crash. */
967 tree
968 common_pointer_type (tree t1, tree t2)
970 gcc_assert ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
971 || (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
972 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)));
974 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
975 CPO_CONVERSION, tf_warning_or_error);
978 /* Compare two exception specifier types for exactness or subsetness, if
979 allowed. Returns false for mismatch, true for match (same, or
980 derived and !exact).
982 [except.spec] "If a class X ... objects of class X or any class publicly
983 and unambiguously derived from X. Similarly, if a pointer type Y * ...
984 exceptions of type Y * or that are pointers to any type publicly and
985 unambiguously derived from Y. Otherwise a function only allows exceptions
986 that have the same type ..."
987 This does not mention cv qualifiers and is different to what throw
988 [except.throw] and catch [except.catch] will do. They will ignore the
989 top level cv qualifiers, and allow qualifiers in the pointer to class
990 example.
992 We implement the letter of the standard. */
994 static bool
995 comp_except_types (tree a, tree b, bool exact)
997 if (same_type_p (a, b))
998 return true;
999 else if (!exact)
1001 if (cp_type_quals (a) || cp_type_quals (b))
1002 return false;
1004 if (TYPE_PTR_P (a) && TYPE_PTR_P (b))
1006 a = TREE_TYPE (a);
1007 b = TREE_TYPE (b);
1008 if (cp_type_quals (a) || cp_type_quals (b))
1009 return false;
1012 if (TREE_CODE (a) != RECORD_TYPE
1013 || TREE_CODE (b) != RECORD_TYPE)
1014 return false;
1016 if (publicly_uniquely_derived_p (a, b))
1017 return true;
1019 return false;
1022 /* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
1023 If EXACT is ce_derived, T2 can be stricter than T1 (according to 15.4/5).
1024 If EXACT is ce_normal, the compatibility rules in 15.4/3 apply.
1025 If EXACT is ce_exact, the specs must be exactly the same. Exception lists
1026 are unordered, but we've already filtered out duplicates. Most lists will
1027 be in order, we should try to make use of that. */
1029 bool
1030 comp_except_specs (const_tree t1, const_tree t2, int exact)
1032 const_tree probe;
1033 const_tree base;
1034 int length = 0;
1036 if (t1 == t2)
1037 return true;
1039 /* First handle noexcept. */
1040 if (exact < ce_exact)
1042 /* noexcept(false) is compatible with no exception-specification,
1043 and stricter than any spec. */
1044 if (t1 == noexcept_false_spec)
1045 return t2 == NULL_TREE || exact == ce_derived;
1046 /* Even a derived noexcept(false) is compatible with no
1047 exception-specification. */
1048 if (t2 == noexcept_false_spec)
1049 return t1 == NULL_TREE;
1051 /* Otherwise, if we aren't looking for an exact match, noexcept is
1052 equivalent to throw(). */
1053 if (t1 == noexcept_true_spec)
1054 t1 = empty_except_spec;
1055 if (t2 == noexcept_true_spec)
1056 t2 = empty_except_spec;
1059 /* If any noexcept is left, it is only comparable to itself;
1060 either we're looking for an exact match or we're redeclaring a
1061 template with dependent noexcept. */
1062 if ((t1 && TREE_PURPOSE (t1))
1063 || (t2 && TREE_PURPOSE (t2)))
1064 return (t1 && t2
1065 && cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)));
1067 if (t1 == NULL_TREE) /* T1 is ... */
1068 return t2 == NULL_TREE || exact == ce_derived;
1069 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
1070 return t2 != NULL_TREE && !TREE_VALUE (t2);
1071 if (t2 == NULL_TREE) /* T2 is ... */
1072 return false;
1073 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
1074 return exact == ce_derived;
1076 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
1077 Count how many we find, to determine exactness. For exact matching and
1078 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
1079 O(nm). */
1080 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
1082 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
1084 tree a = TREE_VALUE (probe);
1085 tree b = TREE_VALUE (t2);
1087 if (comp_except_types (a, b, exact))
1089 if (probe == base && exact > ce_derived)
1090 base = TREE_CHAIN (probe);
1091 length++;
1092 break;
1095 if (probe == NULL_TREE)
1096 return false;
1098 return exact == ce_derived || base == NULL_TREE || length == list_length (t1);
1101 /* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
1102 [] can match [size]. */
1104 static bool
1105 comp_array_types (const_tree t1, const_tree t2, bool allow_redeclaration)
1107 tree d1;
1108 tree d2;
1109 tree max1, max2;
1111 if (t1 == t2)
1112 return true;
1114 /* The type of the array elements must be the same. */
1115 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1116 return false;
1118 d1 = TYPE_DOMAIN (t1);
1119 d2 = TYPE_DOMAIN (t2);
1121 if (d1 == d2)
1122 return true;
1124 /* If one of the arrays is dimensionless, and the other has a
1125 dimension, they are of different types. However, it is valid to
1126 write:
1128 extern int a[];
1129 int a[3];
1131 by [basic.link]:
1133 declarations for an array object can specify
1134 array types that differ by the presence or absence of a major
1135 array bound (_dcl.array_). */
1136 if (!d1 || !d2)
1137 return allow_redeclaration;
1139 /* Check that the dimensions are the same. */
1141 if (!cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2)))
1142 return false;
1143 max1 = TYPE_MAX_VALUE (d1);
1144 max2 = TYPE_MAX_VALUE (d2);
1146 if (!cp_tree_equal (max1, max2))
1147 return false;
1149 return true;
1152 /* Compare the relative position of T1 and T2 into their respective
1153 template parameter list.
1154 T1 and T2 must be template parameter types.
1155 Return TRUE if T1 and T2 have the same position, FALSE otherwise. */
1157 static bool
1158 comp_template_parms_position (tree t1, tree t2)
1160 tree index1, index2;
1161 gcc_assert (t1 && t2
1162 && TREE_CODE (t1) == TREE_CODE (t2)
1163 && (TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM
1164 || TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM
1165 || TREE_CODE (t1) == TEMPLATE_TYPE_PARM));
1167 index1 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t1));
1168 index2 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t2));
1170 /* Then compare their relative position. */
1171 if (TEMPLATE_PARM_IDX (index1) != TEMPLATE_PARM_IDX (index2)
1172 || TEMPLATE_PARM_LEVEL (index1) != TEMPLATE_PARM_LEVEL (index2)
1173 || (TEMPLATE_PARM_PARAMETER_PACK (index1)
1174 != TEMPLATE_PARM_PARAMETER_PACK (index2)))
1175 return false;
1177 /* In C++14 we can end up comparing 'auto' to a normal template
1178 parameter. Don't confuse them. */
1179 if (cxx_dialect >= cxx14 && (is_auto (t1) || is_auto (t2)))
1180 return TYPE_IDENTIFIER (t1) == TYPE_IDENTIFIER (t2);
1182 return true;
1185 /* Subroutine in comptypes. */
1187 static bool
1188 structural_comptypes (tree t1, tree t2, int strict)
1190 if (t1 == t2)
1191 return true;
1193 /* Suppress errors caused by previously reported errors. */
1194 if (t1 == error_mark_node || t2 == error_mark_node)
1195 return false;
1197 gcc_assert (TYPE_P (t1) && TYPE_P (t2));
1199 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
1200 current instantiation. */
1201 if (TREE_CODE (t1) == TYPENAME_TYPE)
1202 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
1204 if (TREE_CODE (t2) == TYPENAME_TYPE)
1205 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
1207 if (TYPE_PTRMEMFUNC_P (t1))
1208 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
1209 if (TYPE_PTRMEMFUNC_P (t2))
1210 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
1212 /* Different classes of types can't be compatible. */
1213 if (TREE_CODE (t1) != TREE_CODE (t2))
1214 return false;
1216 /* Qualifiers must match. For array types, we will check when we
1217 recur on the array element types. */
1218 if (TREE_CODE (t1) != ARRAY_TYPE
1219 && cp_type_quals (t1) != cp_type_quals (t2))
1220 return false;
1221 if (TREE_CODE (t1) == FUNCTION_TYPE
1222 && type_memfn_quals (t1) != type_memfn_quals (t2))
1223 return false;
1224 /* Need to check this before TYPE_MAIN_VARIANT.
1225 FIXME function qualifiers should really change the main variant. */
1226 if ((TREE_CODE (t1) == FUNCTION_TYPE
1227 || TREE_CODE (t1) == METHOD_TYPE)
1228 && type_memfn_rqual (t1) != type_memfn_rqual (t2))
1229 return false;
1230 if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2))
1231 return false;
1233 /* Allow for two different type nodes which have essentially the same
1234 definition. Note that we already checked for equality of the type
1235 qualifiers (just above). */
1237 if (TREE_CODE (t1) != ARRAY_TYPE
1238 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1239 return true;
1242 /* Compare the types. Break out if they could be the same. */
1243 switch (TREE_CODE (t1))
1245 case VOID_TYPE:
1246 case BOOLEAN_TYPE:
1247 /* All void and bool types are the same. */
1248 break;
1250 case INTEGER_TYPE:
1251 case FIXED_POINT_TYPE:
1252 case REAL_TYPE:
1253 /* With these nodes, we can't determine type equivalence by
1254 looking at what is stored in the nodes themselves, because
1255 two nodes might have different TYPE_MAIN_VARIANTs but still
1256 represent the same type. For example, wchar_t and int could
1257 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1258 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1259 and are distinct types. On the other hand, int and the
1260 following typedef
1262 typedef int INT __attribute((may_alias));
1264 have identical properties, different TYPE_MAIN_VARIANTs, but
1265 represent the same type. The canonical type system keeps
1266 track of equivalence in this case, so we fall back on it. */
1267 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1269 case TEMPLATE_TEMPLATE_PARM:
1270 case BOUND_TEMPLATE_TEMPLATE_PARM:
1271 if (!comp_template_parms_position (t1, t2))
1272 return false;
1273 if (!comp_template_parms
1274 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
1275 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
1276 return false;
1277 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
1278 break;
1279 /* Don't check inheritance. */
1280 strict = COMPARE_STRICT;
1281 /* Fall through. */
1283 case RECORD_TYPE:
1284 case UNION_TYPE:
1285 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
1286 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
1287 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
1288 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
1289 break;
1291 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
1292 break;
1293 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
1294 break;
1296 return false;
1298 case OFFSET_TYPE:
1299 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
1300 strict & ~COMPARE_REDECLARATION))
1301 return false;
1302 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1303 return false;
1304 break;
1306 case REFERENCE_TYPE:
1307 if (TYPE_REF_IS_RVALUE (t1) != TYPE_REF_IS_RVALUE (t2))
1308 return false;
1309 /* fall through to checks for pointer types */
1311 case POINTER_TYPE:
1312 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1313 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1314 return false;
1315 break;
1317 case METHOD_TYPE:
1318 case FUNCTION_TYPE:
1319 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1320 return false;
1321 if (!compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2)))
1322 return false;
1323 break;
1325 case ARRAY_TYPE:
1326 /* Target types must match incl. qualifiers. */
1327 if (!comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION)))
1328 return false;
1329 break;
1331 case TEMPLATE_TYPE_PARM:
1332 /* If T1 and T2 don't have the same relative position in their
1333 template parameters set, they can't be equal. */
1334 if (!comp_template_parms_position (t1, t2))
1335 return false;
1336 break;
1338 case TYPENAME_TYPE:
1339 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1340 TYPENAME_TYPE_FULLNAME (t2)))
1341 return false;
1342 /* Qualifiers don't matter on scopes. */
1343 if (!same_type_ignoring_top_level_qualifiers_p (TYPE_CONTEXT (t1),
1344 TYPE_CONTEXT (t2)))
1345 return false;
1346 break;
1348 case UNBOUND_CLASS_TEMPLATE:
1349 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1350 return false;
1351 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1352 return false;
1353 break;
1355 case COMPLEX_TYPE:
1356 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1357 return false;
1358 break;
1360 case VECTOR_TYPE:
1361 if (TYPE_VECTOR_SUBPARTS (t1) != TYPE_VECTOR_SUBPARTS (t2)
1362 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1363 return false;
1364 break;
1366 case TYPE_PACK_EXPANSION:
1367 return (same_type_p (PACK_EXPANSION_PATTERN (t1),
1368 PACK_EXPANSION_PATTERN (t2))
1369 && comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
1370 PACK_EXPANSION_EXTRA_ARGS (t2)));
1372 case DECLTYPE_TYPE:
1373 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1374 != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1375 || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1376 != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1377 || (DECLTYPE_FOR_LAMBDA_PROXY (t1)
1378 != DECLTYPE_FOR_LAMBDA_PROXY (t2))
1379 || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1),
1380 DECLTYPE_TYPE_EXPR (t2)))
1381 return false;
1382 break;
1384 case UNDERLYING_TYPE:
1385 return same_type_p (UNDERLYING_TYPE_TYPE (t1),
1386 UNDERLYING_TYPE_TYPE (t2));
1388 default:
1389 return false;
1392 /* If we get here, we know that from a target independent POV the
1393 types are the same. Make sure the target attributes are also
1394 the same. */
1395 return comp_type_attributes (t1, t2);
1398 /* Return true if T1 and T2 are related as allowed by STRICT. STRICT
1399 is a bitwise-or of the COMPARE_* flags. */
1401 bool
1402 comptypes (tree t1, tree t2, int strict)
1404 if (strict == COMPARE_STRICT)
1406 if (t1 == t2)
1407 return true;
1409 if (t1 == error_mark_node || t2 == error_mark_node)
1410 return false;
1412 if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1413 /* At least one of the types requires structural equality, so
1414 perform a deep check. */
1415 return structural_comptypes (t1, t2, strict);
1417 #ifdef ENABLE_CHECKING
1418 if (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 #else
1440 if (USE_CANONICAL_TYPES)
1441 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1442 #endif
1443 else
1444 return structural_comptypes (t1, t2, strict);
1446 else if (strict == COMPARE_STRUCTURAL)
1447 return structural_comptypes (t1, t2, COMPARE_STRICT);
1448 else
1449 return structural_comptypes (t1, t2, strict);
1452 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1453 top-level qualifiers. */
1455 bool
1456 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1458 if (type1 == error_mark_node || type2 == error_mark_node)
1459 return false;
1461 return same_type_p (TYPE_MAIN_VARIANT (type1), TYPE_MAIN_VARIANT (type2));
1464 /* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1466 bool
1467 at_least_as_qualified_p (const_tree type1, const_tree type2)
1469 int q1 = cp_type_quals (type1);
1470 int q2 = cp_type_quals (type2);
1472 /* All qualifiers for TYPE2 must also appear in TYPE1. */
1473 return (q1 & q2) == q2;
1476 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1477 more cv-qualified that TYPE1, and 0 otherwise. */
1480 comp_cv_qualification (int q1, int q2)
1482 if (q1 == q2)
1483 return 0;
1485 if ((q1 & q2) == q2)
1486 return 1;
1487 else if ((q1 & q2) == q1)
1488 return -1;
1490 return 0;
1494 comp_cv_qualification (const_tree type1, const_tree type2)
1496 int q1 = cp_type_quals (type1);
1497 int q2 = cp_type_quals (type2);
1498 return comp_cv_qualification (q1, q2);
1501 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1502 subset of the cv-qualification signature of TYPE2, and the types
1503 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1506 comp_cv_qual_signature (tree type1, tree type2)
1508 if (comp_ptr_ttypes_real (type2, type1, -1))
1509 return 1;
1510 else if (comp_ptr_ttypes_real (type1, type2, -1))
1511 return -1;
1512 else
1513 return 0;
1516 /* Subroutines of `comptypes'. */
1518 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1519 equivalent in the sense that functions with those parameter types
1520 can have equivalent types. The two lists must be equivalent,
1521 element by element. */
1523 bool
1524 compparms (const_tree parms1, const_tree parms2)
1526 const_tree t1, t2;
1528 /* An unspecified parmlist matches any specified parmlist
1529 whose argument types don't need default promotions. */
1531 for (t1 = parms1, t2 = parms2;
1532 t1 || t2;
1533 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1535 /* If one parmlist is shorter than the other,
1536 they fail to match. */
1537 if (!t1 || !t2)
1538 return false;
1539 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1540 return false;
1542 return true;
1546 /* Process a sizeof or alignof expression where the operand is a
1547 type. */
1549 tree
1550 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
1552 tree value;
1553 bool dependent_p;
1555 gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1556 if (type == error_mark_node)
1557 return error_mark_node;
1559 type = non_reference (type);
1560 if (TREE_CODE (type) == METHOD_TYPE)
1562 if (complain)
1563 pedwarn (input_location, OPT_Wpointer_arith,
1564 "invalid application of %qs to a member function",
1565 operator_name_info[(int) op].name);
1566 else
1567 return error_mark_node;
1568 value = size_one_node;
1571 dependent_p = dependent_type_p (type);
1572 if (!dependent_p)
1573 complete_type (type);
1574 if (dependent_p
1575 /* VLA types will have a non-constant size. In the body of an
1576 uninstantiated template, we don't need to try to compute the
1577 value, because the sizeof expression is not an integral
1578 constant expression in that case. And, if we do try to
1579 compute the value, we'll likely end up with SAVE_EXPRs, which
1580 the template substitution machinery does not expect to see. */
1581 || (processing_template_decl
1582 && COMPLETE_TYPE_P (type)
1583 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1585 value = build_min (op, size_type_node, type);
1586 TREE_READONLY (value) = 1;
1587 return value;
1590 return c_sizeof_or_alignof_type (input_location, complete_type (type),
1591 op == SIZEOF_EXPR, false,
1592 complain);
1595 /* Return the size of the type, without producing any warnings for
1596 types whose size cannot be taken. This routine should be used only
1597 in some other routine that has already produced a diagnostic about
1598 using the size of such a type. */
1599 tree
1600 cxx_sizeof_nowarn (tree type)
1602 if (TREE_CODE (type) == FUNCTION_TYPE
1603 || VOID_TYPE_P (type)
1604 || TREE_CODE (type) == ERROR_MARK)
1605 return size_one_node;
1606 else if (!COMPLETE_TYPE_P (type))
1607 return size_zero_node;
1608 else
1609 return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false);
1612 /* Process a sizeof expression where the operand is an expression. */
1614 static tree
1615 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1617 if (e == error_mark_node)
1618 return error_mark_node;
1620 if (processing_template_decl)
1622 e = build_min (SIZEOF_EXPR, size_type_node, e);
1623 TREE_SIDE_EFFECTS (e) = 0;
1624 TREE_READONLY (e) = 1;
1626 return e;
1629 /* To get the size of a static data member declared as an array of
1630 unknown bound, we need to instantiate it. */
1631 if (VAR_P (e)
1632 && VAR_HAD_UNKNOWN_BOUND (e)
1633 && DECL_TEMPLATE_INSTANTIATION (e))
1634 instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1636 if (TREE_CODE (e) == PARM_DECL
1637 && DECL_ARRAY_PARAMETER_P (e)
1638 && (complain & tf_warning))
1640 if (warning (OPT_Wsizeof_array_argument, "%<sizeof%> on array function "
1641 "parameter %qE will return size of %qT", e, TREE_TYPE (e)))
1642 inform (DECL_SOURCE_LOCATION (e), "declared here");
1645 e = mark_type_use (e);
1647 if (TREE_CODE (e) == COMPONENT_REF
1648 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1649 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1651 if (complain & tf_error)
1652 error ("invalid application of %<sizeof%> to a bit-field");
1653 else
1654 return error_mark_node;
1655 e = char_type_node;
1657 else if (is_overloaded_fn (e))
1659 if (complain & tf_error)
1660 permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1661 "function type");
1662 else
1663 return error_mark_node;
1664 e = char_type_node;
1666 else if (type_unknown_p (e))
1668 if (complain & tf_error)
1669 cxx_incomplete_type_error (e, TREE_TYPE (e));
1670 else
1671 return error_mark_node;
1672 e = char_type_node;
1674 else
1675 e = TREE_TYPE (e);
1677 return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, complain & tf_error);
1680 /* Implement the __alignof keyword: Return the minimum required
1681 alignment of E, measured in bytes. For VAR_DECL's and
1682 FIELD_DECL's return DECL_ALIGN (which can be set from an
1683 "aligned" __attribute__ specification). */
1685 static tree
1686 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1688 tree t;
1690 if (e == error_mark_node)
1691 return error_mark_node;
1693 if (processing_template_decl)
1695 e = build_min (ALIGNOF_EXPR, size_type_node, e);
1696 TREE_SIDE_EFFECTS (e) = 0;
1697 TREE_READONLY (e) = 1;
1699 return e;
1702 e = mark_type_use (e);
1704 if (VAR_P (e))
1705 t = size_int (DECL_ALIGN_UNIT (e));
1706 else if (TREE_CODE (e) == COMPONENT_REF
1707 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1708 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1710 if (complain & tf_error)
1711 error ("invalid application of %<__alignof%> to a bit-field");
1712 else
1713 return error_mark_node;
1714 t = size_one_node;
1716 else if (TREE_CODE (e) == COMPONENT_REF
1717 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1718 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1719 else if (is_overloaded_fn (e))
1721 if (complain & tf_error)
1722 permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1723 "function type");
1724 else
1725 return error_mark_node;
1726 if (TREE_CODE (e) == FUNCTION_DECL)
1727 t = size_int (DECL_ALIGN_UNIT (e));
1728 else
1729 t = size_one_node;
1731 else if (type_unknown_p (e))
1733 if (complain & tf_error)
1734 cxx_incomplete_type_error (e, TREE_TYPE (e));
1735 else
1736 return error_mark_node;
1737 t = size_one_node;
1739 else
1740 return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR,
1741 complain & tf_error);
1743 return fold_convert (size_type_node, t);
1746 /* Process a sizeof or alignof expression E with code OP where the operand
1747 is an expression. */
1749 tree
1750 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1752 if (op == SIZEOF_EXPR)
1753 return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1754 else
1755 return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1758 /* Build a representation of an expression 'alignas(E).' Return the
1759 folded integer value of E if it is an integral constant expression
1760 that resolves to a valid alignment. If E depends on a template
1761 parameter, return a syntactic representation tree of kind
1762 ALIGNOF_EXPR. Otherwise, return an error_mark_node if the
1763 expression is ill formed, or NULL_TREE if E is NULL_TREE. */
1765 tree
1766 cxx_alignas_expr (tree e)
1768 if (e == NULL_TREE || e == error_mark_node
1769 || (!TYPE_P (e) && !require_potential_rvalue_constant_expression (e)))
1770 return e;
1772 if (TYPE_P (e))
1773 /* [dcl.align]/3:
1775 When the alignment-specifier is of the form
1776 alignas(type-id ), it shall have the same effect as
1777 alignas(alignof(type-id )). */
1779 return cxx_sizeof_or_alignof_type (e, ALIGNOF_EXPR, false);
1781 /* If we reach this point, it means the alignas expression if of
1782 the form "alignas(assignment-expression)", so we should follow
1783 what is stated by [dcl.align]/2. */
1785 if (value_dependent_expression_p (e))
1786 /* Leave value-dependent expression alone for now. */
1787 return e;
1789 e = instantiate_non_dependent_expr (e);
1790 e = mark_rvalue_use (e);
1792 /* [dcl.align]/2 says:
1794 the assignment-expression shall be an integral constant
1795 expression. */
1797 return cxx_constant_value (e);
1801 /* EXPR is being used in a context that is not a function call.
1802 Enforce:
1804 [expr.ref]
1806 The expression can be used only as the left-hand operand of a
1807 member function call.
1809 [expr.mptr.operator]
1811 If the result of .* or ->* is a function, then that result can be
1812 used only as the operand for the function call operator ().
1814 by issuing an error message if appropriate. Returns true iff EXPR
1815 violates these rules. */
1817 bool
1818 invalid_nonstatic_memfn_p (tree expr, tsubst_flags_t complain)
1820 if (expr == NULL_TREE)
1821 return false;
1822 /* Don't enforce this in MS mode. */
1823 if (flag_ms_extensions)
1824 return false;
1825 if (is_overloaded_fn (expr) && !really_overloaded_fn (expr))
1826 expr = get_first_fn (expr);
1827 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1829 if (complain & tf_error)
1830 error ("invalid use of non-static member function");
1831 return true;
1833 return false;
1836 /* If EXP is a reference to a bitfield, and the type of EXP does not
1837 match the declared type of the bitfield, return the declared type
1838 of the bitfield. Otherwise, return NULL_TREE. */
1840 tree
1841 is_bitfield_expr_with_lowered_type (const_tree exp)
1843 switch (TREE_CODE (exp))
1845 case COND_EXPR:
1846 if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1847 ? TREE_OPERAND (exp, 1)
1848 : TREE_OPERAND (exp, 0)))
1849 return NULL_TREE;
1850 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1852 case COMPOUND_EXPR:
1853 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1855 case MODIFY_EXPR:
1856 case SAVE_EXPR:
1857 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1859 case COMPONENT_REF:
1861 tree field;
1863 field = TREE_OPERAND (exp, 1);
1864 if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1865 return NULL_TREE;
1866 if (same_type_ignoring_top_level_qualifiers_p
1867 (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1868 return NULL_TREE;
1869 return DECL_BIT_FIELD_TYPE (field);
1872 CASE_CONVERT:
1873 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1874 == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1875 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1876 /* Fallthrough. */
1878 default:
1879 return NULL_TREE;
1883 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1884 bitfield with a lowered type, the type of EXP is returned, rather
1885 than NULL_TREE. */
1887 tree
1888 unlowered_expr_type (const_tree exp)
1890 tree type;
1891 tree etype = TREE_TYPE (exp);
1893 type = is_bitfield_expr_with_lowered_type (exp);
1894 if (type)
1895 type = cp_build_qualified_type (type, cp_type_quals (etype));
1896 else
1897 type = etype;
1899 return type;
1902 /* Perform the conversions in [expr] that apply when an lvalue appears
1903 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1904 function-to-pointer conversions. In addition, manifest constants
1905 are replaced by their values, and bitfield references are converted
1906 to their declared types. Note that this function does not perform the
1907 lvalue-to-rvalue conversion for class types. If you need that conversion
1908 to for class types, then you probably need to use force_rvalue.
1910 Although the returned value is being used as an rvalue, this
1911 function does not wrap the returned expression in a
1912 NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1913 that the return value is no longer an lvalue. */
1915 tree
1916 decay_conversion (tree exp, tsubst_flags_t complain)
1918 tree type;
1919 enum tree_code code;
1920 location_t loc = EXPR_LOC_OR_LOC (exp, input_location);
1922 type = TREE_TYPE (exp);
1923 if (type == error_mark_node)
1924 return error_mark_node;
1926 exp = mark_rvalue_use (exp);
1928 exp = resolve_nondeduced_context (exp);
1929 if (type_unknown_p (exp))
1931 if (complain & tf_error)
1932 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
1933 return error_mark_node;
1936 code = TREE_CODE (type);
1938 /* FIXME remove for delayed folding. */
1939 exp = scalar_constant_value (exp);
1940 if (error_operand_p (exp))
1941 return error_mark_node;
1943 if (NULLPTR_TYPE_P (type) && !TREE_SIDE_EFFECTS (exp))
1944 return nullptr_node;
1946 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1947 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1948 if (code == VOID_TYPE)
1950 if (complain & tf_error)
1951 error_at (loc, "void value not ignored as it ought to be");
1952 return error_mark_node;
1954 if (invalid_nonstatic_memfn_p (exp, complain))
1955 return error_mark_node;
1956 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
1957 return cp_build_addr_expr (exp, complain);
1958 if (code == ARRAY_TYPE)
1960 tree adr;
1961 tree ptrtype;
1963 if (INDIRECT_REF_P (exp))
1964 return build_nop (build_pointer_type (TREE_TYPE (type)),
1965 TREE_OPERAND (exp, 0));
1967 if (TREE_CODE (exp) == COMPOUND_EXPR)
1969 tree op1 = decay_conversion (TREE_OPERAND (exp, 1), complain);
1970 if (op1 == error_mark_node)
1971 return error_mark_node;
1972 return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
1973 TREE_OPERAND (exp, 0), op1);
1976 if (!lvalue_p (exp)
1977 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1979 if (complain & tf_error)
1980 error_at (loc, "invalid use of non-lvalue array");
1981 return error_mark_node;
1984 /* Don't let an array compound literal decay to a pointer. It can
1985 still be used to initialize an array or bind to a reference. */
1986 if (TREE_CODE (exp) == TARGET_EXPR)
1988 if (complain & tf_error)
1989 error_at (loc, "taking address of temporary array");
1990 return error_mark_node;
1993 ptrtype = build_pointer_type (TREE_TYPE (type));
1995 if (VAR_P (exp))
1997 if (!cxx_mark_addressable (exp))
1998 return error_mark_node;
1999 adr = build_nop (ptrtype, build_address (exp));
2000 return adr;
2002 /* This way is better for a COMPONENT_REF since it can
2003 simplify the offset for a component. */
2004 adr = cp_build_addr_expr (exp, complain);
2005 return cp_convert (ptrtype, adr, complain);
2008 /* If a bitfield is used in a context where integral promotion
2009 applies, then the caller is expected to have used
2010 default_conversion. That function promotes bitfields correctly
2011 before calling this function. At this point, if we have a
2012 bitfield referenced, we may assume that is not subject to
2013 promotion, and that, therefore, the type of the resulting rvalue
2014 is the declared type of the bitfield. */
2015 exp = convert_bitfield_to_declared_type (exp);
2017 /* We do not call rvalue() here because we do not want to wrap EXP
2018 in a NON_LVALUE_EXPR. */
2020 /* [basic.lval]
2022 Non-class rvalues always have cv-unqualified types. */
2023 type = TREE_TYPE (exp);
2024 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
2025 exp = build_nop (cv_unqualified (type), exp);
2027 return exp;
2030 /* Perform preparatory conversions, as part of the "usual arithmetic
2031 conversions". In particular, as per [expr]:
2033 Whenever an lvalue expression appears as an operand of an
2034 operator that expects the rvalue for that operand, the
2035 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
2036 standard conversions are applied to convert the expression to an
2037 rvalue.
2039 In addition, we perform integral promotions here, as those are
2040 applied to both operands to a binary operator before determining
2041 what additional conversions should apply. */
2043 static tree
2044 cp_default_conversion (tree exp, tsubst_flags_t complain)
2046 /* Check for target-specific promotions. */
2047 tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
2048 if (promoted_type)
2049 exp = cp_convert (promoted_type, exp, complain);
2050 /* Perform the integral promotions first so that bitfield
2051 expressions (which may promote to "int", even if the bitfield is
2052 declared "unsigned") are promoted correctly. */
2053 else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
2054 exp = cp_perform_integral_promotions (exp, complain);
2055 /* Perform the other conversions. */
2056 exp = decay_conversion (exp, complain);
2058 return exp;
2061 /* C version. */
2063 tree
2064 default_conversion (tree exp)
2066 return cp_default_conversion (exp, tf_warning_or_error);
2069 /* EXPR is an expression with an integral or enumeration type.
2070 Perform the integral promotions in [conv.prom], and return the
2071 converted value. */
2073 tree
2074 cp_perform_integral_promotions (tree expr, tsubst_flags_t complain)
2076 tree type;
2077 tree promoted_type;
2079 expr = mark_rvalue_use (expr);
2081 /* [conv.prom]
2083 If the bitfield has an enumerated type, it is treated as any
2084 other value of that type for promotion purposes. */
2085 type = is_bitfield_expr_with_lowered_type (expr);
2086 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
2087 type = TREE_TYPE (expr);
2088 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
2089 /* Scoped enums don't promote. */
2090 if (SCOPED_ENUM_P (type))
2091 return expr;
2092 promoted_type = type_promotes_to (type);
2093 if (type != promoted_type)
2094 expr = cp_convert (promoted_type, expr, complain);
2095 return expr;
2098 /* C version. */
2100 tree
2101 perform_integral_promotions (tree expr)
2103 return cp_perform_integral_promotions (expr, tf_warning_or_error);
2106 /* Returns nonzero iff exp is a STRING_CST or the result of applying
2107 decay_conversion to one. */
2110 string_conv_p (const_tree totype, const_tree exp, int warn)
2112 tree t;
2114 if (!TYPE_PTR_P (totype))
2115 return 0;
2117 t = TREE_TYPE (totype);
2118 if (!same_type_p (t, char_type_node)
2119 && !same_type_p (t, char16_type_node)
2120 && !same_type_p (t, char32_type_node)
2121 && !same_type_p (t, wchar_type_node))
2122 return 0;
2124 if (TREE_CODE (exp) == STRING_CST)
2126 /* Make sure that we don't try to convert between char and wide chars. */
2127 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
2128 return 0;
2130 else
2132 /* Is this a string constant which has decayed to 'const char *'? */
2133 t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
2134 if (!same_type_p (TREE_TYPE (exp), t))
2135 return 0;
2136 STRIP_NOPS (exp);
2137 if (TREE_CODE (exp) != ADDR_EXPR
2138 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
2139 return 0;
2141 if (warn)
2143 if (cxx_dialect >= cxx11)
2144 pedwarn (input_location,
2145 pedantic ? OPT_Wpedantic : OPT_Wwrite_strings,
2146 "ISO C++ forbids converting a string constant to %qT",
2147 totype);
2148 else
2149 warning (OPT_Wwrite_strings,
2150 "deprecated conversion from string constant to %qT",
2151 totype);
2154 return 1;
2157 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2158 can, for example, use as an lvalue. This code used to be in
2159 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2160 expressions, where we're dealing with aggregates. But now it's again only
2161 called from unary_complex_lvalue. The case (in particular) that led to
2162 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2163 get it there. */
2165 static tree
2166 rationalize_conditional_expr (enum tree_code code, tree t,
2167 tsubst_flags_t complain)
2169 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
2171 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2172 the first operand is always the one to be used if both operands
2173 are equal, so we know what conditional expression this used to be. */
2174 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2176 tree op0 = TREE_OPERAND (t, 0);
2177 tree op1 = TREE_OPERAND (t, 1);
2179 /* The following code is incorrect if either operand side-effects. */
2180 gcc_assert (!TREE_SIDE_EFFECTS (op0)
2181 && !TREE_SIDE_EFFECTS (op1));
2182 return
2183 build_conditional_expr (loc,
2184 build_x_binary_op (loc,
2185 (TREE_CODE (t) == MIN_EXPR
2186 ? LE_EXPR : GE_EXPR),
2187 op0, TREE_CODE (op0),
2188 op1, TREE_CODE (op1),
2189 /*overload=*/NULL,
2190 complain),
2191 cp_build_unary_op (code, op0, 0, complain),
2192 cp_build_unary_op (code, op1, 0, complain),
2193 complain);
2196 return
2197 build_conditional_expr (loc, TREE_OPERAND (t, 0),
2198 cp_build_unary_op (code, TREE_OPERAND (t, 1), 0,
2199 complain),
2200 cp_build_unary_op (code, TREE_OPERAND (t, 2), 0,
2201 complain),
2202 complain);
2205 /* Given the TYPE of an anonymous union field inside T, return the
2206 FIELD_DECL for the field. If not found return NULL_TREE. Because
2207 anonymous unions can nest, we must also search all anonymous unions
2208 that are directly reachable. */
2210 tree
2211 lookup_anon_field (tree t, tree type)
2213 tree field;
2215 t = TYPE_MAIN_VARIANT (t);
2217 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2219 if (TREE_STATIC (field))
2220 continue;
2221 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2222 continue;
2224 /* If we find it directly, return the field. */
2225 if (DECL_NAME (field) == NULL_TREE
2226 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2228 return field;
2231 /* Otherwise, it could be nested, search harder. */
2232 if (DECL_NAME (field) == NULL_TREE
2233 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2235 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2236 if (subfield)
2237 return subfield;
2240 return NULL_TREE;
2243 /* Build an expression representing OBJECT.MEMBER. OBJECT is an
2244 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
2245 non-NULL, it indicates the path to the base used to name MEMBER.
2246 If PRESERVE_REFERENCE is true, the expression returned will have
2247 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
2248 returned will have the type referred to by the reference.
2250 This function does not perform access control; that is either done
2251 earlier by the parser when the name of MEMBER is resolved to MEMBER
2252 itself, or later when overload resolution selects one of the
2253 functions indicated by MEMBER. */
2255 tree
2256 build_class_member_access_expr (tree object, tree member,
2257 tree access_path, bool preserve_reference,
2258 tsubst_flags_t complain)
2260 tree object_type;
2261 tree member_scope;
2262 tree result = NULL_TREE;
2263 tree using_decl = NULL_TREE;
2265 if (error_operand_p (object) || error_operand_p (member))
2266 return error_mark_node;
2268 gcc_assert (DECL_P (member) || BASELINK_P (member));
2270 /* [expr.ref]
2272 The type of the first expression shall be "class object" (of a
2273 complete type). */
2274 object_type = TREE_TYPE (object);
2275 if (!currently_open_class (object_type)
2276 && !complete_type_or_maybe_complain (object_type, object, complain))
2277 return error_mark_node;
2278 if (!CLASS_TYPE_P (object_type))
2280 if (complain & tf_error)
2282 if (POINTER_TYPE_P (object_type)
2283 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2284 error ("request for member %qD in %qE, which is of pointer "
2285 "type %qT (maybe you meant to use %<->%> ?)",
2286 member, object, object_type);
2287 else
2288 error ("request for member %qD in %qE, which is of non-class "
2289 "type %qT", member, object, object_type);
2291 return error_mark_node;
2294 /* The standard does not seem to actually say that MEMBER must be a
2295 member of OBJECT_TYPE. However, that is clearly what is
2296 intended. */
2297 if (DECL_P (member))
2299 member_scope = DECL_CLASS_CONTEXT (member);
2300 if (!mark_used (member, complain) && !(complain & tf_error))
2301 return error_mark_node;
2302 if (TREE_DEPRECATED (member))
2303 warn_deprecated_use (member, NULL_TREE);
2305 else
2306 member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2307 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2308 presently be the anonymous union. Go outwards until we find a
2309 type related to OBJECT_TYPE. */
2310 while ((ANON_AGGR_TYPE_P (member_scope) || UNSCOPED_ENUM_P (member_scope))
2311 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2312 object_type))
2313 member_scope = TYPE_CONTEXT (member_scope);
2314 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2316 if (complain & tf_error)
2318 if (TREE_CODE (member) == FIELD_DECL)
2319 error ("invalid use of nonstatic data member %qE", member);
2320 else
2321 error ("%qD is not a member of %qT", member, object_type);
2323 return error_mark_node;
2326 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2327 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
2328 in the front end; only _DECLs and _REFs are lvalues in the back end. */
2330 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2331 if (temp)
2332 object = cp_build_indirect_ref (temp, RO_NULL, complain);
2335 /* In [expr.ref], there is an explicit list of the valid choices for
2336 MEMBER. We check for each of those cases here. */
2337 if (VAR_P (member))
2339 /* A static data member. */
2340 result = member;
2341 mark_exp_read (object);
2342 /* If OBJECT has side-effects, they are supposed to occur. */
2343 if (TREE_SIDE_EFFECTS (object))
2344 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2346 else if (TREE_CODE (member) == FIELD_DECL)
2348 /* A non-static data member. */
2349 bool null_object_p;
2350 int type_quals;
2351 tree member_type;
2353 null_object_p = (INDIRECT_REF_P (object)
2354 && integer_zerop (TREE_OPERAND (object, 0)));
2356 /* Convert OBJECT to the type of MEMBER. */
2357 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2358 TYPE_MAIN_VARIANT (member_scope)))
2360 tree binfo;
2361 base_kind kind;
2363 binfo = lookup_base (access_path ? access_path : object_type,
2364 member_scope, ba_unique, &kind, complain);
2365 if (binfo == error_mark_node)
2366 return error_mark_node;
2368 /* It is invalid to try to get to a virtual base of a
2369 NULL object. The most common cause is invalid use of
2370 offsetof macro. */
2371 if (null_object_p && kind == bk_via_virtual)
2373 if (complain & tf_error)
2375 error ("invalid access to non-static data member %qD in "
2376 "virtual base of NULL object", member);
2378 return error_mark_node;
2381 /* Convert to the base. */
2382 object = build_base_path (PLUS_EXPR, object, binfo,
2383 /*nonnull=*/1, complain);
2384 /* If we found the base successfully then we should be able
2385 to convert to it successfully. */
2386 gcc_assert (object != error_mark_node);
2389 /* If MEMBER is from an anonymous aggregate, we have converted
2390 OBJECT so that it refers to the class containing the
2391 anonymous union. Generate a reference to the anonymous union
2392 itself, and recur to find MEMBER. */
2393 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2394 /* When this code is called from build_field_call, the
2395 object already has the type of the anonymous union.
2396 That is because the COMPONENT_REF was already
2397 constructed, and was then disassembled before calling
2398 build_field_call. After the function-call code is
2399 cleaned up, this waste can be eliminated. */
2400 && (!same_type_ignoring_top_level_qualifiers_p
2401 (TREE_TYPE (object), DECL_CONTEXT (member))))
2403 tree anonymous_union;
2405 anonymous_union = lookup_anon_field (TREE_TYPE (object),
2406 DECL_CONTEXT (member));
2407 object = build_class_member_access_expr (object,
2408 anonymous_union,
2409 /*access_path=*/NULL_TREE,
2410 preserve_reference,
2411 complain);
2414 /* Compute the type of the field, as described in [expr.ref]. */
2415 type_quals = TYPE_UNQUALIFIED;
2416 member_type = TREE_TYPE (member);
2417 if (TREE_CODE (member_type) != REFERENCE_TYPE)
2419 type_quals = (cp_type_quals (member_type)
2420 | cp_type_quals (object_type));
2422 /* A field is const (volatile) if the enclosing object, or the
2423 field itself, is const (volatile). But, a mutable field is
2424 not const, even within a const object. */
2425 if (DECL_MUTABLE_P (member))
2426 type_quals &= ~TYPE_QUAL_CONST;
2427 member_type = cp_build_qualified_type (member_type, type_quals);
2430 result = build3_loc (input_location, COMPONENT_REF, member_type,
2431 object, member, NULL_TREE);
2432 result = fold_if_not_in_template (result);
2434 /* Mark the expression const or volatile, as appropriate. Even
2435 though we've dealt with the type above, we still have to mark the
2436 expression itself. */
2437 if (type_quals & TYPE_QUAL_CONST)
2438 TREE_READONLY (result) = 1;
2439 if (type_quals & TYPE_QUAL_VOLATILE)
2440 TREE_THIS_VOLATILE (result) = 1;
2442 else if (BASELINK_P (member))
2444 /* The member is a (possibly overloaded) member function. */
2445 tree functions;
2446 tree type;
2448 /* If the MEMBER is exactly one static member function, then we
2449 know the type of the expression. Otherwise, we must wait
2450 until overload resolution has been performed. */
2451 functions = BASELINK_FUNCTIONS (member);
2452 if (TREE_CODE (functions) == FUNCTION_DECL
2453 && DECL_STATIC_FUNCTION_P (functions))
2454 type = TREE_TYPE (functions);
2455 else
2456 type = unknown_type_node;
2457 /* Note that we do not convert OBJECT to the BASELINK_BINFO
2458 base. That will happen when the function is called. */
2459 result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2461 else if (TREE_CODE (member) == CONST_DECL)
2463 /* The member is an enumerator. */
2464 result = member;
2465 /* If OBJECT has side-effects, they are supposed to occur. */
2466 if (TREE_SIDE_EFFECTS (object))
2467 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2468 object, result);
2470 else if ((using_decl = strip_using_decl (member)) != member)
2471 result = build_class_member_access_expr (object,
2472 using_decl,
2473 access_path, preserve_reference,
2474 complain);
2475 else
2477 if (complain & tf_error)
2478 error ("invalid use of %qD", member);
2479 return error_mark_node;
2482 if (!preserve_reference)
2483 /* [expr.ref]
2485 If E2 is declared to have type "reference to T", then ... the
2486 type of E1.E2 is T. */
2487 result = convert_from_reference (result);
2489 return result;
2492 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2493 SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type. */
2495 static tree
2496 lookup_destructor (tree object, tree scope, tree dtor_name,
2497 tsubst_flags_t complain)
2499 tree object_type = TREE_TYPE (object);
2500 tree dtor_type = TREE_OPERAND (dtor_name, 0);
2501 tree expr;
2503 /* We've already complained about this destructor. */
2504 if (dtor_type == error_mark_node)
2505 return error_mark_node;
2507 if (scope && !check_dtor_name (scope, dtor_type))
2509 if (complain & tf_error)
2510 error ("qualified type %qT does not match destructor name ~%qT",
2511 scope, dtor_type);
2512 return error_mark_node;
2514 if (is_auto (dtor_type))
2515 dtor_type = object_type;
2516 else if (identifier_p (dtor_type))
2518 /* In a template, names we can't find a match for are still accepted
2519 destructor names, and we check them here. */
2520 if (check_dtor_name (object_type, dtor_type))
2521 dtor_type = object_type;
2522 else
2524 if (complain & tf_error)
2525 error ("object type %qT does not match destructor name ~%qT",
2526 object_type, dtor_type);
2527 return error_mark_node;
2531 else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2533 if (complain & tf_error)
2534 error ("the type being destroyed is %qT, but the destructor "
2535 "refers to %qT", TYPE_MAIN_VARIANT (object_type), dtor_type);
2536 return error_mark_node;
2538 expr = lookup_member (dtor_type, complete_dtor_identifier,
2539 /*protect=*/1, /*want_type=*/false,
2540 tf_warning_or_error);
2541 if (!expr)
2543 if (complain & tf_error)
2544 cxx_incomplete_type_error (dtor_name, dtor_type);
2545 return error_mark_node;
2547 expr = (adjust_result_of_qualified_name_lookup
2548 (expr, dtor_type, object_type));
2549 if (scope == NULL_TREE)
2550 /* We need to call adjust_result_of_qualified_name_lookup in case the
2551 destructor names a base class, but we unset BASELINK_QUALIFIED_P so
2552 that we still get virtual function binding. */
2553 BASELINK_QUALIFIED_P (expr) = false;
2554 return expr;
2557 /* An expression of the form "A::template B" has been resolved to
2558 DECL. Issue a diagnostic if B is not a template or template
2559 specialization. */
2561 void
2562 check_template_keyword (tree decl)
2564 /* The standard says:
2566 [temp.names]
2568 If a name prefixed by the keyword template is not a member
2569 template, the program is ill-formed.
2571 DR 228 removed the restriction that the template be a member
2572 template.
2574 DR 96, if accepted would add the further restriction that explicit
2575 template arguments must be provided if the template keyword is
2576 used, but, as of 2005-10-16, that DR is still in "drafting". If
2577 this DR is accepted, then the semantic checks here can be
2578 simplified, as the entity named must in fact be a template
2579 specialization, rather than, as at present, a set of overloaded
2580 functions containing at least one template function. */
2581 if (TREE_CODE (decl) != TEMPLATE_DECL
2582 && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2584 if (!is_overloaded_fn (decl))
2585 permerror (input_location, "%qD is not a template", decl);
2586 else
2588 tree fns;
2589 fns = decl;
2590 if (BASELINK_P (fns))
2591 fns = BASELINK_FUNCTIONS (fns);
2592 while (fns)
2594 tree fn = OVL_CURRENT (fns);
2595 if (TREE_CODE (fn) == TEMPLATE_DECL
2596 || TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2597 break;
2598 if (TREE_CODE (fn) == FUNCTION_DECL
2599 && DECL_USE_TEMPLATE (fn)
2600 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
2601 break;
2602 fns = OVL_NEXT (fns);
2604 if (!fns)
2605 permerror (input_location, "%qD is not a template", decl);
2610 /* This function is called by the parser to process a class member
2611 access expression of the form OBJECT.NAME. NAME is a node used by
2612 the parser to represent a name; it is not yet a DECL. It may,
2613 however, be a BASELINK where the BASELINK_FUNCTIONS is a
2614 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
2615 there is no reason to do the lookup twice, so the parser keeps the
2616 BASELINK. TEMPLATE_P is true iff NAME was explicitly declared to
2617 be a template via the use of the "A::template B" syntax. */
2619 tree
2620 finish_class_member_access_expr (tree object, tree name, bool template_p,
2621 tsubst_flags_t complain)
2623 tree expr;
2624 tree object_type;
2625 tree member;
2626 tree access_path = NULL_TREE;
2627 tree orig_object = object;
2628 tree orig_name = name;
2630 if (object == error_mark_node || name == error_mark_node)
2631 return error_mark_node;
2633 /* If OBJECT is an ObjC class instance, we must obey ObjC access rules. */
2634 if (!objc_is_public (object, name))
2635 return error_mark_node;
2637 object_type = TREE_TYPE (object);
2639 if (processing_template_decl)
2641 if (/* If OBJECT_TYPE is dependent, so is OBJECT.NAME. */
2642 dependent_type_p (object_type)
2643 /* If NAME is just an IDENTIFIER_NODE, then the expression
2644 is dependent. */
2645 || identifier_p (object)
2646 /* If NAME is "f<args>", where either 'f' or 'args' is
2647 dependent, then the expression is dependent. */
2648 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2649 && dependent_template_id_p (TREE_OPERAND (name, 0),
2650 TREE_OPERAND (name, 1)))
2651 /* If NAME is "T::X" where "T" is dependent, then the
2652 expression is dependent. */
2653 || (TREE_CODE (name) == SCOPE_REF
2654 && TYPE_P (TREE_OPERAND (name, 0))
2655 && dependent_type_p (TREE_OPERAND (name, 0))))
2656 return build_min_nt_loc (UNKNOWN_LOCATION, COMPONENT_REF,
2657 object, name, NULL_TREE);
2658 object = build_non_dependent_expr (object);
2660 else if (c_dialect_objc ()
2661 && identifier_p (name)
2662 && (expr = objc_maybe_build_component_ref (object, name)))
2663 return expr;
2665 /* [expr.ref]
2667 The type of the first expression shall be "class object" (of a
2668 complete type). */
2669 if (!currently_open_class (object_type)
2670 && !complete_type_or_maybe_complain (object_type, object, complain))
2671 return error_mark_node;
2672 if (!CLASS_TYPE_P (object_type))
2674 if (complain & tf_error)
2676 if (POINTER_TYPE_P (object_type)
2677 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2678 error ("request for member %qD in %qE, which is of pointer "
2679 "type %qT (maybe you meant to use %<->%> ?)",
2680 name, object, object_type);
2681 else
2682 error ("request for member %qD in %qE, which is of non-class "
2683 "type %qT", name, object, object_type);
2685 return error_mark_node;
2688 if (BASELINK_P (name))
2689 /* A member function that has already been looked up. */
2690 member = name;
2691 else
2693 bool is_template_id = false;
2694 tree template_args = NULL_TREE;
2695 tree scope;
2697 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2699 is_template_id = true;
2700 template_args = TREE_OPERAND (name, 1);
2701 name = TREE_OPERAND (name, 0);
2703 if (TREE_CODE (name) == OVERLOAD)
2704 name = DECL_NAME (get_first_fn (name));
2705 else if (DECL_P (name))
2706 name = DECL_NAME (name);
2709 if (TREE_CODE (name) == SCOPE_REF)
2711 /* A qualified name. The qualifying class or namespace `S'
2712 has already been looked up; it is either a TYPE or a
2713 NAMESPACE_DECL. */
2714 scope = TREE_OPERAND (name, 0);
2715 name = TREE_OPERAND (name, 1);
2717 /* If SCOPE is a namespace, then the qualified name does not
2718 name a member of OBJECT_TYPE. */
2719 if (TREE_CODE (scope) == NAMESPACE_DECL)
2721 if (complain & tf_error)
2722 error ("%<%D::%D%> is not a member of %qT",
2723 scope, name, object_type);
2724 return error_mark_node;
2727 if (TREE_CODE (scope) == ENUMERAL_TYPE)
2729 /* Looking up a member enumerator (c++/56793). */
2730 if (!TYPE_CLASS_SCOPE_P (scope)
2731 || !DERIVED_FROM_P (TYPE_CONTEXT (scope), object_type))
2733 if (complain & tf_error)
2734 error ("%<%D::%D%> is not a member of %qT",
2735 scope, name, object_type);
2736 return error_mark_node;
2738 tree val = lookup_enumerator (scope, name);
2739 if (TREE_SIDE_EFFECTS (object))
2740 val = build2 (COMPOUND_EXPR, TREE_TYPE (val), object, val);
2741 return val;
2744 gcc_assert (CLASS_TYPE_P (scope));
2745 gcc_assert (identifier_p (name) || TREE_CODE (name) == BIT_NOT_EXPR);
2747 if (constructor_name_p (name, scope))
2749 if (complain & tf_error)
2750 error ("cannot call constructor %<%T::%D%> directly",
2751 scope, name);
2752 return error_mark_node;
2755 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
2756 access_path = lookup_base (object_type, scope, ba_check,
2757 NULL, complain);
2758 if (access_path == error_mark_node)
2759 return error_mark_node;
2760 if (!access_path)
2762 if (complain & tf_error)
2763 error ("%qT is not a base of %qT", scope, object_type);
2764 return error_mark_node;
2767 else
2769 scope = NULL_TREE;
2770 access_path = object_type;
2773 if (TREE_CODE (name) == BIT_NOT_EXPR)
2774 member = lookup_destructor (object, scope, name, complain);
2775 else
2777 /* Look up the member. */
2778 member = lookup_member (access_path, name, /*protect=*/1,
2779 /*want_type=*/false, complain);
2780 if (member == NULL_TREE)
2782 if (complain & tf_error)
2783 error ("%q#T has no member named %qE",
2784 TREE_CODE (access_path) == TREE_BINFO
2785 ? TREE_TYPE (access_path) : object_type, name);
2786 return error_mark_node;
2788 if (member == error_mark_node)
2789 return error_mark_node;
2792 if (is_template_id)
2794 tree templ = member;
2796 if (BASELINK_P (templ))
2797 templ = lookup_template_function (templ, template_args);
2798 else
2800 if (complain & tf_error)
2801 error ("%qD is not a member template function", name);
2802 return error_mark_node;
2807 if (TREE_DEPRECATED (member))
2808 warn_deprecated_use (member, NULL_TREE);
2810 if (template_p)
2811 check_template_keyword (member);
2813 expr = build_class_member_access_expr (object, member, access_path,
2814 /*preserve_reference=*/false,
2815 complain);
2816 if (processing_template_decl && expr != error_mark_node)
2818 if (BASELINK_P (member))
2820 if (TREE_CODE (orig_name) == SCOPE_REF)
2821 BASELINK_QUALIFIED_P (member) = 1;
2822 orig_name = member;
2824 return build_min_non_dep (COMPONENT_REF, expr,
2825 orig_object, orig_name,
2826 NULL_TREE);
2829 return expr;
2832 /* Build a COMPONENT_REF of OBJECT and MEMBER with the appropriate
2833 type. */
2835 tree
2836 build_simple_component_ref (tree object, tree member)
2838 tree type = cp_build_qualified_type (TREE_TYPE (member),
2839 cp_type_quals (TREE_TYPE (object)));
2840 return fold_build3_loc (input_location,
2841 COMPONENT_REF, type,
2842 object, member, NULL_TREE);
2845 /* Return an expression for the MEMBER_NAME field in the internal
2846 representation of PTRMEM, a pointer-to-member function. (Each
2847 pointer-to-member function type gets its own RECORD_TYPE so it is
2848 more convenient to access the fields by name than by FIELD_DECL.)
2849 This routine converts the NAME to a FIELD_DECL and then creates the
2850 node for the complete expression. */
2852 tree
2853 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
2855 tree ptrmem_type;
2856 tree member;
2858 /* This code is a stripped down version of
2859 build_class_member_access_expr. It does not work to use that
2860 routine directly because it expects the object to be of class
2861 type. */
2862 ptrmem_type = TREE_TYPE (ptrmem);
2863 gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
2864 for (member = TYPE_FIELDS (ptrmem_type); member;
2865 member = DECL_CHAIN (member))
2866 if (DECL_NAME (member) == member_name)
2867 break;
2868 return build_simple_component_ref (ptrmem, member);
2871 /* Given an expression PTR for a pointer, return an expression
2872 for the value pointed to.
2873 ERRORSTRING is the name of the operator to appear in error messages.
2875 This function may need to overload OPERATOR_FNNAME.
2876 Must also handle REFERENCE_TYPEs for C++. */
2878 tree
2879 build_x_indirect_ref (location_t loc, tree expr, ref_operator errorstring,
2880 tsubst_flags_t complain)
2882 tree orig_expr = expr;
2883 tree rval;
2885 if (processing_template_decl)
2887 /* Retain the type if we know the operand is a pointer. */
2888 if (TREE_TYPE (expr) && POINTER_TYPE_P (TREE_TYPE (expr)))
2889 return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
2890 if (type_dependent_expression_p (expr))
2891 return build_min_nt_loc (loc, INDIRECT_REF, expr);
2892 expr = build_non_dependent_expr (expr);
2895 rval = build_new_op (loc, INDIRECT_REF, LOOKUP_NORMAL, expr,
2896 NULL_TREE, NULL_TREE, /*overload=*/NULL, complain);
2897 if (!rval)
2898 rval = cp_build_indirect_ref (expr, errorstring, complain);
2900 if (processing_template_decl && rval != error_mark_node)
2901 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
2902 else
2903 return rval;
2906 /* Helper function called from c-common. */
2907 tree
2908 build_indirect_ref (location_t /*loc*/,
2909 tree ptr, ref_operator errorstring)
2911 return cp_build_indirect_ref (ptr, errorstring, tf_warning_or_error);
2914 tree
2915 cp_build_indirect_ref (tree ptr, ref_operator errorstring,
2916 tsubst_flags_t complain)
2918 tree pointer, type;
2920 if (ptr == current_class_ptr
2921 || (TREE_CODE (ptr) == NOP_EXPR
2922 && TREE_OPERAND (ptr, 0) == current_class_ptr
2923 && (same_type_ignoring_top_level_qualifiers_p
2924 (TREE_TYPE (ptr), TREE_TYPE (current_class_ptr)))))
2925 return current_class_ref;
2927 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2928 ? ptr : decay_conversion (ptr, complain));
2929 if (pointer == error_mark_node)
2930 return error_mark_node;
2932 type = TREE_TYPE (pointer);
2934 if (POINTER_TYPE_P (type))
2936 /* [expr.unary.op]
2938 If the type of the expression is "pointer to T," the type
2939 of the result is "T." */
2940 tree t = TREE_TYPE (type);
2942 if ((CONVERT_EXPR_P (ptr)
2943 || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
2944 && (!CLASS_TYPE_P (t) || !CLASSTYPE_EMPTY_P (t)))
2946 /* If a warning is issued, mark it to avoid duplicates from
2947 the backend. This only needs to be done at
2948 warn_strict_aliasing > 2. */
2949 if (warn_strict_aliasing > 2)
2950 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (ptr, 0)),
2951 type, TREE_OPERAND (ptr, 0)))
2952 TREE_NO_WARNING (ptr) = 1;
2955 if (VOID_TYPE_P (t))
2957 /* A pointer to incomplete type (other than cv void) can be
2958 dereferenced [expr.unary.op]/1 */
2959 if (complain & tf_error)
2960 error ("%qT is not a pointer-to-object type", type);
2961 return error_mark_node;
2963 else if (TREE_CODE (pointer) == ADDR_EXPR
2964 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
2965 /* The POINTER was something like `&x'. We simplify `*&x' to
2966 `x'. */
2967 return TREE_OPERAND (pointer, 0);
2968 else
2970 tree ref = build1 (INDIRECT_REF, t, pointer);
2972 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2973 so that we get the proper error message if the result is used
2974 to assign to. Also, &* is supposed to be a no-op. */
2975 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
2976 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
2977 TREE_SIDE_EFFECTS (ref)
2978 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
2979 return ref;
2982 else if (!(complain & tf_error))
2983 /* Don't emit any errors; we'll just return ERROR_MARK_NODE later. */
2985 /* `pointer' won't be an error_mark_node if we were given a
2986 pointer to member, so it's cool to check for this here. */
2987 else if (TYPE_PTRMEM_P (type))
2988 switch (errorstring)
2990 case RO_ARRAY_INDEXING:
2991 error ("invalid use of array indexing on pointer to member");
2992 break;
2993 case RO_UNARY_STAR:
2994 error ("invalid use of unary %<*%> on pointer to member");
2995 break;
2996 case RO_IMPLICIT_CONVERSION:
2997 error ("invalid use of implicit conversion on pointer to member");
2998 break;
2999 case RO_ARROW_STAR:
3000 error ("left hand operand of %<->*%> must be a pointer to class, "
3001 "but is a pointer to member of type %qT", type);
3002 break;
3003 default:
3004 gcc_unreachable ();
3006 else if (pointer != error_mark_node)
3007 invalid_indirection_error (input_location, type, errorstring);
3009 return error_mark_node;
3012 /* This handles expressions of the form "a[i]", which denotes
3013 an array reference.
3015 This is logically equivalent in C to *(a+i), but we may do it differently.
3016 If A is a variable or a member, we generate a primitive ARRAY_REF.
3017 This avoids forcing the array out of registers, and can work on
3018 arrays that are not lvalues (for example, members of structures returned
3019 by functions).
3021 If INDEX is of some user-defined type, it must be converted to
3022 integer type. Otherwise, to make a compatible PLUS_EXPR, it
3023 will inherit the type of the array, which will be some pointer type.
3025 LOC is the location to use in building the array reference. */
3027 tree
3028 cp_build_array_ref (location_t loc, tree array, tree idx,
3029 tsubst_flags_t complain)
3031 tree ret;
3033 if (idx == 0)
3035 if (complain & tf_error)
3036 error_at (loc, "subscript missing in array reference");
3037 return error_mark_node;
3040 /* If an array's index is an array notation, then its rank cannot be
3041 greater than one. */
3042 if (flag_cilkplus && contains_array_notation_expr (idx))
3044 size_t rank = 0;
3046 /* If find_rank returns false, then it should have reported an error,
3047 thus it is unnecessary for repetition. */
3048 if (!find_rank (loc, idx, idx, true, &rank))
3049 return error_mark_node;
3050 if (rank > 1)
3052 error_at (loc, "rank of the array%'s index is greater than 1");
3053 return error_mark_node;
3056 if (TREE_TYPE (array) == error_mark_node
3057 || TREE_TYPE (idx) == error_mark_node)
3058 return error_mark_node;
3060 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
3061 inside it. */
3062 switch (TREE_CODE (array))
3064 case COMPOUND_EXPR:
3066 tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3067 complain);
3068 ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
3069 TREE_OPERAND (array, 0), value);
3070 SET_EXPR_LOCATION (ret, loc);
3071 return ret;
3074 case COND_EXPR:
3075 ret = build_conditional_expr
3076 (loc, TREE_OPERAND (array, 0),
3077 cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
3078 complain),
3079 cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
3080 complain),
3081 complain);
3082 protected_set_expr_location (ret, loc);
3083 return ret;
3085 default:
3086 break;
3089 bool non_lvalue
3090 = convert_vector_to_pointer_for_subscript (loc, &array, idx);
3092 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
3094 tree rval, type;
3096 warn_array_subscript_with_type_char (loc, idx);
3098 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
3100 if (complain & tf_error)
3101 error_at (loc, "array subscript is not an integer");
3102 return error_mark_node;
3105 /* Apply integral promotions *after* noticing character types.
3106 (It is unclear why we do these promotions -- the standard
3107 does not say that we should. In fact, the natural thing would
3108 seem to be to convert IDX to ptrdiff_t; we're performing
3109 pointer arithmetic.) */
3110 idx = cp_perform_integral_promotions (idx, complain);
3112 /* An array that is indexed by a non-constant
3113 cannot be stored in a register; we must be able to do
3114 address arithmetic on its address.
3115 Likewise an array of elements of variable size. */
3116 if (TREE_CODE (idx) != INTEGER_CST
3117 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
3118 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
3119 != INTEGER_CST)))
3121 if (!cxx_mark_addressable (array))
3122 return error_mark_node;
3125 /* An array that is indexed by a constant value which is not within
3126 the array bounds cannot be stored in a register either; because we
3127 would get a crash in store_bit_field/extract_bit_field when trying
3128 to access a non-existent part of the register. */
3129 if (TREE_CODE (idx) == INTEGER_CST
3130 && TYPE_DOMAIN (TREE_TYPE (array))
3131 && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
3133 if (!cxx_mark_addressable (array))
3134 return error_mark_node;
3137 if (!lvalue_p (array))
3139 if (complain & tf_error)
3140 pedwarn (loc, OPT_Wpedantic,
3141 "ISO C++ forbids subscripting non-lvalue array");
3142 else
3143 return error_mark_node;
3146 /* Note in C++ it is valid to subscript a `register' array, since
3147 it is valid to take the address of something with that
3148 storage specification. */
3149 if (extra_warnings)
3151 tree foo = array;
3152 while (TREE_CODE (foo) == COMPONENT_REF)
3153 foo = TREE_OPERAND (foo, 0);
3154 if (VAR_P (foo) && DECL_REGISTER (foo)
3155 && (complain & tf_warning))
3156 warning_at (loc, OPT_Wextra,
3157 "subscripting array declared %<register%>");
3160 type = TREE_TYPE (TREE_TYPE (array));
3161 rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
3162 /* Array ref is const/volatile if the array elements are
3163 or if the array is.. */
3164 TREE_READONLY (rval)
3165 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
3166 TREE_SIDE_EFFECTS (rval)
3167 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
3168 TREE_THIS_VOLATILE (rval)
3169 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
3170 ret = require_complete_type_sfinae (fold_if_not_in_template (rval),
3171 complain);
3172 protected_set_expr_location (ret, loc);
3173 if (non_lvalue)
3174 ret = non_lvalue_loc (loc, ret);
3175 return ret;
3179 tree ar = cp_default_conversion (array, complain);
3180 tree ind = cp_default_conversion (idx, complain);
3182 /* Put the integer in IND to simplify error checking. */
3183 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
3185 tree temp = ar;
3186 ar = ind;
3187 ind = temp;
3190 if (ar == error_mark_node || ind == error_mark_node)
3191 return error_mark_node;
3193 if (!TYPE_PTR_P (TREE_TYPE (ar)))
3195 if (complain & tf_error)
3196 error_at (loc, "subscripted value is neither array nor pointer");
3197 return error_mark_node;
3199 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
3201 if (complain & tf_error)
3202 error_at (loc, "array subscript is not an integer");
3203 return error_mark_node;
3206 warn_array_subscript_with_type_char (loc, idx);
3208 ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
3209 PLUS_EXPR, ar, ind,
3210 complain),
3211 RO_ARRAY_INDEXING,
3212 complain);
3213 protected_set_expr_location (ret, loc);
3214 if (non_lvalue)
3215 ret = non_lvalue_loc (loc, ret);
3216 return ret;
3220 /* Entry point for Obj-C++. */
3222 tree
3223 build_array_ref (location_t loc, tree array, tree idx)
3225 return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
3228 /* Resolve a pointer to member function. INSTANCE is the object
3229 instance to use, if the member points to a virtual member.
3231 This used to avoid checking for virtual functions if basetype
3232 has no virtual functions, according to an earlier ANSI draft.
3233 With the final ISO C++ rules, such an optimization is
3234 incorrect: A pointer to a derived member can be static_cast
3235 to pointer-to-base-member, as long as the dynamic object
3236 later has the right member. So now we only do this optimization
3237 when we know the dynamic type of the object. */
3239 tree
3240 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function,
3241 tsubst_flags_t complain)
3243 if (TREE_CODE (function) == OFFSET_REF)
3244 function = TREE_OPERAND (function, 1);
3246 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3248 tree idx, delta, e1, e2, e3, vtbl;
3249 bool nonvirtual;
3250 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3251 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3253 tree instance_ptr = *instance_ptrptr;
3254 tree instance_save_expr = 0;
3255 if (instance_ptr == error_mark_node)
3257 if (TREE_CODE (function) == PTRMEM_CST)
3259 /* Extracting the function address from a pmf is only
3260 allowed with -Wno-pmf-conversions. It only works for
3261 pmf constants. */
3262 e1 = build_addr_func (PTRMEM_CST_MEMBER (function), complain);
3263 e1 = convert (fntype, e1);
3264 return e1;
3266 else
3268 if (complain & tf_error)
3269 error ("object missing in use of %qE", function);
3270 return error_mark_node;
3274 /* True if we know that the dynamic type of the object doesn't have
3275 virtual functions, so we can assume the PFN field is a pointer. */
3276 nonvirtual = (COMPLETE_TYPE_P (basetype)
3277 && !TYPE_POLYMORPHIC_P (basetype)
3278 && resolves_to_fixed_type_p (instance_ptr, 0));
3280 /* If we don't really have an object (i.e. in an ill-formed
3281 conversion from PMF to pointer), we can't resolve virtual
3282 functions anyway. */
3283 if (!nonvirtual && is_dummy_object (instance_ptr))
3284 nonvirtual = true;
3286 if (TREE_SIDE_EFFECTS (instance_ptr))
3287 instance_ptr = instance_save_expr = save_expr (instance_ptr);
3289 if (TREE_SIDE_EFFECTS (function))
3290 function = save_expr (function);
3292 /* Start by extracting all the information from the PMF itself. */
3293 e3 = pfn_from_ptrmemfunc (function);
3294 delta = delta_from_ptrmemfunc (function);
3295 idx = build1 (NOP_EXPR, vtable_index_type, e3);
3296 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3298 case ptrmemfunc_vbit_in_pfn:
3299 e1 = cp_build_binary_op (input_location,
3300 BIT_AND_EXPR, idx, integer_one_node,
3301 complain);
3302 idx = cp_build_binary_op (input_location,
3303 MINUS_EXPR, idx, integer_one_node,
3304 complain);
3305 if (idx == error_mark_node)
3306 return error_mark_node;
3307 break;
3309 case ptrmemfunc_vbit_in_delta:
3310 e1 = cp_build_binary_op (input_location,
3311 BIT_AND_EXPR, delta, integer_one_node,
3312 complain);
3313 delta = cp_build_binary_op (input_location,
3314 RSHIFT_EXPR, delta, integer_one_node,
3315 complain);
3316 if (delta == error_mark_node)
3317 return error_mark_node;
3318 break;
3320 default:
3321 gcc_unreachable ();
3324 if (e1 == error_mark_node)
3325 return error_mark_node;
3327 /* Convert down to the right base before using the instance. A
3328 special case is that in a pointer to member of class C, C may
3329 be incomplete. In that case, the function will of course be
3330 a member of C, and no conversion is required. In fact,
3331 lookup_base will fail in that case, because incomplete
3332 classes do not have BINFOs. */
3333 if (!same_type_ignoring_top_level_qualifiers_p
3334 (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3336 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3337 basetype, ba_check, NULL, complain);
3338 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3339 1, complain);
3340 if (instance_ptr == error_mark_node)
3341 return error_mark_node;
3343 /* ...and then the delta in the PMF. */
3344 instance_ptr = fold_build_pointer_plus (instance_ptr, delta);
3346 /* Hand back the adjusted 'this' argument to our caller. */
3347 *instance_ptrptr = instance_ptr;
3349 if (nonvirtual)
3350 /* Now just return the pointer. */
3351 return e3;
3353 /* Next extract the vtable pointer from the object. */
3354 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3355 instance_ptr);
3356 vtbl = cp_build_indirect_ref (vtbl, RO_NULL, complain);
3357 if (vtbl == error_mark_node)
3358 return error_mark_node;
3360 /* Finally, extract the function pointer from the vtable. */
3361 e2 = fold_build_pointer_plus_loc (input_location, vtbl, idx);
3362 e2 = cp_build_indirect_ref (e2, RO_NULL, complain);
3363 if (e2 == error_mark_node)
3364 return error_mark_node;
3365 TREE_CONSTANT (e2) = 1;
3367 /* When using function descriptors, the address of the
3368 vtable entry is treated as a function pointer. */
3369 if (TARGET_VTABLE_USES_DESCRIPTORS)
3370 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3371 cp_build_addr_expr (e2, complain));
3373 e2 = fold_convert (TREE_TYPE (e3), e2);
3374 e1 = build_conditional_expr (input_location, e1, e2, e3, complain);
3375 if (e1 == error_mark_node)
3376 return error_mark_node;
3378 /* Make sure this doesn't get evaluated first inside one of the
3379 branches of the COND_EXPR. */
3380 if (instance_save_expr)
3381 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3382 instance_save_expr, e1);
3384 function = e1;
3386 return function;
3389 /* Used by the C-common bits. */
3390 tree
3391 build_function_call (location_t /*loc*/,
3392 tree function, tree params)
3394 return cp_build_function_call (function, params, tf_warning_or_error);
3397 /* Used by the C-common bits. */
3398 tree
3399 build_function_call_vec (location_t /*loc*/, vec<location_t> /*arg_loc*/,
3400 tree function, vec<tree, va_gc> *params,
3401 vec<tree, va_gc> * /*origtypes*/)
3403 vec<tree, va_gc> *orig_params = params;
3404 tree ret = cp_build_function_call_vec (function, &params,
3405 tf_warning_or_error);
3407 /* cp_build_function_call_vec can reallocate PARAMS by adding
3408 default arguments. That should never happen here. Verify
3409 that. */
3410 gcc_assert (params == orig_params);
3412 return ret;
3415 /* Build a function call using a tree list of arguments. */
3417 static tree
3418 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3420 vec<tree, va_gc> *vec;
3421 tree ret;
3423 vec = make_tree_vector ();
3424 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3425 vec_safe_push (vec, TREE_VALUE (params));
3426 ret = cp_build_function_call_vec (function, &vec, complain);
3427 release_tree_vector (vec);
3428 return ret;
3431 /* Build a function call using varargs. */
3433 tree
3434 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3436 vec<tree, va_gc> *vec;
3437 va_list args;
3438 tree ret, t;
3440 vec = make_tree_vector ();
3441 va_start (args, complain);
3442 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3443 vec_safe_push (vec, t);
3444 va_end (args);
3445 ret = cp_build_function_call_vec (function, &vec, complain);
3446 release_tree_vector (vec);
3447 return ret;
3450 /* Build a function call using a vector of arguments. PARAMS may be
3451 NULL if there are no parameters. This changes the contents of
3452 PARAMS. */
3454 tree
3455 cp_build_function_call_vec (tree function, vec<tree, va_gc> **params,
3456 tsubst_flags_t complain)
3458 tree fntype, fndecl;
3459 int is_method;
3460 tree original = function;
3461 int nargs;
3462 tree *argarray;
3463 tree parm_types;
3464 vec<tree, va_gc> *allocated = NULL;
3465 tree ret;
3467 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3468 expressions, like those used for ObjC messenger dispatches. */
3469 if (params != NULL && !vec_safe_is_empty (*params))
3470 function = objc_rewrite_function_call (function, (**params)[0]);
3472 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3473 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3474 if (TREE_CODE (function) == NOP_EXPR
3475 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3476 function = TREE_OPERAND (function, 0);
3478 if (TREE_CODE (function) == FUNCTION_DECL)
3480 if (!mark_used (function, complain) && !(complain & tf_error))
3481 return error_mark_node;
3482 fndecl = function;
3484 /* Convert anything with function type to a pointer-to-function. */
3485 if (DECL_MAIN_P (function))
3487 if (complain & tf_error)
3488 pedwarn (input_location, OPT_Wpedantic,
3489 "ISO C++ forbids calling %<::main%> from within program");
3490 else
3491 return error_mark_node;
3493 function = build_addr_func (function, complain);
3495 else
3497 fndecl = NULL_TREE;
3499 function = build_addr_func (function, complain);
3502 if (function == error_mark_node)
3503 return error_mark_node;
3505 fntype = TREE_TYPE (function);
3507 if (TYPE_PTRMEMFUNC_P (fntype))
3509 if (complain & tf_error)
3510 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3511 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3512 original, original);
3513 return error_mark_node;
3516 is_method = (TYPE_PTR_P (fntype)
3517 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3519 if (!(TYPE_PTRFN_P (fntype)
3520 || is_method
3521 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3523 if (complain & tf_error)
3525 if (!flag_diagnostics_show_caret)
3526 error_at (input_location,
3527 "%qE cannot be used as a function", original);
3528 else if (DECL_P (original))
3529 error_at (input_location,
3530 "%qD cannot be used as a function", original);
3531 else
3532 error_at (input_location,
3533 "expression cannot be used as a function");
3536 return error_mark_node;
3539 /* fntype now gets the type of function pointed to. */
3540 fntype = TREE_TYPE (fntype);
3541 parm_types = TYPE_ARG_TYPES (fntype);
3543 if (params == NULL)
3545 allocated = make_tree_vector ();
3546 params = &allocated;
3549 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3550 complain);
3551 if (nargs < 0)
3552 return error_mark_node;
3554 argarray = (*params)->address ();
3556 /* Check for errors in format strings and inappropriately
3557 null parameters. */
3558 check_function_arguments (fntype, nargs, argarray);
3560 ret = build_cxx_call (function, nargs, argarray, complain);
3562 if (allocated != NULL)
3563 release_tree_vector (allocated);
3565 return ret;
3568 /* Subroutine of convert_arguments.
3569 Warn about wrong number of args are genereted. */
3571 static void
3572 warn_args_num (location_t loc, tree fndecl, bool too_many_p)
3574 if (fndecl)
3576 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3578 if (DECL_NAME (fndecl) == NULL_TREE
3579 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3580 error_at (loc,
3581 too_many_p
3582 ? G_("too many arguments to constructor %q#D")
3583 : G_("too few arguments to constructor %q#D"),
3584 fndecl);
3585 else
3586 error_at (loc,
3587 too_many_p
3588 ? G_("too many arguments to member function %q#D")
3589 : G_("too few arguments to member function %q#D"),
3590 fndecl);
3592 else
3593 error_at (loc,
3594 too_many_p
3595 ? G_("too many arguments to function %q#D")
3596 : G_("too few arguments to function %q#D"),
3597 fndecl);
3598 inform (DECL_SOURCE_LOCATION (fndecl),
3599 "declared here");
3601 else
3603 if (c_dialect_objc () && objc_message_selector ())
3604 error_at (loc,
3605 too_many_p
3606 ? G_("too many arguments to method %q#D")
3607 : G_("too few arguments to method %q#D"),
3608 objc_message_selector ());
3609 else
3610 error_at (loc, too_many_p ? G_("too many arguments to function")
3611 : G_("too few arguments to function"));
3615 /* Convert the actual parameter expressions in the list VALUES to the
3616 types in the list TYPELIST. The converted expressions are stored
3617 back in the VALUES vector.
3618 If parmdecls is exhausted, or when an element has NULL as its type,
3619 perform the default conversions.
3621 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3623 This is also where warnings about wrong number of args are generated.
3625 Returns the actual number of arguments processed (which might be less
3626 than the length of the vector), or -1 on error.
3628 In C++, unspecified trailing parameters can be filled in with their
3629 default arguments, if such were specified. Do so here. */
3631 static int
3632 convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
3633 int flags, tsubst_flags_t complain)
3635 tree typetail;
3636 unsigned int i;
3638 /* Argument passing is always copy-initialization. */
3639 flags |= LOOKUP_ONLYCONVERTING;
3641 for (i = 0, typetail = typelist;
3642 i < vec_safe_length (*values);
3643 i++)
3645 tree type = typetail ? TREE_VALUE (typetail) : 0;
3646 tree val = (**values)[i];
3648 if (val == error_mark_node || type == error_mark_node)
3649 return -1;
3651 if (type == void_type_node)
3653 if (complain & tf_error)
3655 warn_args_num (input_location, fndecl, /*too_many_p=*/true);
3656 return i;
3658 else
3659 return -1;
3662 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3663 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3664 if (TREE_CODE (val) == NOP_EXPR
3665 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3666 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3667 val = TREE_OPERAND (val, 0);
3669 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3671 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3672 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3673 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3674 val = decay_conversion (val, complain);
3677 if (val == error_mark_node)
3678 return -1;
3680 if (type != 0)
3682 /* Formal parm type is specified by a function prototype. */
3683 tree parmval;
3685 if (!COMPLETE_TYPE_P (complete_type (type)))
3687 if (complain & tf_error)
3689 if (fndecl)
3690 error ("parameter %P of %qD has incomplete type %qT",
3691 i, fndecl, type);
3692 else
3693 error ("parameter %P has incomplete type %qT", i, type);
3695 parmval = error_mark_node;
3697 else
3699 parmval = convert_for_initialization
3700 (NULL_TREE, type, val, flags,
3701 ICR_ARGPASS, fndecl, i, complain);
3702 parmval = convert_for_arg_passing (type, parmval, complain);
3705 if (parmval == error_mark_node)
3706 return -1;
3708 (**values)[i] = parmval;
3710 else
3712 if (fndecl && magic_varargs_p (fndecl))
3713 /* Don't do ellipsis conversion for __built_in_constant_p
3714 as this will result in spurious errors for non-trivial
3715 types. */
3716 val = require_complete_type_sfinae (val, complain);
3717 else
3718 val = convert_arg_to_ellipsis (val, complain);
3720 (**values)[i] = val;
3723 if (typetail)
3724 typetail = TREE_CHAIN (typetail);
3727 if (typetail != 0 && typetail != void_list_node)
3729 /* See if there are default arguments that can be used. Because
3730 we hold default arguments in the FUNCTION_TYPE (which is so
3731 wrong), we can see default parameters here from deduced
3732 contexts (and via typeof) for indirect function calls.
3733 Fortunately we know whether we have a function decl to
3734 provide default arguments in a language conformant
3735 manner. */
3736 if (fndecl && TREE_PURPOSE (typetail)
3737 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3739 for (; typetail != void_list_node; ++i)
3741 tree parmval
3742 = convert_default_arg (TREE_VALUE (typetail),
3743 TREE_PURPOSE (typetail),
3744 fndecl, i, complain);
3746 if (parmval == error_mark_node)
3747 return -1;
3749 vec_safe_push (*values, parmval);
3750 typetail = TREE_CHAIN (typetail);
3751 /* ends with `...'. */
3752 if (typetail == NULL_TREE)
3753 break;
3756 else
3758 if (complain & tf_error)
3759 warn_args_num (input_location, fndecl, /*too_many_p=*/false);
3760 return -1;
3764 return (int) i;
3767 /* Build a binary-operation expression, after performing default
3768 conversions on the operands. CODE is the kind of expression to
3769 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
3770 are the tree codes which correspond to ARG1 and ARG2 when issuing
3771 warnings about possibly misplaced parentheses. They may differ
3772 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3773 folding (e.g., if the parser sees "a | 1 + 1", it may call this
3774 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3775 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3776 ARG2_CODE as ERROR_MARK. */
3778 tree
3779 build_x_binary_op (location_t loc, enum tree_code code, tree arg1,
3780 enum tree_code arg1_code, tree arg2,
3781 enum tree_code arg2_code, tree *overload,
3782 tsubst_flags_t complain)
3784 tree orig_arg1;
3785 tree orig_arg2;
3786 tree expr;
3788 orig_arg1 = arg1;
3789 orig_arg2 = arg2;
3791 if (processing_template_decl)
3793 if (type_dependent_expression_p (arg1)
3794 || type_dependent_expression_p (arg2))
3795 return build_min_nt_loc (loc, code, arg1, arg2);
3796 arg1 = build_non_dependent_expr (arg1);
3797 arg2 = build_non_dependent_expr (arg2);
3800 if (code == DOTSTAR_EXPR)
3801 expr = build_m_component_ref (arg1, arg2, complain);
3802 else
3803 expr = build_new_op (loc, code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3804 overload, complain);
3806 /* Check for cases such as x+y<<z which users are likely to
3807 misinterpret. But don't warn about obj << x + y, since that is a
3808 common idiom for I/O. */
3809 if (warn_parentheses
3810 && (complain & tf_warning)
3811 && !processing_template_decl
3812 && !error_operand_p (arg1)
3813 && !error_operand_p (arg2)
3814 && (code != LSHIFT_EXPR
3815 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3816 warn_about_parentheses (loc, code, arg1_code, orig_arg1,
3817 arg2_code, orig_arg2);
3819 if (processing_template_decl && expr != error_mark_node)
3820 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3822 return expr;
3825 /* Build and return an ARRAY_REF expression. */
3827 tree
3828 build_x_array_ref (location_t loc, tree arg1, tree arg2,
3829 tsubst_flags_t complain)
3831 tree orig_arg1 = arg1;
3832 tree orig_arg2 = arg2;
3833 tree expr;
3835 if (processing_template_decl)
3837 if (type_dependent_expression_p (arg1)
3838 || type_dependent_expression_p (arg2))
3839 return build_min_nt_loc (loc, ARRAY_REF, arg1, arg2,
3840 NULL_TREE, NULL_TREE);
3841 arg1 = build_non_dependent_expr (arg1);
3842 arg2 = build_non_dependent_expr (arg2);
3845 expr = build_new_op (loc, ARRAY_REF, LOOKUP_NORMAL, arg1, arg2,
3846 NULL_TREE, /*overload=*/NULL, complain);
3848 if (processing_template_decl && expr != error_mark_node)
3849 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3850 NULL_TREE, NULL_TREE);
3851 return expr;
3854 /* Return whether OP is an expression of enum type cast to integer
3855 type. In C++ even unsigned enum types are cast to signed integer
3856 types. We do not want to issue warnings about comparisons between
3857 signed and unsigned types when one of the types is an enum type.
3858 Those warnings are always false positives in practice. */
3860 static bool
3861 enum_cast_to_int (tree op)
3863 if (CONVERT_EXPR_P (op)
3864 && TREE_TYPE (op) == integer_type_node
3865 && TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == ENUMERAL_TYPE
3866 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 0))))
3867 return true;
3869 /* The cast may have been pushed into a COND_EXPR. */
3870 if (TREE_CODE (op) == COND_EXPR)
3871 return (enum_cast_to_int (TREE_OPERAND (op, 1))
3872 || enum_cast_to_int (TREE_OPERAND (op, 2)));
3874 return false;
3877 /* For the c-common bits. */
3878 tree
3879 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3880 int /*convert_p*/)
3882 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3886 /* Build a binary-operation expression without default conversions.
3887 CODE is the kind of expression to build.
3888 LOCATION is the location_t of the operator in the source code.
3889 This function differs from `build' in several ways:
3890 the data type of the result is computed and recorded in it,
3891 warnings are generated if arg data types are invalid,
3892 special handling for addition and subtraction of pointers is known,
3893 and some optimization is done (operations on narrow ints
3894 are done in the narrower type when that gives the same result).
3895 Constant folding is also done before the result is returned.
3897 Note that the operands will never have enumeral types
3898 because either they have just had the default conversions performed
3899 or they have both just been converted to some other type in which
3900 the arithmetic is to be done.
3902 C++: must do special pointer arithmetic when implementing
3903 multiple inheritance, and deal with pointer to member functions. */
3905 tree
3906 cp_build_binary_op (location_t location,
3907 enum tree_code code, tree orig_op0, tree orig_op1,
3908 tsubst_flags_t complain)
3910 tree op0, op1;
3911 enum tree_code code0, code1;
3912 tree type0, type1;
3913 const char *invalid_op_diag;
3915 /* Expression code to give to the expression when it is built.
3916 Normally this is CODE, which is what the caller asked for,
3917 but in some special cases we change it. */
3918 enum tree_code resultcode = code;
3920 /* Data type in which the computation is to be performed.
3921 In the simplest cases this is the common type of the arguments. */
3922 tree result_type = NULL;
3924 /* Nonzero means operands have already been type-converted
3925 in whatever way is necessary.
3926 Zero means they need to be converted to RESULT_TYPE. */
3927 int converted = 0;
3929 /* Nonzero means create the expression with this type, rather than
3930 RESULT_TYPE. */
3931 tree build_type = 0;
3933 /* Nonzero means after finally constructing the expression
3934 convert it to this type. */
3935 tree final_type = 0;
3937 tree result;
3938 tree orig_type = NULL;
3940 /* Nonzero if this is an operation like MIN or MAX which can
3941 safely be computed in short if both args are promoted shorts.
3942 Also implies COMMON.
3943 -1 indicates a bitwise operation; this makes a difference
3944 in the exact conditions for when it is safe to do the operation
3945 in a narrower mode. */
3946 int shorten = 0;
3948 /* Nonzero if this is a comparison operation;
3949 if both args are promoted shorts, compare the original shorts.
3950 Also implies COMMON. */
3951 int short_compare = 0;
3953 /* Nonzero means set RESULT_TYPE to the common type of the args. */
3954 int common = 0;
3956 /* True if both operands have arithmetic type. */
3957 bool arithmetic_types_p;
3959 /* Apply default conversions. */
3960 op0 = orig_op0;
3961 op1 = orig_op1;
3963 /* Remember whether we're doing / or %. */
3964 bool doing_div_or_mod = false;
3966 /* Remember whether we're doing << or >>. */
3967 bool doing_shift = false;
3969 /* Tree holding instrumentation expression. */
3970 tree instrument_expr = NULL;
3972 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3973 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3974 || code == TRUTH_XOR_EXPR)
3976 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3977 op0 = decay_conversion (op0, complain);
3978 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3979 op1 = decay_conversion (op1, complain);
3981 else
3983 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3984 op0 = cp_default_conversion (op0, complain);
3985 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3986 op1 = cp_default_conversion (op1, complain);
3989 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3990 STRIP_TYPE_NOPS (op0);
3991 STRIP_TYPE_NOPS (op1);
3993 /* DTRT if one side is an overloaded function, but complain about it. */
3994 if (type_unknown_p (op0))
3996 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
3997 if (t != error_mark_node)
3999 if (complain & tf_error)
4000 permerror (input_location, "assuming cast to type %qT from overloaded function",
4001 TREE_TYPE (t));
4002 op0 = t;
4005 if (type_unknown_p (op1))
4007 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
4008 if (t != error_mark_node)
4010 if (complain & tf_error)
4011 permerror (input_location, "assuming cast to type %qT from overloaded function",
4012 TREE_TYPE (t));
4013 op1 = t;
4017 type0 = TREE_TYPE (op0);
4018 type1 = TREE_TYPE (op1);
4020 /* The expression codes of the data types of the arguments tell us
4021 whether the arguments are integers, floating, pointers, etc. */
4022 code0 = TREE_CODE (type0);
4023 code1 = TREE_CODE (type1);
4025 /* If an error was already reported for one of the arguments,
4026 avoid reporting another error. */
4027 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
4028 return error_mark_node;
4030 if ((invalid_op_diag
4031 = targetm.invalid_binary_op (code, type0, type1)))
4033 if (complain & tf_error)
4034 error (invalid_op_diag);
4035 return error_mark_node;
4038 /* Issue warnings about peculiar, but valid, uses of NULL. */
4039 if ((orig_op0 == null_node || orig_op1 == null_node)
4040 /* It's reasonable to use pointer values as operands of &&
4041 and ||, so NULL is no exception. */
4042 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
4043 && ( /* Both are NULL (or 0) and the operation was not a
4044 comparison or a pointer subtraction. */
4045 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
4046 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
4047 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
4048 || (!null_ptr_cst_p (orig_op0)
4049 && !TYPE_PTR_OR_PTRMEM_P (type0))
4050 || (!null_ptr_cst_p (orig_op1)
4051 && !TYPE_PTR_OR_PTRMEM_P (type1)))
4052 && (complain & tf_warning))
4054 source_location loc =
4055 expansion_point_location_if_in_system_header (input_location);
4057 warning_at (loc, OPT_Wpointer_arith, "NULL used in arithmetic");
4060 /* In case when one of the operands of the binary operation is
4061 a vector and another is a scalar -- convert scalar to vector. */
4062 if ((code0 == VECTOR_TYPE) != (code1 == VECTOR_TYPE))
4064 enum stv_conv convert_flag = scalar_to_vector (location, code, op0, op1,
4065 complain & tf_error);
4067 switch (convert_flag)
4069 case stv_error:
4070 return error_mark_node;
4071 case stv_firstarg:
4073 op0 = convert (TREE_TYPE (type1), op0);
4074 op0 = save_expr (op0);
4075 op0 = build_vector_from_val (type1, op0);
4076 type0 = TREE_TYPE (op0);
4077 code0 = TREE_CODE (type0);
4078 converted = 1;
4079 break;
4081 case stv_secondarg:
4083 op1 = convert (TREE_TYPE (type0), op1);
4084 op1 = save_expr (op1);
4085 op1 = build_vector_from_val (type0, op1);
4086 type1 = TREE_TYPE (op1);
4087 code1 = TREE_CODE (type1);
4088 converted = 1;
4089 break;
4091 default:
4092 break;
4096 switch (code)
4098 case MINUS_EXPR:
4099 /* Subtraction of two similar pointers.
4100 We must subtract them as integers, then divide by object size. */
4101 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
4102 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
4103 TREE_TYPE (type1)))
4104 return pointer_diff (op0, op1, common_pointer_type (type0, type1),
4105 complain);
4106 /* In all other cases except pointer - int, the usual arithmetic
4107 rules apply. */
4108 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
4110 common = 1;
4111 break;
4113 /* The pointer - int case is just like pointer + int; fall
4114 through. */
4115 case PLUS_EXPR:
4116 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
4117 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
4119 tree ptr_operand;
4120 tree int_operand;
4121 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
4122 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
4123 if (processing_template_decl)
4125 result_type = TREE_TYPE (ptr_operand);
4126 break;
4128 return cp_pointer_int_sum (code,
4129 ptr_operand,
4130 int_operand,
4131 complain);
4133 common = 1;
4134 break;
4136 case MULT_EXPR:
4137 common = 1;
4138 break;
4140 case TRUNC_DIV_EXPR:
4141 case CEIL_DIV_EXPR:
4142 case FLOOR_DIV_EXPR:
4143 case ROUND_DIV_EXPR:
4144 case EXACT_DIV_EXPR:
4145 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4146 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
4147 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4148 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
4150 enum tree_code tcode0 = code0, tcode1 = code1;
4151 tree cop1 = fold_non_dependent_expr (op1);
4152 doing_div_or_mod = true;
4153 warn_for_div_by_zero (location, cop1);
4155 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
4156 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
4157 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
4158 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
4160 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
4161 resultcode = RDIV_EXPR;
4162 else
4163 /* When dividing two signed integers, we have to promote to int.
4164 unless we divide by a constant != -1. Note that default
4165 conversion will have been performed on the operands at this
4166 point, so we have to dig out the original type to find out if
4167 it was unsigned. */
4168 shorten = ((TREE_CODE (op0) == NOP_EXPR
4169 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4170 || (TREE_CODE (op1) == INTEGER_CST
4171 && ! integer_all_onesp (op1)));
4173 common = 1;
4175 break;
4177 case BIT_AND_EXPR:
4178 case BIT_IOR_EXPR:
4179 case BIT_XOR_EXPR:
4180 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4181 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4182 && !VECTOR_FLOAT_TYPE_P (type0)
4183 && !VECTOR_FLOAT_TYPE_P (type1)))
4184 shorten = -1;
4185 break;
4187 case TRUNC_MOD_EXPR:
4188 case FLOOR_MOD_EXPR:
4190 tree cop1 = fold_non_dependent_expr (op1);
4191 doing_div_or_mod = true;
4192 warn_for_div_by_zero (location, cop1);
4195 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4196 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4197 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
4198 common = 1;
4199 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4201 /* Although it would be tempting to shorten always here, that loses
4202 on some targets, since the modulo instruction is undefined if the
4203 quotient can't be represented in the computation mode. We shorten
4204 only if unsigned or if dividing by something we know != -1. */
4205 shorten = ((TREE_CODE (op0) == NOP_EXPR
4206 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
4207 || (TREE_CODE (op1) == INTEGER_CST
4208 && ! integer_all_onesp (op1)));
4209 common = 1;
4211 break;
4213 case TRUTH_ANDIF_EXPR:
4214 case TRUTH_ORIF_EXPR:
4215 case TRUTH_AND_EXPR:
4216 case TRUTH_OR_EXPR:
4217 if (!VECTOR_TYPE_P (type0) && VECTOR_TYPE_P (type1))
4219 if (!COMPARISON_CLASS_P (op1))
4220 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4221 build_zero_cst (type1), complain);
4222 if (code == TRUTH_ANDIF_EXPR)
4224 tree z = build_zero_cst (TREE_TYPE (op1));
4225 return build_conditional_expr (location, op0, op1, z, complain);
4227 else if (code == TRUTH_ORIF_EXPR)
4229 tree m1 = build_all_ones_cst (TREE_TYPE (op1));
4230 return build_conditional_expr (location, op0, m1, op1, complain);
4232 else
4233 gcc_unreachable ();
4235 if (VECTOR_TYPE_P (type0))
4237 if (!COMPARISON_CLASS_P (op0))
4238 op0 = cp_build_binary_op (EXPR_LOCATION (op0), NE_EXPR, op0,
4239 build_zero_cst (type0), complain);
4240 if (!VECTOR_TYPE_P (type1))
4242 tree m1 = build_all_ones_cst (TREE_TYPE (op0));
4243 tree z = build_zero_cst (TREE_TYPE (op0));
4244 op1 = build_conditional_expr (location, op1, z, m1, complain);
4246 else if (!COMPARISON_CLASS_P (op1))
4247 op1 = cp_build_binary_op (EXPR_LOCATION (op1), NE_EXPR, op1,
4248 build_zero_cst (type1), complain);
4250 if (code == TRUTH_ANDIF_EXPR)
4251 code = BIT_AND_EXPR;
4252 else if (code == TRUTH_ORIF_EXPR)
4253 code = BIT_IOR_EXPR;
4254 else
4255 gcc_unreachable ();
4257 return cp_build_binary_op (location, code, op0, op1, complain);
4260 result_type = boolean_type_node;
4261 break;
4263 /* Shift operations: result has same type as first operand;
4264 always convert second operand to int.
4265 Also set SHORT_SHIFT if shifting rightward. */
4267 case RSHIFT_EXPR:
4268 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4269 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4271 result_type = type0;
4272 converted = 1;
4274 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4275 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4276 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4277 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
4279 result_type = type0;
4280 converted = 1;
4282 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4284 tree const_op1 = fold_non_dependent_expr (op1);
4285 if (TREE_CODE (const_op1) != INTEGER_CST)
4286 const_op1 = op1;
4287 result_type = type0;
4288 doing_shift = true;
4289 if (TREE_CODE (const_op1) == INTEGER_CST)
4291 if (tree_int_cst_lt (const_op1, integer_zero_node))
4293 if ((complain & tf_warning)
4294 && c_inhibit_evaluation_warnings == 0)
4295 warning (OPT_Wshift_count_negative,
4296 "right shift count is negative");
4298 else
4300 if (compare_tree_int (const_op1, TYPE_PRECISION (type0)) >= 0
4301 && (complain & tf_warning)
4302 && c_inhibit_evaluation_warnings == 0)
4303 warning (OPT_Wshift_count_overflow,
4304 "right shift count >= width of type");
4307 /* Avoid converting op1 to result_type later. */
4308 converted = 1;
4310 break;
4312 case LSHIFT_EXPR:
4313 if (code0 == VECTOR_TYPE && code1 == INTEGER_TYPE
4314 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE)
4316 result_type = type0;
4317 converted = 1;
4319 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
4320 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
4321 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE
4322 && TYPE_VECTOR_SUBPARTS (type0) == TYPE_VECTOR_SUBPARTS (type1))
4324 result_type = type0;
4325 converted = 1;
4327 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4329 tree const_op0 = fold_non_dependent_expr (op0);
4330 if (TREE_CODE (const_op0) != INTEGER_CST)
4331 const_op0 = op0;
4332 tree const_op1 = fold_non_dependent_expr (op1);
4333 if (TREE_CODE (const_op1) != INTEGER_CST)
4334 const_op1 = op1;
4335 result_type = type0;
4336 doing_shift = true;
4337 if (TREE_CODE (const_op0) == INTEGER_CST
4338 && tree_int_cst_sgn (const_op0) < 0
4339 && (complain & tf_warning)
4340 && c_inhibit_evaluation_warnings == 0)
4341 warning (OPT_Wshift_negative_value,
4342 "left shift of negative value");
4343 if (TREE_CODE (const_op1) == INTEGER_CST)
4345 if (tree_int_cst_lt (const_op1, integer_zero_node))
4347 if ((complain & tf_warning)
4348 && c_inhibit_evaluation_warnings == 0)
4349 warning (OPT_Wshift_count_negative,
4350 "left shift count is negative");
4352 else if (compare_tree_int (const_op1,
4353 TYPE_PRECISION (type0)) >= 0)
4355 if ((complain & tf_warning)
4356 && c_inhibit_evaluation_warnings == 0)
4357 warning (OPT_Wshift_count_overflow,
4358 "left shift count >= width of type");
4361 /* Avoid converting op1 to result_type later. */
4362 converted = 1;
4364 break;
4366 case RROTATE_EXPR:
4367 case LROTATE_EXPR:
4368 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4370 result_type = type0;
4371 if (TREE_CODE (op1) == INTEGER_CST)
4373 if (tree_int_cst_lt (op1, integer_zero_node))
4375 if (complain & tf_warning)
4376 warning (0, (code == LROTATE_EXPR)
4377 ? G_("left rotate count is negative")
4378 : G_("right rotate count is negative"));
4380 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
4382 if (complain & tf_warning)
4383 warning (0, (code == LROTATE_EXPR)
4384 ? G_("left rotate count >= width of type")
4385 : G_("right rotate count >= width of type"));
4388 /* Convert the shift-count to an integer, regardless of
4389 size of value being shifted. */
4390 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
4391 op1 = cp_convert (integer_type_node, op1, complain);
4393 break;
4395 case EQ_EXPR:
4396 case NE_EXPR:
4397 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4398 goto vector_compare;
4399 if ((complain & tf_warning)
4400 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
4401 warning (OPT_Wfloat_equal,
4402 "comparing floating point with == or != is unsafe");
4403 if ((complain & tf_warning)
4404 && ((TREE_CODE (orig_op0) == STRING_CST && !integer_zerop (op1))
4405 || (TREE_CODE (orig_op1) == STRING_CST && !integer_zerop (op0))))
4406 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4408 build_type = boolean_type_node;
4409 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4410 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
4411 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4412 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
4413 short_compare = 1;
4414 else if (((code0 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type0))
4415 && null_ptr_cst_p (op1))
4416 /* Handle, eg, (void*)0 (c++/43906), and more. */
4417 || (code0 == POINTER_TYPE
4418 && TYPE_PTR_P (type1) && integer_zerop (op1)))
4420 if (TYPE_PTR_P (type1))
4421 result_type = composite_pointer_type (type0, type1, op0, op1,
4422 CPO_COMPARISON, complain);
4423 else
4424 result_type = type0;
4426 if (TREE_CODE (op0) == ADDR_EXPR
4427 && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
4429 if ((complain & tf_warning)
4430 && c_inhibit_evaluation_warnings == 0
4431 && !TREE_NO_WARNING (op0))
4432 warning (OPT_Waddress, "the address of %qD will never be NULL",
4433 TREE_OPERAND (op0, 0));
4436 else if (((code1 == POINTER_TYPE || TYPE_PTRDATAMEM_P (type1))
4437 && null_ptr_cst_p (op0))
4438 /* Handle, eg, (void*)0 (c++/43906), and more. */
4439 || (code1 == POINTER_TYPE
4440 && TYPE_PTR_P (type0) && integer_zerop (op0)))
4442 if (TYPE_PTR_P (type0))
4443 result_type = composite_pointer_type (type0, type1, op0, op1,
4444 CPO_COMPARISON, complain);
4445 else
4446 result_type = type1;
4448 if (TREE_CODE (op1) == ADDR_EXPR
4449 && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
4451 if ((complain & tf_warning)
4452 && c_inhibit_evaluation_warnings == 0
4453 && !TREE_NO_WARNING (op1))
4454 warning (OPT_Waddress, "the address of %qD will never be NULL",
4455 TREE_OPERAND (op1, 0));
4458 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4459 || (TYPE_PTRDATAMEM_P (type0) && TYPE_PTRDATAMEM_P (type1)))
4460 result_type = composite_pointer_type (type0, type1, op0, op1,
4461 CPO_COMPARISON, complain);
4462 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4463 /* One of the operands must be of nullptr_t type. */
4464 result_type = TREE_TYPE (nullptr_node);
4465 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4467 result_type = type0;
4468 if (complain & tf_error)
4469 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4470 else
4471 return error_mark_node;
4473 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4475 result_type = type1;
4476 if (complain & tf_error)
4477 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4478 else
4479 return error_mark_node;
4481 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
4483 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4484 == ptrmemfunc_vbit_in_delta)
4486 tree pfn0, delta0, e1, e2;
4488 if (TREE_SIDE_EFFECTS (op0))
4489 op0 = save_expr (op0);
4491 pfn0 = pfn_from_ptrmemfunc (op0);
4492 delta0 = delta_from_ptrmemfunc (op0);
4493 e1 = cp_build_binary_op (location,
4494 EQ_EXPR,
4495 pfn0,
4496 build_zero_cst (TREE_TYPE (pfn0)),
4497 complain);
4498 e2 = cp_build_binary_op (location,
4499 BIT_AND_EXPR,
4500 delta0,
4501 integer_one_node,
4502 complain);
4504 if (complain & tf_warning)
4505 maybe_warn_zero_as_null_pointer_constant (op1, input_location);
4507 e2 = cp_build_binary_op (location,
4508 EQ_EXPR, e2, integer_zero_node,
4509 complain);
4510 op0 = cp_build_binary_op (location,
4511 TRUTH_ANDIF_EXPR, e1, e2,
4512 complain);
4513 op1 = cp_convert (TREE_TYPE (op0), integer_one_node, complain);
4515 else
4517 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4518 op1 = cp_convert (TREE_TYPE (op0), op1, complain);
4520 result_type = TREE_TYPE (op0);
4522 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
4523 return cp_build_binary_op (location, code, op1, op0, complain);
4524 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4526 tree type;
4527 /* E will be the final comparison. */
4528 tree e;
4529 /* E1 and E2 are for scratch. */
4530 tree e1;
4531 tree e2;
4532 tree pfn0;
4533 tree pfn1;
4534 tree delta0;
4535 tree delta1;
4537 type = composite_pointer_type (type0, type1, op0, op1,
4538 CPO_COMPARISON, complain);
4540 if (!same_type_p (TREE_TYPE (op0), type))
4541 op0 = cp_convert_and_check (type, op0, complain);
4542 if (!same_type_p (TREE_TYPE (op1), type))
4543 op1 = cp_convert_and_check (type, op1, complain);
4545 if (op0 == error_mark_node || op1 == error_mark_node)
4546 return error_mark_node;
4548 if (TREE_SIDE_EFFECTS (op0))
4549 op0 = save_expr (op0);
4550 if (TREE_SIDE_EFFECTS (op1))
4551 op1 = save_expr (op1);
4553 pfn0 = pfn_from_ptrmemfunc (op0);
4554 /* Avoid -Waddress warnings (c++/64877). */
4555 if (TREE_CODE (pfn0) == ADDR_EXPR)
4556 TREE_NO_WARNING (pfn0) = 1;
4557 pfn1 = pfn_from_ptrmemfunc (op1);
4558 delta0 = delta_from_ptrmemfunc (op0);
4559 delta1 = delta_from_ptrmemfunc (op1);
4560 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4561 == ptrmemfunc_vbit_in_delta)
4563 /* We generate:
4565 (op0.pfn == op1.pfn
4566 && ((op0.delta == op1.delta)
4567 || (!op0.pfn && op0.delta & 1 == 0
4568 && op1.delta & 1 == 0))
4570 The reason for the `!op0.pfn' bit is that a NULL
4571 pointer-to-member is any member with a zero PFN and
4572 LSB of the DELTA field is 0. */
4574 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4575 delta0,
4576 integer_one_node,
4577 complain);
4578 e1 = cp_build_binary_op (location,
4579 EQ_EXPR, e1, integer_zero_node,
4580 complain);
4581 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4582 delta1,
4583 integer_one_node,
4584 complain);
4585 e2 = cp_build_binary_op (location,
4586 EQ_EXPR, e2, integer_zero_node,
4587 complain);
4588 e1 = cp_build_binary_op (location,
4589 TRUTH_ANDIF_EXPR, e2, e1,
4590 complain);
4591 e2 = cp_build_binary_op (location, EQ_EXPR,
4592 pfn0,
4593 build_zero_cst (TREE_TYPE (pfn0)),
4594 complain);
4595 e2 = cp_build_binary_op (location,
4596 TRUTH_ANDIF_EXPR, e2, e1, complain);
4597 e1 = cp_build_binary_op (location,
4598 EQ_EXPR, delta0, delta1, complain);
4599 e1 = cp_build_binary_op (location,
4600 TRUTH_ORIF_EXPR, e1, e2, complain);
4602 else
4604 /* We generate:
4606 (op0.pfn == op1.pfn
4607 && (!op0.pfn || op0.delta == op1.delta))
4609 The reason for the `!op0.pfn' bit is that a NULL
4610 pointer-to-member is any member with a zero PFN; the
4611 DELTA field is unspecified. */
4613 e1 = cp_build_binary_op (location,
4614 EQ_EXPR, delta0, delta1, complain);
4615 e2 = cp_build_binary_op (location,
4616 EQ_EXPR,
4617 pfn0,
4618 build_zero_cst (TREE_TYPE (pfn0)),
4619 complain);
4620 e1 = cp_build_binary_op (location,
4621 TRUTH_ORIF_EXPR, e1, e2, complain);
4623 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4624 e = cp_build_binary_op (location,
4625 TRUTH_ANDIF_EXPR, e2, e1, complain);
4626 if (code == EQ_EXPR)
4627 return e;
4628 return cp_build_binary_op (location,
4629 EQ_EXPR, e, integer_zero_node, complain);
4631 else
4633 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4634 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4635 type1));
4636 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4637 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4638 type0));
4641 break;
4643 case MAX_EXPR:
4644 case MIN_EXPR:
4645 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4646 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4647 shorten = 1;
4648 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4649 result_type = composite_pointer_type (type0, type1, op0, op1,
4650 CPO_COMPARISON, complain);
4651 break;
4653 case LE_EXPR:
4654 case GE_EXPR:
4655 case LT_EXPR:
4656 case GT_EXPR:
4657 if (TREE_CODE (orig_op0) == STRING_CST
4658 || TREE_CODE (orig_op1) == STRING_CST)
4660 if (complain & tf_warning)
4661 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4664 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4666 vector_compare:
4667 tree intt;
4668 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
4669 TREE_TYPE (type1))
4670 && !vector_types_compatible_elements_p (type0, type1))
4672 if (complain & tf_error)
4674 error_at (location, "comparing vectors with different "
4675 "element types");
4676 inform (location, "operand types are %qT and %qT",
4677 type0, type1);
4679 return error_mark_node;
4682 if (TYPE_VECTOR_SUBPARTS (type0) != TYPE_VECTOR_SUBPARTS (type1))
4684 if (complain & tf_error)
4686 error_at (location, "comparing vectors with different "
4687 "number of elements");
4688 inform (location, "operand types are %qT and %qT",
4689 type0, type1);
4691 return error_mark_node;
4694 /* Always construct signed integer vector type. */
4695 intt = c_common_type_for_size (GET_MODE_BITSIZE
4696 (TYPE_MODE (TREE_TYPE (type0))), 0);
4697 if (!intt)
4699 if (complain & tf_error)
4700 error_at (location, "could not find an integer type "
4701 "of the same size as %qT", TREE_TYPE (type0));
4702 return error_mark_node;
4704 result_type = build_opaque_vector_type (intt,
4705 TYPE_VECTOR_SUBPARTS (type0));
4706 converted = 1;
4707 break;
4709 build_type = boolean_type_node;
4710 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4711 || code0 == ENUMERAL_TYPE)
4712 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4713 || code1 == ENUMERAL_TYPE))
4714 short_compare = 1;
4715 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4716 result_type = composite_pointer_type (type0, type1, op0, op1,
4717 CPO_COMPARISON, complain);
4718 else if (code0 == POINTER_TYPE && null_ptr_cst_p (op1))
4720 result_type = type0;
4721 if (extra_warnings && (complain & tf_warning))
4722 warning (OPT_Wextra,
4723 "ordered comparison of pointer with integer zero");
4725 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op0))
4727 result_type = type1;
4728 if (extra_warnings && (complain & tf_warning))
4729 warning (OPT_Wextra,
4730 "ordered comparison of pointer with integer zero");
4732 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4733 /* One of the operands must be of nullptr_t type. */
4734 result_type = TREE_TYPE (nullptr_node);
4735 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4737 result_type = type0;
4738 if (complain & tf_error)
4739 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4740 else
4741 return error_mark_node;
4743 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4745 result_type = type1;
4746 if (complain & tf_error)
4747 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4748 else
4749 return error_mark_node;
4751 break;
4753 case UNORDERED_EXPR:
4754 case ORDERED_EXPR:
4755 case UNLT_EXPR:
4756 case UNLE_EXPR:
4757 case UNGT_EXPR:
4758 case UNGE_EXPR:
4759 case UNEQ_EXPR:
4760 build_type = integer_type_node;
4761 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
4763 if (complain & tf_error)
4764 error ("unordered comparison on non-floating point argument");
4765 return error_mark_node;
4767 common = 1;
4768 break;
4770 default:
4771 break;
4774 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
4775 || code0 == ENUMERAL_TYPE)
4776 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4777 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
4778 arithmetic_types_p = 1;
4779 else
4781 arithmetic_types_p = 0;
4782 /* Vector arithmetic is only allowed when both sides are vectors. */
4783 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4785 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
4786 || !vector_types_compatible_elements_p (type0, type1))
4788 if (complain & tf_error)
4789 binary_op_error (location, code, type0, type1);
4790 return error_mark_node;
4792 arithmetic_types_p = 1;
4795 /* Determine the RESULT_TYPE, if it is not already known. */
4796 if (!result_type
4797 && arithmetic_types_p
4798 && (shorten || common || short_compare))
4800 result_type = cp_common_type (type0, type1);
4801 if (complain & tf_warning)
4802 do_warn_double_promotion (result_type, type0, type1,
4803 "implicit conversion from %qT to %qT "
4804 "to match other operand of binary "
4805 "expression",
4806 location);
4809 if (!result_type)
4811 if (complain & tf_error)
4812 error ("invalid operands of types %qT and %qT to binary %qO",
4813 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
4814 return error_mark_node;
4817 /* If we're in a template, the only thing we need to know is the
4818 RESULT_TYPE. */
4819 if (processing_template_decl)
4821 /* Since the middle-end checks the type when doing a build2, we
4822 need to build the tree in pieces. This built tree will never
4823 get out of the front-end as we replace it when instantiating
4824 the template. */
4825 tree tmp = build2 (resultcode,
4826 build_type ? build_type : result_type,
4827 NULL_TREE, op1);
4828 TREE_OPERAND (tmp, 0) = op0;
4829 return tmp;
4832 if (arithmetic_types_p)
4834 bool first_complex = (code0 == COMPLEX_TYPE);
4835 bool second_complex = (code1 == COMPLEX_TYPE);
4836 int none_complex = (!first_complex && !second_complex);
4838 /* Adapted from patch for c/24581. */
4839 if (first_complex != second_complex
4840 && (code == PLUS_EXPR
4841 || code == MINUS_EXPR
4842 || code == MULT_EXPR
4843 || (code == TRUNC_DIV_EXPR && first_complex))
4844 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
4845 && flag_signed_zeros)
4847 /* An operation on mixed real/complex operands must be
4848 handled specially, but the language-independent code can
4849 more easily optimize the plain complex arithmetic if
4850 -fno-signed-zeros. */
4851 tree real_type = TREE_TYPE (result_type);
4852 tree real, imag;
4853 if (first_complex)
4855 if (TREE_TYPE (op0) != result_type)
4856 op0 = cp_convert_and_check (result_type, op0, complain);
4857 if (TREE_TYPE (op1) != real_type)
4858 op1 = cp_convert_and_check (real_type, op1, complain);
4860 else
4862 if (TREE_TYPE (op0) != real_type)
4863 op0 = cp_convert_and_check (real_type, op0, complain);
4864 if (TREE_TYPE (op1) != result_type)
4865 op1 = cp_convert_and_check (result_type, op1, complain);
4867 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
4868 return error_mark_node;
4869 if (first_complex)
4871 op0 = save_expr (op0);
4872 real = cp_build_unary_op (REALPART_EXPR, op0, 1, complain);
4873 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain);
4874 switch (code)
4876 case MULT_EXPR:
4877 case TRUNC_DIV_EXPR:
4878 op1 = save_expr (op1);
4879 imag = build2 (resultcode, real_type, imag, op1);
4880 /* Fall through. */
4881 case PLUS_EXPR:
4882 case MINUS_EXPR:
4883 real = build2 (resultcode, real_type, real, op1);
4884 break;
4885 default:
4886 gcc_unreachable();
4889 else
4891 op1 = save_expr (op1);
4892 real = cp_build_unary_op (REALPART_EXPR, op1, 1, complain);
4893 imag = cp_build_unary_op (IMAGPART_EXPR, op1, 1, complain);
4894 switch (code)
4896 case MULT_EXPR:
4897 op0 = save_expr (op0);
4898 imag = build2 (resultcode, real_type, op0, imag);
4899 /* Fall through. */
4900 case PLUS_EXPR:
4901 real = build2 (resultcode, real_type, op0, real);
4902 break;
4903 case MINUS_EXPR:
4904 real = build2 (resultcode, real_type, op0, real);
4905 imag = build1 (NEGATE_EXPR, real_type, imag);
4906 break;
4907 default:
4908 gcc_unreachable();
4911 real = fold_if_not_in_template (real);
4912 imag = fold_if_not_in_template (imag);
4913 result = build2 (COMPLEX_EXPR, result_type, real, imag);
4914 result = fold_if_not_in_template (result);
4915 return result;
4918 /* For certain operations (which identify themselves by shorten != 0)
4919 if both args were extended from the same smaller type,
4920 do the arithmetic in that type and then extend.
4922 shorten !=0 and !=1 indicates a bitwise operation.
4923 For them, this optimization is safe only if
4924 both args are zero-extended or both are sign-extended.
4925 Otherwise, we might change the result.
4926 E.g., (short)-1 | (unsigned short)-1 is (int)-1
4927 but calculated in (unsigned short) it would be (unsigned short)-1. */
4929 if (shorten && none_complex)
4931 orig_type = result_type;
4932 final_type = result_type;
4933 result_type = shorten_binary_op (result_type, op0, op1,
4934 shorten == -1);
4937 /* Comparison operations are shortened too but differently.
4938 They identify themselves by setting short_compare = 1. */
4940 if (short_compare)
4942 /* Don't write &op0, etc., because that would prevent op0
4943 from being kept in a register.
4944 Instead, make copies of the our local variables and
4945 pass the copies by reference, then copy them back afterward. */
4946 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
4947 enum tree_code xresultcode = resultcode;
4948 tree val
4949 = shorten_compare (location, &xop0, &xop1, &xresult_type,
4950 &xresultcode);
4951 if (val != 0)
4952 return cp_convert (boolean_type_node, val, complain);
4953 op0 = xop0, op1 = xop1;
4954 converted = 1;
4955 resultcode = xresultcode;
4958 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
4959 && warn_sign_compare
4960 /* Do not warn until the template is instantiated; we cannot
4961 bound the ranges of the arguments until that point. */
4962 && !processing_template_decl
4963 && (complain & tf_warning)
4964 && c_inhibit_evaluation_warnings == 0
4965 /* Even unsigned enum types promote to signed int. We don't
4966 want to issue -Wsign-compare warnings for this case. */
4967 && !enum_cast_to_int (orig_op0)
4968 && !enum_cast_to_int (orig_op1))
4970 tree oop0 = maybe_constant_value (orig_op0);
4971 tree oop1 = maybe_constant_value (orig_op1);
4973 if (TREE_CODE (oop0) != INTEGER_CST)
4974 oop0 = orig_op0;
4975 if (TREE_CODE (oop1) != INTEGER_CST)
4976 oop1 = orig_op1;
4977 warn_for_sign_compare (location, oop0, oop1, op0, op1,
4978 result_type, resultcode);
4982 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
4983 Then the expression will be built.
4984 It will be given type FINAL_TYPE if that is nonzero;
4985 otherwise, it will be given type RESULT_TYPE. */
4986 if (! converted)
4988 if (TREE_TYPE (op0) != result_type)
4989 op0 = cp_convert_and_check (result_type, op0, complain);
4990 if (TREE_TYPE (op1) != result_type)
4991 op1 = cp_convert_and_check (result_type, op1, complain);
4993 if (op0 == error_mark_node || op1 == error_mark_node)
4994 return error_mark_node;
4997 if (build_type == NULL_TREE)
4998 build_type = result_type;
5000 if ((flag_sanitize & (SANITIZE_SHIFT | SANITIZE_DIVIDE
5001 | SANITIZE_FLOAT_DIVIDE))
5002 && !processing_template_decl
5003 && do_ubsan_in_current_function ()
5004 && (doing_div_or_mod || doing_shift))
5006 /* OP0 and/or OP1 might have side-effects. */
5007 op0 = cp_save_expr (op0);
5008 op1 = cp_save_expr (op1);
5009 op0 = fold_non_dependent_expr (op0);
5010 op1 = fold_non_dependent_expr (op1);
5011 if (doing_div_or_mod && (flag_sanitize & (SANITIZE_DIVIDE
5012 | SANITIZE_FLOAT_DIVIDE)))
5014 /* For diagnostics we want to use the promoted types without
5015 shorten_binary_op. So convert the arguments to the
5016 original result_type. */
5017 tree cop0 = op0;
5018 tree cop1 = op1;
5019 if (orig_type != NULL && result_type != orig_type)
5021 cop0 = cp_convert (orig_type, op0, complain);
5022 cop1 = cp_convert (orig_type, op1, complain);
5024 instrument_expr = ubsan_instrument_division (location, cop0, cop1);
5026 else if (doing_shift && (flag_sanitize & SANITIZE_SHIFT))
5027 instrument_expr = ubsan_instrument_shift (location, code, op0, op1);
5030 result = build2 (resultcode, build_type, op0, op1);
5031 result = fold_if_not_in_template (result);
5032 if (final_type != 0)
5033 result = cp_convert (final_type, result, complain);
5035 if (TREE_OVERFLOW_P (result)
5036 && !TREE_OVERFLOW_P (op0)
5037 && !TREE_OVERFLOW_P (op1))
5038 overflow_warning (location, result);
5040 if (instrument_expr != NULL)
5041 result = fold_build2 (COMPOUND_EXPR, TREE_TYPE (result),
5042 instrument_expr, result);
5044 return result;
5047 /* Build a VEC_PERM_EXPR.
5048 This is a simple wrapper for c_build_vec_perm_expr. */
5049 tree
5050 build_x_vec_perm_expr (location_t loc,
5051 tree arg0, tree arg1, tree arg2,
5052 tsubst_flags_t complain)
5054 tree orig_arg0 = arg0;
5055 tree orig_arg1 = arg1;
5056 tree orig_arg2 = arg2;
5057 if (processing_template_decl)
5059 if (type_dependent_expression_p (arg0)
5060 || type_dependent_expression_p (arg1)
5061 || type_dependent_expression_p (arg2))
5062 return build_min_nt_loc (loc, VEC_PERM_EXPR, arg0, arg1, arg2);
5063 arg0 = build_non_dependent_expr (arg0);
5064 if (arg1)
5065 arg1 = build_non_dependent_expr (arg1);
5066 arg2 = build_non_dependent_expr (arg2);
5068 tree exp = c_build_vec_perm_expr (loc, arg0, arg1, arg2, complain & tf_error);
5069 if (processing_template_decl && exp != error_mark_node)
5070 return build_min_non_dep (VEC_PERM_EXPR, exp, orig_arg0,
5071 orig_arg1, orig_arg2);
5072 return exp;
5075 /* Return a tree for the sum or difference (RESULTCODE says which)
5076 of pointer PTROP and integer INTOP. */
5078 static tree
5079 cp_pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop,
5080 tsubst_flags_t complain)
5082 tree res_type = TREE_TYPE (ptrop);
5084 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
5085 in certain circumstance (when it's valid to do so). So we need
5086 to make sure it's complete. We don't need to check here, if we
5087 can actually complete it at all, as those checks will be done in
5088 pointer_int_sum() anyway. */
5089 complete_type (TREE_TYPE (res_type));
5091 return pointer_int_sum (input_location, resultcode, ptrop,
5092 fold_if_not_in_template (intop),
5093 complain & tf_warning_or_error);
5096 /* Return a tree for the difference of pointers OP0 and OP1.
5097 The resulting tree has type int. */
5099 static tree
5100 pointer_diff (tree op0, tree op1, tree ptrtype, tsubst_flags_t complain)
5102 tree result;
5103 tree restype = ptrdiff_type_node;
5104 tree target_type = TREE_TYPE (ptrtype);
5106 if (!complete_type_or_else (target_type, NULL_TREE))
5107 return error_mark_node;
5109 if (VOID_TYPE_P (target_type))
5111 if (complain & tf_error)
5112 permerror (input_location, "ISO C++ forbids using pointer of "
5113 "type %<void *%> in subtraction");
5114 else
5115 return error_mark_node;
5117 if (TREE_CODE (target_type) == FUNCTION_TYPE)
5119 if (complain & tf_error)
5120 permerror (input_location, "ISO C++ forbids using pointer to "
5121 "a function in subtraction");
5122 else
5123 return error_mark_node;
5125 if (TREE_CODE (target_type) == METHOD_TYPE)
5127 if (complain & tf_error)
5128 permerror (input_location, "ISO C++ forbids using pointer to "
5129 "a method in subtraction");
5130 else
5131 return error_mark_node;
5134 /* First do the subtraction as integers;
5135 then drop through to build the divide operator. */
5137 op0 = cp_build_binary_op (input_location,
5138 MINUS_EXPR,
5139 cp_convert (restype, op0, complain),
5140 cp_convert (restype, op1, complain),
5141 complain);
5143 /* This generates an error if op1 is a pointer to an incomplete type. */
5144 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
5146 if (complain & tf_error)
5147 error ("invalid use of a pointer to an incomplete type in "
5148 "pointer arithmetic");
5149 else
5150 return error_mark_node;
5153 if (pointer_to_zero_sized_aggr_p (TREE_TYPE (op1)))
5155 if (complain & tf_error)
5156 error ("arithmetic on pointer to an empty aggregate");
5157 else
5158 return error_mark_node;
5161 op1 = (TYPE_PTROB_P (ptrtype)
5162 ? size_in_bytes (target_type)
5163 : integer_one_node);
5165 /* Do the division. */
5167 result = build2 (EXACT_DIV_EXPR, restype, op0,
5168 cp_convert (restype, op1, complain));
5169 return fold_if_not_in_template (result);
5172 /* Construct and perhaps optimize a tree representation
5173 for a unary operation. CODE, a tree_code, specifies the operation
5174 and XARG is the operand. */
5176 tree
5177 build_x_unary_op (location_t loc, enum tree_code code, tree xarg,
5178 tsubst_flags_t complain)
5180 tree orig_expr = xarg;
5181 tree exp;
5182 int ptrmem = 0;
5184 if (processing_template_decl)
5186 if (type_dependent_expression_p (xarg))
5187 return build_min_nt_loc (loc, code, xarg, NULL_TREE);
5189 xarg = build_non_dependent_expr (xarg);
5192 exp = NULL_TREE;
5194 /* [expr.unary.op] says:
5196 The address of an object of incomplete type can be taken.
5198 (And is just the ordinary address operator, not an overloaded
5199 "operator &".) However, if the type is a template
5200 specialization, we must complete the type at this point so that
5201 an overloaded "operator &" will be available if required. */
5202 if (code == ADDR_EXPR
5203 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
5204 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
5205 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
5206 || (TREE_CODE (xarg) == OFFSET_REF)))
5207 /* Don't look for a function. */;
5208 else
5209 exp = build_new_op (loc, code, LOOKUP_NORMAL, xarg, NULL_TREE,
5210 NULL_TREE, /*overload=*/NULL, complain);
5211 if (!exp && code == ADDR_EXPR)
5213 if (is_overloaded_fn (xarg))
5215 tree fn = get_first_fn (xarg);
5216 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
5218 if (complain & tf_error)
5219 error (DECL_CONSTRUCTOR_P (fn)
5220 ? G_("taking address of constructor %qE")
5221 : G_("taking address of destructor %qE"),
5222 xarg);
5223 return error_mark_node;
5227 /* A pointer to member-function can be formed only by saying
5228 &X::mf. */
5229 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
5230 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
5232 if (TREE_CODE (xarg) != OFFSET_REF
5233 || !TYPE_P (TREE_OPERAND (xarg, 0)))
5235 if (complain & tf_error)
5237 error ("invalid use of %qE to form a "
5238 "pointer-to-member-function", xarg);
5239 if (TREE_CODE (xarg) != OFFSET_REF)
5240 inform (input_location, " a qualified-id is required");
5242 return error_mark_node;
5244 else
5246 if (complain & tf_error)
5247 error ("parentheses around %qE cannot be used to form a"
5248 " pointer-to-member-function",
5249 xarg);
5250 else
5251 return error_mark_node;
5252 PTRMEM_OK_P (xarg) = 1;
5256 if (TREE_CODE (xarg) == OFFSET_REF)
5258 ptrmem = PTRMEM_OK_P (xarg);
5260 if (!ptrmem && !flag_ms_extensions
5261 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
5263 /* A single non-static member, make sure we don't allow a
5264 pointer-to-member. */
5265 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
5266 TREE_OPERAND (xarg, 0),
5267 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
5268 PTRMEM_OK_P (xarg) = ptrmem;
5272 exp = cp_build_addr_expr_strict (xarg, complain);
5275 if (processing_template_decl && exp != error_mark_node)
5276 exp = build_min_non_dep (code, exp, orig_expr,
5277 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
5278 if (TREE_CODE (exp) == ADDR_EXPR)
5279 PTRMEM_OK_P (exp) = ptrmem;
5280 return exp;
5283 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
5284 constants, where a null value is represented by an INTEGER_CST of
5285 -1. */
5287 tree
5288 cp_truthvalue_conversion (tree expr)
5290 tree type = TREE_TYPE (expr);
5291 if (TYPE_PTRDATAMEM_P (type)
5292 /* Avoid ICE on invalid use of non-static member function. */
5293 || TREE_CODE (expr) == FUNCTION_DECL)
5294 return build_binary_op (EXPR_LOCATION (expr),
5295 NE_EXPR, expr, nullptr_node, 1);
5296 else if (TYPE_PTR_P (type) || TYPE_PTRMEMFUNC_P (type))
5298 /* With -Wzero-as-null-pointer-constant do not warn for an
5299 'if (p)' or a 'while (!p)', where p is a pointer. */
5300 tree ret;
5301 ++c_inhibit_evaluation_warnings;
5302 ret = c_common_truthvalue_conversion (input_location, expr);
5303 --c_inhibit_evaluation_warnings;
5304 return ret;
5306 else
5307 return c_common_truthvalue_conversion (input_location, expr);
5310 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
5312 tree
5313 condition_conversion (tree expr)
5315 tree t;
5316 if (processing_template_decl)
5317 return expr;
5318 t = perform_implicit_conversion_flags (boolean_type_node, expr,
5319 tf_warning_or_error, LOOKUP_NORMAL);
5320 t = fold_build_cleanup_point_expr (boolean_type_node, t);
5321 return t;
5324 /* Returns the address of T. This function will fold away
5325 ADDR_EXPR of INDIRECT_REF. */
5327 tree
5328 build_address (tree t)
5330 if (error_operand_p (t) || !cxx_mark_addressable (t))
5331 return error_mark_node;
5332 gcc_checking_assert (TREE_CODE (t) != CONSTRUCTOR);
5333 t = build_fold_addr_expr (t);
5334 if (TREE_CODE (t) != ADDR_EXPR)
5335 t = rvalue (t);
5336 return t;
5339 /* Return a NOP_EXPR converting EXPR to TYPE. */
5341 tree
5342 build_nop (tree type, tree expr)
5344 if (type == error_mark_node || error_operand_p (expr))
5345 return expr;
5346 return build1 (NOP_EXPR, type, expr);
5349 /* Take the address of ARG, whatever that means under C++ semantics.
5350 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
5351 and class rvalues as well.
5353 Nothing should call this function directly; instead, callers should use
5354 cp_build_addr_expr or cp_build_addr_expr_strict. */
5356 static tree
5357 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
5359 tree argtype;
5360 tree val;
5362 if (!arg || error_operand_p (arg))
5363 return error_mark_node;
5365 arg = mark_lvalue_use (arg);
5366 argtype = lvalue_type (arg);
5368 gcc_assert (!identifier_p (arg) || !IDENTIFIER_OPNAME_P (arg));
5370 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
5371 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
5373 /* They're trying to take the address of a unique non-static
5374 member function. This is ill-formed (except in MS-land),
5375 but let's try to DTRT.
5376 Note: We only handle unique functions here because we don't
5377 want to complain if there's a static overload; non-unique
5378 cases will be handled by instantiate_type. But we need to
5379 handle this case here to allow casts on the resulting PMF.
5380 We could defer this in non-MS mode, but it's easier to give
5381 a useful error here. */
5383 /* Inside constant member functions, the `this' pointer
5384 contains an extra const qualifier. TYPE_MAIN_VARIANT
5385 is used here to remove this const from the diagnostics
5386 and the created OFFSET_REF. */
5387 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
5388 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
5389 if (!mark_used (fn, complain) && !(complain & tf_error))
5390 return error_mark_node;
5392 if (! flag_ms_extensions)
5394 tree name = DECL_NAME (fn);
5395 if (!(complain & tf_error))
5396 return error_mark_node;
5397 else if (current_class_type
5398 && TREE_OPERAND (arg, 0) == current_class_ref)
5399 /* An expression like &memfn. */
5400 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
5401 " or parenthesized non-static member function to form"
5402 " a pointer to member function. Say %<&%T::%D%>",
5403 base, name);
5404 else
5405 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
5406 " function to form a pointer to member function."
5407 " Say %<&%T::%D%>",
5408 base, name);
5410 arg = build_offset_ref (base, fn, /*address_p=*/true, complain);
5413 /* Uninstantiated types are all functions. Taking the
5414 address of a function is a no-op, so just return the
5415 argument. */
5416 if (type_unknown_p (arg))
5417 return build1 (ADDR_EXPR, unknown_type_node, arg);
5419 if (TREE_CODE (arg) == OFFSET_REF)
5420 /* We want a pointer to member; bypass all the code for actually taking
5421 the address of something. */
5422 goto offset_ref;
5424 /* Anything not already handled and not a true memory reference
5425 is an error. */
5426 if (TREE_CODE (argtype) != FUNCTION_TYPE
5427 && TREE_CODE (argtype) != METHOD_TYPE)
5429 cp_lvalue_kind kind = lvalue_kind (arg);
5430 if (kind == clk_none)
5432 if (complain & tf_error)
5433 lvalue_error (input_location, lv_addressof);
5434 return error_mark_node;
5436 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
5438 if (!(complain & tf_error))
5439 return error_mark_node;
5440 if (kind & clk_class)
5441 /* Make this a permerror because we used to accept it. */
5442 permerror (input_location, "taking address of temporary");
5443 else
5444 error ("taking address of xvalue (rvalue reference)");
5448 if (TREE_CODE (argtype) == REFERENCE_TYPE)
5450 tree type = build_pointer_type (TREE_TYPE (argtype));
5451 arg = build1 (CONVERT_EXPR, type, arg);
5452 return arg;
5454 else if (pedantic && DECL_MAIN_P (arg))
5456 /* ARM $3.4 */
5457 /* Apparently a lot of autoconf scripts for C++ packages do this,
5458 so only complain if -Wpedantic. */
5459 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
5460 pedwarn (input_location, OPT_Wpedantic,
5461 "ISO C++ forbids taking address of function %<::main%>");
5462 else if (flag_pedantic_errors)
5463 return error_mark_node;
5466 /* Let &* cancel out to simplify resulting code. */
5467 if (INDIRECT_REF_P (arg))
5469 /* We don't need to have `current_class_ptr' wrapped in a
5470 NON_LVALUE_EXPR node. */
5471 if (arg == current_class_ref)
5472 return current_class_ptr;
5474 arg = TREE_OPERAND (arg, 0);
5475 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
5477 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
5478 arg = build1 (CONVERT_EXPR, type, arg);
5480 else
5481 /* Don't let this be an lvalue. */
5482 arg = rvalue (arg);
5483 return arg;
5486 /* ??? Cope with user tricks that amount to offsetof. */
5487 if (TREE_CODE (argtype) != FUNCTION_TYPE
5488 && TREE_CODE (argtype) != METHOD_TYPE
5489 && argtype != unknown_type_node
5490 && (val = get_base_address (arg))
5491 && COMPLETE_TYPE_P (TREE_TYPE (val))
5492 && INDIRECT_REF_P (val)
5493 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
5495 tree type = build_pointer_type (argtype);
5496 return fold_convert (type, fold_offsetof_1 (arg));
5499 /* Handle complex lvalues (when permitted)
5500 by reduction to simpler cases. */
5501 val = unary_complex_lvalue (ADDR_EXPR, arg);
5502 if (val != 0)
5503 return val;
5505 switch (TREE_CODE (arg))
5507 CASE_CONVERT:
5508 case FLOAT_EXPR:
5509 case FIX_TRUNC_EXPR:
5510 /* Even if we're not being pedantic, we cannot allow this
5511 extension when we're instantiating in a SFINAE
5512 context. */
5513 if (! lvalue_p (arg) && complain == tf_none)
5515 if (complain & tf_error)
5516 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
5517 else
5518 return error_mark_node;
5520 break;
5522 case BASELINK:
5523 arg = BASELINK_FUNCTIONS (arg);
5524 /* Fall through. */
5526 case OVERLOAD:
5527 arg = OVL_CURRENT (arg);
5528 break;
5530 case OFFSET_REF:
5531 offset_ref:
5532 /* Turn a reference to a non-static data member into a
5533 pointer-to-member. */
5535 tree type;
5536 tree t;
5538 gcc_assert (PTRMEM_OK_P (arg));
5540 t = TREE_OPERAND (arg, 1);
5541 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
5543 if (complain & tf_error)
5544 error ("cannot create pointer to reference member %qD", t);
5545 return error_mark_node;
5548 type = build_ptrmem_type (context_for_name_lookup (t),
5549 TREE_TYPE (t));
5550 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
5551 return t;
5554 default:
5555 break;
5558 if (argtype != error_mark_node)
5559 argtype = build_pointer_type (argtype);
5561 /* In a template, we are processing a non-dependent expression
5562 so we can just form an ADDR_EXPR with the correct type. */
5563 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
5565 val = build_address (arg);
5566 if (TREE_CODE (arg) == OFFSET_REF)
5567 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
5569 else if (BASELINK_P (TREE_OPERAND (arg, 1)))
5571 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
5573 /* We can only get here with a single static member
5574 function. */
5575 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
5576 && DECL_STATIC_FUNCTION_P (fn));
5577 if (!mark_used (fn, complain) && !(complain & tf_error))
5578 return error_mark_node;
5579 val = build_address (fn);
5580 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
5581 /* Do not lose object's side effects. */
5582 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
5583 TREE_OPERAND (arg, 0), val);
5585 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
5587 if (complain & tf_error)
5588 error ("attempt to take address of bit-field structure member %qD",
5589 TREE_OPERAND (arg, 1));
5590 return error_mark_node;
5592 else
5594 tree object = TREE_OPERAND (arg, 0);
5595 tree field = TREE_OPERAND (arg, 1);
5596 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5597 (TREE_TYPE (object), decl_type_context (field)));
5598 val = build_address (arg);
5601 if (TYPE_PTR_P (argtype)
5602 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
5604 build_ptrmemfunc_type (argtype);
5605 val = build_ptrmemfunc (argtype, val, 0,
5606 /*c_cast_p=*/false,
5607 complain);
5610 return val;
5613 /* Take the address of ARG if it has one, even if it's an rvalue. */
5615 tree
5616 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
5618 return cp_build_addr_expr_1 (arg, 0, complain);
5621 /* Take the address of ARG, but only if it's an lvalue. */
5623 static tree
5624 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
5626 return cp_build_addr_expr_1 (arg, 1, complain);
5629 /* C++: Must handle pointers to members.
5631 Perhaps type instantiation should be extended to handle conversion
5632 from aggregates to types we don't yet know we want? (Or are those
5633 cases typically errors which should be reported?)
5635 NOCONVERT nonzero suppresses the default promotions
5636 (such as from short to int). */
5638 tree
5639 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
5640 tsubst_flags_t complain)
5642 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
5643 tree arg = xarg;
5644 tree argtype = 0;
5645 const char *errstring = NULL;
5646 tree val;
5647 const char *invalid_op_diag;
5649 if (!arg || error_operand_p (arg))
5650 return error_mark_node;
5652 if ((invalid_op_diag
5653 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
5654 ? CONVERT_EXPR
5655 : code),
5656 TREE_TYPE (xarg))))
5658 if (complain & tf_error)
5659 error (invalid_op_diag);
5660 return error_mark_node;
5663 switch (code)
5665 case UNARY_PLUS_EXPR:
5666 case NEGATE_EXPR:
5668 int flags = WANT_ARITH | WANT_ENUM;
5669 /* Unary plus (but not unary minus) is allowed on pointers. */
5670 if (code == UNARY_PLUS_EXPR)
5671 flags |= WANT_POINTER;
5672 arg = build_expr_type_conversion (flags, arg, true);
5673 if (!arg)
5674 errstring = (code == NEGATE_EXPR
5675 ? _("wrong type argument to unary minus")
5676 : _("wrong type argument to unary plus"));
5677 else
5679 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5680 arg = cp_perform_integral_promotions (arg, complain);
5682 /* Make sure the result is not an lvalue: a unary plus or minus
5683 expression is always a rvalue. */
5684 arg = rvalue (arg);
5687 break;
5689 case BIT_NOT_EXPR:
5690 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5692 code = CONJ_EXPR;
5693 if (!noconvert)
5695 arg = cp_default_conversion (arg, complain);
5696 if (arg == error_mark_node)
5697 return error_mark_node;
5700 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5701 | WANT_VECTOR_OR_COMPLEX,
5702 arg, true)))
5703 errstring = _("wrong type argument to bit-complement");
5704 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5705 arg = cp_perform_integral_promotions (arg, complain);
5706 break;
5708 case ABS_EXPR:
5709 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5710 errstring = _("wrong type argument to abs");
5711 else if (!noconvert)
5713 arg = cp_default_conversion (arg, complain);
5714 if (arg == error_mark_node)
5715 return error_mark_node;
5717 break;
5719 case CONJ_EXPR:
5720 /* Conjugating a real value is a no-op, but allow it anyway. */
5721 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5722 errstring = _("wrong type argument to conjugation");
5723 else if (!noconvert)
5725 arg = cp_default_conversion (arg, complain);
5726 if (arg == error_mark_node)
5727 return error_mark_node;
5729 break;
5731 case TRUTH_NOT_EXPR:
5732 if (VECTOR_TYPE_P (TREE_TYPE (arg)))
5733 return cp_build_binary_op (input_location, EQ_EXPR, arg,
5734 build_zero_cst (TREE_TYPE (arg)), complain);
5735 arg = perform_implicit_conversion (boolean_type_node, arg,
5736 complain);
5737 val = invert_truthvalue_loc (input_location, arg);
5738 if (arg != error_mark_node)
5739 return val;
5740 errstring = _("in argument to unary !");
5741 break;
5743 case NOP_EXPR:
5744 break;
5746 case REALPART_EXPR:
5747 case IMAGPART_EXPR:
5748 arg = build_real_imag_expr (input_location, code, arg);
5749 if (arg == error_mark_node)
5750 return arg;
5751 else
5752 return fold_if_not_in_template (arg);
5754 case PREINCREMENT_EXPR:
5755 case POSTINCREMENT_EXPR:
5756 case PREDECREMENT_EXPR:
5757 case POSTDECREMENT_EXPR:
5758 /* Handle complex lvalues (when permitted)
5759 by reduction to simpler cases. */
5761 val = unary_complex_lvalue (code, arg);
5762 if (val != 0)
5763 return val;
5765 arg = mark_lvalue_use (arg);
5767 /* Increment or decrement the real part of the value,
5768 and don't change the imaginary part. */
5769 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5771 tree real, imag;
5773 arg = stabilize_reference (arg);
5774 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5775 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5776 real = cp_build_unary_op (code, real, 1, complain);
5777 if (real == error_mark_node || imag == error_mark_node)
5778 return error_mark_node;
5779 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5780 real, imag);
5783 /* Report invalid types. */
5785 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5786 arg, true)))
5788 if (code == PREINCREMENT_EXPR)
5789 errstring = _("no pre-increment operator for type");
5790 else if (code == POSTINCREMENT_EXPR)
5791 errstring = _("no post-increment operator for type");
5792 else if (code == PREDECREMENT_EXPR)
5793 errstring = _("no pre-decrement operator for type");
5794 else
5795 errstring = _("no post-decrement operator for type");
5796 break;
5798 else if (arg == error_mark_node)
5799 return error_mark_node;
5801 /* Report something read-only. */
5803 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5804 || TREE_READONLY (arg))
5806 if (complain & tf_error)
5807 cxx_readonly_error (arg, ((code == PREINCREMENT_EXPR
5808 || code == POSTINCREMENT_EXPR)
5809 ? lv_increment : lv_decrement));
5810 else
5811 return error_mark_node;
5815 tree inc;
5816 tree declared_type = unlowered_expr_type (arg);
5818 argtype = TREE_TYPE (arg);
5820 /* ARM $5.2.5 last annotation says this should be forbidden. */
5821 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5823 if (complain & tf_error)
5824 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5825 ? G_("ISO C++ forbids incrementing an enum")
5826 : G_("ISO C++ forbids decrementing an enum"));
5827 else
5828 return error_mark_node;
5831 /* Compute the increment. */
5833 if (TYPE_PTR_P (argtype))
5835 tree type = complete_type (TREE_TYPE (argtype));
5837 if (!COMPLETE_OR_VOID_TYPE_P (type))
5839 if (complain & tf_error)
5840 error (((code == PREINCREMENT_EXPR
5841 || code == POSTINCREMENT_EXPR))
5842 ? G_("cannot increment a pointer to incomplete type %qT")
5843 : G_("cannot decrement a pointer to incomplete type %qT"),
5844 TREE_TYPE (argtype));
5845 else
5846 return error_mark_node;
5848 else if (!TYPE_PTROB_P (argtype))
5850 if (complain & tf_error)
5851 pedwarn (input_location, OPT_Wpointer_arith,
5852 (code == PREINCREMENT_EXPR
5853 || code == POSTINCREMENT_EXPR)
5854 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
5855 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
5856 argtype);
5857 else
5858 return error_mark_node;
5861 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
5863 else
5864 inc = VECTOR_TYPE_P (argtype)
5865 ? build_one_cst (argtype)
5866 : integer_one_node;
5868 inc = cp_convert (argtype, inc, complain);
5870 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
5871 need to ask Objective-C to build the increment or decrement
5872 expression for it. */
5873 if (objc_is_property_ref (arg))
5874 return objc_build_incr_expr_for_property_ref (input_location, code,
5875 arg, inc);
5877 /* Complain about anything else that is not a true lvalue. */
5878 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
5879 || code == POSTINCREMENT_EXPR)
5880 ? lv_increment : lv_decrement),
5881 complain))
5882 return error_mark_node;
5884 /* Forbid using -- on `bool'. */
5885 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
5887 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
5889 if (complain & tf_error)
5890 error ("invalid use of Boolean expression as operand "
5891 "to %<operator--%>");
5892 return error_mark_node;
5894 val = boolean_increment (code, arg);
5896 else if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5897 /* An rvalue has no cv-qualifiers. */
5898 val = build2 (code, cv_unqualified (TREE_TYPE (arg)), arg, inc);
5899 else
5900 val = build2 (code, TREE_TYPE (arg), arg, inc);
5902 TREE_SIDE_EFFECTS (val) = 1;
5903 return val;
5906 case ADDR_EXPR:
5907 /* Note that this operation never does default_conversion
5908 regardless of NOCONVERT. */
5909 return cp_build_addr_expr (arg, complain);
5911 default:
5912 break;
5915 if (!errstring)
5917 if (argtype == 0)
5918 argtype = TREE_TYPE (arg);
5919 return fold_if_not_in_template (build1 (code, argtype, arg));
5922 if (complain & tf_error)
5923 error ("%s", errstring);
5924 return error_mark_node;
5927 /* Hook for the c-common bits that build a unary op. */
5928 tree
5929 build_unary_op (location_t /*location*/,
5930 enum tree_code code, tree xarg, int noconvert)
5932 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
5935 /* Apply unary lvalue-demanding operator CODE to the expression ARG
5936 for certain kinds of expressions which are not really lvalues
5937 but which we can accept as lvalues.
5939 If ARG is not a kind of expression we can handle, return
5940 NULL_TREE. */
5942 tree
5943 unary_complex_lvalue (enum tree_code code, tree arg)
5945 /* Inside a template, making these kinds of adjustments is
5946 pointless; we are only concerned with the type of the
5947 expression. */
5948 if (processing_template_decl)
5949 return NULL_TREE;
5951 /* Handle (a, b) used as an "lvalue". */
5952 if (TREE_CODE (arg) == COMPOUND_EXPR)
5954 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
5955 tf_warning_or_error);
5956 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5957 TREE_OPERAND (arg, 0), real_result);
5960 /* Handle (a ? b : c) used as an "lvalue". */
5961 if (TREE_CODE (arg) == COND_EXPR
5962 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
5963 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
5965 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
5966 if (TREE_CODE (arg) == MODIFY_EXPR
5967 || TREE_CODE (arg) == PREINCREMENT_EXPR
5968 || TREE_CODE (arg) == PREDECREMENT_EXPR)
5970 tree lvalue = TREE_OPERAND (arg, 0);
5971 if (TREE_SIDE_EFFECTS (lvalue))
5973 lvalue = stabilize_reference (lvalue);
5974 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
5975 lvalue, TREE_OPERAND (arg, 1));
5977 return unary_complex_lvalue
5978 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
5981 if (code != ADDR_EXPR)
5982 return NULL_TREE;
5984 /* Handle (a = b) used as an "lvalue" for `&'. */
5985 if (TREE_CODE (arg) == MODIFY_EXPR
5986 || TREE_CODE (arg) == INIT_EXPR)
5988 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
5989 tf_warning_or_error);
5990 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5991 arg, real_result);
5992 TREE_NO_WARNING (arg) = 1;
5993 return arg;
5996 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
5997 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
5998 || TREE_CODE (arg) == OFFSET_REF)
5999 return NULL_TREE;
6001 /* We permit compiler to make function calls returning
6002 objects of aggregate type look like lvalues. */
6004 tree targ = arg;
6006 if (TREE_CODE (targ) == SAVE_EXPR)
6007 targ = TREE_OPERAND (targ, 0);
6009 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
6011 if (TREE_CODE (arg) == SAVE_EXPR)
6012 targ = arg;
6013 else
6014 targ = build_cplus_new (TREE_TYPE (arg), arg, tf_warning_or_error);
6015 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
6018 if (TREE_CODE (arg) == SAVE_EXPR && INDIRECT_REF_P (targ))
6019 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
6020 TREE_OPERAND (targ, 0), current_function_decl, NULL);
6023 /* Don't let anything else be handled specially. */
6024 return NULL_TREE;
6027 /* Mark EXP saying that we need to be able to take the
6028 address of it; it should not be allocated in a register.
6029 Value is true if successful.
6031 C++: we do not allow `current_class_ptr' to be addressable. */
6033 bool
6034 cxx_mark_addressable (tree exp)
6036 tree x = exp;
6038 while (1)
6039 switch (TREE_CODE (x))
6041 case ADDR_EXPR:
6042 case COMPONENT_REF:
6043 case ARRAY_REF:
6044 case REALPART_EXPR:
6045 case IMAGPART_EXPR:
6046 x = TREE_OPERAND (x, 0);
6047 break;
6049 case PARM_DECL:
6050 if (x == current_class_ptr)
6052 error ("cannot take the address of %<this%>, which is an rvalue expression");
6053 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
6054 return true;
6056 /* Fall through. */
6058 case VAR_DECL:
6059 /* Caller should not be trying to mark initialized
6060 constant fields addressable. */
6061 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
6062 || DECL_IN_AGGR_P (x) == 0
6063 || TREE_STATIC (x)
6064 || DECL_EXTERNAL (x));
6065 /* Fall through. */
6067 case RESULT_DECL:
6068 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
6069 && !DECL_ARTIFICIAL (x))
6071 if (VAR_P (x) && DECL_HARD_REGISTER (x))
6073 error
6074 ("address of explicit register variable %qD requested", x);
6075 return false;
6077 else if (extra_warnings)
6078 warning
6079 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
6081 TREE_ADDRESSABLE (x) = 1;
6082 return true;
6084 case CONST_DECL:
6085 case FUNCTION_DECL:
6086 TREE_ADDRESSABLE (x) = 1;
6087 return true;
6089 case CONSTRUCTOR:
6090 TREE_ADDRESSABLE (x) = 1;
6091 return true;
6093 case TARGET_EXPR:
6094 TREE_ADDRESSABLE (x) = 1;
6095 cxx_mark_addressable (TREE_OPERAND (x, 0));
6096 return true;
6098 default:
6099 return true;
6103 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
6105 tree
6106 build_x_conditional_expr (location_t loc, tree ifexp, tree op1, tree op2,
6107 tsubst_flags_t complain)
6109 tree orig_ifexp = ifexp;
6110 tree orig_op1 = op1;
6111 tree orig_op2 = op2;
6112 tree expr;
6114 if (processing_template_decl)
6116 /* The standard says that the expression is type-dependent if
6117 IFEXP is type-dependent, even though the eventual type of the
6118 expression doesn't dependent on IFEXP. */
6119 if (type_dependent_expression_p (ifexp)
6120 /* As a GNU extension, the middle operand may be omitted. */
6121 || (op1 && type_dependent_expression_p (op1))
6122 || type_dependent_expression_p (op2))
6123 return build_min_nt_loc (loc, COND_EXPR, ifexp, op1, op2);
6124 ifexp = build_non_dependent_expr (ifexp);
6125 if (op1)
6126 op1 = build_non_dependent_expr (op1);
6127 op2 = build_non_dependent_expr (op2);
6130 expr = build_conditional_expr (loc, ifexp, op1, op2, complain);
6131 if (processing_template_decl && expr != error_mark_node
6132 && TREE_CODE (expr) != VEC_COND_EXPR)
6134 tree min = build_min_non_dep (COND_EXPR, expr,
6135 orig_ifexp, orig_op1, orig_op2);
6136 /* In C++11, remember that the result is an lvalue or xvalue.
6137 In C++98, lvalue_kind can just assume lvalue in a template. */
6138 if (cxx_dialect >= cxx11
6139 && lvalue_or_rvalue_with_address_p (expr)
6140 && !lvalue_or_rvalue_with_address_p (min))
6141 TREE_TYPE (min) = cp_build_reference_type (TREE_TYPE (min),
6142 !real_lvalue_p (expr));
6143 expr = convert_from_reference (min);
6145 return expr;
6148 /* Given a list of expressions, return a compound expression
6149 that performs them all and returns the value of the last of them. */
6151 tree
6152 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
6153 tsubst_flags_t complain)
6155 tree expr = TREE_VALUE (list);
6157 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6158 && !CONSTRUCTOR_IS_DIRECT_INIT (expr))
6160 if (complain & tf_error)
6161 pedwarn (EXPR_LOC_OR_LOC (expr, input_location), 0,
6162 "list-initializer for non-class type must not "
6163 "be parenthesized");
6164 else
6165 return error_mark_node;
6168 if (TREE_CHAIN (list))
6170 if (complain & tf_error)
6171 switch (exp)
6173 case ELK_INIT:
6174 permerror (input_location, "expression list treated as compound "
6175 "expression in initializer");
6176 break;
6177 case ELK_MEM_INIT:
6178 permerror (input_location, "expression list treated as compound "
6179 "expression in mem-initializer");
6180 break;
6181 case ELK_FUNC_CAST:
6182 permerror (input_location, "expression list treated as compound "
6183 "expression in functional cast");
6184 break;
6185 default:
6186 gcc_unreachable ();
6188 else
6189 return error_mark_node;
6191 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
6192 expr = build_x_compound_expr (EXPR_LOCATION (TREE_VALUE (list)),
6193 expr, TREE_VALUE (list), complain);
6196 return expr;
6199 /* Like build_x_compound_expr_from_list, but using a VEC. */
6201 tree
6202 build_x_compound_expr_from_vec (vec<tree, va_gc> *vec, const char *msg,
6203 tsubst_flags_t complain)
6205 if (vec_safe_is_empty (vec))
6206 return NULL_TREE;
6207 else if (vec->length () == 1)
6208 return (*vec)[0];
6209 else
6211 tree expr;
6212 unsigned int ix;
6213 tree t;
6215 if (msg != NULL)
6217 if (complain & tf_error)
6218 permerror (input_location,
6219 "%s expression list treated as compound expression",
6220 msg);
6221 else
6222 return error_mark_node;
6225 expr = (*vec)[0];
6226 for (ix = 1; vec->iterate (ix, &t); ++ix)
6227 expr = build_x_compound_expr (EXPR_LOCATION (t), expr,
6228 t, complain);
6230 return expr;
6234 /* Handle overloading of the ',' operator when needed. */
6236 tree
6237 build_x_compound_expr (location_t loc, tree op1, tree op2,
6238 tsubst_flags_t complain)
6240 tree result;
6241 tree orig_op1 = op1;
6242 tree orig_op2 = op2;
6244 if (processing_template_decl)
6246 if (type_dependent_expression_p (op1)
6247 || type_dependent_expression_p (op2))
6248 return build_min_nt_loc (loc, COMPOUND_EXPR, op1, op2);
6249 op1 = build_non_dependent_expr (op1);
6250 op2 = build_non_dependent_expr (op2);
6253 result = build_new_op (loc, COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2,
6254 NULL_TREE, /*overload=*/NULL, complain);
6255 if (!result)
6256 result = cp_build_compound_expr (op1, op2, complain);
6258 if (processing_template_decl && result != error_mark_node)
6259 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
6261 return result;
6264 /* Like cp_build_compound_expr, but for the c-common bits. */
6266 tree
6267 build_compound_expr (location_t /*loc*/, tree lhs, tree rhs)
6269 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
6272 /* Build a compound expression. */
6274 tree
6275 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
6277 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
6279 if (lhs == error_mark_node || rhs == error_mark_node)
6280 return error_mark_node;
6282 if (flag_cilkplus
6283 && (TREE_CODE (lhs) == CILK_SPAWN_STMT
6284 || TREE_CODE (rhs) == CILK_SPAWN_STMT))
6286 location_t loc = (EXPR_HAS_LOCATION (lhs) ? EXPR_LOCATION (lhs)
6287 : EXPR_LOCATION (rhs));
6288 error_at (loc,
6289 "spawned function call cannot be part of a comma expression");
6290 return error_mark_node;
6293 if (TREE_CODE (rhs) == TARGET_EXPR)
6295 /* If the rhs is a TARGET_EXPR, then build the compound
6296 expression inside the target_expr's initializer. This
6297 helps the compiler to eliminate unnecessary temporaries. */
6298 tree init = TREE_OPERAND (rhs, 1);
6300 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
6301 TREE_OPERAND (rhs, 1) = init;
6303 return rhs;
6306 if (type_unknown_p (rhs))
6308 if (complain & tf_error)
6309 error ("no context to resolve type of %qE", rhs);
6310 return error_mark_node;
6313 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
6316 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
6317 casts away constness. CAST gives the type of cast. Returns true
6318 if the cast is ill-formed, false if it is well-formed.
6320 ??? This function warns for casting away any qualifier not just
6321 const. We would like to specify exactly what qualifiers are casted
6322 away.
6325 static bool
6326 check_for_casting_away_constness (tree src_type, tree dest_type,
6327 enum tree_code cast, tsubst_flags_t complain)
6329 /* C-style casts are allowed to cast away constness. With
6330 WARN_CAST_QUAL, we still want to issue a warning. */
6331 if (cast == CAST_EXPR && !warn_cast_qual)
6332 return false;
6334 if (!casts_away_constness (src_type, dest_type, complain))
6335 return false;
6337 switch (cast)
6339 case CAST_EXPR:
6340 if (complain & tf_warning)
6341 warning (OPT_Wcast_qual,
6342 "cast from type %qT to type %qT casts away qualifiers",
6343 src_type, dest_type);
6344 return false;
6346 case STATIC_CAST_EXPR:
6347 if (complain & tf_error)
6348 error ("static_cast from type %qT to type %qT casts away qualifiers",
6349 src_type, dest_type);
6350 return true;
6352 case REINTERPRET_CAST_EXPR:
6353 if (complain & tf_error)
6354 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
6355 src_type, dest_type);
6356 return true;
6358 default:
6359 gcc_unreachable();
6364 Warns if the cast from expression EXPR to type TYPE is useless.
6366 void
6367 maybe_warn_about_useless_cast (tree type, tree expr, tsubst_flags_t complain)
6369 if (warn_useless_cast
6370 && complain & tf_warning)
6372 if ((TREE_CODE (type) == REFERENCE_TYPE
6373 && (TYPE_REF_IS_RVALUE (type)
6374 ? xvalue_p (expr) : real_lvalue_p (expr))
6375 && same_type_p (TREE_TYPE (expr), TREE_TYPE (type)))
6376 || same_type_p (TREE_TYPE (expr), type))
6377 warning (OPT_Wuseless_cast, "useless cast to type %qT", type);
6381 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
6382 (another pointer-to-member type in the same hierarchy) and return
6383 the converted expression. If ALLOW_INVERSE_P is permitted, a
6384 pointer-to-derived may be converted to pointer-to-base; otherwise,
6385 only the other direction is permitted. If C_CAST_P is true, this
6386 conversion is taking place as part of a C-style cast. */
6388 tree
6389 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
6390 bool c_cast_p, tsubst_flags_t complain)
6392 if (TYPE_PTRDATAMEM_P (type))
6394 tree delta;
6396 if (TREE_CODE (expr) == PTRMEM_CST)
6397 expr = cplus_expand_constant (expr);
6398 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
6399 TYPE_PTRMEM_CLASS_TYPE (type),
6400 allow_inverse_p,
6401 c_cast_p, complain);
6402 if (delta == error_mark_node)
6403 return error_mark_node;
6405 if (!integer_zerop (delta))
6407 tree cond, op1, op2;
6409 cond = cp_build_binary_op (input_location,
6410 EQ_EXPR,
6411 expr,
6412 build_int_cst (TREE_TYPE (expr), -1),
6413 complain);
6414 op1 = build_nop (ptrdiff_type_node, expr);
6415 op2 = cp_build_binary_op (input_location,
6416 PLUS_EXPR, op1, delta,
6417 complain);
6419 expr = fold_build3_loc (input_location,
6420 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
6424 return build_nop (type, expr);
6426 else
6427 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
6428 allow_inverse_p, c_cast_p, complain);
6431 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
6432 this static_cast is being attempted as one of the possible casts
6433 allowed by a C-style cast. (In that case, accessibility of base
6434 classes is not considered, and it is OK to cast away
6435 constness.) Return the result of the cast. *VALID_P is set to
6436 indicate whether or not the cast was valid. */
6438 static tree
6439 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
6440 bool *valid_p, tsubst_flags_t complain)
6442 tree intype;
6443 tree result;
6444 cp_lvalue_kind clk;
6446 /* Assume the cast is valid. */
6447 *valid_p = true;
6449 intype = unlowered_expr_type (expr);
6451 /* Save casted types in the function's used types hash table. */
6452 used_types_insert (type);
6454 /* [expr.static.cast]
6456 An lvalue of type "cv1 B", where B is a class type, can be cast
6457 to type "reference to cv2 D", where D is a class derived (clause
6458 _class.derived_) from B, if a valid standard conversion from
6459 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
6460 same cv-qualification as, or greater cv-qualification than, cv1,
6461 and B is not a virtual base class of D. */
6462 /* We check this case before checking the validity of "TYPE t =
6463 EXPR;" below because for this case:
6465 struct B {};
6466 struct D : public B { D(const B&); };
6467 extern B& b;
6468 void f() { static_cast<const D&>(b); }
6470 we want to avoid constructing a new D. The standard is not
6471 completely clear about this issue, but our interpretation is
6472 consistent with other compilers. */
6473 if (TREE_CODE (type) == REFERENCE_TYPE
6474 && CLASS_TYPE_P (TREE_TYPE (type))
6475 && CLASS_TYPE_P (intype)
6476 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
6477 && DERIVED_FROM_P (intype, TREE_TYPE (type))
6478 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
6479 build_pointer_type (TYPE_MAIN_VARIANT
6480 (TREE_TYPE (type))),
6481 complain)
6482 && (c_cast_p
6483 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6485 tree base;
6487 /* There is a standard conversion from "D*" to "B*" even if "B"
6488 is ambiguous or inaccessible. If this is really a
6489 static_cast, then we check both for inaccessibility and
6490 ambiguity. However, if this is a static_cast being performed
6491 because the user wrote a C-style cast, then accessibility is
6492 not considered. */
6493 base = lookup_base (TREE_TYPE (type), intype,
6494 c_cast_p ? ba_unique : ba_check,
6495 NULL, complain);
6496 expr = build_address (expr);
6498 if (flag_sanitize & SANITIZE_VPTR)
6500 tree ubsan_check
6501 = cp_ubsan_maybe_instrument_downcast (input_location, type, expr);
6502 if (ubsan_check)
6503 expr = ubsan_check;
6506 /* Convert from "B*" to "D*". This function will check that "B"
6507 is not a virtual base of "D". */
6508 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
6509 complain);
6511 /* Convert the pointer to a reference -- but then remember that
6512 there are no expressions with reference type in C++.
6514 We call rvalue so that there's an actual tree code
6515 (NON_LVALUE_EXPR) for the static_cast; otherwise, if the operand
6516 is a variable with the same type, the conversion would get folded
6517 away, leaving just the variable and causing lvalue_kind to give
6518 the wrong answer. */
6519 return convert_from_reference (rvalue (cp_fold_convert (type, expr)));
6522 /* "A glvalue of type cv1 T1 can be cast to type rvalue reference to
6523 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
6524 if (TREE_CODE (type) == REFERENCE_TYPE
6525 && TYPE_REF_IS_RVALUE (type)
6526 && (clk = real_lvalue_p (expr))
6527 && reference_related_p (TREE_TYPE (type), intype)
6528 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
6530 if (clk == clk_ordinary)
6532 /* Handle the (non-bit-field) lvalue case here by casting to
6533 lvalue reference and then changing it to an rvalue reference.
6534 Casting an xvalue to rvalue reference will be handled by the
6535 main code path. */
6536 tree lref = cp_build_reference_type (TREE_TYPE (type), false);
6537 result = (perform_direct_initialization_if_possible
6538 (lref, expr, c_cast_p, complain));
6539 result = cp_fold_convert (type, result);
6540 /* Make sure we don't fold back down to a named rvalue reference,
6541 because that would be an lvalue. */
6542 if (DECL_P (result))
6543 result = build1 (NON_LVALUE_EXPR, type, result);
6544 return convert_from_reference (result);
6546 else
6547 /* For a bit-field or packed field, bind to a temporary. */
6548 expr = rvalue (expr);
6551 /* Resolve overloaded address here rather than once in
6552 implicit_conversion and again in the inverse code below. */
6553 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
6555 expr = instantiate_type (type, expr, complain);
6556 intype = TREE_TYPE (expr);
6559 /* [expr.static.cast]
6561 Any expression can be explicitly converted to type cv void. */
6562 if (VOID_TYPE_P (type))
6563 return convert_to_void (expr, ICV_CAST, complain);
6565 /* [class.abstract]
6566 An abstract class shall not be used ... as the type of an explicit
6567 conversion. */
6568 if (abstract_virtuals_error_sfinae (ACU_CAST, type, complain))
6569 return error_mark_node;
6571 /* [expr.static.cast]
6573 An expression e can be explicitly converted to a type T using a
6574 static_cast of the form static_cast<T>(e) if the declaration T
6575 t(e);" is well-formed, for some invented temporary variable
6576 t. */
6577 result = perform_direct_initialization_if_possible (type, expr,
6578 c_cast_p, complain);
6579 if (result)
6581 result = convert_from_reference (result);
6583 /* [expr.static.cast]
6585 If T is a reference type, the result is an lvalue; otherwise,
6586 the result is an rvalue. */
6587 if (TREE_CODE (type) != REFERENCE_TYPE)
6588 result = rvalue (result);
6589 return result;
6592 /* [expr.static.cast]
6594 The inverse of any standard conversion sequence (clause _conv_),
6595 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
6596 (_conv.array_), function-to-pointer (_conv.func_), and boolean
6597 (_conv.bool_) conversions, can be performed explicitly using
6598 static_cast subject to the restriction that the explicit
6599 conversion does not cast away constness (_expr.const.cast_), and
6600 the following additional rules for specific cases: */
6601 /* For reference, the conversions not excluded are: integral
6602 promotions, floating point promotion, integral conversions,
6603 floating point conversions, floating-integral conversions,
6604 pointer conversions, and pointer to member conversions. */
6605 /* DR 128
6607 A value of integral _or enumeration_ type can be explicitly
6608 converted to an enumeration type. */
6609 /* The effect of all that is that any conversion between any two
6610 types which are integral, floating, or enumeration types can be
6611 performed. */
6612 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
6613 || SCALAR_FLOAT_TYPE_P (type))
6614 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
6615 || SCALAR_FLOAT_TYPE_P (intype)))
6616 return ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL, complain);
6618 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
6619 && CLASS_TYPE_P (TREE_TYPE (type))
6620 && CLASS_TYPE_P (TREE_TYPE (intype))
6621 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
6622 (TREE_TYPE (intype))),
6623 build_pointer_type (TYPE_MAIN_VARIANT
6624 (TREE_TYPE (type))),
6625 complain))
6627 tree base;
6629 if (!c_cast_p
6630 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
6631 complain))
6632 return error_mark_node;
6633 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
6634 c_cast_p ? ba_unique : ba_check,
6635 NULL, complain);
6636 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
6637 complain);
6639 if (flag_sanitize & SANITIZE_VPTR)
6641 tree ubsan_check
6642 = cp_ubsan_maybe_instrument_downcast (input_location, type, expr);
6643 if (ubsan_check)
6644 expr = ubsan_check;
6647 return cp_fold_convert (type, expr);
6650 if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
6651 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6653 tree c1;
6654 tree c2;
6655 tree t1;
6656 tree t2;
6658 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
6659 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
6661 if (TYPE_PTRDATAMEM_P (type))
6663 t1 = (build_ptrmem_type
6664 (c1,
6665 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
6666 t2 = (build_ptrmem_type
6667 (c2,
6668 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
6670 else
6672 t1 = intype;
6673 t2 = type;
6675 if (can_convert (t1, t2, complain) || can_convert (t2, t1, complain))
6677 if (!c_cast_p
6678 && check_for_casting_away_constness (intype, type,
6679 STATIC_CAST_EXPR,
6680 complain))
6681 return error_mark_node;
6682 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
6683 c_cast_p, complain);
6687 /* [expr.static.cast]
6689 An rvalue of type "pointer to cv void" can be explicitly
6690 converted to a pointer to object type. A value of type pointer
6691 to object converted to "pointer to cv void" and back to the
6692 original pointer type will have its original value. */
6693 if (TYPE_PTR_P (intype)
6694 && VOID_TYPE_P (TREE_TYPE (intype))
6695 && TYPE_PTROB_P (type))
6697 if (!c_cast_p
6698 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
6699 complain))
6700 return error_mark_node;
6701 return build_nop (type, expr);
6704 *valid_p = false;
6705 return error_mark_node;
6708 /* Return an expression representing static_cast<TYPE>(EXPR). */
6710 tree
6711 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
6713 tree result;
6714 bool valid_p;
6716 if (type == error_mark_node || expr == error_mark_node)
6717 return error_mark_node;
6719 if (processing_template_decl)
6721 expr = build_min (STATIC_CAST_EXPR, type, expr);
6722 /* We don't know if it will or will not have side effects. */
6723 TREE_SIDE_EFFECTS (expr) = 1;
6724 return convert_from_reference (expr);
6727 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6728 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6729 if (TREE_CODE (type) != REFERENCE_TYPE
6730 && TREE_CODE (expr) == NOP_EXPR
6731 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6732 expr = TREE_OPERAND (expr, 0);
6734 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
6735 complain);
6736 if (valid_p)
6738 if (result != error_mark_node)
6739 maybe_warn_about_useless_cast (type, expr, complain);
6740 return result;
6743 if (complain & tf_error)
6744 error ("invalid static_cast from type %qT to type %qT",
6745 TREE_TYPE (expr), type);
6746 return error_mark_node;
6749 /* EXPR is an expression with member function or pointer-to-member
6750 function type. TYPE is a pointer type. Converting EXPR to TYPE is
6751 not permitted by ISO C++, but we accept it in some modes. If we
6752 are not in one of those modes, issue a diagnostic. Return the
6753 converted expression. */
6755 tree
6756 convert_member_func_to_ptr (tree type, tree expr, tsubst_flags_t complain)
6758 tree intype;
6759 tree decl;
6761 intype = TREE_TYPE (expr);
6762 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
6763 || TREE_CODE (intype) == METHOD_TYPE);
6765 if (!(complain & tf_warning_or_error))
6766 return error_mark_node;
6768 if (pedantic || warn_pmf2ptr)
6769 pedwarn (input_location, pedantic ? OPT_Wpedantic : OPT_Wpmf_conversions,
6770 "converting from %qT to %qT", intype, type);
6772 if (TREE_CODE (intype) == METHOD_TYPE)
6773 expr = build_addr_func (expr, complain);
6774 else if (TREE_CODE (expr) == PTRMEM_CST)
6775 expr = build_address (PTRMEM_CST_MEMBER (expr));
6776 else
6778 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
6779 decl = build_address (decl);
6780 expr = get_member_function_from_ptrfunc (&decl, expr, complain);
6783 if (expr == error_mark_node)
6784 return error_mark_node;
6786 return build_nop (type, expr);
6789 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
6790 If C_CAST_P is true, this reinterpret cast is being done as part of
6791 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
6792 indicate whether or not reinterpret_cast was valid. */
6794 static tree
6795 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6796 bool *valid_p, tsubst_flags_t complain)
6798 tree intype;
6800 /* Assume the cast is invalid. */
6801 if (valid_p)
6802 *valid_p = true;
6804 if (type == error_mark_node || error_operand_p (expr))
6805 return error_mark_node;
6807 intype = TREE_TYPE (expr);
6809 /* Save casted types in the function's used types hash table. */
6810 used_types_insert (type);
6812 /* [expr.reinterpret.cast]
6813 An lvalue expression of type T1 can be cast to the type
6814 "reference to T2" if an expression of type "pointer to T1" can be
6815 explicitly converted to the type "pointer to T2" using a
6816 reinterpret_cast. */
6817 if (TREE_CODE (type) == REFERENCE_TYPE)
6819 if (! real_lvalue_p (expr))
6821 if (complain & tf_error)
6822 error ("invalid cast of an rvalue expression of type "
6823 "%qT to type %qT",
6824 intype, type);
6825 return error_mark_node;
6828 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6829 "B" are related class types; the reinterpret_cast does not
6830 adjust the pointer. */
6831 if (TYPE_PTR_P (intype)
6832 && (complain & tf_warning)
6833 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6834 COMPARE_BASE | COMPARE_DERIVED)))
6835 warning (0, "casting %qT to %qT does not dereference pointer",
6836 intype, type);
6838 expr = cp_build_addr_expr (expr, complain);
6840 if (warn_strict_aliasing > 2)
6841 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
6843 if (expr != error_mark_node)
6844 expr = build_reinterpret_cast_1
6845 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
6846 valid_p, complain);
6847 if (expr != error_mark_node)
6848 /* cp_build_indirect_ref isn't right for rvalue refs. */
6849 expr = convert_from_reference (fold_convert (type, expr));
6850 return expr;
6853 /* As a G++ extension, we consider conversions from member
6854 functions, and pointers to member functions to
6855 pointer-to-function and pointer-to-void types. If
6856 -Wno-pmf-conversions has not been specified,
6857 convert_member_func_to_ptr will issue an error message. */
6858 if ((TYPE_PTRMEMFUNC_P (intype)
6859 || TREE_CODE (intype) == METHOD_TYPE)
6860 && TYPE_PTR_P (type)
6861 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6862 || VOID_TYPE_P (TREE_TYPE (type))))
6863 return convert_member_func_to_ptr (type, expr, complain);
6865 /* If the cast is not to a reference type, the lvalue-to-rvalue,
6866 array-to-pointer, and function-to-pointer conversions are
6867 performed. */
6868 expr = decay_conversion (expr, complain);
6870 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6871 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6872 if (TREE_CODE (expr) == NOP_EXPR
6873 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6874 expr = TREE_OPERAND (expr, 0);
6876 if (error_operand_p (expr))
6877 return error_mark_node;
6879 intype = TREE_TYPE (expr);
6881 /* [expr.reinterpret.cast]
6882 A pointer can be converted to any integral type large enough to
6883 hold it. ... A value of type std::nullptr_t can be converted to
6884 an integral type; the conversion has the same meaning and
6885 validity as a conversion of (void*)0 to the integral type. */
6886 if (CP_INTEGRAL_TYPE_P (type)
6887 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
6889 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
6891 if (complain & tf_error)
6892 permerror (input_location, "cast from %qT to %qT loses precision",
6893 intype, type);
6894 else
6895 return error_mark_node;
6897 if (NULLPTR_TYPE_P (intype))
6898 return build_int_cst (type, 0);
6900 /* [expr.reinterpret.cast]
6901 A value of integral or enumeration type can be explicitly
6902 converted to a pointer. */
6903 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
6904 /* OK */
6906 else if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
6907 || TYPE_PTR_OR_PTRMEM_P (type))
6908 && same_type_p (type, intype))
6909 /* DR 799 */
6910 return rvalue (expr);
6911 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
6912 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6913 return fold_if_not_in_template (build_nop (type, expr));
6914 else if ((TYPE_PTRDATAMEM_P (type) && TYPE_PTRDATAMEM_P (intype))
6915 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
6917 tree sexpr = expr;
6919 if (!c_cast_p
6920 && check_for_casting_away_constness (intype, type,
6921 REINTERPRET_CAST_EXPR,
6922 complain))
6923 return error_mark_node;
6924 /* Warn about possible alignment problems. */
6925 if (STRICT_ALIGNMENT && warn_cast_align
6926 && (complain & tf_warning)
6927 && !VOID_TYPE_P (type)
6928 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
6929 && COMPLETE_TYPE_P (TREE_TYPE (type))
6930 && COMPLETE_TYPE_P (TREE_TYPE (intype))
6931 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
6932 warning (OPT_Wcast_align, "cast from %qT to %qT "
6933 "increases required alignment of target type", intype, type);
6935 /* We need to strip nops here, because the front end likes to
6936 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
6937 STRIP_NOPS (sexpr);
6938 if (warn_strict_aliasing <= 2)
6939 strict_aliasing_warning (intype, type, sexpr);
6941 return fold_if_not_in_template (build_nop (type, expr));
6943 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
6944 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
6946 if (complain & tf_warning)
6947 /* C++11 5.2.10 p8 says that "Converting a function pointer to an
6948 object pointer type or vice versa is conditionally-supported." */
6949 warning (OPT_Wconditionally_supported,
6950 "casting between pointer-to-function and pointer-to-object "
6951 "is conditionally-supported");
6952 return fold_if_not_in_template (build_nop (type, expr));
6954 else if (TREE_CODE (type) == VECTOR_TYPE)
6955 return fold_if_not_in_template (convert_to_vector (type, expr));
6956 else if (TREE_CODE (intype) == VECTOR_TYPE
6957 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6958 return fold_if_not_in_template (convert_to_integer (type, expr));
6959 else
6961 if (valid_p)
6962 *valid_p = false;
6963 if (complain & tf_error)
6964 error ("invalid cast from type %qT to type %qT", intype, type);
6965 return error_mark_node;
6968 return cp_convert (type, expr, complain);
6971 tree
6972 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
6974 tree r;
6976 if (type == error_mark_node || expr == error_mark_node)
6977 return error_mark_node;
6979 if (processing_template_decl)
6981 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
6983 if (!TREE_SIDE_EFFECTS (t)
6984 && type_dependent_expression_p (expr))
6985 /* There might turn out to be side effects inside expr. */
6986 TREE_SIDE_EFFECTS (t) = 1;
6987 return convert_from_reference (t);
6990 r = build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
6991 /*valid_p=*/NULL, complain);
6992 if (r != error_mark_node)
6993 maybe_warn_about_useless_cast (type, expr, complain);
6994 return r;
6997 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
6998 return an appropriate expression. Otherwise, return
6999 error_mark_node. If the cast is not valid, and COMPLAIN is true,
7000 then a diagnostic will be issued. If VALID_P is non-NULL, we are
7001 performing a C-style cast, its value upon return will indicate
7002 whether or not the conversion succeeded. */
7004 static tree
7005 build_const_cast_1 (tree dst_type, tree expr, tsubst_flags_t complain,
7006 bool *valid_p)
7008 tree src_type;
7009 tree reference_type;
7011 /* Callers are responsible for handling error_mark_node as a
7012 destination type. */
7013 gcc_assert (dst_type != error_mark_node);
7014 /* In a template, callers should be building syntactic
7015 representations of casts, not using this machinery. */
7016 gcc_assert (!processing_template_decl);
7018 /* Assume the conversion is invalid. */
7019 if (valid_p)
7020 *valid_p = false;
7022 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRDATAMEM_P (dst_type))
7024 if (complain & tf_error)
7025 error ("invalid use of const_cast with type %qT, "
7026 "which is not a pointer, "
7027 "reference, nor a pointer-to-data-member type", dst_type);
7028 return error_mark_node;
7031 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
7033 if (complain & tf_error)
7034 error ("invalid use of const_cast with type %qT, which is a pointer "
7035 "or reference to a function type", dst_type);
7036 return error_mark_node;
7039 /* Save casted types in the function's used types hash table. */
7040 used_types_insert (dst_type);
7042 src_type = TREE_TYPE (expr);
7043 /* Expressions do not really have reference types. */
7044 if (TREE_CODE (src_type) == REFERENCE_TYPE)
7045 src_type = TREE_TYPE (src_type);
7047 /* [expr.const.cast]
7049 For two object types T1 and T2, if a pointer to T1 can be explicitly
7050 converted to the type "pointer to T2" using a const_cast, then the
7051 following conversions can also be made:
7053 -- an lvalue of type T1 can be explicitly converted to an lvalue of
7054 type T2 using the cast const_cast<T2&>;
7056 -- a glvalue of type T1 can be explicitly converted to an xvalue of
7057 type T2 using the cast const_cast<T2&&>; and
7059 -- if T1 is a class type, a prvalue of type T1 can be explicitly
7060 converted to an xvalue of type T2 using the cast const_cast<T2&&>. */
7062 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
7064 reference_type = dst_type;
7065 if (!TYPE_REF_IS_RVALUE (dst_type)
7066 ? real_lvalue_p (expr)
7067 : (CLASS_TYPE_P (TREE_TYPE (dst_type))
7068 ? lvalue_p (expr)
7069 : lvalue_or_rvalue_with_address_p (expr)))
7070 /* OK. */;
7071 else
7073 if (complain & tf_error)
7074 error ("invalid const_cast of an rvalue of type %qT to type %qT",
7075 src_type, dst_type);
7076 return error_mark_node;
7078 dst_type = build_pointer_type (TREE_TYPE (dst_type));
7079 src_type = build_pointer_type (src_type);
7081 else
7083 reference_type = NULL_TREE;
7084 /* If the destination type is not a reference type, the
7085 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
7086 conversions are performed. */
7087 src_type = type_decays_to (src_type);
7088 if (src_type == error_mark_node)
7089 return error_mark_node;
7092 if (TYPE_PTR_P (src_type) || TYPE_PTRDATAMEM_P (src_type))
7094 if (comp_ptr_ttypes_const (dst_type, src_type))
7096 if (valid_p)
7098 *valid_p = true;
7099 /* This cast is actually a C-style cast. Issue a warning if
7100 the user is making a potentially unsafe cast. */
7101 check_for_casting_away_constness (src_type, dst_type,
7102 CAST_EXPR, complain);
7104 if (reference_type)
7106 expr = cp_build_addr_expr (expr, complain);
7107 if (expr == error_mark_node)
7108 return error_mark_node;
7109 expr = build_nop (reference_type, expr);
7110 return convert_from_reference (expr);
7112 else
7114 expr = decay_conversion (expr, complain);
7115 if (expr == error_mark_node)
7116 return error_mark_node;
7118 /* build_c_cast puts on a NOP_EXPR to make the result not an
7119 lvalue. Strip such NOP_EXPRs if VALUE is being used in
7120 non-lvalue context. */
7121 if (TREE_CODE (expr) == NOP_EXPR
7122 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
7123 expr = TREE_OPERAND (expr, 0);
7124 return build_nop (dst_type, expr);
7127 else if (valid_p
7128 && !at_least_as_qualified_p (TREE_TYPE (dst_type),
7129 TREE_TYPE (src_type)))
7130 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR,
7131 complain);
7134 if (complain & tf_error)
7135 error ("invalid const_cast from type %qT to type %qT",
7136 src_type, dst_type);
7137 return error_mark_node;
7140 tree
7141 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
7143 tree r;
7145 if (type == error_mark_node || error_operand_p (expr))
7146 return error_mark_node;
7148 if (processing_template_decl)
7150 tree t = build_min (CONST_CAST_EXPR, type, expr);
7152 if (!TREE_SIDE_EFFECTS (t)
7153 && type_dependent_expression_p (expr))
7154 /* There might turn out to be side effects inside expr. */
7155 TREE_SIDE_EFFECTS (t) = 1;
7156 return convert_from_reference (t);
7159 r = build_const_cast_1 (type, expr, complain, /*valid_p=*/NULL);
7160 if (r != error_mark_node)
7161 maybe_warn_about_useless_cast (type, expr, complain);
7162 return r;
7165 /* Like cp_build_c_cast, but for the c-common bits. */
7167 tree
7168 build_c_cast (location_t /*loc*/, tree type, tree expr)
7170 return cp_build_c_cast (type, expr, tf_warning_or_error);
7173 /* Build an expression representing an explicit C-style cast to type
7174 TYPE of expression EXPR. */
7176 tree
7177 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
7179 tree value = expr;
7180 tree result;
7181 bool valid_p;
7183 if (type == error_mark_node || error_operand_p (expr))
7184 return error_mark_node;
7186 if (processing_template_decl)
7188 tree t = build_min (CAST_EXPR, type,
7189 tree_cons (NULL_TREE, value, NULL_TREE));
7190 /* We don't know if it will or will not have side effects. */
7191 TREE_SIDE_EFFECTS (t) = 1;
7192 return convert_from_reference (t);
7195 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
7196 'Class') should always be retained, because this information aids
7197 in method lookup. */
7198 if (objc_is_object_ptr (type)
7199 && objc_is_object_ptr (TREE_TYPE (expr)))
7200 return build_nop (type, expr);
7202 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7203 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
7204 if (TREE_CODE (type) != REFERENCE_TYPE
7205 && TREE_CODE (value) == NOP_EXPR
7206 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
7207 value = TREE_OPERAND (value, 0);
7209 if (TREE_CODE (type) == ARRAY_TYPE)
7211 /* Allow casting from T1* to T2[] because Cfront allows it.
7212 NIHCL uses it. It is not valid ISO C++ however. */
7213 if (TYPE_PTR_P (TREE_TYPE (expr)))
7215 if (complain & tf_error)
7216 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
7217 else
7218 return error_mark_node;
7219 type = build_pointer_type (TREE_TYPE (type));
7221 else
7223 if (complain & tf_error)
7224 error ("ISO C++ forbids casting to an array type %qT", type);
7225 return error_mark_node;
7229 if (TREE_CODE (type) == FUNCTION_TYPE
7230 || TREE_CODE (type) == METHOD_TYPE)
7232 if (complain & tf_error)
7233 error ("invalid cast to function type %qT", type);
7234 return error_mark_node;
7237 if (TYPE_PTR_P (type)
7238 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
7239 /* Casting to an integer of smaller size is an error detected elsewhere. */
7240 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
7241 /* Don't warn about converting any constant. */
7242 && !TREE_CONSTANT (value))
7243 warning_at (input_location, OPT_Wint_to_pointer_cast,
7244 "cast to pointer from integer of different size");
7246 /* A C-style cast can be a const_cast. */
7247 result = build_const_cast_1 (type, value, complain & tf_warning,
7248 &valid_p);
7249 if (valid_p)
7251 if (result != error_mark_node)
7252 maybe_warn_about_useless_cast (type, value, complain);
7253 return result;
7256 /* Or a static cast. */
7257 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
7258 &valid_p, complain);
7259 /* Or a reinterpret_cast. */
7260 if (!valid_p)
7261 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
7262 &valid_p, complain);
7263 /* The static_cast or reinterpret_cast may be followed by a
7264 const_cast. */
7265 if (valid_p
7266 /* A valid cast may result in errors if, for example, a
7267 conversion to an ambiguous base class is required. */
7268 && !error_operand_p (result))
7270 tree result_type;
7272 maybe_warn_about_useless_cast (type, value, complain);
7274 /* Non-class rvalues always have cv-unqualified type. */
7275 if (!CLASS_TYPE_P (type))
7276 type = TYPE_MAIN_VARIANT (type);
7277 result_type = TREE_TYPE (result);
7278 if (!CLASS_TYPE_P (result_type) && TREE_CODE (type) != REFERENCE_TYPE)
7279 result_type = TYPE_MAIN_VARIANT (result_type);
7280 /* If the type of RESULT does not match TYPE, perform a
7281 const_cast to make it match. If the static_cast or
7282 reinterpret_cast succeeded, we will differ by at most
7283 cv-qualification, so the follow-on const_cast is guaranteed
7284 to succeed. */
7285 if (!same_type_p (non_reference (type), non_reference (result_type)))
7287 result = build_const_cast_1 (type, result, false, &valid_p);
7288 gcc_assert (valid_p);
7290 return result;
7293 return error_mark_node;
7296 /* For use from the C common bits. */
7297 tree
7298 build_modify_expr (location_t /*location*/,
7299 tree lhs, tree /*lhs_origtype*/,
7300 enum tree_code modifycode,
7301 location_t /*rhs_location*/, tree rhs,
7302 tree /*rhs_origtype*/)
7304 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
7307 /* Build an assignment expression of lvalue LHS from value RHS.
7308 MODIFYCODE is the code for a binary operator that we use
7309 to combine the old value of LHS with RHS to get the new value.
7310 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
7312 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
7314 tree
7315 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
7316 tsubst_flags_t complain)
7318 tree result;
7319 tree newrhs = rhs;
7320 tree lhstype = TREE_TYPE (lhs);
7321 tree olhstype = lhstype;
7322 bool plain_assign = (modifycode == NOP_EXPR);
7324 /* Avoid duplicate error messages from operands that had errors. */
7325 if (error_operand_p (lhs) || error_operand_p (rhs))
7326 return error_mark_node;
7328 /* Handle control structure constructs used as "lvalues". */
7329 switch (TREE_CODE (lhs))
7331 /* Handle --foo = 5; as these are valid constructs in C++. */
7332 case PREDECREMENT_EXPR:
7333 case PREINCREMENT_EXPR:
7334 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
7335 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
7336 stabilize_reference (TREE_OPERAND (lhs, 0)),
7337 TREE_OPERAND (lhs, 1));
7338 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
7339 modifycode, rhs, complain);
7340 if (newrhs == error_mark_node)
7341 return error_mark_node;
7342 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
7344 /* Handle (a, b) used as an "lvalue". */
7345 case COMPOUND_EXPR:
7346 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
7347 modifycode, rhs, complain);
7348 if (newrhs == error_mark_node)
7349 return error_mark_node;
7350 return build2 (COMPOUND_EXPR, lhstype,
7351 TREE_OPERAND (lhs, 0), newrhs);
7353 case MODIFY_EXPR:
7354 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
7355 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
7356 stabilize_reference (TREE_OPERAND (lhs, 0)),
7357 TREE_OPERAND (lhs, 1));
7358 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
7359 complain);
7360 if (newrhs == error_mark_node)
7361 return error_mark_node;
7362 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
7364 case MIN_EXPR:
7365 case MAX_EXPR:
7366 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
7367 when neither operand has side-effects. */
7368 if (!lvalue_or_else (lhs, lv_assign, complain))
7369 return error_mark_node;
7371 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
7372 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
7374 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
7375 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
7376 boolean_type_node,
7377 TREE_OPERAND (lhs, 0),
7378 TREE_OPERAND (lhs, 1)),
7379 TREE_OPERAND (lhs, 0),
7380 TREE_OPERAND (lhs, 1));
7381 /* Fall through. */
7383 /* Handle (a ? b : c) used as an "lvalue". */
7384 case COND_EXPR:
7386 /* Produce (a ? (b = rhs) : (c = rhs))
7387 except that the RHS goes through a save-expr
7388 so the code to compute it is only emitted once. */
7389 tree cond;
7390 tree preeval = NULL_TREE;
7392 if (VOID_TYPE_P (TREE_TYPE (rhs)))
7394 if (complain & tf_error)
7395 error ("void value not ignored as it ought to be");
7396 return error_mark_node;
7399 rhs = stabilize_expr (rhs, &preeval);
7401 /* Check this here to avoid odd errors when trying to convert
7402 a throw to the type of the COND_EXPR. */
7403 if (!lvalue_or_else (lhs, lv_assign, complain))
7404 return error_mark_node;
7406 cond = build_conditional_expr
7407 (input_location, TREE_OPERAND (lhs, 0),
7408 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
7409 modifycode, rhs, complain),
7410 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
7411 modifycode, rhs, complain),
7412 complain);
7414 if (cond == error_mark_node)
7415 return cond;
7416 /* Make sure the code to compute the rhs comes out
7417 before the split. */
7418 if (preeval)
7419 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
7420 return cond;
7423 default:
7424 break;
7427 if (modifycode == INIT_EXPR)
7429 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
7430 /* Do the default thing. */;
7431 else if (TREE_CODE (rhs) == CONSTRUCTOR)
7433 /* Compound literal. */
7434 if (! same_type_p (TREE_TYPE (rhs), lhstype))
7435 /* Call convert to generate an error; see PR 11063. */
7436 rhs = convert (lhstype, rhs);
7437 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
7438 TREE_SIDE_EFFECTS (result) = 1;
7439 return result;
7441 else if (! MAYBE_CLASS_TYPE_P (lhstype))
7442 /* Do the default thing. */;
7443 else
7445 vec<tree, va_gc> *rhs_vec = make_tree_vector_single (rhs);
7446 result = build_special_member_call (lhs, complete_ctor_identifier,
7447 &rhs_vec, lhstype, LOOKUP_NORMAL,
7448 complain);
7449 release_tree_vector (rhs_vec);
7450 if (result == NULL_TREE)
7451 return error_mark_node;
7452 return result;
7455 else
7457 lhs = require_complete_type_sfinae (lhs, complain);
7458 if (lhs == error_mark_node)
7459 return error_mark_node;
7461 if (modifycode == NOP_EXPR)
7463 if (c_dialect_objc ())
7465 result = objc_maybe_build_modify_expr (lhs, rhs);
7466 if (result)
7467 return result;
7470 /* `operator=' is not an inheritable operator. */
7471 if (! MAYBE_CLASS_TYPE_P (lhstype))
7472 /* Do the default thing. */;
7473 else
7475 result = build_new_op (input_location, MODIFY_EXPR,
7476 LOOKUP_NORMAL, lhs, rhs,
7477 make_node (NOP_EXPR), /*overload=*/NULL,
7478 complain);
7479 if (result == NULL_TREE)
7480 return error_mark_node;
7481 return result;
7483 lhstype = olhstype;
7485 else
7487 tree init = NULL_TREE;
7489 /* A binary op has been requested. Combine the old LHS
7490 value with the RHS producing the value we should actually
7491 store into the LHS. */
7492 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
7493 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
7494 || MAYBE_CLASS_TYPE_P (lhstype)));
7496 /* Preevaluate the RHS to make sure its evaluation is complete
7497 before the lvalue-to-rvalue conversion of the LHS:
7499 [expr.ass] With respect to an indeterminately-sequenced
7500 function call, the operation of a compound assignment is a
7501 single evaluation. [ Note: Therefore, a function call shall
7502 not intervene between the lvalue-to-rvalue conversion and the
7503 side effect associated with any single compound assignment
7504 operator. -- end note ] */
7505 lhs = stabilize_reference (lhs);
7506 rhs = rvalue (rhs);
7507 rhs = stabilize_expr (rhs, &init);
7508 newrhs = cp_build_binary_op (input_location,
7509 modifycode, lhs, rhs,
7510 complain);
7511 if (newrhs == error_mark_node)
7513 if (complain & tf_error)
7514 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
7515 TREE_TYPE (lhs), TREE_TYPE (rhs));
7516 return error_mark_node;
7519 if (init)
7520 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), init, newrhs);
7522 /* Now it looks like a plain assignment. */
7523 modifycode = NOP_EXPR;
7524 if (c_dialect_objc ())
7526 result = objc_maybe_build_modify_expr (lhs, newrhs);
7527 if (result)
7528 return result;
7531 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
7532 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
7535 /* The left-hand side must be an lvalue. */
7536 if (!lvalue_or_else (lhs, lv_assign, complain))
7537 return error_mark_node;
7539 /* Warn about modifying something that is `const'. Don't warn if
7540 this is initialization. */
7541 if (modifycode != INIT_EXPR
7542 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
7543 /* Functions are not modifiable, even though they are
7544 lvalues. */
7545 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
7546 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
7547 /* If it's an aggregate and any field is const, then it is
7548 effectively const. */
7549 || (CLASS_TYPE_P (lhstype)
7550 && C_TYPE_FIELDS_READONLY (lhstype))))
7552 if (complain & tf_error)
7553 cxx_readonly_error (lhs, lv_assign);
7554 else
7555 return error_mark_node;
7558 /* If storing into a structure or union member, it may have been given a
7559 lowered bitfield type. We need to convert to the declared type first,
7560 so retrieve it now. */
7562 olhstype = unlowered_expr_type (lhs);
7564 /* Convert new value to destination type. */
7566 if (TREE_CODE (lhstype) == ARRAY_TYPE)
7568 int from_array;
7570 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
7572 if (modifycode != INIT_EXPR)
7574 if (complain & tf_error)
7575 error ("assigning to an array from an initializer list");
7576 return error_mark_node;
7578 if (check_array_initializer (lhs, lhstype, newrhs))
7579 return error_mark_node;
7580 newrhs = digest_init (lhstype, newrhs, complain);
7581 if (newrhs == error_mark_node)
7582 return error_mark_node;
7585 /* C++11 8.5/17: "If the destination type is an array of characters,
7586 an array of char16_t, an array of char32_t, or an array of wchar_t,
7587 and the initializer is a string literal...". */
7588 else if (TREE_CODE (newrhs) == STRING_CST
7589 && char_type_p (TREE_TYPE (TYPE_MAIN_VARIANT (lhstype)))
7590 && modifycode == INIT_EXPR)
7592 newrhs = digest_init (lhstype, newrhs, complain);
7593 if (newrhs == error_mark_node)
7594 return error_mark_node;
7597 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
7598 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
7600 if (complain & tf_error)
7601 error ("incompatible types in assignment of %qT to %qT",
7602 TREE_TYPE (rhs), lhstype);
7603 return error_mark_node;
7606 /* Allow array assignment in compiler-generated code. */
7607 else if (!current_function_decl
7608 || !DECL_DEFAULTED_FN (current_function_decl))
7610 /* This routine is used for both initialization and assignment.
7611 Make sure the diagnostic message differentiates the context. */
7612 if (complain & tf_error)
7614 if (modifycode == INIT_EXPR)
7615 error ("array used as initializer");
7616 else
7617 error ("invalid array assignment");
7619 return error_mark_node;
7622 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
7623 ? 1 + (modifycode != INIT_EXPR): 0;
7624 return build_vec_init (lhs, NULL_TREE, newrhs,
7625 /*explicit_value_init_p=*/false,
7626 from_array, complain);
7629 if (modifycode == INIT_EXPR)
7630 /* Calls with INIT_EXPR are all direct-initialization, so don't set
7631 LOOKUP_ONLYCONVERTING. */
7632 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
7633 ICR_INIT, NULL_TREE, 0,
7634 complain);
7635 else
7636 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
7637 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
7639 if (!same_type_p (lhstype, olhstype))
7640 newrhs = cp_convert_and_check (lhstype, newrhs, complain);
7642 if (modifycode != INIT_EXPR)
7644 if (TREE_CODE (newrhs) == CALL_EXPR
7645 && TYPE_NEEDS_CONSTRUCTING (lhstype))
7646 newrhs = build_cplus_new (lhstype, newrhs, complain);
7648 /* Can't initialize directly from a TARGET_EXPR, since that would
7649 cause the lhs to be constructed twice, and possibly result in
7650 accidental self-initialization. So we force the TARGET_EXPR to be
7651 expanded without a target. */
7652 if (TREE_CODE (newrhs) == TARGET_EXPR)
7653 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
7654 TREE_OPERAND (newrhs, 0));
7657 if (newrhs == error_mark_node)
7658 return error_mark_node;
7660 if (c_dialect_objc () && flag_objc_gc)
7662 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
7664 if (result)
7665 return result;
7668 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
7669 lhstype, lhs, newrhs);
7671 TREE_SIDE_EFFECTS (result) = 1;
7672 if (!plain_assign)
7673 TREE_NO_WARNING (result) = 1;
7675 return result;
7678 tree
7679 build_x_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
7680 tree rhs, tsubst_flags_t complain)
7682 if (processing_template_decl)
7683 return build_min_nt_loc (loc, MODOP_EXPR, lhs,
7684 build_min_nt_loc (loc, modifycode, NULL_TREE,
7685 NULL_TREE), rhs);
7687 if (modifycode != NOP_EXPR)
7689 tree rval = build_new_op (loc, MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
7690 make_node (modifycode), /*overload=*/NULL,
7691 complain);
7692 if (rval)
7694 TREE_NO_WARNING (rval) = 1;
7695 return rval;
7698 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
7701 /* Helper function for get_delta_difference which assumes FROM is a base
7702 class of TO. Returns a delta for the conversion of pointer-to-member
7703 of FROM to pointer-to-member of TO. If the conversion is invalid and
7704 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
7705 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
7706 If C_CAST_P is true, this conversion is taking place as part of a
7707 C-style cast. */
7709 static tree
7710 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
7711 tsubst_flags_t complain)
7713 tree binfo;
7714 base_kind kind;
7716 binfo = lookup_base (to, from, c_cast_p ? ba_unique : ba_check,
7717 &kind, complain);
7719 if (binfo == error_mark_node)
7721 if (!(complain & tf_error))
7722 return error_mark_node;
7724 error (" in pointer to member function conversion");
7725 return size_zero_node;
7727 else if (binfo)
7729 if (kind != bk_via_virtual)
7730 return BINFO_OFFSET (binfo);
7731 else
7732 /* FROM is a virtual base class of TO. Issue an error or warning
7733 depending on whether or not this is a reinterpret cast. */
7735 if (!(complain & tf_error))
7736 return error_mark_node;
7738 error ("pointer to member conversion via virtual base %qT",
7739 BINFO_TYPE (binfo_from_vbase (binfo)));
7741 return size_zero_node;
7744 else
7745 return NULL_TREE;
7748 /* Get difference in deltas for different pointer to member function
7749 types. If the conversion is invalid and tf_error is not set in
7750 COMPLAIN, returns error_mark_node, otherwise returns an integer
7751 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
7752 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
7753 conversions as well. If C_CAST_P is true this conversion is taking
7754 place as part of a C-style cast.
7756 Note that the naming of FROM and TO is kind of backwards; the return
7757 value is what we add to a TO in order to get a FROM. They are named
7758 this way because we call this function to find out how to convert from
7759 a pointer to member of FROM to a pointer to member of TO. */
7761 static tree
7762 get_delta_difference (tree from, tree to,
7763 bool allow_inverse_p,
7764 bool c_cast_p, tsubst_flags_t complain)
7766 tree result;
7768 if (same_type_ignoring_top_level_qualifiers_p (from, to))
7769 /* Pointer to member of incomplete class is permitted*/
7770 result = size_zero_node;
7771 else
7772 result = get_delta_difference_1 (from, to, c_cast_p, complain);
7774 if (result == error_mark_node)
7775 return error_mark_node;
7777 if (!result)
7779 if (!allow_inverse_p)
7781 if (!(complain & tf_error))
7782 return error_mark_node;
7784 error_not_base_type (from, to);
7785 error (" in pointer to member conversion");
7786 result = size_zero_node;
7788 else
7790 result = get_delta_difference_1 (to, from, c_cast_p, complain);
7792 if (result == error_mark_node)
7793 return error_mark_node;
7795 if (result)
7796 result = size_diffop_loc (input_location,
7797 size_zero_node, result);
7798 else
7800 if (!(complain & tf_error))
7801 return error_mark_node;
7803 error_not_base_type (from, to);
7804 error (" in pointer to member conversion");
7805 result = size_zero_node;
7810 return fold_if_not_in_template (convert_to_integer (ptrdiff_type_node,
7811 result));
7814 /* Return a constructor for the pointer-to-member-function TYPE using
7815 the other components as specified. */
7817 tree
7818 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
7820 tree u = NULL_TREE;
7821 tree delta_field;
7822 tree pfn_field;
7823 vec<constructor_elt, va_gc> *v;
7825 /* Pull the FIELD_DECLs out of the type. */
7826 pfn_field = TYPE_FIELDS (type);
7827 delta_field = DECL_CHAIN (pfn_field);
7829 /* Make sure DELTA has the type we want. */
7830 delta = convert_and_check (input_location, delta_type_node, delta);
7832 /* Convert to the correct target type if necessary. */
7833 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
7835 /* Finish creating the initializer. */
7836 vec_alloc (v, 2);
7837 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
7838 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
7839 u = build_constructor (type, v);
7840 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
7841 TREE_STATIC (u) = (TREE_CONSTANT (u)
7842 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
7843 != NULL_TREE)
7844 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
7845 != NULL_TREE));
7846 return u;
7849 /* Build a constructor for a pointer to member function. It can be
7850 used to initialize global variables, local variable, or used
7851 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
7852 want to be.
7854 If FORCE is nonzero, then force this conversion, even if
7855 we would rather not do it. Usually set when using an explicit
7856 cast. A C-style cast is being processed iff C_CAST_P is true.
7858 Return error_mark_node, if something goes wrong. */
7860 tree
7861 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
7862 tsubst_flags_t complain)
7864 tree fn;
7865 tree pfn_type;
7866 tree to_type;
7868 if (error_operand_p (pfn))
7869 return error_mark_node;
7871 pfn_type = TREE_TYPE (pfn);
7872 to_type = build_ptrmemfunc_type (type);
7874 /* Handle multiple conversions of pointer to member functions. */
7875 if (TYPE_PTRMEMFUNC_P (pfn_type))
7877 tree delta = NULL_TREE;
7878 tree npfn = NULL_TREE;
7879 tree n;
7881 if (!force
7882 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn,
7883 LOOKUP_NORMAL, complain))
7885 if (complain & tf_error)
7886 error ("invalid conversion to type %qT from type %qT",
7887 to_type, pfn_type);
7888 else
7889 return error_mark_node;
7892 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
7893 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7894 force,
7895 c_cast_p, complain);
7896 if (n == error_mark_node)
7897 return error_mark_node;
7899 /* We don't have to do any conversion to convert a
7900 pointer-to-member to its own type. But, we don't want to
7901 just return a PTRMEM_CST if there's an explicit cast; that
7902 cast should make the expression an invalid template argument. */
7903 if (TREE_CODE (pfn) != PTRMEM_CST)
7905 if (same_type_p (to_type, pfn_type))
7906 return pfn;
7907 else if (integer_zerop (n))
7908 return build_reinterpret_cast (to_type, pfn,
7909 complain);
7912 if (TREE_SIDE_EFFECTS (pfn))
7913 pfn = save_expr (pfn);
7915 /* Obtain the function pointer and the current DELTA. */
7916 if (TREE_CODE (pfn) == PTRMEM_CST)
7917 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
7918 else
7920 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
7921 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
7924 /* Just adjust the DELTA field. */
7925 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7926 (TREE_TYPE (delta), ptrdiff_type_node));
7927 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
7928 n = cp_build_binary_op (input_location,
7929 LSHIFT_EXPR, n, integer_one_node,
7930 complain);
7931 delta = cp_build_binary_op (input_location,
7932 PLUS_EXPR, delta, n, complain);
7933 return build_ptrmemfunc1 (to_type, delta, npfn);
7936 /* Handle null pointer to member function conversions. */
7937 if (null_ptr_cst_p (pfn))
7939 pfn = cp_build_c_cast (type, pfn, complain);
7940 return build_ptrmemfunc1 (to_type,
7941 integer_zero_node,
7942 pfn);
7945 if (type_unknown_p (pfn))
7946 return instantiate_type (type, pfn, complain);
7948 fn = TREE_OPERAND (pfn, 0);
7949 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7950 /* In a template, we will have preserved the
7951 OFFSET_REF. */
7952 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
7953 return make_ptrmem_cst (to_type, fn);
7956 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
7957 given by CST.
7959 ??? There is no consistency as to the types returned for the above
7960 values. Some code acts as if it were a sizetype and some as if it were
7961 integer_type_node. */
7963 void
7964 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
7966 tree type = TREE_TYPE (cst);
7967 tree fn = PTRMEM_CST_MEMBER (cst);
7968 tree ptr_class, fn_class;
7970 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7972 /* The class that the function belongs to. */
7973 fn_class = DECL_CONTEXT (fn);
7975 /* The class that we're creating a pointer to member of. */
7976 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
7978 /* First, calculate the adjustment to the function's class. */
7979 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
7980 /*c_cast_p=*/0, tf_warning_or_error);
7982 if (!DECL_VIRTUAL_P (fn))
7983 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type),
7984 build_addr_func (fn, tf_warning_or_error));
7985 else
7987 /* If we're dealing with a virtual function, we have to adjust 'this'
7988 again, to point to the base which provides the vtable entry for
7989 fn; the call will do the opposite adjustment. */
7990 tree orig_class = DECL_CONTEXT (fn);
7991 tree binfo = binfo_or_else (orig_class, fn_class);
7992 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7993 *delta, BINFO_OFFSET (binfo));
7994 *delta = fold_if_not_in_template (*delta);
7996 /* We set PFN to the vtable offset at which the function can be
7997 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
7998 case delta is shifted left, and then incremented). */
7999 *pfn = DECL_VINDEX (fn);
8000 *pfn = build2 (MULT_EXPR, integer_type_node, *pfn,
8001 TYPE_SIZE_UNIT (vtable_entry_type));
8002 *pfn = fold_if_not_in_template (*pfn);
8004 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
8006 case ptrmemfunc_vbit_in_pfn:
8007 *pfn = build2 (PLUS_EXPR, integer_type_node, *pfn,
8008 integer_one_node);
8009 *pfn = fold_if_not_in_template (*pfn);
8010 break;
8012 case ptrmemfunc_vbit_in_delta:
8013 *delta = build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
8014 *delta, integer_one_node);
8015 *delta = fold_if_not_in_template (*delta);
8016 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
8017 *delta, integer_one_node);
8018 *delta = fold_if_not_in_template (*delta);
8019 break;
8021 default:
8022 gcc_unreachable ();
8025 *pfn = build_nop (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
8026 *pfn = fold_if_not_in_template (*pfn);
8030 /* Return an expression for PFN from the pointer-to-member function
8031 given by T. */
8033 static tree
8034 pfn_from_ptrmemfunc (tree t)
8036 if (TREE_CODE (t) == PTRMEM_CST)
8038 tree delta;
8039 tree pfn;
8041 expand_ptrmemfunc_cst (t, &delta, &pfn);
8042 if (pfn)
8043 return pfn;
8046 return build_ptrmemfunc_access_expr (t, pfn_identifier);
8049 /* Return an expression for DELTA from the pointer-to-member function
8050 given by T. */
8052 static tree
8053 delta_from_ptrmemfunc (tree t)
8055 if (TREE_CODE (t) == PTRMEM_CST)
8057 tree delta;
8058 tree pfn;
8060 expand_ptrmemfunc_cst (t, &delta, &pfn);
8061 if (delta)
8062 return delta;
8065 return build_ptrmemfunc_access_expr (t, delta_identifier);
8068 /* Convert value RHS to type TYPE as preparation for an assignment to
8069 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
8070 implicit conversion is. If FNDECL is non-NULL, we are doing the
8071 conversion in order to pass the PARMNUMth argument of FNDECL.
8072 If FNDECL is NULL, we are doing the conversion in function pointer
8073 argument passing, conversion in initialization, etc. */
8075 static tree
8076 convert_for_assignment (tree type, tree rhs,
8077 impl_conv_rhs errtype, tree fndecl, int parmnum,
8078 tsubst_flags_t complain, int flags)
8080 tree rhstype;
8081 enum tree_code coder;
8083 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
8084 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
8085 rhs = TREE_OPERAND (rhs, 0);
8087 rhstype = TREE_TYPE (rhs);
8088 coder = TREE_CODE (rhstype);
8090 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
8091 && vector_types_convertible_p (type, rhstype, true))
8093 rhs = mark_rvalue_use (rhs);
8094 return convert (type, rhs);
8097 if (rhs == error_mark_node || rhstype == error_mark_node)
8098 return error_mark_node;
8099 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
8100 return error_mark_node;
8102 /* The RHS of an assignment cannot have void type. */
8103 if (coder == VOID_TYPE)
8105 if (complain & tf_error)
8106 error ("void value not ignored as it ought to be");
8107 return error_mark_node;
8110 if (c_dialect_objc ())
8112 int parmno;
8113 tree selector;
8114 tree rname = fndecl;
8116 switch (errtype)
8118 case ICR_ASSIGN:
8119 parmno = -1;
8120 break;
8121 case ICR_INIT:
8122 parmno = -2;
8123 break;
8124 default:
8125 selector = objc_message_selector ();
8126 parmno = parmnum;
8127 if (selector && parmno > 1)
8129 rname = selector;
8130 parmno -= 1;
8134 if (objc_compare_types (type, rhstype, parmno, rname))
8136 rhs = mark_rvalue_use (rhs);
8137 return convert (type, rhs);
8141 /* [expr.ass]
8143 The expression is implicitly converted (clause _conv_) to the
8144 cv-unqualified type of the left operand.
8146 We allow bad conversions here because by the time we get to this point
8147 we are committed to doing the conversion. If we end up doing a bad
8148 conversion, convert_like will complain. */
8149 if (!can_convert_arg_bad (type, rhstype, rhs, flags, complain))
8151 /* When -Wno-pmf-conversions is use, we just silently allow
8152 conversions from pointers-to-members to plain pointers. If
8153 the conversion doesn't work, cp_convert will complain. */
8154 if (!warn_pmf2ptr
8155 && TYPE_PTR_P (type)
8156 && TYPE_PTRMEMFUNC_P (rhstype))
8157 rhs = cp_convert (strip_top_quals (type), rhs, complain);
8158 else
8160 if (complain & tf_error)
8162 /* If the right-hand side has unknown type, then it is an
8163 overloaded function. Call instantiate_type to get error
8164 messages. */
8165 if (rhstype == unknown_type_node)
8166 instantiate_type (type, rhs, tf_warning_or_error);
8167 else if (fndecl)
8168 error ("cannot convert %qT to %qT for argument %qP to %qD",
8169 rhstype, type, parmnum, fndecl);
8170 else
8171 switch (errtype)
8173 case ICR_DEFAULT_ARGUMENT:
8174 error ("cannot convert %qT to %qT in default argument",
8175 rhstype, type);
8176 break;
8177 case ICR_ARGPASS:
8178 error ("cannot convert %qT to %qT in argument passing",
8179 rhstype, type);
8180 break;
8181 case ICR_CONVERTING:
8182 error ("cannot convert %qT to %qT",
8183 rhstype, type);
8184 break;
8185 case ICR_INIT:
8186 error ("cannot convert %qT to %qT in initialization",
8187 rhstype, type);
8188 break;
8189 case ICR_RETURN:
8190 error ("cannot convert %qT to %qT in return",
8191 rhstype, type);
8192 break;
8193 case ICR_ASSIGN:
8194 error ("cannot convert %qT to %qT in assignment",
8195 rhstype, type);
8196 break;
8197 default:
8198 gcc_unreachable();
8200 if (TYPE_PTR_P (rhstype)
8201 && TYPE_PTR_P (type)
8202 && CLASS_TYPE_P (TREE_TYPE (rhstype))
8203 && CLASS_TYPE_P (TREE_TYPE (type))
8204 && !COMPLETE_TYPE_P (TREE_TYPE (rhstype)))
8205 inform (DECL_SOURCE_LOCATION (TYPE_MAIN_DECL
8206 (TREE_TYPE (rhstype))),
8207 "class type %qT is incomplete", TREE_TYPE (rhstype));
8209 return error_mark_node;
8212 if (warn_suggest_attribute_format)
8214 const enum tree_code codel = TREE_CODE (type);
8215 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
8216 && coder == codel
8217 && check_missing_format_attribute (type, rhstype)
8218 && (complain & tf_warning))
8219 switch (errtype)
8221 case ICR_ARGPASS:
8222 case ICR_DEFAULT_ARGUMENT:
8223 if (fndecl)
8224 warning (OPT_Wsuggest_attribute_format,
8225 "parameter %qP of %qD might be a candidate "
8226 "for a format attribute", parmnum, fndecl);
8227 else
8228 warning (OPT_Wsuggest_attribute_format,
8229 "parameter might be a candidate "
8230 "for a format attribute");
8231 break;
8232 case ICR_CONVERTING:
8233 warning (OPT_Wsuggest_attribute_format,
8234 "target of conversion might be a candidate "
8235 "for a format attribute");
8236 break;
8237 case ICR_INIT:
8238 warning (OPT_Wsuggest_attribute_format,
8239 "target of initialization might be a candidate "
8240 "for a format attribute");
8241 break;
8242 case ICR_RETURN:
8243 warning (OPT_Wsuggest_attribute_format,
8244 "return type might be a candidate "
8245 "for a format attribute");
8246 break;
8247 case ICR_ASSIGN:
8248 warning (OPT_Wsuggest_attribute_format,
8249 "left-hand side of assignment might be a candidate "
8250 "for a format attribute");
8251 break;
8252 default:
8253 gcc_unreachable();
8257 /* If -Wparentheses, warn about a = b = c when a has type bool and b
8258 does not. */
8259 if (warn_parentheses
8260 && TREE_CODE (type) == BOOLEAN_TYPE
8261 && TREE_CODE (rhs) == MODIFY_EXPR
8262 && !TREE_NO_WARNING (rhs)
8263 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
8264 && (complain & tf_warning))
8266 location_t loc = EXPR_LOC_OR_LOC (rhs, input_location);
8268 warning_at (loc, OPT_Wparentheses,
8269 "suggest parentheses around assignment used as truth value");
8270 TREE_NO_WARNING (rhs) = 1;
8273 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
8274 complain, flags);
8277 /* Convert RHS to be of type TYPE.
8278 If EXP is nonzero, it is the target of the initialization.
8279 ERRTYPE indicates what kind of error the implicit conversion is.
8281 Two major differences between the behavior of
8282 `convert_for_assignment' and `convert_for_initialization'
8283 are that references are bashed in the former, while
8284 copied in the latter, and aggregates are assigned in
8285 the former (operator=) while initialized in the
8286 latter (X(X&)).
8288 If using constructor make sure no conversion operator exists, if one does
8289 exist, an ambiguity exists. */
8291 tree
8292 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
8293 impl_conv_rhs errtype, tree fndecl, int parmnum,
8294 tsubst_flags_t complain)
8296 enum tree_code codel = TREE_CODE (type);
8297 tree rhstype;
8298 enum tree_code coder;
8300 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
8301 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
8302 if (TREE_CODE (rhs) == NOP_EXPR
8303 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
8304 && codel != REFERENCE_TYPE)
8305 rhs = TREE_OPERAND (rhs, 0);
8307 if (type == error_mark_node
8308 || rhs == error_mark_node
8309 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
8310 return error_mark_node;
8312 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
8313 && TREE_CODE (type) != ARRAY_TYPE
8314 && (TREE_CODE (type) != REFERENCE_TYPE
8315 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
8316 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
8317 && !TYPE_REFFN_P (type))
8318 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
8319 rhs = decay_conversion (rhs, complain);
8321 rhstype = TREE_TYPE (rhs);
8322 coder = TREE_CODE (rhstype);
8324 if (coder == ERROR_MARK)
8325 return error_mark_node;
8327 /* We accept references to incomplete types, so we can
8328 return here before checking if RHS is of complete type. */
8330 if (codel == REFERENCE_TYPE)
8332 /* This should eventually happen in convert_arguments. */
8333 int savew = 0, savee = 0;
8335 if (fndecl)
8336 savew = warningcount + werrorcount, savee = errorcount;
8337 rhs = initialize_reference (type, rhs, flags, complain);
8339 if (fndecl
8340 && (warningcount + werrorcount > savew || errorcount > savee))
8341 inform (input_location,
8342 "in passing argument %P of %q+D", parmnum, fndecl);
8344 return rhs;
8347 if (exp != 0)
8348 exp = require_complete_type_sfinae (exp, complain);
8349 if (exp == error_mark_node)
8350 return error_mark_node;
8352 rhstype = non_reference (rhstype);
8354 type = complete_type (type);
8356 if (DIRECT_INIT_EXPR_P (type, rhs))
8357 /* Don't try to do copy-initialization if we already have
8358 direct-initialization. */
8359 return rhs;
8361 if (MAYBE_CLASS_TYPE_P (type))
8362 return perform_implicit_conversion_flags (type, rhs, complain, flags);
8364 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
8365 complain, flags);
8368 /* If RETVAL is the address of, or a reference to, a local variable or
8369 temporary give an appropriate warning and return true. */
8371 static bool
8372 maybe_warn_about_returning_address_of_local (tree retval)
8374 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
8375 tree whats_returned = retval;
8377 for (;;)
8379 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
8380 whats_returned = TREE_OPERAND (whats_returned, 1);
8381 else if (CONVERT_EXPR_P (whats_returned)
8382 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
8383 whats_returned = TREE_OPERAND (whats_returned, 0);
8384 else
8385 break;
8388 if (TREE_CODE (whats_returned) != ADDR_EXPR)
8389 return false;
8390 whats_returned = TREE_OPERAND (whats_returned, 0);
8392 while (TREE_CODE (whats_returned) == COMPONENT_REF
8393 || TREE_CODE (whats_returned) == ARRAY_REF)
8394 whats_returned = TREE_OPERAND (whats_returned, 0);
8396 if (TREE_CODE (valtype) == REFERENCE_TYPE)
8398 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
8399 || TREE_CODE (whats_returned) == TARGET_EXPR)
8401 warning (OPT_Wreturn_local_addr, "returning reference to temporary");
8402 return true;
8404 if (VAR_P (whats_returned)
8405 && DECL_NAME (whats_returned)
8406 && TEMP_NAME_P (DECL_NAME (whats_returned)))
8408 warning (OPT_Wreturn_local_addr, "reference to non-lvalue returned");
8409 return true;
8413 if (DECL_P (whats_returned)
8414 && DECL_NAME (whats_returned)
8415 && DECL_FUNCTION_SCOPE_P (whats_returned)
8416 && !is_capture_proxy (whats_returned)
8417 && !(TREE_STATIC (whats_returned)
8418 || TREE_PUBLIC (whats_returned)))
8420 if (TREE_CODE (valtype) == REFERENCE_TYPE)
8421 warning (OPT_Wreturn_local_addr, "reference to local variable %q+D returned",
8422 whats_returned);
8423 else if (TREE_CODE (whats_returned) == LABEL_DECL)
8424 warning (OPT_Wreturn_local_addr, "address of label %q+D returned",
8425 whats_returned);
8426 else
8427 warning (OPT_Wreturn_local_addr, "address of local variable %q+D "
8428 "returned", whats_returned);
8429 return true;
8432 return false;
8435 /* Check that returning RETVAL from the current function is valid.
8436 Return an expression explicitly showing all conversions required to
8437 change RETVAL into the function return type, and to assign it to
8438 the DECL_RESULT for the function. Set *NO_WARNING to true if
8439 code reaches end of non-void function warning shouldn't be issued
8440 on this RETURN_EXPR. */
8442 tree
8443 check_return_expr (tree retval, bool *no_warning)
8445 tree result;
8446 /* The type actually returned by the function. */
8447 tree valtype;
8448 /* The type the function is declared to return, or void if
8449 the declared type is incomplete. */
8450 tree functype;
8451 int fn_returns_value_p;
8452 bool named_return_value_okay_p;
8454 *no_warning = false;
8456 if (flag_cilkplus && retval && contains_cilk_spawn_stmt (retval))
8458 error_at (EXPR_LOCATION (retval), "use of %<_Cilk_spawn%> in a return "
8459 "statement is not allowed");
8460 return NULL_TREE;
8463 /* A `volatile' function is one that isn't supposed to return, ever.
8464 (This is a G++ extension, used to get better code for functions
8465 that call the `volatile' function.) */
8466 if (TREE_THIS_VOLATILE (current_function_decl))
8467 warning (0, "function declared %<noreturn%> has a %<return%> statement");
8469 /* Check for various simple errors. */
8470 if (DECL_DESTRUCTOR_P (current_function_decl))
8472 if (retval)
8473 error ("returning a value from a destructor");
8474 return NULL_TREE;
8476 else if (DECL_CONSTRUCTOR_P (current_function_decl))
8478 if (in_function_try_handler)
8479 /* If a return statement appears in a handler of the
8480 function-try-block of a constructor, the program is ill-formed. */
8481 error ("cannot return from a handler of a function-try-block of a constructor");
8482 else if (retval)
8483 /* You can't return a value from a constructor. */
8484 error ("returning a value from a constructor");
8485 return NULL_TREE;
8488 if (processing_template_decl)
8490 current_function_returns_value = 1;
8491 if (check_for_bare_parameter_packs (retval))
8492 retval = error_mark_node;
8493 return retval;
8496 functype = TREE_TYPE (TREE_TYPE (current_function_decl));
8498 /* Deduce auto return type from a return statement. */
8499 if (current_function_auto_return_pattern)
8501 tree auto_node;
8502 tree type;
8504 if (!retval && !is_auto (current_function_auto_return_pattern))
8506 /* Give a helpful error message. */
8507 error ("return-statement with no value, in function returning %qT",
8508 current_function_auto_return_pattern);
8509 inform (input_location, "only plain %<auto%> return type can be "
8510 "deduced to %<void%>");
8511 type = error_mark_node;
8513 else if (retval && BRACE_ENCLOSED_INITIALIZER_P (retval))
8515 error ("returning initializer list");
8516 type = error_mark_node;
8518 else
8520 if (!retval)
8521 retval = void_node;
8522 auto_node = type_uses_auto (current_function_auto_return_pattern);
8523 type = do_auto_deduction (current_function_auto_return_pattern,
8524 retval, auto_node);
8527 if (type == error_mark_node)
8528 /* Leave it. */;
8529 else if (functype == current_function_auto_return_pattern)
8530 apply_deduced_return_type (current_function_decl, type);
8531 else
8532 /* A mismatch should have been diagnosed in do_auto_deduction. */
8533 gcc_assert (same_type_p (type, functype));
8534 functype = type;
8537 /* When no explicit return-value is given in a function with a named
8538 return value, the named return value is used. */
8539 result = DECL_RESULT (current_function_decl);
8540 valtype = TREE_TYPE (result);
8541 gcc_assert (valtype != NULL_TREE);
8542 fn_returns_value_p = !VOID_TYPE_P (valtype);
8543 if (!retval && DECL_NAME (result) && fn_returns_value_p)
8544 retval = result;
8546 /* Check for a return statement with no return value in a function
8547 that's supposed to return a value. */
8548 if (!retval && fn_returns_value_p)
8550 if (functype != error_mark_node)
8551 permerror (input_location, "return-statement with no value, in "
8552 "function returning %qT", valtype);
8553 /* Remember that this function did return. */
8554 current_function_returns_value = 1;
8555 /* And signal caller that TREE_NO_WARNING should be set on the
8556 RETURN_EXPR to avoid control reaches end of non-void function
8557 warnings in tree-cfg.c. */
8558 *no_warning = true;
8560 /* Check for a return statement with a value in a function that
8561 isn't supposed to return a value. */
8562 else if (retval && !fn_returns_value_p)
8564 if (VOID_TYPE_P (TREE_TYPE (retval)))
8565 /* You can return a `void' value from a function of `void'
8566 type. In that case, we have to evaluate the expression for
8567 its side-effects. */
8568 finish_expr_stmt (retval);
8569 else
8570 permerror (input_location, "return-statement with a value, in function "
8571 "returning 'void'");
8572 current_function_returns_null = 1;
8574 /* There's really no value to return, after all. */
8575 return NULL_TREE;
8577 else if (!retval)
8578 /* Remember that this function can sometimes return without a
8579 value. */
8580 current_function_returns_null = 1;
8581 else
8582 /* Remember that this function did return a value. */
8583 current_function_returns_value = 1;
8585 /* Check for erroneous operands -- but after giving ourselves a
8586 chance to provide an error about returning a value from a void
8587 function. */
8588 if (error_operand_p (retval))
8590 current_function_return_value = error_mark_node;
8591 return error_mark_node;
8594 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
8595 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
8596 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
8597 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
8598 && ! flag_check_new
8599 && retval && null_ptr_cst_p (retval))
8600 warning (0, "%<operator new%> must not return NULL unless it is "
8601 "declared %<throw()%> (or -fcheck-new is in effect)");
8603 /* Effective C++ rule 15. See also start_function. */
8604 if (warn_ecpp
8605 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
8607 bool warn = true;
8609 /* The function return type must be a reference to the current
8610 class. */
8611 if (TREE_CODE (valtype) == REFERENCE_TYPE
8612 && same_type_ignoring_top_level_qualifiers_p
8613 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
8615 /* Returning '*this' is obviously OK. */
8616 if (retval == current_class_ref)
8617 warn = false;
8618 /* If we are calling a function whose return type is the same of
8619 the current class reference, it is ok. */
8620 else if (INDIRECT_REF_P (retval)
8621 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
8622 warn = false;
8625 if (warn)
8626 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
8629 /* The fabled Named Return Value optimization, as per [class.copy]/15:
8631 [...] For a function with a class return type, if the expression
8632 in the return statement is the name of a local object, and the cv-
8633 unqualified type of the local object is the same as the function
8634 return type, an implementation is permitted to omit creating the tem-
8635 porary object to hold the function return value [...]
8637 So, if this is a value-returning function that always returns the same
8638 local variable, remember it.
8640 It might be nice to be more flexible, and choose the first suitable
8641 variable even if the function sometimes returns something else, but
8642 then we run the risk of clobbering the variable we chose if the other
8643 returned expression uses the chosen variable somehow. And people expect
8644 this restriction, anyway. (jason 2000-11-19)
8646 See finish_function and finalize_nrv for the rest of this optimization. */
8648 named_return_value_okay_p =
8649 (retval != NULL_TREE
8650 /* Must be a local, automatic variable. */
8651 && VAR_P (retval)
8652 && DECL_CONTEXT (retval) == current_function_decl
8653 && ! TREE_STATIC (retval)
8654 /* And not a lambda or anonymous union proxy. */
8655 && !DECL_HAS_VALUE_EXPR_P (retval)
8656 && (DECL_ALIGN (retval) <= DECL_ALIGN (result))
8657 /* The cv-unqualified type of the returned value must be the
8658 same as the cv-unqualified return type of the
8659 function. */
8660 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
8661 (TYPE_MAIN_VARIANT (functype)))
8662 /* And the returned value must be non-volatile. */
8663 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
8665 if (fn_returns_value_p && flag_elide_constructors)
8667 if (named_return_value_okay_p
8668 && (current_function_return_value == NULL_TREE
8669 || current_function_return_value == retval))
8670 current_function_return_value = retval;
8671 else
8672 current_function_return_value = error_mark_node;
8675 /* We don't need to do any conversions when there's nothing being
8676 returned. */
8677 if (!retval)
8678 return NULL_TREE;
8680 /* Do any required conversions. */
8681 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
8682 /* No conversions are required. */
8684 else
8686 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
8688 /* The functype's return type will have been set to void, if it
8689 was an incomplete type. Just treat this as 'return;' */
8690 if (VOID_TYPE_P (functype))
8691 return error_mark_node;
8693 /* If we had an id-expression obfuscated by force_paren_expr, we need
8694 to undo it so we can try to treat it as an rvalue below. */
8695 if (cxx_dialect >= cxx14
8696 && INDIRECT_REF_P (retval)
8697 && REF_PARENTHESIZED_P (retval))
8699 retval = TREE_OPERAND (retval, 0);
8700 while (TREE_CODE (retval) == NON_LVALUE_EXPR
8701 || TREE_CODE (retval) == NOP_EXPR)
8702 retval = TREE_OPERAND (retval, 0);
8703 gcc_assert (TREE_CODE (retval) == ADDR_EXPR);
8704 retval = TREE_OPERAND (retval, 0);
8707 /* Under C++11 [12.8/32 class.copy], a returned lvalue is sometimes
8708 treated as an rvalue for the purposes of overload resolution to
8709 favor move constructors over copy constructors.
8711 Note that these conditions are similar to, but not as strict as,
8712 the conditions for the named return value optimization. */
8713 if ((cxx_dialect != cxx98)
8714 && ((VAR_P (retval) && !DECL_HAS_VALUE_EXPR_P (retval))
8715 || TREE_CODE (retval) == PARM_DECL)
8716 && DECL_CONTEXT (retval) == current_function_decl
8717 && !TREE_STATIC (retval)
8718 /* This is only interesting for class type. */
8719 && CLASS_TYPE_P (functype))
8720 flags = flags | LOOKUP_PREFER_RVALUE;
8722 /* First convert the value to the function's return type, then
8723 to the type of return value's location to handle the
8724 case that functype is smaller than the valtype. */
8725 retval = convert_for_initialization
8726 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
8727 tf_warning_or_error);
8728 retval = convert (valtype, retval);
8730 /* If the conversion failed, treat this just like `return;'. */
8731 if (retval == error_mark_node)
8732 return retval;
8733 /* We can't initialize a register from a AGGR_INIT_EXPR. */
8734 else if (! cfun->returns_struct
8735 && TREE_CODE (retval) == TARGET_EXPR
8736 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
8737 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
8738 TREE_OPERAND (retval, 0));
8739 else if (maybe_warn_about_returning_address_of_local (retval))
8740 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
8741 build_zero_cst (TREE_TYPE (retval)));
8744 /* Actually copy the value returned into the appropriate location. */
8745 if (retval && retval != result)
8746 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
8748 return retval;
8752 /* Returns nonzero if the pointer-type FROM can be converted to the
8753 pointer-type TO via a qualification conversion. If CONSTP is -1,
8754 then we return nonzero if the pointers are similar, and the
8755 cv-qualification signature of FROM is a proper subset of that of TO.
8757 If CONSTP is positive, then all outer pointers have been
8758 const-qualified. */
8760 static int
8761 comp_ptr_ttypes_real (tree to, tree from, int constp)
8763 bool to_more_cv_qualified = false;
8764 bool is_opaque_pointer = false;
8766 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8768 if (TREE_CODE (to) != TREE_CODE (from))
8769 return 0;
8771 if (TREE_CODE (from) == OFFSET_TYPE
8772 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
8773 TYPE_OFFSET_BASETYPE (to)))
8774 return 0;
8776 /* Const and volatile mean something different for function types,
8777 so the usual checks are not appropriate. */
8778 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
8780 if (!at_least_as_qualified_p (to, from))
8781 return 0;
8783 if (!at_least_as_qualified_p (from, to))
8785 if (constp == 0)
8786 return 0;
8787 to_more_cv_qualified = true;
8790 if (constp > 0)
8791 constp &= TYPE_READONLY (to);
8794 if (TREE_CODE (to) == VECTOR_TYPE)
8795 is_opaque_pointer = vector_targets_convertible_p (to, from);
8797 if (!TYPE_PTR_P (to) && !TYPE_PTRDATAMEM_P (to))
8798 return ((constp >= 0 || to_more_cv_qualified)
8799 && (is_opaque_pointer
8800 || same_type_ignoring_top_level_qualifiers_p (to, from)));
8804 /* When comparing, say, char ** to char const **, this function takes
8805 the 'char *' and 'char const *'. Do not pass non-pointer/reference
8806 types to this function. */
8809 comp_ptr_ttypes (tree to, tree from)
8811 return comp_ptr_ttypes_real (to, from, 1);
8814 /* Returns true iff FNTYPE is a non-class type that involves
8815 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
8816 if a parameter type is ill-formed. */
8818 bool
8819 error_type_p (const_tree type)
8821 tree t;
8823 switch (TREE_CODE (type))
8825 case ERROR_MARK:
8826 return true;
8828 case POINTER_TYPE:
8829 case REFERENCE_TYPE:
8830 case OFFSET_TYPE:
8831 return error_type_p (TREE_TYPE (type));
8833 case FUNCTION_TYPE:
8834 case METHOD_TYPE:
8835 if (error_type_p (TREE_TYPE (type)))
8836 return true;
8837 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
8838 if (error_type_p (TREE_VALUE (t)))
8839 return true;
8840 return false;
8842 case RECORD_TYPE:
8843 if (TYPE_PTRMEMFUNC_P (type))
8844 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
8845 return false;
8847 default:
8848 return false;
8852 /* Returns true if to and from are (possibly multi-level) pointers to the same
8853 type or inheritance-related types, regardless of cv-quals. */
8855 bool
8856 ptr_reasonably_similar (const_tree to, const_tree from)
8858 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8860 /* Any target type is similar enough to void. */
8861 if (VOID_TYPE_P (to))
8862 return !error_type_p (from);
8863 if (VOID_TYPE_P (from))
8864 return !error_type_p (to);
8866 if (TREE_CODE (to) != TREE_CODE (from))
8867 return false;
8869 if (TREE_CODE (from) == OFFSET_TYPE
8870 && comptypes (TYPE_OFFSET_BASETYPE (to),
8871 TYPE_OFFSET_BASETYPE (from),
8872 COMPARE_BASE | COMPARE_DERIVED))
8873 continue;
8875 if (TREE_CODE (to) == VECTOR_TYPE
8876 && vector_types_convertible_p (to, from, false))
8877 return true;
8879 if (TREE_CODE (to) == INTEGER_TYPE
8880 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
8881 return true;
8883 if (TREE_CODE (to) == FUNCTION_TYPE)
8884 return !error_type_p (to) && !error_type_p (from);
8886 if (!TYPE_PTR_P (to))
8888 /* When either type is incomplete avoid DERIVED_FROM_P,
8889 which may call complete_type (c++/57942). */
8890 bool b = !COMPLETE_TYPE_P (to) || !COMPLETE_TYPE_P (from);
8891 return comptypes
8892 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
8893 b ? COMPARE_STRICT : COMPARE_BASE | COMPARE_DERIVED);
8898 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
8899 pointer-to-member types) are the same, ignoring cv-qualification at
8900 all levels. */
8902 bool
8903 comp_ptr_ttypes_const (tree to, tree from)
8905 bool is_opaque_pointer = false;
8907 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8909 if (TREE_CODE (to) != TREE_CODE (from))
8910 return false;
8912 if (TREE_CODE (from) == OFFSET_TYPE
8913 && same_type_p (TYPE_OFFSET_BASETYPE (from),
8914 TYPE_OFFSET_BASETYPE (to)))
8915 continue;
8917 if (TREE_CODE (to) == VECTOR_TYPE)
8918 is_opaque_pointer = vector_targets_convertible_p (to, from);
8920 if (!TYPE_PTR_P (to))
8921 return (is_opaque_pointer
8922 || same_type_ignoring_top_level_qualifiers_p (to, from));
8926 /* Returns the type qualifiers for this type, including the qualifiers on the
8927 elements for an array type. */
8930 cp_type_quals (const_tree type)
8932 int quals;
8933 /* This CONST_CAST is okay because strip_array_types returns its
8934 argument unmodified and we assign it to a const_tree. */
8935 type = strip_array_types (CONST_CAST_TREE (type));
8936 if (type == error_mark_node
8937 /* Quals on a FUNCTION_TYPE are memfn quals. */
8938 || TREE_CODE (type) == FUNCTION_TYPE)
8939 return TYPE_UNQUALIFIED;
8940 quals = TYPE_QUALS (type);
8941 /* METHOD and REFERENCE_TYPEs should never have quals. */
8942 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
8943 && TREE_CODE (type) != REFERENCE_TYPE)
8944 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
8945 == TYPE_UNQUALIFIED));
8946 return quals;
8949 /* Returns the function-ref-qualifier for TYPE */
8951 cp_ref_qualifier
8952 type_memfn_rqual (const_tree type)
8954 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE
8955 || TREE_CODE (type) == METHOD_TYPE);
8957 if (!FUNCTION_REF_QUALIFIED (type))
8958 return REF_QUAL_NONE;
8959 else if (FUNCTION_RVALUE_QUALIFIED (type))
8960 return REF_QUAL_RVALUE;
8961 else
8962 return REF_QUAL_LVALUE;
8965 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
8966 METHOD_TYPE. */
8969 type_memfn_quals (const_tree type)
8971 if (TREE_CODE (type) == FUNCTION_TYPE)
8972 return TYPE_QUALS (type);
8973 else if (TREE_CODE (type) == METHOD_TYPE)
8974 return cp_type_quals (class_of_this_parm (type));
8975 else
8976 gcc_unreachable ();
8979 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
8980 MEMFN_QUALS and its ref-qualifier to RQUAL. */
8982 tree
8983 apply_memfn_quals (tree type, cp_cv_quals memfn_quals, cp_ref_qualifier rqual)
8985 /* Could handle METHOD_TYPE here if necessary. */
8986 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8987 if (TYPE_QUALS (type) == memfn_quals
8988 && type_memfn_rqual (type) == rqual)
8989 return type;
8991 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
8992 complex. */
8993 tree result = build_qualified_type (type, memfn_quals);
8994 if (tree canon = TYPE_CANONICAL (result))
8995 if (canon != result)
8996 /* check_qualified_type doesn't check the ref-qualifier, so make sure
8997 TYPE_CANONICAL is correct. */
8998 TYPE_CANONICAL (result)
8999 = build_ref_qualified_type (canon, type_memfn_rqual (result));
9000 result = build_exception_variant (result, TYPE_RAISES_EXCEPTIONS (type));
9001 return build_ref_qualified_type (result, rqual);
9004 /* Returns nonzero if TYPE is const or volatile. */
9006 bool
9007 cv_qualified_p (const_tree type)
9009 int quals = cp_type_quals (type);
9010 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
9013 /* Returns nonzero if the TYPE contains a mutable member. */
9015 bool
9016 cp_has_mutable_p (const_tree type)
9018 /* This CONST_CAST is okay because strip_array_types returns its
9019 argument unmodified and we assign it to a const_tree. */
9020 type = strip_array_types (CONST_CAST_TREE(type));
9022 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
9025 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
9026 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
9027 approximation. In particular, consider:
9029 int f();
9030 struct S { int i; };
9031 const S s = { f(); }
9033 Here, we will make "s" as TREE_READONLY (because it is declared
9034 "const") -- only to reverse ourselves upon seeing that the
9035 initializer is non-constant. */
9037 void
9038 cp_apply_type_quals_to_decl (int type_quals, tree decl)
9040 tree type = TREE_TYPE (decl);
9042 if (type == error_mark_node)
9043 return;
9045 if (TREE_CODE (decl) == TYPE_DECL)
9046 return;
9048 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
9049 && type_quals != TYPE_UNQUALIFIED));
9051 /* Avoid setting TREE_READONLY incorrectly. */
9052 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
9053 constructor can produce constant init, so rely on cp_finish_decl to
9054 clear TREE_READONLY if the variable has non-constant init. */
9056 /* If the type has (or might have) a mutable component, that component
9057 might be modified. */
9058 if (TYPE_HAS_MUTABLE_P (type) || !COMPLETE_TYPE_P (type))
9059 type_quals &= ~TYPE_QUAL_CONST;
9061 c_apply_type_quals_to_decl (type_quals, decl);
9064 /* Subroutine of casts_away_constness. Make T1 and T2 point at
9065 exemplar types such that casting T1 to T2 is casting away constness
9066 if and only if there is no implicit conversion from T1 to T2. */
9068 static void
9069 casts_away_constness_r (tree *t1, tree *t2, tsubst_flags_t complain)
9071 int quals1;
9072 int quals2;
9074 /* [expr.const.cast]
9076 For multi-level pointer to members and multi-level mixed pointers
9077 and pointers to members (conv.qual), the "member" aspect of a
9078 pointer to member level is ignored when determining if a const
9079 cv-qualifier has been cast away. */
9080 /* [expr.const.cast]
9082 For two pointer types:
9084 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
9085 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
9086 K is min(N,M)
9088 casting from X1 to X2 casts away constness if, for a non-pointer
9089 type T there does not exist an implicit conversion (clause
9090 _conv_) from:
9092 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
9096 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
9097 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRDATAMEM_P (*t1))
9098 || (!TYPE_PTR_P (*t2) && !TYPE_PTRDATAMEM_P (*t2)))
9100 *t1 = cp_build_qualified_type (void_type_node,
9101 cp_type_quals (*t1));
9102 *t2 = cp_build_qualified_type (void_type_node,
9103 cp_type_quals (*t2));
9104 return;
9107 quals1 = cp_type_quals (*t1);
9108 quals2 = cp_type_quals (*t2);
9110 if (TYPE_PTRDATAMEM_P (*t1))
9111 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
9112 else
9113 *t1 = TREE_TYPE (*t1);
9114 if (TYPE_PTRDATAMEM_P (*t2))
9115 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
9116 else
9117 *t2 = TREE_TYPE (*t2);
9119 casts_away_constness_r (t1, t2, complain);
9120 *t1 = build_pointer_type (*t1);
9121 *t2 = build_pointer_type (*t2);
9122 *t1 = cp_build_qualified_type (*t1, quals1);
9123 *t2 = cp_build_qualified_type (*t2, quals2);
9126 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
9127 constness.
9129 ??? This function returns non-zero if casting away qualifiers not
9130 just const. We would like to return to the caller exactly which
9131 qualifiers are casted away to give more accurate diagnostics.
9134 static bool
9135 casts_away_constness (tree t1, tree t2, tsubst_flags_t complain)
9137 if (TREE_CODE (t2) == REFERENCE_TYPE)
9139 /* [expr.const.cast]
9141 Casting from an lvalue of type T1 to an lvalue of type T2
9142 using a reference cast casts away constness if a cast from an
9143 rvalue of type "pointer to T1" to the type "pointer to T2"
9144 casts away constness. */
9145 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
9146 return casts_away_constness (build_pointer_type (t1),
9147 build_pointer_type (TREE_TYPE (t2)),
9148 complain);
9151 if (TYPE_PTRDATAMEM_P (t1) && TYPE_PTRDATAMEM_P (t2))
9152 /* [expr.const.cast]
9154 Casting from an rvalue of type "pointer to data member of X
9155 of type T1" to the type "pointer to data member of Y of type
9156 T2" casts away constness if a cast from an rvalue of type
9157 "pointer to T1" to the type "pointer to T2" casts away
9158 constness. */
9159 return casts_away_constness
9160 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
9161 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)),
9162 complain);
9164 /* Casting away constness is only something that makes sense for
9165 pointer or reference types. */
9166 if (!TYPE_PTR_P (t1) || !TYPE_PTR_P (t2))
9167 return false;
9169 /* Top-level qualifiers don't matter. */
9170 t1 = TYPE_MAIN_VARIANT (t1);
9171 t2 = TYPE_MAIN_VARIANT (t2);
9172 casts_away_constness_r (&t1, &t2, complain);
9173 if (!can_convert (t2, t1, complain))
9174 return true;
9176 return false;
9179 /* If T is a REFERENCE_TYPE return the type to which T refers.
9180 Otherwise, return T itself. */
9182 tree
9183 non_reference (tree t)
9185 if (t && TREE_CODE (t) == REFERENCE_TYPE)
9186 t = TREE_TYPE (t);
9187 return t;
9191 /* Return nonzero if REF is an lvalue valid for this language;
9192 otherwise, print an error message and return zero. USE says
9193 how the lvalue is being used and so selects the error message. */
9196 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
9198 cp_lvalue_kind kind = lvalue_kind (ref);
9200 if (kind == clk_none)
9202 if (complain & tf_error)
9203 lvalue_error (input_location, use);
9204 return 0;
9206 else if (kind & (clk_rvalueref|clk_class))
9208 if (!(complain & tf_error))
9209 return 0;
9210 if (kind & clk_class)
9211 /* Make this a permerror because we used to accept it. */
9212 permerror (input_location, "using temporary as lvalue");
9213 else
9214 error ("using xvalue (rvalue reference) as lvalue");
9216 return 1;
9219 /* Return true if a user-defined literal operator is a raw operator. */
9221 bool
9222 check_raw_literal_operator (const_tree decl)
9224 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9225 tree argtype;
9226 int arity;
9227 bool maybe_raw_p = false;
9229 /* Count the number and type of arguments and check for ellipsis. */
9230 for (argtype = argtypes, arity = 0;
9231 argtype && argtype != void_list_node;
9232 ++arity, argtype = TREE_CHAIN (argtype))
9234 tree t = TREE_VALUE (argtype);
9236 if (same_type_p (t, const_string_type_node))
9237 maybe_raw_p = true;
9239 if (!argtype)
9240 return false; /* Found ellipsis. */
9242 if (!maybe_raw_p || arity != 1)
9243 return false;
9245 return true;
9249 /* Return true if a user-defined literal operator has one of the allowed
9250 argument types. */
9252 bool
9253 check_literal_operator_args (const_tree decl,
9254 bool *long_long_unsigned_p, bool *long_double_p)
9256 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
9258 *long_long_unsigned_p = false;
9259 *long_double_p = false;
9260 if (processing_template_decl || processing_specialization)
9261 return argtypes == void_list_node;
9262 else
9264 tree argtype;
9265 int arity;
9266 int max_arity = 2;
9268 /* Count the number and type of arguments and check for ellipsis. */
9269 for (argtype = argtypes, arity = 0;
9270 argtype && argtype != void_list_node;
9271 argtype = TREE_CHAIN (argtype))
9273 tree t = TREE_VALUE (argtype);
9274 ++arity;
9276 if (TYPE_PTR_P (t))
9278 bool maybe_raw_p = false;
9279 t = TREE_TYPE (t);
9280 if (cp_type_quals (t) != TYPE_QUAL_CONST)
9281 return false;
9282 t = TYPE_MAIN_VARIANT (t);
9283 if ((maybe_raw_p = same_type_p (t, char_type_node))
9284 || same_type_p (t, wchar_type_node)
9285 || same_type_p (t, char16_type_node)
9286 || same_type_p (t, char32_type_node))
9288 argtype = TREE_CHAIN (argtype);
9289 if (!argtype)
9290 return false;
9291 t = TREE_VALUE (argtype);
9292 if (maybe_raw_p && argtype == void_list_node)
9293 return true;
9294 else if (same_type_p (t, size_type_node))
9296 ++arity;
9297 continue;
9299 else
9300 return false;
9303 else if (same_type_p (t, long_long_unsigned_type_node))
9305 max_arity = 1;
9306 *long_long_unsigned_p = true;
9308 else if (same_type_p (t, long_double_type_node))
9310 max_arity = 1;
9311 *long_double_p = true;
9313 else if (same_type_p (t, char_type_node))
9314 max_arity = 1;
9315 else if (same_type_p (t, wchar_type_node))
9316 max_arity = 1;
9317 else if (same_type_p (t, char16_type_node))
9318 max_arity = 1;
9319 else if (same_type_p (t, char32_type_node))
9320 max_arity = 1;
9321 else
9322 return false;
9324 if (!argtype)
9325 return false; /* Found ellipsis. */
9327 if (arity != max_arity)
9328 return false;
9330 return true;