re PR c++/46696 ([C++0x] Implicit copy constructor can't construct array of subtype...
[gcc.git] / gcc / cp / typeck.c
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)
6
7 This file is part of GCC.
8
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.
13
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.
18
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/>. */
22
23
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. */
28
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"
44
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);
64
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. */
69
70 tree
71 require_complete_type_sfinae (tree value, tsubst_flags_t complain)
72 {
73 tree type;
74
75 if (processing_template_decl || value == error_mark_node)
76 return value;
77
78 if (TREE_CODE (value) == OVERLOAD)
79 type = unknown_type_node;
80 else
81 type = TREE_TYPE (value);
82
83 if (type == error_mark_node)
84 return error_mark_node;
85
86 /* First, detect a valid value with a complete type. */
87 if (COMPLETE_TYPE_P (type))
88 return value;
89
90 if (complete_type_or_maybe_complain (type, value, complain))
91 return value;
92 else
93 return error_mark_node;
94 }
95
96 tree
97 require_complete_type (tree value)
98 {
99 return require_complete_type_sfinae (value, tf_warning_or_error);
100 }
101
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. */
106
107 tree
108 complete_type (tree type)
109 {
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;
114
115 if (type == error_mark_node || COMPLETE_TYPE_P (type))
116 ;
117 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
118 {
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))
128 {
129 TYPE_NEEDS_CONSTRUCTING (t) = needs_constructing;
130 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = has_nontrivial_dtor;
131 }
132 }
133 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
134 instantiate_class_template (TYPE_MAIN_VARIANT (type));
135
136 return type;
137 }
138
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. */
142
143 tree
144 complete_type_or_maybe_complain (tree type, tree value, tsubst_flags_t complain)
145 {
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))
151 {
152 if (complain & tf_error)
153 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
154 return NULL_TREE;
155 }
156 else
157 return type;
158 }
159
160 tree
161 complete_type_or_else (tree type, tree value)
162 {
163 return complete_type_or_maybe_complain (type, value, tf_warning_or_error);
164 }
165
166 /* Return truthvalue of whether type of EXP is instantiated. */
167
168 int
169 type_unknown_p (const_tree exp)
170 {
171 return (TREE_CODE (exp) == TREE_LIST
172 || TREE_TYPE (exp) == unknown_type_node);
173 }
174
175 \f
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.
179
180 As an optimization, free the space we allocate if the parameter
181 lists are already common. */
182
183 static tree
184 commonparms (tree p1, tree p2)
185 {
186 tree oldargs = p1, newargs, n;
187 int i, len;
188 int any_change = 0;
189
190 len = list_length (p1);
191 newargs = tree_last (p1);
192
193 if (newargs == void_list_node)
194 i = 1;
195 else
196 {
197 i = 0;
198 newargs = 0;
199 }
200
201 for (; i < len; i++)
202 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
203
204 n = newargs;
205
206 for (i = 0; p1;
207 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
208 {
209 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
210 {
211 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
212 any_change = 1;
213 }
214 else if (! TREE_PURPOSE (p1))
215 {
216 if (TREE_PURPOSE (p2))
217 {
218 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
219 any_change = 1;
220 }
221 }
222 else
223 {
224 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
225 any_change = 1;
226 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
227 }
228 if (TREE_VALUE (p1) != TREE_VALUE (p2))
229 {
230 any_change = 1;
231 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
232 }
233 else
234 TREE_VALUE (n) = TREE_VALUE (p1);
235 }
236 if (! any_change)
237 return oldargs;
238
239 return newargs;
240 }
241
242 /* Given a type, perhaps copied for a typedef,
243 find the "original" version of it. */
244 static tree
245 original_type (tree t)
246 {
247 int quals = cp_type_quals (t);
248 while (t != error_mark_node
249 && TYPE_NAME (t) != NULL_TREE)
250 {
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;
258 }
259 return cp_build_qualified_type (t, quals);
260 }
261
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. */
266
267 static tree
268 cp_common_type (tree t1, tree t2)
269 {
270 enum tree_code code1 = TREE_CODE (t1);
271 enum tree_code code2 = TREE_CODE (t2);
272 tree attributes;
273
274
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);
279
280 if (SCOPED_ENUM_P (t1) || SCOPED_ENUM_P (t2))
281 {
282 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
283 return build_type_attribute_variant (t1, attributes);
284 else
285 return NULL_TREE;
286 }
287
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));
295
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)
300 {
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);
305
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);
313 }
314
315 if (code1 == VECTOR_TYPE)
316 {
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);
323 }
324
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);
330
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);
336
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);
340
341 if (code1 != REAL_TYPE)
342 {
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.
354
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))
361 {
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);
366 }
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)))
372 {
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);
377 }
378
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))
386 {
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);
390 }
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);
396 }
397 else
398 {
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);
411
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);
418 }
419 }
420
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]. */
424
425 tree
426 type_after_usual_arithmetic_conversions (tree t1, tree t2)
427 {
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));
434
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))
438 {
439 t1 = type_promotes_to (t1);
440 t2 = type_promotes_to (t2);
441 }
442
443 return cp_common_type (t1, t2);
444 }
445
446 static void
447 composite_pointer_error (diagnostic_t kind, tree t1, tree t2,
448 composite_pointer_operation operation)
449 {
450 switch (operation)
451 {
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 ();
472 }
473 }
474
475 /* Subroutine of composite_pointer_type to implement the recursive
476 case. See that function for documentation of the parameters. */
477
478 static tree
479 composite_pointer_type_r (tree t1, tree t2,
480 composite_pointer_operation operation,
481 tsubst_flags_t complain)
482 {
483 tree pointee1;
484 tree pointee2;
485 tree result_type;
486 tree attributes;
487
488 /* Determine the types pointed to by T1 and T2. */
489 if (TREE_CODE (t1) == POINTER_TYPE)
490 {
491 pointee1 = TREE_TYPE (t1);
492 pointee2 = TREE_TYPE (t2);
493 }
494 else
495 {
496 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
497 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
498 }
499
500 /* [expr.rel]
501
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)))
513 result_type = composite_pointer_type_r (pointee1, pointee2, operation,
514 complain);
515 else
516 {
517 if (complain & tf_error)
518 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
519 else
520 return error_mark_node;
521 result_type = void_type_node;
522 }
523 result_type = cp_build_qualified_type (result_type,
524 (cp_type_quals (pointee1)
525 | cp_type_quals (pointee2)));
526 /* If the original types were pointers to members, so is the
527 result. */
528 if (TYPE_PTR_TO_MEMBER_P (t1))
529 {
530 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
531 TYPE_PTRMEM_CLASS_TYPE (t2)))
532 {
533 if (complain & tf_error)
534 composite_pointer_error (DK_PERMERROR, t1, t2, operation);
535 else
536 return error_mark_node;
537 }
538 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
539 result_type);
540 }
541 else
542 result_type = build_pointer_type (result_type);
543
544 /* Merge the attributes. */
545 attributes = (*targetm.merge_type_attributes) (t1, t2);
546 return build_type_attribute_variant (result_type, attributes);
547 }
548
549 /* Return the composite pointer type (see [expr.rel]) for T1 and T2.
550 ARG1 and ARG2 are the values with those types. The OPERATION is to
551 describe the operation between the pointer types,
552 in case an error occurs.
553
554 This routine also implements the computation of a common type for
555 pointers-to-members as per [expr.eq]. */
556
557 tree
558 composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
559 composite_pointer_operation operation,
560 tsubst_flags_t complain)
561 {
562 tree class1;
563 tree class2;
564
565 /* [expr.rel]
566
567 If one operand is a null pointer constant, the composite pointer
568 type is the type of the other operand. */
569 if (null_ptr_cst_p (arg1))
570 return t2;
571 if (null_ptr_cst_p (arg2))
572 return t1;
573
574 /* We have:
575
576 [expr.rel]
577
578 If one of the operands has type "pointer to cv1 void*", then
579 the other has type "pointer to cv2T", and the composite pointer
580 type is "pointer to cv12 void", where cv12 is the union of cv1
581 and cv2.
582
583 If either type is a pointer to void, make sure it is T1. */
584 if (TREE_CODE (t2) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t2)))
585 {
586 tree t;
587 t = t1;
588 t1 = t2;
589 t2 = t;
590 }
591
592 /* Now, if T1 is a pointer to void, merge the qualifiers. */
593 if (TREE_CODE (t1) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t1)))
594 {
595 tree attributes;
596 tree result_type;
597
598 if (TYPE_PTRFN_P (t2) && (complain & tf_error))
599 {
600 switch (operation)
601 {
602 case CPO_COMPARISON:
603 pedwarn (input_location, OPT_pedantic,
604 "ISO C++ forbids comparison between "
605 "pointer of type %<void *%> and pointer-to-function");
606 break;
607 case CPO_CONVERSION:
608 pedwarn (input_location, OPT_pedantic,
609 "ISO C++ forbids conversion between "
610 "pointer of type %<void *%> and pointer-to-function");
611 break;
612 case CPO_CONDITIONAL_EXPR:
613 pedwarn (input_location, OPT_pedantic,
614 "ISO C++ forbids conditional expression between "
615 "pointer of type %<void *%> and pointer-to-function");
616 break;
617 default:
618 gcc_unreachable ();
619 }
620 }
621 result_type
622 = cp_build_qualified_type (void_type_node,
623 (cp_type_quals (TREE_TYPE (t1))
624 | cp_type_quals (TREE_TYPE (t2))));
625 result_type = build_pointer_type (result_type);
626 /* Merge the attributes. */
627 attributes = (*targetm.merge_type_attributes) (t1, t2);
628 return build_type_attribute_variant (result_type, attributes);
629 }
630
631 if (c_dialect_objc () && TREE_CODE (t1) == POINTER_TYPE
632 && TREE_CODE (t2) == POINTER_TYPE)
633 {
634 if (objc_have_common_type (t1, t2, -3, NULL_TREE))
635 return objc_common_type (t1, t2);
636 }
637
638 /* [expr.eq] permits the application of a pointer conversion to
639 bring the pointers to a common type. */
640 if (TREE_CODE (t1) == POINTER_TYPE && TREE_CODE (t2) == POINTER_TYPE
641 && CLASS_TYPE_P (TREE_TYPE (t1))
642 && CLASS_TYPE_P (TREE_TYPE (t2))
643 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
644 TREE_TYPE (t2)))
645 {
646 class1 = TREE_TYPE (t1);
647 class2 = TREE_TYPE (t2);
648
649 if (DERIVED_FROM_P (class1, class2))
650 t2 = (build_pointer_type
651 (cp_build_qualified_type (class1, cp_type_quals (class2))));
652 else if (DERIVED_FROM_P (class2, class1))
653 t1 = (build_pointer_type
654 (cp_build_qualified_type (class2, cp_type_quals (class1))));
655 else
656 {
657 if (complain & tf_error)
658 composite_pointer_error (DK_ERROR, t1, t2, operation);
659 return error_mark_node;
660 }
661 }
662 /* [expr.eq] permits the application of a pointer-to-member
663 conversion to change the class type of one of the types. */
664 else if (TYPE_PTR_TO_MEMBER_P (t1)
665 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
666 TYPE_PTRMEM_CLASS_TYPE (t2)))
667 {
668 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
669 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
670
671 if (DERIVED_FROM_P (class1, class2))
672 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
673 else if (DERIVED_FROM_P (class2, class1))
674 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
675 else
676 {
677 if (complain & tf_error)
678 switch (operation)
679 {
680 case CPO_COMPARISON:
681 error ("comparison between distinct "
682 "pointer-to-member types %qT and %qT lacks a cast",
683 t1, t2);
684 break;
685 case CPO_CONVERSION:
686 error ("conversion between distinct "
687 "pointer-to-member types %qT and %qT lacks a cast",
688 t1, t2);
689 break;
690 case CPO_CONDITIONAL_EXPR:
691 error ("conditional expression between distinct "
692 "pointer-to-member types %qT and %qT lacks a cast",
693 t1, t2);
694 break;
695 default:
696 gcc_unreachable ();
697 }
698 return error_mark_node;
699 }
700 }
701
702 return composite_pointer_type_r (t1, t2, operation, complain);
703 }
704
705 /* Return the merged type of two types.
706 We assume that comptypes has already been done and returned 1;
707 if that isn't so, this may crash.
708
709 This just combines attributes and default arguments; any other
710 differences would cause the two types to compare unalike. */
711
712 tree
713 merge_types (tree t1, tree t2)
714 {
715 enum tree_code code1;
716 enum tree_code code2;
717 tree attributes;
718
719 /* Save time if the two types are the same. */
720 if (t1 == t2)
721 return t1;
722 if (original_type (t1) == original_type (t2))
723 return t1;
724
725 /* If one type is nonsense, use the other. */
726 if (t1 == error_mark_node)
727 return t2;
728 if (t2 == error_mark_node)
729 return t1;
730
731 /* Merge the attributes. */
732 attributes = (*targetm.merge_type_attributes) (t1, t2);
733
734 if (TYPE_PTRMEMFUNC_P (t1))
735 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
736 if (TYPE_PTRMEMFUNC_P (t2))
737 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
738
739 code1 = TREE_CODE (t1);
740 code2 = TREE_CODE (t2);
741 if (code1 != code2)
742 {
743 gcc_assert (code1 == TYPENAME_TYPE || code2 == TYPENAME_TYPE);
744 if (code1 == TYPENAME_TYPE)
745 {
746 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
747 code1 = TREE_CODE (t1);
748 }
749 else
750 {
751 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
752 code2 = TREE_CODE (t2);
753 }
754 }
755
756 switch (code1)
757 {
758 case POINTER_TYPE:
759 case REFERENCE_TYPE:
760 /* For two pointers, do this recursively on the target type. */
761 {
762 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
763 int quals = cp_type_quals (t1);
764
765 if (code1 == POINTER_TYPE)
766 t1 = build_pointer_type (target);
767 else
768 t1 = cp_build_reference_type (target, TYPE_REF_IS_RVALUE (t1));
769 t1 = build_type_attribute_variant (t1, attributes);
770 t1 = cp_build_qualified_type (t1, quals);
771
772 if (TREE_CODE (target) == METHOD_TYPE)
773 t1 = build_ptrmemfunc_type (t1);
774
775 return t1;
776 }
777
778 case OFFSET_TYPE:
779 {
780 int quals;
781 tree pointee;
782 quals = cp_type_quals (t1);
783 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
784 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
785 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
786 pointee);
787 t1 = cp_build_qualified_type (t1, quals);
788 break;
789 }
790
791 case ARRAY_TYPE:
792 {
793 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
794 /* Save space: see if the result is identical to one of the args. */
795 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
796 return build_type_attribute_variant (t1, attributes);
797 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
798 return build_type_attribute_variant (t2, attributes);
799 /* Merge the element types, and have a size if either arg has one. */
800 t1 = build_cplus_array_type
801 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
802 break;
803 }
804
805 case FUNCTION_TYPE:
806 /* Function types: prefer the one that specified arg types.
807 If both do, merge the arg types. Also merge the return types. */
808 {
809 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
810 tree p1 = TYPE_ARG_TYPES (t1);
811 tree p2 = TYPE_ARG_TYPES (t2);
812 tree parms;
813 tree rval, raises;
814
815 /* Save space: see if the result is identical to one of the args. */
816 if (valtype == TREE_TYPE (t1) && ! p2)
817 return cp_build_type_attribute_variant (t1, attributes);
818 if (valtype == TREE_TYPE (t2) && ! p1)
819 return cp_build_type_attribute_variant (t2, attributes);
820
821 /* Simple way if one arg fails to specify argument types. */
822 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
823 parms = p2;
824 else if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
825 parms = p1;
826 else
827 parms = commonparms (p1, p2);
828
829 rval = build_function_type (valtype, parms);
830 gcc_assert (type_memfn_quals (t1) == type_memfn_quals (t2));
831 rval = apply_memfn_quals (rval, type_memfn_quals (t1));
832 raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
833 TYPE_RAISES_EXCEPTIONS (t2));
834 t1 = build_exception_variant (rval, raises);
835 break;
836 }
837
838 case METHOD_TYPE:
839 {
840 /* Get this value the long way, since TYPE_METHOD_BASETYPE
841 is just the main variant of this. */
842 tree basetype = class_of_this_parm (t2);
843 tree raises = merge_exception_specifiers (TYPE_RAISES_EXCEPTIONS (t1),
844 TYPE_RAISES_EXCEPTIONS (t2));
845 tree t3;
846
847 /* If this was a member function type, get back to the
848 original type of type member function (i.e., without
849 the class instance variable up front. */
850 t1 = build_function_type (TREE_TYPE (t1),
851 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
852 t2 = build_function_type (TREE_TYPE (t2),
853 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
854 t3 = merge_types (t1, t2);
855 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
856 TYPE_ARG_TYPES (t3));
857 t1 = build_exception_variant (t3, raises);
858 break;
859 }
860
861 case TYPENAME_TYPE:
862 /* There is no need to merge attributes into a TYPENAME_TYPE.
863 When the type is instantiated it will have whatever
864 attributes result from the instantiation. */
865 return t1;
866
867 default:;
868 }
869
870 if (attribute_list_equal (TYPE_ATTRIBUTES (t1), attributes))
871 return t1;
872 else if (attribute_list_equal (TYPE_ATTRIBUTES (t2), attributes))
873 return t2;
874 else
875 return cp_build_type_attribute_variant (t1, attributes);
876 }
877
878 /* Return the ARRAY_TYPE type without its domain. */
879
880 tree
881 strip_array_domain (tree type)
882 {
883 tree t2;
884 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
885 if (TYPE_DOMAIN (type) == NULL_TREE)
886 return type;
887 t2 = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
888 return cp_build_type_attribute_variant (t2, TYPE_ATTRIBUTES (type));
889 }
890
891 /* Wrapper around cp_common_type that is used by c-common.c and other
892 front end optimizations that remove promotions.
893
894 Return the common type for two arithmetic types T1 and T2 under the
895 usual arithmetic conversions. The default conversions have already
896 been applied, and enumerated types converted to their compatible
897 integer types. */
898
899 tree
900 common_type (tree t1, tree t2)
901 {
902 /* If one type is nonsense, use the other */
903 if (t1 == error_mark_node)
904 return t2;
905 if (t2 == error_mark_node)
906 return t1;
907
908 return cp_common_type (t1, t2);
909 }
910
911 /* Return the common type of two pointer types T1 and T2. This is the
912 type for the result of most arithmetic operations if the operands
913 have the given two types.
914
915 We assume that comp_target_types has already been done and returned
916 nonzero; if that isn't so, this may crash. */
917
918 tree
919 common_pointer_type (tree t1, tree t2)
920 {
921 gcc_assert ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
922 || (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
923 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)));
924
925 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
926 CPO_CONVERSION, tf_warning_or_error);
927 }
928 \f
929 /* Compare two exception specifier types for exactness or subsetness, if
930 allowed. Returns false for mismatch, true for match (same, or
931 derived and !exact).
932
933 [except.spec] "If a class X ... objects of class X or any class publicly
934 and unambiguously derived from X. Similarly, if a pointer type Y * ...
935 exceptions of type Y * or that are pointers to any type publicly and
936 unambiguously derived from Y. Otherwise a function only allows exceptions
937 that have the same type ..."
938 This does not mention cv qualifiers and is different to what throw
939 [except.throw] and catch [except.catch] will do. They will ignore the
940 top level cv qualifiers, and allow qualifiers in the pointer to class
941 example.
942
943 We implement the letter of the standard. */
944
945 static bool
946 comp_except_types (tree a, tree b, bool exact)
947 {
948 if (same_type_p (a, b))
949 return true;
950 else if (!exact)
951 {
952 if (cp_type_quals (a) || cp_type_quals (b))
953 return false;
954
955 if (TREE_CODE (a) == POINTER_TYPE
956 && TREE_CODE (b) == POINTER_TYPE)
957 {
958 a = TREE_TYPE (a);
959 b = TREE_TYPE (b);
960 if (cp_type_quals (a) || cp_type_quals (b))
961 return false;
962 }
963
964 if (TREE_CODE (a) != RECORD_TYPE
965 || TREE_CODE (b) != RECORD_TYPE)
966 return false;
967
968 if (PUBLICLY_UNIQUELY_DERIVED_P (a, b))
969 return true;
970 }
971 return false;
972 }
973
974 /* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
975 If EXACT is ce_derived, T2 can be stricter than T1 (according to 15.4/5).
976 If EXACT is ce_normal, the compatibility rules in 15.4/3 apply.
977 If EXACT is ce_exact, the specs must be exactly the same. Exception lists
978 are unordered, but we've already filtered out duplicates. Most lists will
979 be in order, we should try to make use of that. */
980
981 bool
982 comp_except_specs (const_tree t1, const_tree t2, int exact)
983 {
984 const_tree probe;
985 const_tree base;
986 int length = 0;
987
988 if (t1 == t2)
989 return true;
990
991 /* First handle noexcept. */
992 if (exact < ce_exact)
993 {
994 /* noexcept(false) is compatible with no exception-specification,
995 and stricter than any spec. */
996 if (t1 == noexcept_false_spec)
997 return t2 == NULL_TREE || exact == ce_derived;
998 /* Even a derived noexcept(false) is compatible with no
999 exception-specification. */
1000 if (t2 == noexcept_false_spec)
1001 return t1 == NULL_TREE;
1002
1003 /* Otherwise, if we aren't looking for an exact match, noexcept is
1004 equivalent to throw(). */
1005 if (t1 == noexcept_true_spec)
1006 t1 = empty_except_spec;
1007 if (t2 == noexcept_true_spec)
1008 t2 = empty_except_spec;
1009 }
1010
1011 /* If any noexcept is left, it is only comparable to itself;
1012 either we're looking for an exact match or we're redeclaring a
1013 template with dependent noexcept. */
1014 if ((t1 && TREE_PURPOSE (t1))
1015 || (t2 && TREE_PURPOSE (t2)))
1016 return (t1 && t2
1017 && cp_tree_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2)));
1018
1019 if (t1 == NULL_TREE) /* T1 is ... */
1020 return t2 == NULL_TREE || exact == ce_derived;
1021 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
1022 return t2 != NULL_TREE && !TREE_VALUE (t2);
1023 if (t2 == NULL_TREE) /* T2 is ... */
1024 return false;
1025 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
1026 return exact == ce_derived;
1027
1028 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
1029 Count how many we find, to determine exactness. For exact matching and
1030 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
1031 O(nm). */
1032 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
1033 {
1034 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
1035 {
1036 tree a = TREE_VALUE (probe);
1037 tree b = TREE_VALUE (t2);
1038
1039 if (comp_except_types (a, b, exact))
1040 {
1041 if (probe == base && exact > ce_derived)
1042 base = TREE_CHAIN (probe);
1043 length++;
1044 break;
1045 }
1046 }
1047 if (probe == NULL_TREE)
1048 return false;
1049 }
1050 return exact == ce_derived || base == NULL_TREE || length == list_length (t1);
1051 }
1052
1053 /* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
1054 [] can match [size]. */
1055
1056 static bool
1057 comp_array_types (const_tree t1, const_tree t2, bool allow_redeclaration)
1058 {
1059 tree d1;
1060 tree d2;
1061 tree max1, max2;
1062
1063 if (t1 == t2)
1064 return true;
1065
1066 /* The type of the array elements must be the same. */
1067 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1068 return false;
1069
1070 d1 = TYPE_DOMAIN (t1);
1071 d2 = TYPE_DOMAIN (t2);
1072
1073 if (d1 == d2)
1074 return true;
1075
1076 /* If one of the arrays is dimensionless, and the other has a
1077 dimension, they are of different types. However, it is valid to
1078 write:
1079
1080 extern int a[];
1081 int a[3];
1082
1083 by [basic.link]:
1084
1085 declarations for an array object can specify
1086 array types that differ by the presence or absence of a major
1087 array bound (_dcl.array_). */
1088 if (!d1 || !d2)
1089 return allow_redeclaration;
1090
1091 /* Check that the dimensions are the same. */
1092
1093 if (!cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2)))
1094 return false;
1095 max1 = TYPE_MAX_VALUE (d1);
1096 max2 = TYPE_MAX_VALUE (d2);
1097 if (processing_template_decl && !abi_version_at_least (2)
1098 && !value_dependent_expression_p (max1)
1099 && !value_dependent_expression_p (max2))
1100 {
1101 /* With abi-1 we do not fold non-dependent array bounds, (and
1102 consequently mangle them incorrectly). We must therefore
1103 fold them here, to verify the domains have the same
1104 value. */
1105 max1 = fold (max1);
1106 max2 = fold (max2);
1107 }
1108
1109 if (!cp_tree_equal (max1, max2))
1110 return false;
1111
1112 return true;
1113 }
1114
1115 /* Compare the relative position of T1 and T2 into their respective
1116 template parameter list.
1117 T1 and T2 must be template parameter types.
1118 Return TRUE if T1 and T2 have the same position, FALSE otherwise. */
1119
1120 static bool
1121 comp_template_parms_position (tree t1, tree t2)
1122 {
1123 tree index1, index2;
1124 gcc_assert (t1 && t2
1125 && TREE_CODE (t1) == TREE_CODE (t2)
1126 && (TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM
1127 || TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM
1128 || TREE_CODE (t1) == TEMPLATE_TYPE_PARM));
1129
1130 index1 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t1));
1131 index2 = TEMPLATE_TYPE_PARM_INDEX (TYPE_MAIN_VARIANT (t2));
1132
1133 /* If T1 and T2 belong to template parm lists of different size,
1134 let's assume they are different. */
1135 if (TEMPLATE_PARM_NUM_SIBLINGS (index1)
1136 != TEMPLATE_PARM_NUM_SIBLINGS (index2))
1137 return false;
1138
1139 /* Then compare their relative position. */
1140 if (TEMPLATE_PARM_IDX (index1) != TEMPLATE_PARM_IDX (index2)
1141 || TEMPLATE_PARM_LEVEL (index1) != TEMPLATE_PARM_LEVEL (index2)
1142 || (TEMPLATE_PARM_PARAMETER_PACK (index1)
1143 != TEMPLATE_PARM_PARAMETER_PACK (index2)))
1144 return false;
1145
1146 return true;
1147 }
1148
1149 /* Subroutine in comptypes. */
1150
1151 static bool
1152 structural_comptypes (tree t1, tree t2, int strict)
1153 {
1154 if (t1 == t2)
1155 return true;
1156
1157 /* Suppress errors caused by previously reported errors. */
1158 if (t1 == error_mark_node || t2 == error_mark_node)
1159 return false;
1160
1161 gcc_assert (TYPE_P (t1) && TYPE_P (t2));
1162
1163 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
1164 current instantiation. */
1165 if (TREE_CODE (t1) == TYPENAME_TYPE)
1166 t1 = resolve_typename_type (t1, /*only_current_p=*/true);
1167
1168 if (TREE_CODE (t2) == TYPENAME_TYPE)
1169 t2 = resolve_typename_type (t2, /*only_current_p=*/true);
1170
1171 if (TYPE_PTRMEMFUNC_P (t1))
1172 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
1173 if (TYPE_PTRMEMFUNC_P (t2))
1174 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
1175
1176 /* Different classes of types can't be compatible. */
1177 if (TREE_CODE (t1) != TREE_CODE (t2))
1178 return false;
1179
1180 /* Qualifiers must match. For array types, we will check when we
1181 recur on the array element types. */
1182 if (TREE_CODE (t1) != ARRAY_TYPE
1183 && cp_type_quals (t1) != cp_type_quals (t2))
1184 return false;
1185 if (TREE_CODE (t1) == FUNCTION_TYPE
1186 && type_memfn_quals (t1) != type_memfn_quals (t2))
1187 return false;
1188 if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2))
1189 return false;
1190
1191 /* Allow for two different type nodes which have essentially the same
1192 definition. Note that we already checked for equality of the type
1193 qualifiers (just above). */
1194
1195 if (TREE_CODE (t1) != ARRAY_TYPE
1196 && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
1197 return true;
1198
1199
1200 /* Compare the types. Break out if they could be the same. */
1201 switch (TREE_CODE (t1))
1202 {
1203 case VOID_TYPE:
1204 case BOOLEAN_TYPE:
1205 /* All void and bool types are the same. */
1206 break;
1207
1208 case INTEGER_TYPE:
1209 case FIXED_POINT_TYPE:
1210 case REAL_TYPE:
1211 /* With these nodes, we can't determine type equivalence by
1212 looking at what is stored in the nodes themselves, because
1213 two nodes might have different TYPE_MAIN_VARIANTs but still
1214 represent the same type. For example, wchar_t and int could
1215 have the same properties (TYPE_PRECISION, TYPE_MIN_VALUE,
1216 TYPE_MAX_VALUE, etc.), but have different TYPE_MAIN_VARIANTs
1217 and are distinct types. On the other hand, int and the
1218 following typedef
1219
1220 typedef int INT __attribute((may_alias));
1221
1222 have identical properties, different TYPE_MAIN_VARIANTs, but
1223 represent the same type. The canonical type system keeps
1224 track of equivalence in this case, so we fall back on it. */
1225 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1226
1227 case TEMPLATE_TEMPLATE_PARM:
1228 case BOUND_TEMPLATE_TEMPLATE_PARM:
1229 if (!comp_template_parms_position (t1, t2))
1230 return false;
1231 if (!comp_template_parms
1232 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
1233 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
1234 return false;
1235 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
1236 break;
1237 /* Don't check inheritance. */
1238 strict = COMPARE_STRICT;
1239 /* Fall through. */
1240
1241 case RECORD_TYPE:
1242 case UNION_TYPE:
1243 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
1244 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
1245 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
1246 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
1247 break;
1248
1249 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
1250 break;
1251 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
1252 break;
1253
1254 return false;
1255
1256 case OFFSET_TYPE:
1257 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
1258 strict & ~COMPARE_REDECLARATION))
1259 return false;
1260 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1261 return false;
1262 break;
1263
1264 case REFERENCE_TYPE:
1265 if (TYPE_REF_IS_RVALUE (t1) != TYPE_REF_IS_RVALUE (t2))
1266 return false;
1267 /* fall through to checks for pointer types */
1268
1269 case POINTER_TYPE:
1270 if (TYPE_MODE (t1) != TYPE_MODE (t2)
1271 || TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2)
1272 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1273 return false;
1274 break;
1275
1276 case METHOD_TYPE:
1277 case FUNCTION_TYPE:
1278 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1279 return false;
1280 if (!compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2)))
1281 return false;
1282 break;
1283
1284 case ARRAY_TYPE:
1285 /* Target types must match incl. qualifiers. */
1286 if (!comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION)))
1287 return false;
1288 break;
1289
1290 case TEMPLATE_TYPE_PARM:
1291 /* If T1 and T2 don't have the same relative position in their
1292 template parameters set, they can't be equal. */
1293 if (!comp_template_parms_position (t1, t2))
1294 return false;
1295 break;
1296
1297 case TYPENAME_TYPE:
1298 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1299 TYPENAME_TYPE_FULLNAME (t2)))
1300 return false;
1301 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1302 return false;
1303 break;
1304
1305 case UNBOUND_CLASS_TEMPLATE:
1306 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1307 return false;
1308 if (!same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2)))
1309 return false;
1310 break;
1311
1312 case COMPLEX_TYPE:
1313 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1314 return false;
1315 break;
1316
1317 case VECTOR_TYPE:
1318 if (TYPE_VECTOR_SUBPARTS (t1) != TYPE_VECTOR_SUBPARTS (t2)
1319 || !same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1320 return false;
1321 break;
1322
1323 case TYPE_PACK_EXPANSION:
1324 return same_type_p (PACK_EXPANSION_PATTERN (t1),
1325 PACK_EXPANSION_PATTERN (t2));
1326
1327 case DECLTYPE_TYPE:
1328 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1329 != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1330 || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1331 != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1332 || (DECLTYPE_FOR_LAMBDA_RETURN (t1)
1333 != DECLTYPE_FOR_LAMBDA_RETURN (t2))
1334 || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1),
1335 DECLTYPE_TYPE_EXPR (t2)))
1336 return false;
1337 break;
1338
1339 case UNDERLYING_TYPE:
1340 return same_type_p (UNDERLYING_TYPE_TYPE (t1),
1341 UNDERLYING_TYPE_TYPE (t2));
1342
1343 default:
1344 return false;
1345 }
1346
1347 /* If we get here, we know that from a target independent POV the
1348 types are the same. Make sure the target attributes are also
1349 the same. */
1350 return comp_type_attributes (t1, t2);
1351 }
1352
1353 /* Return true if T1 and T2 are related as allowed by STRICT. STRICT
1354 is a bitwise-or of the COMPARE_* flags. */
1355
1356 bool
1357 comptypes (tree t1, tree t2, int strict)
1358 {
1359 if (strict == COMPARE_STRICT)
1360 {
1361 if (t1 == t2)
1362 return true;
1363
1364 if (t1 == error_mark_node || t2 == error_mark_node)
1365 return false;
1366
1367 if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1368 /* At least one of the types requires structural equality, so
1369 perform a deep check. */
1370 return structural_comptypes (t1, t2, strict);
1371
1372 #ifdef ENABLE_CHECKING
1373 if (USE_CANONICAL_TYPES)
1374 {
1375 bool result = structural_comptypes (t1, t2, strict);
1376
1377 if (result && TYPE_CANONICAL (t1) != TYPE_CANONICAL (t2))
1378 /* The two types are structurally equivalent, but their
1379 canonical types were different. This is a failure of the
1380 canonical type propagation code.*/
1381 internal_error
1382 ("canonical types differ for identical types %T and %T",
1383 t1, t2);
1384 else if (!result && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
1385 /* Two types are structurally different, but the canonical
1386 types are the same. This means we were over-eager in
1387 assigning canonical types. */
1388 internal_error
1389 ("same canonical type node for different types %T and %T",
1390 t1, t2);
1391
1392 return result;
1393 }
1394 #else
1395 if (USE_CANONICAL_TYPES)
1396 return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1397 #endif
1398 else
1399 return structural_comptypes (t1, t2, strict);
1400 }
1401 else if (strict == COMPARE_STRUCTURAL)
1402 return structural_comptypes (t1, t2, COMPARE_STRICT);
1403 else
1404 return structural_comptypes (t1, t2, strict);
1405 }
1406
1407 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1408 top-level qualifiers. */
1409
1410 bool
1411 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1412 {
1413 if (type1 == error_mark_node || type2 == error_mark_node)
1414 return false;
1415
1416 return same_type_p (TYPE_MAIN_VARIANT (type1), TYPE_MAIN_VARIANT (type2));
1417 }
1418
1419 /* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1420
1421 bool
1422 at_least_as_qualified_p (const_tree type1, const_tree type2)
1423 {
1424 int q1 = cp_type_quals (type1);
1425 int q2 = cp_type_quals (type2);
1426
1427 /* All qualifiers for TYPE2 must also appear in TYPE1. */
1428 return (q1 & q2) == q2;
1429 }
1430
1431 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1432 more cv-qualified that TYPE1, and 0 otherwise. */
1433
1434 int
1435 comp_cv_qualification (const_tree type1, const_tree type2)
1436 {
1437 int q1 = cp_type_quals (type1);
1438 int q2 = cp_type_quals (type2);
1439
1440 if (q1 == q2)
1441 return 0;
1442
1443 if ((q1 & q2) == q2)
1444 return 1;
1445 else if ((q1 & q2) == q1)
1446 return -1;
1447
1448 return 0;
1449 }
1450
1451 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1452 subset of the cv-qualification signature of TYPE2, and the types
1453 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1454
1455 int
1456 comp_cv_qual_signature (tree type1, tree type2)
1457 {
1458 if (comp_ptr_ttypes_real (type2, type1, -1))
1459 return 1;
1460 else if (comp_ptr_ttypes_real (type1, type2, -1))
1461 return -1;
1462 else
1463 return 0;
1464 }
1465 \f
1466 /* Subroutines of `comptypes'. */
1467
1468 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1469 equivalent in the sense that functions with those parameter types
1470 can have equivalent types. The two lists must be equivalent,
1471 element by element. */
1472
1473 bool
1474 compparms (const_tree parms1, const_tree parms2)
1475 {
1476 const_tree t1, t2;
1477
1478 /* An unspecified parmlist matches any specified parmlist
1479 whose argument types don't need default promotions. */
1480
1481 for (t1 = parms1, t2 = parms2;
1482 t1 || t2;
1483 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1484 {
1485 /* If one parmlist is shorter than the other,
1486 they fail to match. */
1487 if (!t1 || !t2)
1488 return false;
1489 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1490 return false;
1491 }
1492 return true;
1493 }
1494
1495 \f
1496 /* Process a sizeof or alignof expression where the operand is a
1497 type. */
1498
1499 tree
1500 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
1501 {
1502 tree value;
1503 bool dependent_p;
1504
1505 gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1506 if (type == error_mark_node)
1507 return error_mark_node;
1508
1509 type = non_reference (type);
1510 if (TREE_CODE (type) == METHOD_TYPE)
1511 {
1512 if (complain)
1513 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
1514 "invalid application of %qs to a member function",
1515 operator_name_info[(int) op].name);
1516 value = size_one_node;
1517 }
1518
1519 dependent_p = dependent_type_p (type);
1520 if (!dependent_p)
1521 complete_type (type);
1522 if (dependent_p
1523 /* VLA types will have a non-constant size. In the body of an
1524 uninstantiated template, we don't need to try to compute the
1525 value, because the sizeof expression is not an integral
1526 constant expression in that case. And, if we do try to
1527 compute the value, we'll likely end up with SAVE_EXPRs, which
1528 the template substitution machinery does not expect to see. */
1529 || (processing_template_decl
1530 && COMPLETE_TYPE_P (type)
1531 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1532 {
1533 value = build_min (op, size_type_node, type);
1534 TREE_READONLY (value) = 1;
1535 return value;
1536 }
1537
1538 return c_sizeof_or_alignof_type (input_location, complete_type (type),
1539 op == SIZEOF_EXPR,
1540 complain);
1541 }
1542
1543 /* Return the size of the type, without producing any warnings for
1544 types whose size cannot be taken. This routine should be used only
1545 in some other routine that has already produced a diagnostic about
1546 using the size of such a type. */
1547 tree
1548 cxx_sizeof_nowarn (tree type)
1549 {
1550 if (TREE_CODE (type) == FUNCTION_TYPE
1551 || TREE_CODE (type) == VOID_TYPE
1552 || TREE_CODE (type) == ERROR_MARK)
1553 return size_one_node;
1554 else if (!COMPLETE_TYPE_P (type))
1555 return size_zero_node;
1556 else
1557 return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false);
1558 }
1559
1560 /* Process a sizeof expression where the operand is an expression. */
1561
1562 static tree
1563 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1564 {
1565 if (e == error_mark_node)
1566 return error_mark_node;
1567
1568 if (processing_template_decl)
1569 {
1570 e = build_min (SIZEOF_EXPR, size_type_node, e);
1571 TREE_SIDE_EFFECTS (e) = 0;
1572 TREE_READONLY (e) = 1;
1573
1574 return e;
1575 }
1576
1577 /* To get the size of a static data member declared as an array of
1578 unknown bound, we need to instantiate it. */
1579 if (TREE_CODE (e) == VAR_DECL
1580 && VAR_HAD_UNKNOWN_BOUND (e)
1581 && DECL_TEMPLATE_INSTANTIATION (e))
1582 instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1583
1584 e = mark_type_use (e);
1585
1586 if (TREE_CODE (e) == COMPONENT_REF
1587 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1588 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1589 {
1590 if (complain & tf_error)
1591 error ("invalid application of %<sizeof%> to a bit-field");
1592 else
1593 return error_mark_node;
1594 e = char_type_node;
1595 }
1596 else if (is_overloaded_fn (e))
1597 {
1598 if (complain & tf_error)
1599 permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1600 "function type");
1601 else
1602 return error_mark_node;
1603 e = char_type_node;
1604 }
1605 else if (type_unknown_p (e))
1606 {
1607 if (complain & tf_error)
1608 cxx_incomplete_type_error (e, TREE_TYPE (e));
1609 else
1610 return error_mark_node;
1611 e = char_type_node;
1612 }
1613 else
1614 e = TREE_TYPE (e);
1615
1616 return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, complain & tf_error);
1617 }
1618
1619 /* Implement the __alignof keyword: Return the minimum required
1620 alignment of E, measured in bytes. For VAR_DECL's and
1621 FIELD_DECL's return DECL_ALIGN (which can be set from an
1622 "aligned" __attribute__ specification). */
1623
1624 static tree
1625 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1626 {
1627 tree t;
1628
1629 if (e == error_mark_node)
1630 return error_mark_node;
1631
1632 if (processing_template_decl)
1633 {
1634 e = build_min (ALIGNOF_EXPR, size_type_node, e);
1635 TREE_SIDE_EFFECTS (e) = 0;
1636 TREE_READONLY (e) = 1;
1637
1638 return e;
1639 }
1640
1641 e = mark_type_use (e);
1642
1643 if (TREE_CODE (e) == VAR_DECL)
1644 t = size_int (DECL_ALIGN_UNIT (e));
1645 else if (TREE_CODE (e) == COMPONENT_REF
1646 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1647 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1648 {
1649 if (complain & tf_error)
1650 error ("invalid application of %<__alignof%> to a bit-field");
1651 else
1652 return error_mark_node;
1653 t = size_one_node;
1654 }
1655 else if (TREE_CODE (e) == COMPONENT_REF
1656 && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1657 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1658 else if (is_overloaded_fn (e))
1659 {
1660 if (complain & tf_error)
1661 permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1662 "function type");
1663 else
1664 return error_mark_node;
1665 if (TREE_CODE (e) == FUNCTION_DECL)
1666 t = size_int (DECL_ALIGN_UNIT (e));
1667 else
1668 t = size_one_node;
1669 }
1670 else if (type_unknown_p (e))
1671 {
1672 if (complain & tf_error)
1673 cxx_incomplete_type_error (e, TREE_TYPE (e));
1674 else
1675 return error_mark_node;
1676 t = size_one_node;
1677 }
1678 else
1679 return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR,
1680 complain & tf_error);
1681
1682 return fold_convert (size_type_node, t);
1683 }
1684
1685 /* Process a sizeof or alignof expression E with code OP where the operand
1686 is an expression. */
1687
1688 tree
1689 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1690 {
1691 if (op == SIZEOF_EXPR)
1692 return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1693 else
1694 return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1695 }
1696 \f
1697 /* EXPR is being used in a context that is not a function call.
1698 Enforce:
1699
1700 [expr.ref]
1701
1702 The expression can be used only as the left-hand operand of a
1703 member function call.
1704
1705 [expr.mptr.operator]
1706
1707 If the result of .* or ->* is a function, then that result can be
1708 used only as the operand for the function call operator ().
1709
1710 by issuing an error message if appropriate. Returns true iff EXPR
1711 violates these rules. */
1712
1713 bool
1714 invalid_nonstatic_memfn_p (const_tree expr, tsubst_flags_t complain)
1715 {
1716 if (expr && DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1717 {
1718 if (complain & tf_error)
1719 error ("invalid use of non-static member function");
1720 return true;
1721 }
1722 return false;
1723 }
1724
1725 /* If EXP is a reference to a bitfield, and the type of EXP does not
1726 match the declared type of the bitfield, return the declared type
1727 of the bitfield. Otherwise, return NULL_TREE. */
1728
1729 tree
1730 is_bitfield_expr_with_lowered_type (const_tree exp)
1731 {
1732 switch (TREE_CODE (exp))
1733 {
1734 case COND_EXPR:
1735 if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1736 ? TREE_OPERAND (exp, 1)
1737 : TREE_OPERAND (exp, 0)))
1738 return NULL_TREE;
1739 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1740
1741 case COMPOUND_EXPR:
1742 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1743
1744 case MODIFY_EXPR:
1745 case SAVE_EXPR:
1746 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1747
1748 case COMPONENT_REF:
1749 {
1750 tree field;
1751
1752 field = TREE_OPERAND (exp, 1);
1753 if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1754 return NULL_TREE;
1755 if (same_type_ignoring_top_level_qualifiers_p
1756 (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1757 return NULL_TREE;
1758 return DECL_BIT_FIELD_TYPE (field);
1759 }
1760
1761 CASE_CONVERT:
1762 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1763 == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1764 return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1765 /* Fallthrough. */
1766
1767 default:
1768 return NULL_TREE;
1769 }
1770 }
1771
1772 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1773 bitfield with a lowered type, the type of EXP is returned, rather
1774 than NULL_TREE. */
1775
1776 tree
1777 unlowered_expr_type (const_tree exp)
1778 {
1779 tree type;
1780 tree etype = TREE_TYPE (exp);
1781
1782 type = is_bitfield_expr_with_lowered_type (exp);
1783 if (type)
1784 type = cp_build_qualified_type (type, cp_type_quals (etype));
1785 else
1786 type = etype;
1787
1788 return type;
1789 }
1790
1791 /* Perform the conversions in [expr] that apply when an lvalue appears
1792 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1793 function-to-pointer conversions. In addition, manifest constants
1794 are replaced by their values, and bitfield references are converted
1795 to their declared types. Note that this function does not perform the
1796 lvalue-to-rvalue conversion for class types. If you need that conversion
1797 to for class types, then you probably need to use force_rvalue.
1798
1799 Although the returned value is being used as an rvalue, this
1800 function does not wrap the returned expression in a
1801 NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1802 that the return value is no longer an lvalue. */
1803
1804 tree
1805 decay_conversion (tree exp)
1806 {
1807 tree type;
1808 enum tree_code code;
1809
1810 type = TREE_TYPE (exp);
1811 if (type == error_mark_node)
1812 return error_mark_node;
1813
1814 exp = mark_rvalue_use (exp);
1815
1816 exp = resolve_nondeduced_context (exp);
1817 if (type_unknown_p (exp))
1818 {
1819 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
1820 return error_mark_node;
1821 }
1822
1823 /* FIXME remove? at least need to remember that this isn't really a
1824 constant expression if EXP isn't decl_constant_var_p, like with
1825 C_MAYBE_CONST_EXPR. */
1826 exp = decl_constant_value (exp);
1827 if (error_operand_p (exp))
1828 return error_mark_node;
1829
1830 if (NULLPTR_TYPE_P (type))
1831 return nullptr_node;
1832
1833 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1834 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1835 code = TREE_CODE (type);
1836 if (code == VOID_TYPE)
1837 {
1838 error ("void value not ignored as it ought to be");
1839 return error_mark_node;
1840 }
1841 if (invalid_nonstatic_memfn_p (exp, tf_warning_or_error))
1842 return error_mark_node;
1843 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
1844 return cp_build_addr_expr (exp, tf_warning_or_error);
1845 if (code == ARRAY_TYPE)
1846 {
1847 tree adr;
1848 tree ptrtype;
1849
1850 if (TREE_CODE (exp) == INDIRECT_REF)
1851 return build_nop (build_pointer_type (TREE_TYPE (type)),
1852 TREE_OPERAND (exp, 0));
1853
1854 if (TREE_CODE (exp) == COMPOUND_EXPR)
1855 {
1856 tree op1 = decay_conversion (TREE_OPERAND (exp, 1));
1857 return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
1858 TREE_OPERAND (exp, 0), op1);
1859 }
1860
1861 if (!lvalue_p (exp)
1862 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1863 {
1864 error ("invalid use of non-lvalue array");
1865 return error_mark_node;
1866 }
1867
1868 ptrtype = build_pointer_type (TREE_TYPE (type));
1869
1870 if (TREE_CODE (exp) == VAR_DECL)
1871 {
1872 if (!cxx_mark_addressable (exp))
1873 return error_mark_node;
1874 adr = build_nop (ptrtype, build_address (exp));
1875 return adr;
1876 }
1877 /* This way is better for a COMPONENT_REF since it can
1878 simplify the offset for a component. */
1879 adr = cp_build_addr_expr (exp, tf_warning_or_error);
1880 return cp_convert (ptrtype, adr);
1881 }
1882
1883 /* If a bitfield is used in a context where integral promotion
1884 applies, then the caller is expected to have used
1885 default_conversion. That function promotes bitfields correctly
1886 before calling this function. At this point, if we have a
1887 bitfield referenced, we may assume that is not subject to
1888 promotion, and that, therefore, the type of the resulting rvalue
1889 is the declared type of the bitfield. */
1890 exp = convert_bitfield_to_declared_type (exp);
1891
1892 /* We do not call rvalue() here because we do not want to wrap EXP
1893 in a NON_LVALUE_EXPR. */
1894
1895 /* [basic.lval]
1896
1897 Non-class rvalues always have cv-unqualified types. */
1898 type = TREE_TYPE (exp);
1899 if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
1900 exp = build_nop (cv_unqualified (type), exp);
1901
1902 return exp;
1903 }
1904
1905 /* Perform preparatory conversions, as part of the "usual arithmetic
1906 conversions". In particular, as per [expr]:
1907
1908 Whenever an lvalue expression appears as an operand of an
1909 operator that expects the rvalue for that operand, the
1910 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
1911 standard conversions are applied to convert the expression to an
1912 rvalue.
1913
1914 In addition, we perform integral promotions here, as those are
1915 applied to both operands to a binary operator before determining
1916 what additional conversions should apply. */
1917
1918 tree
1919 default_conversion (tree exp)
1920 {
1921 /* Check for target-specific promotions. */
1922 tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
1923 if (promoted_type)
1924 exp = cp_convert (promoted_type, exp);
1925 /* Perform the integral promotions first so that bitfield
1926 expressions (which may promote to "int", even if the bitfield is
1927 declared "unsigned") are promoted correctly. */
1928 else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
1929 exp = perform_integral_promotions (exp);
1930 /* Perform the other conversions. */
1931 exp = decay_conversion (exp);
1932
1933 return exp;
1934 }
1935
1936 /* EXPR is an expression with an integral or enumeration type.
1937 Perform the integral promotions in [conv.prom], and return the
1938 converted value. */
1939
1940 tree
1941 perform_integral_promotions (tree expr)
1942 {
1943 tree type;
1944 tree promoted_type;
1945
1946 expr = mark_rvalue_use (expr);
1947
1948 /* [conv.prom]
1949
1950 If the bitfield has an enumerated type, it is treated as any
1951 other value of that type for promotion purposes. */
1952 type = is_bitfield_expr_with_lowered_type (expr);
1953 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
1954 type = TREE_TYPE (expr);
1955 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
1956 promoted_type = type_promotes_to (type);
1957 if (type != promoted_type)
1958 expr = cp_convert (promoted_type, expr);
1959 return expr;
1960 }
1961
1962 /* Returns nonzero iff exp is a STRING_CST or the result of applying
1963 decay_conversion to one. */
1964
1965 int
1966 string_conv_p (const_tree totype, const_tree exp, int warn)
1967 {
1968 tree t;
1969
1970 if (TREE_CODE (totype) != POINTER_TYPE)
1971 return 0;
1972
1973 t = TREE_TYPE (totype);
1974 if (!same_type_p (t, char_type_node)
1975 && !same_type_p (t, char16_type_node)
1976 && !same_type_p (t, char32_type_node)
1977 && !same_type_p (t, wchar_type_node))
1978 return 0;
1979
1980 if (TREE_CODE (exp) == STRING_CST)
1981 {
1982 /* Make sure that we don't try to convert between char and wide chars. */
1983 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
1984 return 0;
1985 }
1986 else
1987 {
1988 /* Is this a string constant which has decayed to 'const char *'? */
1989 t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
1990 if (!same_type_p (TREE_TYPE (exp), t))
1991 return 0;
1992 STRIP_NOPS (exp);
1993 if (TREE_CODE (exp) != ADDR_EXPR
1994 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
1995 return 0;
1996 }
1997
1998 /* This warning is not very useful, as it complains about printf. */
1999 if (warn)
2000 warning (OPT_Wwrite_strings,
2001 "deprecated conversion from string constant to %qT",
2002 totype);
2003
2004 return 1;
2005 }
2006
2007 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2008 can, for example, use as an lvalue. This code used to be in
2009 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2010 expressions, where we're dealing with aggregates. But now it's again only
2011 called from unary_complex_lvalue. The case (in particular) that led to
2012 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2013 get it there. */
2014
2015 static tree
2016 rationalize_conditional_expr (enum tree_code code, tree t,
2017 tsubst_flags_t complain)
2018 {
2019 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2020 the first operand is always the one to be used if both operands
2021 are equal, so we know what conditional expression this used to be. */
2022 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2023 {
2024 tree op0 = TREE_OPERAND (t, 0);
2025 tree op1 = TREE_OPERAND (t, 1);
2026
2027 /* The following code is incorrect if either operand side-effects. */
2028 gcc_assert (!TREE_SIDE_EFFECTS (op0)
2029 && !TREE_SIDE_EFFECTS (op1));
2030 return
2031 build_conditional_expr (build_x_binary_op ((TREE_CODE (t) == MIN_EXPR
2032 ? LE_EXPR : GE_EXPR),
2033 op0, TREE_CODE (op0),
2034 op1, TREE_CODE (op1),
2035 /*overloaded_p=*/NULL,
2036 complain),
2037 cp_build_unary_op (code, op0, 0, complain),
2038 cp_build_unary_op (code, op1, 0, complain),
2039 complain);
2040 }
2041
2042 return
2043 build_conditional_expr (TREE_OPERAND (t, 0),
2044 cp_build_unary_op (code, TREE_OPERAND (t, 1), 0,
2045 complain),
2046 cp_build_unary_op (code, TREE_OPERAND (t, 2), 0,
2047 complain),
2048 complain);
2049 }
2050
2051 /* Given the TYPE of an anonymous union field inside T, return the
2052 FIELD_DECL for the field. If not found return NULL_TREE. Because
2053 anonymous unions can nest, we must also search all anonymous unions
2054 that are directly reachable. */
2055
2056 tree
2057 lookup_anon_field (tree t, tree type)
2058 {
2059 tree field;
2060
2061 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2062 {
2063 if (TREE_STATIC (field))
2064 continue;
2065 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2066 continue;
2067
2068 /* If we find it directly, return the field. */
2069 if (DECL_NAME (field) == NULL_TREE
2070 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2071 {
2072 return field;
2073 }
2074
2075 /* Otherwise, it could be nested, search harder. */
2076 if (DECL_NAME (field) == NULL_TREE
2077 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2078 {
2079 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2080 if (subfield)
2081 return subfield;
2082 }
2083 }
2084 return NULL_TREE;
2085 }
2086
2087 /* Build an expression representing OBJECT.MEMBER. OBJECT is an
2088 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
2089 non-NULL, it indicates the path to the base used to name MEMBER.
2090 If PRESERVE_REFERENCE is true, the expression returned will have
2091 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
2092 returned will have the type referred to by the reference.
2093
2094 This function does not perform access control; that is either done
2095 earlier by the parser when the name of MEMBER is resolved to MEMBER
2096 itself, or later when overload resolution selects one of the
2097 functions indicated by MEMBER. */
2098
2099 tree
2100 build_class_member_access_expr (tree object, tree member,
2101 tree access_path, bool preserve_reference,
2102 tsubst_flags_t complain)
2103 {
2104 tree object_type;
2105 tree member_scope;
2106 tree result = NULL_TREE;
2107
2108 if (error_operand_p (object) || error_operand_p (member))
2109 return error_mark_node;
2110
2111 gcc_assert (DECL_P (member) || BASELINK_P (member));
2112
2113 /* [expr.ref]
2114
2115 The type of the first expression shall be "class object" (of a
2116 complete type). */
2117 object_type = TREE_TYPE (object);
2118 if (!currently_open_class (object_type)
2119 && !complete_type_or_maybe_complain (object_type, object, complain))
2120 return error_mark_node;
2121 if (!CLASS_TYPE_P (object_type))
2122 {
2123 if (complain & tf_error)
2124 error ("request for member %qD in %qE, which is of non-class type %qT",
2125 member, object, object_type);
2126 return error_mark_node;
2127 }
2128
2129 /* The standard does not seem to actually say that MEMBER must be a
2130 member of OBJECT_TYPE. However, that is clearly what is
2131 intended. */
2132 if (DECL_P (member))
2133 {
2134 member_scope = DECL_CLASS_CONTEXT (member);
2135 mark_used (member);
2136 if (TREE_DEPRECATED (member))
2137 warn_deprecated_use (member, NULL_TREE);
2138 }
2139 else
2140 member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2141 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2142 presently be the anonymous union. Go outwards until we find a
2143 type related to OBJECT_TYPE. */
2144 while (ANON_AGGR_TYPE_P (member_scope)
2145 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2146 object_type))
2147 member_scope = TYPE_CONTEXT (member_scope);
2148 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2149 {
2150 if (complain & tf_error)
2151 {
2152 if (TREE_CODE (member) == FIELD_DECL)
2153 error ("invalid use of nonstatic data member %qE", member);
2154 else
2155 error ("%qD is not a member of %qT", member, object_type);
2156 }
2157 return error_mark_node;
2158 }
2159
2160 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2161 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
2162 in the front end; only _DECLs and _REFs are lvalues in the back end. */
2163 {
2164 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2165 if (temp)
2166 object = cp_build_indirect_ref (temp, RO_NULL, complain);
2167 }
2168
2169 /* In [expr.ref], there is an explicit list of the valid choices for
2170 MEMBER. We check for each of those cases here. */
2171 if (TREE_CODE (member) == VAR_DECL)
2172 {
2173 /* A static data member. */
2174 result = member;
2175 mark_exp_read (object);
2176 /* If OBJECT has side-effects, they are supposed to occur. */
2177 if (TREE_SIDE_EFFECTS (object))
2178 result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2179 }
2180 else if (TREE_CODE (member) == FIELD_DECL)
2181 {
2182 /* A non-static data member. */
2183 bool null_object_p;
2184 int type_quals;
2185 tree member_type;
2186
2187 null_object_p = (TREE_CODE (object) == INDIRECT_REF
2188 && integer_zerop (TREE_OPERAND (object, 0)));
2189
2190 /* Convert OBJECT to the type of MEMBER. */
2191 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2192 TYPE_MAIN_VARIANT (member_scope)))
2193 {
2194 tree binfo;
2195 base_kind kind;
2196
2197 binfo = lookup_base (access_path ? access_path : object_type,
2198 member_scope, ba_unique, &kind);
2199 if (binfo == error_mark_node)
2200 return error_mark_node;
2201
2202 /* It is invalid to try to get to a virtual base of a
2203 NULL object. The most common cause is invalid use of
2204 offsetof macro. */
2205 if (null_object_p && kind == bk_via_virtual)
2206 {
2207 if (complain & tf_error)
2208 {
2209 error ("invalid access to non-static data member %qD of "
2210 "NULL object",
2211 member);
2212 error ("(perhaps the %<offsetof%> macro was used incorrectly)");
2213 }
2214 return error_mark_node;
2215 }
2216
2217 /* Convert to the base. */
2218 object = build_base_path (PLUS_EXPR, object, binfo,
2219 /*nonnull=*/1);
2220 /* If we found the base successfully then we should be able
2221 to convert to it successfully. */
2222 gcc_assert (object != error_mark_node);
2223 }
2224
2225 /* Complain about other invalid uses of offsetof, even though they will
2226 give the right answer. Note that we complain whether or not they
2227 actually used the offsetof macro, since there's no way to know at this
2228 point. So we just give a warning, instead of a pedwarn. */
2229 /* Do not produce this warning for base class field references, because
2230 we know for a fact that didn't come from offsetof. This does occur
2231 in various testsuite cases where a null object is passed where a
2232 vtable access is required. */
2233 if (null_object_p && warn_invalid_offsetof
2234 && CLASSTYPE_NON_STD_LAYOUT (object_type)
2235 && !DECL_FIELD_IS_BASE (member)
2236 && cp_unevaluated_operand == 0
2237 && (complain & tf_warning))
2238 {
2239 warning (OPT_Winvalid_offsetof,
2240 "invalid access to non-static data member %qD "
2241 " of NULL object", member);
2242 warning (OPT_Winvalid_offsetof,
2243 "(perhaps the %<offsetof%> macro was used incorrectly)");
2244 }
2245
2246 /* If MEMBER is from an anonymous aggregate, we have converted
2247 OBJECT so that it refers to the class containing the
2248 anonymous union. Generate a reference to the anonymous union
2249 itself, and recur to find MEMBER. */
2250 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2251 /* When this code is called from build_field_call, the
2252 object already has the type of the anonymous union.
2253 That is because the COMPONENT_REF was already
2254 constructed, and was then disassembled before calling
2255 build_field_call. After the function-call code is
2256 cleaned up, this waste can be eliminated. */
2257 && (!same_type_ignoring_top_level_qualifiers_p
2258 (TREE_TYPE (object), DECL_CONTEXT (member))))
2259 {
2260 tree anonymous_union;
2261
2262 anonymous_union = lookup_anon_field (TREE_TYPE (object),
2263 DECL_CONTEXT (member));
2264 object = build_class_member_access_expr (object,
2265 anonymous_union,
2266 /*access_path=*/NULL_TREE,
2267 preserve_reference,
2268 complain);
2269 }
2270
2271 /* Compute the type of the field, as described in [expr.ref]. */
2272 type_quals = TYPE_UNQUALIFIED;
2273 member_type = TREE_TYPE (member);
2274 if (TREE_CODE (member_type) != REFERENCE_TYPE)
2275 {
2276 type_quals = (cp_type_quals (member_type)
2277 | cp_type_quals (object_type));
2278
2279 /* A field is const (volatile) if the enclosing object, or the
2280 field itself, is const (volatile). But, a mutable field is
2281 not const, even within a const object. */
2282 if (DECL_MUTABLE_P (member))
2283 type_quals &= ~TYPE_QUAL_CONST;
2284 member_type = cp_build_qualified_type (member_type, type_quals);
2285 }
2286
2287 result = build3 (COMPONENT_REF, member_type, object, member,
2288 NULL_TREE);
2289 result = fold_if_not_in_template (result);
2290
2291 /* Mark the expression const or volatile, as appropriate. Even
2292 though we've dealt with the type above, we still have to mark the
2293 expression itself. */
2294 if (type_quals & TYPE_QUAL_CONST)
2295 TREE_READONLY (result) = 1;
2296 if (type_quals & TYPE_QUAL_VOLATILE)
2297 TREE_THIS_VOLATILE (result) = 1;
2298 }
2299 else if (BASELINK_P (member))
2300 {
2301 /* The member is a (possibly overloaded) member function. */
2302 tree functions;
2303 tree type;
2304
2305 /* If the MEMBER is exactly one static member function, then we
2306 know the type of the expression. Otherwise, we must wait
2307 until overload resolution has been performed. */
2308 functions = BASELINK_FUNCTIONS (member);
2309 if (TREE_CODE (functions) == FUNCTION_DECL
2310 && DECL_STATIC_FUNCTION_P (functions))
2311 type = TREE_TYPE (functions);
2312 else
2313 type = unknown_type_node;
2314 /* Note that we do not convert OBJECT to the BASELINK_BINFO
2315 base. That will happen when the function is called. */
2316 result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2317 }
2318 else if (TREE_CODE (member) == CONST_DECL)
2319 {
2320 /* The member is an enumerator. */
2321 result = member;
2322 /* If OBJECT has side-effects, they are supposed to occur. */
2323 if (TREE_SIDE_EFFECTS (object))
2324 result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2325 object, result);
2326 }
2327 else
2328 {
2329 if (complain & tf_error)
2330 error ("invalid use of %qD", member);
2331 return error_mark_node;
2332 }
2333
2334 if (!preserve_reference)
2335 /* [expr.ref]
2336
2337 If E2 is declared to have type "reference to T", then ... the
2338 type of E1.E2 is T. */
2339 result = convert_from_reference (result);
2340
2341 return result;
2342 }
2343
2344 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2345 SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type. */
2346
2347 static tree
2348 lookup_destructor (tree object, tree scope, tree dtor_name)
2349 {
2350 tree object_type = TREE_TYPE (object);
2351 tree dtor_type = TREE_OPERAND (dtor_name, 0);
2352 tree expr;
2353
2354 if (scope && !check_dtor_name (scope, dtor_type))
2355 {
2356 error ("qualified type %qT does not match destructor name ~%qT",
2357 scope, dtor_type);
2358 return error_mark_node;
2359 }
2360 if (TREE_CODE (dtor_type) == IDENTIFIER_NODE)
2361 {
2362 /* In a template, names we can't find a match for are still accepted
2363 destructor names, and we check them here. */
2364 if (check_dtor_name (object_type, dtor_type))
2365 dtor_type = object_type;
2366 else
2367 {
2368 error ("object type %qT does not match destructor name ~%qT",
2369 object_type, dtor_type);
2370 return error_mark_node;
2371 }
2372
2373 }
2374 else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2375 {
2376 error ("the type being destroyed is %qT, but the destructor refers to %qT",
2377 TYPE_MAIN_VARIANT (object_type), dtor_type);
2378 return error_mark_node;
2379 }
2380 expr = lookup_member (dtor_type, complete_dtor_identifier,
2381 /*protect=*/1, /*want_type=*/false);
2382 expr = (adjust_result_of_qualified_name_lookup
2383 (expr, dtor_type, object_type));
2384 return expr;
2385 }
2386
2387 /* An expression of the form "A::template B" has been resolved to
2388 DECL. Issue a diagnostic if B is not a template or template
2389 specialization. */
2390
2391 void
2392 check_template_keyword (tree decl)
2393 {
2394 /* The standard says:
2395
2396 [temp.names]
2397
2398 If a name prefixed by the keyword template is not a member
2399 template, the program is ill-formed.
2400
2401 DR 228 removed the restriction that the template be a member
2402 template.
2403
2404 DR 96, if accepted would add the further restriction that explicit
2405 template arguments must be provided if the template keyword is
2406 used, but, as of 2005-10-16, that DR is still in "drafting". If
2407 this DR is accepted, then the semantic checks here can be
2408 simplified, as the entity named must in fact be a template
2409 specialization, rather than, as at present, a set of overloaded
2410 functions containing at least one template function. */
2411 if (TREE_CODE (decl) != TEMPLATE_DECL
2412 && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2413 {
2414 if (!is_overloaded_fn (decl))
2415 permerror (input_location, "%qD is not a template", decl);
2416 else
2417 {
2418 tree fns;
2419 fns = decl;
2420 if (BASELINK_P (fns))
2421 fns = BASELINK_FUNCTIONS (fns);
2422 while (fns)
2423 {
2424 tree fn = OVL_CURRENT (fns);
2425 if (TREE_CODE (fn) == TEMPLATE_DECL
2426 || TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2427 break;
2428 if (TREE_CODE (fn) == FUNCTION_DECL
2429 && DECL_USE_TEMPLATE (fn)
2430 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
2431 break;
2432 fns = OVL_NEXT (fns);
2433 }
2434 if (!fns)
2435 permerror (input_location, "%qD is not a template", decl);
2436 }
2437 }
2438 }
2439
2440 /* This function is called by the parser to process a class member
2441 access expression of the form OBJECT.NAME. NAME is a node used by
2442 the parser to represent a name; it is not yet a DECL. It may,
2443 however, be a BASELINK where the BASELINK_FUNCTIONS is a
2444 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
2445 there is no reason to do the lookup twice, so the parser keeps the
2446 BASELINK. TEMPLATE_P is true iff NAME was explicitly declared to
2447 be a template via the use of the "A::template B" syntax. */
2448
2449 tree
2450 finish_class_member_access_expr (tree object, tree name, bool template_p,
2451 tsubst_flags_t complain)
2452 {
2453 tree expr;
2454 tree object_type;
2455 tree member;
2456 tree access_path = NULL_TREE;
2457 tree orig_object = object;
2458 tree orig_name = name;
2459
2460 if (object == error_mark_node || name == error_mark_node)
2461 return error_mark_node;
2462
2463 /* If OBJECT is an ObjC class instance, we must obey ObjC access rules. */
2464 if (!objc_is_public (object, name))
2465 return error_mark_node;
2466
2467 object_type = TREE_TYPE (object);
2468
2469 if (processing_template_decl)
2470 {
2471 if (/* If OBJECT_TYPE is dependent, so is OBJECT.NAME. */
2472 dependent_type_p (object_type)
2473 /* If NAME is just an IDENTIFIER_NODE, then the expression
2474 is dependent. */
2475 || TREE_CODE (object) == IDENTIFIER_NODE
2476 /* If NAME is "f<args>", where either 'f' or 'args' is
2477 dependent, then the expression is dependent. */
2478 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2479 && dependent_template_id_p (TREE_OPERAND (name, 0),
2480 TREE_OPERAND (name, 1)))
2481 /* If NAME is "T::X" where "T" is dependent, then the
2482 expression is dependent. */
2483 || (TREE_CODE (name) == SCOPE_REF
2484 && TYPE_P (TREE_OPERAND (name, 0))
2485 && dependent_type_p (TREE_OPERAND (name, 0))))
2486 return build_min_nt (COMPONENT_REF, object, name, NULL_TREE);
2487 object = build_non_dependent_expr (object);
2488 }
2489 else if (c_dialect_objc ()
2490 && TREE_CODE (name) == IDENTIFIER_NODE
2491 && (expr = objc_maybe_build_component_ref (object, name)))
2492 return expr;
2493
2494 /* [expr.ref]
2495
2496 The type of the first expression shall be "class object" (of a
2497 complete type). */
2498 if (!currently_open_class (object_type)
2499 && !complete_type_or_maybe_complain (object_type, object, complain))
2500 return error_mark_node;
2501 if (!CLASS_TYPE_P (object_type))
2502 {
2503 if (complain & tf_error)
2504 error ("request for member %qD in %qE, which is of non-class type %qT",
2505 name, object, object_type);
2506 return error_mark_node;
2507 }
2508
2509 if (BASELINK_P (name))
2510 /* A member function that has already been looked up. */
2511 member = name;
2512 else
2513 {
2514 bool is_template_id = false;
2515 tree template_args = NULL_TREE;
2516 tree scope;
2517
2518 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2519 {
2520 is_template_id = true;
2521 template_args = TREE_OPERAND (name, 1);
2522 name = TREE_OPERAND (name, 0);
2523
2524 if (TREE_CODE (name) == OVERLOAD)
2525 name = DECL_NAME (get_first_fn (name));
2526 else if (DECL_P (name))
2527 name = DECL_NAME (name);
2528 }
2529
2530 if (TREE_CODE (name) == SCOPE_REF)
2531 {
2532 /* A qualified name. The qualifying class or namespace `S'
2533 has already been looked up; it is either a TYPE or a
2534 NAMESPACE_DECL. */
2535 scope = TREE_OPERAND (name, 0);
2536 name = TREE_OPERAND (name, 1);
2537
2538 /* If SCOPE is a namespace, then the qualified name does not
2539 name a member of OBJECT_TYPE. */
2540 if (TREE_CODE (scope) == NAMESPACE_DECL)
2541 {
2542 if (complain & tf_error)
2543 error ("%<%D::%D%> is not a member of %qT",
2544 scope, name, object_type);
2545 return error_mark_node;
2546 }
2547
2548 gcc_assert (CLASS_TYPE_P (scope));
2549 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE
2550 || TREE_CODE (name) == BIT_NOT_EXPR);
2551
2552 if (constructor_name_p (name, scope))
2553 {
2554 if (complain & tf_error)
2555 error ("cannot call constructor %<%T::%D%> directly",
2556 scope, name);
2557 return error_mark_node;
2558 }
2559
2560 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
2561 access_path = lookup_base (object_type, scope, ba_check, NULL);
2562 if (access_path == error_mark_node)
2563 return error_mark_node;
2564 if (!access_path)
2565 {
2566 if (complain & tf_error)
2567 error ("%qT is not a base of %qT", scope, object_type);
2568 return error_mark_node;
2569 }
2570 }
2571 else
2572 {
2573 scope = NULL_TREE;
2574 access_path = object_type;
2575 }
2576
2577 if (TREE_CODE (name) == BIT_NOT_EXPR)
2578 member = lookup_destructor (object, scope, name);
2579 else
2580 {
2581 /* Look up the member. */
2582 member = lookup_member (access_path, name, /*protect=*/1,
2583 /*want_type=*/false);
2584 if (member == NULL_TREE)
2585 {
2586 if (complain & tf_error)
2587 error ("%qD has no member named %qE", object_type, name);
2588 return error_mark_node;
2589 }
2590 if (member == error_mark_node)
2591 return error_mark_node;
2592 }
2593
2594 if (is_template_id)
2595 {
2596 tree templ = member;
2597
2598 if (BASELINK_P (templ))
2599 templ = lookup_template_function (templ, template_args);
2600 else
2601 {
2602 if (complain & tf_error)
2603 error ("%qD is not a member template function", name);
2604 return error_mark_node;
2605 }
2606 }
2607 }
2608
2609 if (TREE_DEPRECATED (member))
2610 warn_deprecated_use (member, NULL_TREE);
2611
2612 if (template_p)
2613 check_template_keyword (member);
2614
2615 expr = build_class_member_access_expr (object, member, access_path,
2616 /*preserve_reference=*/false,
2617 complain);
2618 if (processing_template_decl && expr != error_mark_node)
2619 {
2620 if (BASELINK_P (member))
2621 {
2622 if (TREE_CODE (orig_name) == SCOPE_REF)
2623 BASELINK_QUALIFIED_P (member) = 1;
2624 orig_name = member;
2625 }
2626 return build_min_non_dep (COMPONENT_REF, expr,
2627 orig_object, orig_name,
2628 NULL_TREE);
2629 }
2630
2631 return expr;
2632 }
2633
2634 /* Return an expression for the MEMBER_NAME field in the internal
2635 representation of PTRMEM, a pointer-to-member function. (Each
2636 pointer-to-member function type gets its own RECORD_TYPE so it is
2637 more convenient to access the fields by name than by FIELD_DECL.)
2638 This routine converts the NAME to a FIELD_DECL and then creates the
2639 node for the complete expression. */
2640
2641 tree
2642 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
2643 {
2644 tree ptrmem_type;
2645 tree member;
2646 tree member_type;
2647
2648 /* This code is a stripped down version of
2649 build_class_member_access_expr. It does not work to use that
2650 routine directly because it expects the object to be of class
2651 type. */
2652 ptrmem_type = TREE_TYPE (ptrmem);
2653 gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
2654 member = lookup_member (ptrmem_type, member_name, /*protect=*/0,
2655 /*want_type=*/false);
2656 member_type = cp_build_qualified_type (TREE_TYPE (member),
2657 cp_type_quals (ptrmem_type));
2658 return fold_build3_loc (input_location,
2659 COMPONENT_REF, member_type,
2660 ptrmem, member, NULL_TREE);
2661 }
2662
2663 /* Given an expression PTR for a pointer, return an expression
2664 for the value pointed to.
2665 ERRORSTRING is the name of the operator to appear in error messages.
2666
2667 This function may need to overload OPERATOR_FNNAME.
2668 Must also handle REFERENCE_TYPEs for C++. */
2669
2670 tree
2671 build_x_indirect_ref (tree expr, ref_operator errorstring,
2672 tsubst_flags_t complain)
2673 {
2674 tree orig_expr = expr;
2675 tree rval;
2676
2677 if (processing_template_decl)
2678 {
2679 /* Retain the type if we know the operand is a pointer so that
2680 describable_type doesn't make auto deduction break. */
2681 if (TREE_TYPE (expr) && POINTER_TYPE_P (TREE_TYPE (expr)))
2682 return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
2683 if (type_dependent_expression_p (expr))
2684 return build_min_nt (INDIRECT_REF, expr);
2685 expr = build_non_dependent_expr (expr);
2686 }
2687
2688 rval = build_new_op (INDIRECT_REF, LOOKUP_NORMAL, expr, NULL_TREE,
2689 NULL_TREE, /*overloaded_p=*/NULL, complain);
2690 if (!rval)
2691 rval = cp_build_indirect_ref (expr, errorstring, complain);
2692
2693 if (processing_template_decl && rval != error_mark_node)
2694 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
2695 else
2696 return rval;
2697 }
2698
2699 /* Helper function called from c-common. */
2700 tree
2701 build_indirect_ref (location_t loc __attribute__ ((__unused__)),
2702 tree ptr, ref_operator errorstring)
2703 {
2704 return cp_build_indirect_ref (ptr, errorstring, tf_warning_or_error);
2705 }
2706
2707 tree
2708 cp_build_indirect_ref (tree ptr, ref_operator errorstring,
2709 tsubst_flags_t complain)
2710 {
2711 tree pointer, type;
2712
2713 if (ptr == error_mark_node)
2714 return error_mark_node;
2715
2716 if (ptr == current_class_ptr)
2717 return current_class_ref;
2718
2719 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2720 ? ptr : decay_conversion (ptr));
2721 type = TREE_TYPE (pointer);
2722
2723 if (POINTER_TYPE_P (type))
2724 {
2725 /* [expr.unary.op]
2726
2727 If the type of the expression is "pointer to T," the type
2728 of the result is "T." */
2729 tree t = TREE_TYPE (type);
2730
2731 if (CONVERT_EXPR_P (ptr)
2732 || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
2733 {
2734 /* If a warning is issued, mark it to avoid duplicates from
2735 the backend. This only needs to be done at
2736 warn_strict_aliasing > 2. */
2737 if (warn_strict_aliasing > 2)
2738 if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (ptr, 0)),
2739 type, TREE_OPERAND (ptr, 0)))
2740 TREE_NO_WARNING (ptr) = 1;
2741 }
2742
2743 if (VOID_TYPE_P (t))
2744 {
2745 /* A pointer to incomplete type (other than cv void) can be
2746 dereferenced [expr.unary.op]/1 */
2747 if (complain & tf_error)
2748 error ("%qT is not a pointer-to-object type", type);
2749 return error_mark_node;
2750 }
2751 else if (TREE_CODE (pointer) == ADDR_EXPR
2752 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
2753 /* The POINTER was something like `&x'. We simplify `*&x' to
2754 `x'. */
2755 return TREE_OPERAND (pointer, 0);
2756 else
2757 {
2758 tree ref = build1 (INDIRECT_REF, t, pointer);
2759
2760 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2761 so that we get the proper error message if the result is used
2762 to assign to. Also, &* is supposed to be a no-op. */
2763 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
2764 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
2765 TREE_SIDE_EFFECTS (ref)
2766 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
2767 return ref;
2768 }
2769 }
2770 else if (!(complain & tf_error))
2771 /* Don't emit any errors; we'll just return ERROR_MARK_NODE later. */
2772 ;
2773 /* `pointer' won't be an error_mark_node if we were given a
2774 pointer to member, so it's cool to check for this here. */
2775 else if (TYPE_PTR_TO_MEMBER_P (type))
2776 switch (errorstring)
2777 {
2778 case RO_ARRAY_INDEXING:
2779 error ("invalid use of array indexing on pointer to member");
2780 break;
2781 case RO_UNARY_STAR:
2782 error ("invalid use of unary %<*%> on pointer to member");
2783 break;
2784 case RO_IMPLICIT_CONVERSION:
2785 error ("invalid use of implicit conversion on pointer to member");
2786 break;
2787 default:
2788 gcc_unreachable ();
2789 }
2790 else if (pointer != error_mark_node)
2791 invalid_indirection_error (input_location, type, errorstring);
2792
2793 return error_mark_node;
2794 }
2795
2796 /* This handles expressions of the form "a[i]", which denotes
2797 an array reference.
2798
2799 This is logically equivalent in C to *(a+i), but we may do it differently.
2800 If A is a variable or a member, we generate a primitive ARRAY_REF.
2801 This avoids forcing the array out of registers, and can work on
2802 arrays that are not lvalues (for example, members of structures returned
2803 by functions).
2804
2805 If INDEX is of some user-defined type, it must be converted to
2806 integer type. Otherwise, to make a compatible PLUS_EXPR, it
2807 will inherit the type of the array, which will be some pointer type.
2808
2809 LOC is the location to use in building the array reference. */
2810
2811 tree
2812 cp_build_array_ref (location_t loc, tree array, tree idx,
2813 tsubst_flags_t complain)
2814 {
2815 tree ret;
2816
2817 if (idx == 0)
2818 {
2819 if (complain & tf_error)
2820 error_at (loc, "subscript missing in array reference");
2821 return error_mark_node;
2822 }
2823
2824 if (TREE_TYPE (array) == error_mark_node
2825 || TREE_TYPE (idx) == error_mark_node)
2826 return error_mark_node;
2827
2828 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
2829 inside it. */
2830 switch (TREE_CODE (array))
2831 {
2832 case COMPOUND_EXPR:
2833 {
2834 tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2835 complain);
2836 ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
2837 TREE_OPERAND (array, 0), value);
2838 SET_EXPR_LOCATION (ret, loc);
2839 return ret;
2840 }
2841
2842 case COND_EXPR:
2843 ret = build_conditional_expr
2844 (TREE_OPERAND (array, 0),
2845 cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2846 complain),
2847 cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
2848 complain),
2849 tf_warning_or_error);
2850 protected_set_expr_location (ret, loc);
2851 return ret;
2852
2853 default:
2854 break;
2855 }
2856
2857 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
2858 {
2859 tree rval, type;
2860
2861 warn_array_subscript_with_type_char (idx);
2862
2863 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
2864 {
2865 if (complain & tf_error)
2866 error_at (loc, "array subscript is not an integer");
2867 return error_mark_node;
2868 }
2869
2870 /* Apply integral promotions *after* noticing character types.
2871 (It is unclear why we do these promotions -- the standard
2872 does not say that we should. In fact, the natural thing would
2873 seem to be to convert IDX to ptrdiff_t; we're performing
2874 pointer arithmetic.) */
2875 idx = perform_integral_promotions (idx);
2876
2877 /* An array that is indexed by a non-constant
2878 cannot be stored in a register; we must be able to do
2879 address arithmetic on its address.
2880 Likewise an array of elements of variable size. */
2881 if (TREE_CODE (idx) != INTEGER_CST
2882 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
2883 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
2884 != INTEGER_CST)))
2885 {
2886 if (!cxx_mark_addressable (array))
2887 return error_mark_node;
2888 }
2889
2890 /* An array that is indexed by a constant value which is not within
2891 the array bounds cannot be stored in a register either; because we
2892 would get a crash in store_bit_field/extract_bit_field when trying
2893 to access a non-existent part of the register. */
2894 if (TREE_CODE (idx) == INTEGER_CST
2895 && TYPE_DOMAIN (TREE_TYPE (array))
2896 && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
2897 {
2898 if (!cxx_mark_addressable (array))
2899 return error_mark_node;
2900 }
2901
2902 if (!lvalue_p (array) && (complain & tf_error))
2903 pedwarn (loc, OPT_pedantic,
2904 "ISO C++ forbids subscripting non-lvalue array");
2905
2906 /* Note in C++ it is valid to subscript a `register' array, since
2907 it is valid to take the address of something with that
2908 storage specification. */
2909 if (extra_warnings)
2910 {
2911 tree foo = array;
2912 while (TREE_CODE (foo) == COMPONENT_REF)
2913 foo = TREE_OPERAND (foo, 0);
2914 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo)
2915 && (complain & tf_warning))
2916 warning_at (loc, OPT_Wextra,
2917 "subscripting array declared %<register%>");
2918 }
2919
2920 type = TREE_TYPE (TREE_TYPE (array));
2921 rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
2922 /* Array ref is const/volatile if the array elements are
2923 or if the array is.. */
2924 TREE_READONLY (rval)
2925 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
2926 TREE_SIDE_EFFECTS (rval)
2927 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
2928 TREE_THIS_VOLATILE (rval)
2929 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
2930 ret = require_complete_type_sfinae (fold_if_not_in_template (rval),
2931 complain);
2932 protected_set_expr_location (ret, loc);
2933 return ret;
2934 }
2935
2936 {
2937 tree ar = default_conversion (array);
2938 tree ind = default_conversion (idx);
2939
2940 /* Put the integer in IND to simplify error checking. */
2941 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
2942 {
2943 tree temp = ar;
2944 ar = ind;
2945 ind = temp;
2946 }
2947
2948 if (ar == error_mark_node)
2949 return ar;
2950
2951 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE)
2952 {
2953 if (complain & tf_error)
2954 error_at (loc, "subscripted value is neither array nor pointer");
2955 return error_mark_node;
2956 }
2957 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
2958 {
2959 if (complain & tf_error)
2960 error_at (loc, "array subscript is not an integer");
2961 return error_mark_node;
2962 }
2963
2964 warn_array_subscript_with_type_char (idx);
2965
2966 ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
2967 PLUS_EXPR, ar, ind,
2968 complain),
2969 RO_ARRAY_INDEXING,
2970 complain);
2971 protected_set_expr_location (ret, loc);
2972 return ret;
2973 }
2974 }
2975
2976 /* Entry point for Obj-C++. */
2977
2978 tree
2979 build_array_ref (location_t loc, tree array, tree idx)
2980 {
2981 return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
2982 }
2983 \f
2984 /* Resolve a pointer to member function. INSTANCE is the object
2985 instance to use, if the member points to a virtual member.
2986
2987 This used to avoid checking for virtual functions if basetype
2988 has no virtual functions, according to an earlier ANSI draft.
2989 With the final ISO C++ rules, such an optimization is
2990 incorrect: A pointer to a derived member can be static_cast
2991 to pointer-to-base-member, as long as the dynamic object
2992 later has the right member. */
2993
2994 tree
2995 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function)
2996 {
2997 if (TREE_CODE (function) == OFFSET_REF)
2998 function = TREE_OPERAND (function, 1);
2999
3000 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3001 {
3002 tree idx, delta, e1, e2, e3, vtbl, basetype;
3003 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3004
3005 tree instance_ptr = *instance_ptrptr;
3006 tree instance_save_expr = 0;
3007 if (instance_ptr == error_mark_node)
3008 {
3009 if (TREE_CODE (function) == PTRMEM_CST)
3010 {
3011 /* Extracting the function address from a pmf is only
3012 allowed with -Wno-pmf-conversions. It only works for
3013 pmf constants. */
3014 e1 = build_addr_func (PTRMEM_CST_MEMBER (function));
3015 e1 = convert (fntype, e1);
3016 return e1;
3017 }
3018 else
3019 {
3020 error ("object missing in use of %qE", function);
3021 return error_mark_node;
3022 }
3023 }
3024
3025 if (TREE_SIDE_EFFECTS (instance_ptr))
3026 instance_ptr = instance_save_expr = save_expr (instance_ptr);
3027
3028 if (TREE_SIDE_EFFECTS (function))
3029 function = save_expr (function);
3030
3031 /* Start by extracting all the information from the PMF itself. */
3032 e3 = pfn_from_ptrmemfunc (function);
3033 delta = delta_from_ptrmemfunc (function);
3034 idx = build1 (NOP_EXPR, vtable_index_type, e3);
3035 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3036 {
3037 case ptrmemfunc_vbit_in_pfn:
3038 e1 = cp_build_binary_op (input_location,
3039 BIT_AND_EXPR, idx, integer_one_node,
3040 tf_warning_or_error);
3041 idx = cp_build_binary_op (input_location,
3042 MINUS_EXPR, idx, integer_one_node,
3043 tf_warning_or_error);
3044 break;
3045
3046 case ptrmemfunc_vbit_in_delta:
3047 e1 = cp_build_binary_op (input_location,
3048 BIT_AND_EXPR, delta, integer_one_node,
3049 tf_warning_or_error);
3050 delta = cp_build_binary_op (input_location,
3051 RSHIFT_EXPR, delta, integer_one_node,
3052 tf_warning_or_error);
3053 break;
3054
3055 default:
3056 gcc_unreachable ();
3057 }
3058
3059 /* Convert down to the right base before using the instance. A
3060 special case is that in a pointer to member of class C, C may
3061 be incomplete. In that case, the function will of course be
3062 a member of C, and no conversion is required. In fact,
3063 lookup_base will fail in that case, because incomplete
3064 classes do not have BINFOs. */
3065 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3066 if (!same_type_ignoring_top_level_qualifiers_p
3067 (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3068 {
3069 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3070 basetype, ba_check, NULL);
3071 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3072 1);
3073 if (instance_ptr == error_mark_node)
3074 return error_mark_node;
3075 }
3076 /* ...and then the delta in the PMF. */
3077 instance_ptr = build2 (POINTER_PLUS_EXPR, TREE_TYPE (instance_ptr),
3078 instance_ptr, fold_convert (sizetype, delta));
3079
3080 /* Hand back the adjusted 'this' argument to our caller. */
3081 *instance_ptrptr = instance_ptr;
3082
3083 /* Next extract the vtable pointer from the object. */
3084 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3085 instance_ptr);
3086 vtbl = cp_build_indirect_ref (vtbl, RO_NULL, tf_warning_or_error);
3087 /* If the object is not dynamic the access invokes undefined
3088 behavior. As it is not executed in this case silence the
3089 spurious warnings it may provoke. */
3090 TREE_NO_WARNING (vtbl) = 1;
3091
3092 /* Finally, extract the function pointer from the vtable. */
3093 e2 = fold_build2_loc (input_location,
3094 POINTER_PLUS_EXPR, TREE_TYPE (vtbl), vtbl,
3095 fold_convert (sizetype, idx));
3096 e2 = cp_build_indirect_ref (e2, RO_NULL, tf_warning_or_error);
3097 TREE_CONSTANT (e2) = 1;
3098
3099 /* When using function descriptors, the address of the
3100 vtable entry is treated as a function pointer. */
3101 if (TARGET_VTABLE_USES_DESCRIPTORS)
3102 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3103 cp_build_addr_expr (e2, tf_warning_or_error));
3104
3105 e2 = fold_convert (TREE_TYPE (e3), e2);
3106 e1 = build_conditional_expr (e1, e2, e3, tf_warning_or_error);
3107
3108 /* Make sure this doesn't get evaluated first inside one of the
3109 branches of the COND_EXPR. */
3110 if (instance_save_expr)
3111 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3112 instance_save_expr, e1);
3113
3114 function = e1;
3115 }
3116 return function;
3117 }
3118
3119 /* Used by the C-common bits. */
3120 tree
3121 build_function_call (location_t loc ATTRIBUTE_UNUSED,
3122 tree function, tree params)
3123 {
3124 return cp_build_function_call (function, params, tf_warning_or_error);
3125 }
3126
3127 /* Used by the C-common bits. */
3128 tree
3129 build_function_call_vec (location_t loc ATTRIBUTE_UNUSED,
3130 tree function, VEC(tree,gc) *params,
3131 VEC(tree,gc) *origtypes ATTRIBUTE_UNUSED)
3132 {
3133 VEC(tree,gc) *orig_params = params;
3134 tree ret = cp_build_function_call_vec (function, &params,
3135 tf_warning_or_error);
3136
3137 /* cp_build_function_call_vec can reallocate PARAMS by adding
3138 default arguments. That should never happen here. Verify
3139 that. */
3140 gcc_assert (params == orig_params);
3141
3142 return ret;
3143 }
3144
3145 /* Build a function call using a tree list of arguments. */
3146
3147 tree
3148 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3149 {
3150 VEC(tree,gc) *vec;
3151 tree ret;
3152
3153 vec = make_tree_vector ();
3154 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3155 VEC_safe_push (tree, gc, vec, TREE_VALUE (params));
3156 ret = cp_build_function_call_vec (function, &vec, complain);
3157 release_tree_vector (vec);
3158 return ret;
3159 }
3160
3161 /* Build a function call using varargs. */
3162
3163 tree
3164 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3165 {
3166 VEC(tree,gc) *vec;
3167 va_list args;
3168 tree ret, t;
3169
3170 vec = make_tree_vector ();
3171 va_start (args, complain);
3172 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3173 VEC_safe_push (tree, gc, vec, t);
3174 va_end (args);
3175 ret = cp_build_function_call_vec (function, &vec, complain);
3176 release_tree_vector (vec);
3177 return ret;
3178 }
3179
3180 /* Build a function call using a vector of arguments. PARAMS may be
3181 NULL if there are no parameters. This changes the contents of
3182 PARAMS. */
3183
3184 tree
3185 cp_build_function_call_vec (tree function, VEC(tree,gc) **params,
3186 tsubst_flags_t complain)
3187 {
3188 tree fntype, fndecl;
3189 int is_method;
3190 tree original = function;
3191 int nargs;
3192 tree *argarray;
3193 tree parm_types;
3194 VEC(tree,gc) *allocated = NULL;
3195 tree ret;
3196
3197 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3198 expressions, like those used for ObjC messenger dispatches. */
3199 if (params != NULL && !VEC_empty (tree, *params))
3200 function = objc_rewrite_function_call (function,
3201 VEC_index (tree, *params, 0));
3202
3203 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3204 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3205 if (TREE_CODE (function) == NOP_EXPR
3206 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3207 function = TREE_OPERAND (function, 0);
3208
3209 if (TREE_CODE (function) == FUNCTION_DECL)
3210 {
3211 mark_used (function);
3212 fndecl = function;
3213
3214 /* Convert anything with function type to a pointer-to-function. */
3215 if (DECL_MAIN_P (function) && (complain & tf_error))
3216 pedwarn (input_location, OPT_pedantic,
3217 "ISO C++ forbids calling %<::main%> from within program");
3218
3219 function = build_addr_func (function);
3220 }
3221 else
3222 {
3223 fndecl = NULL_TREE;
3224
3225 function = build_addr_func (function);
3226 }
3227
3228 if (function == error_mark_node)
3229 return error_mark_node;
3230
3231 fntype = TREE_TYPE (function);
3232
3233 if (TYPE_PTRMEMFUNC_P (fntype))
3234 {
3235 if (complain & tf_error)
3236 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3237 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3238 original, original);
3239 return error_mark_node;
3240 }
3241
3242 is_method = (TREE_CODE (fntype) == POINTER_TYPE
3243 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3244
3245 if (!((TREE_CODE (fntype) == POINTER_TYPE
3246 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
3247 || is_method
3248 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3249 {
3250 if (complain & tf_error)
3251 error ("%qE cannot be used as a function", original);
3252 return error_mark_node;
3253 }
3254
3255 /* fntype now gets the type of function pointed to. */
3256 fntype = TREE_TYPE (fntype);
3257 parm_types = TYPE_ARG_TYPES (fntype);
3258
3259 if (params == NULL)
3260 {
3261 allocated = make_tree_vector ();
3262 params = &allocated;
3263 }
3264
3265 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3266 complain);
3267 if (nargs < 0)
3268 return error_mark_node;
3269
3270 argarray = VEC_address (tree, *params);
3271
3272 /* Check for errors in format strings and inappropriately
3273 null parameters. */
3274 check_function_arguments (fntype, nargs, argarray);
3275
3276 ret = build_cxx_call (function, nargs, argarray);
3277
3278 if (allocated != NULL)
3279 release_tree_vector (allocated);
3280
3281 return ret;
3282 }
3283 \f
3284 /* Subroutine of convert_arguments.
3285 Warn about wrong number of args are genereted. */
3286
3287 static void
3288 warn_args_num (location_t loc, tree fndecl, bool too_many_p)
3289 {
3290 if (fndecl)
3291 {
3292 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3293 {
3294 if (DECL_NAME (fndecl) == NULL_TREE
3295 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3296 error_at (loc,
3297 too_many_p
3298 ? G_("too many arguments to constructor %q#D")
3299 : G_("too few arguments to constructor %q#D"),
3300 fndecl);
3301 else
3302 error_at (loc,
3303 too_many_p
3304 ? G_("too many arguments to member function %q#D")
3305 : G_("too few arguments to member function %q#D"),
3306 fndecl);
3307 }
3308 else
3309 error_at (loc,
3310 too_many_p
3311 ? G_("too many arguments to function %q#D")
3312 : G_("too few arguments to function %q#D"),
3313 fndecl);
3314 inform (DECL_SOURCE_LOCATION (fndecl),
3315 "declared here");
3316 }
3317 else
3318 {
3319 if (c_dialect_objc () && objc_message_selector ())
3320 error_at (loc,
3321 too_many_p
3322 ? G_("too many arguments to method %q#D")
3323 : G_("too few arguments to method %q#D"),
3324 objc_message_selector ());
3325 else
3326 error_at (loc, too_many_p ? G_("too many arguments to function")
3327 : G_("too few arguments to function"));
3328 }
3329 }
3330
3331 /* Convert the actual parameter expressions in the list VALUES to the
3332 types in the list TYPELIST. The converted expressions are stored
3333 back in the VALUES vector.
3334 If parmdecls is exhausted, or when an element has NULL as its type,
3335 perform the default conversions.
3336
3337 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3338
3339 This is also where warnings about wrong number of args are generated.
3340
3341 Returns the actual number of arguments processed (which might be less
3342 than the length of the vector), or -1 on error.
3343
3344 In C++, unspecified trailing parameters can be filled in with their
3345 default arguments, if such were specified. Do so here. */
3346
3347 static int
3348 convert_arguments (tree typelist, VEC(tree,gc) **values, tree fndecl,
3349 int flags, tsubst_flags_t complain)
3350 {
3351 tree typetail;
3352 unsigned int i;
3353
3354 /* Argument passing is always copy-initialization. */
3355 flags |= LOOKUP_ONLYCONVERTING;
3356
3357 for (i = 0, typetail = typelist;
3358 i < VEC_length (tree, *values);
3359 i++)
3360 {
3361 tree type = typetail ? TREE_VALUE (typetail) : 0;
3362 tree val = VEC_index (tree, *values, i);
3363
3364 if (val == error_mark_node || type == error_mark_node)
3365 return -1;
3366
3367 if (type == void_type_node)
3368 {
3369 if (complain & tf_error)
3370 {
3371 warn_args_num (input_location, fndecl, /*too_many_p=*/true);
3372 return i;
3373 }
3374 else
3375 return -1;
3376 }
3377
3378 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3379 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3380 if (TREE_CODE (val) == NOP_EXPR
3381 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3382 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3383 val = TREE_OPERAND (val, 0);
3384
3385 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3386 {
3387 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3388 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3389 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3390 val = decay_conversion (val);
3391 }
3392
3393 if (val == error_mark_node)
3394 return -1;
3395
3396 if (type != 0)
3397 {
3398 /* Formal parm type is specified by a function prototype. */
3399 tree parmval;
3400
3401 if (!COMPLETE_TYPE_P (complete_type (type)))
3402 {
3403 if (complain & tf_error)
3404 {
3405 if (fndecl)
3406 error ("parameter %P of %qD has incomplete type %qT",
3407 i, fndecl, type);
3408 else
3409 error ("parameter %P has incomplete type %qT", i, type);
3410 }
3411 parmval = error_mark_node;
3412 }
3413 else
3414 {
3415 parmval = convert_for_initialization
3416 (NULL_TREE, type, val, flags,
3417 ICR_ARGPASS, fndecl, i, complain);
3418 parmval = convert_for_arg_passing (type, parmval);
3419 }
3420
3421 if (parmval == error_mark_node)
3422 return -1;
3423
3424 VEC_replace (tree, *values, i, parmval);
3425 }
3426 else
3427 {
3428 if (fndecl && DECL_BUILT_IN (fndecl)
3429 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CONSTANT_P)
3430 /* Don't do ellipsis conversion for __built_in_constant_p
3431 as this will result in spurious errors for non-trivial
3432 types. */
3433 val = require_complete_type_sfinae (val, complain);
3434 else
3435 val = convert_arg_to_ellipsis (val);
3436
3437 VEC_replace (tree, *values, i, val);
3438 }
3439
3440 if (typetail)
3441 typetail = TREE_CHAIN (typetail);
3442 }
3443
3444 if (typetail != 0 && typetail != void_list_node)
3445 {
3446 /* See if there are default arguments that can be used. Because
3447 we hold default arguments in the FUNCTION_TYPE (which is so
3448 wrong), we can see default parameters here from deduced
3449 contexts (and via typeof) for indirect function calls.
3450 Fortunately we know whether we have a function decl to
3451 provide default arguments in a language conformant
3452 manner. */
3453 if (fndecl && TREE_PURPOSE (typetail)
3454 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3455 {
3456 for (; typetail != void_list_node; ++i)
3457 {
3458 tree parmval
3459 = convert_default_arg (TREE_VALUE (typetail),
3460 TREE_PURPOSE (typetail),
3461 fndecl, i);
3462
3463 if (parmval == error_mark_node)
3464 return -1;
3465
3466 VEC_safe_push (tree, gc, *values, parmval);
3467 typetail = TREE_CHAIN (typetail);
3468 /* ends with `...'. */
3469 if (typetail == NULL_TREE)
3470 break;
3471 }
3472 }
3473 else
3474 {
3475 if (complain & tf_error)
3476 warn_args_num (input_location, fndecl, /*too_many_p=*/false);
3477 return -1;
3478 }
3479 }
3480
3481 return (int) i;
3482 }
3483 \f
3484 /* Build a binary-operation expression, after performing default
3485 conversions on the operands. CODE is the kind of expression to
3486 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
3487 are the tree codes which correspond to ARG1 and ARG2 when issuing
3488 warnings about possibly misplaced parentheses. They may differ
3489 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3490 folding (e.g., if the parser sees "a | 1 + 1", it may call this
3491 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3492 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3493 ARG2_CODE as ERROR_MARK. */
3494
3495 tree
3496 build_x_binary_op (enum tree_code code, tree arg1, enum tree_code arg1_code,
3497 tree arg2, enum tree_code arg2_code, bool *overloaded_p,
3498 tsubst_flags_t complain)
3499 {
3500 tree orig_arg1;
3501 tree orig_arg2;
3502 tree expr;
3503
3504 orig_arg1 = arg1;
3505 orig_arg2 = arg2;
3506
3507 if (processing_template_decl)
3508 {
3509 if (type_dependent_expression_p (arg1)
3510 || type_dependent_expression_p (arg2))
3511 return build_min_nt (code, arg1, arg2);
3512 arg1 = build_non_dependent_expr (arg1);
3513 arg2 = build_non_dependent_expr (arg2);
3514 }
3515
3516 if (code == DOTSTAR_EXPR)
3517 expr = build_m_component_ref (arg1, arg2);
3518 else
3519 expr = build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3520 overloaded_p, complain);
3521
3522 /* Check for cases such as x+y<<z which users are likely to
3523 misinterpret. But don't warn about obj << x + y, since that is a
3524 common idiom for I/O. */
3525 if (warn_parentheses
3526 && (complain & tf_warning)
3527 && !processing_template_decl
3528 && !error_operand_p (arg1)
3529 && !error_operand_p (arg2)
3530 && (code != LSHIFT_EXPR
3531 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3532 warn_about_parentheses (code, arg1_code, orig_arg1, arg2_code, orig_arg2);
3533
3534 if (processing_template_decl && expr != error_mark_node)
3535 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3536
3537 return expr;
3538 }
3539
3540 /* Build and return an ARRAY_REF expression. */
3541
3542 tree
3543 build_x_array_ref (tree arg1, tree arg2, tsubst_flags_t complain)
3544 {
3545 tree orig_arg1 = arg1;
3546 tree orig_arg2 = arg2;
3547 tree expr;
3548
3549 if (processing_template_decl)
3550 {
3551 if (type_dependent_expression_p (arg1)
3552 || type_dependent_expression_p (arg2))
3553 return build_min_nt (ARRAY_REF, arg1, arg2,
3554 NULL_TREE, NULL_TREE);
3555 arg1 = build_non_dependent_expr (arg1);
3556 arg2 = build_non_dependent_expr (arg2);
3557 }
3558
3559 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3560 /*overloaded_p=*/NULL, complain);
3561
3562 if (processing_template_decl && expr != error_mark_node)
3563 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3564 NULL_TREE, NULL_TREE);
3565 return expr;
3566 }
3567
3568 /* For the c-common bits. */
3569 tree
3570 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3571 int convert_p ATTRIBUTE_UNUSED)
3572 {
3573 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3574 }
3575
3576
3577 /* Build a binary-operation expression without default conversions.
3578 CODE is the kind of expression to build.
3579 LOCATION is the location_t of the operator in the source code.
3580 This function differs from `build' in several ways:
3581 the data type of the result is computed and recorded in it,
3582 warnings are generated if arg data types are invalid,
3583 special handling for addition and subtraction of pointers is known,
3584 and some optimization is done (operations on narrow ints
3585 are done in the narrower type when that gives the same result).
3586 Constant folding is also done before the result is returned.
3587
3588 Note that the operands will never have enumeral types
3589 because either they have just had the default conversions performed
3590 or they have both just been converted to some other type in which
3591 the arithmetic is to be done.
3592
3593 C++: must do special pointer arithmetic when implementing
3594 multiple inheritance, and deal with pointer to member functions. */
3595
3596 tree
3597 cp_build_binary_op (location_t location,
3598 enum tree_code code, tree orig_op0, tree orig_op1,
3599 tsubst_flags_t complain)
3600 {
3601 tree op0, op1;
3602 enum tree_code code0, code1;
3603 tree type0, type1;
3604 const char *invalid_op_diag;
3605
3606 /* Expression code to give to the expression when it is built.
3607 Normally this is CODE, which is what the caller asked for,
3608 but in some special cases we change it. */
3609 enum tree_code resultcode = code;
3610
3611 /* Data type in which the computation is to be performed.
3612 In the simplest cases this is the common type of the arguments. */
3613 tree result_type = NULL;
3614
3615 /* Nonzero means operands have already been type-converted
3616 in whatever way is necessary.
3617 Zero means they need to be converted to RESULT_TYPE. */
3618 int converted = 0;
3619
3620 /* Nonzero means create the expression with this type, rather than
3621 RESULT_TYPE. */
3622 tree build_type = 0;
3623
3624 /* Nonzero means after finally constructing the expression
3625 convert it to this type. */
3626 tree final_type = 0;
3627
3628 tree result;
3629
3630 /* Nonzero if this is an operation like MIN or MAX which can
3631 safely be computed in short if both args are promoted shorts.
3632 Also implies COMMON.
3633 -1 indicates a bitwise operation; this makes a difference
3634 in the exact conditions for when it is safe to do the operation
3635 in a narrower mode. */
3636 int shorten = 0;
3637
3638 /* Nonzero if this is a comparison operation;
3639 if both args are promoted shorts, compare the original shorts.
3640 Also implies COMMON. */
3641 int short_compare = 0;
3642
3643 /* Nonzero means set RESULT_TYPE to the common type of the args. */
3644 int common = 0;
3645
3646 /* True if both operands have arithmetic type. */
3647 bool arithmetic_types_p;
3648
3649 /* Apply default conversions. */
3650 op0 = orig_op0;
3651 op1 = orig_op1;
3652
3653 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3654 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3655 || code == TRUTH_XOR_EXPR)
3656 {
3657 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3658 op0 = decay_conversion (op0);
3659 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3660 op1 = decay_conversion (op1);
3661 }
3662 else
3663 {
3664 if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3665 op0 = default_conversion (op0);
3666 if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3667 op1 = default_conversion (op1);
3668 }
3669
3670 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3671 STRIP_TYPE_NOPS (op0);
3672 STRIP_TYPE_NOPS (op1);
3673
3674 /* DTRT if one side is an overloaded function, but complain about it. */
3675 if (type_unknown_p (op0))
3676 {
3677 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
3678 if (t != error_mark_node)
3679 {
3680 if (complain & tf_error)
3681 permerror (input_location, "assuming cast to type %qT from overloaded function",
3682 TREE_TYPE (t));
3683 op0 = t;
3684 }
3685 }
3686 if (type_unknown_p (op1))
3687 {
3688 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
3689 if (t != error_mark_node)
3690 {
3691 if (complain & tf_error)
3692 permerror (input_location, "assuming cast to type %qT from overloaded function",
3693 TREE_TYPE (t));
3694 op1 = t;
3695 }
3696 }
3697
3698 type0 = TREE_TYPE (op0);
3699 type1 = TREE_TYPE (op1);
3700
3701 /* The expression codes of the data types of the arguments tell us
3702 whether the arguments are integers, floating, pointers, etc. */
3703 code0 = TREE_CODE (type0);
3704 code1 = TREE_CODE (type1);
3705
3706 /* If an error was already reported for one of the arguments,
3707 avoid reporting another error. */
3708 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
3709 return error_mark_node;
3710
3711 if ((invalid_op_diag
3712 = targetm.invalid_binary_op (code, type0, type1)))
3713 {
3714 error (invalid_op_diag);
3715 return error_mark_node;
3716 }
3717
3718 /* Issue warnings about peculiar, but valid, uses of NULL. */
3719 if ((orig_op0 == null_node || orig_op1 == null_node)
3720 /* It's reasonable to use pointer values as operands of &&
3721 and ||, so NULL is no exception. */
3722 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
3723 && ( /* Both are NULL (or 0) and the operation was not a
3724 comparison or a pointer subtraction. */
3725 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
3726 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
3727 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
3728 || (!null_ptr_cst_p (orig_op0)
3729 && !TYPE_PTR_P (type0) && !TYPE_PTR_TO_MEMBER_P (type0))
3730 || (!null_ptr_cst_p (orig_op1)
3731 && !TYPE_PTR_P (type1) && !TYPE_PTR_TO_MEMBER_P (type1)))
3732 && (complain & tf_warning))
3733 /* Some sort of arithmetic operation involving NULL was
3734 performed. */
3735 warning (OPT_Wpointer_arith, "NULL used in arithmetic");
3736
3737 switch (code)
3738 {
3739 case MINUS_EXPR:
3740 /* Subtraction of two similar pointers.
3741 We must subtract them as integers, then divide by object size. */
3742 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
3743 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
3744 TREE_TYPE (type1)))
3745 return pointer_diff (op0, op1, common_pointer_type (type0, type1));
3746 /* In all other cases except pointer - int, the usual arithmetic
3747 rules apply. */
3748 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
3749 {
3750 common = 1;
3751 break;
3752 }
3753 /* The pointer - int case is just like pointer + int; fall
3754 through. */
3755 case PLUS_EXPR:
3756 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
3757 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
3758 {
3759 tree ptr_operand;
3760 tree int_operand;
3761 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
3762 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
3763 if (processing_template_decl)
3764 {
3765 result_type = TREE_TYPE (ptr_operand);
3766 break;
3767 }
3768 return cp_pointer_int_sum (code,
3769 ptr_operand,
3770 int_operand);
3771 }
3772 common = 1;
3773 break;
3774
3775 case MULT_EXPR:
3776 common = 1;
3777 break;
3778
3779 case TRUNC_DIV_EXPR:
3780 case CEIL_DIV_EXPR:
3781 case FLOOR_DIV_EXPR:
3782 case ROUND_DIV_EXPR:
3783 case EXACT_DIV_EXPR:
3784 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3785 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
3786 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3787 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
3788 {
3789 enum tree_code tcode0 = code0, tcode1 = code1;
3790
3791 warn_for_div_by_zero (location, op1);
3792
3793 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
3794 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
3795 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
3796 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
3797
3798 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
3799 resultcode = RDIV_EXPR;
3800 else
3801 /* When dividing two signed integers, we have to promote to int.
3802 unless we divide by a constant != -1. Note that default
3803 conversion will have been performed on the operands at this
3804 point, so we have to dig out the original type to find out if
3805 it was unsigned. */
3806 shorten = ((TREE_CODE (op0) == NOP_EXPR
3807 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3808 || (TREE_CODE (op1) == INTEGER_CST
3809 && ! integer_all_onesp (op1)));
3810
3811 common = 1;
3812 }
3813 break;
3814
3815 case BIT_AND_EXPR:
3816 case BIT_IOR_EXPR:
3817 case BIT_XOR_EXPR:
3818 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3819 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3820 && !VECTOR_FLOAT_TYPE_P (type0)
3821 && !VECTOR_FLOAT_TYPE_P (type1)))
3822 shorten = -1;
3823 break;
3824
3825 case TRUNC_MOD_EXPR:
3826 case FLOOR_MOD_EXPR:
3827 warn_for_div_by_zero (location, op1);
3828
3829 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3830 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
3831 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
3832 common = 1;
3833 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3834 {
3835 /* Although it would be tempting to shorten always here, that loses
3836 on some targets, since the modulo instruction is undefined if the
3837 quotient can't be represented in the computation mode. We shorten
3838 only if unsigned or if dividing by something we know != -1. */
3839 shorten = ((TREE_CODE (op0) == NOP_EXPR
3840 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3841 || (TREE_CODE (op1) == INTEGER_CST
3842 && ! integer_all_onesp (op1)));
3843 common = 1;
3844 }
3845 break;
3846
3847 case TRUTH_ANDIF_EXPR:
3848 case TRUTH_ORIF_EXPR:
3849 case TRUTH_AND_EXPR:
3850 case TRUTH_OR_EXPR:
3851 result_type = boolean_type_node;
3852 break;
3853
3854 /* Shift operations: result has same type as first operand;
3855 always convert second operand to int.
3856 Also set SHORT_SHIFT if shifting rightward. */
3857
3858 case RSHIFT_EXPR:
3859 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3860 {
3861 result_type = type0;
3862 if (TREE_CODE (op1) == INTEGER_CST)
3863 {
3864 if (tree_int_cst_lt (op1, integer_zero_node))
3865 {
3866 if ((complain & tf_warning)
3867 && c_inhibit_evaluation_warnings == 0)
3868 warning (0, "right shift count is negative");
3869 }
3870 else
3871 {
3872 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0
3873 && (complain & tf_warning)
3874 && c_inhibit_evaluation_warnings == 0)
3875 warning (0, "right shift count >= width of type");
3876 }
3877 }
3878 /* Convert the shift-count to an integer, regardless of
3879 size of value being shifted. */
3880 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3881 op1 = cp_convert (integer_type_node, op1);
3882 /* Avoid converting op1 to result_type later. */
3883 converted = 1;
3884 }
3885 break;
3886
3887 case LSHIFT_EXPR:
3888 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3889 {
3890 result_type = type0;
3891 if (TREE_CODE (op1) == INTEGER_CST)
3892 {
3893 if (tree_int_cst_lt (op1, integer_zero_node))
3894 {
3895 if ((complain & tf_warning)
3896 && c_inhibit_evaluation_warnings == 0)
3897 warning (0, "left shift count is negative");
3898 }
3899 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3900 {
3901 if ((complain & tf_warning)
3902 && c_inhibit_evaluation_warnings == 0)
3903 warning (0, "left shift count >= width of type");
3904 }
3905 }
3906 /* Convert the shift-count to an integer, regardless of
3907 size of value being shifted. */
3908 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3909 op1 = cp_convert (integer_type_node, op1);
3910 /* Avoid converting op1 to result_type later. */
3911 converted = 1;
3912 }
3913 break;
3914
3915 case RROTATE_EXPR:
3916 case LROTATE_EXPR:
3917 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3918 {
3919 result_type = type0;
3920 if (TREE_CODE (op1) == INTEGER_CST)
3921 {
3922 if (tree_int_cst_lt (op1, integer_zero_node))
3923 {
3924 if (complain & tf_warning)
3925 warning (0, (code == LROTATE_EXPR)
3926 ? G_("left rotate count is negative")
3927 : G_("right rotate count is negative"));
3928 }
3929 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3930 {
3931 if (complain & tf_warning)
3932 warning (0, (code == LROTATE_EXPR)
3933 ? G_("left rotate count >= width of type")
3934 : G_("right rotate count >= width of type"));
3935 }
3936 }
3937 /* Convert the shift-count to an integer, regardless of
3938 size of value being shifted. */
3939 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3940 op1 = cp_convert (integer_type_node, op1);
3941 }
3942 break;
3943
3944 case EQ_EXPR:
3945 case NE_EXPR:
3946 if ((complain & tf_warning)
3947 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
3948 warning (OPT_Wfloat_equal,
3949 "comparing floating point with == or != is unsafe");
3950 if ((complain & tf_warning)
3951 && ((TREE_CODE (orig_op0) == STRING_CST && !integer_zerop (op1))
3952 || (TREE_CODE (orig_op1) == STRING_CST && !integer_zerop (op0))))
3953 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
3954
3955 build_type = boolean_type_node;
3956 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3957 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
3958 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3959 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
3960 short_compare = 1;
3961 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3962 || (TYPE_PTRMEM_P (type0) && TYPE_PTRMEM_P (type1)))
3963 result_type = composite_pointer_type (type0, type1, op0, op1,
3964 CPO_COMPARISON, complain);
3965 else if ((code0 == POINTER_TYPE || TYPE_PTRMEM_P (type0))
3966 && null_ptr_cst_p (op1))
3967 {
3968 if (TREE_CODE (op0) == ADDR_EXPR
3969 && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
3970 {
3971 if (complain & tf_warning)
3972 warning (OPT_Waddress, "the address of %qD will never be NULL",
3973 TREE_OPERAND (op0, 0));
3974 }
3975 result_type = type0;
3976 }
3977 else if ((code1 == POINTER_TYPE || TYPE_PTRMEM_P (type1))
3978 && null_ptr_cst_p (op0))
3979 {
3980 if (TREE_CODE (op1) == ADDR_EXPR
3981 && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
3982 {
3983 if (complain & tf_warning)
3984 warning (OPT_Waddress, "the address of %qD will never be NULL",
3985 TREE_OPERAND (op1, 0));
3986 }
3987 result_type = type1;
3988 }
3989 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
3990 /* One of the operands must be of nullptr_t type. */
3991 result_type = TREE_TYPE (nullptr_node);
3992 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3993 {
3994 result_type = type0;
3995 if (complain & tf_error)
3996 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
3997 else
3998 return error_mark_node;
3999 }
4000 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4001 {
4002 result_type = type1;
4003 if (complain & tf_error)
4004 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4005 else
4006 return error_mark_node;
4007 }
4008 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
4009 {
4010 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4011 == ptrmemfunc_vbit_in_delta)
4012 {
4013 tree pfn0 = pfn_from_ptrmemfunc (op0);
4014 tree delta0 = delta_from_ptrmemfunc (op0);
4015 tree e1 = cp_build_binary_op (location,
4016 EQ_EXPR,
4017 pfn0,
4018 build_zero_cst (TREE_TYPE (pfn0)),
4019 complain);
4020 tree e2 = cp_build_binary_op (location,
4021 BIT_AND_EXPR,
4022 delta0,
4023 integer_one_node,
4024 complain);
4025 e2 = cp_build_binary_op (location,
4026 EQ_EXPR, e2, integer_zero_node,
4027 complain);
4028 op0 = cp_build_binary_op (location,
4029 TRUTH_ANDIF_EXPR, e1, e2,
4030 complain);
4031 op1 = cp_convert (TREE_TYPE (op0), integer_one_node);
4032 }
4033 else
4034 {
4035 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4036 op1 = cp_convert (TREE_TYPE (op0), integer_zero_node);
4037 }
4038 result_type = TREE_TYPE (op0);
4039 }
4040 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
4041 return cp_build_binary_op (location, code, op1, op0, complain);
4042 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4043 {
4044 tree type;
4045 /* E will be the final comparison. */
4046 tree e;
4047 /* E1 and E2 are for scratch. */
4048 tree e1;
4049 tree e2;
4050 tree pfn0;
4051 tree pfn1;
4052 tree delta0;
4053 tree delta1;
4054
4055 type = composite_pointer_type (type0, type1, op0, op1,
4056 CPO_COMPARISON, complain);
4057
4058 if (!same_type_p (TREE_TYPE (op0), type))
4059 op0 = cp_convert_and_check (type, op0);
4060 if (!same_type_p (TREE_TYPE (op1), type))
4061 op1 = cp_convert_and_check (type, op1);
4062
4063 if (op0 == error_mark_node || op1 == error_mark_node)
4064 return error_mark_node;
4065
4066 if (TREE_SIDE_EFFECTS (op0))
4067 op0 = save_expr (op0);
4068 if (TREE_SIDE_EFFECTS (op1))
4069 op1 = save_expr (op1);
4070
4071 pfn0 = pfn_from_ptrmemfunc (op0);
4072 pfn1 = pfn_from_ptrmemfunc (op1);
4073 delta0 = delta_from_ptrmemfunc (op0);
4074 delta1 = delta_from_ptrmemfunc (op1);
4075 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4076 == ptrmemfunc_vbit_in_delta)
4077 {
4078 /* We generate:
4079
4080 (op0.pfn == op1.pfn
4081 && ((op0.delta == op1.delta)
4082 || (!op0.pfn && op0.delta & 1 == 0
4083 && op1.delta & 1 == 0))
4084
4085 The reason for the `!op0.pfn' bit is that a NULL
4086 pointer-to-member is any member with a zero PFN and
4087 LSB of the DELTA field is 0. */
4088
4089 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4090 delta0,
4091 integer_one_node,
4092 complain);
4093 e1 = cp_build_binary_op (location,
4094 EQ_EXPR, e1, integer_zero_node,
4095 complain);
4096 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4097 delta1,
4098 integer_one_node,
4099 complain);
4100 e2 = cp_build_binary_op (location,
4101 EQ_EXPR, e2, integer_zero_node,
4102 complain);
4103 e1 = cp_build_binary_op (location,
4104 TRUTH_ANDIF_EXPR, e2, e1,
4105 complain);
4106 e2 = cp_build_binary_op (location, EQ_EXPR,
4107 pfn0,
4108 build_zero_cst (TREE_TYPE (pfn0)),
4109 complain);
4110 e2 = cp_build_binary_op (location,
4111 TRUTH_ANDIF_EXPR, e2, e1, complain);
4112 e1 = cp_build_binary_op (location,
4113 EQ_EXPR, delta0, delta1, complain);
4114 e1 = cp_build_binary_op (location,
4115 TRUTH_ORIF_EXPR, e1, e2, complain);
4116 }
4117 else
4118 {
4119 /* We generate:
4120
4121 (op0.pfn == op1.pfn
4122 && (!op0.pfn || op0.delta == op1.delta))
4123
4124 The reason for the `!op0.pfn' bit is that a NULL
4125 pointer-to-member is any member with a zero PFN; the
4126 DELTA field is unspecified. */
4127
4128 e1 = cp_build_binary_op (location,
4129 EQ_EXPR, delta0, delta1, complain);
4130 e2 = cp_build_binary_op (location,
4131 EQ_EXPR,
4132 pfn0,
4133 build_zero_cst (TREE_TYPE (pfn0)),
4134 complain);
4135 e1 = cp_build_binary_op (location,
4136 TRUTH_ORIF_EXPR, e1, e2, complain);
4137 }
4138 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4139 e = cp_build_binary_op (location,
4140 TRUTH_ANDIF_EXPR, e2, e1, complain);
4141 if (code == EQ_EXPR)
4142 return e;
4143 return cp_build_binary_op (location,
4144 EQ_EXPR, e, integer_zero_node, complain);
4145 }
4146 else
4147 {
4148 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4149 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4150 type1));
4151 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4152 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4153 type0));
4154 }
4155
4156 break;
4157
4158 case MAX_EXPR:
4159 case MIN_EXPR:
4160 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4161 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4162 shorten = 1;
4163 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4164 result_type = composite_pointer_type (type0, type1, op0, op1,
4165 CPO_COMPARISON, complain);
4166 break;
4167
4168 case LE_EXPR:
4169 case GE_EXPR:
4170 case LT_EXPR:
4171 case GT_EXPR:
4172 if (TREE_CODE (orig_op0) == STRING_CST
4173 || TREE_CODE (orig_op1) == STRING_CST)
4174 {
4175 if (complain & tf_warning)
4176 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4177 }
4178
4179 build_type = boolean_type_node;
4180 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4181 || code0 == ENUMERAL_TYPE)
4182 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4183 || code1 == ENUMERAL_TYPE))
4184 short_compare = 1;
4185 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4186 result_type = composite_pointer_type (type0, type1, op0, op1,
4187 CPO_COMPARISON, complain);
4188 else if (code0 == POINTER_TYPE && null_ptr_cst_p (op1))
4189 result_type = type0;
4190 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op0))
4191 result_type = type1;
4192 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4193 /* One of the operands must be of nullptr_t type. */
4194 result_type = TREE_TYPE (nullptr_node);
4195 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4196 {
4197 result_type = type0;
4198 if (complain & tf_error)
4199 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4200 else
4201 return error_mark_node;
4202 }
4203 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4204 {
4205 result_type = type1;
4206 if (complain & tf_error)
4207 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4208 else
4209 return error_mark_node;
4210 }
4211 break;
4212
4213 case UNORDERED_EXPR:
4214 case ORDERED_EXPR:
4215 case UNLT_EXPR:
4216 case UNLE_EXPR:
4217 case UNGT_EXPR:
4218 case UNGE_EXPR:
4219 case UNEQ_EXPR:
4220 build_type = integer_type_node;
4221 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
4222 {
4223 if (complain & tf_error)
4224 error ("unordered comparison on non-floating point argument");
4225 return error_mark_node;
4226 }
4227 common = 1;
4228 break;
4229
4230 default:
4231 break;
4232 }
4233
4234 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
4235 || code0 == ENUMERAL_TYPE)
4236 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4237 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
4238 arithmetic_types_p = 1;
4239 else
4240 {
4241 arithmetic_types_p = 0;
4242 /* Vector arithmetic is only allowed when both sides are vectors. */
4243 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4244 {
4245 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
4246 || !same_scalar_type_ignoring_signedness (TREE_TYPE (type0),
4247 TREE_TYPE (type1)))
4248 {
4249 binary_op_error (location, code, type0, type1);
4250 return error_mark_node;
4251 }
4252 arithmetic_types_p = 1;
4253 }
4254 }
4255 /* Determine the RESULT_TYPE, if it is not already known. */
4256 if (!result_type
4257 && arithmetic_types_p
4258 && (shorten || common || short_compare))
4259 {
4260 result_type = cp_common_type (type0, type1);
4261 do_warn_double_promotion (result_type, type0, type1,
4262 "implicit conversion from %qT to %qT "
4263 "to match other operand of binary "
4264 "expression",
4265 location);
4266 }
4267
4268 if (!result_type)
4269 {
4270 if (complain & tf_error)
4271 error ("invalid operands of types %qT and %qT to binary %qO",
4272 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
4273 return error_mark_node;
4274 }
4275
4276 /* If we're in a template, the only thing we need to know is the
4277 RESULT_TYPE. */
4278 if (processing_template_decl)
4279 {
4280 /* Since the middle-end checks the type when doing a build2, we
4281 need to build the tree in pieces. This built tree will never
4282 get out of the front-end as we replace it when instantiating
4283 the template. */
4284 tree tmp = build2 (resultcode,
4285 build_type ? build_type : result_type,
4286 NULL_TREE, op1);
4287 TREE_OPERAND (tmp, 0) = op0;
4288 return tmp;
4289 }
4290
4291 if (arithmetic_types_p)
4292 {
4293 bool first_complex = (code0 == COMPLEX_TYPE);
4294 bool second_complex = (code1 == COMPLEX_TYPE);
4295 int none_complex = (!first_complex && !second_complex);
4296
4297 /* Adapted from patch for c/24581. */
4298 if (first_complex != second_complex
4299 && (code == PLUS_EXPR
4300 || code == MINUS_EXPR
4301 || code == MULT_EXPR
4302 || (code == TRUNC_DIV_EXPR && first_complex))
4303 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
4304 && flag_signed_zeros)
4305 {
4306 /* An operation on mixed real/complex operands must be
4307 handled specially, but the language-independent code can
4308 more easily optimize the plain complex arithmetic if
4309 -fno-signed-zeros. */
4310 tree real_type = TREE_TYPE (result_type);
4311 tree real, imag;
4312 if (first_complex)
4313 {
4314 if (TREE_TYPE (op0) != result_type)
4315 op0 = cp_convert_and_check (result_type, op0);
4316 if (TREE_TYPE (op1) != real_type)
4317 op1 = cp_convert_and_check (real_type, op1);
4318 }
4319 else
4320 {
4321 if (TREE_TYPE (op0) != real_type)
4322 op0 = cp_convert_and_check (real_type, op0);
4323 if (TREE_TYPE (op1) != result_type)
4324 op1 = cp_convert_and_check (result_type, op1);
4325 }
4326 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
4327 return error_mark_node;
4328 if (first_complex)
4329 {
4330 op0 = save_expr (op0);
4331 real = cp_build_unary_op (REALPART_EXPR, op0, 1, complain);
4332 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain);
4333 switch (code)
4334 {
4335 case MULT_EXPR:
4336 case TRUNC_DIV_EXPR:
4337 imag = build2 (resultcode, real_type, imag, op1);
4338 /* Fall through. */
4339 case PLUS_EXPR:
4340 case MINUS_EXPR:
4341 real = build2 (resultcode, real_type, real, op1);
4342 break;
4343 default:
4344 gcc_unreachable();
4345 }
4346 }
4347 else
4348 {
4349 op1 = save_expr (op1);
4350 real = cp_build_unary_op (REALPART_EXPR, op1, 1, complain);
4351 imag = cp_build_unary_op (IMAGPART_EXPR, op1, 1, complain);
4352 switch (code)
4353 {
4354 case MULT_EXPR:
4355 imag = build2 (resultcode, real_type, op0, imag);
4356 /* Fall through. */
4357 case PLUS_EXPR:
4358 real = build2 (resultcode, real_type, op0, real);
4359 break;
4360 case MINUS_EXPR:
4361 real = build2 (resultcode, real_type, op0, real);
4362 imag = build1 (NEGATE_EXPR, real_type, imag);
4363 break;
4364 default:
4365 gcc_unreachable();
4366 }
4367 }
4368 real = fold_if_not_in_template (real);
4369 imag = fold_if_not_in_template (imag);
4370 result = build2 (COMPLEX_EXPR, result_type, real, imag);
4371 result = fold_if_not_in_template (result);
4372 return result;
4373 }
4374
4375 /* For certain operations (which identify themselves by shorten != 0)
4376 if both args were extended from the same smaller type,
4377 do the arithmetic in that type and then extend.
4378
4379 shorten !=0 and !=1 indicates a bitwise operation.
4380 For them, this optimization is safe only if
4381 both args are zero-extended or both are sign-extended.
4382 Otherwise, we might change the result.
4383 E.g., (short)-1 | (unsigned short)-1 is (int)-1
4384 but calculated in (unsigned short) it would be (unsigned short)-1. */
4385
4386 if (shorten && none_complex)
4387 {
4388 final_type = result_type;
4389 result_type = shorten_binary_op (result_type, op0, op1,
4390 shorten == -1);
4391 }
4392
4393 /* Comparison operations are shortened too but differently.
4394 They identify themselves by setting short_compare = 1. */
4395
4396 if (short_compare)
4397 {
4398 /* Don't write &op0, etc., because that would prevent op0
4399 from being kept in a register.
4400 Instead, make copies of the our local variables and
4401 pass the copies by reference, then copy them back afterward. */
4402 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
4403 enum tree_code xresultcode = resultcode;
4404 tree val
4405 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
4406 if (val != 0)
4407 return cp_convert (boolean_type_node, val);
4408 op0 = xop0, op1 = xop1;
4409 converted = 1;
4410 resultcode = xresultcode;
4411 }
4412
4413 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
4414 && warn_sign_compare
4415 && !TREE_NO_WARNING (orig_op0)
4416 && !TREE_NO_WARNING (orig_op1)
4417 /* Do not warn until the template is instantiated; we cannot
4418 bound the ranges of the arguments until that point. */
4419 && !processing_template_decl
4420 && (complain & tf_warning)
4421 && c_inhibit_evaluation_warnings == 0)
4422 {
4423 warn_for_sign_compare (location, orig_op0, orig_op1, op0, op1,
4424 result_type, resultcode);
4425 }
4426 }
4427
4428 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
4429 Then the expression will be built.
4430 It will be given type FINAL_TYPE if that is nonzero;
4431 otherwise, it will be given type RESULT_TYPE. */
4432 if (! converted)
4433 {
4434 if (TREE_TYPE (op0) != result_type)
4435 op0 = cp_convert_and_check (result_type, op0);
4436 if (TREE_TYPE (op1) != result_type)
4437 op1 = cp_convert_and_check (result_type, op1);
4438
4439 if (op0 == error_mark_node || op1 == error_mark_node)
4440 return error_mark_node;
4441 }
4442
4443 if (build_type == NULL_TREE)
4444 build_type = result_type;
4445
4446 result = build2 (resultcode, build_type, op0, op1);
4447 result = fold_if_not_in_template (result);
4448 if (final_type != 0)
4449 result = cp_convert (final_type, result);
4450
4451 if (TREE_OVERFLOW_P (result)
4452 && !TREE_OVERFLOW_P (op0)
4453 && !TREE_OVERFLOW_P (op1))
4454 overflow_warning (location, result);
4455
4456 return result;
4457 }
4458 \f
4459 /* Return a tree for the sum or difference (RESULTCODE says which)
4460 of pointer PTROP and integer INTOP. */
4461
4462 static tree
4463 cp_pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop)
4464 {
4465 tree res_type = TREE_TYPE (ptrop);
4466
4467 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
4468 in certain circumstance (when it's valid to do so). So we need
4469 to make sure it's complete. We don't need to check here, if we
4470 can actually complete it at all, as those checks will be done in
4471 pointer_int_sum() anyway. */
4472 complete_type (TREE_TYPE (res_type));
4473
4474 return pointer_int_sum (input_location, resultcode, ptrop,
4475 fold_if_not_in_template (intop));
4476 }
4477
4478 /* Return a tree for the difference of pointers OP0 and OP1.
4479 The resulting tree has type int. */
4480
4481 static tree
4482 pointer_diff (tree op0, tree op1, tree ptrtype)
4483 {
4484 tree result;
4485 tree restype = ptrdiff_type_node;
4486 tree target_type = TREE_TYPE (ptrtype);
4487
4488 if (!complete_type_or_else (target_type, NULL_TREE))
4489 return error_mark_node;
4490
4491 if (TREE_CODE (target_type) == VOID_TYPE)
4492 permerror (input_location, "ISO C++ forbids using pointer of type %<void *%> in subtraction");
4493 if (TREE_CODE (target_type) == FUNCTION_TYPE)
4494 permerror (input_location, "ISO C++ forbids using pointer to a function in subtraction");
4495 if (TREE_CODE (target_type) == METHOD_TYPE)
4496 permerror (input_location, "ISO C++ forbids using pointer to a method in subtraction");
4497
4498 /* First do the subtraction as integers;
4499 then drop through to build the divide operator. */
4500
4501 op0 = cp_build_binary_op (input_location,
4502 MINUS_EXPR,
4503 cp_convert (restype, op0),
4504 cp_convert (restype, op1),
4505 tf_warning_or_error);
4506
4507 /* This generates an error if op1 is a pointer to an incomplete type. */
4508 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
4509 error ("invalid use of a pointer to an incomplete type in pointer arithmetic");
4510
4511 op1 = (TYPE_PTROB_P (ptrtype)
4512 ? size_in_bytes (target_type)
4513 : integer_one_node);
4514
4515 /* Do the division. */
4516
4517 result = build2 (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
4518 return fold_if_not_in_template (result);
4519 }
4520 \f
4521 /* Construct and perhaps optimize a tree representation
4522 for a unary operation. CODE, a tree_code, specifies the operation
4523 and XARG is the operand. */
4524
4525 tree
4526 build_x_unary_op (enum tree_code code, tree xarg, tsubst_flags_t complain)
4527 {
4528 tree orig_expr = xarg;
4529 tree exp;
4530 int ptrmem = 0;
4531
4532 if (processing_template_decl)
4533 {
4534 if (type_dependent_expression_p (xarg))
4535 return build_min_nt (code, xarg, NULL_TREE);
4536
4537 xarg = build_non_dependent_expr (xarg);
4538 }
4539
4540 exp = NULL_TREE;
4541
4542 /* [expr.unary.op] says:
4543
4544 The address of an object of incomplete type can be taken.
4545
4546 (And is just the ordinary address operator, not an overloaded
4547 "operator &".) However, if the type is a template
4548 specialization, we must complete the type at this point so that
4549 an overloaded "operator &" will be available if required. */
4550 if (code == ADDR_EXPR
4551 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
4552 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
4553 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
4554 || (TREE_CODE (xarg) == OFFSET_REF)))
4555 /* Don't look for a function. */;
4556 else
4557 exp = build_new_op (code, LOOKUP_NORMAL, xarg, NULL_TREE, NULL_TREE,
4558 /*overloaded_p=*/NULL, complain);
4559 if (!exp && code == ADDR_EXPR)
4560 {
4561 if (is_overloaded_fn (xarg))
4562 {
4563 tree fn = get_first_fn (xarg);
4564 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
4565 {
4566 error (DECL_CONSTRUCTOR_P (fn)
4567 ? G_("taking address of constructor %qE")
4568 : G_("taking address of destructor %qE"),
4569 xarg);
4570 return error_mark_node;
4571 }
4572 }
4573
4574 /* A pointer to member-function can be formed only by saying
4575 &X::mf. */
4576 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
4577 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
4578 {
4579 if (TREE_CODE (xarg) != OFFSET_REF
4580 || !TYPE_P (TREE_OPERAND (xarg, 0)))
4581 {
4582 error ("invalid use of %qE to form a pointer-to-member-function",
4583 xarg);
4584 if (TREE_CODE (xarg) != OFFSET_REF)
4585 inform (input_location, " a qualified-id is required");
4586 return error_mark_node;
4587 }
4588 else
4589 {
4590 error ("parentheses around %qE cannot be used to form a"
4591 " pointer-to-member-function",
4592 xarg);
4593 PTRMEM_OK_P (xarg) = 1;
4594 }
4595 }
4596
4597 if (TREE_CODE (xarg) == OFFSET_REF)
4598 {
4599 ptrmem = PTRMEM_OK_P (xarg);
4600
4601 if (!ptrmem && !flag_ms_extensions
4602 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
4603 {
4604 /* A single non-static member, make sure we don't allow a
4605 pointer-to-member. */
4606 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
4607 TREE_OPERAND (xarg, 0),
4608 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
4609 PTRMEM_OK_P (xarg) = ptrmem;
4610 }
4611 }
4612
4613 exp = cp_build_addr_expr_strict (xarg, complain);
4614 }
4615
4616 if (processing_template_decl && exp != error_mark_node)
4617 exp = build_min_non_dep (code, exp, orig_expr,
4618 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
4619 if (TREE_CODE (exp) == ADDR_EXPR)
4620 PTRMEM_OK_P (exp) = ptrmem;
4621 return exp;
4622 }
4623
4624 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
4625 constants, where a null value is represented by an INTEGER_CST of
4626 -1. */
4627
4628 tree
4629 cp_truthvalue_conversion (tree expr)
4630 {
4631 tree type = TREE_TYPE (expr);
4632 if (TYPE_PTRMEM_P (type))
4633 return build_binary_op (EXPR_LOCATION (expr),
4634 NE_EXPR, expr, integer_zero_node, 1);
4635 else
4636 return c_common_truthvalue_conversion (input_location, expr);
4637 }
4638
4639 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
4640
4641 tree
4642 condition_conversion (tree expr)
4643 {
4644 tree t;
4645 if (processing_template_decl)
4646 return expr;
4647 t = perform_implicit_conversion_flags (boolean_type_node, expr,
4648 tf_warning_or_error, LOOKUP_NORMAL);
4649 t = fold_build_cleanup_point_expr (boolean_type_node, t);
4650 return t;
4651 }
4652
4653 /* Returns the address of T. This function will fold away
4654 ADDR_EXPR of INDIRECT_REF. */
4655
4656 tree
4657 build_address (tree t)
4658 {
4659 if (error_operand_p (t) || !cxx_mark_addressable (t))
4660 return error_mark_node;
4661 t = build_fold_addr_expr (t);
4662 if (TREE_CODE (t) != ADDR_EXPR)
4663 t = rvalue (t);
4664 return t;
4665 }
4666
4667 /* Returns the address of T with type TYPE. */
4668
4669 tree
4670 build_typed_address (tree t, tree type)
4671 {
4672 if (error_operand_p (t) || !cxx_mark_addressable (t))
4673 return error_mark_node;
4674 t = build_fold_addr_expr_with_type (t, type);
4675 if (TREE_CODE (t) != ADDR_EXPR)
4676 t = rvalue (t);
4677 return t;
4678 }
4679
4680 /* Return a NOP_EXPR converting EXPR to TYPE. */
4681
4682 tree
4683 build_nop (tree type, tree expr)
4684 {
4685 if (type == error_mark_node || error_operand_p (expr))
4686 return expr;
4687 return build1 (NOP_EXPR, type, expr);
4688 }
4689
4690 /* Take the address of ARG, whatever that means under C++ semantics.
4691 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
4692 and class rvalues as well.
4693
4694 Nothing should call this function directly; instead, callers should use
4695 cp_build_addr_expr or cp_build_addr_expr_strict. */
4696
4697 static tree
4698 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
4699 {
4700 tree argtype;
4701 tree val;
4702
4703 if (!arg || error_operand_p (arg))
4704 return error_mark_node;
4705
4706 arg = mark_lvalue_use (arg);
4707 argtype = lvalue_type (arg);
4708
4709 gcc_assert (TREE_CODE (arg) != IDENTIFIER_NODE
4710 || !IDENTIFIER_OPNAME_P (arg));
4711
4712 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
4713 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
4714 {
4715 /* They're trying to take the address of a unique non-static
4716 member function. This is ill-formed (except in MS-land),
4717 but let's try to DTRT.
4718 Note: We only handle unique functions here because we don't
4719 want to complain if there's a static overload; non-unique
4720 cases will be handled by instantiate_type. But we need to
4721 handle this case here to allow casts on the resulting PMF.
4722 We could defer this in non-MS mode, but it's easier to give
4723 a useful error here. */
4724
4725 /* Inside constant member functions, the `this' pointer
4726 contains an extra const qualifier. TYPE_MAIN_VARIANT
4727 is used here to remove this const from the diagnostics
4728 and the created OFFSET_REF. */
4729 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
4730 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
4731 mark_used (fn);
4732
4733 if (! flag_ms_extensions)
4734 {
4735 tree name = DECL_NAME (fn);
4736 if (!(complain & tf_error))
4737 return error_mark_node;
4738 else if (current_class_type
4739 && TREE_OPERAND (arg, 0) == current_class_ref)
4740 /* An expression like &memfn. */
4741 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
4742 " or parenthesized non-static member function to form"
4743 " a pointer to member function. Say %<&%T::%D%>",
4744 base, name);
4745 else
4746 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
4747 " function to form a pointer to member function."
4748 " Say %<&%T::%D%>",
4749 base, name);
4750 }
4751 arg = build_offset_ref (base, fn, /*address_p=*/true);
4752 }
4753
4754 /* Uninstantiated types are all functions. Taking the
4755 address of a function is a no-op, so just return the
4756 argument. */
4757 if (type_unknown_p (arg))
4758 return build1 (ADDR_EXPR, unknown_type_node, arg);
4759
4760 if (TREE_CODE (arg) == OFFSET_REF)
4761 /* We want a pointer to member; bypass all the code for actually taking
4762 the address of something. */
4763 goto offset_ref;
4764
4765 /* Anything not already handled and not a true memory reference
4766 is an error. */
4767 if (TREE_CODE (argtype) != FUNCTION_TYPE
4768 && TREE_CODE (argtype) != METHOD_TYPE)
4769 {
4770 cp_lvalue_kind kind = lvalue_kind (arg);
4771 if (kind == clk_none)
4772 {
4773 if (complain & tf_error)
4774 lvalue_error (input_location, lv_addressof);
4775 return error_mark_node;
4776 }
4777 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
4778 {
4779 if (!(complain & tf_error))
4780 return error_mark_node;
4781 if (kind & clk_class)
4782 /* Make this a permerror because we used to accept it. */
4783 permerror (input_location, "taking address of temporary");
4784 else
4785 error ("taking address of xvalue (rvalue reference)");
4786 }
4787 }
4788
4789 if (TREE_CODE (argtype) == REFERENCE_TYPE)
4790 {
4791 tree type = build_pointer_type (TREE_TYPE (argtype));
4792 arg = build1 (CONVERT_EXPR, type, arg);
4793 return arg;
4794 }
4795 else if (pedantic && DECL_MAIN_P (arg))
4796 {
4797 /* ARM $3.4 */
4798 /* Apparently a lot of autoconf scripts for C++ packages do this,
4799 so only complain if -pedantic. */
4800 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
4801 pedwarn (input_location, OPT_pedantic,
4802 "ISO C++ forbids taking address of function %<::main%>");
4803 else if (flag_pedantic_errors)
4804 return error_mark_node;
4805 }
4806
4807 /* Let &* cancel out to simplify resulting code. */
4808 if (TREE_CODE (arg) == INDIRECT_REF)
4809 {
4810 /* We don't need to have `current_class_ptr' wrapped in a
4811 NON_LVALUE_EXPR node. */
4812 if (arg == current_class_ref)
4813 return current_class_ptr;
4814
4815 arg = TREE_OPERAND (arg, 0);
4816 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
4817 {
4818 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
4819 arg = build1 (CONVERT_EXPR, type, arg);
4820 }
4821 else
4822 /* Don't let this be an lvalue. */
4823 arg = rvalue (arg);
4824 return arg;
4825 }
4826
4827 /* ??? Cope with user tricks that amount to offsetof. */
4828 if (TREE_CODE (argtype) != FUNCTION_TYPE
4829 && TREE_CODE (argtype) != METHOD_TYPE
4830 && argtype != unknown_type_node
4831 && (val = get_base_address (arg))
4832 && COMPLETE_TYPE_P (TREE_TYPE (val))
4833 && TREE_CODE (val) == INDIRECT_REF
4834 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
4835 {
4836 tree type = build_pointer_type (argtype);
4837 tree op0 = fold_convert (type, TREE_OPERAND (val, 0));
4838 tree op1 = fold_convert (sizetype, fold_offsetof (arg, val));
4839 return fold_build2 (POINTER_PLUS_EXPR, type, op0, op1);
4840 }
4841
4842 /* Handle complex lvalues (when permitted)
4843 by reduction to simpler cases. */
4844 val = unary_complex_lvalue (ADDR_EXPR, arg);
4845 if (val != 0)
4846 return val;
4847
4848 switch (TREE_CODE (arg))
4849 {
4850 CASE_CONVERT:
4851 case FLOAT_EXPR:
4852 case FIX_TRUNC_EXPR:
4853 /* Even if we're not being pedantic, we cannot allow this
4854 extension when we're instantiating in a SFINAE
4855 context. */
4856 if (! lvalue_p (arg) && complain == tf_none)
4857 {
4858 if (complain & tf_error)
4859 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
4860 else
4861 return error_mark_node;
4862 }
4863 break;
4864
4865 case BASELINK:
4866 arg = BASELINK_FUNCTIONS (arg);
4867 /* Fall through. */
4868
4869 case OVERLOAD:
4870 arg = OVL_CURRENT (arg);
4871 break;
4872
4873 case OFFSET_REF:
4874 offset_ref:
4875 /* Turn a reference to a non-static data member into a
4876 pointer-to-member. */
4877 {
4878 tree type;
4879 tree t;
4880
4881 gcc_assert (PTRMEM_OK_P (arg));
4882
4883 t = TREE_OPERAND (arg, 1);
4884 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4885 {
4886 if (complain & tf_error)
4887 error ("cannot create pointer to reference member %qD", t);
4888 return error_mark_node;
4889 }
4890
4891 type = build_ptrmem_type (context_for_name_lookup (t),
4892 TREE_TYPE (t));
4893 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
4894 return t;
4895 }
4896
4897 default:
4898 break;
4899 }
4900
4901 if (argtype != error_mark_node)
4902 argtype = build_pointer_type (argtype);
4903
4904 /* In a template, we are processing a non-dependent expression
4905 so we can just form an ADDR_EXPR with the correct type. */
4906 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
4907 {
4908 val = build_address (arg);
4909 if (TREE_CODE (arg) == OFFSET_REF)
4910 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
4911 }
4912 else if (TREE_CODE (TREE_OPERAND (arg, 1)) == BASELINK)
4913 {
4914 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
4915
4916 /* We can only get here with a single static member
4917 function. */
4918 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
4919 && DECL_STATIC_FUNCTION_P (fn));
4920 mark_used (fn);
4921 val = build_address (fn);
4922 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
4923 /* Do not lose object's side effects. */
4924 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
4925 TREE_OPERAND (arg, 0), val);
4926 }
4927 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
4928 {
4929 if (complain & tf_error)
4930 error ("attempt to take address of bit-field structure member %qD",
4931 TREE_OPERAND (arg, 1));
4932 return error_mark_node;
4933 }
4934 else
4935 {
4936 tree object = TREE_OPERAND (arg, 0);
4937 tree field = TREE_OPERAND (arg, 1);
4938 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4939 (TREE_TYPE (object), decl_type_context (field)));
4940 val = build_address (arg);
4941 }
4942
4943 if (TREE_CODE (argtype) == POINTER_TYPE
4944 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
4945 {
4946 build_ptrmemfunc_type (argtype);
4947 val = build_ptrmemfunc (argtype, val, 0,
4948 /*c_cast_p=*/false,
4949 tf_warning_or_error);
4950 }
4951
4952 return val;
4953 }
4954
4955 /* Take the address of ARG if it has one, even if it's an rvalue. */
4956
4957 tree
4958 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
4959 {
4960 return cp_build_addr_expr_1 (arg, 0, complain);
4961 }
4962
4963 /* Take the address of ARG, but only if it's an lvalue. */
4964
4965 tree
4966 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
4967 {
4968 return cp_build_addr_expr_1 (arg, 1, complain);
4969 }
4970
4971 /* C++: Must handle pointers to members.
4972
4973 Perhaps type instantiation should be extended to handle conversion
4974 from aggregates to types we don't yet know we want? (Or are those
4975 cases typically errors which should be reported?)
4976
4977 NOCONVERT nonzero suppresses the default promotions
4978 (such as from short to int). */
4979
4980 tree
4981 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
4982 tsubst_flags_t complain)
4983 {
4984 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
4985 tree arg = xarg;
4986 tree argtype = 0;
4987 const char *errstring = NULL;
4988 tree val;
4989 const char *invalid_op_diag;
4990
4991 if (!arg || error_operand_p (arg))
4992 return error_mark_node;
4993
4994 if ((invalid_op_diag
4995 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
4996 ? CONVERT_EXPR
4997 : code),
4998 TREE_TYPE (xarg))))
4999 {
5000 error (invalid_op_diag);
5001 return error_mark_node;
5002 }
5003
5004 switch (code)
5005 {
5006 case UNARY_PLUS_EXPR:
5007 case NEGATE_EXPR:
5008 {
5009 int flags = WANT_ARITH | WANT_ENUM;
5010 /* Unary plus (but not unary minus) is allowed on pointers. */
5011 if (code == UNARY_PLUS_EXPR)
5012 flags |= WANT_POINTER;
5013 arg = build_expr_type_conversion (flags, arg, true);
5014 if (!arg)
5015 errstring = (code == NEGATE_EXPR
5016 ? _("wrong type argument to unary minus")
5017 : _("wrong type argument to unary plus"));
5018 else
5019 {
5020 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5021 arg = perform_integral_promotions (arg);
5022
5023 /* Make sure the result is not an lvalue: a unary plus or minus
5024 expression is always a rvalue. */
5025 arg = rvalue (arg);
5026 }
5027 }
5028 break;
5029
5030 case BIT_NOT_EXPR:
5031 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5032 {
5033 code = CONJ_EXPR;
5034 if (!noconvert)
5035 arg = default_conversion (arg);
5036 }
5037 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5038 | WANT_VECTOR_OR_COMPLEX,
5039 arg, true)))
5040 errstring = _("wrong type argument to bit-complement");
5041 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5042 arg = perform_integral_promotions (arg);
5043 break;
5044
5045 case ABS_EXPR:
5046 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5047 errstring = _("wrong type argument to abs");
5048 else if (!noconvert)
5049 arg = default_conversion (arg);
5050 break;
5051
5052 case CONJ_EXPR:
5053 /* Conjugating a real value is a no-op, but allow it anyway. */
5054 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5055 errstring = _("wrong type argument to conjugation");
5056 else if (!noconvert)
5057 arg = default_conversion (arg);
5058 break;
5059
5060 case TRUTH_NOT_EXPR:
5061 arg = perform_implicit_conversion (boolean_type_node, arg,
5062 complain);
5063 val = invert_truthvalue_loc (input_location, arg);
5064 if (arg != error_mark_node)
5065 return val;
5066 errstring = _("in argument to unary !");
5067 break;
5068
5069 case NOP_EXPR:
5070 break;
5071
5072 case REALPART_EXPR:
5073 case IMAGPART_EXPR:
5074 arg = build_real_imag_expr (input_location, code, arg);
5075 if (arg == error_mark_node)
5076 return arg;
5077 else
5078 return fold_if_not_in_template (arg);
5079
5080 case PREINCREMENT_EXPR:
5081 case POSTINCREMENT_EXPR:
5082 case PREDECREMENT_EXPR:
5083 case POSTDECREMENT_EXPR:
5084 /* Handle complex lvalues (when permitted)
5085 by reduction to simpler cases. */
5086
5087 val = unary_complex_lvalue (code, arg);
5088 if (val != 0)
5089 return val;
5090
5091 arg = mark_lvalue_use (arg);
5092
5093 /* Increment or decrement the real part of the value,
5094 and don't change the imaginary part. */
5095 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5096 {
5097 tree real, imag;
5098
5099 arg = stabilize_reference (arg);
5100 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5101 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5102 real = cp_build_unary_op (code, real, 1, complain);
5103 if (real == error_mark_node || imag == error_mark_node)
5104 return error_mark_node;
5105 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5106 real, imag);
5107 }
5108
5109 /* Report invalid types. */
5110
5111 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5112 arg, true)))
5113 {
5114 if (code == PREINCREMENT_EXPR)
5115 errstring = _("no pre-increment operator for type");
5116 else if (code == POSTINCREMENT_EXPR)
5117 errstring = _("no post-increment operator for type");
5118 else if (code == PREDECREMENT_EXPR)
5119 errstring = _("no pre-decrement operator for type");
5120 else
5121 errstring = _("no post-decrement operator for type");
5122 break;
5123 }
5124 else if (arg == error_mark_node)
5125 return error_mark_node;
5126
5127 /* Report something read-only. */
5128
5129 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5130 || TREE_READONLY (arg))
5131 {
5132 if (complain & tf_error)
5133 cxx_readonly_error (arg, ((code == PREINCREMENT_EXPR
5134 || code == POSTINCREMENT_EXPR)
5135 ? lv_increment : lv_decrement));
5136 else
5137 return error_mark_node;
5138 }
5139
5140 {
5141 tree inc;
5142 tree declared_type = unlowered_expr_type (arg);
5143
5144 argtype = TREE_TYPE (arg);
5145
5146 /* ARM $5.2.5 last annotation says this should be forbidden. */
5147 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5148 {
5149 if (complain & tf_error)
5150 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5151 ? G_("ISO C++ forbids incrementing an enum")
5152 : G_("ISO C++ forbids decrementing an enum"));
5153 else
5154 return error_mark_node;
5155 }
5156
5157 /* Compute the increment. */
5158
5159 if (TREE_CODE (argtype) == POINTER_TYPE)
5160 {
5161 tree type = complete_type (TREE_TYPE (argtype));
5162
5163 if (!COMPLETE_OR_VOID_TYPE_P (type))
5164 {
5165 if (complain & tf_error)
5166 error (((code == PREINCREMENT_EXPR
5167 || code == POSTINCREMENT_EXPR))
5168 ? G_("cannot increment a pointer to incomplete type %qT")
5169 : G_("cannot decrement a pointer to incomplete type %qT"),
5170 TREE_TYPE (argtype));
5171 else
5172 return error_mark_node;
5173 }
5174 else if ((pedantic || warn_pointer_arith)
5175 && !TYPE_PTROB_P (argtype))
5176 {
5177 if (complain & tf_error)
5178 permerror (input_location, (code == PREINCREMENT_EXPR
5179 || code == POSTINCREMENT_EXPR)
5180 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
5181 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
5182 argtype);
5183 else
5184 return error_mark_node;
5185 }
5186
5187 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
5188 }
5189 else
5190 inc = integer_one_node;
5191
5192 inc = cp_convert (argtype, inc);
5193
5194 /* If 'arg' is an Objective-C PROPERTY_REF expression, then we
5195 need to ask Objective-C to build the increment or decrement
5196 expression for it. */
5197 if (objc_is_property_ref (arg))
5198 return objc_build_incr_expr_for_property_ref (input_location, code,
5199 arg, inc);
5200
5201 /* Complain about anything else that is not a true lvalue. */
5202 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
5203 || code == POSTINCREMENT_EXPR)
5204 ? lv_increment : lv_decrement),
5205 complain))
5206 return error_mark_node;
5207
5208 /* Forbid using -- on `bool'. */
5209 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
5210 {
5211 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
5212 {
5213 if (complain & tf_error)
5214 error ("invalid use of Boolean expression as operand "
5215 "to %<operator--%>");
5216 return error_mark_node;
5217 }
5218 val = boolean_increment (code, arg);
5219 }
5220 else
5221 val = build2 (code, TREE_TYPE (arg), arg, inc);
5222
5223 TREE_SIDE_EFFECTS (val) = 1;
5224 return val;
5225 }
5226
5227 case ADDR_EXPR:
5228 /* Note that this operation never does default_conversion
5229 regardless of NOCONVERT. */
5230 return cp_build_addr_expr (arg, complain);
5231
5232 default:
5233 break;
5234 }
5235
5236 if (!errstring)
5237 {
5238 if (argtype == 0)
5239 argtype = TREE_TYPE (arg);
5240 return fold_if_not_in_template (build1 (code, argtype, arg));
5241 }
5242
5243 if (complain & tf_error)
5244 error ("%s", errstring);
5245 return error_mark_node;
5246 }
5247
5248 /* Hook for the c-common bits that build a unary op. */
5249 tree
5250 build_unary_op (location_t location ATTRIBUTE_UNUSED,
5251 enum tree_code code, tree xarg, int noconvert)
5252 {
5253 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
5254 }
5255
5256 /* Apply unary lvalue-demanding operator CODE to the expression ARG
5257 for certain kinds of expressions which are not really lvalues
5258 but which we can accept as lvalues.
5259
5260 If ARG is not a kind of expression we can handle, return
5261 NULL_TREE. */
5262
5263 tree
5264 unary_complex_lvalue (enum tree_code code, tree arg)
5265 {
5266 /* Inside a template, making these kinds of adjustments is
5267 pointless; we are only concerned with the type of the
5268 expression. */
5269 if (processing_template_decl)
5270 return NULL_TREE;
5271
5272 /* Handle (a, b) used as an "lvalue". */
5273 if (TREE_CODE (arg) == COMPOUND_EXPR)
5274 {
5275 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
5276 tf_warning_or_error);
5277 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5278 TREE_OPERAND (arg, 0), real_result);
5279 }
5280
5281 /* Handle (a ? b : c) used as an "lvalue". */
5282 if (TREE_CODE (arg) == COND_EXPR
5283 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
5284 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
5285
5286 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
5287 if (TREE_CODE (arg) == MODIFY_EXPR
5288 || TREE_CODE (arg) == PREINCREMENT_EXPR
5289 || TREE_CODE (arg) == PREDECREMENT_EXPR)
5290 {
5291 tree lvalue = TREE_OPERAND (arg, 0);
5292 if (TREE_SIDE_EFFECTS (lvalue))
5293 {
5294 lvalue = stabilize_reference (lvalue);
5295 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
5296 lvalue, TREE_OPERAND (arg, 1));
5297 }
5298 return unary_complex_lvalue
5299 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
5300 }
5301
5302 if (code != ADDR_EXPR)
5303 return NULL_TREE;
5304
5305 /* Handle (a = b) used as an "lvalue" for `&'. */
5306 if (TREE_CODE (arg) == MODIFY_EXPR
5307 || TREE_CODE (arg) == INIT_EXPR)
5308 {
5309 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
5310 tf_warning_or_error);
5311 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5312 arg, real_result);
5313 TREE_NO_WARNING (arg) = 1;
5314 return arg;
5315 }
5316
5317 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
5318 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
5319 || TREE_CODE (arg) == OFFSET_REF)
5320 return NULL_TREE;
5321
5322 /* We permit compiler to make function calls returning
5323 objects of aggregate type look like lvalues. */
5324 {
5325 tree targ = arg;
5326
5327 if (TREE_CODE (targ) == SAVE_EXPR)
5328 targ = TREE_OPERAND (targ, 0);
5329
5330 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
5331 {
5332 if (TREE_CODE (arg) == SAVE_EXPR)
5333 targ = arg;
5334 else
5335 targ = build_cplus_new (TREE_TYPE (arg), arg, tf_warning_or_error);
5336 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
5337 }
5338
5339 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
5340 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
5341 TREE_OPERAND (targ, 0), current_function_decl, NULL);
5342 }
5343
5344 /* Don't let anything else be handled specially. */
5345 return NULL_TREE;
5346 }
5347 \f
5348 /* Mark EXP saying that we need to be able to take the
5349 address of it; it should not be allocated in a register.
5350 Value is true if successful.
5351
5352 C++: we do not allow `current_class_ptr' to be addressable. */
5353
5354 bool
5355 cxx_mark_addressable (tree exp)
5356 {
5357 tree x = exp;
5358
5359 while (1)
5360 switch (TREE_CODE (x))
5361 {
5362 case ADDR_EXPR:
5363 case COMPONENT_REF:
5364 case ARRAY_REF:
5365 case REALPART_EXPR:
5366 case IMAGPART_EXPR:
5367 x = TREE_OPERAND (x, 0);
5368 break;
5369
5370 case PARM_DECL:
5371 if (x == current_class_ptr)
5372 {
5373 error ("cannot take the address of %<this%>, which is an rvalue expression");
5374 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
5375 return true;
5376 }
5377 /* Fall through. */
5378
5379 case VAR_DECL:
5380 /* Caller should not be trying to mark initialized
5381 constant fields addressable. */
5382 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
5383 || DECL_IN_AGGR_P (x) == 0
5384 || TREE_STATIC (x)
5385 || DECL_EXTERNAL (x));
5386 /* Fall through. */
5387
5388 case RESULT_DECL:
5389 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
5390 && !DECL_ARTIFICIAL (x))
5391 {
5392 if (TREE_CODE (x) == VAR_DECL && DECL_HARD_REGISTER (x))
5393 {
5394 error
5395 ("address of explicit register variable %qD requested", x);
5396 return false;
5397 }
5398 else if (extra_warnings)
5399 warning
5400 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
5401 }
5402 TREE_ADDRESSABLE (x) = 1;
5403 return true;
5404
5405 case CONST_DECL:
5406 case FUNCTION_DECL:
5407 TREE_ADDRESSABLE (x) = 1;
5408 return true;
5409
5410 case CONSTRUCTOR:
5411 TREE_ADDRESSABLE (x) = 1;
5412 return true;
5413
5414 case TARGET_EXPR:
5415 TREE_ADDRESSABLE (x) = 1;
5416 cxx_mark_addressable (TREE_OPERAND (x, 0));
5417 return true;
5418
5419 default:
5420 return true;
5421 }
5422 }
5423 \f
5424 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
5425
5426 tree
5427 build_x_conditional_expr (tree ifexp, tree op1, tree op2,
5428 tsubst_flags_t complain)
5429 {
5430 tree orig_ifexp = ifexp;
5431 tree orig_op1 = op1;
5432 tree orig_op2 = op2;
5433 tree expr;
5434
5435 if (processing_template_decl)
5436 {
5437 /* The standard says that the expression is type-dependent if
5438 IFEXP is type-dependent, even though the eventual type of the
5439 expression doesn't dependent on IFEXP. */
5440 if (type_dependent_expression_p (ifexp)
5441 /* As a GNU extension, the middle operand may be omitted. */
5442 || (op1 && type_dependent_expression_p (op1))
5443 || type_dependent_expression_p (op2))
5444 return build_min_nt (COND_EXPR, ifexp, op1, op2);
5445 ifexp = build_non_dependent_expr (ifexp);
5446 if (op1)
5447 op1 = build_non_dependent_expr (op1);
5448 op2 = build_non_dependent_expr (op2);
5449 }
5450
5451 expr = build_conditional_expr (ifexp, op1, op2, complain);
5452 if (processing_template_decl && expr != error_mark_node)
5453 return build_min_non_dep (COND_EXPR, expr,
5454 orig_ifexp, orig_op1, orig_op2);
5455 return expr;
5456 }
5457 \f
5458 /* Given a list of expressions, return a compound expression
5459 that performs them all and returns the value of the last of them. */
5460
5461 tree
5462 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
5463 tsubst_flags_t complain)
5464 {
5465 tree expr = TREE_VALUE (list);
5466
5467 if (TREE_CHAIN (list))
5468 {
5469 if (complain & tf_error)
5470 switch (exp)
5471 {
5472 case ELK_INIT:
5473 permerror (input_location, "expression list treated as compound "
5474 "expression in initializer");
5475 break;
5476 case ELK_MEM_INIT:
5477 permerror (input_location, "expression list treated as compound "
5478 "expression in mem-initializer");
5479 break;
5480 case ELK_FUNC_CAST:
5481 permerror (input_location, "expression list treated as compound "
5482 "expression in functional cast");
5483 break;
5484 default:
5485 gcc_unreachable ();
5486 }
5487 else
5488 return error_mark_node;
5489
5490 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
5491 expr = build_x_compound_expr (expr, TREE_VALUE (list),
5492 complain);
5493 }
5494
5495 return expr;
5496 }
5497
5498 /* Like build_x_compound_expr_from_list, but using a VEC. */
5499
5500 tree
5501 build_x_compound_expr_from_vec (VEC(tree,gc) *vec, const char *msg)
5502 {
5503 if (VEC_empty (tree, vec))
5504 return NULL_TREE;
5505 else if (VEC_length (tree, vec) == 1)
5506 return VEC_index (tree, vec, 0);
5507 else
5508 {
5509 tree expr;
5510 unsigned int ix;
5511 tree t;
5512
5513 if (msg != NULL)
5514 permerror (input_location,
5515 "%s expression list treated as compound expression",
5516 msg);
5517
5518 expr = VEC_index (tree, vec, 0);
5519 for (ix = 1; VEC_iterate (tree, vec, ix, t); ++ix)
5520 expr = build_x_compound_expr (expr, t, tf_warning_or_error);
5521
5522 return expr;
5523 }
5524 }
5525
5526 /* Handle overloading of the ',' operator when needed. */
5527
5528 tree
5529 build_x_compound_expr (tree op1, tree op2, tsubst_flags_t complain)
5530 {
5531 tree result;
5532 tree orig_op1 = op1;
5533 tree orig_op2 = op2;
5534
5535 if (processing_template_decl)
5536 {
5537 if (type_dependent_expression_p (op1)
5538 || type_dependent_expression_p (op2))
5539 return build_min_nt (COMPOUND_EXPR, op1, op2);
5540 op1 = build_non_dependent_expr (op1);
5541 op2 = build_non_dependent_expr (op2);
5542 }
5543
5544 result = build_new_op (COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2, NULL_TREE,
5545 /*overloaded_p=*/NULL, complain);
5546 if (!result)
5547 result = cp_build_compound_expr (op1, op2, complain);
5548
5549 if (processing_template_decl && result != error_mark_node)
5550 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
5551
5552 return result;
5553 }
5554
5555 /* Like cp_build_compound_expr, but for the c-common bits. */
5556
5557 tree
5558 build_compound_expr (location_t loc ATTRIBUTE_UNUSED, tree lhs, tree rhs)
5559 {
5560 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
5561 }
5562
5563 /* Build a compound expression. */
5564
5565 tree
5566 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
5567 {
5568 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
5569
5570 if (lhs == error_mark_node || rhs == error_mark_node)
5571 return error_mark_node;
5572
5573 if (TREE_CODE (rhs) == TARGET_EXPR)
5574 {
5575 /* If the rhs is a TARGET_EXPR, then build the compound
5576 expression inside the target_expr's initializer. This
5577 helps the compiler to eliminate unnecessary temporaries. */
5578 tree init = TREE_OPERAND (rhs, 1);
5579
5580 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
5581 TREE_OPERAND (rhs, 1) = init;
5582
5583 return rhs;
5584 }
5585
5586 if (type_unknown_p (rhs))
5587 {
5588 error ("no context to resolve type of %qE", rhs);
5589 return error_mark_node;
5590 }
5591
5592 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
5593 }
5594
5595 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
5596 casts away constness. CAST gives the type of cast. Returns true
5597 if the cast is ill-formed, false if it is well-formed.
5598
5599 ??? This function warns for casting away any qualifier not just
5600 const. We would like to specify exactly what qualifiers are casted
5601 away.
5602 */
5603
5604 static bool
5605 check_for_casting_away_constness (tree src_type, tree dest_type,
5606 enum tree_code cast, tsubst_flags_t complain)
5607 {
5608 /* C-style casts are allowed to cast away constness. With
5609 WARN_CAST_QUAL, we still want to issue a warning. */
5610 if (cast == CAST_EXPR && !warn_cast_qual)
5611 return false;
5612
5613 if (!casts_away_constness (src_type, dest_type))
5614 return false;
5615
5616 switch (cast)
5617 {
5618 case CAST_EXPR:
5619 if (complain & tf_warning)
5620 warning (OPT_Wcast_qual,
5621 "cast from type %qT to type %qT casts away qualifiers",
5622 src_type, dest_type);
5623 return false;
5624
5625 case STATIC_CAST_EXPR:
5626 if (complain & tf_error)
5627 error ("static_cast from type %qT to type %qT casts away qualifiers",
5628 src_type, dest_type);
5629 return true;
5630
5631 case REINTERPRET_CAST_EXPR:
5632 if (complain & tf_error)
5633 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
5634 src_type, dest_type);
5635 return true;
5636
5637 default:
5638 gcc_unreachable();
5639 }
5640 }
5641
5642 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
5643 (another pointer-to-member type in the same hierarchy) and return
5644 the converted expression. If ALLOW_INVERSE_P is permitted, a
5645 pointer-to-derived may be converted to pointer-to-base; otherwise,
5646 only the other direction is permitted. If C_CAST_P is true, this
5647 conversion is taking place as part of a C-style cast. */
5648
5649 tree
5650 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
5651 bool c_cast_p, tsubst_flags_t complain)
5652 {
5653 if (TYPE_PTRMEM_P (type))
5654 {
5655 tree delta;
5656
5657 if (TREE_CODE (expr) == PTRMEM_CST)
5658 expr = cplus_expand_constant (expr);
5659 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
5660 TYPE_PTRMEM_CLASS_TYPE (type),
5661 allow_inverse_p,
5662 c_cast_p, complain);
5663 if (delta == error_mark_node)
5664 return error_mark_node;
5665
5666 if (!integer_zerop (delta))
5667 {
5668 tree cond, op1, op2;
5669
5670 cond = cp_build_binary_op (input_location,
5671 EQ_EXPR,
5672 expr,
5673 build_int_cst (TREE_TYPE (expr), -1),
5674 tf_warning_or_error);
5675 op1 = build_nop (ptrdiff_type_node, expr);
5676 op2 = cp_build_binary_op (input_location,
5677 PLUS_EXPR, op1, delta,
5678 tf_warning_or_error);
5679
5680 expr = fold_build3_loc (input_location,
5681 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
5682
5683 }
5684
5685 return build_nop (type, expr);
5686 }
5687 else
5688 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
5689 allow_inverse_p, c_cast_p, complain);
5690 }
5691
5692 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
5693 this static_cast is being attempted as one of the possible casts
5694 allowed by a C-style cast. (In that case, accessibility of base
5695 classes is not considered, and it is OK to cast away
5696 constness.) Return the result of the cast. *VALID_P is set to
5697 indicate whether or not the cast was valid. */
5698
5699 static tree
5700 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
5701 bool *valid_p, tsubst_flags_t complain)
5702 {
5703 tree intype;
5704 tree result;
5705
5706 /* Assume the cast is valid. */
5707 *valid_p = true;
5708
5709 intype = TREE_TYPE (expr);
5710
5711 /* Save casted types in the function's used types hash table. */
5712 used_types_insert (type);
5713
5714 /* [expr.static.cast]
5715
5716 An lvalue of type "cv1 B", where B is a class type, can be cast
5717 to type "reference to cv2 D", where D is a class derived (clause
5718 _class.derived_) from B, if a valid standard conversion from
5719 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
5720 same cv-qualification as, or greater cv-qualification than, cv1,
5721 and B is not a virtual base class of D. */
5722 /* We check this case before checking the validity of "TYPE t =
5723 EXPR;" below because for this case:
5724
5725 struct B {};
5726 struct D : public B { D(const B&); };
5727 extern B& b;
5728 void f() { static_cast<const D&>(b); }
5729
5730 we want to avoid constructing a new D. The standard is not
5731 completely clear about this issue, but our interpretation is
5732 consistent with other compilers. */
5733 if (TREE_CODE (type) == REFERENCE_TYPE
5734 && CLASS_TYPE_P (TREE_TYPE (type))
5735 && CLASS_TYPE_P (intype)
5736 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
5737 && DERIVED_FROM_P (intype, TREE_TYPE (type))
5738 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
5739 build_pointer_type (TYPE_MAIN_VARIANT
5740 (TREE_TYPE (type))))
5741 && (c_cast_p
5742 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5743 {
5744 tree base;
5745
5746 /* There is a standard conversion from "D*" to "B*" even if "B"
5747 is ambiguous or inaccessible. If this is really a
5748 static_cast, then we check both for inaccessibility and
5749 ambiguity. However, if this is a static_cast being performed
5750 because the user wrote a C-style cast, then accessibility is
5751 not considered. */
5752 base = lookup_base (TREE_TYPE (type), intype,
5753 c_cast_p ? ba_unique : ba_check,
5754 NULL);
5755
5756 /* Convert from "B*" to "D*". This function will check that "B"
5757 is not a virtual base of "D". */
5758 expr = build_base_path (MINUS_EXPR, build_address (expr),
5759 base, /*nonnull=*/false);
5760 /* Convert the pointer to a reference -- but then remember that
5761 there are no expressions with reference type in C++.
5762
5763 We call rvalue so that there's an actual tree code
5764 (NON_LVALUE_EXPR) for the static_cast; otherwise, if the operand
5765 is a variable with the same type, the conversion would get folded
5766 away, leaving just the variable and causing lvalue_kind to give
5767 the wrong answer. */
5768 return convert_from_reference (rvalue (cp_fold_convert (type, expr)));
5769 }
5770
5771 /* "A glvalue of type cv1 T1 can be cast to type rvalue reference to
5772 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
5773 if (TREE_CODE (type) == REFERENCE_TYPE
5774 && TYPE_REF_IS_RVALUE (type)
5775 && lvalue_or_rvalue_with_address_p (expr)
5776 && reference_related_p (TREE_TYPE (type), intype)
5777 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5778 {
5779 expr = build_typed_address (expr, type);
5780 return convert_from_reference (expr);
5781 }
5782
5783 /* Resolve overloaded address here rather than once in
5784 implicit_conversion and again in the inverse code below. */
5785 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
5786 {
5787 expr = instantiate_type (type, expr, complain);
5788 intype = TREE_TYPE (expr);
5789 }
5790
5791 /* [expr.static.cast]
5792
5793 An expression e can be explicitly converted to a type T using a
5794 static_cast of the form static_cast<T>(e) if the declaration T
5795 t(e);" is well-formed, for some invented temporary variable
5796 t. */
5797 result = perform_direct_initialization_if_possible (type, expr,
5798 c_cast_p, complain);
5799 if (result)
5800 {
5801 result = convert_from_reference (result);
5802
5803 /* [expr.static.cast]
5804
5805 If T is a reference type, the result is an lvalue; otherwise,
5806 the result is an rvalue. */
5807 if (TREE_CODE (type) != REFERENCE_TYPE)
5808 result = rvalue (result);
5809 return result;
5810 }
5811
5812 /* [expr.static.cast]
5813
5814 Any expression can be explicitly converted to type cv void. */
5815 if (TREE_CODE (type) == VOID_TYPE)
5816 return convert_to_void (expr, ICV_CAST, complain);
5817
5818 /* [expr.static.cast]
5819
5820 The inverse of any standard conversion sequence (clause _conv_),
5821 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
5822 (_conv.array_), function-to-pointer (_conv.func_), and boolean
5823 (_conv.bool_) conversions, can be performed explicitly using
5824 static_cast subject to the restriction that the explicit
5825 conversion does not cast away constness (_expr.const.cast_), and
5826 the following additional rules for specific cases: */
5827 /* For reference, the conversions not excluded are: integral
5828 promotions, floating point promotion, integral conversions,
5829 floating point conversions, floating-integral conversions,
5830 pointer conversions, and pointer to member conversions. */
5831 /* DR 128
5832
5833 A value of integral _or enumeration_ type can be explicitly
5834 converted to an enumeration type. */
5835 /* The effect of all that is that any conversion between any two
5836 types which are integral, floating, or enumeration types can be
5837 performed. */
5838 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5839 || SCALAR_FLOAT_TYPE_P (type))
5840 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
5841 || SCALAR_FLOAT_TYPE_P (intype)))
5842 return ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL);
5843
5844 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
5845 && CLASS_TYPE_P (TREE_TYPE (type))
5846 && CLASS_TYPE_P (TREE_TYPE (intype))
5847 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
5848 (TREE_TYPE (intype))),
5849 build_pointer_type (TYPE_MAIN_VARIANT
5850 (TREE_TYPE (type)))))
5851 {
5852 tree base;
5853
5854 if (!c_cast_p
5855 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
5856 complain))
5857 return error_mark_node;
5858 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
5859 c_cast_p ? ba_unique : ba_check,
5860 NULL);
5861 expr = build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false);
5862 return cp_fold_convert(type, expr);
5863 }
5864
5865 if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
5866 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
5867 {
5868 tree c1;
5869 tree c2;
5870 tree t1;
5871 tree t2;
5872
5873 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
5874 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
5875
5876 if (TYPE_PTRMEM_P (type))
5877 {
5878 t1 = (build_ptrmem_type
5879 (c1,
5880 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
5881 t2 = (build_ptrmem_type
5882 (c2,
5883 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
5884 }
5885 else
5886 {
5887 t1 = intype;
5888 t2 = type;
5889 }
5890 if (can_convert (t1, t2) || can_convert (t2, t1))
5891 {
5892 if (!c_cast_p
5893 && check_for_casting_away_constness (intype, type,
5894 STATIC_CAST_EXPR,
5895 complain))
5896 return error_mark_node;
5897 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
5898 c_cast_p, complain);
5899 }
5900 }
5901
5902 /* [expr.static.cast]
5903
5904 An rvalue of type "pointer to cv void" can be explicitly
5905 converted to a pointer to object type. A value of type pointer
5906 to object converted to "pointer to cv void" and back to the
5907 original pointer type will have its original value. */
5908 if (TREE_CODE (intype) == POINTER_TYPE
5909 && VOID_TYPE_P (TREE_TYPE (intype))
5910 && TYPE_PTROB_P (type))
5911 {
5912 if (!c_cast_p
5913 && check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR,
5914 complain))
5915 return error_mark_node;
5916 return build_nop (type, expr);
5917 }
5918
5919 *valid_p = false;
5920 return error_mark_node;
5921 }
5922
5923 /* Return an expression representing static_cast<TYPE>(EXPR). */
5924
5925 tree
5926 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
5927 {
5928 tree result;
5929 bool valid_p;
5930
5931 if (type == error_mark_node || expr == error_mark_node)
5932 return error_mark_node;
5933
5934 if (processing_template_decl)
5935 {
5936 expr = build_min (STATIC_CAST_EXPR, type, expr);
5937 /* We don't know if it will or will not have side effects. */
5938 TREE_SIDE_EFFECTS (expr) = 1;
5939 return convert_from_reference (expr);
5940 }
5941
5942 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5943 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
5944 if (TREE_CODE (type) != REFERENCE_TYPE
5945 && TREE_CODE (expr) == NOP_EXPR
5946 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
5947 expr = TREE_OPERAND (expr, 0);
5948
5949 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
5950 complain);
5951 if (valid_p)
5952 return result;
5953
5954 if (complain & tf_error)
5955 error ("invalid static_cast from type %qT to type %qT",
5956 TREE_TYPE (expr), type);
5957 return error_mark_node;
5958 }
5959
5960 /* EXPR is an expression with member function or pointer-to-member
5961 function type. TYPE is a pointer type. Converting EXPR to TYPE is
5962 not permitted by ISO C++, but we accept it in some modes. If we
5963 are not in one of those modes, issue a diagnostic. Return the
5964 converted expression. */
5965
5966 tree
5967 convert_member_func_to_ptr (tree type, tree expr)
5968 {
5969 tree intype;
5970 tree decl;
5971
5972 intype = TREE_TYPE (expr);
5973 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
5974 || TREE_CODE (intype) == METHOD_TYPE);
5975
5976 if (pedantic || warn_pmf2ptr)
5977 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpmf_conversions,
5978 "converting from %qT to %qT", intype, type);
5979
5980 if (TREE_CODE (intype) == METHOD_TYPE)
5981 expr = build_addr_func (expr);
5982 else if (TREE_CODE (expr) == PTRMEM_CST)
5983 expr = build_address (PTRMEM_CST_MEMBER (expr));
5984 else
5985 {
5986 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
5987 decl = build_address (decl);
5988 expr = get_member_function_from_ptrfunc (&decl, expr);
5989 }
5990
5991 return build_nop (type, expr);
5992 }
5993
5994 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
5995 If C_CAST_P is true, this reinterpret cast is being done as part of
5996 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
5997 indicate whether or not reinterpret_cast was valid. */
5998
5999 static tree
6000 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6001 bool *valid_p, tsubst_flags_t complain)
6002 {
6003 tree intype;
6004
6005 /* Assume the cast is invalid. */
6006 if (valid_p)
6007 *valid_p = true;
6008
6009 if (type == error_mark_node || error_operand_p (expr))
6010 return error_mark_node;
6011
6012 intype = TREE_TYPE (expr);
6013
6014 /* Save casted types in the function's used types hash table. */
6015 used_types_insert (type);
6016
6017 /* [expr.reinterpret.cast]
6018 An lvalue expression of type T1 can be cast to the type
6019 "reference to T2" if an expression of type "pointer to T1" can be
6020 explicitly converted to the type "pointer to T2" using a
6021 reinterpret_cast. */
6022 if (TREE_CODE (type) == REFERENCE_TYPE)
6023 {
6024 if (! real_lvalue_p (expr))
6025 {
6026 if (complain & tf_error)
6027 error ("invalid cast of an rvalue expression of type "
6028 "%qT to type %qT",
6029 intype, type);
6030 return error_mark_node;
6031 }
6032
6033 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6034 "B" are related class types; the reinterpret_cast does not
6035 adjust the pointer. */
6036 if (TYPE_PTR_P (intype)
6037 && (complain & tf_warning)
6038 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6039 COMPARE_BASE | COMPARE_DERIVED)))
6040 warning (0, "casting %qT to %qT does not dereference pointer",
6041 intype, type);
6042
6043 expr = cp_build_addr_expr (expr, complain);
6044
6045 if (warn_strict_aliasing > 2)
6046 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
6047
6048 if (expr != error_mark_node)
6049 expr = build_reinterpret_cast_1
6050 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
6051 valid_p, complain);
6052 if (expr != error_mark_node)
6053 /* cp_build_indirect_ref isn't right for rvalue refs. */
6054 expr = convert_from_reference (fold_convert (type, expr));
6055 return expr;
6056 }
6057
6058 /* As a G++ extension, we consider conversions from member
6059 functions, and pointers to member functions to
6060 pointer-to-function and pointer-to-void types. If
6061 -Wno-pmf-conversions has not been specified,
6062 convert_member_func_to_ptr will issue an error message. */
6063 if ((TYPE_PTRMEMFUNC_P (intype)
6064 || TREE_CODE (intype) == METHOD_TYPE)
6065 && TYPE_PTR_P (type)
6066 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6067 || VOID_TYPE_P (TREE_TYPE (type))))
6068 return convert_member_func_to_ptr (type, expr);
6069
6070 /* If the cast is not to a reference type, the lvalue-to-rvalue,
6071 array-to-pointer, and function-to-pointer conversions are
6072 performed. */
6073 expr = decay_conversion (expr);
6074
6075 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6076 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6077 if (TREE_CODE (expr) == NOP_EXPR
6078 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6079 expr = TREE_OPERAND (expr, 0);
6080
6081 if (error_operand_p (expr))
6082 return error_mark_node;
6083
6084 intype = TREE_TYPE (expr);
6085
6086 /* [expr.reinterpret.cast]
6087 A pointer can be converted to any integral type large enough to
6088 hold it. ... A value of type std::nullptr_t can be converted to
6089 an integral type; the conversion has the same meaning and
6090 validity as a conversion of (void*)0 to the integral type. */
6091 if (CP_INTEGRAL_TYPE_P (type)
6092 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
6093 {
6094 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
6095 {
6096 if (complain & tf_error)
6097 permerror (input_location, "cast from %qT to %qT loses precision",
6098 intype, type);
6099 else
6100 return error_mark_node;
6101 }
6102 if (NULLPTR_TYPE_P (intype))
6103 return build_int_cst (type, 0);
6104 }
6105 /* [expr.reinterpret.cast]
6106 A value of integral or enumeration type can be explicitly
6107 converted to a pointer. */
6108 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
6109 /* OK */
6110 ;
6111 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
6112 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6113 return fold_if_not_in_template (build_nop (type, expr));
6114 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
6115 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
6116 {
6117 tree sexpr = expr;
6118
6119 if (!c_cast_p
6120 && check_for_casting_away_constness (intype, type,
6121 REINTERPRET_CAST_EXPR,
6122 complain))
6123 return error_mark_node;
6124 /* Warn about possible alignment problems. */
6125 if (STRICT_ALIGNMENT && warn_cast_align
6126 && (complain & tf_warning)
6127 && !VOID_TYPE_P (type)
6128 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
6129 && COMPLETE_TYPE_P (TREE_TYPE (type))
6130 && COMPLETE_TYPE_P (TREE_TYPE (intype))
6131 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
6132 warning (OPT_Wcast_align, "cast from %qT to %qT "
6133 "increases required alignment of target type", intype, type);
6134
6135 /* We need to strip nops here, because the front end likes to
6136 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
6137 STRIP_NOPS (sexpr);
6138 if (warn_strict_aliasing <= 2)
6139 strict_aliasing_warning (intype, type, sexpr);
6140
6141 return fold_if_not_in_template (build_nop (type, expr));
6142 }
6143 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
6144 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
6145 {
6146 if (pedantic && (complain & tf_warning))
6147 /* Only issue a warning, as we have always supported this
6148 where possible, and it is necessary in some cases. DR 195
6149 addresses this issue, but as of 2004/10/26 is still in
6150 drafting. */
6151 warning (0, "ISO C++ forbids casting between pointer-to-function and pointer-to-object");
6152 return fold_if_not_in_template (build_nop (type, expr));
6153 }
6154 else if (TREE_CODE (type) == VECTOR_TYPE)
6155 return fold_if_not_in_template (convert_to_vector (type, expr));
6156 else if (TREE_CODE (intype) == VECTOR_TYPE
6157 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6158 return fold_if_not_in_template (convert_to_integer (type, expr));
6159 else
6160 {
6161 if (valid_p)
6162 *valid_p = false;
6163 if (complain & tf_error)
6164 error ("invalid cast from type %qT to type %qT", intype, type);
6165 return error_mark_node;
6166 }
6167
6168 return cp_convert (type, expr);
6169 }
6170
6171 tree
6172 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
6173 {
6174 if (type == error_mark_node || expr == error_mark_node)
6175 return error_mark_node;
6176
6177 if (processing_template_decl)
6178 {
6179 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
6180
6181 if (!TREE_SIDE_EFFECTS (t)
6182 && type_dependent_expression_p (expr))
6183 /* There might turn out to be side effects inside expr. */
6184 TREE_SIDE_EFFECTS (t) = 1;
6185 return convert_from_reference (t);
6186 }
6187
6188 return build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
6189 /*valid_p=*/NULL, complain);
6190 }
6191
6192 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
6193 return an appropriate expression. Otherwise, return
6194 error_mark_node. If the cast is not valid, and COMPLAIN is true,
6195 then a diagnostic will be issued. If VALID_P is non-NULL, we are
6196 performing a C-style cast, its value upon return will indicate
6197 whether or not the conversion succeeded. */
6198
6199 static tree
6200 build_const_cast_1 (tree dst_type, tree expr, tsubst_flags_t complain,
6201 bool *valid_p)
6202 {
6203 tree src_type;
6204 tree reference_type;
6205
6206 /* Callers are responsible for handling error_mark_node as a
6207 destination type. */
6208 gcc_assert (dst_type != error_mark_node);
6209 /* In a template, callers should be building syntactic
6210 representations of casts, not using this machinery. */
6211 gcc_assert (!processing_template_decl);
6212
6213 /* Assume the conversion is invalid. */
6214 if (valid_p)
6215 *valid_p = false;
6216
6217 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRMEM_P (dst_type))
6218 {
6219 if (complain & tf_error)
6220 error ("invalid use of const_cast with type %qT, "
6221 "which is not a pointer, "
6222 "reference, nor a pointer-to-data-member type", dst_type);
6223 return error_mark_node;
6224 }
6225
6226 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
6227 {
6228 if (complain & tf_error)
6229 error ("invalid use of const_cast with type %qT, which is a pointer "
6230 "or reference to a function type", dst_type);
6231 return error_mark_node;
6232 }
6233
6234 /* Save casted types in the function's used types hash table. */
6235 used_types_insert (dst_type);
6236
6237 src_type = TREE_TYPE (expr);
6238 /* Expressions do not really have reference types. */
6239 if (TREE_CODE (src_type) == REFERENCE_TYPE)
6240 src_type = TREE_TYPE (src_type);
6241
6242 /* [expr.const.cast]
6243
6244 For two object types T1 and T2, if a pointer to T1 can be explicitly
6245 converted to the type "pointer to T2" using a const_cast, then the
6246 following conversions can also be made:
6247
6248 -- an lvalue of type T1 can be explicitly converted to an lvalue of
6249 type T2 using the cast const_cast<T2&>;
6250
6251 -- a glvalue of type T1 can be explicitly converted to an xvalue of
6252 type T2 using the cast const_cast<T2&&>; and
6253
6254 -- if T1 is a class type, a prvalue of type T1 can be explicitly
6255 converted to an xvalue of type T2 using the cast const_cast<T2&&>. */
6256
6257 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
6258 {
6259 reference_type = dst_type;
6260 if (!TYPE_REF_IS_RVALUE (dst_type)
6261 ? real_lvalue_p (expr)
6262 : (CLASS_TYPE_P (TREE_TYPE (dst_type))
6263 ? lvalue_p (expr)
6264 : lvalue_or_rvalue_with_address_p (expr)))
6265 /* OK. */;
6266 else
6267 {
6268 if (complain & tf_error)
6269 error ("invalid const_cast of an rvalue of type %qT to type %qT",
6270 src_type, dst_type);
6271 return error_mark_node;
6272 }
6273 dst_type = build_pointer_type (TREE_TYPE (dst_type));
6274 src_type = build_pointer_type (src_type);
6275 }
6276 else
6277 {
6278 reference_type = NULL_TREE;
6279 /* If the destination type is not a reference type, the
6280 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6281 conversions are performed. */
6282 src_type = type_decays_to (src_type);
6283 if (src_type == error_mark_node)
6284 return error_mark_node;
6285 }
6286
6287 if ((TYPE_PTR_P (src_type) || TYPE_PTRMEM_P (src_type))
6288 && comp_ptr_ttypes_const (dst_type, src_type))
6289 {
6290 if (valid_p)
6291 {
6292 *valid_p = true;
6293 /* This cast is actually a C-style cast. Issue a warning if
6294 the user is making a potentially unsafe cast. */
6295 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR,
6296 complain);
6297 }
6298 if (reference_type)
6299 {
6300 expr = cp_build_addr_expr (expr, complain);
6301 expr = build_nop (reference_type, expr);
6302 return convert_from_reference (expr);
6303 }
6304 else
6305 {
6306 expr = decay_conversion (expr);
6307 /* build_c_cast puts on a NOP_EXPR to make the result not an
6308 lvalue. Strip such NOP_EXPRs if VALUE is being used in
6309 non-lvalue context. */
6310 if (TREE_CODE (expr) == NOP_EXPR
6311 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6312 expr = TREE_OPERAND (expr, 0);
6313 return build_nop (dst_type, expr);
6314 }
6315 }
6316
6317 if (complain & tf_error)
6318 error ("invalid const_cast from type %qT to type %qT",
6319 src_type, dst_type);
6320 return error_mark_node;
6321 }
6322
6323 tree
6324 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
6325 {
6326 if (type == error_mark_node || error_operand_p (expr))
6327 return error_mark_node;
6328
6329 if (processing_template_decl)
6330 {
6331 tree t = build_min (CONST_CAST_EXPR, type, expr);
6332
6333 if (!TREE_SIDE_EFFECTS (t)
6334 && type_dependent_expression_p (expr))
6335 /* There might turn out to be side effects inside expr. */
6336 TREE_SIDE_EFFECTS (t) = 1;
6337 return convert_from_reference (t);
6338 }
6339
6340 return build_const_cast_1 (type, expr, complain,
6341 /*valid_p=*/NULL);
6342 }
6343
6344 /* Like cp_build_c_cast, but for the c-common bits. */
6345
6346 tree
6347 build_c_cast (location_t loc ATTRIBUTE_UNUSED, tree type, tree expr)
6348 {
6349 return cp_build_c_cast (type, expr, tf_warning_or_error);
6350 }
6351
6352 /* Build an expression representing an explicit C-style cast to type
6353 TYPE of expression EXPR. */
6354
6355 tree
6356 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
6357 {
6358 tree value = expr;
6359 tree result;
6360 bool valid_p;
6361
6362 if (type == error_mark_node || error_operand_p (expr))
6363 return error_mark_node;
6364
6365 if (processing_template_decl)
6366 {
6367 tree t = build_min (CAST_EXPR, type,
6368 tree_cons (NULL_TREE, value, NULL_TREE));
6369 /* We don't know if it will or will not have side effects. */
6370 TREE_SIDE_EFFECTS (t) = 1;
6371 return convert_from_reference (t);
6372 }
6373
6374 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
6375 'Class') should always be retained, because this information aids
6376 in method lookup. */
6377 if (objc_is_object_ptr (type)
6378 && objc_is_object_ptr (TREE_TYPE (expr)))
6379 return build_nop (type, expr);
6380
6381 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6382 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6383 if (TREE_CODE (type) != REFERENCE_TYPE
6384 && TREE_CODE (value) == NOP_EXPR
6385 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
6386 value = TREE_OPERAND (value, 0);
6387
6388 if (TREE_CODE (type) == ARRAY_TYPE)
6389 {
6390 /* Allow casting from T1* to T2[] because Cfront allows it.
6391 NIHCL uses it. It is not valid ISO C++ however. */
6392 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
6393 {
6394 if (complain & tf_error)
6395 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
6396 else
6397 return error_mark_node;
6398 type = build_pointer_type (TREE_TYPE (type));
6399 }
6400 else
6401 {
6402 if (complain & tf_error)
6403 error ("ISO C++ forbids casting to an array type %qT", type);
6404 return error_mark_node;
6405 }
6406 }
6407
6408 if (TREE_CODE (type) == FUNCTION_TYPE
6409 || TREE_CODE (type) == METHOD_TYPE)
6410 {
6411 if (complain & tf_error)
6412 error ("invalid cast to function type %qT", type);
6413 return error_mark_node;
6414 }
6415
6416 if (TREE_CODE (type) == POINTER_TYPE
6417 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
6418 /* Casting to an integer of smaller size is an error detected elsewhere. */
6419 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
6420 /* Don't warn about converting any constant. */
6421 && !TREE_CONSTANT (value))
6422 warning_at (input_location, OPT_Wint_to_pointer_cast,
6423 "cast to pointer from integer of different size");
6424
6425 /* A C-style cast can be a const_cast. */
6426 result = build_const_cast_1 (type, value, complain & tf_warning,
6427 &valid_p);
6428 if (valid_p)
6429 return result;
6430
6431 /* Or a static cast. */
6432 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
6433 &valid_p, complain);
6434 /* Or a reinterpret_cast. */
6435 if (!valid_p)
6436 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
6437 &valid_p, complain);
6438 /* The static_cast or reinterpret_cast may be followed by a
6439 const_cast. */
6440 if (valid_p
6441 /* A valid cast may result in errors if, for example, a
6442 conversion to am ambiguous base class is required. */
6443 && !error_operand_p (result))
6444 {
6445 tree result_type;
6446
6447 /* Non-class rvalues always have cv-unqualified type. */
6448 if (!CLASS_TYPE_P (type))
6449 type = TYPE_MAIN_VARIANT (type);
6450 result_type = TREE_TYPE (result);
6451 if (!CLASS_TYPE_P (result_type) && TREE_CODE (type) != REFERENCE_TYPE)
6452 result_type = TYPE_MAIN_VARIANT (result_type);
6453 /* If the type of RESULT does not match TYPE, perform a
6454 const_cast to make it match. If the static_cast or
6455 reinterpret_cast succeeded, we will differ by at most
6456 cv-qualification, so the follow-on const_cast is guaranteed
6457 to succeed. */
6458 if (!same_type_p (non_reference (type), non_reference (result_type)))
6459 {
6460 result = build_const_cast_1 (type, result, false, &valid_p);
6461 gcc_assert (valid_p);
6462 }
6463 return result;
6464 }
6465
6466 return error_mark_node;
6467 }
6468 \f
6469 /* For use from the C common bits. */
6470 tree
6471 build_modify_expr (location_t location ATTRIBUTE_UNUSED,
6472 tree lhs, tree lhs_origtype ATTRIBUTE_UNUSED,
6473 enum tree_code modifycode,
6474 location_t rhs_location ATTRIBUTE_UNUSED, tree rhs,
6475 tree rhs_origtype ATTRIBUTE_UNUSED)
6476 {
6477 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
6478 }
6479
6480 /* Build an assignment expression of lvalue LHS from value RHS.
6481 MODIFYCODE is the code for a binary operator that we use
6482 to combine the old value of LHS with RHS to get the new value.
6483 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
6484
6485 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
6486
6487 tree
6488 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6489 tsubst_flags_t complain)
6490 {
6491 tree result;
6492 tree newrhs = rhs;
6493 tree lhstype = TREE_TYPE (lhs);
6494 tree olhstype = lhstype;
6495 bool plain_assign = (modifycode == NOP_EXPR);
6496
6497 /* Avoid duplicate error messages from operands that had errors. */
6498 if (error_operand_p (lhs) || error_operand_p (rhs))
6499 return error_mark_node;
6500
6501 /* Handle control structure constructs used as "lvalues". */
6502 switch (TREE_CODE (lhs))
6503 {
6504 /* Handle --foo = 5; as these are valid constructs in C++. */
6505 case PREDECREMENT_EXPR:
6506 case PREINCREMENT_EXPR:
6507 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6508 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6509 stabilize_reference (TREE_OPERAND (lhs, 0)),
6510 TREE_OPERAND (lhs, 1));
6511 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
6512 modifycode, rhs, complain);
6513 if (newrhs == error_mark_node)
6514 return error_mark_node;
6515 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6516
6517 /* Handle (a, b) used as an "lvalue". */
6518 case COMPOUND_EXPR:
6519 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6520 modifycode, rhs, complain);
6521 if (newrhs == error_mark_node)
6522 return error_mark_node;
6523 return build2 (COMPOUND_EXPR, lhstype,
6524 TREE_OPERAND (lhs, 0), newrhs);
6525
6526 case MODIFY_EXPR:
6527 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6528 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6529 stabilize_reference (TREE_OPERAND (lhs, 0)),
6530 TREE_OPERAND (lhs, 1));
6531 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
6532 complain);
6533 if (newrhs == error_mark_node)
6534 return error_mark_node;
6535 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6536
6537 case MIN_EXPR:
6538 case MAX_EXPR:
6539 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
6540 when neither operand has side-effects. */
6541 if (!lvalue_or_else (lhs, lv_assign, complain))
6542 return error_mark_node;
6543
6544 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
6545 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
6546
6547 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
6548 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
6549 boolean_type_node,
6550 TREE_OPERAND (lhs, 0),
6551 TREE_OPERAND (lhs, 1)),
6552 TREE_OPERAND (lhs, 0),
6553 TREE_OPERAND (lhs, 1));
6554 /* Fall through. */
6555
6556 /* Handle (a ? b : c) used as an "lvalue". */
6557 case COND_EXPR:
6558 {
6559 /* Produce (a ? (b = rhs) : (c = rhs))
6560 except that the RHS goes through a save-expr
6561 so the code to compute it is only emitted once. */
6562 tree cond;
6563 tree preeval = NULL_TREE;
6564
6565 if (VOID_TYPE_P (TREE_TYPE (rhs)))
6566 {
6567 if (complain & tf_error)
6568 error ("void value not ignored as it ought to be");
6569 return error_mark_node;
6570 }
6571
6572 rhs = stabilize_expr (rhs, &preeval);
6573
6574 /* Check this here to avoid odd errors when trying to convert
6575 a throw to the type of the COND_EXPR. */
6576 if (!lvalue_or_else (lhs, lv_assign, complain))
6577 return error_mark_node;
6578
6579 cond = build_conditional_expr
6580 (TREE_OPERAND (lhs, 0),
6581 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6582 modifycode, rhs, complain),
6583 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
6584 modifycode, rhs, complain),
6585 complain);
6586
6587 if (cond == error_mark_node)
6588 return cond;
6589 /* Make sure the code to compute the rhs comes out
6590 before the split. */
6591 if (preeval)
6592 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
6593 return cond;
6594 }
6595
6596 default:
6597 break;
6598 }
6599
6600 if (modifycode == INIT_EXPR)
6601 {
6602 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
6603 /* Do the default thing. */;
6604 else if (TREE_CODE (rhs) == CONSTRUCTOR)
6605 {
6606 /* Compound literal. */
6607 if (! same_type_p (TREE_TYPE (rhs), lhstype))
6608 /* Call convert to generate an error; see PR 11063. */
6609 rhs = convert (lhstype, rhs);
6610 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
6611 TREE_SIDE_EFFECTS (result) = 1;
6612 return result;
6613 }
6614 else if (! MAYBE_CLASS_TYPE_P (lhstype))
6615 /* Do the default thing. */;
6616 else
6617 {
6618 VEC(tree,gc) *rhs_vec = make_tree_vector_single (rhs);
6619 result = build_special_member_call (lhs, complete_ctor_identifier,
6620 &rhs_vec, lhstype, LOOKUP_NORMAL,
6621 complain);
6622 release_tree_vector (rhs_vec);
6623 if (result == NULL_TREE)
6624 return error_mark_node;
6625 return result;
6626 }
6627 }
6628 else
6629 {
6630 lhs = require_complete_type_sfinae (lhs, complain);
6631 if (lhs == error_mark_node)
6632 return error_mark_node;
6633
6634 if (modifycode == NOP_EXPR)
6635 {
6636 if (c_dialect_objc ())
6637 {
6638 result = objc_maybe_build_modify_expr (lhs, rhs);
6639 if (result)
6640 return result;
6641 }
6642
6643 /* `operator=' is not an inheritable operator. */
6644 if (! MAYBE_CLASS_TYPE_P (lhstype))
6645 /* Do the default thing. */;
6646 else
6647 {
6648 result = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL,
6649 lhs, rhs, make_node (NOP_EXPR),
6650 /*overloaded_p=*/NULL,
6651 complain);
6652 if (result == NULL_TREE)
6653 return error_mark_node;
6654 return result;
6655 }
6656 lhstype = olhstype;
6657 }
6658 else
6659 {
6660 /* A binary op has been requested. Combine the old LHS
6661 value with the RHS producing the value we should actually
6662 store into the LHS. */
6663 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
6664 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
6665 || MAYBE_CLASS_TYPE_P (lhstype)));
6666
6667 lhs = stabilize_reference (lhs);
6668 newrhs = cp_build_binary_op (input_location,
6669 modifycode, lhs, rhs,
6670 complain);
6671 if (newrhs == error_mark_node)
6672 {
6673 if (complain & tf_error)
6674 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
6675 TREE_TYPE (lhs), TREE_TYPE (rhs));
6676 return error_mark_node;
6677 }
6678
6679 /* Now it looks like a plain assignment. */
6680 modifycode = NOP_EXPR;
6681 if (c_dialect_objc ())
6682 {
6683 result = objc_maybe_build_modify_expr (lhs, newrhs);
6684 if (result)
6685 return result;
6686 }
6687 }
6688 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
6689 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
6690 }
6691
6692 /* The left-hand side must be an lvalue. */
6693 if (!lvalue_or_else (lhs, lv_assign, complain))
6694 return error_mark_node;
6695
6696 /* Warn about modifying something that is `const'. Don't warn if
6697 this is initialization. */
6698 if (modifycode != INIT_EXPR
6699 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
6700 /* Functions are not modifiable, even though they are
6701 lvalues. */
6702 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
6703 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
6704 /* If it's an aggregate and any field is const, then it is
6705 effectively const. */
6706 || (CLASS_TYPE_P (lhstype)
6707 && C_TYPE_FIELDS_READONLY (lhstype))))
6708 {
6709 if (complain & tf_error)
6710 cxx_readonly_error (lhs, lv_assign);
6711 else
6712 return error_mark_node;
6713 }
6714
6715 /* If storing into a structure or union member, it may have been given a
6716 lowered bitfield type. We need to convert to the declared type first,
6717 so retrieve it now. */
6718
6719 olhstype = unlowered_expr_type (lhs);
6720
6721 /* Convert new value to destination type. */
6722
6723 if (TREE_CODE (lhstype) == ARRAY_TYPE)
6724 {
6725 int from_array;
6726
6727 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
6728 {
6729 if (modifycode != INIT_EXPR)
6730 {
6731 if (complain & tf_error)
6732 error ("assigning to an array from an initializer list");
6733 return error_mark_node;
6734 }
6735 if (check_array_initializer (lhs, lhstype, newrhs))
6736 return error_mark_node;
6737 newrhs = digest_init (lhstype, newrhs, complain);
6738 }
6739
6740 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
6741 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
6742 {
6743 if (complain & tf_error)
6744 error ("incompatible types in assignment of %qT to %qT",
6745 TREE_TYPE (rhs), lhstype);
6746 return error_mark_node;
6747 }
6748
6749 /* Allow array assignment in compiler-generated code. */
6750 else if (!current_function_decl
6751 || !DECL_DEFAULTED_FN (current_function_decl))
6752 {
6753 /* This routine is used for both initialization and assignment.
6754 Make sure the diagnostic message differentiates the context. */
6755 if (complain & tf_error)
6756 {
6757 if (modifycode == INIT_EXPR)
6758 error ("array used as initializer");
6759 else
6760 error ("invalid array assignment");
6761 }
6762 return error_mark_node;
6763 }
6764
6765 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
6766 ? 1 + (modifycode != INIT_EXPR): 0;
6767 return build_vec_init (lhs, NULL_TREE, newrhs,
6768 /*explicit_value_init_p=*/false,
6769 from_array, complain);
6770 }
6771
6772 if (modifycode == INIT_EXPR)
6773 /* Calls with INIT_EXPR are all direct-initialization, so don't set
6774 LOOKUP_ONLYCONVERTING. */
6775 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
6776 ICR_INIT, NULL_TREE, 0,
6777 complain);
6778 else
6779 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
6780 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
6781
6782 if (!same_type_p (lhstype, olhstype))
6783 newrhs = cp_convert_and_check (lhstype, newrhs);
6784
6785 if (modifycode != INIT_EXPR)
6786 {
6787 if (TREE_CODE (newrhs) == CALL_EXPR
6788 && TYPE_NEEDS_CONSTRUCTING (lhstype))
6789 newrhs = build_cplus_new (lhstype, newrhs, complain);
6790
6791 /* Can't initialize directly from a TARGET_EXPR, since that would
6792 cause the lhs to be constructed twice, and possibly result in
6793 accidental self-initialization. So we force the TARGET_EXPR to be
6794 expanded without a target. */
6795 if (TREE_CODE (newrhs) == TARGET_EXPR)
6796 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
6797 TREE_OPERAND (newrhs, 0));
6798 }
6799
6800 if (newrhs == error_mark_node)
6801 return error_mark_node;
6802
6803 if (c_dialect_objc () && flag_objc_gc)
6804 {
6805 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
6806
6807 if (result)
6808 return result;
6809 }
6810
6811 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6812 lhstype, lhs, newrhs);
6813
6814 TREE_SIDE_EFFECTS (result) = 1;
6815 if (!plain_assign)
6816 TREE_NO_WARNING (result) = 1;
6817
6818 return result;
6819 }
6820
6821 tree
6822 build_x_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6823 tsubst_flags_t complain)
6824 {
6825 if (processing_template_decl)
6826 return build_min_nt (MODOP_EXPR, lhs,
6827 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
6828
6829 if (modifycode != NOP_EXPR)
6830 {
6831 tree rval = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
6832 make_node (modifycode),
6833 /*overloaded_p=*/NULL,
6834 complain);
6835 if (rval)
6836 {
6837 TREE_NO_WARNING (rval) = 1;
6838 return rval;
6839 }
6840 }
6841 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
6842 }
6843
6844 /* Helper function for get_delta_difference which assumes FROM is a base
6845 class of TO. Returns a delta for the conversion of pointer-to-member
6846 of FROM to pointer-to-member of TO. If the conversion is invalid and
6847 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
6848 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
6849 If C_CAST_P is true, this conversion is taking place as part of a
6850 C-style cast. */
6851
6852 static tree
6853 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
6854 tsubst_flags_t complain)
6855 {
6856 tree binfo;
6857 base_kind kind;
6858 base_access access = c_cast_p ? ba_unique : ba_check;
6859
6860 /* Note: ba_quiet does not distinguish between access control and
6861 ambiguity. */
6862 if (!(complain & tf_error))
6863 access |= ba_quiet;
6864
6865 binfo = lookup_base (to, from, access, &kind);
6866
6867 if (kind == bk_inaccessible || kind == bk_ambig)
6868 {
6869 if (!(complain & tf_error))
6870 return error_mark_node;
6871
6872 error (" in pointer to member function conversion");
6873 return size_zero_node;
6874 }
6875 else if (binfo)
6876 {
6877 if (kind != bk_via_virtual)
6878 return BINFO_OFFSET (binfo);
6879 else
6880 /* FROM is a virtual base class of TO. Issue an error or warning
6881 depending on whether or not this is a reinterpret cast. */
6882 {
6883 if (!(complain & tf_error))
6884 return error_mark_node;
6885
6886 error ("pointer to member conversion via virtual base %qT",
6887 BINFO_TYPE (binfo_from_vbase (binfo)));
6888
6889 return size_zero_node;
6890 }
6891 }
6892 else
6893 return NULL_TREE;
6894 }
6895
6896 /* Get difference in deltas for different pointer to member function
6897 types. If the conversion is invalid and tf_error is not set in
6898 COMPLAIN, returns error_mark_node, otherwise returns an integer
6899 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
6900 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
6901 conversions as well. If C_CAST_P is true this conversion is taking
6902 place as part of a C-style cast.
6903
6904 Note that the naming of FROM and TO is kind of backwards; the return
6905 value is what we add to a TO in order to get a FROM. They are named
6906 this way because we call this function to find out how to convert from
6907 a pointer to member of FROM to a pointer to member of TO. */
6908
6909 static tree
6910 get_delta_difference (tree from, tree to,
6911 bool allow_inverse_p,
6912 bool c_cast_p, tsubst_flags_t complain)
6913 {
6914 tree result;
6915
6916 if (same_type_ignoring_top_level_qualifiers_p (from, to))
6917 /* Pointer to member of incomplete class is permitted*/
6918 result = size_zero_node;
6919 else
6920 result = get_delta_difference_1 (from, to, c_cast_p, complain);
6921
6922 if (result == error_mark_node)
6923 return error_mark_node;
6924
6925 if (!result)
6926 {
6927 if (!allow_inverse_p)
6928 {
6929 if (!(complain & tf_error))
6930 return error_mark_node;
6931
6932 error_not_base_type (from, to);
6933 error (" in pointer to member conversion");
6934 result = size_zero_node;
6935 }
6936 else
6937 {
6938 result = get_delta_difference_1 (to, from, c_cast_p, complain);
6939
6940 if (result == error_mark_node)
6941 return error_mark_node;
6942
6943 if (result)
6944 result = size_diffop_loc (input_location,
6945 size_zero_node, result);
6946 else
6947 {
6948 if (!(complain & tf_error))
6949 return error_mark_node;
6950
6951 error_not_base_type (from, to);
6952 error (" in pointer to member conversion");
6953 result = size_zero_node;
6954 }
6955 }
6956 }
6957
6958 return fold_if_not_in_template (convert_to_integer (ptrdiff_type_node,
6959 result));
6960 }
6961
6962 /* Return a constructor for the pointer-to-member-function TYPE using
6963 the other components as specified. */
6964
6965 tree
6966 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
6967 {
6968 tree u = NULL_TREE;
6969 tree delta_field;
6970 tree pfn_field;
6971 VEC(constructor_elt, gc) *v;
6972
6973 /* Pull the FIELD_DECLs out of the type. */
6974 pfn_field = TYPE_FIELDS (type);
6975 delta_field = DECL_CHAIN (pfn_field);
6976
6977 /* Make sure DELTA has the type we want. */
6978 delta = convert_and_check (delta_type_node, delta);
6979
6980 /* Convert to the correct target type if necessary. */
6981 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
6982
6983 /* Finish creating the initializer. */
6984 v = VEC_alloc(constructor_elt, gc, 2);
6985 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
6986 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
6987 u = build_constructor (type, v);
6988 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
6989 TREE_STATIC (u) = (TREE_CONSTANT (u)
6990 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
6991 != NULL_TREE)
6992 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
6993 != NULL_TREE));
6994 return u;
6995 }
6996
6997 /* Build a constructor for a pointer to member function. It can be
6998 used to initialize global variables, local variable, or used
6999 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
7000 want to be.
7001
7002 If FORCE is nonzero, then force this conversion, even if
7003 we would rather not do it. Usually set when using an explicit
7004 cast. A C-style cast is being processed iff C_CAST_P is true.
7005
7006 Return error_mark_node, if something goes wrong. */
7007
7008 tree
7009 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
7010 tsubst_flags_t complain)
7011 {
7012 tree fn;
7013 tree pfn_type;
7014 tree to_type;
7015
7016 if (error_operand_p (pfn))
7017 return error_mark_node;
7018
7019 pfn_type = TREE_TYPE (pfn);
7020 to_type = build_ptrmemfunc_type (type);
7021
7022 /* Handle multiple conversions of pointer to member functions. */
7023 if (TYPE_PTRMEMFUNC_P (pfn_type))
7024 {
7025 tree delta = NULL_TREE;
7026 tree npfn = NULL_TREE;
7027 tree n;
7028
7029 if (!force
7030 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn, LOOKUP_NORMAL))
7031 error ("invalid conversion to type %qT from type %qT",
7032 to_type, pfn_type);
7033
7034 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
7035 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7036 force,
7037 c_cast_p, complain);
7038 if (n == error_mark_node)
7039 return error_mark_node;
7040
7041 /* We don't have to do any conversion to convert a
7042 pointer-to-member to its own type. But, we don't want to
7043 just return a PTRMEM_CST if there's an explicit cast; that
7044 cast should make the expression an invalid template argument. */
7045 if (TREE_CODE (pfn) != PTRMEM_CST)
7046 {
7047 if (same_type_p (to_type, pfn_type))
7048 return pfn;
7049 else if (integer_zerop (n))
7050 return build_reinterpret_cast (to_type, pfn,
7051 tf_warning_or_error);
7052 }
7053
7054 if (TREE_SIDE_EFFECTS (pfn))
7055 pfn = save_expr (pfn);
7056
7057 /* Obtain the function pointer and the current DELTA. */
7058 if (TREE_CODE (pfn) == PTRMEM_CST)
7059 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
7060 else
7061 {
7062 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
7063 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
7064 }
7065
7066 /* Just adjust the DELTA field. */
7067 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7068 (TREE_TYPE (delta), ptrdiff_type_node));
7069 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
7070 n = cp_build_binary_op (input_location,
7071 LSHIFT_EXPR, n, integer_one_node,
7072 tf_warning_or_error);
7073 delta = cp_build_binary_op (input_location,
7074 PLUS_EXPR, delta, n, tf_warning_or_error);
7075 return build_ptrmemfunc1 (to_type, delta, npfn);
7076 }
7077
7078 /* Handle null pointer to member function conversions. */
7079 if (null_ptr_cst_p (pfn))
7080 {
7081 pfn = build_c_cast (input_location, type, integer_zero_node);
7082 return build_ptrmemfunc1 (to_type,
7083 integer_zero_node,
7084 pfn);
7085 }
7086
7087 if (type_unknown_p (pfn))
7088 return instantiate_type (type, pfn, tf_warning_or_error);
7089
7090 fn = TREE_OPERAND (pfn, 0);
7091 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7092 /* In a template, we will have preserved the
7093 OFFSET_REF. */
7094 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
7095 return make_ptrmem_cst (to_type, fn);
7096 }
7097
7098 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
7099 given by CST.
7100
7101 ??? There is no consistency as to the types returned for the above
7102 values. Some code acts as if it were a sizetype and some as if it were
7103 integer_type_node. */
7104
7105 void
7106 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
7107 {
7108 tree type = TREE_TYPE (cst);
7109 tree fn = PTRMEM_CST_MEMBER (cst);
7110 tree ptr_class, fn_class;
7111
7112 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7113
7114 /* The class that the function belongs to. */
7115 fn_class = DECL_CONTEXT (fn);
7116
7117 /* The class that we're creating a pointer to member of. */
7118 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
7119
7120 /* First, calculate the adjustment to the function's class. */
7121 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
7122 /*c_cast_p=*/0, tf_warning_or_error);
7123
7124 if (!DECL_VIRTUAL_P (fn))
7125 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type), build_addr_func (fn));
7126 else
7127 {
7128 /* If we're dealing with a virtual function, we have to adjust 'this'
7129 again, to point to the base which provides the vtable entry for
7130 fn; the call will do the opposite adjustment. */
7131 tree orig_class = DECL_CONTEXT (fn);
7132 tree binfo = binfo_or_else (orig_class, fn_class);
7133 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7134 *delta, BINFO_OFFSET (binfo));
7135 *delta = fold_if_not_in_template (*delta);
7136
7137 /* We set PFN to the vtable offset at which the function can be
7138 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
7139 case delta is shifted left, and then incremented). */
7140 *pfn = DECL_VINDEX (fn);
7141 *pfn = build2 (MULT_EXPR, integer_type_node, *pfn,
7142 TYPE_SIZE_UNIT (vtable_entry_type));
7143 *pfn = fold_if_not_in_template (*pfn);
7144
7145 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
7146 {
7147 case ptrmemfunc_vbit_in_pfn:
7148 *pfn = build2 (PLUS_EXPR, integer_type_node, *pfn,
7149 integer_one_node);
7150 *pfn = fold_if_not_in_template (*pfn);
7151 break;
7152
7153 case ptrmemfunc_vbit_in_delta:
7154 *delta = build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
7155 *delta, integer_one_node);
7156 *delta = fold_if_not_in_template (*delta);
7157 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7158 *delta, integer_one_node);
7159 *delta = fold_if_not_in_template (*delta);
7160 break;
7161
7162 default:
7163 gcc_unreachable ();
7164 }
7165
7166 *pfn = build_nop (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
7167 *pfn = fold_if_not_in_template (*pfn);
7168 }
7169 }
7170
7171 /* Return an expression for PFN from the pointer-to-member function
7172 given by T. */
7173
7174 static tree
7175 pfn_from_ptrmemfunc (tree t)
7176 {
7177 if (TREE_CODE (t) == PTRMEM_CST)
7178 {
7179 tree delta;
7180 tree pfn;
7181
7182 expand_ptrmemfunc_cst (t, &delta, &pfn);
7183 if (pfn)
7184 return pfn;
7185 }
7186
7187 return build_ptrmemfunc_access_expr (t, pfn_identifier);
7188 }
7189
7190 /* Return an expression for DELTA from the pointer-to-member function
7191 given by T. */
7192
7193 static tree
7194 delta_from_ptrmemfunc (tree t)
7195 {
7196 if (TREE_CODE (t) == PTRMEM_CST)
7197 {
7198 tree delta;
7199 tree pfn;
7200
7201 expand_ptrmemfunc_cst (t, &delta, &pfn);
7202 if (delta)
7203 return delta;
7204 }
7205
7206 return build_ptrmemfunc_access_expr (t, delta_identifier);
7207 }
7208
7209 /* Convert value RHS to type TYPE as preparation for an assignment to
7210 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
7211 implicit conversion is. If FNDECL is non-NULL, we are doing the
7212 conversion in order to pass the PARMNUMth argument of FNDECL.
7213 If FNDECL is NULL, we are doing the conversion in function pointer
7214 argument passing, conversion in initialization, etc. */
7215
7216 static tree
7217 convert_for_assignment (tree type, tree rhs,
7218 impl_conv_rhs errtype, tree fndecl, int parmnum,
7219 tsubst_flags_t complain, int flags)
7220 {
7221 tree rhstype;
7222 enum tree_code coder;
7223
7224 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
7225 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
7226 rhs = TREE_OPERAND (rhs, 0);
7227
7228 rhstype = TREE_TYPE (rhs);
7229 coder = TREE_CODE (rhstype);
7230
7231 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
7232 && vector_types_convertible_p (type, rhstype, true))
7233 {
7234 rhs = mark_rvalue_use (rhs);
7235 return convert (type, rhs);
7236 }
7237
7238 if (rhs == error_mark_node || rhstype == error_mark_node)
7239 return error_mark_node;
7240 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
7241 return error_mark_node;
7242
7243 /* The RHS of an assignment cannot have void type. */
7244 if (coder == VOID_TYPE)
7245 {
7246 if (complain & tf_error)
7247 error ("void value not ignored as it ought to be");
7248 return error_mark_node;
7249 }
7250
7251 /* Simplify the RHS if possible. */
7252 if (TREE_CODE (rhs) == CONST_DECL)
7253 rhs = DECL_INITIAL (rhs);
7254
7255 if (c_dialect_objc ())
7256 {
7257 int parmno;
7258 tree selector;
7259 tree rname = fndecl;
7260
7261 switch (errtype)
7262 {
7263 case ICR_ASSIGN:
7264 parmno = -1;
7265 break;
7266 case ICR_INIT:
7267 parmno = -2;
7268 break;
7269 default:
7270 selector = objc_message_selector ();
7271 parmno = parmnum;
7272 if (selector && parmno > 1)
7273 {
7274 rname = selector;
7275 parmno -= 1;
7276 }
7277 }
7278
7279 if (objc_compare_types (type, rhstype, parmno, rname))
7280 {
7281 rhs = mark_rvalue_use (rhs);
7282 return convert (type, rhs);
7283 }
7284 }
7285
7286 /* [expr.ass]
7287
7288 The expression is implicitly converted (clause _conv_) to the
7289 cv-unqualified type of the left operand.
7290
7291 We allow bad conversions here because by the time we get to this point
7292 we are committed to doing the conversion. If we end up doing a bad
7293 conversion, convert_like will complain. */
7294 if (!can_convert_arg_bad (type, rhstype, rhs, flags))
7295 {
7296 /* When -Wno-pmf-conversions is use, we just silently allow
7297 conversions from pointers-to-members to plain pointers. If
7298 the conversion doesn't work, cp_convert will complain. */
7299 if (!warn_pmf2ptr
7300 && TYPE_PTR_P (type)
7301 && TYPE_PTRMEMFUNC_P (rhstype))
7302 rhs = cp_convert (strip_top_quals (type), rhs);
7303 else
7304 {
7305 if (complain & tf_error)
7306 {
7307 /* If the right-hand side has unknown type, then it is an
7308 overloaded function. Call instantiate_type to get error
7309 messages. */
7310 if (rhstype == unknown_type_node)
7311 instantiate_type (type, rhs, tf_warning_or_error);
7312 else if (fndecl)
7313 error ("cannot convert %qT to %qT for argument %qP to %qD",
7314 rhstype, type, parmnum, fndecl);
7315 else
7316 switch (errtype)
7317 {
7318 case ICR_DEFAULT_ARGUMENT:
7319 error ("cannot convert %qT to %qT in default argument",
7320 rhstype, type);
7321 break;
7322 case ICR_ARGPASS:
7323 error ("cannot convert %qT to %qT in argument passing",
7324 rhstype, type);
7325 break;
7326 case ICR_CONVERTING:
7327 error ("cannot convert %qT to %qT",
7328 rhstype, type);
7329 break;
7330 case ICR_INIT:
7331 error ("cannot convert %qT to %qT in initialization",
7332 rhstype, type);
7333 break;
7334 case ICR_RETURN:
7335 error ("cannot convert %qT to %qT in return",
7336 rhstype, type);
7337 break;
7338 case ICR_ASSIGN:
7339 error ("cannot convert %qT to %qT in assignment",
7340 rhstype, type);
7341 break;
7342 default:
7343 gcc_unreachable();
7344 }
7345 }
7346 return error_mark_node;
7347 }
7348 }
7349 if (warn_missing_format_attribute)
7350 {
7351 const enum tree_code codel = TREE_CODE (type);
7352 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
7353 && coder == codel
7354 && check_missing_format_attribute (type, rhstype)
7355 && (complain & tf_warning))
7356 switch (errtype)
7357 {
7358 case ICR_ARGPASS:
7359 case ICR_DEFAULT_ARGUMENT:
7360 if (fndecl)
7361 warning (OPT_Wmissing_format_attribute,
7362 "parameter %qP of %qD might be a candidate "
7363 "for a format attribute", parmnum, fndecl);
7364 else
7365 warning (OPT_Wmissing_format_attribute,
7366 "parameter might be a candidate "
7367 "for a format attribute");
7368 break;
7369 case ICR_CONVERTING:
7370 warning (OPT_Wmissing_format_attribute,
7371 "target of conversion might be a candidate "
7372 "for a format attribute");
7373 break;
7374 case ICR_INIT:
7375 warning (OPT_Wmissing_format_attribute,
7376 "target of initialization might be a candidate "
7377 "for a format attribute");
7378 break;
7379 case ICR_RETURN:
7380 warning (OPT_Wmissing_format_attribute,
7381 "return type might be a candidate "
7382 "for a format attribute");
7383 break;
7384 case ICR_ASSIGN:
7385 warning (OPT_Wmissing_format_attribute,
7386 "left-hand side of assignment might be a candidate "
7387 "for a format attribute");
7388 break;
7389 default:
7390 gcc_unreachable();
7391 }
7392 }
7393
7394 /* If -Wparentheses, warn about a = b = c when a has type bool and b
7395 does not. */
7396 if (warn_parentheses
7397 && TREE_CODE (type) == BOOLEAN_TYPE
7398 && TREE_CODE (rhs) == MODIFY_EXPR
7399 && !TREE_NO_WARNING (rhs)
7400 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
7401 && (complain & tf_warning))
7402 {
7403 location_t loc = EXPR_LOC_OR_HERE (rhs);
7404
7405 warning_at (loc, OPT_Wparentheses,
7406 "suggest parentheses around assignment used as truth value");
7407 TREE_NO_WARNING (rhs) = 1;
7408 }
7409
7410 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
7411 complain, flags);
7412 }
7413
7414 /* Convert RHS to be of type TYPE.
7415 If EXP is nonzero, it is the target of the initialization.
7416 ERRTYPE indicates what kind of error the implicit conversion is.
7417
7418 Two major differences between the behavior of
7419 `convert_for_assignment' and `convert_for_initialization'
7420 are that references are bashed in the former, while
7421 copied in the latter, and aggregates are assigned in
7422 the former (operator=) while initialized in the
7423 latter (X(X&)).
7424
7425 If using constructor make sure no conversion operator exists, if one does
7426 exist, an ambiguity exists.
7427
7428 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
7429
7430 tree
7431 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
7432 impl_conv_rhs errtype, tree fndecl, int parmnum,
7433 tsubst_flags_t complain)
7434 {
7435 enum tree_code codel = TREE_CODE (type);
7436 tree rhstype;
7437 enum tree_code coder;
7438
7439 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7440 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
7441 if (TREE_CODE (rhs) == NOP_EXPR
7442 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
7443 && codel != REFERENCE_TYPE)
7444 rhs = TREE_OPERAND (rhs, 0);
7445
7446 if (type == error_mark_node
7447 || rhs == error_mark_node
7448 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
7449 return error_mark_node;
7450
7451 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
7452 && TREE_CODE (type) != ARRAY_TYPE
7453 && (TREE_CODE (type) != REFERENCE_TYPE
7454 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
7455 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
7456 && (TREE_CODE (type) != REFERENCE_TYPE
7457 || TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE))
7458 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
7459 rhs = decay_conversion (rhs);
7460
7461 rhstype = TREE_TYPE (rhs);
7462 coder = TREE_CODE (rhstype);
7463
7464 if (coder == ERROR_MARK)
7465 return error_mark_node;
7466
7467 /* We accept references to incomplete types, so we can
7468 return here before checking if RHS is of complete type. */
7469
7470 if (codel == REFERENCE_TYPE)
7471 {
7472 /* This should eventually happen in convert_arguments. */
7473 int savew = 0, savee = 0;
7474
7475 if (fndecl)
7476 savew = warningcount, savee = errorcount;
7477 rhs = initialize_reference (type, rhs, /*decl=*/NULL_TREE,
7478 /*cleanup=*/NULL, complain);
7479 if (fndecl)
7480 {
7481 if (warningcount > savew)
7482 warning (0, "in passing argument %P of %q+D", parmnum, fndecl);
7483 else if (errorcount > savee)
7484 error ("in passing argument %P of %q+D", parmnum, fndecl);
7485 }
7486 return rhs;
7487 }
7488
7489 if (exp != 0)
7490 exp = require_complete_type_sfinae (exp, complain);
7491 if (exp == error_mark_node)
7492 return error_mark_node;
7493
7494 rhstype = non_reference (rhstype);
7495
7496 type = complete_type (type);
7497
7498 if (DIRECT_INIT_EXPR_P (type, rhs))
7499 /* Don't try to do copy-initialization if we already have
7500 direct-initialization. */
7501 return rhs;
7502
7503 if (MAYBE_CLASS_TYPE_P (type))
7504 return perform_implicit_conversion_flags (type, rhs, complain, flags);
7505
7506 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
7507 complain, flags);
7508 }
7509 \f
7510 /* If RETVAL is the address of, or a reference to, a local variable or
7511 temporary give an appropriate warning. */
7512
7513 static void
7514 maybe_warn_about_returning_address_of_local (tree retval)
7515 {
7516 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
7517 tree whats_returned = retval;
7518
7519 for (;;)
7520 {
7521 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
7522 whats_returned = TREE_OPERAND (whats_returned, 1);
7523 else if (CONVERT_EXPR_P (whats_returned)
7524 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
7525 whats_returned = TREE_OPERAND (whats_returned, 0);
7526 else
7527 break;
7528 }
7529
7530 if (TREE_CODE (whats_returned) != ADDR_EXPR)
7531 return;
7532 whats_returned = TREE_OPERAND (whats_returned, 0);
7533
7534 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7535 {
7536 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
7537 || TREE_CODE (whats_returned) == TARGET_EXPR)
7538 {
7539 warning (0, "returning reference to temporary");
7540 return;
7541 }
7542 if (TREE_CODE (whats_returned) == VAR_DECL
7543 && DECL_NAME (whats_returned)
7544 && TEMP_NAME_P (DECL_NAME (whats_returned)))
7545 {
7546 warning (0, "reference to non-lvalue returned");
7547 return;
7548 }
7549 }
7550
7551 while (TREE_CODE (whats_returned) == COMPONENT_REF
7552 || TREE_CODE (whats_returned) == ARRAY_REF)
7553 whats_returned = TREE_OPERAND (whats_returned, 0);
7554
7555 if (DECL_P (whats_returned)
7556 && DECL_NAME (whats_returned)
7557 && DECL_FUNCTION_SCOPE_P (whats_returned)
7558 && !(TREE_STATIC (whats_returned)
7559 || TREE_PUBLIC (whats_returned)))
7560 {
7561 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7562 warning (0, "reference to local variable %q+D returned",
7563 whats_returned);
7564 else
7565 warning (0, "address of local variable %q+D returned",
7566 whats_returned);
7567 return;
7568 }
7569 }
7570
7571 /* Check that returning RETVAL from the current function is valid.
7572 Return an expression explicitly showing all conversions required to
7573 change RETVAL into the function return type, and to assign it to
7574 the DECL_RESULT for the function. Set *NO_WARNING to true if
7575 code reaches end of non-void function warning shouldn't be issued
7576 on this RETURN_EXPR. */
7577
7578 tree
7579 check_return_expr (tree retval, bool *no_warning)
7580 {
7581 tree result;
7582 /* The type actually returned by the function, after any
7583 promotions. */
7584 tree valtype;
7585 int fn_returns_value_p;
7586 bool named_return_value_okay_p;
7587
7588 *no_warning = false;
7589
7590 /* A `volatile' function is one that isn't supposed to return, ever.
7591 (This is a G++ extension, used to get better code for functions
7592 that call the `volatile' function.) */
7593 if (TREE_THIS_VOLATILE (current_function_decl))
7594 warning (0, "function declared %<noreturn%> has a %<return%> statement");
7595
7596 /* Check for various simple errors. */
7597 if (DECL_DESTRUCTOR_P (current_function_decl))
7598 {
7599 if (retval)
7600 error ("returning a value from a destructor");
7601 return NULL_TREE;
7602 }
7603 else if (DECL_CONSTRUCTOR_P (current_function_decl))
7604 {
7605 if (in_function_try_handler)
7606 /* If a return statement appears in a handler of the
7607 function-try-block of a constructor, the program is ill-formed. */
7608 error ("cannot return from a handler of a function-try-block of a constructor");
7609 else if (retval)
7610 /* You can't return a value from a constructor. */
7611 error ("returning a value from a constructor");
7612 return NULL_TREE;
7613 }
7614
7615 /* As an extension, deduce lambda return type from a return statement
7616 anywhere in the body. */
7617 if (retval && LAMBDA_FUNCTION_P (current_function_decl))
7618 {
7619 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7620 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda))
7621 {
7622 tree type = lambda_return_type (retval);
7623 tree oldtype = LAMBDA_EXPR_RETURN_TYPE (lambda);
7624
7625 if (VOID_TYPE_P (type))
7626 { /* Nothing. */ }
7627 else if (oldtype == NULL_TREE)
7628 {
7629 pedwarn (input_location, OPT_pedantic, "lambda return type "
7630 "can only be deduced when the return statement is "
7631 "the only statement in the function body");
7632 apply_lambda_return_type (lambda, type);
7633 }
7634 else if (!same_type_p (type, oldtype))
7635 error ("inconsistent types %qT and %qT deduced for "
7636 "lambda return type", type, oldtype);
7637 }
7638 }
7639
7640 if (processing_template_decl)
7641 {
7642 current_function_returns_value = 1;
7643 if (check_for_bare_parameter_packs (retval))
7644 retval = error_mark_node;
7645 return retval;
7646 }
7647
7648 /* When no explicit return-value is given in a function with a named
7649 return value, the named return value is used. */
7650 result = DECL_RESULT (current_function_decl);
7651 valtype = TREE_TYPE (result);
7652 gcc_assert (valtype != NULL_TREE);
7653 fn_returns_value_p = !VOID_TYPE_P (valtype);
7654 if (!retval && DECL_NAME (result) && fn_returns_value_p)
7655 retval = result;
7656
7657 /* Check for a return statement with no return value in a function
7658 that's supposed to return a value. */
7659 if (!retval && fn_returns_value_p)
7660 {
7661 permerror (input_location, "return-statement with no value, in function returning %qT",
7662 valtype);
7663 /* Clear this, so finish_function won't say that we reach the
7664 end of a non-void function (which we don't, we gave a
7665 return!). */
7666 current_function_returns_null = 0;
7667 /* And signal caller that TREE_NO_WARNING should be set on the
7668 RETURN_EXPR to avoid control reaches end of non-void function
7669 warnings in tree-cfg.c. */
7670 *no_warning = true;
7671 }
7672 /* Check for a return statement with a value in a function that
7673 isn't supposed to return a value. */
7674 else if (retval && !fn_returns_value_p)
7675 {
7676 if (VOID_TYPE_P (TREE_TYPE (retval)))
7677 /* You can return a `void' value from a function of `void'
7678 type. In that case, we have to evaluate the expression for
7679 its side-effects. */
7680 finish_expr_stmt (retval);
7681 else
7682 permerror (input_location, "return-statement with a value, in function "
7683 "returning 'void'");
7684 current_function_returns_null = 1;
7685
7686 /* There's really no value to return, after all. */
7687 return NULL_TREE;
7688 }
7689 else if (!retval)
7690 /* Remember that this function can sometimes return without a
7691 value. */
7692 current_function_returns_null = 1;
7693 else
7694 /* Remember that this function did return a value. */
7695 current_function_returns_value = 1;
7696
7697 /* Check for erroneous operands -- but after giving ourselves a
7698 chance to provide an error about returning a value from a void
7699 function. */
7700 if (error_operand_p (retval))
7701 {
7702 current_function_return_value = error_mark_node;
7703 return error_mark_node;
7704 }
7705
7706 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
7707 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
7708 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
7709 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
7710 && ! flag_check_new
7711 && retval && null_ptr_cst_p (retval))
7712 warning (0, "%<operator new%> must not return NULL unless it is "
7713 "declared %<throw()%> (or -fcheck-new is in effect)");
7714
7715 /* Effective C++ rule 15. See also start_function. */
7716 if (warn_ecpp
7717 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
7718 {
7719 bool warn = true;
7720
7721 /* The function return type must be a reference to the current
7722 class. */
7723 if (TREE_CODE (valtype) == REFERENCE_TYPE
7724 && same_type_ignoring_top_level_qualifiers_p
7725 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
7726 {
7727 /* Returning '*this' is obviously OK. */
7728 if (retval == current_class_ref)
7729 warn = false;
7730 /* If we are calling a function whose return type is the same of
7731 the current class reference, it is ok. */
7732 else if (TREE_CODE (retval) == INDIRECT_REF
7733 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
7734 warn = false;
7735 }
7736
7737 if (warn)
7738 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
7739 }
7740
7741 /* The fabled Named Return Value optimization, as per [class.copy]/15:
7742
7743 [...] For a function with a class return type, if the expression
7744 in the return statement is the name of a local object, and the cv-
7745 unqualified type of the local object is the same as the function
7746 return type, an implementation is permitted to omit creating the tem-
7747 porary object to hold the function return value [...]
7748
7749 So, if this is a value-returning function that always returns the same
7750 local variable, remember it.
7751
7752 It might be nice to be more flexible, and choose the first suitable
7753 variable even if the function sometimes returns something else, but
7754 then we run the risk of clobbering the variable we chose if the other
7755 returned expression uses the chosen variable somehow. And people expect
7756 this restriction, anyway. (jason 2000-11-19)
7757
7758 See finish_function and finalize_nrv for the rest of this optimization. */
7759
7760 named_return_value_okay_p =
7761 (retval != NULL_TREE
7762 /* Must be a local, automatic variable. */
7763 && TREE_CODE (retval) == VAR_DECL
7764 && DECL_CONTEXT (retval) == current_function_decl
7765 && ! TREE_STATIC (retval)
7766 && ! DECL_ANON_UNION_VAR_P (retval)
7767 && (DECL_ALIGN (retval)
7768 >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
7769 /* The cv-unqualified type of the returned value must be the
7770 same as the cv-unqualified return type of the
7771 function. */
7772 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7773 (TYPE_MAIN_VARIANT
7774 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7775 /* And the returned value must be non-volatile. */
7776 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
7777
7778 if (fn_returns_value_p && flag_elide_constructors)
7779 {
7780 if (named_return_value_okay_p
7781 && (current_function_return_value == NULL_TREE
7782 || current_function_return_value == retval))
7783 current_function_return_value = retval;
7784 else
7785 current_function_return_value = error_mark_node;
7786 }
7787
7788 /* We don't need to do any conversions when there's nothing being
7789 returned. */
7790 if (!retval)
7791 return NULL_TREE;
7792
7793 /* Do any required conversions. */
7794 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
7795 /* No conversions are required. */
7796 ;
7797 else
7798 {
7799 /* The type the function is declared to return. */
7800 tree functype = TREE_TYPE (TREE_TYPE (current_function_decl));
7801 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
7802
7803 /* The functype's return type will have been set to void, if it
7804 was an incomplete type. Just treat this as 'return;' */
7805 if (VOID_TYPE_P (functype))
7806 return error_mark_node;
7807
7808 /* Under C++0x [12.8/16 class.copy], a returned lvalue is sometimes
7809 treated as an rvalue for the purposes of overload resolution to
7810 favor move constructors over copy constructors.
7811
7812 Note that these conditions are similar to, but not as strict as,
7813 the conditions for the named return value optimization. */
7814 if ((cxx_dialect != cxx98)
7815 && (TREE_CODE (retval) == VAR_DECL
7816 || TREE_CODE (retval) == PARM_DECL)
7817 && DECL_CONTEXT (retval) == current_function_decl
7818 && !TREE_STATIC (retval)
7819 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7820 (TYPE_MAIN_VARIANT
7821 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7822 /* This is only interesting for class type. */
7823 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
7824 flags = flags | LOOKUP_PREFER_RVALUE;
7825
7826 /* First convert the value to the function's return type, then
7827 to the type of return value's location to handle the
7828 case that functype is smaller than the valtype. */
7829 retval = convert_for_initialization
7830 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
7831 tf_warning_or_error);
7832 retval = convert (valtype, retval);
7833
7834 /* If the conversion failed, treat this just like `return;'. */
7835 if (retval == error_mark_node)
7836 return retval;
7837 /* We can't initialize a register from a AGGR_INIT_EXPR. */
7838 else if (! cfun->returns_struct
7839 && TREE_CODE (retval) == TARGET_EXPR
7840 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
7841 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
7842 TREE_OPERAND (retval, 0));
7843 else
7844 maybe_warn_about_returning_address_of_local (retval);
7845 }
7846
7847 /* Actually copy the value returned into the appropriate location. */
7848 if (retval && retval != result)
7849 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
7850
7851 return retval;
7852 }
7853
7854 \f
7855 /* Returns nonzero if the pointer-type FROM can be converted to the
7856 pointer-type TO via a qualification conversion. If CONSTP is -1,
7857 then we return nonzero if the pointers are similar, and the
7858 cv-qualification signature of FROM is a proper subset of that of TO.
7859
7860 If CONSTP is positive, then all outer pointers have been
7861 const-qualified. */
7862
7863 static int
7864 comp_ptr_ttypes_real (tree to, tree from, int constp)
7865 {
7866 bool to_more_cv_qualified = false;
7867 bool is_opaque_pointer = false;
7868
7869 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7870 {
7871 if (TREE_CODE (to) != TREE_CODE (from))
7872 return 0;
7873
7874 if (TREE_CODE (from) == OFFSET_TYPE
7875 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
7876 TYPE_OFFSET_BASETYPE (to)))
7877 return 0;
7878
7879 /* Const and volatile mean something different for function types,
7880 so the usual checks are not appropriate. */
7881 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7882 {
7883 if (!at_least_as_qualified_p (to, from))
7884 return 0;
7885
7886 if (!at_least_as_qualified_p (from, to))
7887 {
7888 if (constp == 0)
7889 return 0;
7890 to_more_cv_qualified = true;
7891 }
7892
7893 if (constp > 0)
7894 constp &= TYPE_READONLY (to);
7895 }
7896
7897 if (TREE_CODE (to) == VECTOR_TYPE)
7898 is_opaque_pointer = vector_targets_convertible_p (to, from);
7899
7900 if (TREE_CODE (to) != POINTER_TYPE && !TYPE_PTRMEM_P (to))
7901 return ((constp >= 0 || to_more_cv_qualified)
7902 && (is_opaque_pointer
7903 || same_type_ignoring_top_level_qualifiers_p (to, from)));
7904 }
7905 }
7906
7907 /* When comparing, say, char ** to char const **, this function takes
7908 the 'char *' and 'char const *'. Do not pass non-pointer/reference
7909 types to this function. */
7910
7911 int
7912 comp_ptr_ttypes (tree to, tree from)
7913 {
7914 return comp_ptr_ttypes_real (to, from, 1);
7915 }
7916
7917 /* Returns true iff FNTYPE is a non-class type that involves
7918 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
7919 if a parameter type is ill-formed. */
7920
7921 bool
7922 error_type_p (const_tree type)
7923 {
7924 tree t;
7925
7926 switch (TREE_CODE (type))
7927 {
7928 case ERROR_MARK:
7929 return true;
7930
7931 case POINTER_TYPE:
7932 case REFERENCE_TYPE:
7933 case OFFSET_TYPE:
7934 return error_type_p (TREE_TYPE (type));
7935
7936 case FUNCTION_TYPE:
7937 case METHOD_TYPE:
7938 if (error_type_p (TREE_TYPE (type)))
7939 return true;
7940 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
7941 if (error_type_p (TREE_VALUE (t)))
7942 return true;
7943 return false;
7944
7945 case RECORD_TYPE:
7946 if (TYPE_PTRMEMFUNC_P (type))
7947 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
7948 return false;
7949
7950 default:
7951 return false;
7952 }
7953 }
7954
7955 /* Returns 1 if to and from are (possibly multi-level) pointers to the same
7956 type or inheritance-related types, regardless of cv-quals. */
7957
7958 int
7959 ptr_reasonably_similar (const_tree to, const_tree from)
7960 {
7961 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7962 {
7963 /* Any target type is similar enough to void. */
7964 if (TREE_CODE (to) == VOID_TYPE)
7965 return !error_type_p (from);
7966 if (TREE_CODE (from) == VOID_TYPE)
7967 return !error_type_p (to);
7968
7969 if (TREE_CODE (to) != TREE_CODE (from))
7970 return 0;
7971
7972 if (TREE_CODE (from) == OFFSET_TYPE
7973 && comptypes (TYPE_OFFSET_BASETYPE (to),
7974 TYPE_OFFSET_BASETYPE (from),
7975 COMPARE_BASE | COMPARE_DERIVED))
7976 continue;
7977
7978 if (TREE_CODE (to) == VECTOR_TYPE
7979 && vector_types_convertible_p (to, from, false))
7980 return 1;
7981
7982 if (TREE_CODE (to) == INTEGER_TYPE
7983 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
7984 return 1;
7985
7986 if (TREE_CODE (to) == FUNCTION_TYPE)
7987 return !error_type_p (to) && !error_type_p (from);
7988
7989 if (TREE_CODE (to) != POINTER_TYPE)
7990 return comptypes
7991 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
7992 COMPARE_BASE | COMPARE_DERIVED);
7993 }
7994 }
7995
7996 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
7997 pointer-to-member types) are the same, ignoring cv-qualification at
7998 all levels. */
7999
8000 bool
8001 comp_ptr_ttypes_const (tree to, tree from)
8002 {
8003 bool is_opaque_pointer = false;
8004
8005 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8006 {
8007 if (TREE_CODE (to) != TREE_CODE (from))
8008 return false;
8009
8010 if (TREE_CODE (from) == OFFSET_TYPE
8011 && same_type_p (TYPE_OFFSET_BASETYPE (from),
8012 TYPE_OFFSET_BASETYPE (to)))
8013 continue;
8014
8015 if (TREE_CODE (to) == VECTOR_TYPE)
8016 is_opaque_pointer = vector_targets_convertible_p (to, from);
8017
8018 if (TREE_CODE (to) != POINTER_TYPE)
8019 return (is_opaque_pointer
8020 || same_type_ignoring_top_level_qualifiers_p (to, from));
8021 }
8022 }
8023
8024 /* Returns the type qualifiers for this type, including the qualifiers on the
8025 elements for an array type. */
8026
8027 int
8028 cp_type_quals (const_tree type)
8029 {
8030 int quals;
8031 /* This CONST_CAST is okay because strip_array_types returns its
8032 argument unmodified and we assign it to a const_tree. */
8033 type = strip_array_types (CONST_CAST_TREE (type));
8034 if (type == error_mark_node
8035 /* Quals on a FUNCTION_TYPE are memfn quals. */
8036 || TREE_CODE (type) == FUNCTION_TYPE)
8037 return TYPE_UNQUALIFIED;
8038 quals = TYPE_QUALS (type);
8039 /* METHOD and REFERENCE_TYPEs should never have quals. */
8040 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
8041 && TREE_CODE (type) != REFERENCE_TYPE)
8042 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
8043 == TYPE_UNQUALIFIED));
8044 return quals;
8045 }
8046
8047 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
8048 METHOD_TYPE. */
8049
8050 int
8051 type_memfn_quals (const_tree type)
8052 {
8053 if (TREE_CODE (type) == FUNCTION_TYPE)
8054 return TYPE_QUALS (type);
8055 else if (TREE_CODE (type) == METHOD_TYPE)
8056 return cp_type_quals (class_of_this_parm (type));
8057 else
8058 gcc_unreachable ();
8059 }
8060
8061 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
8062 MEMFN_QUALS. */
8063
8064 tree
8065 apply_memfn_quals (tree type, cp_cv_quals memfn_quals)
8066 {
8067 /* Could handle METHOD_TYPE here if necessary. */
8068 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8069 if (TYPE_QUALS (type) == memfn_quals)
8070 return type;
8071 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
8072 complex. */
8073 return build_qualified_type (type, memfn_quals);
8074 }
8075
8076 /* Returns nonzero if TYPE is const or volatile. */
8077
8078 bool
8079 cv_qualified_p (const_tree type)
8080 {
8081 int quals = cp_type_quals (type);
8082 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
8083 }
8084
8085 /* Returns nonzero if the TYPE contains a mutable member. */
8086
8087 bool
8088 cp_has_mutable_p (const_tree type)
8089 {
8090 /* This CONST_CAST is okay because strip_array_types returns its
8091 argument unmodified and we assign it to a const_tree. */
8092 type = strip_array_types (CONST_CAST_TREE(type));
8093
8094 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
8095 }
8096
8097 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
8098 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
8099 approximation. In particular, consider:
8100
8101 int f();
8102 struct S { int i; };
8103 const S s = { f(); }
8104
8105 Here, we will make "s" as TREE_READONLY (because it is declared
8106 "const") -- only to reverse ourselves upon seeing that the
8107 initializer is non-constant. */
8108
8109 void
8110 cp_apply_type_quals_to_decl (int type_quals, tree decl)
8111 {
8112 tree type = TREE_TYPE (decl);
8113
8114 if (type == error_mark_node)
8115 return;
8116
8117 if (TREE_CODE (decl) == TYPE_DECL)
8118 return;
8119
8120 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
8121 && type_quals != TYPE_UNQUALIFIED));
8122
8123 /* Avoid setting TREE_READONLY incorrectly. */
8124 if (/* If the object has a constructor, the constructor may modify
8125 the object. */
8126 TYPE_NEEDS_CONSTRUCTING (type)
8127 /* If the type isn't complete, we don't know yet if it will need
8128 constructing. */
8129 || !COMPLETE_TYPE_P (type)
8130 /* If the type has a mutable component, that component might be
8131 modified. */
8132 || TYPE_HAS_MUTABLE_P (type))
8133 type_quals &= ~TYPE_QUAL_CONST;
8134
8135 c_apply_type_quals_to_decl (type_quals, decl);
8136 }
8137
8138 /* Subroutine of casts_away_constness. Make T1 and T2 point at
8139 exemplar types such that casting T1 to T2 is casting away constness
8140 if and only if there is no implicit conversion from T1 to T2. */
8141
8142 static void
8143 casts_away_constness_r (tree *t1, tree *t2)
8144 {
8145 int quals1;
8146 int quals2;
8147
8148 /* [expr.const.cast]
8149
8150 For multi-level pointer to members and multi-level mixed pointers
8151 and pointers to members (conv.qual), the "member" aspect of a
8152 pointer to member level is ignored when determining if a const
8153 cv-qualifier has been cast away. */
8154 /* [expr.const.cast]
8155
8156 For two pointer types:
8157
8158 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
8159 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
8160 K is min(N,M)
8161
8162 casting from X1 to X2 casts away constness if, for a non-pointer
8163 type T there does not exist an implicit conversion (clause
8164 _conv_) from:
8165
8166 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
8167
8168 to
8169
8170 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
8171 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRMEM_P (*t1))
8172 || (!TYPE_PTR_P (*t2) && !TYPE_PTRMEM_P (*t2)))
8173 {
8174 *t1 = cp_build_qualified_type (void_type_node,
8175 cp_type_quals (*t1));
8176 *t2 = cp_build_qualified_type (void_type_node,
8177 cp_type_quals (*t2));
8178 return;
8179 }
8180
8181 quals1 = cp_type_quals (*t1);
8182 quals2 = cp_type_quals (*t2);
8183
8184 if (TYPE_PTRMEM_P (*t1))
8185 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
8186 else
8187 *t1 = TREE_TYPE (*t1);
8188 if (TYPE_PTRMEM_P (*t2))
8189 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
8190 else
8191 *t2 = TREE_TYPE (*t2);
8192
8193 casts_away_constness_r (t1, t2);
8194 *t1 = build_pointer_type (*t1);
8195 *t2 = build_pointer_type (*t2);
8196 *t1 = cp_build_qualified_type (*t1, quals1);
8197 *t2 = cp_build_qualified_type (*t2, quals2);
8198 }
8199
8200 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
8201 constness.
8202
8203 ??? This function returns non-zero if casting away qualifiers not
8204 just const. We would like to return to the caller exactly which
8205 qualifiers are casted away to give more accurate diagnostics.
8206 */
8207
8208 static bool
8209 casts_away_constness (tree t1, tree t2)
8210 {
8211 if (TREE_CODE (t2) == REFERENCE_TYPE)
8212 {
8213 /* [expr.const.cast]
8214
8215 Casting from an lvalue of type T1 to an lvalue of type T2
8216 using a reference cast casts away constness if a cast from an
8217 rvalue of type "pointer to T1" to the type "pointer to T2"
8218 casts away constness. */
8219 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
8220 return casts_away_constness (build_pointer_type (t1),
8221 build_pointer_type (TREE_TYPE (t2)));
8222 }
8223
8224 if (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
8225 /* [expr.const.cast]
8226
8227 Casting from an rvalue of type "pointer to data member of X
8228 of type T1" to the type "pointer to data member of Y of type
8229 T2" casts away constness if a cast from an rvalue of type
8230 "pointer to T1" to the type "pointer to T2" casts away
8231 constness. */
8232 return casts_away_constness
8233 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
8234 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)));
8235
8236 /* Casting away constness is only something that makes sense for
8237 pointer or reference types. */
8238 if (TREE_CODE (t1) != POINTER_TYPE
8239 || TREE_CODE (t2) != POINTER_TYPE)
8240 return false;
8241
8242 /* Top-level qualifiers don't matter. */
8243 t1 = TYPE_MAIN_VARIANT (t1);
8244 t2 = TYPE_MAIN_VARIANT (t2);
8245 casts_away_constness_r (&t1, &t2);
8246 if (!can_convert (t2, t1))
8247 return true;
8248
8249 return false;
8250 }
8251
8252 /* If T is a REFERENCE_TYPE return the type to which T refers.
8253 Otherwise, return T itself. */
8254
8255 tree
8256 non_reference (tree t)
8257 {
8258 if (TREE_CODE (t) == REFERENCE_TYPE)
8259 t = TREE_TYPE (t);
8260 return t;
8261 }
8262
8263
8264 /* Return nonzero if REF is an lvalue valid for this language;
8265 otherwise, print an error message and return zero. USE says
8266 how the lvalue is being used and so selects the error message. */
8267
8268 int
8269 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
8270 {
8271 cp_lvalue_kind kind = lvalue_kind (ref);
8272
8273 if (kind == clk_none)
8274 {
8275 if (complain & tf_error)
8276 lvalue_error (input_location, use);
8277 return 0;
8278 }
8279 else if (kind & (clk_rvalueref|clk_class))
8280 {
8281 if (!(complain & tf_error))
8282 return 0;
8283 if (kind & clk_class)
8284 /* Make this a permerror because we used to accept it. */
8285 permerror (input_location, "using temporary as lvalue");
8286 else
8287 error ("using xvalue (rvalue reference) as lvalue");
8288 }
8289 return 1;
8290 }
8291