make __stl_prime_list in comdat
[official-gcc.git] / gcc / cp / typeck.c
blob386f3b89d4815a32f134827be00ed5d0ae1c2728
1 /* Build expressions with type checking for C++ compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
24 /* This file is part of the C++ front end.
25 It contains routines to build C++ expressions given their operands,
26 including computing the types of the result, C and C++ specific error
27 checks, and some optimization. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "tree.h"
34 #include "cp-tree.h"
35 #include "flags.h"
36 #include "output.h"
37 #include "diagnostic.h"
38 #include "intl.h"
39 #include "target.h"
40 #include "convert.h"
41 #include "c-family/c-common.h"
42 #include "c-family/c-objc.h"
43 #include "params.h"
45 static tree pfn_from_ptrmemfunc (tree);
46 static tree delta_from_ptrmemfunc (tree);
47 static tree convert_for_assignment (tree, tree, impl_conv_rhs, tree, int,
48 tsubst_flags_t, int);
49 static tree cp_pointer_int_sum (enum tree_code, tree, tree);
50 static tree rationalize_conditional_expr (enum tree_code, tree,
51 tsubst_flags_t);
52 static int comp_ptr_ttypes_real (tree, tree, int);
53 static bool comp_except_types (tree, tree, bool);
54 static bool comp_array_types (const_tree, const_tree, bool);
55 static tree pointer_diff (tree, tree, tree);
56 static tree get_delta_difference (tree, tree, bool, bool, tsubst_flags_t);
57 static void casts_away_constness_r (tree *, tree *);
58 static bool casts_away_constness (tree, tree);
59 static void maybe_warn_about_returning_address_of_local (tree);
60 static tree lookup_destructor (tree, tree, tree);
61 static void warn_args_num (location_t, tree, bool);
62 static int convert_arguments (tree, VEC(tree,gc) **, tree, int,
63 tsubst_flags_t);
65 /* Do `exp = require_complete_type (exp);' to make sure exp
66 does not have an incomplete type. (That includes void types.)
67 Returns error_mark_node if the VALUE does not have
68 complete type when this function returns. */
70 tree
71 require_complete_type_sfinae (tree value, tsubst_flags_t complain)
73 tree type;
75 if (processing_template_decl || value == error_mark_node)
76 return value;
78 if (TREE_CODE (value) == OVERLOAD)
79 type = unknown_type_node;
80 else
81 type = TREE_TYPE (value);
83 if (type == error_mark_node)
84 return error_mark_node;
86 /* First, detect a valid value with a complete type. */
87 if (COMPLETE_TYPE_P (type))
88 return value;
90 if (complete_type_or_maybe_complain (type, value, complain))
91 return value;
92 else
93 return error_mark_node;
96 tree
97 require_complete_type (tree value)
99 return require_complete_type_sfinae (value, tf_warning_or_error);
102 /* Try to complete TYPE, if it is incomplete. For example, if TYPE is
103 a template instantiation, do the instantiation. Returns TYPE,
104 whether or not it could be completed, unless something goes
105 horribly wrong, in which case the error_mark_node is returned. */
107 tree
108 complete_type (tree type)
110 if (type == NULL_TREE)
111 /* Rather than crash, we return something sure to cause an error
112 at some point. */
113 return error_mark_node;
115 if (type == error_mark_node || COMPLETE_TYPE_P (type))
117 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
119 tree t = complete_type (TREE_TYPE (type));
120 unsigned int needs_constructing, has_nontrivial_dtor;
121 if (COMPLETE_TYPE_P (t) && !dependent_type_p (type))
122 layout_type (type);
123 needs_constructing
124 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
125 has_nontrivial_dtor
126 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
127 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
129 TYPE_NEEDS_CONSTRUCTING (t) = needs_constructing;
130 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = has_nontrivial_dtor;
133 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
134 instantiate_class_template (TYPE_MAIN_VARIANT (type));
136 return type;
139 /* Like complete_type, but issue an error if the TYPE cannot be completed.
140 VALUE is used for informative diagnostics.
141 Returns NULL_TREE if the type cannot be made complete. */
143 tree
144 complete_type_or_maybe_complain (tree type, tree value, tsubst_flags_t complain)
146 type = complete_type (type);
147 if (type == error_mark_node)
148 /* We already issued an error. */
149 return NULL_TREE;
150 else if (!COMPLETE_TYPE_P (type))
152 if (complain & tf_error)
153 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
154 return NULL_TREE;
156 else
157 return type;
160 tree
161 complete_type_or_else (tree type, tree value)
163 return complete_type_or_maybe_complain (type, value, tf_warning_or_error);
166 /* Return truthvalue of whether type of EXP is instantiated. */
169 type_unknown_p (const_tree exp)
171 return (TREE_CODE (exp) == TREE_LIST
172 || TREE_TYPE (exp) == unknown_type_node);
176 /* Return the common type of two parameter lists.
177 We assume that comptypes has already been done and returned 1;
178 if that isn't so, this may crash.
180 As an optimization, free the space we allocate if the parameter
181 lists are already common. */
183 static tree
184 commonparms (tree p1, tree p2)
186 tree oldargs = p1, newargs, n;
187 int i, len;
188 int any_change = 0;
190 len = list_length (p1);
191 newargs = tree_last (p1);
193 if (newargs == void_list_node)
194 i = 1;
195 else
197 i = 0;
198 newargs = 0;
201 for (; i < len; i++)
202 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
204 n = newargs;
206 for (i = 0; p1;
207 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
209 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
211 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
212 any_change = 1;
214 else if (! TREE_PURPOSE (p1))
216 if (TREE_PURPOSE (p2))
218 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
219 any_change = 1;
222 else
224 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
225 any_change = 1;
226 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
228 if (TREE_VALUE (p1) != TREE_VALUE (p2))
230 any_change = 1;
231 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
233 else
234 TREE_VALUE (n) = TREE_VALUE (p1);
236 if (! any_change)
237 return oldargs;
239 return newargs;
242 /* Given a type, perhaps copied for a typedef,
243 find the "original" version of it. */
244 static tree
245 original_type (tree t)
247 int quals = cp_type_quals (t);
248 while (t != error_mark_node
249 && TYPE_NAME (t) != NULL_TREE)
251 tree x = TYPE_NAME (t);
252 if (TREE_CODE (x) != TYPE_DECL)
253 break;
254 x = DECL_ORIGINAL_TYPE (x);
255 if (x == NULL_TREE)
256 break;
257 t = x;
259 return cp_build_qualified_type (t, quals);
262 /* Return the common type for two arithmetic types T1 and T2 under the
263 usual arithmetic conversions. The default conversions have already
264 been applied, and enumerated types converted to their compatible
265 integer types. */
267 static tree
268 cp_common_type (tree t1, tree t2)
270 enum tree_code code1 = TREE_CODE (t1);
271 enum tree_code code2 = TREE_CODE (t2);
272 tree attributes;
275 /* In what follows, we slightly generalize the rules given in [expr] so
276 as to deal with `long long' and `complex'. First, merge the
277 attributes. */
278 attributes = (*targetm.merge_type_attributes) (t1, t2);
280 if (SCOPED_ENUM_P (t1) || SCOPED_ENUM_P (t2))
282 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
283 return build_type_attribute_variant (t1, attributes);
284 else
285 return NULL_TREE;
288 /* FIXME: Attributes. */
289 gcc_assert (ARITHMETIC_TYPE_P (t1)
290 || TREE_CODE (t1) == VECTOR_TYPE
291 || UNSCOPED_ENUM_P (t1));
292 gcc_assert (ARITHMETIC_TYPE_P (t2)
293 || TREE_CODE (t2) == VECTOR_TYPE
294 || UNSCOPED_ENUM_P (t2));
296 /* If one type is complex, form the common type of the non-complex
297 components, then make that complex. Use T1 or T2 if it is the
298 required type. */
299 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
301 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
302 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
303 tree subtype
304 = type_after_usual_arithmetic_conversions (subtype1, subtype2);
306 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
307 return build_type_attribute_variant (t1, attributes);
308 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
309 return build_type_attribute_variant (t2, attributes);
310 else
311 return build_type_attribute_variant (build_complex_type (subtype),
312 attributes);
315 if (code1 == VECTOR_TYPE)
317 /* When we get here we should have two vectors of the same size.
318 Just prefer the unsigned one if present. */
319 if (TYPE_UNSIGNED (t1))
320 return build_type_attribute_variant (t1, attributes);
321 else
322 return build_type_attribute_variant (t2, attributes);
325 /* If only one is real, use it as the result. */
326 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
327 return build_type_attribute_variant (t1, attributes);
328 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
329 return build_type_attribute_variant (t2, attributes);
331 /* Both real or both integers; use the one with greater precision. */
332 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
333 return build_type_attribute_variant (t1, attributes);
334 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
335 return build_type_attribute_variant (t2, attributes);
337 /* The types are the same; no need to do anything fancy. */
338 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
339 return build_type_attribute_variant (t1, attributes);
341 if (code1 != REAL_TYPE)
343 /* If one is unsigned long long, then convert the other to unsigned
344 long long. */
345 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_unsigned_type_node)
346 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_unsigned_type_node))
347 return build_type_attribute_variant (long_long_unsigned_type_node,
348 attributes);
349 /* If one is a long long, and the other is an unsigned long, and
350 long long can represent all the values of an unsigned long, then
351 convert to a long long. Otherwise, convert to an unsigned long
352 long. Otherwise, if either operand is long long, convert the
353 other to long long.
355 Since we're here, we know the TYPE_PRECISION is the same;
356 therefore converting to long long cannot represent all the values
357 of an unsigned long, so we choose unsigned long long in that
358 case. */
359 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_integer_type_node)
360 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_integer_type_node))
362 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
363 ? long_long_unsigned_type_node
364 : long_long_integer_type_node);
365 return build_type_attribute_variant (t, attributes);
367 if (int128_integer_type_node != NULL_TREE
368 && (same_type_p (TYPE_MAIN_VARIANT (t1),
369 int128_integer_type_node)
370 || same_type_p (TYPE_MAIN_VARIANT (t2),
371 int128_integer_type_node)))
373 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
374 ? int128_unsigned_type_node
375 : int128_integer_type_node);
376 return build_type_attribute_variant (t, attributes);
379 /* Go through the same procedure, but for longs. */
380 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_unsigned_type_node)
381 || same_type_p (TYPE_MAIN_VARIANT (t2), long_unsigned_type_node))
382 return build_type_attribute_variant (long_unsigned_type_node,
383 attributes);
384 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_integer_type_node)
385 || same_type_p (TYPE_MAIN_VARIANT (t2), long_integer_type_node))
387 tree t = ((TYPE_UNSIGNED (t1) || TYPE_UNSIGNED (t2))
388 ? long_unsigned_type_node : long_integer_type_node);
389 return build_type_attribute_variant (t, attributes);
391 /* Otherwise prefer the unsigned one. */
392 if (TYPE_UNSIGNED (t1))
393 return build_type_attribute_variant (t1, attributes);
394 else
395 return build_type_attribute_variant (t2, attributes);
397 else
399 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_double_type_node)
400 || same_type_p (TYPE_MAIN_VARIANT (t2), long_double_type_node))
401 return build_type_attribute_variant (long_double_type_node,
402 attributes);
403 if (same_type_p (TYPE_MAIN_VARIANT (t1), double_type_node)
404 || same_type_p (TYPE_MAIN_VARIANT (t2), double_type_node))
405 return build_type_attribute_variant (double_type_node,
406 attributes);
407 if (same_type_p (TYPE_MAIN_VARIANT (t1), float_type_node)
408 || same_type_p (TYPE_MAIN_VARIANT (t2), float_type_node))
409 return build_type_attribute_variant (float_type_node,
410 attributes);
412 /* Two floating-point types whose TYPE_MAIN_VARIANTs are none of
413 the standard C++ floating-point types. Logic earlier in this
414 function has already eliminated the possibility that
415 TYPE_PRECISION (t2) != TYPE_PRECISION (t1), so there's no
416 compelling reason to choose one or the other. */
417 return build_type_attribute_variant (t1, attributes);
421 /* T1 and T2 are arithmetic or enumeration types. Return the type
422 that will result from the "usual arithmetic conversions" on T1 and
423 T2 as described in [expr]. */
425 tree
426 type_after_usual_arithmetic_conversions (tree t1, tree t2)
428 gcc_assert (ARITHMETIC_TYPE_P (t1)
429 || TREE_CODE (t1) == VECTOR_TYPE
430 || UNSCOPED_ENUM_P (t1));
431 gcc_assert (ARITHMETIC_TYPE_P (t2)
432 || TREE_CODE (t2) == VECTOR_TYPE
433 || UNSCOPED_ENUM_P (t2));
435 /* Perform the integral promotions. We do not promote real types here. */
436 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t1)
437 && INTEGRAL_OR_ENUMERATION_TYPE_P (t2))
439 t1 = type_promotes_to (t1);
440 t2 = type_promotes_to (t2);
443 return cp_common_type (t1, t2);
446 static void
447 composite_pointer_error (diagnostic_t kind, tree t1, tree t2,
448 composite_pointer_operation operation)
450 switch (operation)
452 case CPO_COMPARISON:
453 emit_diagnostic (kind, input_location, 0,
454 "comparison between "
455 "distinct pointer types %qT and %qT lacks a cast",
456 t1, t2);
457 break;
458 case CPO_CONVERSION:
459 emit_diagnostic (kind, input_location, 0,
460 "conversion between "
461 "distinct pointer types %qT and %qT lacks a cast",
462 t1, t2);
463 break;
464 case CPO_CONDITIONAL_EXPR:
465 emit_diagnostic (kind, input_location, 0,
466 "conditional expression between "
467 "distinct pointer types %qT and %qT lacks a cast",
468 t1, t2);
469 break;
470 default:
471 gcc_unreachable ();
475 /* Subroutine of composite_pointer_type to implement the recursive
476 case. See that function for documentation of the parameters. */
478 static tree
479 composite_pointer_type_r (tree t1, tree t2,
480 composite_pointer_operation operation,
481 tsubst_flags_t complain)
483 tree pointee1;
484 tree pointee2;
485 tree result_type;
486 tree attributes;
488 /* Determine the types pointed to by T1 and T2. */
489 if (TREE_CODE (t1) == POINTER_TYPE)
491 pointee1 = TREE_TYPE (t1);
492 pointee2 = TREE_TYPE (t2);
494 else
496 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
497 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
500 /* [expr.rel]
502 Otherwise, the composite pointer type is a pointer type
503 similar (_conv.qual_) to the type of one of the operands,
504 with a cv-qualification signature (_conv.qual_) that is the
505 union of the cv-qualification signatures of the operand
506 types. */
507 if (same_type_ignoring_top_level_qualifiers_p (pointee1, pointee2))
508 result_type = pointee1;
509 else if ((TREE_CODE (pointee1) == POINTER_TYPE
510 && TREE_CODE (pointee2) == POINTER_TYPE)
511 || (TYPE_PTR_TO_MEMBER_P (pointee1)
512 && TYPE_PTR_TO_MEMBER_P (pointee2)))
514 result_type = composite_pointer_type_r (pointee1, pointee2, operation,
515 complain);
516 if (result_type == error_mark_node)
517 return error_mark_node;
519 else
521 if (complain & tf_error)
522 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
523 else
524 return error_mark_node;
525 result_type = void_type_node;
527 result_type = cp_build_qualified_type (result_type,
528 (cp_type_quals (pointee1)
529 | cp_type_quals (pointee2)));
530 /* If the original types were pointers to members, so is the
531 result. */
532 if (TYPE_PTR_TO_MEMBER_P (t1))
534 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
535 TYPE_PTRMEM_CLASS_TYPE (t2)))
537 if (complain & tf_error)
538 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
539 else
540 return error_mark_node;
542 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
543 result_type);
545 else
546 result_type = build_pointer_type (result_type);
548 /* Merge the attributes. */
549 attributes = (*targetm.merge_type_attributes) (t1, t2);
550 return build_type_attribute_variant (result_type, attributes);
553 /* Return the composite pointer type (see [expr.rel]) for T1 and T2.
554 ARG1 and ARG2 are the values with those types. The OPERATION is to
555 describe the operation between the pointer types,
556 in case an error occurs.
558 This routine also implements the computation of a common type for
559 pointers-to-members as per [expr.eq]. */
561 tree
562 composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
563 composite_pointer_operation operation,
564 tsubst_flags_t complain)
566 tree class1;
567 tree class2;
569 /* [expr.rel]
571 If one operand is a null pointer constant, the composite pointer
572 type is the type of the other operand. */
573 if (null_ptr_cst_p (arg1))
574 return t2;
575 if (null_ptr_cst_p (arg2))
576 return t1;
578 /* We have:
580 [expr.rel]
582 If one of the operands has type "pointer to cv1 void*", then
583 the other has type "pointer to cv2T", and the composite pointer
584 type is "pointer to cv12 void", where cv12 is the union of cv1
585 and cv2.
587 If either type is a pointer to void, make sure it is T1. */
588 if (TREE_CODE (t2) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t2)))
590 tree t;
591 t = t1;
592 t1 = t2;
593 t2 = t;
596 /* Now, if T1 is a pointer to void, merge the qualifiers. */
597 if (TREE_CODE (t1) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t1)))
599 tree attributes;
600 tree result_type;
602 if (TYPE_PTRFN_P (t2) && (complain & tf_error))
604 switch (operation)
606 case CPO_COMPARISON:
607 pedwarn (input_location, OPT_pedantic,
608 "ISO C++ forbids comparison between "
609 "pointer of type %<void *%> and pointer-to-function");
610 break;
611 case CPO_CONVERSION:
612 pedwarn (input_location, OPT_pedantic,
613 "ISO C++ forbids conversion between "
614 "pointer of type %<void *%> and pointer-to-function");
615 break;
616 case CPO_CONDITIONAL_EXPR:
617 pedwarn (input_location, OPT_pedantic,
618 "ISO C++ forbids conditional expression between "
619 "pointer of type %<void *%> and pointer-to-function");
620 break;
621 default:
622 gcc_unreachable ();
625 result_type
626 = cp_build_qualified_type (void_type_node,
627 (cp_type_quals (TREE_TYPE (t1))
628 | cp_type_quals (TREE_TYPE (t2))));
629 result_type = build_pointer_type (result_type);
630 /* Merge the attributes. */
631 attributes = (*targetm.merge_type_attributes) (t1, t2);
632 return build_type_attribute_variant (result_type, attributes);
635 if (c_dialect_objc () && TREE_CODE (t1) == POINTER_TYPE
636 && TREE_CODE (t2) == POINTER_TYPE)
638 if (objc_have_common_type (t1, t2, -3, NULL_TREE))
639 return objc_common_type (t1, t2);
642 /* [expr.eq] permits the application of a pointer conversion to
643 bring the pointers to a common type. */
644 if (TREE_CODE (t1) == POINTER_TYPE && TREE_CODE (t2) == POINTER_TYPE
645 && CLASS_TYPE_P (TREE_TYPE (t1))
646 && CLASS_TYPE_P (TREE_TYPE (t2))
647 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
648 TREE_TYPE (t2)))
650 class1 = TREE_TYPE (t1);
651 class2 = TREE_TYPE (t2);
653 if (DERIVED_FROM_P (class1, class2))
654 t2 = (build_pointer_type
655 (cp_build_qualified_type (class1, cp_type_quals (class2))));
656 else if (DERIVED_FROM_P (class2, class1))
657 t1 = (build_pointer_type
658 (cp_build_qualified_type (class2, cp_type_quals (class1))));
659 else
661 if (complain & tf_error)
662 composite_pointer_error (DK_ERROR, t1, t2, operation);
663 return error_mark_node;
666 /* [expr.eq] permits the application of a pointer-to-member
667 conversion to change the class type of one of the types. */
668 else if (TYPE_PTR_TO_MEMBER_P (t1)
669 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
670 TYPE_PTRMEM_CLASS_TYPE (t2)))
672 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
673 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
675 if (DERIVED_FROM_P (class1, class2))
676 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
677 else if (DERIVED_FROM_P (class2, class1))
678 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
679 else
681 if (complain & tf_error)
682 switch (operation)
684 case CPO_COMPARISON:
685 error ("comparison between distinct "
686 "pointer-to-member types %qT and %qT lacks a cast",
687 t1, t2);
688 break;
689 case CPO_CONVERSION:
690 error ("conversion between distinct "
691 "pointer-to-member types %qT and %qT lacks a cast",
692 t1, t2);
693 break;
694 case CPO_CONDITIONAL_EXPR:
695 error ("conditional expression between distinct "
696 "pointer-to-member types %qT and %qT lacks a cast",
697 t1, t2);
698 break;
699 default:
700 gcc_unreachable ();
702 return error_mark_node;
706 return composite_pointer_type_r (t1, t2, operation, complain);
709 /* Return the merged type of two types.
710 We assume that comptypes has already been done and returned 1;
711 if that isn't so, this may crash.
713 This just combines attributes and default arguments; any other
714 differences would cause the two types to compare unalike. */
716 tree
717 merge_types (tree t1, tree t2)
719 enum tree_code code1;
720 enum tree_code code2;
721 tree attributes;
723 /* Save time if the two types are the same. */
724 if (t1 == t2)
725 return t1;
726 if (original_type (t1) == original_type (t2))
727 return t1;
729 /* If one type is nonsense, use the other. */
730 if (t1 == error_mark_node)
731 return t2;
732 if (t2 == error_mark_node)
733 return t1;
735 /* Merge the attributes. */
736 attributes = (*targetm.merge_type_attributes) (t1, t2);
738 if (TYPE_PTRMEMFUNC_P (t1))
739 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
740 if (TYPE_PTRMEMFUNC_P (t2))
741 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
743 code1 = TREE_CODE (t1);
744 code2 = TREE_CODE (t2);
745 if (code1 != code2)
747 gcc_assert (code1 == TYPENAME_TYPE || code2 == TYPENAME_TYPE);
748 if (code1 == TYPENAME_TYPE)
750 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
751 code1 = TREE_CODE (t1);
753 else
755 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
756 code2 = TREE_CODE (t2);
760 switch (code1)
762 case POINTER_TYPE:
763 case REFERENCE_TYPE:
764 /* For two pointers, do this recursively on the target type. */
766 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
767 int quals = cp_type_quals (t1);
769 if (code1 == POINTER_TYPE)
770 t1 = build_pointer_type (target);
771 else
772 t1 = cp_build_reference_type (target, TYPE_REF_IS_RVALUE (t1));
773 t1 = build_type_attribute_variant (t1, attributes);
774 t1 = cp_build_qualified_type (t1, quals);
776 if (TREE_CODE (target) == METHOD_TYPE)
777 t1 = build_ptrmemfunc_type (t1);
779 return t1;
782 case OFFSET_TYPE:
784 int quals;
785 tree pointee;
786 quals = cp_type_quals (t1);
787 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
788 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
789 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
790 pointee);
791 t1 = cp_build_qualified_type (t1, quals);
792 break;
795 case ARRAY_TYPE:
797 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
798 /* Save space: see if the result is identical to one of the args. */
799 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
800 return build_type_attribute_variant (t1, attributes);
801 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
802 return build_type_attribute_variant (t2, attributes);
803 /* Merge the element types, and have a size if either arg has one. */
804 t1 = build_cplus_array_type
805 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
806 break;
809 case FUNCTION_TYPE:
810 /* Function types: prefer the one that specified arg types.
811 If both do, merge the arg types. Also merge the return types. */
813 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
814 tree p1 = TYPE_ARG_TYPES (t1);
815 tree p2 = TYPE_ARG_TYPES (t2);
816 tree parms;
817 tree rval, raises;
819 /* Save space: see if the result is identical to one of the args. */
820 if (valtype == TREE_TYPE (t1) && ! p2)
821 return cp_build_type_attribute_variant (t1, attributes);
822 if (valtype == TREE_TYPE (t2) && ! p1)
823 return cp_build_type_attribute_variant (t2, attributes);
825 /* Simple way if one arg fails to specify argument types. */
826 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
827 parms = p2;
828 else if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
829 parms = p1;
830 else
831 parms = commonparms (p1, p2);
833 rval = build_function_type (valtype, parms);
834 gcc_assert (type_memfn_quals (t1) == type_memfn_quals (t2));
835 rval = apply_memfn_quals (rval, type_memfn_quals (t1));
836 raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
837 TYPE_RAISES_EXCEPTIONS (t2),
838 NULL_TREE);
839 t1 = build_exception_variant (rval, raises);
840 break;
843 case METHOD_TYPE:
845 /* Get this value the long way, since TYPE_METHOD_BASETYPE
846 is just the main variant of this. */
847 tree basetype = class_of_this_parm (t2);
848 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
849 TYPE_RAISES_EXCEPTIONS (t2),
850 NULL_TREE);
851 tree t3;
853 /* If this was a member function type, get back to the
854 original type of type member function (i.e., without
855 the class instance variable up front. */
856 t1 = build_function_type (TREE_TYPE (t1),
857 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
858 t2 = build_function_type (TREE_TYPE (t2),
859 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
860 t3 = merge_types (t1, t2);
861 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
862 TYPE_ARG_TYPES (t3));
863 t1 = build_exception_variant (t3, raises);
864 break;
867 case TYPENAME_TYPE:
868 /* There is no need to merge attributes into a TYPENAME_TYPE.
869 When the type is instantiated it will have whatever
870 attributes result from the instantiation. */
871 return t1;
873 default:;
876 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
877 return t1;
878 else if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
879 return t2;
880 else
881 return cp_build_type_attribute_variant (t1, attributes);
884 /* Return the ARRAY_TYPE type without its domain. */
886 tree
887 strip_array_domain (tree type)
889 tree t2;
890 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
891 if (TYPE_DOMAIN (type) == NULL_TREE)
892 return type;
893 t2 = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
894 return cp_build_type_attribute_variant (t2, TYPE_ATTRIBUTES (type));
897 /* Wrapper around cp_common_type that is used by c-common.c and other
898 front end optimizations that remove promotions.
900 Return the common type for two arithmetic types T1 and T2 under the
901 usual arithmetic conversions. The default conversions have already
902 been applied, and enumerated types converted to their compatible
903 integer types. */
905 tree
906 common_type (tree t1, tree t2)
908 /* If one type is nonsense, use the other */
909 if (t1 == error_mark_node)
910 return t2;
911 if (t2 == error_mark_node)
912 return t1;
914 return cp_common_type (t1, t2);
917 /* Return the common type of two pointer types T1 and T2. This is the
918 type for the result of most arithmetic operations if the operands
919 have the given two types.
921 We assume that comp_target_types has already been done and returned
922 nonzero; if that isn't so, this may crash. */
924 tree
925 common_pointer_type (tree t1, tree t2)
927 gcc_assert ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
928 || (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
929 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)));
931 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
932 CPO_CONVERSION, tf_warning_or_error);
935 /* Compare two exception specifier types for exactness or subsetness, if
936 allowed. Returns false for mismatch, true for match (same, or
937 derived and !exact).
939 [except.spec] "If a class X ... objects of class X or any class publicly
940 and unambiguously derived from X. Similarly, if a pointer type Y * ...
941 exceptions of type Y * or that are pointers to any type publicly and
942 unambiguously derived from Y. Otherwise a function only allows exceptions
943 that have the same type ..."
944 This does not mention cv qualifiers and is different to what throw
945 [except.throw] and catch [except.catch] will do. They will ignore the
946 top level cv qualifiers, and allow qualifiers in the pointer to class
947 example.
949 We implement the letter of the standard. */
951 static bool
952 comp_except_types (tree a, tree b, bool exact)
954 if (same_type_p (a, b))
955 return true;
956 else if (!exact)
958 if (cp_type_quals (a) || cp_type_quals (b))
959 return false;
961 if (TREE_CODE (a) == POINTER_TYPE
962 && TREE_CODE (b) == POINTER_TYPE)
964 a = TREE_TYPE (a);
965 b = TREE_TYPE (b);
966 if (cp_type_quals (a) || cp_type_quals (b))
967 return false;
970 if (TREE_CODE (a) != RECORD_TYPE
971 || TREE_CODE (b) != RECORD_TYPE)
972 return false;
974 if (PUBLICLY_UNIQUELY_DERIVED_P (a, b))
975 return true;
977 return false;
980 /* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
981 If EXACT is ce_derived, T2 can be stricter than T1 (according to 15.4/5).
982 If EXACT is ce_normal, the compatibility rules in 15.4/3 apply.
983 If EXACT is ce_exact, the specs must be exactly the same. Exception lists
984 are unordered, but we've already filtered out duplicates. Most lists will
985 be in order, we should try to make use of that. */
987 bool
988 comp_except_specs (const_tree t1, const_tree t2, int exact)
990 const_tree probe;
991 const_tree base;
992 int length = 0;
994 if (t1 == t2)
995 return true;
997 /* First handle noexcept. */
998 if (exact < ce_exact)
1000 /* noexcept(false) is compatible with no exception-specification,
1001 and stricter than any spec. */
1002 if (t1 == noexcept_false_spec)
1003 return t2 == NULL_TREE || exact == ce_derived;
1004 /* Even a derived noexcept(false) is compatible with no
1005 exception-specification. */
1006 if (t2 == noexcept_false_spec)
1007 return t1 == NULL_TREE;
1009 /* Otherwise, if we aren't looking for an exact match, noexcept is
1010 equivalent to throw(). */
1011 if (t1 == noexcept_true_spec)
1012 t1 = empty_except_spec;
1013 if (t2 == noexcept_true_spec)
1014 t2 = empty_except_spec;
1017 /* If any noexcept is left, it is only comparable to itself;
1018 either we're looking for an exact match or we're redeclaring a
1019 template with dependent noexcept. */
1020 if ((t1 && TREE_PURPOSE (t1))
1021 || (t2 && TREE_PURPOSE (t2)))
1022 return (t1 && t2
1023 && cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)));
1025 if (t1 == NULL_TREE) /* T1 is ... */
1026 return t2 == NULL_TREE || exact == ce_derived;
1027 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
1028 return t2 != NULL_TREE && !TREE_VALUE (t2);
1029 if (t2 == NULL_TREE) /* T2 is ... */
1030 return false;
1031 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
1032 return exact == ce_derived;
1034 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
1035 Count how many we find, to determine exactness. For exact matching and
1036 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
1037 O(nm). */
1038 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
1040 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
1042 tree a = TREE_VALUE (probe);
1043 tree b = TREE_VALUE (t2);
1045 if (comp_except_types (a, b, exact))
1047 if (probe == base && exact > ce_derived)
1048 base = TREE_CHAIN (probe);
1049 length++;
1050 break;
1053 if (probe == NULL_TREE)
1054 return false;
1056 return exact == ce_derived || base == NULL_TREE || length == list_length (t1);
1059 /* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
1060 [] can match [size]. */
1062 static bool
1063 comp_array_types (const_tree t1, const_tree t2, bool allow_redeclaration)
1065 tree d1;
1066 tree d2;
1067 tree max1, max2;
1069 if (t1 == t2)
1070 return true;
1072 /* The type of the array elements must be the same. */
1073 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1074 return false;
1076 d1 = TYPE_DOMAIN (t1);
1077 d2 = TYPE_DOMAIN (t2);
1079 if (d1 == d2)
1080 return true;
1082 /* If one of the arrays is dimensionless, and the other has a
1083 dimension, they are of different types. However, it is valid to
1084 write:
1086 extern int a[];
1087 int a[3];
1089 by [basic.link]:
1091 declarations for an array object can specify
1092 array types that differ by the presence or absence of a major
1093 array bound (_dcl.array_). */
1094 if (!d1 || !d2)
1095 return allow_redeclaration;
1097 /* Check that the dimensions are the same. */
1099 if (!cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2)))
1100 return false;
1101 max1 = TYPE_MAX_VALUE (d1);
1102 max2 = TYPE_MAX_VALUE (d2);
1103 if (processing_template_decl && !abi_version_at_least (2)
1104 && !value_dependent_expression_p (max1)
1105 && !value_dependent_expression_p (max2))
1107 /* With abi-1 we do not fold non-dependent array bounds, (and
1108 consequently mangle them incorrectly). We must therefore
1109 fold them here, to verify the domains have the same
1110 value. */
1111 max1 = fold (max1);
1112 max2 = fold (max2);
1115 if (!cp_tree_equal (max1, max2))
1116 return false;
1118 return true;
1121 /* Compare the relative position of T1 and T2 into their respective
1122 template parameter list.
1123 T1 and T2 must be template parameter types.
1124 Return TRUE if T1 and T2 have the same position, FALSE otherwise. */
1126 static bool
1127 comp_template_parms_position (tree t1, tree t2)
1129 tree index1, index2;
1130 gcc_assert (t1 && t2
1131 && TREE_CODE (t1) == TREE_CODE (t2)
1132 && (TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM
1133 || TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM
1134 || TREE_CODE (t1) == TEMPLATE_TYPE_PARM));
1136 index1 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t1));
1137 index2 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t2));
1139 /* If T1 and T2 belong to template parm lists of different size,
1140 let's assume they are different. */
1141 if (TEMPLATE_PARM_NUM_SIBLINGS (index1)
1142 != TEMPLATE_PARM_NUM_SIBLINGS (index2))
1143 return false;
1145 /* Then compare their relative position. */
1146 if (TEMPLATE_PARM_IDX (index1) != TEMPLATE_PARM_IDX (index2)
1147 || TEMPLATE_PARM_LEVEL (index1) != TEMPLATE_PARM_LEVEL (index2)
1148 || (TEMPLATE_PARM_PARAMETER_PACK (index1)
1149 != TEMPLATE_PARM_PARAMETER_PACK (index2)))
1150 return false;
1152 return true;
1155 /* Subroutine in comptypes. */
1157 static bool
1158 structural_comptypes (tree t1, tree t2, int strict)
1160 if (t1 == t2)
1161 return true;
1163 /* Suppress errors caused by previously reported errors. */
1164 if (t1 == error_mark_node || t2 == error_mark_node)
1165 return false;
1167 gcc_assert (TYPE_P (t1) && TYPE_P (t2));
1169 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
1170 current instantiation. */
1171 if (TREE_CODE (t1) == TYPENAME_TYPE)
1172 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
1174 if (TREE_CODE (t2) == TYPENAME_TYPE)
1175 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
1177 if (TYPE_PTRMEMFUNC_P (t1))
1178 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
1179 if (TYPE_PTRMEMFUNC_P (t2))
1180 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
1182 /* Different classes of types can't be compatible. */
1183 if (TREE_CODE (t1) != TREE_CODE (t2))
1184 return false;
1186 /* Qualifiers must match. For array types, we will check when we
1187 recur on the array element types. */
1188 if (TREE_CODE (t1) != ARRAY_TYPE
1189 && cp_type_quals (t1) != cp_type_quals (t2))
1190 return false;
1191 if (TREE_CODE (t1) == FUNCTION_TYPE
1192 && type_memfn_quals (t1) != type_memfn_quals (t2))
1193 return false;
1194 if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2))
1195 return false;
1197 /* Allow for two different type nodes which have essentially the same
1198 definition. Note that we already checked for equality of the type
1199 qualifiers (just above). */
1201 if (TREE_CODE (t1) != ARRAY_TYPE
1202 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1203 return true;
1206 /* Compare the types. Break out if they could be the same. */
1207 switch (TREE_CODE (t1))
1209 case VOID_TYPE:
1210 case BOOLEAN_TYPE:
1211 /* All void and bool types are the same. */
1212 break;
1214 case INTEGER_TYPE:
1215 case FIXED_POINT_TYPE:
1216 case REAL_TYPE:
1217 /* With these nodes, we can't determine type equivalence by
1218 looking at what is stored in the nodes themselves, because
1219 two nodes might have different TYPE_MAIN_VARIANTs but still
1220 represent the same type. For example, wchar_t and int could
1221 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1222 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1223 and are distinct types. On the other hand, int and the
1224 following typedef
1226 typedef int INT __attribute((may_alias));
1228 have identical properties, different TYPE_MAIN_VARIANTs, but
1229 represent the same type. The canonical type system keeps
1230 track of equivalence in this case, so we fall back on it. */
1231 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1233 case TEMPLATE_TEMPLATE_PARM:
1234 case BOUND_TEMPLATE_TEMPLATE_PARM:
1235 if (!comp_template_parms_position (t1, t2))
1236 return false;
1237 if (!comp_template_parms
1238 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
1239 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
1240 return false;
1241 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
1242 break;
1243 /* Don't check inheritance. */
1244 strict = COMPARE_STRICT;
1245 /* Fall through. */
1247 case RECORD_TYPE:
1248 case UNION_TYPE:
1249 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
1250 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
1251 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
1252 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
1253 break;
1255 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
1256 break;
1257 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
1258 break;
1260 return false;
1262 case OFFSET_TYPE:
1263 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
1264 strict & ~COMPARE_REDECLARATION))
1265 return false;
1266 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1267 return false;
1268 break;
1270 case REFERENCE_TYPE:
1271 if (TYPE_REF_IS_RVALUE (t1) != TYPE_REF_IS_RVALUE (t2))
1272 return false;
1273 /* fall through to checks for pointer types */
1275 case POINTER_TYPE:
1276 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1277 || TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2)
1278 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1279 return false;
1280 break;
1282 case METHOD_TYPE:
1283 case FUNCTION_TYPE:
1284 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1285 return false;
1286 if (!compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2)))
1287 return false;
1288 break;
1290 case ARRAY_TYPE:
1291 /* Target types must match incl. qualifiers. */
1292 if (!comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION)))
1293 return false;
1294 break;
1296 case TEMPLATE_TYPE_PARM:
1297 /* If T1 and T2 don't have the same relative position in their
1298 template parameters set, they can't be equal. */
1299 if (!comp_template_parms_position (t1, t2))
1300 return false;
1301 break;
1303 case TYPENAME_TYPE:
1304 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1305 TYPENAME_TYPE_FULLNAME (t2)))
1306 return false;
1307 /* Qualifiers don't matter on scopes. */
1308 if (!same_type_ignoring_top_level_qualifiers_p (TYPE_CONTEXT (t1),
1309 TYPE_CONTEXT (t2)))
1310 return false;
1311 break;
1313 case UNBOUND_CLASS_TEMPLATE:
1314 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1315 return false;
1316 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1317 return false;
1318 break;
1320 case COMPLEX_TYPE:
1321 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1322 return false;
1323 break;
1325 case VECTOR_TYPE:
1326 if (TYPE_VECTOR_SUBPARTS (t1) != TYPE_VECTOR_SUBPARTS (t2)
1327 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1328 return false;
1329 break;
1331 case TYPE_PACK_EXPANSION:
1332 return same_type_p (PACK_EXPANSION_PATTERN (t1),
1333 PACK_EXPANSION_PATTERN (t2));
1335 case DECLTYPE_TYPE:
1336 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1337 != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1338 || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1339 != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1340 || (DECLTYPE_FOR_LAMBDA_PROXY (t1)
1341 != DECLTYPE_FOR_LAMBDA_PROXY (t2))
1342 || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1),
1343 DECLTYPE_TYPE_EXPR (t2)))
1344 return false;
1345 break;
1347 case UNDERLYING_TYPE:
1348 return same_type_p (UNDERLYING_TYPE_TYPE (t1),
1349 UNDERLYING_TYPE_TYPE (t2));
1351 default:
1352 return false;
1355 /* If we get here, we know that from a target independent POV the
1356 types are the same. Make sure the target attributes are also
1357 the same. */
1358 return comp_type_attributes (t1, t2);
1361 /* Return true if T1 and T2 are related as allowed by STRICT. STRICT
1362 is a bitwise-or of the COMPARE_* flags. */
1364 bool
1365 comptypes (tree t1, tree t2, int strict)
1367 if (strict == COMPARE_STRICT)
1369 if (t1 == t2)
1370 return true;
1372 if (t1 == error_mark_node || t2 == error_mark_node)
1373 return false;
1375 if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1376 /* At least one of the types requires structural equality, so
1377 perform a deep check. */
1378 return structural_comptypes (t1, t2, strict);
1380 #ifdef ENABLE_CHECKING
1381 if (USE_CANONICAL_TYPES)
1383 bool result = structural_comptypes (t1, t2, strict);
1385 if (result && TYPE_CANONICAL (t1) != TYPE_CANONICAL (t2))
1386 /* The two types are structurally equivalent, but their
1387 canonical types were different. This is a failure of the
1388 canonical type propagation code.*/
1389 internal_error
1390 ("canonical types differ for identical types %T and %T",
1391 t1, t2);
1392 else if (!result && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
1393 /* Two types are structurally different, but the canonical
1394 types are the same. This means we were over-eager in
1395 assigning canonical types. */
1396 internal_error
1397 ("same canonical type node for different types %T and %T",
1398 t1, t2);
1400 return result;
1402 #else
1403 if (USE_CANONICAL_TYPES)
1404 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1405 #endif
1406 else
1407 return structural_comptypes (t1, t2, strict);
1409 else if (strict == COMPARE_STRUCTURAL)
1410 return structural_comptypes (t1, t2, COMPARE_STRICT);
1411 else
1412 return structural_comptypes (t1, t2, strict);
1415 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1416 top-level qualifiers. */
1418 bool
1419 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1421 if (type1 == error_mark_node || type2 == error_mark_node)
1422 return false;
1424 return same_type_p (TYPE_MAIN_VARIANT (type1), TYPE_MAIN_VARIANT (type2));
1427 /* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1429 bool
1430 at_least_as_qualified_p (const_tree type1, const_tree type2)
1432 int q1 = cp_type_quals (type1);
1433 int q2 = cp_type_quals (type2);
1435 /* All qualifiers for TYPE2 must also appear in TYPE1. */
1436 return (q1 & q2) == q2;
1439 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1440 more cv-qualified that TYPE1, and 0 otherwise. */
1443 comp_cv_qualification (const_tree type1, const_tree type2)
1445 int q1 = cp_type_quals (type1);
1446 int q2 = cp_type_quals (type2);
1448 if (q1 == q2)
1449 return 0;
1451 if ((q1 & q2) == q2)
1452 return 1;
1453 else if ((q1 & q2) == q1)
1454 return -1;
1456 return 0;
1459 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1460 subset of the cv-qualification signature of TYPE2, and the types
1461 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1464 comp_cv_qual_signature (tree type1, tree type2)
1466 if (comp_ptr_ttypes_real (type2, type1, -1))
1467 return 1;
1468 else if (comp_ptr_ttypes_real (type1, type2, -1))
1469 return -1;
1470 else
1471 return 0;
1474 /* Subroutines of `comptypes'. */
1476 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1477 equivalent in the sense that functions with those parameter types
1478 can have equivalent types. The two lists must be equivalent,
1479 element by element. */
1481 bool
1482 compparms (const_tree parms1, const_tree parms2)
1484 const_tree t1, t2;
1486 /* An unspecified parmlist matches any specified parmlist
1487 whose argument types don't need default promotions. */
1489 for (t1 = parms1, t2 = parms2;
1490 t1 || t2;
1491 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1493 /* If one parmlist is shorter than the other,
1494 they fail to match. */
1495 if (!t1 || !t2)
1496 return false;
1497 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1498 return false;
1500 return true;
1504 /* Process a sizeof or alignof expression where the operand is a
1505 type. */
1507 tree
1508 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
1510 tree value;
1511 bool dependent_p;
1513 gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1514 if (type == error_mark_node)
1515 return error_mark_node;
1517 type = non_reference (type);
1518 if (TREE_CODE (type) == METHOD_TYPE)
1520 if (complain)
1521 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
1522 "invalid application of %qs to a member function",
1523 operator_name_info[(int) op].name);
1524 value = size_one_node;
1527 dependent_p = dependent_type_p (type);
1528 if (!dependent_p)
1529 complete_type (type);
1530 if (dependent_p
1531 /* VLA types will have a non-constant size. In the body of an
1532 uninstantiated template, we don't need to try to compute the
1533 value, because the sizeof expression is not an integral
1534 constant expression in that case. And, if we do try to
1535 compute the value, we'll likely end up with SAVE_EXPRs, which
1536 the template substitution machinery does not expect to see. */
1537 || (processing_template_decl
1538 && COMPLETE_TYPE_P (type)
1539 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1541 value = build_min (op, size_type_node, type);
1542 TREE_READONLY (value) = 1;
1543 return value;
1546 return c_sizeof_or_alignof_type (input_location, complete_type (type),
1547 op == SIZEOF_EXPR,
1548 complain);
1551 /* Return the size of the type, without producing any warnings for
1552 types whose size cannot be taken. This routine should be used only
1553 in some other routine that has already produced a diagnostic about
1554 using the size of such a type. */
1555 tree
1556 cxx_sizeof_nowarn (tree type)
1558 if (TREE_CODE (type) == FUNCTION_TYPE
1559 || TREE_CODE (type) == VOID_TYPE
1560 || TREE_CODE (type) == ERROR_MARK)
1561 return size_one_node;
1562 else if (!COMPLETE_TYPE_P (type))
1563 return size_zero_node;
1564 else
1565 return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false);
1568 /* Process a sizeof expression where the operand is an expression. */
1570 static tree
1571 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1573 if (e == error_mark_node)
1574 return error_mark_node;
1576 if (processing_template_decl)
1578 e = build_min (SIZEOF_EXPR, size_type_node, e);
1579 TREE_SIDE_EFFECTS (e) = 0;
1580 TREE_READONLY (e) = 1;
1582 return e;
1585 /* To get the size of a static data member declared as an array of
1586 unknown bound, we need to instantiate it. */
1587 if (TREE_CODE (e) == VAR_DECL
1588 && VAR_HAD_UNKNOWN_BOUND (e)
1589 && DECL_TEMPLATE_INSTANTIATION (e))
1590 instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1592 e = mark_type_use (e);
1594 if (TREE_CODE (e) == COMPONENT_REF
1595 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1596 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1598 if (complain & tf_error)
1599 error ("invalid application of %<sizeof%> to a bit-field");
1600 else
1601 return error_mark_node;
1602 e = char_type_node;
1604 else if (is_overloaded_fn (e))
1606 if (complain & tf_error)
1607 permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1608 "function type");
1609 else
1610 return error_mark_node;
1611 e = char_type_node;
1613 else if (type_unknown_p (e))
1615 if (complain & tf_error)
1616 cxx_incomplete_type_error (e, TREE_TYPE (e));
1617 else
1618 return error_mark_node;
1619 e = char_type_node;
1621 else
1622 e = TREE_TYPE (e);
1624 return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, complain & tf_error);
1627 /* Implement the __alignof keyword: Return the minimum required
1628 alignment of E, measured in bytes. For VAR_DECL's and
1629 FIELD_DECL's return DECL_ALIGN (which can be set from an
1630 "aligned" __attribute__ specification). */
1632 static tree
1633 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1635 tree t;
1637 if (e == error_mark_node)
1638 return error_mark_node;
1640 if (processing_template_decl)
1642 e = build_min (ALIGNOF_EXPR, size_type_node, e);
1643 TREE_SIDE_EFFECTS (e) = 0;
1644 TREE_READONLY (e) = 1;
1646 return e;
1649 e = mark_type_use (e);
1651 if (TREE_CODE (e) == VAR_DECL)
1652 t = size_int (DECL_ALIGN_UNIT (e));
1653 else if (TREE_CODE (e) == COMPONENT_REF
1654 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1655 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1657 if (complain & tf_error)
1658 error ("invalid application of %<__alignof%> to a bit-field");
1659 else
1660 return error_mark_node;
1661 t = size_one_node;
1663 else if (TREE_CODE (e) == COMPONENT_REF
1664 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1665 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1666 else if (is_overloaded_fn (e))
1668 if (complain & tf_error)
1669 permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1670 "function type");
1671 else
1672 return error_mark_node;
1673 if (TREE_CODE (e) == FUNCTION_DECL)
1674 t = size_int (DECL_ALIGN_UNIT (e));
1675 else
1676 t = size_one_node;
1678 else if (type_unknown_p (e))
1680 if (complain & tf_error)
1681 cxx_incomplete_type_error (e, TREE_TYPE (e));
1682 else
1683 return error_mark_node;
1684 t = size_one_node;
1686 else
1687 return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR,
1688 complain & tf_error);
1690 return fold_convert (size_type_node, t);
1693 /* Process a sizeof or alignof expression E with code OP where the operand
1694 is an expression. */
1696 tree
1697 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1699 if (op == SIZEOF_EXPR)
1700 return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1701 else
1702 return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1705 /* EXPR is being used in a context that is not a function call.
1706 Enforce:
1708 [expr.ref]
1710 The expression can be used only as the left-hand operand of a
1711 member function call.
1713 [expr.mptr.operator]
1715 If the result of .* or ->* is a function, then that result can be
1716 used only as the operand for the function call operator ().
1718 by issuing an error message if appropriate. Returns true iff EXPR
1719 violates these rules. */
1721 bool
1722 invalid_nonstatic_memfn_p (const_tree expr, tsubst_flags_t complain)
1724 if (expr && DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1726 if (complain & tf_error)
1727 error ("invalid use of non-static member function");
1728 return true;
1730 return false;
1733 /* If EXP is a reference to a bitfield, and the type of EXP does not
1734 match the declared type of the bitfield, return the declared type
1735 of the bitfield. Otherwise, return NULL_TREE. */
1737 tree
1738 is_bitfield_expr_with_lowered_type (const_tree exp)
1740 switch (TREE_CODE (exp))
1742 case COND_EXPR:
1743 if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1744 ? TREE_OPERAND (exp, 1)
1745 : TREE_OPERAND (exp, 0)))
1746 return NULL_TREE;
1747 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1749 case COMPOUND_EXPR:
1750 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1752 case MODIFY_EXPR:
1753 case SAVE_EXPR:
1754 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1756 case COMPONENT_REF:
1758 tree field;
1760 field = TREE_OPERAND (exp, 1);
1761 if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1762 return NULL_TREE;
1763 if (same_type_ignoring_top_level_qualifiers_p
1764 (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1765 return NULL_TREE;
1766 return DECL_BIT_FIELD_TYPE (field);
1769 CASE_CONVERT:
1770 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1771 == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1772 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1773 /* Fallthrough. */
1775 default:
1776 return NULL_TREE;
1780 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1781 bitfield with a lowered type, the type of EXP is returned, rather
1782 than NULL_TREE. */
1784 tree
1785 unlowered_expr_type (const_tree exp)
1787 tree type;
1788 tree etype = TREE_TYPE (exp);
1790 type = is_bitfield_expr_with_lowered_type (exp);
1791 if (type)
1792 type = cp_build_qualified_type (type, cp_type_quals (etype));
1793 else
1794 type = etype;
1796 return type;
1799 /* Perform the conversions in [expr] that apply when an lvalue appears
1800 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1801 function-to-pointer conversions. In addition, manifest constants
1802 are replaced by their values, and bitfield references are converted
1803 to their declared types. Note that this function does not perform the
1804 lvalue-to-rvalue conversion for class types. If you need that conversion
1805 to for class types, then you probably need to use force_rvalue.
1807 Although the returned value is being used as an rvalue, this
1808 function does not wrap the returned expression in a
1809 NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1810 that the return value is no longer an lvalue. */
1812 tree
1813 decay_conversion (tree exp)
1815 tree type;
1816 enum tree_code code;
1818 type = TREE_TYPE (exp);
1819 if (type == error_mark_node)
1820 return error_mark_node;
1822 exp = mark_rvalue_use (exp);
1824 exp = resolve_nondeduced_context (exp);
1825 if (type_unknown_p (exp))
1827 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
1828 return error_mark_node;
1831 /* FIXME remove? at least need to remember that this isn't really a
1832 constant expression if EXP isn't decl_constant_var_p, like with
1833 C_MAYBE_CONST_EXPR. */
1834 exp = decl_constant_value_safe (exp);
1835 if (error_operand_p (exp))
1836 return error_mark_node;
1838 if (NULLPTR_TYPE_P (type))
1839 return nullptr_node;
1841 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1842 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1843 code = TREE_CODE (type);
1844 if (code == VOID_TYPE)
1846 error ("void value not ignored as it ought to be");
1847 return error_mark_node;
1849 if (invalid_nonstatic_memfn_p (exp, tf_warning_or_error))
1850 return error_mark_node;
1851 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
1852 return cp_build_addr_expr (exp, tf_warning_or_error);
1853 if (code == ARRAY_TYPE)
1855 tree adr;
1856 tree ptrtype;
1858 if (TREE_CODE (exp) == INDIRECT_REF)
1859 return build_nop (build_pointer_type (TREE_TYPE (type)),
1860 TREE_OPERAND (exp, 0));
1862 if (TREE_CODE (exp) == COMPOUND_EXPR)
1864 tree op1 = decay_conversion (TREE_OPERAND (exp, 1));
1865 return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
1866 TREE_OPERAND (exp, 0), op1);
1869 if (!lvalue_p (exp)
1870 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1872 error ("invalid use of non-lvalue array");
1873 return error_mark_node;
1876 ptrtype = build_pointer_type (TREE_TYPE (type));
1878 if (TREE_CODE (exp) == VAR_DECL)
1880 if (!cxx_mark_addressable (exp))
1881 return error_mark_node;
1882 adr = build_nop (ptrtype, build_address (exp));
1883 return adr;
1885 /* This way is better for a COMPONENT_REF since it can
1886 simplify the offset for a component. */
1887 adr = cp_build_addr_expr (exp, tf_warning_or_error);
1888 return cp_convert (ptrtype, adr);
1891 /* If a bitfield is used in a context where integral promotion
1892 applies, then the caller is expected to have used
1893 default_conversion. That function promotes bitfields correctly
1894 before calling this function. At this point, if we have a
1895 bitfield referenced, we may assume that is not subject to
1896 promotion, and that, therefore, the type of the resulting rvalue
1897 is the declared type of the bitfield. */
1898 exp = convert_bitfield_to_declared_type (exp);
1900 /* We do not call rvalue() here because we do not want to wrap EXP
1901 in a NON_LVALUE_EXPR. */
1903 /* [basic.lval]
1905 Non-class rvalues always have cv-unqualified types. */
1906 type = TREE_TYPE (exp);
1907 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
1908 exp = build_nop (cv_unqualified (type), exp);
1910 return exp;
1913 /* Perform preparatory conversions, as part of the "usual arithmetic
1914 conversions". In particular, as per [expr]:
1916 Whenever an lvalue expression appears as an operand of an
1917 operator that expects the rvalue for that operand, the
1918 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
1919 standard conversions are applied to convert the expression to an
1920 rvalue.
1922 In addition, we perform integral promotions here, as those are
1923 applied to both operands to a binary operator before determining
1924 what additional conversions should apply. */
1926 tree
1927 default_conversion (tree exp)
1929 /* Check for target-specific promotions. */
1930 tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
1931 if (promoted_type)
1932 exp = cp_convert (promoted_type, exp);
1933 /* Perform the integral promotions first so that bitfield
1934 expressions (which may promote to "int", even if the bitfield is
1935 declared "unsigned") are promoted correctly. */
1936 else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
1937 exp = perform_integral_promotions (exp);
1938 /* Perform the other conversions. */
1939 exp = decay_conversion (exp);
1941 return exp;
1944 /* EXPR is an expression with an integral or enumeration type.
1945 Perform the integral promotions in [conv.prom], and return the
1946 converted value. */
1948 tree
1949 perform_integral_promotions (tree expr)
1951 tree type;
1952 tree promoted_type;
1954 expr = mark_rvalue_use (expr);
1956 /* [conv.prom]
1958 If the bitfield has an enumerated type, it is treated as any
1959 other value of that type for promotion purposes. */
1960 type = is_bitfield_expr_with_lowered_type (expr);
1961 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
1962 type = TREE_TYPE (expr);
1963 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
1964 /* Scoped enums don't promote. */
1965 if (SCOPED_ENUM_P (type))
1966 return expr;
1967 promoted_type = type_promotes_to (type);
1968 if (type != promoted_type)
1969 expr = cp_convert (promoted_type, expr);
1970 return expr;
1973 /* Returns nonzero iff exp is a STRING_CST or the result of applying
1974 decay_conversion to one. */
1977 string_conv_p (const_tree totype, const_tree exp, int warn)
1979 tree t;
1981 if (TREE_CODE (totype) != POINTER_TYPE)
1982 return 0;
1984 t = TREE_TYPE (totype);
1985 if (!same_type_p (t, char_type_node)
1986 && !same_type_p (t, char16_type_node)
1987 && !same_type_p (t, char32_type_node)
1988 && !same_type_p (t, wchar_type_node))
1989 return 0;
1991 if (TREE_CODE (exp) == STRING_CST)
1993 /* Make sure that we don't try to convert between char and wide chars. */
1994 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
1995 return 0;
1997 else
1999 /* Is this a string constant which has decayed to 'const char *'? */
2000 t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
2001 if (!same_type_p (TREE_TYPE (exp), t))
2002 return 0;
2003 STRIP_NOPS (exp);
2004 if (TREE_CODE (exp) != ADDR_EXPR
2005 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
2006 return 0;
2009 /* This warning is not very useful, as it complains about printf. */
2010 if (warn)
2011 warning (OPT_Wwrite_strings,
2012 "deprecated conversion from string constant to %qT",
2013 totype);
2015 return 1;
2018 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2019 can, for example, use as an lvalue. This code used to be in
2020 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2021 expressions, where we're dealing with aggregates. But now it's again only
2022 called from unary_complex_lvalue. The case (in particular) that led to
2023 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2024 get it there. */
2026 static tree
2027 rationalize_conditional_expr (enum tree_code code, tree t,
2028 tsubst_flags_t complain)
2030 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2031 the first operand is always the one to be used if both operands
2032 are equal, so we know what conditional expression this used to be. */
2033 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2035 tree op0 = TREE_OPERAND (t, 0);
2036 tree op1 = TREE_OPERAND (t, 1);
2038 /* The following code is incorrect if either operand side-effects. */
2039 gcc_assert (!TREE_SIDE_EFFECTS (op0)
2040 && !TREE_SIDE_EFFECTS (op1));
2041 return
2042 build_conditional_expr (build_x_binary_op ((TREE_CODE (t) == MIN_EXPR
2043 ? LE_EXPR : GE_EXPR),
2044 op0, TREE_CODE (op0),
2045 op1, TREE_CODE (op1),
2046 /*overload=*/NULL,
2047 complain),
2048 cp_build_unary_op (code, op0, 0, complain),
2049 cp_build_unary_op (code, op1, 0, complain),
2050 complain);
2053 return
2054 build_conditional_expr (TREE_OPERAND (t, 0),
2055 cp_build_unary_op (code, TREE_OPERAND (t, 1), 0,
2056 complain),
2057 cp_build_unary_op (code, TREE_OPERAND (t, 2), 0,
2058 complain),
2059 complain);
2062 /* Given the TYPE of an anonymous union field inside T, return the
2063 FIELD_DECL for the field. If not found return NULL_TREE. Because
2064 anonymous unions can nest, we must also search all anonymous unions
2065 that are directly reachable. */
2067 tree
2068 lookup_anon_field (tree t, tree type)
2070 tree field;
2072 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2074 if (TREE_STATIC (field))
2075 continue;
2076 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2077 continue;
2079 /* If we find it directly, return the field. */
2080 if (DECL_NAME (field) == NULL_TREE
2081 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2083 return field;
2086 /* Otherwise, it could be nested, search harder. */
2087 if (DECL_NAME (field) == NULL_TREE
2088 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2090 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2091 if (subfield)
2092 return subfield;
2095 return NULL_TREE;
2098 /* Build an expression representing OBJECT.MEMBER. OBJECT is an
2099 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
2100 non-NULL, it indicates the path to the base used to name MEMBER.
2101 If PRESERVE_REFERENCE is true, the expression returned will have
2102 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
2103 returned will have the type referred to by the reference.
2105 This function does not perform access control; that is either done
2106 earlier by the parser when the name of MEMBER is resolved to MEMBER
2107 itself, or later when overload resolution selects one of the
2108 functions indicated by MEMBER. */
2110 tree
2111 build_class_member_access_expr (tree object, tree member,
2112 tree access_path, bool preserve_reference,
2113 tsubst_flags_t complain)
2115 tree object_type;
2116 tree member_scope;
2117 tree result = NULL_TREE;
2119 if (error_operand_p (object) || error_operand_p (member))
2120 return error_mark_node;
2122 gcc_assert (DECL_P (member) || BASELINK_P (member));
2124 /* [expr.ref]
2126 The type of the first expression shall be "class object" (of a
2127 complete type). */
2128 object_type = TREE_TYPE (object);
2129 if (!currently_open_class (object_type)
2130 && !complete_type_or_maybe_complain (object_type, object, complain))
2131 return error_mark_node;
2132 if (!CLASS_TYPE_P (object_type))
2134 if (complain & tf_error)
2136 if (POINTER_TYPE_P (object_type)
2137 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2138 error ("request for member %qD in %qE, which is of pointer "
2139 "type %qT (maybe you meant to use %<->%> ?)",
2140 member, object, object_type);
2141 else
2142 error ("request for member %qD in %qE, which is of non-class "
2143 "type %qT", member, object, object_type);
2145 return error_mark_node;
2148 /* The standard does not seem to actually say that MEMBER must be a
2149 member of OBJECT_TYPE. However, that is clearly what is
2150 intended. */
2151 if (DECL_P (member))
2153 member_scope = DECL_CLASS_CONTEXT (member);
2154 mark_used (member);
2155 if (TREE_DEPRECATED (member))
2156 warn_deprecated_use (member, NULL_TREE);
2158 else
2159 member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2160 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2161 presently be the anonymous union. Go outwards until we find a
2162 type related to OBJECT_TYPE. */
2163 while (ANON_AGGR_TYPE_P (member_scope)
2164 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2165 object_type))
2166 member_scope = TYPE_CONTEXT (member_scope);
2167 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2169 if (complain & tf_error)
2171 if (TREE_CODE (member) == FIELD_DECL)
2172 error ("invalid use of nonstatic data member %qE", member);
2173 else
2174 error ("%qD is not a member of %qT", member, object_type);
2176 return error_mark_node;
2179 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2180 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
2181 in the front end; only _DECLs and _REFs are lvalues in the back end. */
2183 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2184 if (temp)
2185 object = cp_build_indirect_ref (temp, RO_NULL, complain);
2188 /* In [expr.ref], there is an explicit list of the valid choices for
2189 MEMBER. We check for each of those cases here. */
2190 if (TREE_CODE (member) == VAR_DECL)
2192 /* A static data member. */
2193 result = member;
2194 mark_exp_read (object);
2195 /* If OBJECT has side-effects, they are supposed to occur. */
2196 if (TREE_SIDE_EFFECTS (object))
2197 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2199 else if (TREE_CODE (member) == FIELD_DECL)
2201 /* A non-static data member. */
2202 bool null_object_p;
2203 int type_quals;
2204 tree member_type;
2206 null_object_p = (TREE_CODE (object) == INDIRECT_REF
2207 && integer_zerop (TREE_OPERAND (object, 0)));
2209 /* Convert OBJECT to the type of MEMBER. */
2210 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2211 TYPE_MAIN_VARIANT (member_scope)))
2213 tree binfo;
2214 base_kind kind;
2216 binfo = lookup_base (access_path ? access_path : object_type,
2217 member_scope, ba_unique, &kind);
2218 if (binfo == error_mark_node)
2219 return error_mark_node;
2221 /* It is invalid to try to get to a virtual base of a
2222 NULL object. The most common cause is invalid use of
2223 offsetof macro. */
2224 if (null_object_p && kind == bk_via_virtual)
2226 if (complain & tf_error)
2228 error ("invalid access to non-static data member %qD of "
2229 "NULL object",
2230 member);
2231 error ("(perhaps the %<offsetof%> macro was used incorrectly)");
2233 return error_mark_node;
2236 /* Convert to the base. */
2237 object = build_base_path (PLUS_EXPR, object, binfo,
2238 /*nonnull=*/1, complain);
2239 /* If we found the base successfully then we should be able
2240 to convert to it successfully. */
2241 gcc_assert (object != error_mark_node);
2244 /* Complain about other invalid uses of offsetof, even though they will
2245 give the right answer. Note that we complain whether or not they
2246 actually used the offsetof macro, since there's no way to know at this
2247 point. So we just give a warning, instead of a pedwarn. */
2248 /* Do not produce this warning for base class field references, because
2249 we know for a fact that didn't come from offsetof. This does occur
2250 in various testsuite cases where a null object is passed where a
2251 vtable access is required. */
2252 if (null_object_p && warn_invalid_offsetof
2253 && CLASSTYPE_NON_STD_LAYOUT (object_type)
2254 && !DECL_FIELD_IS_BASE (member)
2255 && cp_unevaluated_operand == 0
2256 && (complain & tf_warning))
2258 warning (OPT_Winvalid_offsetof,
2259 "invalid access to non-static data member %qD "
2260 " of NULL object", member);
2261 warning (OPT_Winvalid_offsetof,
2262 "(perhaps the %<offsetof%> macro was used incorrectly)");
2265 /* If MEMBER is from an anonymous aggregate, we have converted
2266 OBJECT so that it refers to the class containing the
2267 anonymous union. Generate a reference to the anonymous union
2268 itself, and recur to find MEMBER. */
2269 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2270 /* When this code is called from build_field_call, the
2271 object already has the type of the anonymous union.
2272 That is because the COMPONENT_REF was already
2273 constructed, and was then disassembled before calling
2274 build_field_call. After the function-call code is
2275 cleaned up, this waste can be eliminated. */
2276 && (!same_type_ignoring_top_level_qualifiers_p
2277 (TREE_TYPE (object), DECL_CONTEXT (member))))
2279 tree anonymous_union;
2281 anonymous_union = lookup_anon_field (TREE_TYPE (object),
2282 DECL_CONTEXT (member));
2283 object = build_class_member_access_expr (object,
2284 anonymous_union,
2285 /*access_path=*/NULL_TREE,
2286 preserve_reference,
2287 complain);
2290 /* Compute the type of the field, as described in [expr.ref]. */
2291 type_quals = TYPE_UNQUALIFIED;
2292 member_type = TREE_TYPE (member);
2293 if (TREE_CODE (member_type) != REFERENCE_TYPE)
2295 type_quals = (cp_type_quals (member_type)
2296 | cp_type_quals (object_type));
2298 /* A field is const (volatile) if the enclosing object, or the
2299 field itself, is const (volatile). But, a mutable field is
2300 not const, even within a const object. */
2301 if (DECL_MUTABLE_P (member))
2302 type_quals &= ~TYPE_QUAL_CONST;
2303 member_type = cp_build_qualified_type (member_type, type_quals);
2306 result = build3 (COMPONENT_REF, member_type, object, member,
2307 NULL_TREE);
2308 result = fold_if_not_in_template (result);
2310 /* Mark the expression const or volatile, as appropriate. Even
2311 though we've dealt with the type above, we still have to mark the
2312 expression itself. */
2313 if (type_quals & TYPE_QUAL_CONST)
2314 TREE_READONLY (result) = 1;
2315 if (type_quals & TYPE_QUAL_VOLATILE)
2316 TREE_THIS_VOLATILE (result) = 1;
2318 else if (BASELINK_P (member))
2320 /* The member is a (possibly overloaded) member function. */
2321 tree functions;
2322 tree type;
2324 /* If the MEMBER is exactly one static member function, then we
2325 know the type of the expression. Otherwise, we must wait
2326 until overload resolution has been performed. */
2327 functions = BASELINK_FUNCTIONS (member);
2328 if (TREE_CODE (functions) == FUNCTION_DECL
2329 && DECL_STATIC_FUNCTION_P (functions))
2330 type = TREE_TYPE (functions);
2331 else
2332 type = unknown_type_node;
2333 /* Note that we do not convert OBJECT to the BASELINK_BINFO
2334 base. That will happen when the function is called. */
2335 result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2337 else if (TREE_CODE (member) == CONST_DECL)
2339 /* The member is an enumerator. */
2340 result = member;
2341 /* If OBJECT has side-effects, they are supposed to occur. */
2342 if (TREE_SIDE_EFFECTS (object))
2343 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2344 object, result);
2346 else
2348 if (complain & tf_error)
2349 error ("invalid use of %qD", member);
2350 return error_mark_node;
2353 if (!preserve_reference)
2354 /* [expr.ref]
2356 If E2 is declared to have type "reference to T", then ... the
2357 type of E1.E2 is T. */
2358 result = convert_from_reference (result);
2360 return result;
2363 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2364 SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type. */
2366 static tree
2367 lookup_destructor (tree object, tree scope, tree dtor_name)
2369 tree object_type = TREE_TYPE (object);
2370 tree dtor_type = TREE_OPERAND (dtor_name, 0);
2371 tree expr;
2373 if (scope && !check_dtor_name (scope, dtor_type))
2375 error ("qualified type %qT does not match destructor name ~%qT",
2376 scope, dtor_type);
2377 return error_mark_node;
2379 if (TREE_CODE (dtor_type) == IDENTIFIER_NODE)
2381 /* In a template, names we can't find a match for are still accepted
2382 destructor names, and we check them here. */
2383 if (check_dtor_name (object_type, dtor_type))
2384 dtor_type = object_type;
2385 else
2387 error ("object type %qT does not match destructor name ~%qT",
2388 object_type, dtor_type);
2389 return error_mark_node;
2393 else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2395 error ("the type being destroyed is %qT, but the destructor refers to %qT",
2396 TYPE_MAIN_VARIANT (object_type), dtor_type);
2397 return error_mark_node;
2399 expr = lookup_member (dtor_type, complete_dtor_identifier,
2400 /*protect=*/1, /*want_type=*/false);
2401 expr = (adjust_result_of_qualified_name_lookup
2402 (expr, dtor_type, object_type));
2403 return expr;
2406 /* An expression of the form "A::template B" has been resolved to
2407 DECL. Issue a diagnostic if B is not a template or template
2408 specialization. */
2410 void
2411 check_template_keyword (tree decl)
2413 /* The standard says:
2415 [temp.names]
2417 If a name prefixed by the keyword template is not a member
2418 template, the program is ill-formed.
2420 DR 228 removed the restriction that the template be a member
2421 template.
2423 DR 96, if accepted would add the further restriction that explicit
2424 template arguments must be provided if the template keyword is
2425 used, but, as of 2005-10-16, that DR is still in "drafting". If
2426 this DR is accepted, then the semantic checks here can be
2427 simplified, as the entity named must in fact be a template
2428 specialization, rather than, as at present, a set of overloaded
2429 functions containing at least one template function. */
2430 if (TREE_CODE (decl) != TEMPLATE_DECL
2431 && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2433 if (!is_overloaded_fn (decl))
2434 permerror (input_location, "%qD is not a template", decl);
2435 else
2437 tree fns;
2438 fns = decl;
2439 if (BASELINK_P (fns))
2440 fns = BASELINK_FUNCTIONS (fns);
2441 while (fns)
2443 tree fn = OVL_CURRENT (fns);
2444 if (TREE_CODE (fn) == TEMPLATE_DECL
2445 || TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2446 break;
2447 if (TREE_CODE (fn) == FUNCTION_DECL
2448 && DECL_USE_TEMPLATE (fn)
2449 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
2450 break;
2451 fns = OVL_NEXT (fns);
2453 if (!fns)
2454 permerror (input_location, "%qD is not a template", decl);
2459 /* This function is called by the parser to process a class member
2460 access expression of the form OBJECT.NAME. NAME is a node used by
2461 the parser to represent a name; it is not yet a DECL. It may,
2462 however, be a BASELINK where the BASELINK_FUNCTIONS is a
2463 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
2464 there is no reason to do the lookup twice, so the parser keeps the
2465 BASELINK. TEMPLATE_P is true iff NAME was explicitly declared to
2466 be a template via the use of the "A::template B" syntax. */
2468 tree
2469 finish_class_member_access_expr (tree object, tree name, bool template_p,
2470 tsubst_flags_t complain)
2472 tree expr;
2473 tree object_type;
2474 tree member;
2475 tree access_path = NULL_TREE;
2476 tree orig_object = object;
2477 tree orig_name = name;
2479 if (object == error_mark_node || name == error_mark_node)
2480 return error_mark_node;
2482 /* If OBJECT is an ObjC class instance, we must obey ObjC access rules. */
2483 if (!objc_is_public (object, name))
2484 return error_mark_node;
2486 object_type = TREE_TYPE (object);
2488 if (processing_template_decl)
2490 if (/* If OBJECT_TYPE is dependent, so is OBJECT.NAME. */
2491 dependent_type_p (object_type)
2492 /* If NAME is just an IDENTIFIER_NODE, then the expression
2493 is dependent. */
2494 || TREE_CODE (object) == IDENTIFIER_NODE
2495 /* If NAME is "f<args>", where either 'f' or 'args' is
2496 dependent, then the expression is dependent. */
2497 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2498 && dependent_template_id_p (TREE_OPERAND (name, 0),
2499 TREE_OPERAND (name, 1)))
2500 /* If NAME is "T::X" where "T" is dependent, then the
2501 expression is dependent. */
2502 || (TREE_CODE (name) == SCOPE_REF
2503 && TYPE_P (TREE_OPERAND (name, 0))
2504 && dependent_type_p (TREE_OPERAND (name, 0))))
2505 return build_min_nt (COMPONENT_REF, object, name, NULL_TREE);
2506 object = build_non_dependent_expr (object);
2508 else if (c_dialect_objc ()
2509 && TREE_CODE (name) == IDENTIFIER_NODE
2510 && (expr = objc_maybe_build_component_ref (object, name)))
2511 return expr;
2513 /* [expr.ref]
2515 The type of the first expression shall be "class object" (of a
2516 complete type). */
2517 if (!currently_open_class (object_type)
2518 && !complete_type_or_maybe_complain (object_type, object, complain))
2519 return error_mark_node;
2520 if (!CLASS_TYPE_P (object_type))
2522 if (complain & tf_error)
2524 if (POINTER_TYPE_P (object_type)
2525 && CLASS_TYPE_P (TREE_TYPE (object_type)))
2526 error ("request for member %qD in %qE, which is of pointer "
2527 "type %qT (maybe you meant to use %<->%> ?)",
2528 name, object, object_type);
2529 else
2530 error ("request for member %qD in %qE, which is of non-class "
2531 "type %qT", name, object, object_type);
2533 return error_mark_node;
2536 if (BASELINK_P (name))
2537 /* A member function that has already been looked up. */
2538 member = name;
2539 else
2541 bool is_template_id = false;
2542 tree template_args = NULL_TREE;
2543 tree scope;
2545 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2547 is_template_id = true;
2548 template_args = TREE_OPERAND (name, 1);
2549 name = TREE_OPERAND (name, 0);
2551 if (TREE_CODE (name) == OVERLOAD)
2552 name = DECL_NAME (get_first_fn (name));
2553 else if (DECL_P (name))
2554 name = DECL_NAME (name);
2557 if (TREE_CODE (name) == SCOPE_REF)
2559 /* A qualified name. The qualifying class or namespace `S'
2560 has already been looked up; it is either a TYPE or a
2561 NAMESPACE_DECL. */
2562 scope = TREE_OPERAND (name, 0);
2563 name = TREE_OPERAND (name, 1);
2565 /* If SCOPE is a namespace, then the qualified name does not
2566 name a member of OBJECT_TYPE. */
2567 if (TREE_CODE (scope) == NAMESPACE_DECL)
2569 if (complain & tf_error)
2570 error ("%<%D::%D%> is not a member of %qT",
2571 scope, name, object_type);
2572 return error_mark_node;
2575 gcc_assert (CLASS_TYPE_P (scope));
2576 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE
2577 || TREE_CODE (name) == BIT_NOT_EXPR);
2579 if (constructor_name_p (name, scope))
2581 if (complain & tf_error)
2582 error ("cannot call constructor %<%T::%D%> directly",
2583 scope, name);
2584 return error_mark_node;
2587 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
2588 access_path = lookup_base (object_type, scope, ba_check, NULL);
2589 if (access_path == error_mark_node)
2590 return error_mark_node;
2591 if (!access_path)
2593 if (complain & tf_error)
2594 error ("%qT is not a base of %qT", scope, object_type);
2595 return error_mark_node;
2598 else
2600 scope = NULL_TREE;
2601 access_path = object_type;
2604 if (TREE_CODE (name) == BIT_NOT_EXPR)
2605 member = lookup_destructor (object, scope, name);
2606 else
2608 /* Look up the member. */
2609 member = lookup_member (access_path, name, /*protect=*/1,
2610 /*want_type=*/false);
2611 if (member == NULL_TREE)
2613 if (complain & tf_error)
2614 error ("%qD has no member named %qE",
2615 TREE_CODE (access_path) == TREE_BINFO
2616 ? TREE_TYPE (access_path) : object_type, name);
2617 return error_mark_node;
2619 if (member == error_mark_node)
2620 return error_mark_node;
2623 if (is_template_id)
2625 tree templ = member;
2627 if (BASELINK_P (templ))
2628 templ = lookup_template_function (templ, template_args);
2629 else
2631 if (complain & tf_error)
2632 error ("%qD is not a member template function", name);
2633 return error_mark_node;
2638 if (TREE_DEPRECATED (member))
2639 warn_deprecated_use (member, NULL_TREE);
2641 if (template_p)
2642 check_template_keyword (member);
2644 expr = build_class_member_access_expr (object, member, access_path,
2645 /*preserve_reference=*/false,
2646 complain);
2647 if (processing_template_decl && expr != error_mark_node)
2649 if (BASELINK_P (member))
2651 if (TREE_CODE (orig_name) == SCOPE_REF)
2652 BASELINK_QUALIFIED_P (member) = 1;
2653 orig_name = member;
2655 return build_min_non_dep (COMPONENT_REF, expr,
2656 orig_object, orig_name,
2657 NULL_TREE);
2660 return expr;
2663 /* Return an expression for the MEMBER_NAME field in the internal
2664 representation of PTRMEM, a pointer-to-member function. (Each
2665 pointer-to-member function type gets its own RECORD_TYPE so it is
2666 more convenient to access the fields by name than by FIELD_DECL.)
2667 This routine converts the NAME to a FIELD_DECL and then creates the
2668 node for the complete expression. */
2670 tree
2671 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
2673 tree ptrmem_type;
2674 tree member;
2675 tree member_type;
2677 /* This code is a stripped down version of
2678 build_class_member_access_expr. It does not work to use that
2679 routine directly because it expects the object to be of class
2680 type. */
2681 ptrmem_type = TREE_TYPE (ptrmem);
2682 gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
2683 member = lookup_member (ptrmem_type, member_name, /*protect=*/0,
2684 /*want_type=*/false);
2685 member_type = cp_build_qualified_type (TREE_TYPE (member),
2686 cp_type_quals (ptrmem_type));
2687 return fold_build3_loc (input_location,
2688 COMPONENT_REF, member_type,
2689 ptrmem, member, NULL_TREE);
2692 /* Given an expression PTR for a pointer, return an expression
2693 for the value pointed to.
2694 ERRORSTRING is the name of the operator to appear in error messages.
2696 This function may need to overload OPERATOR_FNNAME.
2697 Must also handle REFERENCE_TYPEs for C++. */
2699 tree
2700 build_x_indirect_ref (tree expr, ref_operator errorstring,
2701 tsubst_flags_t complain)
2703 tree orig_expr = expr;
2704 tree rval;
2706 if (processing_template_decl)
2708 /* Retain the type if we know the operand is a pointer. */
2709 if (TREE_TYPE (expr) && POINTER_TYPE_P (TREE_TYPE (expr)))
2710 return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
2711 if (type_dependent_expression_p (expr))
2712 return build_min_nt (INDIRECT_REF, expr);
2713 expr = build_non_dependent_expr (expr);
2716 rval = build_new_op (INDIRECT_REF, LOOKUP_NORMAL, expr, NULL_TREE,
2717 NULL_TREE, /*overload=*/NULL, complain);
2718 if (!rval)
2719 rval = cp_build_indirect_ref (expr, errorstring, complain);
2721 if (processing_template_decl && rval != error_mark_node)
2722 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
2723 else
2724 return rval;
2727 /* Helper function called from c-common. */
2728 tree
2729 build_indirect_ref (location_t loc ATTRIBUTE_UNUSED,
2730 tree ptr, ref_operator errorstring)
2732 return cp_build_indirect_ref (ptr, errorstring, tf_warning_or_error);
2735 tree
2736 cp_build_indirect_ref (tree ptr, ref_operator errorstring,
2737 tsubst_flags_t complain)
2739 tree pointer, type;
2741 if (ptr == error_mark_node)
2742 return error_mark_node;
2744 if (ptr == current_class_ptr)
2745 return current_class_ref;
2747 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2748 ? ptr : decay_conversion (ptr));
2749 type = TREE_TYPE (pointer);
2751 if (POINTER_TYPE_P (type))
2753 /* [expr.unary.op]
2755 If the type of the expression is "pointer to T," the type
2756 of the result is "T." */
2757 tree t = TREE_TYPE (type);
2759 if (CONVERT_EXPR_P (ptr)
2760 || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
2762 /* If a warning is issued, mark it to avoid duplicates from
2763 the backend. This only needs to be done at
2764 warn_strict_aliasing > 2. */
2765 if (warn_strict_aliasing > 2)
2766 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (ptr, 0)),
2767 type, TREE_OPERAND (ptr, 0)))
2768 TREE_NO_WARNING (ptr) = 1;
2771 if (VOID_TYPE_P (t))
2773 /* A pointer to incomplete type (other than cv void) can be
2774 dereferenced [expr.unary.op]/1 */
2775 if (complain & tf_error)
2776 error ("%qT is not a pointer-to-object type", type);
2777 return error_mark_node;
2779 else if (TREE_CODE (pointer) == ADDR_EXPR
2780 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
2781 /* The POINTER was something like `&x'. We simplify `*&x' to
2782 `x'. */
2783 return TREE_OPERAND (pointer, 0);
2784 else
2786 tree ref = build1 (INDIRECT_REF, t, pointer);
2788 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2789 so that we get the proper error message if the result is used
2790 to assign to. Also, &* is supposed to be a no-op. */
2791 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
2792 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
2793 TREE_SIDE_EFFECTS (ref)
2794 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
2795 return ref;
2798 else if (!(complain & tf_error))
2799 /* Don't emit any errors; we'll just return ERROR_MARK_NODE later. */
2801 /* `pointer' won't be an error_mark_node if we were given a
2802 pointer to member, so it's cool to check for this here. */
2803 else if (TYPE_PTR_TO_MEMBER_P (type))
2804 switch (errorstring)
2806 case RO_ARRAY_INDEXING:
2807 error ("invalid use of array indexing on pointer to member");
2808 break;
2809 case RO_UNARY_STAR:
2810 error ("invalid use of unary %<*%> on pointer to member");
2811 break;
2812 case RO_IMPLICIT_CONVERSION:
2813 error ("invalid use of implicit conversion on pointer to member");
2814 break;
2815 default:
2816 gcc_unreachable ();
2818 else if (pointer != error_mark_node)
2819 invalid_indirection_error (input_location, type, errorstring);
2821 return error_mark_node;
2824 /* This handles expressions of the form "a[i]", which denotes
2825 an array reference.
2827 This is logically equivalent in C to *(a+i), but we may do it differently.
2828 If A is a variable or a member, we generate a primitive ARRAY_REF.
2829 This avoids forcing the array out of registers, and can work on
2830 arrays that are not lvalues (for example, members of structures returned
2831 by functions).
2833 If INDEX is of some user-defined type, it must be converted to
2834 integer type. Otherwise, to make a compatible PLUS_EXPR, it
2835 will inherit the type of the array, which will be some pointer type.
2837 LOC is the location to use in building the array reference. */
2839 tree
2840 cp_build_array_ref (location_t loc, tree array, tree idx,
2841 tsubst_flags_t complain)
2843 tree ret;
2845 if (idx == 0)
2847 if (complain & tf_error)
2848 error_at (loc, "subscript missing in array reference");
2849 return error_mark_node;
2852 if (TREE_TYPE (array) == error_mark_node
2853 || TREE_TYPE (idx) == error_mark_node)
2854 return error_mark_node;
2856 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
2857 inside it. */
2858 switch (TREE_CODE (array))
2860 case COMPOUND_EXPR:
2862 tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2863 complain);
2864 ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
2865 TREE_OPERAND (array, 0), value);
2866 SET_EXPR_LOCATION (ret, loc);
2867 return ret;
2870 case COND_EXPR:
2871 ret = build_conditional_expr
2872 (TREE_OPERAND (array, 0),
2873 cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2874 complain),
2875 cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
2876 complain),
2877 tf_warning_or_error);
2878 protected_set_expr_location (ret, loc);
2879 return ret;
2881 default:
2882 break;
2885 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
2887 tree rval, type;
2889 warn_array_subscript_with_type_char (idx);
2891 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
2893 if (complain & tf_error)
2894 error_at (loc, "array subscript is not an integer");
2895 return error_mark_node;
2898 /* Apply integral promotions *after* noticing character types.
2899 (It is unclear why we do these promotions -- the standard
2900 does not say that we should. In fact, the natural thing would
2901 seem to be to convert IDX to ptrdiff_t; we're performing
2902 pointer arithmetic.) */
2903 idx = perform_integral_promotions (idx);
2905 /* An array that is indexed by a non-constant
2906 cannot be stored in a register; we must be able to do
2907 address arithmetic on its address.
2908 Likewise an array of elements of variable size. */
2909 if (TREE_CODE (idx) != INTEGER_CST
2910 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
2911 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
2912 != INTEGER_CST)))
2914 if (!cxx_mark_addressable (array))
2915 return error_mark_node;
2918 /* An array that is indexed by a constant value which is not within
2919 the array bounds cannot be stored in a register either; because we
2920 would get a crash in store_bit_field/extract_bit_field when trying
2921 to access a non-existent part of the register. */
2922 if (TREE_CODE (idx) == INTEGER_CST
2923 && TYPE_DOMAIN (TREE_TYPE (array))
2924 && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
2926 if (!cxx_mark_addressable (array))
2927 return error_mark_node;
2930 if (!lvalue_p (array) && (complain & tf_error))
2931 pedwarn (loc, OPT_pedantic,
2932 "ISO C++ forbids subscripting non-lvalue array");
2934 /* Note in C++ it is valid to subscript a `register' array, since
2935 it is valid to take the address of something with that
2936 storage specification. */
2937 if (extra_warnings)
2939 tree foo = array;
2940 while (TREE_CODE (foo) == COMPONENT_REF)
2941 foo = TREE_OPERAND (foo, 0);
2942 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo)
2943 && (complain & tf_warning))
2944 warning_at (loc, OPT_Wextra,
2945 "subscripting array declared %<register%>");
2948 type = TREE_TYPE (TREE_TYPE (array));
2949 rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
2950 /* Array ref is const/volatile if the array elements are
2951 or if the array is.. */
2952 TREE_READONLY (rval)
2953 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
2954 TREE_SIDE_EFFECTS (rval)
2955 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
2956 TREE_THIS_VOLATILE (rval)
2957 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
2958 ret = require_complete_type_sfinae (fold_if_not_in_template (rval),
2959 complain);
2960 protected_set_expr_location (ret, loc);
2961 return ret;
2965 tree ar = default_conversion (array);
2966 tree ind = default_conversion (idx);
2968 /* Put the integer in IND to simplify error checking. */
2969 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
2971 tree temp = ar;
2972 ar = ind;
2973 ind = temp;
2976 if (ar == error_mark_node)
2977 return ar;
2979 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE)
2981 if (complain & tf_error)
2982 error_at (loc, "subscripted value is neither array nor pointer");
2983 return error_mark_node;
2985 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
2987 if (complain & tf_error)
2988 error_at (loc, "array subscript is not an integer");
2989 return error_mark_node;
2992 warn_array_subscript_with_type_char (idx);
2994 ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
2995 PLUS_EXPR, ar, ind,
2996 complain),
2997 RO_ARRAY_INDEXING,
2998 complain);
2999 protected_set_expr_location (ret, loc);
3000 return ret;
3004 /* Entry point for Obj-C++. */
3006 tree
3007 build_array_ref (location_t loc, tree array, tree idx)
3009 return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
3012 /* Resolve a pointer to member function. INSTANCE is the object
3013 instance to use, if the member points to a virtual member.
3015 This used to avoid checking for virtual functions if basetype
3016 has no virtual functions, according to an earlier ANSI draft.
3017 With the final ISO C++ rules, such an optimization is
3018 incorrect: A pointer to a derived member can be static_cast
3019 to pointer-to-base-member, as long as the dynamic object
3020 later has the right member. */
3022 tree
3023 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function)
3025 if (TREE_CODE (function) == OFFSET_REF)
3026 function = TREE_OPERAND (function, 1);
3028 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3030 tree idx, delta, e1, e2, e3, vtbl, basetype;
3031 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3033 tree instance_ptr = *instance_ptrptr;
3034 tree instance_save_expr = 0;
3035 if (instance_ptr == error_mark_node)
3037 if (TREE_CODE (function) == PTRMEM_CST)
3039 /* Extracting the function address from a pmf is only
3040 allowed with -Wno-pmf-conversions. It only works for
3041 pmf constants. */
3042 e1 = build_addr_func (PTRMEM_CST_MEMBER (function));
3043 e1 = convert (fntype, e1);
3044 return e1;
3046 else
3048 error ("object missing in use of %qE", function);
3049 return error_mark_node;
3053 if (TREE_SIDE_EFFECTS (instance_ptr))
3054 instance_ptr = instance_save_expr = save_expr (instance_ptr);
3056 if (TREE_SIDE_EFFECTS (function))
3057 function = save_expr (function);
3059 /* Start by extracting all the information from the PMF itself. */
3060 e3 = pfn_from_ptrmemfunc (function);
3061 delta = delta_from_ptrmemfunc (function);
3062 idx = build1 (NOP_EXPR, vtable_index_type, e3);
3063 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3065 case ptrmemfunc_vbit_in_pfn:
3066 e1 = cp_build_binary_op (input_location,
3067 BIT_AND_EXPR, idx, integer_one_node,
3068 tf_warning_or_error);
3069 idx = cp_build_binary_op (input_location,
3070 MINUS_EXPR, idx, integer_one_node,
3071 tf_warning_or_error);
3072 break;
3074 case ptrmemfunc_vbit_in_delta:
3075 e1 = cp_build_binary_op (input_location,
3076 BIT_AND_EXPR, delta, integer_one_node,
3077 tf_warning_or_error);
3078 delta = cp_build_binary_op (input_location,
3079 RSHIFT_EXPR, delta, integer_one_node,
3080 tf_warning_or_error);
3081 break;
3083 default:
3084 gcc_unreachable ();
3087 /* Convert down to the right base before using the instance. A
3088 special case is that in a pointer to member of class C, C may
3089 be incomplete. In that case, the function will of course be
3090 a member of C, and no conversion is required. In fact,
3091 lookup_base will fail in that case, because incomplete
3092 classes do not have BINFOs. */
3093 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3094 if (!same_type_ignoring_top_level_qualifiers_p
3095 (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3097 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3098 basetype, ba_check, NULL);
3099 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3100 1, tf_warning_or_error);
3101 if (instance_ptr == error_mark_node)
3102 return error_mark_node;
3104 /* ...and then the delta in the PMF. */
3105 instance_ptr = fold_build_pointer_plus (instance_ptr, delta);
3107 /* Hand back the adjusted 'this' argument to our caller. */
3108 *instance_ptrptr = instance_ptr;
3110 /* Next extract the vtable pointer from the object. */
3111 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3112 instance_ptr);
3113 vtbl = cp_build_indirect_ref (vtbl, RO_NULL, tf_warning_or_error);
3114 /* If the object is not dynamic the access invokes undefined
3115 behavior. As it is not executed in this case silence the
3116 spurious warnings it may provoke. */
3117 TREE_NO_WARNING (vtbl) = 1;
3119 /* Finally, extract the function pointer from the vtable. */
3120 e2 = fold_build_pointer_plus_loc (input_location, vtbl, idx);
3121 e2 = cp_build_indirect_ref (e2, RO_NULL, tf_warning_or_error);
3122 TREE_CONSTANT (e2) = 1;
3124 /* When using function descriptors, the address of the
3125 vtable entry is treated as a function pointer. */
3126 if (TARGET_VTABLE_USES_DESCRIPTORS)
3127 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3128 cp_build_addr_expr (e2, tf_warning_or_error));
3130 e2 = fold_convert (TREE_TYPE (e3), e2);
3131 e1 = build_conditional_expr (e1, e2, e3, tf_warning_or_error);
3133 /* Make sure this doesn't get evaluated first inside one of the
3134 branches of the COND_EXPR. */
3135 if (instance_save_expr)
3136 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3137 instance_save_expr, e1);
3139 function = e1;
3141 return function;
3144 /* Used by the C-common bits. */
3145 tree
3146 build_function_call (location_t loc ATTRIBUTE_UNUSED,
3147 tree function, tree params)
3149 return cp_build_function_call (function, params, tf_warning_or_error);
3152 /* Used by the C-common bits. */
3153 tree
3154 build_function_call_vec (location_t loc ATTRIBUTE_UNUSED,
3155 tree function, VEC(tree,gc) *params,
3156 VEC(tree,gc) *origtypes ATTRIBUTE_UNUSED)
3158 VEC(tree,gc) *orig_params = params;
3159 tree ret = cp_build_function_call_vec (function, &params,
3160 tf_warning_or_error);
3162 /* cp_build_function_call_vec can reallocate PARAMS by adding
3163 default arguments. That should never happen here. Verify
3164 that. */
3165 gcc_assert (params == orig_params);
3167 return ret;
3170 /* Build a function call using a tree list of arguments. */
3172 tree
3173 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3175 VEC(tree,gc) *vec;
3176 tree ret;
3178 vec = make_tree_vector ();
3179 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3180 VEC_safe_push (tree, gc, vec, TREE_VALUE (params));
3181 ret = cp_build_function_call_vec (function, &vec, complain);
3182 release_tree_vector (vec);
3183 return ret;
3186 /* Build a function call using varargs. */
3188 tree
3189 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3191 VEC(tree,gc) *vec;
3192 va_list args;
3193 tree ret, t;
3195 vec = make_tree_vector ();
3196 va_start (args, complain);
3197 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3198 VEC_safe_push (tree, gc, vec, t);
3199 va_end (args);
3200 ret = cp_build_function_call_vec (function, &vec, complain);
3201 release_tree_vector (vec);
3202 return ret;
3205 /* Build a function call using a vector of arguments. PARAMS may be
3206 NULL if there are no parameters. This changes the contents of
3207 PARAMS. */
3209 tree
3210 cp_build_function_call_vec (tree function, VEC(tree,gc) **params,
3211 tsubst_flags_t complain)
3213 tree fntype, fndecl;
3214 int is_method;
3215 tree original = function;
3216 int nargs;
3217 tree *argarray;
3218 tree parm_types;
3219 VEC(tree,gc) *allocated = NULL;
3220 tree ret;
3222 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3223 expressions, like those used for ObjC messenger dispatches. */
3224 if (params != NULL && !VEC_empty (tree, *params))
3225 function = objc_rewrite_function_call (function,
3226 VEC_index (tree, *params, 0));
3228 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3229 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3230 if (TREE_CODE (function) == NOP_EXPR
3231 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3232 function = TREE_OPERAND (function, 0);
3234 if (TREE_CODE (function) == FUNCTION_DECL)
3236 mark_used (function);
3237 fndecl = function;
3239 /* Convert anything with function type to a pointer-to-function. */
3240 if (DECL_MAIN_P (function) && (complain & tf_error))
3241 pedwarn (input_location, OPT_pedantic,
3242 "ISO C++ forbids calling %<::main%> from within program");
3244 function = build_addr_func (function);
3246 else
3248 fndecl = NULL_TREE;
3250 function = build_addr_func (function);
3253 if (function == error_mark_node)
3254 return error_mark_node;
3256 fntype = TREE_TYPE (function);
3258 if (TYPE_PTRMEMFUNC_P (fntype))
3260 if (complain & tf_error)
3261 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3262 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3263 original, original);
3264 return error_mark_node;
3267 is_method = (TREE_CODE (fntype) == POINTER_TYPE
3268 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3270 if (!((TREE_CODE (fntype) == POINTER_TYPE
3271 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
3272 || is_method
3273 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3275 if (complain & tf_error)
3276 error ("%qE cannot be used as a function", original);
3277 return error_mark_node;
3280 /* fntype now gets the type of function pointed to. */
3281 fntype = TREE_TYPE (fntype);
3282 parm_types = TYPE_ARG_TYPES (fntype);
3284 if (params == NULL)
3286 allocated = make_tree_vector ();
3287 params = &allocated;
3290 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3291 complain);
3292 if (nargs < 0)
3293 return error_mark_node;
3295 argarray = VEC_address (tree, *params);
3297 /* Check for errors in format strings and inappropriately
3298 null parameters. */
3299 check_function_arguments (fntype, nargs, argarray);
3301 ret = build_cxx_call (function, nargs, argarray);
3303 if (allocated != NULL)
3304 release_tree_vector (allocated);
3306 return ret;
3309 /* Subroutine of convert_arguments.
3310 Warn about wrong number of args are genereted. */
3312 static void
3313 warn_args_num (location_t loc, tree fndecl, bool too_many_p)
3315 if (fndecl)
3317 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3319 if (DECL_NAME (fndecl) == NULL_TREE
3320 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3321 error_at (loc,
3322 too_many_p
3323 ? G_("too many arguments to constructor %q#D")
3324 : G_("too few arguments to constructor %q#D"),
3325 fndecl);
3326 else
3327 error_at (loc,
3328 too_many_p
3329 ? G_("too many arguments to member function %q#D")
3330 : G_("too few arguments to member function %q#D"),
3331 fndecl);
3333 else
3334 error_at (loc,
3335 too_many_p
3336 ? G_("too many arguments to function %q#D")
3337 : G_("too few arguments to function %q#D"),
3338 fndecl);
3339 inform (DECL_SOURCE_LOCATION (fndecl),
3340 "declared here");
3342 else
3344 if (c_dialect_objc () && objc_message_selector ())
3345 error_at (loc,
3346 too_many_p
3347 ? G_("too many arguments to method %q#D")
3348 : G_("too few arguments to method %q#D"),
3349 objc_message_selector ());
3350 else
3351 error_at (loc, too_many_p ? G_("too many arguments to function")
3352 : G_("too few arguments to function"));
3356 /* Convert the actual parameter expressions in the list VALUES to the
3357 types in the list TYPELIST. The converted expressions are stored
3358 back in the VALUES vector.
3359 If parmdecls is exhausted, or when an element has NULL as its type,
3360 perform the default conversions.
3362 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3364 This is also where warnings about wrong number of args are generated.
3366 Returns the actual number of arguments processed (which might be less
3367 than the length of the vector), or -1 on error.
3369 In C++, unspecified trailing parameters can be filled in with their
3370 default arguments, if such were specified. Do so here. */
3372 static int
3373 convert_arguments (tree typelist, VEC(tree,gc) **values, tree fndecl,
3374 int flags, tsubst_flags_t complain)
3376 tree typetail;
3377 unsigned int i;
3379 /* Argument passing is always copy-initialization. */
3380 flags |= LOOKUP_ONLYCONVERTING;
3382 for (i = 0, typetail = typelist;
3383 i < VEC_length (tree, *values);
3384 i++)
3386 tree type = typetail ? TREE_VALUE (typetail) : 0;
3387 tree val = VEC_index (tree, *values, i);
3389 if (val == error_mark_node || type == error_mark_node)
3390 return -1;
3392 if (type == void_type_node)
3394 if (complain & tf_error)
3396 warn_args_num (input_location, fndecl, /*too_many_p=*/true);
3397 return i;
3399 else
3400 return -1;
3403 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3404 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3405 if (TREE_CODE (val) == NOP_EXPR
3406 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3407 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3408 val = TREE_OPERAND (val, 0);
3410 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3412 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3413 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3414 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3415 val = decay_conversion (val);
3418 if (val == error_mark_node)
3419 return -1;
3421 if (type != 0)
3423 /* Formal parm type is specified by a function prototype. */
3424 tree parmval;
3426 if (!COMPLETE_TYPE_P (complete_type (type)))
3428 if (complain & tf_error)
3430 if (fndecl)
3431 error ("parameter %P of %qD has incomplete type %qT",
3432 i, fndecl, type);
3433 else
3434 error ("parameter %P has incomplete type %qT", i, type);
3436 parmval = error_mark_node;
3438 else
3440 parmval = convert_for_initialization
3441 (NULL_TREE, type, val, flags,
3442 ICR_ARGPASS, fndecl, i, complain);
3443 parmval = convert_for_arg_passing (type, parmval);
3446 if (parmval == error_mark_node)
3447 return -1;
3449 VEC_replace (tree, *values, i, parmval);
3451 else
3453 if (fndecl && DECL_BUILT_IN (fndecl)
3454 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CONSTANT_P)
3455 /* Don't do ellipsis conversion for __built_in_constant_p
3456 as this will result in spurious errors for non-trivial
3457 types. */
3458 val = require_complete_type_sfinae (val, complain);
3459 else
3460 val = convert_arg_to_ellipsis (val);
3462 VEC_replace (tree, *values, i, val);
3465 if (typetail)
3466 typetail = TREE_CHAIN (typetail);
3469 if (typetail != 0 && typetail != void_list_node)
3471 /* See if there are default arguments that can be used. Because
3472 we hold default arguments in the FUNCTION_TYPE (which is so
3473 wrong), we can see default parameters here from deduced
3474 contexts (and via typeof) for indirect function calls.
3475 Fortunately we know whether we have a function decl to
3476 provide default arguments in a language conformant
3477 manner. */
3478 if (fndecl && TREE_PURPOSE (typetail)
3479 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3481 for (; typetail != void_list_node; ++i)
3483 tree parmval
3484 = convert_default_arg (TREE_VALUE (typetail),
3485 TREE_PURPOSE (typetail),
3486 fndecl, i);
3488 if (parmval == error_mark_node)
3489 return -1;
3491 VEC_safe_push (tree, gc, *values, parmval);
3492 typetail = TREE_CHAIN (typetail);
3493 /* ends with `...'. */
3494 if (typetail == NULL_TREE)
3495 break;
3498 else
3500 if (complain & tf_error)
3501 warn_args_num (input_location, fndecl, /*too_many_p=*/false);
3502 return -1;
3506 return (int) i;
3509 /* Build a binary-operation expression, after performing default
3510 conversions on the operands. CODE is the kind of expression to
3511 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
3512 are the tree codes which correspond to ARG1 and ARG2 when issuing
3513 warnings about possibly misplaced parentheses. They may differ
3514 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3515 folding (e.g., if the parser sees "a | 1 + 1", it may call this
3516 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3517 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3518 ARG2_CODE as ERROR_MARK. */
3520 tree
3521 build_x_binary_op (enum tree_code code, tree arg1, enum tree_code arg1_code,
3522 tree arg2, enum tree_code arg2_code, tree *overload,
3523 tsubst_flags_t complain)
3525 tree orig_arg1;
3526 tree orig_arg2;
3527 tree expr;
3529 orig_arg1 = arg1;
3530 orig_arg2 = arg2;
3532 if (processing_template_decl)
3534 if (type_dependent_expression_p (arg1)
3535 || type_dependent_expression_p (arg2))
3536 return build_min_nt (code, arg1, arg2);
3537 arg1 = build_non_dependent_expr (arg1);
3538 arg2 = build_non_dependent_expr (arg2);
3541 if (code == DOTSTAR_EXPR)
3542 expr = build_m_component_ref (arg1, arg2);
3543 else
3544 expr = build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3545 overload, complain);
3547 /* Check for cases such as x+y<<z which users are likely to
3548 misinterpret. But don't warn about obj << x + y, since that is a
3549 common idiom for I/O. */
3550 if (warn_parentheses
3551 && (complain & tf_warning)
3552 && !processing_template_decl
3553 && !error_operand_p (arg1)
3554 && !error_operand_p (arg2)
3555 && (code != LSHIFT_EXPR
3556 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3557 warn_about_parentheses (code, arg1_code, orig_arg1, arg2_code, orig_arg2);
3559 if (processing_template_decl && expr != error_mark_node)
3560 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3562 return expr;
3565 /* Build and return an ARRAY_REF expression. */
3567 tree
3568 build_x_array_ref (tree arg1, tree arg2, tsubst_flags_t complain)
3570 tree orig_arg1 = arg1;
3571 tree orig_arg2 = arg2;
3572 tree expr;
3574 if (processing_template_decl)
3576 if (type_dependent_expression_p (arg1)
3577 || type_dependent_expression_p (arg2))
3578 return build_min_nt (ARRAY_REF, arg1, arg2,
3579 NULL_TREE, NULL_TREE);
3580 arg1 = build_non_dependent_expr (arg1);
3581 arg2 = build_non_dependent_expr (arg2);
3584 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3585 /*overload=*/NULL, complain);
3587 if (processing_template_decl && expr != error_mark_node)
3588 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3589 NULL_TREE, NULL_TREE);
3590 return expr;
3593 /* For the c-common bits. */
3594 tree
3595 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3596 int convert_p ATTRIBUTE_UNUSED)
3598 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3602 /* Build a binary-operation expression without default conversions.
3603 CODE is the kind of expression to build.
3604 LOCATION is the location_t of the operator in the source code.
3605 This function differs from `build' in several ways:
3606 the data type of the result is computed and recorded in it,
3607 warnings are generated if arg data types are invalid,
3608 special handling for addition and subtraction of pointers is known,
3609 and some optimization is done (operations on narrow ints
3610 are done in the narrower type when that gives the same result).
3611 Constant folding is also done before the result is returned.
3613 Note that the operands will never have enumeral types
3614 because either they have just had the default conversions performed
3615 or they have both just been converted to some other type in which
3616 the arithmetic is to be done.
3618 C++: must do special pointer arithmetic when implementing
3619 multiple inheritance, and deal with pointer to member functions. */
3621 tree
3622 cp_build_binary_op (location_t location,
3623 enum tree_code code, tree orig_op0, tree orig_op1,
3624 tsubst_flags_t complain)
3626 tree op0, op1;
3627 enum tree_code code0, code1;
3628 tree type0, type1;
3629 const char *invalid_op_diag;
3631 /* Expression code to give to the expression when it is built.
3632 Normally this is CODE, which is what the caller asked for,
3633 but in some special cases we change it. */
3634 enum tree_code resultcode = code;
3636 /* Data type in which the computation is to be performed.
3637 In the simplest cases this is the common type of the arguments. */
3638 tree result_type = NULL;
3640 /* Nonzero means operands have already been type-converted
3641 in whatever way is necessary.
3642 Zero means they need to be converted to RESULT_TYPE. */
3643 int converted = 0;
3645 /* Nonzero means create the expression with this type, rather than
3646 RESULT_TYPE. */
3647 tree build_type = 0;
3649 /* Nonzero means after finally constructing the expression
3650 convert it to this type. */
3651 tree final_type = 0;
3653 tree result;
3655 /* Nonzero if this is an operation like MIN or MAX which can
3656 safely be computed in short if both args are promoted shorts.
3657 Also implies COMMON.
3658 -1 indicates a bitwise operation; this makes a difference
3659 in the exact conditions for when it is safe to do the operation
3660 in a narrower mode. */
3661 int shorten = 0;
3663 /* Nonzero if this is a comparison operation;
3664 if both args are promoted shorts, compare the original shorts.
3665 Also implies COMMON. */
3666 int short_compare = 0;
3668 /* Nonzero means set RESULT_TYPE to the common type of the args. */
3669 int common = 0;
3671 /* True if both operands have arithmetic type. */
3672 bool arithmetic_types_p;
3674 /* Apply default conversions. */
3675 op0 = orig_op0;
3676 op1 = orig_op1;
3678 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3679 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3680 || code == TRUTH_XOR_EXPR)
3682 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3683 op0 = decay_conversion (op0);
3684 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3685 op1 = decay_conversion (op1);
3687 else
3689 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3690 op0 = default_conversion (op0);
3691 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3692 op1 = default_conversion (op1);
3695 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3696 STRIP_TYPE_NOPS (op0);
3697 STRIP_TYPE_NOPS (op1);
3699 /* DTRT if one side is an overloaded function, but complain about it. */
3700 if (type_unknown_p (op0))
3702 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
3703 if (t != error_mark_node)
3705 if (complain & tf_error)
3706 permerror (input_location, "assuming cast to type %qT from overloaded function",
3707 TREE_TYPE (t));
3708 op0 = t;
3711 if (type_unknown_p (op1))
3713 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
3714 if (t != error_mark_node)
3716 if (complain & tf_error)
3717 permerror (input_location, "assuming cast to type %qT from overloaded function",
3718 TREE_TYPE (t));
3719 op1 = t;
3723 type0 = TREE_TYPE (op0);
3724 type1 = TREE_TYPE (op1);
3726 /* The expression codes of the data types of the arguments tell us
3727 whether the arguments are integers, floating, pointers, etc. */
3728 code0 = TREE_CODE (type0);
3729 code1 = TREE_CODE (type1);
3731 /* If an error was already reported for one of the arguments,
3732 avoid reporting another error. */
3733 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
3734 return error_mark_node;
3736 if ((invalid_op_diag
3737 = targetm.invalid_binary_op (code, type0, type1)))
3739 error (invalid_op_diag);
3740 return error_mark_node;
3743 /* Issue warnings about peculiar, but valid, uses of NULL. */
3744 if ((orig_op0 == null_node || orig_op1 == null_node)
3745 /* It's reasonable to use pointer values as operands of &&
3746 and ||, so NULL is no exception. */
3747 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
3748 && ( /* Both are NULL (or 0) and the operation was not a
3749 comparison or a pointer subtraction. */
3750 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
3751 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
3752 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
3753 || (!null_ptr_cst_p (orig_op0)
3754 && !TYPE_PTR_P (type0) && !TYPE_PTR_TO_MEMBER_P (type0))
3755 || (!null_ptr_cst_p (orig_op1)
3756 && !TYPE_PTR_P (type1) && !TYPE_PTR_TO_MEMBER_P (type1)))
3757 && (complain & tf_warning))
3758 /* Some sort of arithmetic operation involving NULL was
3759 performed. */
3760 warning (OPT_Wpointer_arith, "NULL used in arithmetic");
3762 switch (code)
3764 case MINUS_EXPR:
3765 /* Subtraction of two similar pointers.
3766 We must subtract them as integers, then divide by object size. */
3767 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
3768 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
3769 TREE_TYPE (type1)))
3770 return pointer_diff (op0, op1, common_pointer_type (type0, type1));
3771 /* In all other cases except pointer - int, the usual arithmetic
3772 rules apply. */
3773 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
3775 common = 1;
3776 break;
3778 /* The pointer - int case is just like pointer + int; fall
3779 through. */
3780 case PLUS_EXPR:
3781 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
3782 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
3784 tree ptr_operand;
3785 tree int_operand;
3786 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
3787 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
3788 if (processing_template_decl)
3790 result_type = TREE_TYPE (ptr_operand);
3791 break;
3793 return cp_pointer_int_sum (code,
3794 ptr_operand,
3795 int_operand);
3797 common = 1;
3798 break;
3800 case MULT_EXPR:
3801 common = 1;
3802 break;
3804 case TRUNC_DIV_EXPR:
3805 case CEIL_DIV_EXPR:
3806 case FLOOR_DIV_EXPR:
3807 case ROUND_DIV_EXPR:
3808 case EXACT_DIV_EXPR:
3809 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3810 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
3811 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3812 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
3814 enum tree_code tcode0 = code0, tcode1 = code1;
3816 warn_for_div_by_zero (location, op1);
3818 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
3819 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
3820 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
3821 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
3823 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
3824 resultcode = RDIV_EXPR;
3825 else
3826 /* When dividing two signed integers, we have to promote to int.
3827 unless we divide by a constant != -1. Note that default
3828 conversion will have been performed on the operands at this
3829 point, so we have to dig out the original type to find out if
3830 it was unsigned. */
3831 shorten = ((TREE_CODE (op0) == NOP_EXPR
3832 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3833 || (TREE_CODE (op1) == INTEGER_CST
3834 && ! integer_all_onesp (op1)));
3836 common = 1;
3838 break;
3840 case BIT_AND_EXPR:
3841 case BIT_IOR_EXPR:
3842 case BIT_XOR_EXPR:
3843 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3844 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3845 && !VECTOR_FLOAT_TYPE_P (type0)
3846 && !VECTOR_FLOAT_TYPE_P (type1)))
3847 shorten = -1;
3848 break;
3850 case TRUNC_MOD_EXPR:
3851 case FLOOR_MOD_EXPR:
3852 warn_for_div_by_zero (location, op1);
3854 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3855 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
3856 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
3857 common = 1;
3858 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3860 /* Although it would be tempting to shorten always here, that loses
3861 on some targets, since the modulo instruction is undefined if the
3862 quotient can't be represented in the computation mode. We shorten
3863 only if unsigned or if dividing by something we know != -1. */
3864 shorten = ((TREE_CODE (op0) == NOP_EXPR
3865 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3866 || (TREE_CODE (op1) == INTEGER_CST
3867 && ! integer_all_onesp (op1)));
3868 common = 1;
3870 break;
3872 case TRUTH_ANDIF_EXPR:
3873 case TRUTH_ORIF_EXPR:
3874 case TRUTH_AND_EXPR:
3875 case TRUTH_OR_EXPR:
3876 result_type = boolean_type_node;
3877 break;
3879 /* Shift operations: result has same type as first operand;
3880 always convert second operand to int.
3881 Also set SHORT_SHIFT if shifting rightward. */
3883 case RSHIFT_EXPR:
3884 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3886 result_type = type0;
3887 if (TREE_CODE (op1) == INTEGER_CST)
3889 if (tree_int_cst_lt (op1, integer_zero_node))
3891 if ((complain & tf_warning)
3892 && c_inhibit_evaluation_warnings == 0)
3893 warning (0, "right shift count is negative");
3895 else
3897 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0
3898 && (complain & tf_warning)
3899 && c_inhibit_evaluation_warnings == 0)
3900 warning (0, "right shift count >= width of type");
3903 /* Convert the shift-count to an integer, regardless of
3904 size of value being shifted. */
3905 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3906 op1 = cp_convert (integer_type_node, op1);
3907 /* Avoid converting op1 to result_type later. */
3908 converted = 1;
3910 break;
3912 case LSHIFT_EXPR:
3913 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3915 result_type = type0;
3916 if (TREE_CODE (op1) == INTEGER_CST)
3918 if (tree_int_cst_lt (op1, integer_zero_node))
3920 if ((complain & tf_warning)
3921 && c_inhibit_evaluation_warnings == 0)
3922 warning (0, "left shift count is negative");
3924 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3926 if ((complain & tf_warning)
3927 && c_inhibit_evaluation_warnings == 0)
3928 warning (0, "left shift count >= width of type");
3931 /* Convert the shift-count to an integer, regardless of
3932 size of value being shifted. */
3933 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3934 op1 = cp_convert (integer_type_node, op1);
3935 /* Avoid converting op1 to result_type later. */
3936 converted = 1;
3938 break;
3940 case RROTATE_EXPR:
3941 case LROTATE_EXPR:
3942 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3944 result_type = type0;
3945 if (TREE_CODE (op1) == INTEGER_CST)
3947 if (tree_int_cst_lt (op1, integer_zero_node))
3949 if (complain & tf_warning)
3950 warning (0, (code == LROTATE_EXPR)
3951 ? G_("left rotate count is negative")
3952 : G_("right rotate count is negative"));
3954 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3956 if (complain & tf_warning)
3957 warning (0, (code == LROTATE_EXPR)
3958 ? G_("left rotate count >= width of type")
3959 : G_("right rotate count >= width of type"));
3962 /* Convert the shift-count to an integer, regardless of
3963 size of value being shifted. */
3964 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3965 op1 = cp_convert (integer_type_node, op1);
3967 break;
3969 case EQ_EXPR:
3970 case NE_EXPR:
3971 if ((complain & tf_warning)
3972 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
3973 warning (OPT_Wfloat_equal,
3974 "comparing floating point with == or != is unsafe");
3975 if ((complain & tf_warning)
3976 && ((TREE_CODE (orig_op0) == STRING_CST && !integer_zerop (op1))
3977 || (TREE_CODE (orig_op1) == STRING_CST && !integer_zerop (op0))))
3978 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
3980 build_type = boolean_type_node;
3981 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3982 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
3983 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3984 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
3985 short_compare = 1;
3986 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3987 || (TYPE_PTRMEM_P (type0) && TYPE_PTRMEM_P (type1)))
3988 result_type = composite_pointer_type (type0, type1, op0, op1,
3989 CPO_COMPARISON, complain);
3990 else if ((code0 == POINTER_TYPE || TYPE_PTRMEM_P (type0))
3991 && null_ptr_cst_p (op1))
3993 if (TREE_CODE (op0) == ADDR_EXPR
3994 && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
3996 if (complain & tf_warning)
3997 warning (OPT_Waddress, "the address of %qD will never be NULL",
3998 TREE_OPERAND (op0, 0));
4000 result_type = type0;
4002 else if ((code1 == POINTER_TYPE || TYPE_PTRMEM_P (type1))
4003 && null_ptr_cst_p (op0))
4005 if (TREE_CODE (op1) == ADDR_EXPR
4006 && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
4008 if (complain & tf_warning)
4009 warning (OPT_Waddress, "the address of %qD will never be NULL",
4010 TREE_OPERAND (op1, 0));
4012 result_type = type1;
4014 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4015 /* One of the operands must be of nullptr_t type. */
4016 result_type = TREE_TYPE (nullptr_node);
4017 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4019 result_type = type0;
4020 if (complain & tf_error)
4021 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4022 else
4023 return error_mark_node;
4025 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4027 result_type = type1;
4028 if (complain & tf_error)
4029 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4030 else
4031 return error_mark_node;
4033 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
4035 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4036 == ptrmemfunc_vbit_in_delta)
4038 tree pfn0 = pfn_from_ptrmemfunc (op0);
4039 tree delta0 = delta_from_ptrmemfunc (op0);
4040 tree e1 = cp_build_binary_op (location,
4041 EQ_EXPR,
4042 pfn0,
4043 build_zero_cst (TREE_TYPE (pfn0)),
4044 complain);
4045 tree e2 = cp_build_binary_op (location,
4046 BIT_AND_EXPR,
4047 delta0,
4048 integer_one_node,
4049 complain);
4050 e2 = cp_build_binary_op (location,
4051 EQ_EXPR, e2, integer_zero_node,
4052 complain);
4053 op0 = cp_build_binary_op (location,
4054 TRUTH_ANDIF_EXPR, e1, e2,
4055 complain);
4056 op1 = cp_convert (TREE_TYPE (op0), integer_one_node);
4058 else
4060 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4061 op1 = cp_convert (TREE_TYPE (op0), op1);
4063 result_type = TREE_TYPE (op0);
4065 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
4066 return cp_build_binary_op (location, code, op1, op0, complain);
4067 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4069 tree type;
4070 /* E will be the final comparison. */
4071 tree e;
4072 /* E1 and E2 are for scratch. */
4073 tree e1;
4074 tree e2;
4075 tree pfn0;
4076 tree pfn1;
4077 tree delta0;
4078 tree delta1;
4080 type = composite_pointer_type (type0, type1, op0, op1,
4081 CPO_COMPARISON, complain);
4083 if (!same_type_p (TREE_TYPE (op0), type))
4084 op0 = cp_convert_and_check (type, op0);
4085 if (!same_type_p (TREE_TYPE (op1), type))
4086 op1 = cp_convert_and_check (type, op1);
4088 if (op0 == error_mark_node || op1 == error_mark_node)
4089 return error_mark_node;
4091 if (TREE_SIDE_EFFECTS (op0))
4092 op0 = save_expr (op0);
4093 if (TREE_SIDE_EFFECTS (op1))
4094 op1 = save_expr (op1);
4096 pfn0 = pfn_from_ptrmemfunc (op0);
4097 pfn1 = pfn_from_ptrmemfunc (op1);
4098 delta0 = delta_from_ptrmemfunc (op0);
4099 delta1 = delta_from_ptrmemfunc (op1);
4100 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4101 == ptrmemfunc_vbit_in_delta)
4103 /* We generate:
4105 (op0.pfn == op1.pfn
4106 && ((op0.delta == op1.delta)
4107 || (!op0.pfn && op0.delta & 1 == 0
4108 && op1.delta & 1 == 0))
4110 The reason for the `!op0.pfn' bit is that a NULL
4111 pointer-to-member is any member with a zero PFN and
4112 LSB of the DELTA field is 0. */
4114 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4115 delta0,
4116 integer_one_node,
4117 complain);
4118 e1 = cp_build_binary_op (location,
4119 EQ_EXPR, e1, integer_zero_node,
4120 complain);
4121 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4122 delta1,
4123 integer_one_node,
4124 complain);
4125 e2 = cp_build_binary_op (location,
4126 EQ_EXPR, e2, integer_zero_node,
4127 complain);
4128 e1 = cp_build_binary_op (location,
4129 TRUTH_ANDIF_EXPR, e2, e1,
4130 complain);
4131 e2 = cp_build_binary_op (location, EQ_EXPR,
4132 pfn0,
4133 build_zero_cst (TREE_TYPE (pfn0)),
4134 complain);
4135 e2 = cp_build_binary_op (location,
4136 TRUTH_ANDIF_EXPR, e2, e1, complain);
4137 e1 = cp_build_binary_op (location,
4138 EQ_EXPR, delta0, delta1, complain);
4139 e1 = cp_build_binary_op (location,
4140 TRUTH_ORIF_EXPR, e1, e2, complain);
4142 else
4144 /* We generate:
4146 (op0.pfn == op1.pfn
4147 && (!op0.pfn || op0.delta == op1.delta))
4149 The reason for the `!op0.pfn' bit is that a NULL
4150 pointer-to-member is any member with a zero PFN; the
4151 DELTA field is unspecified. */
4153 e1 = cp_build_binary_op (location,
4154 EQ_EXPR, delta0, delta1, complain);
4155 e2 = cp_build_binary_op (location,
4156 EQ_EXPR,
4157 pfn0,
4158 build_zero_cst (TREE_TYPE (pfn0)),
4159 complain);
4160 e1 = cp_build_binary_op (location,
4161 TRUTH_ORIF_EXPR, e1, e2, complain);
4163 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4164 e = cp_build_binary_op (location,
4165 TRUTH_ANDIF_EXPR, e2, e1, complain);
4166 if (code == EQ_EXPR)
4167 return e;
4168 return cp_build_binary_op (location,
4169 EQ_EXPR, e, integer_zero_node, complain);
4171 else
4173 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4174 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4175 type1));
4176 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4177 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4178 type0));
4181 break;
4183 case MAX_EXPR:
4184 case MIN_EXPR:
4185 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4186 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4187 shorten = 1;
4188 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4189 result_type = composite_pointer_type (type0, type1, op0, op1,
4190 CPO_COMPARISON, complain);
4191 break;
4193 case LE_EXPR:
4194 case GE_EXPR:
4195 case LT_EXPR:
4196 case GT_EXPR:
4197 if (TREE_CODE (orig_op0) == STRING_CST
4198 || TREE_CODE (orig_op1) == STRING_CST)
4200 if (complain & tf_warning)
4201 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4204 build_type = boolean_type_node;
4205 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4206 || code0 == ENUMERAL_TYPE)
4207 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4208 || code1 == ENUMERAL_TYPE))
4209 short_compare = 1;
4210 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4211 result_type = composite_pointer_type (type0, type1, op0, op1,
4212 CPO_COMPARISON, complain);
4213 else if (code0 == POINTER_TYPE && null_ptr_cst_p (op1))
4215 result_type = type0;
4216 if (extra_warnings && (complain & tf_warning))
4217 warning (OPT_Wextra,
4218 "ordered comparison of pointer with integer zero");
4220 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op0))
4222 result_type = type1;
4223 if (extra_warnings && (complain & tf_warning))
4224 warning (OPT_Wextra,
4225 "ordered comparison of pointer with integer zero");
4227 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4228 /* One of the operands must be of nullptr_t type. */
4229 result_type = TREE_TYPE (nullptr_node);
4230 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4232 result_type = type0;
4233 if (complain & tf_error)
4234 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4235 else
4236 return error_mark_node;
4238 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4240 result_type = type1;
4241 if (complain & tf_error)
4242 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4243 else
4244 return error_mark_node;
4246 break;
4248 case UNORDERED_EXPR:
4249 case ORDERED_EXPR:
4250 case UNLT_EXPR:
4251 case UNLE_EXPR:
4252 case UNGT_EXPR:
4253 case UNGE_EXPR:
4254 case UNEQ_EXPR:
4255 build_type = integer_type_node;
4256 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
4258 if (complain & tf_error)
4259 error ("unordered comparison on non-floating point argument");
4260 return error_mark_node;
4262 common = 1;
4263 break;
4265 default:
4266 break;
4269 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
4270 || code0 == ENUMERAL_TYPE)
4271 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4272 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
4273 arithmetic_types_p = 1;
4274 else
4276 arithmetic_types_p = 0;
4277 /* Vector arithmetic is only allowed when both sides are vectors. */
4278 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4280 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
4281 || !same_scalar_type_ignoring_signedness (TREE_TYPE (type0),
4282 TREE_TYPE (type1)))
4284 binary_op_error (location, code, type0, type1);
4285 return error_mark_node;
4287 arithmetic_types_p = 1;
4290 /* Determine the RESULT_TYPE, if it is not already known. */
4291 if (!result_type
4292 && arithmetic_types_p
4293 && (shorten || common || short_compare))
4295 result_type = cp_common_type (type0, type1);
4296 do_warn_double_promotion (result_type, type0, type1,
4297 "implicit conversion from %qT to %qT "
4298 "to match other operand of binary "
4299 "expression",
4300 location);
4303 if (!result_type)
4305 if (complain & tf_error)
4306 error ("invalid operands of types %qT and %qT to binary %qO",
4307 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
4308 return error_mark_node;
4311 /* If we're in a template, the only thing we need to know is the
4312 RESULT_TYPE. */
4313 if (processing_template_decl)
4315 /* Since the middle-end checks the type when doing a build2, we
4316 need to build the tree in pieces. This built tree will never
4317 get out of the front-end as we replace it when instantiating
4318 the template. */
4319 tree tmp = build2 (resultcode,
4320 build_type ? build_type : result_type,
4321 NULL_TREE, op1);
4322 TREE_OPERAND (tmp, 0) = op0;
4323 return tmp;
4326 if (arithmetic_types_p)
4328 bool first_complex = (code0 == COMPLEX_TYPE);
4329 bool second_complex = (code1 == COMPLEX_TYPE);
4330 int none_complex = (!first_complex && !second_complex);
4332 /* Adapted from patch for c/24581. */
4333 if (first_complex != second_complex
4334 && (code == PLUS_EXPR
4335 || code == MINUS_EXPR
4336 || code == MULT_EXPR
4337 || (code == TRUNC_DIV_EXPR && first_complex))
4338 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
4339 && flag_signed_zeros)
4341 /* An operation on mixed real/complex operands must be
4342 handled specially, but the language-independent code can
4343 more easily optimize the plain complex arithmetic if
4344 -fno-signed-zeros. */
4345 tree real_type = TREE_TYPE (result_type);
4346 tree real, imag;
4347 if (first_complex)
4349 if (TREE_TYPE (op0) != result_type)
4350 op0 = cp_convert_and_check (result_type, op0);
4351 if (TREE_TYPE (op1) != real_type)
4352 op1 = cp_convert_and_check (real_type, op1);
4354 else
4356 if (TREE_TYPE (op0) != real_type)
4357 op0 = cp_convert_and_check (real_type, op0);
4358 if (TREE_TYPE (op1) != result_type)
4359 op1 = cp_convert_and_check (result_type, op1);
4361 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
4362 return error_mark_node;
4363 if (first_complex)
4365 op0 = save_expr (op0);
4366 real = cp_build_unary_op (REALPART_EXPR, op0, 1, complain);
4367 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain);
4368 switch (code)
4370 case MULT_EXPR:
4371 case TRUNC_DIV_EXPR:
4372 op1 = save_expr (op1);
4373 imag = build2 (resultcode, real_type, imag, op1);
4374 /* Fall through. */
4375 case PLUS_EXPR:
4376 case MINUS_EXPR:
4377 real = build2 (resultcode, real_type, real, op1);
4378 break;
4379 default:
4380 gcc_unreachable();
4383 else
4385 op1 = save_expr (op1);
4386 real = cp_build_unary_op (REALPART_EXPR, op1, 1, complain);
4387 imag = cp_build_unary_op (IMAGPART_EXPR, op1, 1, complain);
4388 switch (code)
4390 case MULT_EXPR:
4391 op0 = save_expr (op0);
4392 imag = build2 (resultcode, real_type, op0, imag);
4393 /* Fall through. */
4394 case PLUS_EXPR:
4395 real = build2 (resultcode, real_type, op0, real);
4396 break;
4397 case MINUS_EXPR:
4398 real = build2 (resultcode, real_type, op0, real);
4399 imag = build1 (NEGATE_EXPR, real_type, imag);
4400 break;
4401 default:
4402 gcc_unreachable();
4405 real = fold_if_not_in_template (real);
4406 imag = fold_if_not_in_template (imag);
4407 result = build2 (COMPLEX_EXPR, result_type, real, imag);
4408 result = fold_if_not_in_template (result);
4409 return result;
4412 /* For certain operations (which identify themselves by shorten != 0)
4413 if both args were extended from the same smaller type,
4414 do the arithmetic in that type and then extend.
4416 shorten !=0 and !=1 indicates a bitwise operation.
4417 For them, this optimization is safe only if
4418 both args are zero-extended or both are sign-extended.
4419 Otherwise, we might change the result.
4420 E.g., (short)-1 | (unsigned short)-1 is (int)-1
4421 but calculated in (unsigned short) it would be (unsigned short)-1. */
4423 if (shorten && none_complex)
4425 final_type = result_type;
4426 result_type = shorten_binary_op (result_type, op0, op1,
4427 shorten == -1);
4430 /* Comparison operations are shortened too but differently.
4431 They identify themselves by setting short_compare = 1. */
4433 if (short_compare)
4435 /* Don't write &op0, etc., because that would prevent op0
4436 from being kept in a register.
4437 Instead, make copies of the our local variables and
4438 pass the copies by reference, then copy them back afterward. */
4439 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
4440 enum tree_code xresultcode = resultcode;
4441 tree val
4442 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
4443 if (val != 0)
4444 return cp_convert (boolean_type_node, val);
4445 op0 = xop0, op1 = xop1;
4446 converted = 1;
4447 resultcode = xresultcode;
4450 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
4451 && warn_sign_compare
4452 && !TREE_NO_WARNING (orig_op0)
4453 && !TREE_NO_WARNING (orig_op1)
4454 /* Do not warn until the template is instantiated; we cannot
4455 bound the ranges of the arguments until that point. */
4456 && !processing_template_decl
4457 && (complain & tf_warning)
4458 && c_inhibit_evaluation_warnings == 0)
4460 warn_for_sign_compare (location, orig_op0, orig_op1, op0, op1,
4461 result_type, resultcode);
4465 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
4466 Then the expression will be built.
4467 It will be given type FINAL_TYPE if that is nonzero;
4468 otherwise, it will be given type RESULT_TYPE. */
4469 if (! converted)
4471 if (TREE_TYPE (op0) != result_type)
4472 op0 = cp_convert_and_check (result_type, op0);
4473 if (TREE_TYPE (op1) != result_type)
4474 op1 = cp_convert_and_check (result_type, op1);
4476 if (op0 == error_mark_node || op1 == error_mark_node)
4477 return error_mark_node;
4480 if (build_type == NULL_TREE)
4481 build_type = result_type;
4483 result = build2 (resultcode, build_type, op0, op1);
4484 result = fold_if_not_in_template (result);
4485 if (final_type != 0)
4486 result = cp_convert (final_type, result);
4488 if (TREE_OVERFLOW_P (result)
4489 && !TREE_OVERFLOW_P (op0)
4490 && !TREE_OVERFLOW_P (op1))
4491 overflow_warning (location, result);
4493 return result;
4496 /* Return a tree for the sum or difference (RESULTCODE says which)
4497 of pointer PTROP and integer INTOP. */
4499 static tree
4500 cp_pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop)
4502 tree res_type = TREE_TYPE (ptrop);
4504 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
4505 in certain circumstance (when it's valid to do so). So we need
4506 to make sure it's complete. We don't need to check here, if we
4507 can actually complete it at all, as those checks will be done in
4508 pointer_int_sum() anyway. */
4509 complete_type (TREE_TYPE (res_type));
4511 return pointer_int_sum (input_location, resultcode, ptrop,
4512 fold_if_not_in_template (intop));
4515 /* Return a tree for the difference of pointers OP0 and OP1.
4516 The resulting tree has type int. */
4518 static tree
4519 pointer_diff (tree op0, tree op1, tree ptrtype)
4521 tree result;
4522 tree restype = ptrdiff_type_node;
4523 tree target_type = TREE_TYPE (ptrtype);
4525 if (!complete_type_or_else (target_type, NULL_TREE))
4526 return error_mark_node;
4528 if (TREE_CODE (target_type) == VOID_TYPE)
4529 permerror (input_location, "ISO C++ forbids using pointer of type %<void *%> in subtraction");
4530 if (TREE_CODE (target_type) == FUNCTION_TYPE)
4531 permerror (input_location, "ISO C++ forbids using pointer to a function in subtraction");
4532 if (TREE_CODE (target_type) == METHOD_TYPE)
4533 permerror (input_location, "ISO C++ forbids using pointer to a method in subtraction");
4535 /* First do the subtraction as integers;
4536 then drop through to build the divide operator. */
4538 op0 = cp_build_binary_op (input_location,
4539 MINUS_EXPR,
4540 cp_convert (restype, op0),
4541 cp_convert (restype, op1),
4542 tf_warning_or_error);
4544 /* This generates an error if op1 is a pointer to an incomplete type. */
4545 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
4546 error ("invalid use of a pointer to an incomplete type in pointer arithmetic");
4548 op1 = (TYPE_PTROB_P (ptrtype)
4549 ? size_in_bytes (target_type)
4550 : integer_one_node);
4552 /* Do the division. */
4554 result = build2 (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
4555 return fold_if_not_in_template (result);
4558 /* Construct and perhaps optimize a tree representation
4559 for a unary operation. CODE, a tree_code, specifies the operation
4560 and XARG is the operand. */
4562 tree
4563 build_x_unary_op (enum tree_code code, tree xarg, tsubst_flags_t complain)
4565 tree orig_expr = xarg;
4566 tree exp;
4567 int ptrmem = 0;
4569 if (processing_template_decl)
4571 if (type_dependent_expression_p (xarg))
4572 return build_min_nt (code, xarg, NULL_TREE);
4574 xarg = build_non_dependent_expr (xarg);
4577 exp = NULL_TREE;
4579 /* [expr.unary.op] says:
4581 The address of an object of incomplete type can be taken.
4583 (And is just the ordinary address operator, not an overloaded
4584 "operator &".) However, if the type is a template
4585 specialization, we must complete the type at this point so that
4586 an overloaded "operator &" will be available if required. */
4587 if (code == ADDR_EXPR
4588 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
4589 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
4590 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
4591 || (TREE_CODE (xarg) == OFFSET_REF)))
4592 /* Don't look for a function. */;
4593 else
4594 exp = build_new_op (code, LOOKUP_NORMAL, xarg, NULL_TREE, NULL_TREE,
4595 /*overload=*/NULL, complain);
4596 if (!exp && code == ADDR_EXPR)
4598 if (is_overloaded_fn (xarg))
4600 tree fn = get_first_fn (xarg);
4601 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
4603 error (DECL_CONSTRUCTOR_P (fn)
4604 ? G_("taking address of constructor %qE")
4605 : G_("taking address of destructor %qE"),
4606 xarg);
4607 return error_mark_node;
4611 /* A pointer to member-function can be formed only by saying
4612 &X::mf. */
4613 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
4614 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
4616 if (TREE_CODE (xarg) != OFFSET_REF
4617 || !TYPE_P (TREE_OPERAND (xarg, 0)))
4619 error ("invalid use of %qE to form a pointer-to-member-function",
4620 xarg);
4621 if (TREE_CODE (xarg) != OFFSET_REF)
4622 inform (input_location, " a qualified-id is required");
4623 return error_mark_node;
4625 else
4627 error ("parentheses around %qE cannot be used to form a"
4628 " pointer-to-member-function",
4629 xarg);
4630 PTRMEM_OK_P (xarg) = 1;
4634 if (TREE_CODE (xarg) == OFFSET_REF)
4636 ptrmem = PTRMEM_OK_P (xarg);
4638 if (!ptrmem && !flag_ms_extensions
4639 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
4641 /* A single non-static member, make sure we don't allow a
4642 pointer-to-member. */
4643 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
4644 TREE_OPERAND (xarg, 0),
4645 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
4646 PTRMEM_OK_P (xarg) = ptrmem;
4650 exp = cp_build_addr_expr_strict (xarg, complain);
4653 if (processing_template_decl && exp != error_mark_node)
4654 exp = build_min_non_dep (code, exp, orig_expr,
4655 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
4656 if (TREE_CODE (exp) == ADDR_EXPR)
4657 PTRMEM_OK_P (exp) = ptrmem;
4658 return exp;
4661 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
4662 constants, where a null value is represented by an INTEGER_CST of
4663 -1. */
4665 tree
4666 cp_truthvalue_conversion (tree expr)
4668 tree type = TREE_TYPE (expr);
4669 if (TYPE_PTRMEM_P (type))
4670 return build_binary_op (EXPR_LOCATION (expr),
4671 NE_EXPR, expr, nullptr_node, 1);
4672 else if (TYPE_PTR_P (type) || TYPE_PTRMEMFUNC_P (type))
4674 /* With -Wzero-as-null-pointer-constant do not warn for an
4675 'if (p)' or a 'while (!p)', where p is a pointer. */
4676 tree ret;
4677 ++c_inhibit_evaluation_warnings;
4678 ret = c_common_truthvalue_conversion (input_location, expr);
4679 --c_inhibit_evaluation_warnings;
4680 return ret;
4682 else
4683 return c_common_truthvalue_conversion (input_location, expr);
4686 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
4688 tree
4689 condition_conversion (tree expr)
4691 tree t;
4692 if (processing_template_decl)
4693 return expr;
4694 t = perform_implicit_conversion_flags (boolean_type_node, expr,
4695 tf_warning_or_error, LOOKUP_NORMAL);
4696 t = fold_build_cleanup_point_expr (boolean_type_node, t);
4697 return t;
4700 /* Returns the address of T. This function will fold away
4701 ADDR_EXPR of INDIRECT_REF. */
4703 tree
4704 build_address (tree t)
4706 if (error_operand_p (t) || !cxx_mark_addressable (t))
4707 return error_mark_node;
4708 t = build_fold_addr_expr (t);
4709 if (TREE_CODE (t) != ADDR_EXPR)
4710 t = rvalue (t);
4711 return t;
4714 /* Returns the address of T with type TYPE. */
4716 tree
4717 build_typed_address (tree t, tree type)
4719 if (error_operand_p (t) || !cxx_mark_addressable (t))
4720 return error_mark_node;
4721 t = build_fold_addr_expr_with_type (t, type);
4722 if (TREE_CODE (t) != ADDR_EXPR)
4723 t = rvalue (t);
4724 return t;
4727 /* Return a NOP_EXPR converting EXPR to TYPE. */
4729 tree
4730 build_nop (tree type, tree expr)
4732 if (type == error_mark_node || error_operand_p (expr))
4733 return expr;
4734 return build1 (NOP_EXPR, type, expr);
4737 /* Take the address of ARG, whatever that means under C++ semantics.
4738 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
4739 and class rvalues as well.
4741 Nothing should call this function directly; instead, callers should use
4742 cp_build_addr_expr or cp_build_addr_expr_strict. */
4744 static tree
4745 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
4747 tree argtype;
4748 tree val;
4750 if (!arg || error_operand_p (arg))
4751 return error_mark_node;
4753 arg = mark_lvalue_use (arg);
4754 argtype = lvalue_type (arg);
4756 gcc_assert (TREE_CODE (arg) != IDENTIFIER_NODE
4757 || !IDENTIFIER_OPNAME_P (arg));
4759 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
4760 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
4762 /* They're trying to take the address of a unique non-static
4763 member function. This is ill-formed (except in MS-land),
4764 but let's try to DTRT.
4765 Note: We only handle unique functions here because we don't
4766 want to complain if there's a static overload; non-unique
4767 cases will be handled by instantiate_type. But we need to
4768 handle this case here to allow casts on the resulting PMF.
4769 We could defer this in non-MS mode, but it's easier to give
4770 a useful error here. */
4772 /* Inside constant member functions, the `this' pointer
4773 contains an extra const qualifier. TYPE_MAIN_VARIANT
4774 is used here to remove this const from the diagnostics
4775 and the created OFFSET_REF. */
4776 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
4777 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
4778 mark_used (fn);
4780 if (! flag_ms_extensions)
4782 tree name = DECL_NAME (fn);
4783 if (!(complain & tf_error))
4784 return error_mark_node;
4785 else if (current_class_type
4786 && TREE_OPERAND (arg, 0) == current_class_ref)
4787 /* An expression like &memfn. */
4788 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
4789 " or parenthesized non-static member function to form"
4790 " a pointer to member function. Say %<&%T::%D%>",
4791 base, name);
4792 else
4793 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
4794 " function to form a pointer to member function."
4795 " Say %<&%T::%D%>",
4796 base, name);
4798 arg = build_offset_ref (base, fn, /*address_p=*/true);
4801 /* Uninstantiated types are all functions. Taking the
4802 address of a function is a no-op, so just return the
4803 argument. */
4804 if (type_unknown_p (arg))
4805 return build1 (ADDR_EXPR, unknown_type_node, arg);
4807 if (TREE_CODE (arg) == OFFSET_REF)
4808 /* We want a pointer to member; bypass all the code for actually taking
4809 the address of something. */
4810 goto offset_ref;
4812 /* Anything not already handled and not a true memory reference
4813 is an error. */
4814 if (TREE_CODE (argtype) != FUNCTION_TYPE
4815 && TREE_CODE (argtype) != METHOD_TYPE)
4817 cp_lvalue_kind kind = lvalue_kind (arg);
4818 if (kind == clk_none)
4820 if (complain & tf_error)
4821 lvalue_error (input_location, lv_addressof);
4822 return error_mark_node;
4824 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
4826 if (!(complain & tf_error))
4827 return error_mark_node;
4828 if (kind & clk_class)
4829 /* Make this a permerror because we used to accept it. */
4830 permerror (input_location, "taking address of temporary");
4831 else
4832 error ("taking address of xvalue (rvalue reference)");
4836 if (TREE_CODE (argtype) == REFERENCE_TYPE)
4838 tree type = build_pointer_type (TREE_TYPE (argtype));
4839 arg = build1 (CONVERT_EXPR, type, arg);
4840 return arg;
4842 else if (pedantic && DECL_MAIN_P (arg))
4844 /* ARM $3.4 */
4845 /* Apparently a lot of autoconf scripts for C++ packages do this,
4846 so only complain if -pedantic. */
4847 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
4848 pedwarn (input_location, OPT_pedantic,
4849 "ISO C++ forbids taking address of function %<::main%>");
4850 else if (flag_pedantic_errors)
4851 return error_mark_node;
4854 /* Let &* cancel out to simplify resulting code. */
4855 if (TREE_CODE (arg) == INDIRECT_REF)
4857 /* We don't need to have `current_class_ptr' wrapped in a
4858 NON_LVALUE_EXPR node. */
4859 if (arg == current_class_ref)
4860 return current_class_ptr;
4862 arg = TREE_OPERAND (arg, 0);
4863 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
4865 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
4866 arg = build1 (CONVERT_EXPR, type, arg);
4868 else
4869 /* Don't let this be an lvalue. */
4870 arg = rvalue (arg);
4871 return arg;
4874 /* ??? Cope with user tricks that amount to offsetof. */
4875 if (TREE_CODE (argtype) != FUNCTION_TYPE
4876 && TREE_CODE (argtype) != METHOD_TYPE
4877 && argtype != unknown_type_node
4878 && (val = get_base_address (arg))
4879 && COMPLETE_TYPE_P (TREE_TYPE (val))
4880 && TREE_CODE (val) == INDIRECT_REF
4881 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
4883 tree type = build_pointer_type (argtype);
4884 return fold_convert (type, fold_offsetof_1 (arg));
4887 /* Handle complex lvalues (when permitted)
4888 by reduction to simpler cases. */
4889 val = unary_complex_lvalue (ADDR_EXPR, arg);
4890 if (val != 0)
4891 return val;
4893 switch (TREE_CODE (arg))
4895 CASE_CONVERT:
4896 case FLOAT_EXPR:
4897 case FIX_TRUNC_EXPR:
4898 /* Even if we're not being pedantic, we cannot allow this
4899 extension when we're instantiating in a SFINAE
4900 context. */
4901 if (! lvalue_p (arg) && complain == tf_none)
4903 if (complain & tf_error)
4904 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
4905 else
4906 return error_mark_node;
4908 break;
4910 case BASELINK:
4911 arg = BASELINK_FUNCTIONS (arg);
4912 /* Fall through. */
4914 case OVERLOAD:
4915 arg = OVL_CURRENT (arg);
4916 break;
4918 case OFFSET_REF:
4919 offset_ref:
4920 /* Turn a reference to a non-static data member into a
4921 pointer-to-member. */
4923 tree type;
4924 tree t;
4926 gcc_assert (PTRMEM_OK_P (arg));
4928 t = TREE_OPERAND (arg, 1);
4929 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4931 if (complain & tf_error)
4932 error ("cannot create pointer to reference member %qD", t);
4933 return error_mark_node;
4936 type = build_ptrmem_type (context_for_name_lookup (t),
4937 TREE_TYPE (t));
4938 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
4939 return t;
4942 default:
4943 break;
4946 if (argtype != error_mark_node)
4947 argtype = build_pointer_type (argtype);
4949 /* In a template, we are processing a non-dependent expression
4950 so we can just form an ADDR_EXPR with the correct type. */
4951 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
4953 val = build_address (arg);
4954 if (TREE_CODE (arg) == OFFSET_REF)
4955 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
4957 else if (BASELINK_P (TREE_OPERAND (arg, 1)))
4959 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
4961 /* We can only get here with a single static member
4962 function. */
4963 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
4964 && DECL_STATIC_FUNCTION_P (fn));
4965 mark_used (fn);
4966 val = build_address (fn);
4967 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
4968 /* Do not lose object's side effects. */
4969 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
4970 TREE_OPERAND (arg, 0), val);
4972 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
4974 if (complain & tf_error)
4975 error ("attempt to take address of bit-field structure member %qD",
4976 TREE_OPERAND (arg, 1));
4977 return error_mark_node;
4979 else
4981 tree object = TREE_OPERAND (arg, 0);
4982 tree field = TREE_OPERAND (arg, 1);
4983 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4984 (TREE_TYPE (object), decl_type_context (field)));
4985 val = build_address (arg);
4988 if (TREE_CODE (argtype) == POINTER_TYPE
4989 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
4991 build_ptrmemfunc_type (argtype);
4992 val = build_ptrmemfunc (argtype, val, 0,
4993 /*c_cast_p=*/false,
4994 tf_warning_or_error);
4997 return val;
5000 /* Take the address of ARG if it has one, even if it's an rvalue. */
5002 tree
5003 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
5005 return cp_build_addr_expr_1 (arg, 0, complain);
5008 /* Take the address of ARG, but only if it's an lvalue. */
5010 tree
5011 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
5013 return cp_build_addr_expr_1 (arg, 1, complain);
5016 /* C++: Must handle pointers to members.
5018 Perhaps type instantiation should be extended to handle conversion
5019 from aggregates to types we don't yet know we want? (Or are those
5020 cases typically errors which should be reported?)
5022 NOCONVERT nonzero suppresses the default promotions
5023 (such as from short to int). */
5025 tree
5026 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
5027 tsubst_flags_t complain)
5029 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
5030 tree arg = xarg;
5031 tree argtype = 0;
5032 const char *errstring = NULL;
5033 tree val;
5034 const char *invalid_op_diag;
5036 if (!arg || error_operand_p (arg))
5037 return error_mark_node;
5039 if ((invalid_op_diag
5040 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
5041 ? CONVERT_EXPR
5042 : code),
5043 TREE_TYPE (xarg))))
5045 error (invalid_op_diag);
5046 return error_mark_node;
5049 switch (code)
5051 case UNARY_PLUS_EXPR:
5052 case NEGATE_EXPR:
5054 int flags = WANT_ARITH | WANT_ENUM;
5055 /* Unary plus (but not unary minus) is allowed on pointers. */
5056 if (code == UNARY_PLUS_EXPR)
5057 flags |= WANT_POINTER;
5058 arg = build_expr_type_conversion (flags, arg, true);
5059 if (!arg)
5060 errstring = (code == NEGATE_EXPR
5061 ? _("wrong type argument to unary minus")
5062 : _("wrong type argument to unary plus"));
5063 else
5065 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5066 arg = perform_integral_promotions (arg);
5068 /* Make sure the result is not an lvalue: a unary plus or minus
5069 expression is always a rvalue. */
5070 arg = rvalue (arg);
5073 break;
5075 case BIT_NOT_EXPR:
5076 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5078 code = CONJ_EXPR;
5079 if (!noconvert)
5080 arg = default_conversion (arg);
5082 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5083 | WANT_VECTOR_OR_COMPLEX,
5084 arg, true)))
5085 errstring = _("wrong type argument to bit-complement");
5086 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5087 arg = perform_integral_promotions (arg);
5088 break;
5090 case ABS_EXPR:
5091 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5092 errstring = _("wrong type argument to abs");
5093 else if (!noconvert)
5094 arg = default_conversion (arg);
5095 break;
5097 case CONJ_EXPR:
5098 /* Conjugating a real value is a no-op, but allow it anyway. */
5099 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5100 errstring = _("wrong type argument to conjugation");
5101 else if (!noconvert)
5102 arg = default_conversion (arg);
5103 break;
5105 case TRUTH_NOT_EXPR:
5106 arg = perform_implicit_conversion (boolean_type_node, arg,
5107 complain);
5108 val = invert_truthvalue_loc (input_location, arg);
5109 if (arg != error_mark_node)
5110 return val;
5111 errstring = _("in argument to unary !");
5112 break;
5114 case NOP_EXPR:
5115 break;
5117 case REALPART_EXPR:
5118 case IMAGPART_EXPR:
5119 arg = build_real_imag_expr (input_location, code, arg);
5120 if (arg == error_mark_node)
5121 return arg;
5122 else
5123 return fold_if_not_in_template (arg);
5125 case PREINCREMENT_EXPR:
5126 case POSTINCREMENT_EXPR:
5127 case PREDECREMENT_EXPR:
5128 case POSTDECREMENT_EXPR:
5129 /* Handle complex lvalues (when permitted)
5130 by reduction to simpler cases. */
5132 val = unary_complex_lvalue (code, arg);
5133 if (val != 0)
5134 return val;
5136 arg = mark_lvalue_use (arg);
5138 /* Increment or decrement the real part of the value,
5139 and don't change the imaginary part. */
5140 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5142 tree real, imag;
5144 arg = stabilize_reference (arg);
5145 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5146 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5147 real = cp_build_unary_op (code, real, 1, complain);
5148 if (real == error_mark_node || imag == error_mark_node)
5149 return error_mark_node;
5150 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5151 real, imag);
5154 /* Report invalid types. */
5156 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5157 arg, true)))
5159 if (code == PREINCREMENT_EXPR)
5160 errstring = _("no pre-increment operator for type");
5161 else if (code == POSTINCREMENT_EXPR)
5162 errstring = _("no post-increment operator for type");
5163 else if (code == PREDECREMENT_EXPR)
5164 errstring = _("no pre-decrement operator for type");
5165 else
5166 errstring = _("no post-decrement operator for type");
5167 break;
5169 else if (arg == error_mark_node)
5170 return error_mark_node;
5172 /* Report something read-only. */
5174 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5175 || TREE_READONLY (arg))
5177 if (complain & tf_error)
5178 cxx_readonly_error (arg, ((code == PREINCREMENT_EXPR
5179 || code == POSTINCREMENT_EXPR)
5180 ? lv_increment : lv_decrement));
5181 else
5182 return error_mark_node;
5186 tree inc;
5187 tree declared_type = unlowered_expr_type (arg);
5189 argtype = TREE_TYPE (arg);
5191 /* ARM $5.2.5 last annotation says this should be forbidden. */
5192 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5194 if (complain & tf_error)
5195 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5196 ? G_("ISO C++ forbids incrementing an enum")
5197 : G_("ISO C++ forbids decrementing an enum"));
5198 else
5199 return error_mark_node;
5202 /* Compute the increment. */
5204 if (TREE_CODE (argtype) == POINTER_TYPE)
5206 tree type = complete_type (TREE_TYPE (argtype));
5208 if (!COMPLETE_OR_VOID_TYPE_P (type))
5210 if (complain & tf_error)
5211 error (((code == PREINCREMENT_EXPR
5212 || code == POSTINCREMENT_EXPR))
5213 ? G_("cannot increment a pointer to incomplete type %qT")
5214 : G_("cannot decrement a pointer to incomplete type %qT"),
5215 TREE_TYPE (argtype));
5216 else
5217 return error_mark_node;
5219 else if ((pedantic || warn_pointer_arith)
5220 && !TYPE_PTROB_P (argtype))
5222 if (complain & tf_error)
5223 permerror (input_location, (code == PREINCREMENT_EXPR
5224 || code == POSTINCREMENT_EXPR)
5225 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
5226 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
5227 argtype);
5228 else
5229 return error_mark_node;
5232 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
5234 else
5235 inc = integer_one_node;
5237 inc = cp_convert (argtype, inc);
5239 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
5240 need to ask Objective-C to build the increment or decrement
5241 expression for it. */
5242 if (objc_is_property_ref (arg))
5243 return objc_build_incr_expr_for_property_ref (input_location, code,
5244 arg, inc);
5246 /* Complain about anything else that is not a true lvalue. */
5247 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
5248 || code == POSTINCREMENT_EXPR)
5249 ? lv_increment : lv_decrement),
5250 complain))
5251 return error_mark_node;
5253 /* Forbid using -- on `bool'. */
5254 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
5256 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
5258 if (complain & tf_error)
5259 error ("invalid use of Boolean expression as operand "
5260 "to %<operator--%>");
5261 return error_mark_node;
5263 val = boolean_increment (code, arg);
5265 else if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5266 /* An rvalue has no cv-qualifiers. */
5267 val = build2 (code, cv_unqualified (TREE_TYPE (arg)), arg, inc);
5268 else
5269 val = build2 (code, TREE_TYPE (arg), arg, inc);
5271 TREE_SIDE_EFFECTS (val) = 1;
5272 return val;
5275 case ADDR_EXPR:
5276 /* Note that this operation never does default_conversion
5277 regardless of NOCONVERT. */
5278 return cp_build_addr_expr (arg, complain);
5280 default:
5281 break;
5284 if (!errstring)
5286 if (argtype == 0)
5287 argtype = TREE_TYPE (arg);
5288 return fold_if_not_in_template (build1 (code, argtype, arg));
5291 if (complain & tf_error)
5292 error ("%s", errstring);
5293 return error_mark_node;
5296 /* Hook for the c-common bits that build a unary op. */
5297 tree
5298 build_unary_op (location_t location ATTRIBUTE_UNUSED,
5299 enum tree_code code, tree xarg, int noconvert)
5301 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
5304 /* Apply unary lvalue-demanding operator CODE to the expression ARG
5305 for certain kinds of expressions which are not really lvalues
5306 but which we can accept as lvalues.
5308 If ARG is not a kind of expression we can handle, return
5309 NULL_TREE. */
5311 tree
5312 unary_complex_lvalue (enum tree_code code, tree arg)
5314 /* Inside a template, making these kinds of adjustments is
5315 pointless; we are only concerned with the type of the
5316 expression. */
5317 if (processing_template_decl)
5318 return NULL_TREE;
5320 /* Handle (a, b) used as an "lvalue". */
5321 if (TREE_CODE (arg) == COMPOUND_EXPR)
5323 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
5324 tf_warning_or_error);
5325 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5326 TREE_OPERAND (arg, 0), real_result);
5329 /* Handle (a ? b : c) used as an "lvalue". */
5330 if (TREE_CODE (arg) == COND_EXPR
5331 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
5332 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
5334 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
5335 if (TREE_CODE (arg) == MODIFY_EXPR
5336 || TREE_CODE (arg) == PREINCREMENT_EXPR
5337 || TREE_CODE (arg) == PREDECREMENT_EXPR)
5339 tree lvalue = TREE_OPERAND (arg, 0);
5340 if (TREE_SIDE_EFFECTS (lvalue))
5342 lvalue = stabilize_reference (lvalue);
5343 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
5344 lvalue, TREE_OPERAND (arg, 1));
5346 return unary_complex_lvalue
5347 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
5350 if (code != ADDR_EXPR)
5351 return NULL_TREE;
5353 /* Handle (a = b) used as an "lvalue" for `&'. */
5354 if (TREE_CODE (arg) == MODIFY_EXPR
5355 || TREE_CODE (arg) == INIT_EXPR)
5357 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
5358 tf_warning_or_error);
5359 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5360 arg, real_result);
5361 TREE_NO_WARNING (arg) = 1;
5362 return arg;
5365 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
5366 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
5367 || TREE_CODE (arg) == OFFSET_REF)
5368 return NULL_TREE;
5370 /* We permit compiler to make function calls returning
5371 objects of aggregate type look like lvalues. */
5373 tree targ = arg;
5375 if (TREE_CODE (targ) == SAVE_EXPR)
5376 targ = TREE_OPERAND (targ, 0);
5378 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
5380 if (TREE_CODE (arg) == SAVE_EXPR)
5381 targ = arg;
5382 else
5383 targ = build_cplus_new (TREE_TYPE (arg), arg, tf_warning_or_error);
5384 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
5387 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
5388 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
5389 TREE_OPERAND (targ, 0), current_function_decl, NULL);
5392 /* Don't let anything else be handled specially. */
5393 return NULL_TREE;
5396 /* Mark EXP saying that we need to be able to take the
5397 address of it; it should not be allocated in a register.
5398 Value is true if successful.
5400 C++: we do not allow `current_class_ptr' to be addressable. */
5402 bool
5403 cxx_mark_addressable (tree exp)
5405 tree x = exp;
5407 while (1)
5408 switch (TREE_CODE (x))
5410 case ADDR_EXPR:
5411 case COMPONENT_REF:
5412 case ARRAY_REF:
5413 case REALPART_EXPR:
5414 case IMAGPART_EXPR:
5415 x = TREE_OPERAND (x, 0);
5416 break;
5418 case PARM_DECL:
5419 if (x == current_class_ptr)
5421 error ("cannot take the address of %<this%>, which is an rvalue expression");
5422 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
5423 return true;
5425 /* Fall through. */
5427 case VAR_DECL:
5428 /* Caller should not be trying to mark initialized
5429 constant fields addressable. */
5430 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
5431 || DECL_IN_AGGR_P (x) == 0
5432 || TREE_STATIC (x)
5433 || DECL_EXTERNAL (x));
5434 /* Fall through. */
5436 case RESULT_DECL:
5437 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
5438 && !DECL_ARTIFICIAL (x))
5440 if (TREE_CODE (x) == VAR_DECL && DECL_HARD_REGISTER (x))
5442 error
5443 ("address of explicit register variable %qD requested", x);
5444 return false;
5446 else if (extra_warnings)
5447 warning
5448 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
5450 TREE_ADDRESSABLE (x) = 1;
5451 return true;
5453 case CONST_DECL:
5454 case FUNCTION_DECL:
5455 TREE_ADDRESSABLE (x) = 1;
5456 return true;
5458 case CONSTRUCTOR:
5459 TREE_ADDRESSABLE (x) = 1;
5460 return true;
5462 case TARGET_EXPR:
5463 TREE_ADDRESSABLE (x) = 1;
5464 cxx_mark_addressable (TREE_OPERAND (x, 0));
5465 return true;
5467 default:
5468 return true;
5472 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
5474 tree
5475 build_x_conditional_expr (tree ifexp, tree op1, tree op2,
5476 tsubst_flags_t complain)
5478 tree orig_ifexp = ifexp;
5479 tree orig_op1 = op1;
5480 tree orig_op2 = op2;
5481 tree expr;
5483 if (processing_template_decl)
5485 /* The standard says that the expression is type-dependent if
5486 IFEXP is type-dependent, even though the eventual type of the
5487 expression doesn't dependent on IFEXP. */
5488 if (type_dependent_expression_p (ifexp)
5489 /* As a GNU extension, the middle operand may be omitted. */
5490 || (op1 && type_dependent_expression_p (op1))
5491 || type_dependent_expression_p (op2))
5492 return build_min_nt (COND_EXPR, ifexp, op1, op2);
5493 ifexp = build_non_dependent_expr (ifexp);
5494 if (op1)
5495 op1 = build_non_dependent_expr (op1);
5496 op2 = build_non_dependent_expr (op2);
5499 expr = build_conditional_expr (ifexp, op1, op2, complain);
5500 if (processing_template_decl && expr != error_mark_node)
5501 return build_min_non_dep (COND_EXPR, expr,
5502 orig_ifexp, orig_op1, orig_op2);
5503 return expr;
5506 /* Given a list of expressions, return a compound expression
5507 that performs them all and returns the value of the last of them. */
5509 tree
5510 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
5511 tsubst_flags_t complain)
5513 tree expr = TREE_VALUE (list);
5515 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
5516 && !CONSTRUCTOR_IS_DIRECT_INIT (expr))
5518 if (complain & tf_error)
5519 pedwarn (EXPR_LOC_OR_HERE (expr), 0, "list-initializer for "
5520 "non-class type must not be parenthesized");
5521 else
5522 return error_mark_node;
5525 if (TREE_CHAIN (list))
5527 if (complain & tf_error)
5528 switch (exp)
5530 case ELK_INIT:
5531 permerror (input_location, "expression list treated as compound "
5532 "expression in initializer");
5533 break;
5534 case ELK_MEM_INIT:
5535 permerror (input_location, "expression list treated as compound "
5536 "expression in mem-initializer");
5537 break;
5538 case ELK_FUNC_CAST:
5539 permerror (input_location, "expression list treated as compound "
5540 "expression in functional cast");
5541 break;
5542 default:
5543 gcc_unreachable ();
5545 else
5546 return error_mark_node;
5548 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
5549 expr = build_x_compound_expr (expr, TREE_VALUE (list),
5550 complain);
5553 return expr;
5556 /* Like build_x_compound_expr_from_list, but using a VEC. */
5558 tree
5559 build_x_compound_expr_from_vec (VEC(tree,gc) *vec, const char *msg)
5561 if (VEC_empty (tree, vec))
5562 return NULL_TREE;
5563 else if (VEC_length (tree, vec) == 1)
5564 return VEC_index (tree, vec, 0);
5565 else
5567 tree expr;
5568 unsigned int ix;
5569 tree t;
5571 if (msg != NULL)
5572 permerror (input_location,
5573 "%s expression list treated as compound expression",
5574 msg);
5576 expr = VEC_index (tree, vec, 0);
5577 for (ix = 1; VEC_iterate (tree, vec, ix, t); ++ix)
5578 expr = build_x_compound_expr (expr, t, tf_warning_or_error);
5580 return expr;
5584 /* Handle overloading of the ',' operator when needed. */
5586 tree
5587 build_x_compound_expr (tree op1, tree op2, tsubst_flags_t complain)
5589 tree result;
5590 tree orig_op1 = op1;
5591 tree orig_op2 = op2;
5593 if (processing_template_decl)
5595 if (type_dependent_expression_p (op1)
5596 || type_dependent_expression_p (op2))
5597 return build_min_nt (COMPOUND_EXPR, op1, op2);
5598 op1 = build_non_dependent_expr (op1);
5599 op2 = build_non_dependent_expr (op2);
5602 result = build_new_op (COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2, NULL_TREE,
5603 /*overload=*/NULL, complain);
5604 if (!result)
5605 result = cp_build_compound_expr (op1, op2, complain);
5607 if (processing_template_decl && result != error_mark_node)
5608 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
5610 return result;
5613 /* Like cp_build_compound_expr, but for the c-common bits. */
5615 tree
5616 build_compound_expr (location_t loc ATTRIBUTE_UNUSED, tree lhs, tree rhs)
5618 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
5621 /* Build a compound expression. */
5623 tree
5624 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
5626 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
5628 if (lhs == error_mark_node || rhs == error_mark_node)
5629 return error_mark_node;
5631 if (TREE_CODE (rhs) == TARGET_EXPR)
5633 /* If the rhs is a TARGET_EXPR, then build the compound
5634 expression inside the target_expr's initializer. This
5635 helps the compiler to eliminate unnecessary temporaries. */
5636 tree init = TREE_OPERAND (rhs, 1);
5638 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
5639 TREE_OPERAND (rhs, 1) = init;
5641 return rhs;
5644 if (type_unknown_p (rhs))
5646 error ("no context to resolve type of %qE", rhs);
5647 return error_mark_node;
5650 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
5653 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
5654 casts away constness. CAST gives the type of cast. Returns true
5655 if the cast is ill-formed, false if it is well-formed.
5657 ??? This function warns for casting away any qualifier not just
5658 const. We would like to specify exactly what qualifiers are casted
5659 away.
5662 static bool
5663 check_for_casting_away_constness (tree src_type, tree dest_type,
5664 enum tree_code cast, tsubst_flags_t complain)
5666 /* C-style casts are allowed to cast away constness. With
5667 WARN_CAST_QUAL, we still want to issue a warning. */
5668 if (cast == CAST_EXPR && !warn_cast_qual)
5669 return false;
5671 if (!casts_away_constness (src_type, dest_type))
5672 return false;
5674 switch (cast)
5676 case CAST_EXPR:
5677 if (complain & tf_warning)
5678 warning (OPT_Wcast_qual,
5679 "cast from type %qT to type %qT casts away qualifiers",
5680 src_type, dest_type);
5681 return false;
5683 case STATIC_CAST_EXPR:
5684 if (complain & tf_error)
5685 error ("static_cast from type %qT to type %qT casts away qualifiers",
5686 src_type, dest_type);
5687 return true;
5689 case REINTERPRET_CAST_EXPR:
5690 if (complain & tf_error)
5691 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
5692 src_type, dest_type);
5693 return true;
5695 default:
5696 gcc_unreachable();
5700 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
5701 (another pointer-to-member type in the same hierarchy) and return
5702 the converted expression. If ALLOW_INVERSE_P is permitted, a
5703 pointer-to-derived may be converted to pointer-to-base; otherwise,
5704 only the other direction is permitted. If C_CAST_P is true, this
5705 conversion is taking place as part of a C-style cast. */
5707 tree
5708 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
5709 bool c_cast_p, tsubst_flags_t complain)
5711 if (TYPE_PTRMEM_P (type))
5713 tree delta;
5715 if (TREE_CODE (expr) == PTRMEM_CST)
5716 expr = cplus_expand_constant (expr);
5717 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
5718 TYPE_PTRMEM_CLASS_TYPE (type),
5719 allow_inverse_p,
5720 c_cast_p, complain);
5721 if (delta == error_mark_node)
5722 return error_mark_node;
5724 if (!integer_zerop (delta))
5726 tree cond, op1, op2;
5728 cond = cp_build_binary_op (input_location,
5729 EQ_EXPR,
5730 expr,
5731 build_int_cst (TREE_TYPE (expr), -1),
5732 tf_warning_or_error);
5733 op1 = build_nop (ptrdiff_type_node, expr);
5734 op2 = cp_build_binary_op (input_location,
5735 PLUS_EXPR, op1, delta,
5736 tf_warning_or_error);
5738 expr = fold_build3_loc (input_location,
5739 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
5743 return build_nop (type, expr);
5745 else
5746 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
5747 allow_inverse_p, c_cast_p, complain);
5750 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
5751 this static_cast is being attempted as one of the possible casts
5752 allowed by a C-style cast. (In that case, accessibility of base
5753 classes is not considered, and it is OK to cast away
5754 constness.) Return the result of the cast. *VALID_P is set to
5755 indicate whether or not the cast was valid. */
5757 static tree
5758 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
5759 bool *valid_p, tsubst_flags_t complain)
5761 tree intype;
5762 tree result;
5764 /* Assume the cast is valid. */
5765 *valid_p = true;
5767 intype = TREE_TYPE (expr);
5769 /* Save casted types in the function's used types hash table. */
5770 used_types_insert (type);
5772 /* [expr.static.cast]
5774 An lvalue of type "cv1 B", where B is a class type, can be cast
5775 to type "reference to cv2 D", where D is a class derived (clause
5776 _class.derived_) from B, if a valid standard conversion from
5777 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
5778 same cv-qualification as, or greater cv-qualification than, cv1,
5779 and B is not a virtual base class of D. */
5780 /* We check this case before checking the validity of "TYPE t =
5781 EXPR;" below because for this case:
5783 struct B {};
5784 struct D : public B { D(const B&); };
5785 extern B& b;
5786 void f() { static_cast<const D&>(b); }
5788 we want to avoid constructing a new D. The standard is not
5789 completely clear about this issue, but our interpretation is
5790 consistent with other compilers. */
5791 if (TREE_CODE (type) == REFERENCE_TYPE
5792 && CLASS_TYPE_P (TREE_TYPE (type))
5793 && CLASS_TYPE_P (intype)
5794 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
5795 && DERIVED_FROM_P (intype, TREE_TYPE (type))
5796 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
5797 build_pointer_type (TYPE_MAIN_VARIANT
5798 (TREE_TYPE (type))))
5799 && (c_cast_p
5800 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5802 tree base;
5804 /* There is a standard conversion from "D*" to "B*" even if "B"
5805 is ambiguous or inaccessible. If this is really a
5806 static_cast, then we check both for inaccessibility and
5807 ambiguity. However, if this is a static_cast being performed
5808 because the user wrote a C-style cast, then accessibility is
5809 not considered. */
5810 base = lookup_base (TREE_TYPE (type), intype,
5811 c_cast_p ? ba_unique : ba_check,
5812 NULL);
5814 /* Convert from "B*" to "D*". This function will check that "B"
5815 is not a virtual base of "D". */
5816 expr = build_base_path (MINUS_EXPR, build_address (expr),
5817 base, /*nonnull=*/false, complain);
5818 /* Convert the pointer to a reference -- but then remember that
5819 there are no expressions with reference type in C++.
5821 We call rvalue so that there's an actual tree code
5822 (NON_LVALUE_EXPR) for the static_cast; otherwise, if the operand
5823 is a variable with the same type, the conversion would get folded
5824 away, leaving just the variable and causing lvalue_kind to give
5825 the wrong answer. */
5826 return convert_from_reference (rvalue (cp_fold_convert (type, expr)));
5829 /* "A glvalue of type cv1 T1 can be cast to type rvalue reference to
5830 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
5831 if (TREE_CODE (type) == REFERENCE_TYPE
5832 && TYPE_REF_IS_RVALUE (type)
5833 && lvalue_or_rvalue_with_address_p (expr)
5834 && reference_related_p (TREE_TYPE (type), intype)
5835 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5837 expr = build_typed_address (expr, type);
5838 return convert_from_reference (expr);
5841 /* Resolve overloaded address here rather than once in
5842 implicit_conversion and again in the inverse code below. */
5843 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
5845 expr = instantiate_type (type, expr, complain);
5846 intype = TREE_TYPE (expr);
5849 /* [expr.static.cast]
5851 An expression e can be explicitly converted to a type T using a
5852 static_cast of the form static_cast<T>(e) if the declaration T
5853 t(e);" is well-formed, for some invented temporary variable
5854 t. */
5855 result = perform_direct_initialization_if_possible (type, expr,
5856 c_cast_p, complain);
5857 if (result)
5859 result = convert_from_reference (result);
5861 /* [expr.static.cast]
5863 If T is a reference type, the result is an lvalue; otherwise,
5864 the result is an rvalue. */
5865 if (TREE_CODE (type) != REFERENCE_TYPE)
5866 result = rvalue (result);
5867 return result;
5870 /* [expr.static.cast]
5872 Any expression can be explicitly converted to type cv void. */
5873 if (TREE_CODE (type) == VOID_TYPE)
5874 return convert_to_void (expr, ICV_CAST, complain);
5876 /* [expr.static.cast]
5878 The inverse of any standard conversion sequence (clause _conv_),
5879 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
5880 (_conv.array_), function-to-pointer (_conv.func_), and boolean
5881 (_conv.bool_) conversions, can be performed explicitly using
5882 static_cast subject to the restriction that the explicit
5883 conversion does not cast away constness (_expr.const.cast_), and
5884 the following additional rules for specific cases: */
5885 /* For reference, the conversions not excluded are: integral
5886 promotions, floating point promotion, integral conversions,
5887 floating point conversions, floating-integral conversions,
5888 pointer conversions, and pointer to member conversions. */
5889 /* DR 128
5891 A value of integral _or enumeration_ type can be explicitly
5892 converted to an enumeration type. */
5893 /* The effect of all that is that any conversion between any two
5894 types which are integral, floating, or enumeration types can be
5895 performed. */
5896 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5897 || SCALAR_FLOAT_TYPE_P (type))
5898 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
5899 || SCALAR_FLOAT_TYPE_P (intype)))
5900 return ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL);
5902 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
5903 && CLASS_TYPE_P (TREE_TYPE (type))
5904 && CLASS_TYPE_P (TREE_TYPE (intype))
5905 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
5906 (TREE_TYPE (intype))),
5907 build_pointer_type (TYPE_MAIN_VARIANT
5908 (TREE_TYPE (type)))))
5910 tree base;
5912 if (!c_cast_p
5913 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
5914 complain))
5915 return error_mark_node;
5916 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
5917 c_cast_p ? ba_unique : ba_check,
5918 NULL);
5919 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false,
5920 complain);
5921 return cp_fold_convert(type, expr);
5924 if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
5925 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
5927 tree c1;
5928 tree c2;
5929 tree t1;
5930 tree t2;
5932 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
5933 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
5935 if (TYPE_PTRMEM_P (type))
5937 t1 = (build_ptrmem_type
5938 (c1,
5939 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
5940 t2 = (build_ptrmem_type
5941 (c2,
5942 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
5944 else
5946 t1 = intype;
5947 t2 = type;
5949 if (can_convert (t1, t2) || can_convert (t2, t1))
5951 if (!c_cast_p
5952 && check_for_casting_away_constness (intype, type,
5953 STATIC_CAST_EXPR,
5954 complain))
5955 return error_mark_node;
5956 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
5957 c_cast_p, complain);
5961 /* [expr.static.cast]
5963 An rvalue of type "pointer to cv void" can be explicitly
5964 converted to a pointer to object type. A value of type pointer
5965 to object converted to "pointer to cv void" and back to the
5966 original pointer type will have its original value. */
5967 if (TREE_CODE (intype) == POINTER_TYPE
5968 && VOID_TYPE_P (TREE_TYPE (intype))
5969 && TYPE_PTROB_P (type))
5971 if (!c_cast_p
5972 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
5973 complain))
5974 return error_mark_node;
5975 return build_nop (type, expr);
5978 *valid_p = false;
5979 return error_mark_node;
5982 /* Return an expression representing static_cast<TYPE>(EXPR). */
5984 tree
5985 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
5987 tree result;
5988 bool valid_p;
5990 if (type == error_mark_node || expr == error_mark_node)
5991 return error_mark_node;
5993 if (processing_template_decl)
5995 expr = build_min (STATIC_CAST_EXPR, type, expr);
5996 /* We don't know if it will or will not have side effects. */
5997 TREE_SIDE_EFFECTS (expr) = 1;
5998 return convert_from_reference (expr);
6001 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6002 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6003 if (TREE_CODE (type) != REFERENCE_TYPE
6004 && TREE_CODE (expr) == NOP_EXPR
6005 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6006 expr = TREE_OPERAND (expr, 0);
6008 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
6009 complain);
6010 if (valid_p)
6011 return result;
6013 if (complain & tf_error)
6014 error ("invalid static_cast from type %qT to type %qT",
6015 TREE_TYPE (expr), type);
6016 return error_mark_node;
6019 /* EXPR is an expression with member function or pointer-to-member
6020 function type. TYPE is a pointer type. Converting EXPR to TYPE is
6021 not permitted by ISO C++, but we accept it in some modes. If we
6022 are not in one of those modes, issue a diagnostic. Return the
6023 converted expression. */
6025 tree
6026 convert_member_func_to_ptr (tree type, tree expr)
6028 tree intype;
6029 tree decl;
6031 intype = TREE_TYPE (expr);
6032 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
6033 || TREE_CODE (intype) == METHOD_TYPE);
6035 if (pedantic || warn_pmf2ptr)
6036 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpmf_conversions,
6037 "converting from %qT to %qT", intype, type);
6039 if (TREE_CODE (intype) == METHOD_TYPE)
6040 expr = build_addr_func (expr);
6041 else if (TREE_CODE (expr) == PTRMEM_CST)
6042 expr = build_address (PTRMEM_CST_MEMBER (expr));
6043 else
6045 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
6046 decl = build_address (decl);
6047 expr = get_member_function_from_ptrfunc (&decl, expr);
6050 return build_nop (type, expr);
6053 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
6054 If C_CAST_P is true, this reinterpret cast is being done as part of
6055 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
6056 indicate whether or not reinterpret_cast was valid. */
6058 static tree
6059 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6060 bool *valid_p, tsubst_flags_t complain)
6062 tree intype;
6064 /* Assume the cast is invalid. */
6065 if (valid_p)
6066 *valid_p = true;
6068 if (type == error_mark_node || error_operand_p (expr))
6069 return error_mark_node;
6071 intype = TREE_TYPE (expr);
6073 /* Save casted types in the function's used types hash table. */
6074 used_types_insert (type);
6076 /* [expr.reinterpret.cast]
6077 An lvalue expression of type T1 can be cast to the type
6078 "reference to T2" if an expression of type "pointer to T1" can be
6079 explicitly converted to the type "pointer to T2" using a
6080 reinterpret_cast. */
6081 if (TREE_CODE (type) == REFERENCE_TYPE)
6083 if (! real_lvalue_p (expr))
6085 if (complain & tf_error)
6086 error ("invalid cast of an rvalue expression of type "
6087 "%qT to type %qT",
6088 intype, type);
6089 return error_mark_node;
6092 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6093 "B" are related class types; the reinterpret_cast does not
6094 adjust the pointer. */
6095 if (TYPE_PTR_P (intype)
6096 && (complain & tf_warning)
6097 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6098 COMPARE_BASE | COMPARE_DERIVED)))
6099 warning (0, "casting %qT to %qT does not dereference pointer",
6100 intype, type);
6102 expr = cp_build_addr_expr (expr, complain);
6104 if (warn_strict_aliasing > 2)
6105 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
6107 if (expr != error_mark_node)
6108 expr = build_reinterpret_cast_1
6109 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
6110 valid_p, complain);
6111 if (expr != error_mark_node)
6112 /* cp_build_indirect_ref isn't right for rvalue refs. */
6113 expr = convert_from_reference (fold_convert (type, expr));
6114 return expr;
6117 /* As a G++ extension, we consider conversions from member
6118 functions, and pointers to member functions to
6119 pointer-to-function and pointer-to-void types. If
6120 -Wno-pmf-conversions has not been specified,
6121 convert_member_func_to_ptr will issue an error message. */
6122 if ((TYPE_PTRMEMFUNC_P (intype)
6123 || TREE_CODE (intype) == METHOD_TYPE)
6124 && TYPE_PTR_P (type)
6125 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6126 || VOID_TYPE_P (TREE_TYPE (type))))
6127 return convert_member_func_to_ptr (type, expr);
6129 /* If the cast is not to a reference type, the lvalue-to-rvalue,
6130 array-to-pointer, and function-to-pointer conversions are
6131 performed. */
6132 expr = decay_conversion (expr);
6134 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6135 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6136 if (TREE_CODE (expr) == NOP_EXPR
6137 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6138 expr = TREE_OPERAND (expr, 0);
6140 if (error_operand_p (expr))
6141 return error_mark_node;
6143 intype = TREE_TYPE (expr);
6145 /* [expr.reinterpret.cast]
6146 A pointer can be converted to any integral type large enough to
6147 hold it. ... A value of type std::nullptr_t can be converted to
6148 an integral type; the conversion has the same meaning and
6149 validity as a conversion of (void*)0 to the integral type. */
6150 if (CP_INTEGRAL_TYPE_P (type)
6151 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
6153 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
6155 if (complain & tf_error)
6156 permerror (input_location, "cast from %qT to %qT loses precision",
6157 intype, type);
6158 else
6159 return error_mark_node;
6161 if (NULLPTR_TYPE_P (intype))
6162 return build_int_cst (type, 0);
6164 /* [expr.reinterpret.cast]
6165 A value of integral or enumeration type can be explicitly
6166 converted to a pointer. */
6167 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
6168 /* OK */
6170 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
6171 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6172 return fold_if_not_in_template (build_nop (type, expr));
6173 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
6174 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
6176 tree sexpr = expr;
6178 if (!c_cast_p
6179 && check_for_casting_away_constness (intype, type,
6180 REINTERPRET_CAST_EXPR,
6181 complain))
6182 return error_mark_node;
6183 /* Warn about possible alignment problems. */
6184 if (STRICT_ALIGNMENT && warn_cast_align
6185 && (complain & tf_warning)
6186 && !VOID_TYPE_P (type)
6187 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
6188 && COMPLETE_TYPE_P (TREE_TYPE (type))
6189 && COMPLETE_TYPE_P (TREE_TYPE (intype))
6190 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
6191 warning (OPT_Wcast_align, "cast from %qT to %qT "
6192 "increases required alignment of target type", intype, type);
6194 /* We need to strip nops here, because the front end likes to
6195 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
6196 STRIP_NOPS (sexpr);
6197 if (warn_strict_aliasing <= 2)
6198 strict_aliasing_warning (intype, type, sexpr);
6200 return fold_if_not_in_template (build_nop (type, expr));
6202 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
6203 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
6205 if (pedantic && (complain & tf_warning))
6206 /* Only issue a warning, as we have always supported this
6207 where possible, and it is necessary in some cases. DR 195
6208 addresses this issue, but as of 2004/10/26 is still in
6209 drafting. */
6210 warning (0, "ISO C++ forbids casting between pointer-to-function and pointer-to-object");
6211 return fold_if_not_in_template (build_nop (type, expr));
6213 else if (TREE_CODE (type) == VECTOR_TYPE)
6214 return fold_if_not_in_template (convert_to_vector (type, expr));
6215 else if (TREE_CODE (intype) == VECTOR_TYPE
6216 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6217 return fold_if_not_in_template (convert_to_integer (type, expr));
6218 else
6220 if (valid_p)
6221 *valid_p = false;
6222 if (complain & tf_error)
6223 error ("invalid cast from type %qT to type %qT", intype, type);
6224 return error_mark_node;
6227 return cp_convert (type, expr);
6230 tree
6231 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
6233 if (type == error_mark_node || expr == error_mark_node)
6234 return error_mark_node;
6236 if (processing_template_decl)
6238 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
6240 if (!TREE_SIDE_EFFECTS (t)
6241 && type_dependent_expression_p (expr))
6242 /* There might turn out to be side effects inside expr. */
6243 TREE_SIDE_EFFECTS (t) = 1;
6244 return convert_from_reference (t);
6247 return build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
6248 /*valid_p=*/NULL, complain);
6251 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
6252 return an appropriate expression. Otherwise, return
6253 error_mark_node. If the cast is not valid, and COMPLAIN is true,
6254 then a diagnostic will be issued. If VALID_P is non-NULL, we are
6255 performing a C-style cast, its value upon return will indicate
6256 whether or not the conversion succeeded. */
6258 static tree
6259 build_const_cast_1 (tree dst_type, tree expr, tsubst_flags_t complain,
6260 bool *valid_p)
6262 tree src_type;
6263 tree reference_type;
6265 /* Callers are responsible for handling error_mark_node as a
6266 destination type. */
6267 gcc_assert (dst_type != error_mark_node);
6268 /* In a template, callers should be building syntactic
6269 representations of casts, not using this machinery. */
6270 gcc_assert (!processing_template_decl);
6272 /* Assume the conversion is invalid. */
6273 if (valid_p)
6274 *valid_p = false;
6276 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRMEM_P (dst_type))
6278 if (complain & tf_error)
6279 error ("invalid use of const_cast with type %qT, "
6280 "which is not a pointer, "
6281 "reference, nor a pointer-to-data-member type", dst_type);
6282 return error_mark_node;
6285 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
6287 if (complain & tf_error)
6288 error ("invalid use of const_cast with type %qT, which is a pointer "
6289 "or reference to a function type", dst_type);
6290 return error_mark_node;
6293 /* Save casted types in the function's used types hash table. */
6294 used_types_insert (dst_type);
6296 src_type = TREE_TYPE (expr);
6297 /* Expressions do not really have reference types. */
6298 if (TREE_CODE (src_type) == REFERENCE_TYPE)
6299 src_type = TREE_TYPE (src_type);
6301 /* [expr.const.cast]
6303 For two object types T1 and T2, if a pointer to T1 can be explicitly
6304 converted to the type "pointer to T2" using a const_cast, then the
6305 following conversions can also be made:
6307 -- an lvalue of type T1 can be explicitly converted to an lvalue of
6308 type T2 using the cast const_cast<T2&>;
6310 -- a glvalue of type T1 can be explicitly converted to an xvalue of
6311 type T2 using the cast const_cast<T2&&>; and
6313 -- if T1 is a class type, a prvalue of type T1 can be explicitly
6314 converted to an xvalue of type T2 using the cast const_cast<T2&&>. */
6316 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
6318 reference_type = dst_type;
6319 if (!TYPE_REF_IS_RVALUE (dst_type)
6320 ? real_lvalue_p (expr)
6321 : (CLASS_TYPE_P (TREE_TYPE (dst_type))
6322 ? lvalue_p (expr)
6323 : lvalue_or_rvalue_with_address_p (expr)))
6324 /* OK. */;
6325 else
6327 if (complain & tf_error)
6328 error ("invalid const_cast of an rvalue of type %qT to type %qT",
6329 src_type, dst_type);
6330 return error_mark_node;
6332 dst_type = build_pointer_type (TREE_TYPE (dst_type));
6333 src_type = build_pointer_type (src_type);
6335 else
6337 reference_type = NULL_TREE;
6338 /* If the destination type is not a reference type, the
6339 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6340 conversions are performed. */
6341 src_type = type_decays_to (src_type);
6342 if (src_type == error_mark_node)
6343 return error_mark_node;
6346 if (TYPE_PTR_P (src_type) || TYPE_PTRMEM_P (src_type))
6348 if (comp_ptr_ttypes_const (dst_type, src_type))
6350 if (valid_p)
6352 *valid_p = true;
6353 /* This cast is actually a C-style cast. Issue a warning if
6354 the user is making a potentially unsafe cast. */
6355 check_for_casting_away_constness (src_type, dst_type,
6356 CAST_EXPR, complain);
6358 if (reference_type)
6360 expr = cp_build_addr_expr (expr, complain);
6361 expr = build_nop (reference_type, expr);
6362 return convert_from_reference (expr);
6364 else
6366 expr = decay_conversion (expr);
6367 /* build_c_cast puts on a NOP_EXPR to make the result not an
6368 lvalue. Strip such NOP_EXPRs if VALUE is being used in
6369 non-lvalue context. */
6370 if (TREE_CODE (expr) == NOP_EXPR
6371 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6372 expr = TREE_OPERAND (expr, 0);
6373 return build_nop (dst_type, expr);
6376 else if (valid_p
6377 && !at_least_as_qualified_p (TREE_TYPE (dst_type),
6378 TREE_TYPE (src_type)))
6379 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR,
6380 complain);
6383 if (complain & tf_error)
6384 error ("invalid const_cast from type %qT to type %qT",
6385 src_type, dst_type);
6386 return error_mark_node;
6389 tree
6390 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
6392 if (type == error_mark_node || error_operand_p (expr))
6393 return error_mark_node;
6395 if (processing_template_decl)
6397 tree t = build_min (CONST_CAST_EXPR, type, expr);
6399 if (!TREE_SIDE_EFFECTS (t)
6400 && type_dependent_expression_p (expr))
6401 /* There might turn out to be side effects inside expr. */
6402 TREE_SIDE_EFFECTS (t) = 1;
6403 return convert_from_reference (t);
6406 return build_const_cast_1 (type, expr, complain,
6407 /*valid_p=*/NULL);
6410 /* Like cp_build_c_cast, but for the c-common bits. */
6412 tree
6413 build_c_cast (location_t loc ATTRIBUTE_UNUSED, tree type, tree expr)
6415 return cp_build_c_cast (type, expr, tf_warning_or_error);
6418 /* Build an expression representing an explicit C-style cast to type
6419 TYPE of expression EXPR. */
6421 tree
6422 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
6424 tree value = expr;
6425 tree result;
6426 bool valid_p;
6428 if (type == error_mark_node || error_operand_p (expr))
6429 return error_mark_node;
6431 if (processing_template_decl)
6433 tree t = build_min (CAST_EXPR, type,
6434 tree_cons (NULL_TREE, value, NULL_TREE));
6435 /* We don't know if it will or will not have side effects. */
6436 TREE_SIDE_EFFECTS (t) = 1;
6437 return convert_from_reference (t);
6440 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
6441 'Class') should always be retained, because this information aids
6442 in method lookup. */
6443 if (objc_is_object_ptr (type)
6444 && objc_is_object_ptr (TREE_TYPE (expr)))
6445 return build_nop (type, expr);
6447 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6448 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6449 if (TREE_CODE (type) != REFERENCE_TYPE
6450 && TREE_CODE (value) == NOP_EXPR
6451 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
6452 value = TREE_OPERAND (value, 0);
6454 if (TREE_CODE (type) == ARRAY_TYPE)
6456 /* Allow casting from T1* to T2[] because Cfront allows it.
6457 NIHCL uses it. It is not valid ISO C++ however. */
6458 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
6460 if (complain & tf_error)
6461 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
6462 else
6463 return error_mark_node;
6464 type = build_pointer_type (TREE_TYPE (type));
6466 else
6468 if (complain & tf_error)
6469 error ("ISO C++ forbids casting to an array type %qT", type);
6470 return error_mark_node;
6474 if (TREE_CODE (type) == FUNCTION_TYPE
6475 || TREE_CODE (type) == METHOD_TYPE)
6477 if (complain & tf_error)
6478 error ("invalid cast to function type %qT", type);
6479 return error_mark_node;
6482 if (TREE_CODE (type) == POINTER_TYPE
6483 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
6484 /* Casting to an integer of smaller size is an error detected elsewhere. */
6485 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
6486 /* Don't warn about converting any constant. */
6487 && !TREE_CONSTANT (value))
6488 warning_at (input_location, OPT_Wint_to_pointer_cast,
6489 "cast to pointer from integer of different size");
6491 /* A C-style cast can be a const_cast. */
6492 result = build_const_cast_1 (type, value, complain & tf_warning,
6493 &valid_p);
6494 if (valid_p)
6495 return result;
6497 /* Or a static cast. */
6498 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
6499 &valid_p, complain);
6500 /* Or a reinterpret_cast. */
6501 if (!valid_p)
6502 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
6503 &valid_p, complain);
6504 /* The static_cast or reinterpret_cast may be followed by a
6505 const_cast. */
6506 if (valid_p
6507 /* A valid cast may result in errors if, for example, a
6508 conversion to am ambiguous base class is required. */
6509 && !error_operand_p (result))
6511 tree result_type;
6513 /* Non-class rvalues always have cv-unqualified type. */
6514 if (!CLASS_TYPE_P (type))
6515 type = TYPE_MAIN_VARIANT (type);
6516 result_type = TREE_TYPE (result);
6517 if (!CLASS_TYPE_P (result_type) && TREE_CODE (type) != REFERENCE_TYPE)
6518 result_type = TYPE_MAIN_VARIANT (result_type);
6519 /* If the type of RESULT does not match TYPE, perform a
6520 const_cast to make it match. If the static_cast or
6521 reinterpret_cast succeeded, we will differ by at most
6522 cv-qualification, so the follow-on const_cast is guaranteed
6523 to succeed. */
6524 if (!same_type_p (non_reference (type), non_reference (result_type)))
6526 result = build_const_cast_1 (type, result, false, &valid_p);
6527 gcc_assert (valid_p);
6529 return result;
6532 return error_mark_node;
6535 /* For use from the C common bits. */
6536 tree
6537 build_modify_expr (location_t location ATTRIBUTE_UNUSED,
6538 tree lhs, tree lhs_origtype ATTRIBUTE_UNUSED,
6539 enum tree_code modifycode,
6540 location_t rhs_location ATTRIBUTE_UNUSED, tree rhs,
6541 tree rhs_origtype ATTRIBUTE_UNUSED)
6543 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
6546 /* Build an assignment expression of lvalue LHS from value RHS.
6547 MODIFYCODE is the code for a binary operator that we use
6548 to combine the old value of LHS with RHS to get the new value.
6549 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
6551 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
6553 tree
6554 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6555 tsubst_flags_t complain)
6557 tree result;
6558 tree newrhs = rhs;
6559 tree lhstype = TREE_TYPE (lhs);
6560 tree olhstype = lhstype;
6561 bool plain_assign = (modifycode == NOP_EXPR);
6563 /* Avoid duplicate error messages from operands that had errors. */
6564 if (error_operand_p (lhs) || error_operand_p (rhs))
6565 return error_mark_node;
6567 /* Handle control structure constructs used as "lvalues". */
6568 switch (TREE_CODE (lhs))
6570 /* Handle --foo = 5; as these are valid constructs in C++. */
6571 case PREDECREMENT_EXPR:
6572 case PREINCREMENT_EXPR:
6573 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6574 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6575 stabilize_reference (TREE_OPERAND (lhs, 0)),
6576 TREE_OPERAND (lhs, 1));
6577 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
6578 modifycode, rhs, complain);
6579 if (newrhs == error_mark_node)
6580 return error_mark_node;
6581 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6583 /* Handle (a, b) used as an "lvalue". */
6584 case COMPOUND_EXPR:
6585 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6586 modifycode, rhs, complain);
6587 if (newrhs == error_mark_node)
6588 return error_mark_node;
6589 return build2 (COMPOUND_EXPR, lhstype,
6590 TREE_OPERAND (lhs, 0), newrhs);
6592 case MODIFY_EXPR:
6593 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6594 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6595 stabilize_reference (TREE_OPERAND (lhs, 0)),
6596 TREE_OPERAND (lhs, 1));
6597 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
6598 complain);
6599 if (newrhs == error_mark_node)
6600 return error_mark_node;
6601 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6603 case MIN_EXPR:
6604 case MAX_EXPR:
6605 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
6606 when neither operand has side-effects. */
6607 if (!lvalue_or_else (lhs, lv_assign, complain))
6608 return error_mark_node;
6610 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
6611 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
6613 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
6614 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
6615 boolean_type_node,
6616 TREE_OPERAND (lhs, 0),
6617 TREE_OPERAND (lhs, 1)),
6618 TREE_OPERAND (lhs, 0),
6619 TREE_OPERAND (lhs, 1));
6620 /* Fall through. */
6622 /* Handle (a ? b : c) used as an "lvalue". */
6623 case COND_EXPR:
6625 /* Produce (a ? (b = rhs) : (c = rhs))
6626 except that the RHS goes through a save-expr
6627 so the code to compute it is only emitted once. */
6628 tree cond;
6629 tree preeval = NULL_TREE;
6631 if (VOID_TYPE_P (TREE_TYPE (rhs)))
6633 if (complain & tf_error)
6634 error ("void value not ignored as it ought to be");
6635 return error_mark_node;
6638 rhs = stabilize_expr (rhs, &preeval);
6640 /* Check this here to avoid odd errors when trying to convert
6641 a throw to the type of the COND_EXPR. */
6642 if (!lvalue_or_else (lhs, lv_assign, complain))
6643 return error_mark_node;
6645 cond = build_conditional_expr
6646 (TREE_OPERAND (lhs, 0),
6647 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6648 modifycode, rhs, complain),
6649 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
6650 modifycode, rhs, complain),
6651 complain);
6653 if (cond == error_mark_node)
6654 return cond;
6655 /* Make sure the code to compute the rhs comes out
6656 before the split. */
6657 if (preeval)
6658 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
6659 return cond;
6662 default:
6663 break;
6666 if (modifycode == INIT_EXPR)
6668 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
6669 /* Do the default thing. */;
6670 else if (TREE_CODE (rhs) == CONSTRUCTOR)
6672 /* Compound literal. */
6673 if (! same_type_p (TREE_TYPE (rhs), lhstype))
6674 /* Call convert to generate an error; see PR 11063. */
6675 rhs = convert (lhstype, rhs);
6676 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
6677 TREE_SIDE_EFFECTS (result) = 1;
6678 return result;
6680 else if (! MAYBE_CLASS_TYPE_P (lhstype))
6681 /* Do the default thing. */;
6682 else
6684 VEC(tree,gc) *rhs_vec = make_tree_vector_single (rhs);
6685 result = build_special_member_call (lhs, complete_ctor_identifier,
6686 &rhs_vec, lhstype, LOOKUP_NORMAL,
6687 complain);
6688 release_tree_vector (rhs_vec);
6689 if (result == NULL_TREE)
6690 return error_mark_node;
6691 return result;
6694 else
6696 lhs = require_complete_type_sfinae (lhs, complain);
6697 if (lhs == error_mark_node)
6698 return error_mark_node;
6700 if (modifycode == NOP_EXPR)
6702 if (c_dialect_objc ())
6704 result = objc_maybe_build_modify_expr (lhs, rhs);
6705 if (result)
6706 return result;
6709 /* `operator=' is not an inheritable operator. */
6710 if (! MAYBE_CLASS_TYPE_P (lhstype))
6711 /* Do the default thing. */;
6712 else
6714 result = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL,
6715 lhs, rhs, make_node (NOP_EXPR),
6716 /*overload=*/NULL,
6717 complain);
6718 if (result == NULL_TREE)
6719 return error_mark_node;
6720 return result;
6722 lhstype = olhstype;
6724 else
6726 tree init = NULL_TREE;
6728 /* A binary op has been requested. Combine the old LHS
6729 value with the RHS producing the value we should actually
6730 store into the LHS. */
6731 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
6732 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
6733 || MAYBE_CLASS_TYPE_P (lhstype)));
6735 /* Preevaluate the RHS to make sure its evaluation is complete
6736 before the lvalue-to-rvalue conversion of the LHS:
6738 [expr.ass] With respect to an indeterminately-sequenced
6739 function call, the operation of a compound assignment is a
6740 single evaluation. [ Note: Therefore, a function call shall
6741 not intervene between the lvalue-to-rvalue conversion and the
6742 side effect associated with any single compound assignment
6743 operator. -- end note ] */
6744 lhs = stabilize_reference (lhs);
6745 if (TREE_SIDE_EFFECTS (rhs))
6746 rhs = mark_rvalue_use (rhs);
6747 rhs = stabilize_expr (rhs, &init);
6748 newrhs = cp_build_binary_op (input_location,
6749 modifycode, lhs, rhs,
6750 complain);
6751 if (newrhs == error_mark_node)
6753 if (complain & tf_error)
6754 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
6755 TREE_TYPE (lhs), TREE_TYPE (rhs));
6756 return error_mark_node;
6759 if (init)
6760 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), init, newrhs);
6762 /* Now it looks like a plain assignment. */
6763 modifycode = NOP_EXPR;
6764 if (c_dialect_objc ())
6766 result = objc_maybe_build_modify_expr (lhs, newrhs);
6767 if (result)
6768 return result;
6771 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
6772 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
6775 /* The left-hand side must be an lvalue. */
6776 if (!lvalue_or_else (lhs, lv_assign, complain))
6777 return error_mark_node;
6779 /* Warn about modifying something that is `const'. Don't warn if
6780 this is initialization. */
6781 if (modifycode != INIT_EXPR
6782 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
6783 /* Functions are not modifiable, even though they are
6784 lvalues. */
6785 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
6786 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
6787 /* If it's an aggregate and any field is const, then it is
6788 effectively const. */
6789 || (CLASS_TYPE_P (lhstype)
6790 && C_TYPE_FIELDS_READONLY (lhstype))))
6792 if (complain & tf_error)
6793 cxx_readonly_error (lhs, lv_assign);
6794 else
6795 return error_mark_node;
6798 /* If storing into a structure or union member, it may have been given a
6799 lowered bitfield type. We need to convert to the declared type first,
6800 so retrieve it now. */
6802 olhstype = unlowered_expr_type (lhs);
6804 /* Convert new value to destination type. */
6806 if (TREE_CODE (lhstype) == ARRAY_TYPE)
6808 int from_array;
6810 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
6812 if (modifycode != INIT_EXPR)
6814 if (complain & tf_error)
6815 error ("assigning to an array from an initializer list");
6816 return error_mark_node;
6818 if (check_array_initializer (lhs, lhstype, newrhs))
6819 return error_mark_node;
6820 newrhs = digest_init (lhstype, newrhs, complain);
6821 if (newrhs == error_mark_node)
6822 return error_mark_node;
6825 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
6826 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
6828 if (complain & tf_error)
6829 error ("incompatible types in assignment of %qT to %qT",
6830 TREE_TYPE (rhs), lhstype);
6831 return error_mark_node;
6834 /* Allow array assignment in compiler-generated code. */
6835 else if (!current_function_decl
6836 || !DECL_DEFAULTED_FN (current_function_decl))
6838 /* This routine is used for both initialization and assignment.
6839 Make sure the diagnostic message differentiates the context. */
6840 if (complain & tf_error)
6842 if (modifycode == INIT_EXPR)
6843 error ("array used as initializer");
6844 else
6845 error ("invalid array assignment");
6847 return error_mark_node;
6850 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
6851 ? 1 + (modifycode != INIT_EXPR): 0;
6852 return build_vec_init (lhs, NULL_TREE, newrhs,
6853 /*explicit_value_init_p=*/false,
6854 from_array, complain);
6857 if (modifycode == INIT_EXPR)
6858 /* Calls with INIT_EXPR are all direct-initialization, so don't set
6859 LOOKUP_ONLYCONVERTING. */
6860 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
6861 ICR_INIT, NULL_TREE, 0,
6862 complain);
6863 else
6864 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
6865 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
6867 if (!same_type_p (lhstype, olhstype))
6868 newrhs = cp_convert_and_check (lhstype, newrhs);
6870 if (modifycode != INIT_EXPR)
6872 if (TREE_CODE (newrhs) == CALL_EXPR
6873 && TYPE_NEEDS_CONSTRUCTING (lhstype))
6874 newrhs = build_cplus_new (lhstype, newrhs, complain);
6876 /* Can't initialize directly from a TARGET_EXPR, since that would
6877 cause the lhs to be constructed twice, and possibly result in
6878 accidental self-initialization. So we force the TARGET_EXPR to be
6879 expanded without a target. */
6880 if (TREE_CODE (newrhs) == TARGET_EXPR)
6881 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
6882 TREE_OPERAND (newrhs, 0));
6885 if (newrhs == error_mark_node)
6886 return error_mark_node;
6888 if (c_dialect_objc () && flag_objc_gc)
6890 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
6892 if (result)
6893 return result;
6896 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6897 lhstype, lhs, newrhs);
6899 TREE_SIDE_EFFECTS (result) = 1;
6900 if (!plain_assign)
6901 TREE_NO_WARNING (result) = 1;
6903 return result;
6906 tree
6907 build_x_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6908 tsubst_flags_t complain)
6910 if (processing_template_decl)
6911 return build_min_nt (MODOP_EXPR, lhs,
6912 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
6914 if (modifycode != NOP_EXPR)
6916 tree rval = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
6917 make_node (modifycode),
6918 /*overload=*/NULL,
6919 complain);
6920 if (rval)
6922 TREE_NO_WARNING (rval) = 1;
6923 return rval;
6926 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
6929 /* Helper function for get_delta_difference which assumes FROM is a base
6930 class of TO. Returns a delta for the conversion of pointer-to-member
6931 of FROM to pointer-to-member of TO. If the conversion is invalid and
6932 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
6933 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
6934 If C_CAST_P is true, this conversion is taking place as part of a
6935 C-style cast. */
6937 static tree
6938 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
6939 tsubst_flags_t complain)
6941 tree binfo;
6942 base_kind kind;
6943 base_access access = c_cast_p ? ba_unique : ba_check;
6945 /* Note: ba_quiet does not distinguish between access control and
6946 ambiguity. */
6947 if (!(complain & tf_error))
6948 access |= ba_quiet;
6950 binfo = lookup_base (to, from, access, &kind);
6952 if (kind == bk_inaccessible || kind == bk_ambig)
6954 if (!(complain & tf_error))
6955 return error_mark_node;
6957 error (" in pointer to member function conversion");
6958 return size_zero_node;
6960 else if (binfo)
6962 if (kind != bk_via_virtual)
6963 return BINFO_OFFSET (binfo);
6964 else
6965 /* FROM is a virtual base class of TO. Issue an error or warning
6966 depending on whether or not this is a reinterpret cast. */
6968 if (!(complain & tf_error))
6969 return error_mark_node;
6971 error ("pointer to member conversion via virtual base %qT",
6972 BINFO_TYPE (binfo_from_vbase (binfo)));
6974 return size_zero_node;
6977 else
6978 return NULL_TREE;
6981 /* Get difference in deltas for different pointer to member function
6982 types. If the conversion is invalid and tf_error is not set in
6983 COMPLAIN, returns error_mark_node, otherwise returns an integer
6984 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
6985 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
6986 conversions as well. If C_CAST_P is true this conversion is taking
6987 place as part of a C-style cast.
6989 Note that the naming of FROM and TO is kind of backwards; the return
6990 value is what we add to a TO in order to get a FROM. They are named
6991 this way because we call this function to find out how to convert from
6992 a pointer to member of FROM to a pointer to member of TO. */
6994 static tree
6995 get_delta_difference (tree from, tree to,
6996 bool allow_inverse_p,
6997 bool c_cast_p, tsubst_flags_t complain)
6999 tree result;
7001 if (same_type_ignoring_top_level_qualifiers_p (from, to))
7002 /* Pointer to member of incomplete class is permitted*/
7003 result = size_zero_node;
7004 else
7005 result = get_delta_difference_1 (from, to, c_cast_p, complain);
7007 if (result == error_mark_node)
7008 return error_mark_node;
7010 if (!result)
7012 if (!allow_inverse_p)
7014 if (!(complain & tf_error))
7015 return error_mark_node;
7017 error_not_base_type (from, to);
7018 error (" in pointer to member conversion");
7019 result = size_zero_node;
7021 else
7023 result = get_delta_difference_1 (to, from, c_cast_p, complain);
7025 if (result == error_mark_node)
7026 return error_mark_node;
7028 if (result)
7029 result = size_diffop_loc (input_location,
7030 size_zero_node, result);
7031 else
7033 if (!(complain & tf_error))
7034 return error_mark_node;
7036 error_not_base_type (from, to);
7037 error (" in pointer to member conversion");
7038 result = size_zero_node;
7043 return fold_if_not_in_template (convert_to_integer (ptrdiff_type_node,
7044 result));
7047 /* Return a constructor for the pointer-to-member-function TYPE using
7048 the other components as specified. */
7050 tree
7051 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
7053 tree u = NULL_TREE;
7054 tree delta_field;
7055 tree pfn_field;
7056 VEC(constructor_elt, gc) *v;
7058 /* Pull the FIELD_DECLs out of the type. */
7059 pfn_field = TYPE_FIELDS (type);
7060 delta_field = DECL_CHAIN (pfn_field);
7062 /* Make sure DELTA has the type we want. */
7063 delta = convert_and_check (delta_type_node, delta);
7065 /* Convert to the correct target type if necessary. */
7066 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
7068 /* Finish creating the initializer. */
7069 v = VEC_alloc(constructor_elt, gc, 2);
7070 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
7071 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
7072 u = build_constructor (type, v);
7073 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
7074 TREE_STATIC (u) = (TREE_CONSTANT (u)
7075 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
7076 != NULL_TREE)
7077 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
7078 != NULL_TREE));
7079 return u;
7082 /* Build a constructor for a pointer to member function. It can be
7083 used to initialize global variables, local variable, or used
7084 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
7085 want to be.
7087 If FORCE is nonzero, then force this conversion, even if
7088 we would rather not do it. Usually set when using an explicit
7089 cast. A C-style cast is being processed iff C_CAST_P is true.
7091 Return error_mark_node, if something goes wrong. */
7093 tree
7094 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
7095 tsubst_flags_t complain)
7097 tree fn;
7098 tree pfn_type;
7099 tree to_type;
7101 if (error_operand_p (pfn))
7102 return error_mark_node;
7104 pfn_type = TREE_TYPE (pfn);
7105 to_type = build_ptrmemfunc_type (type);
7107 /* Handle multiple conversions of pointer to member functions. */
7108 if (TYPE_PTRMEMFUNC_P (pfn_type))
7110 tree delta = NULL_TREE;
7111 tree npfn = NULL_TREE;
7112 tree n;
7114 if (!force
7115 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn, LOOKUP_NORMAL))
7116 error ("invalid conversion to type %qT from type %qT",
7117 to_type, pfn_type);
7119 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
7120 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7121 force,
7122 c_cast_p, complain);
7123 if (n == error_mark_node)
7124 return error_mark_node;
7126 /* We don't have to do any conversion to convert a
7127 pointer-to-member to its own type. But, we don't want to
7128 just return a PTRMEM_CST if there's an explicit cast; that
7129 cast should make the expression an invalid template argument. */
7130 if (TREE_CODE (pfn) != PTRMEM_CST)
7132 if (same_type_p (to_type, pfn_type))
7133 return pfn;
7134 else if (integer_zerop (n))
7135 return build_reinterpret_cast (to_type, pfn,
7136 tf_warning_or_error);
7139 if (TREE_SIDE_EFFECTS (pfn))
7140 pfn = save_expr (pfn);
7142 /* Obtain the function pointer and the current DELTA. */
7143 if (TREE_CODE (pfn) == PTRMEM_CST)
7144 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
7145 else
7147 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
7148 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
7151 /* Just adjust the DELTA field. */
7152 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7153 (TREE_TYPE (delta), ptrdiff_type_node));
7154 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
7155 n = cp_build_binary_op (input_location,
7156 LSHIFT_EXPR, n, integer_one_node,
7157 tf_warning_or_error);
7158 delta = cp_build_binary_op (input_location,
7159 PLUS_EXPR, delta, n, tf_warning_or_error);
7160 return build_ptrmemfunc1 (to_type, delta, npfn);
7163 /* Handle null pointer to member function conversions. */
7164 if (null_ptr_cst_p (pfn))
7166 pfn = build_c_cast (input_location, type, nullptr_node);
7167 return build_ptrmemfunc1 (to_type,
7168 integer_zero_node,
7169 pfn);
7172 if (type_unknown_p (pfn))
7173 return instantiate_type (type, pfn, tf_warning_or_error);
7175 fn = TREE_OPERAND (pfn, 0);
7176 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7177 /* In a template, we will have preserved the
7178 OFFSET_REF. */
7179 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
7180 return make_ptrmem_cst (to_type, fn);
7183 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
7184 given by CST.
7186 ??? There is no consistency as to the types returned for the above
7187 values. Some code acts as if it were a sizetype and some as if it were
7188 integer_type_node. */
7190 void
7191 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
7193 tree type = TREE_TYPE (cst);
7194 tree fn = PTRMEM_CST_MEMBER (cst);
7195 tree ptr_class, fn_class;
7197 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7199 /* The class that the function belongs to. */
7200 fn_class = DECL_CONTEXT (fn);
7202 /* The class that we're creating a pointer to member of. */
7203 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
7205 /* First, calculate the adjustment to the function's class. */
7206 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
7207 /*c_cast_p=*/0, tf_warning_or_error);
7209 if (!DECL_VIRTUAL_P (fn))
7210 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type), build_addr_func (fn));
7211 else
7213 /* If we're dealing with a virtual function, we have to adjust 'this'
7214 again, to point to the base which provides the vtable entry for
7215 fn; the call will do the opposite adjustment. */
7216 tree orig_class = DECL_CONTEXT (fn);
7217 tree binfo = binfo_or_else (orig_class, fn_class);
7218 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7219 *delta, BINFO_OFFSET (binfo));
7220 *delta = fold_if_not_in_template (*delta);
7222 /* We set PFN to the vtable offset at which the function can be
7223 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
7224 case delta is shifted left, and then incremented). */
7225 *pfn = DECL_VINDEX (fn);
7226 *pfn = build2 (MULT_EXPR, integer_type_node, *pfn,
7227 TYPE_SIZE_UNIT (vtable_entry_type));
7228 *pfn = fold_if_not_in_template (*pfn);
7230 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
7232 case ptrmemfunc_vbit_in_pfn:
7233 *pfn = build2 (PLUS_EXPR, integer_type_node, *pfn,
7234 integer_one_node);
7235 *pfn = fold_if_not_in_template (*pfn);
7236 break;
7238 case ptrmemfunc_vbit_in_delta:
7239 *delta = build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
7240 *delta, integer_one_node);
7241 *delta = fold_if_not_in_template (*delta);
7242 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7243 *delta, integer_one_node);
7244 *delta = fold_if_not_in_template (*delta);
7245 break;
7247 default:
7248 gcc_unreachable ();
7251 *pfn = build_nop (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
7252 *pfn = fold_if_not_in_template (*pfn);
7256 /* Return an expression for PFN from the pointer-to-member function
7257 given by T. */
7259 static tree
7260 pfn_from_ptrmemfunc (tree t)
7262 if (TREE_CODE (t) == PTRMEM_CST)
7264 tree delta;
7265 tree pfn;
7267 expand_ptrmemfunc_cst (t, &delta, &pfn);
7268 if (pfn)
7269 return pfn;
7272 return build_ptrmemfunc_access_expr (t, pfn_identifier);
7275 /* Return an expression for DELTA from the pointer-to-member function
7276 given by T. */
7278 static tree
7279 delta_from_ptrmemfunc (tree t)
7281 if (TREE_CODE (t) == PTRMEM_CST)
7283 tree delta;
7284 tree pfn;
7286 expand_ptrmemfunc_cst (t, &delta, &pfn);
7287 if (delta)
7288 return delta;
7291 return build_ptrmemfunc_access_expr (t, delta_identifier);
7294 /* Convert value RHS to type TYPE as preparation for an assignment to
7295 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
7296 implicit conversion is. If FNDECL is non-NULL, we are doing the
7297 conversion in order to pass the PARMNUMth argument of FNDECL.
7298 If FNDECL is NULL, we are doing the conversion in function pointer
7299 argument passing, conversion in initialization, etc. */
7301 static tree
7302 convert_for_assignment (tree type, tree rhs,
7303 impl_conv_rhs errtype, tree fndecl, int parmnum,
7304 tsubst_flags_t complain, int flags)
7306 tree rhstype;
7307 enum tree_code coder;
7309 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
7310 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
7311 rhs = TREE_OPERAND (rhs, 0);
7313 rhstype = TREE_TYPE (rhs);
7314 coder = TREE_CODE (rhstype);
7316 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
7317 && vector_types_convertible_p (type, rhstype, true))
7319 rhs = mark_rvalue_use (rhs);
7320 return convert (type, rhs);
7323 if (rhs == error_mark_node || rhstype == error_mark_node)
7324 return error_mark_node;
7325 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
7326 return error_mark_node;
7328 /* The RHS of an assignment cannot have void type. */
7329 if (coder == VOID_TYPE)
7331 if (complain & tf_error)
7332 error ("void value not ignored as it ought to be");
7333 return error_mark_node;
7336 /* Simplify the RHS if possible. */
7337 if (TREE_CODE (rhs) == CONST_DECL)
7338 rhs = DECL_INITIAL (rhs);
7340 if (c_dialect_objc ())
7342 int parmno;
7343 tree selector;
7344 tree rname = fndecl;
7346 switch (errtype)
7348 case ICR_ASSIGN:
7349 parmno = -1;
7350 break;
7351 case ICR_INIT:
7352 parmno = -2;
7353 break;
7354 default:
7355 selector = objc_message_selector ();
7356 parmno = parmnum;
7357 if (selector && parmno > 1)
7359 rname = selector;
7360 parmno -= 1;
7364 if (objc_compare_types (type, rhstype, parmno, rname))
7366 rhs = mark_rvalue_use (rhs);
7367 return convert (type, rhs);
7371 /* [expr.ass]
7373 The expression is implicitly converted (clause _conv_) to the
7374 cv-unqualified type of the left operand.
7376 We allow bad conversions here because by the time we get to this point
7377 we are committed to doing the conversion. If we end up doing a bad
7378 conversion, convert_like will complain. */
7379 if (!can_convert_arg_bad (type, rhstype, rhs, flags))
7381 /* When -Wno-pmf-conversions is use, we just silently allow
7382 conversions from pointers-to-members to plain pointers. If
7383 the conversion doesn't work, cp_convert will complain. */
7384 if (!warn_pmf2ptr
7385 && TYPE_PTR_P (type)
7386 && TYPE_PTRMEMFUNC_P (rhstype))
7387 rhs = cp_convert (strip_top_quals (type), rhs);
7388 else
7390 if (complain & tf_error)
7392 /* If the right-hand side has unknown type, then it is an
7393 overloaded function. Call instantiate_type to get error
7394 messages. */
7395 if (rhstype == unknown_type_node)
7396 instantiate_type (type, rhs, tf_warning_or_error);
7397 else if (fndecl)
7398 error ("cannot convert %qT to %qT for argument %qP to %qD",
7399 rhstype, type, parmnum, fndecl);
7400 else
7401 switch (errtype)
7403 case ICR_DEFAULT_ARGUMENT:
7404 error ("cannot convert %qT to %qT in default argument",
7405 rhstype, type);
7406 break;
7407 case ICR_ARGPASS:
7408 error ("cannot convert %qT to %qT in argument passing",
7409 rhstype, type);
7410 break;
7411 case ICR_CONVERTING:
7412 error ("cannot convert %qT to %qT",
7413 rhstype, type);
7414 break;
7415 case ICR_INIT:
7416 error ("cannot convert %qT to %qT in initialization",
7417 rhstype, type);
7418 break;
7419 case ICR_RETURN:
7420 error ("cannot convert %qT to %qT in return",
7421 rhstype, type);
7422 break;
7423 case ICR_ASSIGN:
7424 error ("cannot convert %qT to %qT in assignment",
7425 rhstype, type);
7426 break;
7427 default:
7428 gcc_unreachable();
7431 return error_mark_node;
7434 if (warn_missing_format_attribute)
7436 const enum tree_code codel = TREE_CODE (type);
7437 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
7438 && coder == codel
7439 && check_missing_format_attribute (type, rhstype)
7440 && (complain & tf_warning))
7441 switch (errtype)
7443 case ICR_ARGPASS:
7444 case ICR_DEFAULT_ARGUMENT:
7445 if (fndecl)
7446 warning (OPT_Wmissing_format_attribute,
7447 "parameter %qP of %qD might be a candidate "
7448 "for a format attribute", parmnum, fndecl);
7449 else
7450 warning (OPT_Wmissing_format_attribute,
7451 "parameter might be a candidate "
7452 "for a format attribute");
7453 break;
7454 case ICR_CONVERTING:
7455 warning (OPT_Wmissing_format_attribute,
7456 "target of conversion might be a candidate "
7457 "for a format attribute");
7458 break;
7459 case ICR_INIT:
7460 warning (OPT_Wmissing_format_attribute,
7461 "target of initialization might be a candidate "
7462 "for a format attribute");
7463 break;
7464 case ICR_RETURN:
7465 warning (OPT_Wmissing_format_attribute,
7466 "return type might be a candidate "
7467 "for a format attribute");
7468 break;
7469 case ICR_ASSIGN:
7470 warning (OPT_Wmissing_format_attribute,
7471 "left-hand side of assignment might be a candidate "
7472 "for a format attribute");
7473 break;
7474 default:
7475 gcc_unreachable();
7479 /* If -Wparentheses, warn about a = b = c when a has type bool and b
7480 does not. */
7481 if (warn_parentheses
7482 && TREE_CODE (type) == BOOLEAN_TYPE
7483 && TREE_CODE (rhs) == MODIFY_EXPR
7484 && !TREE_NO_WARNING (rhs)
7485 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
7486 && (complain & tf_warning))
7488 location_t loc = EXPR_LOC_OR_HERE (rhs);
7490 warning_at (loc, OPT_Wparentheses,
7491 "suggest parentheses around assignment used as truth value");
7492 TREE_NO_WARNING (rhs) = 1;
7495 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
7496 complain, flags);
7499 /* Convert RHS to be of type TYPE.
7500 If EXP is nonzero, it is the target of the initialization.
7501 ERRTYPE indicates what kind of error the implicit conversion is.
7503 Two major differences between the behavior of
7504 `convert_for_assignment' and `convert_for_initialization'
7505 are that references are bashed in the former, while
7506 copied in the latter, and aggregates are assigned in
7507 the former (operator=) while initialized in the
7508 latter (X(X&)).
7510 If using constructor make sure no conversion operator exists, if one does
7511 exist, an ambiguity exists.
7513 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
7515 tree
7516 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
7517 impl_conv_rhs errtype, tree fndecl, int parmnum,
7518 tsubst_flags_t complain)
7520 enum tree_code codel = TREE_CODE (type);
7521 tree rhstype;
7522 enum tree_code coder;
7524 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7525 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
7526 if (TREE_CODE (rhs) == NOP_EXPR
7527 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
7528 && codel != REFERENCE_TYPE)
7529 rhs = TREE_OPERAND (rhs, 0);
7531 if (type == error_mark_node
7532 || rhs == error_mark_node
7533 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
7534 return error_mark_node;
7536 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
7537 && TREE_CODE (type) != ARRAY_TYPE
7538 && (TREE_CODE (type) != REFERENCE_TYPE
7539 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
7540 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
7541 && (TREE_CODE (type) != REFERENCE_TYPE
7542 || TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE))
7543 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
7544 rhs = decay_conversion (rhs);
7546 rhstype = TREE_TYPE (rhs);
7547 coder = TREE_CODE (rhstype);
7549 if (coder == ERROR_MARK)
7550 return error_mark_node;
7552 /* We accept references to incomplete types, so we can
7553 return here before checking if RHS is of complete type. */
7555 if (codel == REFERENCE_TYPE)
7557 /* This should eventually happen in convert_arguments. */
7558 int savew = 0, savee = 0;
7560 if (fndecl)
7561 savew = warningcount, savee = errorcount;
7562 rhs = initialize_reference (type, rhs, flags, complain);
7563 if (fndecl)
7565 if (warningcount > savew)
7566 warning (0, "in passing argument %P of %q+D", parmnum, fndecl);
7567 else if (errorcount > savee)
7568 error ("in passing argument %P of %q+D", parmnum, fndecl);
7570 return rhs;
7573 if (exp != 0)
7574 exp = require_complete_type_sfinae (exp, complain);
7575 if (exp == error_mark_node)
7576 return error_mark_node;
7578 rhstype = non_reference (rhstype);
7580 type = complete_type (type);
7582 if (DIRECT_INIT_EXPR_P (type, rhs))
7583 /* Don't try to do copy-initialization if we already have
7584 direct-initialization. */
7585 return rhs;
7587 if (MAYBE_CLASS_TYPE_P (type))
7588 return perform_implicit_conversion_flags (type, rhs, complain, flags);
7590 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
7591 complain, flags);
7594 /* If RETVAL is the address of, or a reference to, a local variable or
7595 temporary give an appropriate warning. */
7597 static void
7598 maybe_warn_about_returning_address_of_local (tree retval)
7600 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
7601 tree whats_returned = retval;
7603 for (;;)
7605 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
7606 whats_returned = TREE_OPERAND (whats_returned, 1);
7607 else if (CONVERT_EXPR_P (whats_returned)
7608 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
7609 whats_returned = TREE_OPERAND (whats_returned, 0);
7610 else
7611 break;
7614 if (TREE_CODE (whats_returned) != ADDR_EXPR)
7615 return;
7616 whats_returned = TREE_OPERAND (whats_returned, 0);
7618 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7620 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
7621 || TREE_CODE (whats_returned) == TARGET_EXPR)
7623 warning (0, "returning reference to temporary");
7624 return;
7626 if (TREE_CODE (whats_returned) == VAR_DECL
7627 && DECL_NAME (whats_returned)
7628 && TEMP_NAME_P (DECL_NAME (whats_returned)))
7630 warning (0, "reference to non-lvalue returned");
7631 return;
7635 while (TREE_CODE (whats_returned) == COMPONENT_REF
7636 || TREE_CODE (whats_returned) == ARRAY_REF)
7637 whats_returned = TREE_OPERAND (whats_returned, 0);
7639 if (DECL_P (whats_returned)
7640 && DECL_NAME (whats_returned)
7641 && DECL_FUNCTION_SCOPE_P (whats_returned)
7642 && !(TREE_STATIC (whats_returned)
7643 || TREE_PUBLIC (whats_returned)))
7645 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7646 warning (0, "reference to local variable %q+D returned",
7647 whats_returned);
7648 else
7649 warning (0, "address of local variable %q+D returned",
7650 whats_returned);
7651 return;
7655 /* Check that returning RETVAL from the current function is valid.
7656 Return an expression explicitly showing all conversions required to
7657 change RETVAL into the function return type, and to assign it to
7658 the DECL_RESULT for the function. Set *NO_WARNING to true if
7659 code reaches end of non-void function warning shouldn't be issued
7660 on this RETURN_EXPR. */
7662 tree
7663 check_return_expr (tree retval, bool *no_warning)
7665 tree result;
7666 /* The type actually returned by the function, after any
7667 promotions. */
7668 tree valtype;
7669 int fn_returns_value_p;
7670 bool named_return_value_okay_p;
7672 *no_warning = false;
7674 /* A `volatile' function is one that isn't supposed to return, ever.
7675 (This is a G++ extension, used to get better code for functions
7676 that call the `volatile' function.) */
7677 if (TREE_THIS_VOLATILE (current_function_decl))
7678 warning (0, "function declared %<noreturn%> has a %<return%> statement");
7680 /* Check for various simple errors. */
7681 if (DECL_DESTRUCTOR_P (current_function_decl))
7683 if (retval)
7684 error ("returning a value from a destructor");
7685 return NULL_TREE;
7687 else if (DECL_CONSTRUCTOR_P (current_function_decl))
7689 if (in_function_try_handler)
7690 /* If a return statement appears in a handler of the
7691 function-try-block of a constructor, the program is ill-formed. */
7692 error ("cannot return from a handler of a function-try-block of a constructor");
7693 else if (retval)
7694 /* You can't return a value from a constructor. */
7695 error ("returning a value from a constructor");
7696 return NULL_TREE;
7699 /* As an extension, deduce lambda return type from a return statement
7700 anywhere in the body. */
7701 if (retval && LAMBDA_FUNCTION_P (current_function_decl))
7703 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7704 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda))
7706 tree type = lambda_return_type (retval);
7707 tree oldtype = LAMBDA_EXPR_RETURN_TYPE (lambda);
7709 if (oldtype == NULL_TREE)
7710 apply_lambda_return_type (lambda, type);
7711 /* If one of the answers is type-dependent, we can't do any
7712 better until instantiation time. */
7713 else if (oldtype == dependent_lambda_return_type_node)
7714 /* Leave it. */;
7715 else if (type == dependent_lambda_return_type_node)
7716 apply_lambda_return_type (lambda, type);
7717 else if (!same_type_p (type, oldtype))
7718 error ("inconsistent types %qT and %qT deduced for "
7719 "lambda return type", type, oldtype);
7723 if (processing_template_decl)
7725 current_function_returns_value = 1;
7726 if (check_for_bare_parameter_packs (retval))
7727 retval = error_mark_node;
7728 return retval;
7731 /* When no explicit return-value is given in a function with a named
7732 return value, the named return value is used. */
7733 result = DECL_RESULT (current_function_decl);
7734 valtype = TREE_TYPE (result);
7735 gcc_assert (valtype != NULL_TREE);
7736 fn_returns_value_p = !VOID_TYPE_P (valtype);
7737 if (!retval && DECL_NAME (result) && fn_returns_value_p)
7738 retval = result;
7740 /* Check for a return statement with no return value in a function
7741 that's supposed to return a value. */
7742 if (!retval && fn_returns_value_p)
7744 permerror (input_location, "return-statement with no value, in function returning %qT",
7745 valtype);
7746 /* Clear this, so finish_function won't say that we reach the
7747 end of a non-void function (which we don't, we gave a
7748 return!). */
7749 current_function_returns_null = 0;
7750 /* And signal caller that TREE_NO_WARNING should be set on the
7751 RETURN_EXPR to avoid control reaches end of non-void function
7752 warnings in tree-cfg.c. */
7753 *no_warning = true;
7755 /* Check for a return statement with a value in a function that
7756 isn't supposed to return a value. */
7757 else if (retval && !fn_returns_value_p)
7759 if (VOID_TYPE_P (TREE_TYPE (retval)))
7760 /* You can return a `void' value from a function of `void'
7761 type. In that case, we have to evaluate the expression for
7762 its side-effects. */
7763 finish_expr_stmt (retval);
7764 else
7765 permerror (input_location, "return-statement with a value, in function "
7766 "returning 'void'");
7767 current_function_returns_null = 1;
7769 /* There's really no value to return, after all. */
7770 return NULL_TREE;
7772 else if (!retval)
7773 /* Remember that this function can sometimes return without a
7774 value. */
7775 current_function_returns_null = 1;
7776 else
7777 /* Remember that this function did return a value. */
7778 current_function_returns_value = 1;
7780 /* Check for erroneous operands -- but after giving ourselves a
7781 chance to provide an error about returning a value from a void
7782 function. */
7783 if (error_operand_p (retval))
7785 current_function_return_value = error_mark_node;
7786 return error_mark_node;
7789 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
7790 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
7791 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
7792 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
7793 && ! flag_check_new
7794 && retval && null_ptr_cst_p (retval))
7795 warning (0, "%<operator new%> must not return NULL unless it is "
7796 "declared %<throw()%> (or -fcheck-new is in effect)");
7798 /* Effective C++ rule 15. See also start_function. */
7799 if (warn_ecpp
7800 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
7802 bool warn = true;
7804 /* The function return type must be a reference to the current
7805 class. */
7806 if (TREE_CODE (valtype) == REFERENCE_TYPE
7807 && same_type_ignoring_top_level_qualifiers_p
7808 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
7810 /* Returning '*this' is obviously OK. */
7811 if (retval == current_class_ref)
7812 warn = false;
7813 /* If we are calling a function whose return type is the same of
7814 the current class reference, it is ok. */
7815 else if (TREE_CODE (retval) == INDIRECT_REF
7816 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
7817 warn = false;
7820 if (warn)
7821 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
7824 /* The fabled Named Return Value optimization, as per [class.copy]/15:
7826 [...] For a function with a class return type, if the expression
7827 in the return statement is the name of a local object, and the cv-
7828 unqualified type of the local object is the same as the function
7829 return type, an implementation is permitted to omit creating the tem-
7830 porary object to hold the function return value [...]
7832 So, if this is a value-returning function that always returns the same
7833 local variable, remember it.
7835 It might be nice to be more flexible, and choose the first suitable
7836 variable even if the function sometimes returns something else, but
7837 then we run the risk of clobbering the variable we chose if the other
7838 returned expression uses the chosen variable somehow. And people expect
7839 this restriction, anyway. (jason 2000-11-19)
7841 See finish_function and finalize_nrv for the rest of this optimization. */
7843 named_return_value_okay_p =
7844 (retval != NULL_TREE
7845 /* Must be a local, automatic variable. */
7846 && TREE_CODE (retval) == VAR_DECL
7847 && DECL_CONTEXT (retval) == current_function_decl
7848 && ! TREE_STATIC (retval)
7849 && ! DECL_ANON_UNION_VAR_P (retval)
7850 && (DECL_ALIGN (retval)
7851 >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
7852 /* The cv-unqualified type of the returned value must be the
7853 same as the cv-unqualified return type of the
7854 function. */
7855 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7856 (TYPE_MAIN_VARIANT
7857 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7858 /* And the returned value must be non-volatile. */
7859 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
7861 if (fn_returns_value_p && flag_elide_constructors)
7863 if (named_return_value_okay_p
7864 && (current_function_return_value == NULL_TREE
7865 || current_function_return_value == retval))
7866 current_function_return_value = retval;
7867 else
7868 current_function_return_value = error_mark_node;
7871 /* We don't need to do any conversions when there's nothing being
7872 returned. */
7873 if (!retval)
7874 return NULL_TREE;
7876 /* Do any required conversions. */
7877 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
7878 /* No conversions are required. */
7880 else
7882 /* The type the function is declared to return. */
7883 tree functype = TREE_TYPE (TREE_TYPE (current_function_decl));
7884 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
7886 /* The functype's return type will have been set to void, if it
7887 was an incomplete type. Just treat this as 'return;' */
7888 if (VOID_TYPE_P (functype))
7889 return error_mark_node;
7891 /* Under C++0x [12.8/16 class.copy], a returned lvalue is sometimes
7892 treated as an rvalue for the purposes of overload resolution to
7893 favor move constructors over copy constructors.
7895 Note that these conditions are similar to, but not as strict as,
7896 the conditions for the named return value optimization. */
7897 if ((cxx_dialect != cxx98)
7898 && (TREE_CODE (retval) == VAR_DECL
7899 || TREE_CODE (retval) == PARM_DECL)
7900 && DECL_CONTEXT (retval) == current_function_decl
7901 && !TREE_STATIC (retval)
7902 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7903 (TYPE_MAIN_VARIANT
7904 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7905 /* This is only interesting for class type. */
7906 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
7907 flags = flags | LOOKUP_PREFER_RVALUE;
7909 /* First convert the value to the function's return type, then
7910 to the type of return value's location to handle the
7911 case that functype is smaller than the valtype. */
7912 retval = convert_for_initialization
7913 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
7914 tf_warning_or_error);
7915 retval = convert (valtype, retval);
7917 /* If the conversion failed, treat this just like `return;'. */
7918 if (retval == error_mark_node)
7919 return retval;
7920 /* We can't initialize a register from a AGGR_INIT_EXPR. */
7921 else if (! cfun->returns_struct
7922 && TREE_CODE (retval) == TARGET_EXPR
7923 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
7924 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
7925 TREE_OPERAND (retval, 0));
7926 else
7927 maybe_warn_about_returning_address_of_local (retval);
7930 /* Actually copy the value returned into the appropriate location. */
7931 if (retval && retval != result)
7932 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
7934 return retval;
7938 /* Returns nonzero if the pointer-type FROM can be converted to the
7939 pointer-type TO via a qualification conversion. If CONSTP is -1,
7940 then we return nonzero if the pointers are similar, and the
7941 cv-qualification signature of FROM is a proper subset of that of TO.
7943 If CONSTP is positive, then all outer pointers have been
7944 const-qualified. */
7946 static int
7947 comp_ptr_ttypes_real (tree to, tree from, int constp)
7949 bool to_more_cv_qualified = false;
7950 bool is_opaque_pointer = false;
7952 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7954 if (TREE_CODE (to) != TREE_CODE (from))
7955 return 0;
7957 if (TREE_CODE (from) == OFFSET_TYPE
7958 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
7959 TYPE_OFFSET_BASETYPE (to)))
7960 return 0;
7962 /* Const and volatile mean something different for function types,
7963 so the usual checks are not appropriate. */
7964 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7966 if (!at_least_as_qualified_p (to, from))
7967 return 0;
7969 if (!at_least_as_qualified_p (from, to))
7971 if (constp == 0)
7972 return 0;
7973 to_more_cv_qualified = true;
7976 if (constp > 0)
7977 constp &= TYPE_READONLY (to);
7980 if (TREE_CODE (to) == VECTOR_TYPE)
7981 is_opaque_pointer = vector_targets_convertible_p (to, from);
7983 if (TREE_CODE (to) != POINTER_TYPE && !TYPE_PTRMEM_P (to))
7984 return ((constp >= 0 || to_more_cv_qualified)
7985 && (is_opaque_pointer
7986 || same_type_ignoring_top_level_qualifiers_p (to, from)));
7990 /* When comparing, say, char ** to char const **, this function takes
7991 the 'char *' and 'char const *'. Do not pass non-pointer/reference
7992 types to this function. */
7995 comp_ptr_ttypes (tree to, tree from)
7997 return comp_ptr_ttypes_real (to, from, 1);
8000 /* Returns true iff FNTYPE is a non-class type that involves
8001 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
8002 if a parameter type is ill-formed. */
8004 bool
8005 error_type_p (const_tree type)
8007 tree t;
8009 switch (TREE_CODE (type))
8011 case ERROR_MARK:
8012 return true;
8014 case POINTER_TYPE:
8015 case REFERENCE_TYPE:
8016 case OFFSET_TYPE:
8017 return error_type_p (TREE_TYPE (type));
8019 case FUNCTION_TYPE:
8020 case METHOD_TYPE:
8021 if (error_type_p (TREE_TYPE (type)))
8022 return true;
8023 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
8024 if (error_type_p (TREE_VALUE (t)))
8025 return true;
8026 return false;
8028 case RECORD_TYPE:
8029 if (TYPE_PTRMEMFUNC_P (type))
8030 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
8031 return false;
8033 default:
8034 return false;
8038 /* Returns 1 if to and from are (possibly multi-level) pointers to the same
8039 type or inheritance-related types, regardless of cv-quals. */
8042 ptr_reasonably_similar (const_tree to, const_tree from)
8044 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8046 /* Any target type is similar enough to void. */
8047 if (TREE_CODE (to) == VOID_TYPE)
8048 return !error_type_p (from);
8049 if (TREE_CODE (from) == VOID_TYPE)
8050 return !error_type_p (to);
8052 if (TREE_CODE (to) != TREE_CODE (from))
8053 return 0;
8055 if (TREE_CODE (from) == OFFSET_TYPE
8056 && comptypes (TYPE_OFFSET_BASETYPE (to),
8057 TYPE_OFFSET_BASETYPE (from),
8058 COMPARE_BASE | COMPARE_DERIVED))
8059 continue;
8061 if (TREE_CODE (to) == VECTOR_TYPE
8062 && vector_types_convertible_p (to, from, false))
8063 return 1;
8065 if (TREE_CODE (to) == INTEGER_TYPE
8066 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
8067 return 1;
8069 if (TREE_CODE (to) == FUNCTION_TYPE)
8070 return !error_type_p (to) && !error_type_p (from);
8072 if (TREE_CODE (to) != POINTER_TYPE)
8073 return comptypes
8074 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
8075 COMPARE_BASE | COMPARE_DERIVED);
8079 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
8080 pointer-to-member types) are the same, ignoring cv-qualification at
8081 all levels. */
8083 bool
8084 comp_ptr_ttypes_const (tree to, tree from)
8086 bool is_opaque_pointer = false;
8088 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8090 if (TREE_CODE (to) != TREE_CODE (from))
8091 return false;
8093 if (TREE_CODE (from) == OFFSET_TYPE
8094 && same_type_p (TYPE_OFFSET_BASETYPE (from),
8095 TYPE_OFFSET_BASETYPE (to)))
8096 continue;
8098 if (TREE_CODE (to) == VECTOR_TYPE)
8099 is_opaque_pointer = vector_targets_convertible_p (to, from);
8101 if (TREE_CODE (to) != POINTER_TYPE)
8102 return (is_opaque_pointer
8103 || same_type_ignoring_top_level_qualifiers_p (to, from));
8107 /* Returns the type qualifiers for this type, including the qualifiers on the
8108 elements for an array type. */
8111 cp_type_quals (const_tree type)
8113 int quals;
8114 /* This CONST_CAST is okay because strip_array_types returns its
8115 argument unmodified and we assign it to a const_tree. */
8116 type = strip_array_types (CONST_CAST_TREE (type));
8117 if (type == error_mark_node
8118 /* Quals on a FUNCTION_TYPE are memfn quals. */
8119 || TREE_CODE (type) == FUNCTION_TYPE)
8120 return TYPE_UNQUALIFIED;
8121 quals = TYPE_QUALS (type);
8122 /* METHOD and REFERENCE_TYPEs should never have quals. */
8123 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
8124 && TREE_CODE (type) != REFERENCE_TYPE)
8125 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
8126 == TYPE_UNQUALIFIED));
8127 return quals;
8130 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
8131 METHOD_TYPE. */
8134 type_memfn_quals (const_tree type)
8136 if (TREE_CODE (type) == FUNCTION_TYPE)
8137 return TYPE_QUALS (type);
8138 else if (TREE_CODE (type) == METHOD_TYPE)
8139 return cp_type_quals (class_of_this_parm (type));
8140 else
8141 gcc_unreachable ();
8144 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
8145 MEMFN_QUALS. */
8147 tree
8148 apply_memfn_quals (tree type, cp_cv_quals memfn_quals)
8150 /* Could handle METHOD_TYPE here if necessary. */
8151 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8152 if (TYPE_QUALS (type) == memfn_quals)
8153 return type;
8154 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
8155 complex. */
8156 return build_qualified_type (type, memfn_quals);
8159 /* Returns nonzero if TYPE is const or volatile. */
8161 bool
8162 cv_qualified_p (const_tree type)
8164 int quals = cp_type_quals (type);
8165 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
8168 /* Returns nonzero if the TYPE contains a mutable member. */
8170 bool
8171 cp_has_mutable_p (const_tree type)
8173 /* This CONST_CAST is okay because strip_array_types returns its
8174 argument unmodified and we assign it to a const_tree. */
8175 type = strip_array_types (CONST_CAST_TREE(type));
8177 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
8180 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
8181 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
8182 approximation. In particular, consider:
8184 int f();
8185 struct S { int i; };
8186 const S s = { f(); }
8188 Here, we will make "s" as TREE_READONLY (because it is declared
8189 "const") -- only to reverse ourselves upon seeing that the
8190 initializer is non-constant. */
8192 void
8193 cp_apply_type_quals_to_decl (int type_quals, tree decl)
8195 tree type = TREE_TYPE (decl);
8197 if (type == error_mark_node)
8198 return;
8200 if (TREE_CODE (decl) == TYPE_DECL)
8201 return;
8203 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
8204 && type_quals != TYPE_UNQUALIFIED));
8206 /* Avoid setting TREE_READONLY incorrectly. */
8207 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
8208 constructor can produce constant init, so rely on cp_finish_decl to
8209 clear TREE_READONLY if the variable has non-constant init. */
8211 /* If the type has a mutable component, that component might be
8212 modified. */
8213 if (TYPE_HAS_MUTABLE_P (type))
8214 type_quals &= ~TYPE_QUAL_CONST;
8216 c_apply_type_quals_to_decl (type_quals, decl);
8219 /* Subroutine of casts_away_constness. Make T1 and T2 point at
8220 exemplar types such that casting T1 to T2 is casting away constness
8221 if and only if there is no implicit conversion from T1 to T2. */
8223 static void
8224 casts_away_constness_r (tree *t1, tree *t2)
8226 int quals1;
8227 int quals2;
8229 /* [expr.const.cast]
8231 For multi-level pointer to members and multi-level mixed pointers
8232 and pointers to members (conv.qual), the "member" aspect of a
8233 pointer to member level is ignored when determining if a const
8234 cv-qualifier has been cast away. */
8235 /* [expr.const.cast]
8237 For two pointer types:
8239 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
8240 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
8241 K is min(N,M)
8243 casting from X1 to X2 casts away constness if, for a non-pointer
8244 type T there does not exist an implicit conversion (clause
8245 _conv_) from:
8247 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
8251 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
8252 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRMEM_P (*t1))
8253 || (!TYPE_PTR_P (*t2) && !TYPE_PTRMEM_P (*t2)))
8255 *t1 = cp_build_qualified_type (void_type_node,
8256 cp_type_quals (*t1));
8257 *t2 = cp_build_qualified_type (void_type_node,
8258 cp_type_quals (*t2));
8259 return;
8262 quals1 = cp_type_quals (*t1);
8263 quals2 = cp_type_quals (*t2);
8265 if (TYPE_PTRMEM_P (*t1))
8266 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
8267 else
8268 *t1 = TREE_TYPE (*t1);
8269 if (TYPE_PTRMEM_P (*t2))
8270 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
8271 else
8272 *t2 = TREE_TYPE (*t2);
8274 casts_away_constness_r (t1, t2);
8275 *t1 = build_pointer_type (*t1);
8276 *t2 = build_pointer_type (*t2);
8277 *t1 = cp_build_qualified_type (*t1, quals1);
8278 *t2 = cp_build_qualified_type (*t2, quals2);
8281 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
8282 constness.
8284 ??? This function returns non-zero if casting away qualifiers not
8285 just const. We would like to return to the caller exactly which
8286 qualifiers are casted away to give more accurate diagnostics.
8289 static bool
8290 casts_away_constness (tree t1, tree t2)
8292 if (TREE_CODE (t2) == REFERENCE_TYPE)
8294 /* [expr.const.cast]
8296 Casting from an lvalue of type T1 to an lvalue of type T2
8297 using a reference cast casts away constness if a cast from an
8298 rvalue of type "pointer to T1" to the type "pointer to T2"
8299 casts away constness. */
8300 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
8301 return casts_away_constness (build_pointer_type (t1),
8302 build_pointer_type (TREE_TYPE (t2)));
8305 if (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
8306 /* [expr.const.cast]
8308 Casting from an rvalue of type "pointer to data member of X
8309 of type T1" to the type "pointer to data member of Y of type
8310 T2" casts away constness if a cast from an rvalue of type
8311 "pointer to T1" to the type "pointer to T2" casts away
8312 constness. */
8313 return casts_away_constness
8314 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
8315 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)));
8317 /* Casting away constness is only something that makes sense for
8318 pointer or reference types. */
8319 if (TREE_CODE (t1) != POINTER_TYPE
8320 || TREE_CODE (t2) != POINTER_TYPE)
8321 return false;
8323 /* Top-level qualifiers don't matter. */
8324 t1 = TYPE_MAIN_VARIANT (t1);
8325 t2 = TYPE_MAIN_VARIANT (t2);
8326 casts_away_constness_r (&t1, &t2);
8327 if (!can_convert (t2, t1))
8328 return true;
8330 return false;
8333 /* If T is a REFERENCE_TYPE return the type to which T refers.
8334 Otherwise, return T itself. */
8336 tree
8337 non_reference (tree t)
8339 if (t && TREE_CODE (t) == REFERENCE_TYPE)
8340 t = TREE_TYPE (t);
8341 return t;
8345 /* Return nonzero if REF is an lvalue valid for this language;
8346 otherwise, print an error message and return zero. USE says
8347 how the lvalue is being used and so selects the error message. */
8350 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
8352 cp_lvalue_kind kind = lvalue_kind (ref);
8354 if (kind == clk_none)
8356 if (complain & tf_error)
8357 lvalue_error (input_location, use);
8358 return 0;
8360 else if (kind & (clk_rvalueref|clk_class))
8362 if (!(complain & tf_error))
8363 return 0;
8364 if (kind & clk_class)
8365 /* Make this a permerror because we used to accept it. */
8366 permerror (input_location, "using temporary as lvalue");
8367 else
8368 error ("using xvalue (rvalue reference) as lvalue");
8370 return 1;
8373 /* Return true if a user-defined literal operator is a raw operator. */
8375 bool
8376 check_raw_literal_operator (const_tree decl)
8378 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
8379 tree argtype;
8380 int arity;
8381 bool maybe_raw_p = false;
8383 /* Count the number and type of arguments and check for ellipsis. */
8384 for (argtype = argtypes, arity = 0;
8385 argtype && argtype != void_list_node;
8386 ++arity, argtype = TREE_CHAIN (argtype))
8388 tree t = TREE_VALUE (argtype);
8390 if (same_type_p (t, const_string_type_node))
8391 maybe_raw_p = true;
8393 if (!argtype)
8394 return false; /* Found ellipsis. */
8396 if (!maybe_raw_p || arity != 1)
8397 return false;
8399 return true;
8403 /* Return true if a user-defined literal operator has one of the allowed
8404 argument types. */
8406 bool
8407 check_literal_operator_args (const_tree decl,
8408 bool *long_long_unsigned_p, bool *long_double_p)
8410 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
8411 if (processing_template_decl)
8412 return (argtypes == NULL_TREE
8413 || same_type_p (TREE_VALUE (argtypes), void_type_node));
8414 else
8416 tree argtype;
8417 int arity;
8418 int max_arity = 2;
8419 bool found_string_p = false;
8420 bool maybe_raw_p = false;
8421 bool found_size_p = false;
8423 *long_long_unsigned_p = false;
8424 *long_double_p = false;
8426 /* Count the number and type of arguments and check for ellipsis. */
8427 for (argtype = argtypes, arity = 0;
8428 argtype && argtype != void_list_node;
8429 argtype = TREE_CHAIN (argtype))
8431 tree t = TREE_VALUE (argtype);
8432 ++arity;
8434 if (TREE_CODE (t) == POINTER_TYPE)
8436 t = TREE_TYPE (t);
8437 if (cp_type_quals (t) != TYPE_QUAL_CONST)
8438 return false;
8439 t = TYPE_MAIN_VARIANT (t);
8440 if (same_type_p (t, char_type_node))
8442 found_string_p = true;
8443 maybe_raw_p = true;
8445 else if (same_type_p (t, wchar_type_node))
8446 found_string_p = true;
8447 else if (same_type_p (t, char16_type_node))
8448 found_string_p = true;
8449 else if (same_type_p (t, char32_type_node))
8450 found_string_p = true;
8451 else
8452 return false;
8454 else if (same_type_p (t, size_type_node))
8456 if (!found_string_p)
8457 return false;
8458 found_size_p = true;
8460 else if (same_type_p (t, long_long_unsigned_type_node))
8462 max_arity = 1;
8463 *long_long_unsigned_p = true;
8465 else if (same_type_p (t, long_double_type_node))
8467 max_arity = 1;
8468 *long_double_p = true;
8470 else if (same_type_p (t, char_type_node))
8471 max_arity = 1;
8472 else if (same_type_p (t, wchar_type_node))
8473 max_arity = 1;
8474 else if (same_type_p (t, char16_type_node))
8475 max_arity = 1;
8476 else if (same_type_p (t, char32_type_node))
8477 max_arity = 1;
8478 else
8479 return false;
8481 if (!argtype)
8482 return false; /* Found ellipsis. */
8484 if (arity > max_arity)
8485 return false;
8487 if (found_string_p && !maybe_raw_p && !found_size_p)
8488 return false;
8490 return true;