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