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