tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[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_have_common_type (t1, t2, -3, NULL_TREE))
636 return objc_common_type (t1, t2);
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_addr_expr (exp, 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_addr_expr (exp, 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_addr_expr (e2, tf_warning_or_error));
3215
3216 e2 = fold_convert (TREE_TYPE (e3), e2);
3217 e1 = build_conditional_expr (e1, e2, e3, tf_warning_or_error);
3218
3219 /* Make sure this doesn't get evaluated first inside one of the
3220 branches of the COND_EXPR. */
3221 if (instance_save_expr)
3222 e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3223 instance_save_expr, e1);
3224
3225 function = e1;
3226 }
3227 return function;
3228 }
3229
3230 /* Used by the C-common bits. */
3231 tree
3232 build_function_call (location_t loc ATTRIBUTE_UNUSED,
3233 tree function, tree params)
3234 {
3235 return cp_build_function_call (function, params, tf_warning_or_error);
3236 }
3237
3238 /* Used by the C-common bits. */
3239 tree
3240 build_function_call_vec (location_t loc ATTRIBUTE_UNUSED,
3241 tree function, VEC(tree,gc) *params,
3242 VEC(tree,gc) *origtypes ATTRIBUTE_UNUSED)
3243 {
3244 VEC(tree,gc) *orig_params = params;
3245 tree ret = cp_build_function_call_vec (function, &params,
3246 tf_warning_or_error);
3247
3248 /* cp_build_function_call_vec can reallocate PARAMS by adding
3249 default arguments. That should never happen here. Verify
3250 that. */
3251 gcc_assert (params == orig_params);
3252
3253 return ret;
3254 }
3255
3256 /* Build a function call using a tree list of arguments. */
3257
3258 tree
3259 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3260 {
3261 VEC(tree,gc) *vec;
3262 tree ret;
3263
3264 vec = make_tree_vector ();
3265 for (; params != NULL_TREE; params = TREE_CHAIN (params))
3266 VEC_safe_push (tree, gc, vec, TREE_VALUE (params));
3267 ret = cp_build_function_call_vec (function, &vec, complain);
3268 release_tree_vector (vec);
3269 return ret;
3270 }
3271
3272 /* Build a function call using varargs. */
3273
3274 tree
3275 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3276 {
3277 VEC(tree,gc) *vec;
3278 va_list args;
3279 tree ret, t;
3280
3281 vec = make_tree_vector ();
3282 va_start (args, complain);
3283 for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3284 VEC_safe_push (tree, gc, vec, t);
3285 va_end (args);
3286 ret = cp_build_function_call_vec (function, &vec, complain);
3287 release_tree_vector (vec);
3288 return ret;
3289 }
3290
3291 /* Build a function call using a vector of arguments. PARAMS may be
3292 NULL if there are no parameters. This changes the contents of
3293 PARAMS. */
3294
3295 tree
3296 cp_build_function_call_vec (tree function, VEC(tree,gc) **params,
3297 tsubst_flags_t complain)
3298 {
3299 tree fntype, fndecl;
3300 int is_method;
3301 tree original = function;
3302 int nargs;
3303 tree *argarray;
3304 tree parm_types;
3305 VEC(tree,gc) *allocated = NULL;
3306 tree ret;
3307
3308 /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3309 expressions, like those used for ObjC messenger dispatches. */
3310 if (params != NULL && !VEC_empty (tree, *params))
3311 function = objc_rewrite_function_call (function,
3312 VEC_index (tree, *params, 0));
3313
3314 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3315 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
3316 if (TREE_CODE (function) == NOP_EXPR
3317 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3318 function = TREE_OPERAND (function, 0);
3319
3320 if (TREE_CODE (function) == FUNCTION_DECL)
3321 {
3322 mark_used (function);
3323 fndecl = function;
3324
3325 /* Convert anything with function type to a pointer-to-function. */
3326 if (DECL_MAIN_P (function) && (complain & tf_error))
3327 pedwarn (input_location, OPT_pedantic,
3328 "ISO C++ forbids calling %<::main%> from within program");
3329
3330 function = build_addr_func (function);
3331 }
3332 else
3333 {
3334 fndecl = NULL_TREE;
3335
3336 function = build_addr_func (function);
3337 }
3338
3339 if (function == error_mark_node)
3340 return error_mark_node;
3341
3342 fntype = TREE_TYPE (function);
3343
3344 if (TYPE_PTRMEMFUNC_P (fntype))
3345 {
3346 if (complain & tf_error)
3347 error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3348 "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3349 original, original);
3350 return error_mark_node;
3351 }
3352
3353 is_method = (TREE_CODE (fntype) == POINTER_TYPE
3354 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3355
3356 if (!((TREE_CODE (fntype) == POINTER_TYPE
3357 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
3358 || is_method
3359 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3360 {
3361 if (complain & tf_error)
3362 error ("%qE cannot be used as a function", original);
3363 return error_mark_node;
3364 }
3365
3366 /* fntype now gets the type of function pointed to. */
3367 fntype = TREE_TYPE (fntype);
3368 parm_types = TYPE_ARG_TYPES (fntype);
3369
3370 if (params == NULL)
3371 {
3372 allocated = make_tree_vector ();
3373 params = &allocated;
3374 }
3375
3376 nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3377 complain);
3378 if (nargs < 0)
3379 return error_mark_node;
3380
3381 argarray = VEC_address (tree, *params);
3382
3383 /* Check for errors in format strings and inappropriately
3384 null parameters. */
3385 check_function_arguments (TYPE_ATTRIBUTES (fntype), nargs, argarray,
3386 parm_types);
3387
3388 ret = build_cxx_call (function, nargs, argarray);
3389
3390 if (allocated != NULL)
3391 release_tree_vector (allocated);
3392
3393 return ret;
3394 }
3395 \f
3396 /* Subroutine of convert_arguments.
3397 Warn about wrong number of args are genereted. */
3398
3399 static void
3400 warn_args_num (location_t loc, tree fndecl, bool too_many_p)
3401 {
3402 if (fndecl)
3403 {
3404 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3405 {
3406 if (DECL_NAME (fndecl) == NULL_TREE
3407 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3408 error_at (loc,
3409 too_many_p
3410 ? G_("too many arguments to constructor %q#D")
3411 : G_("too few arguments to constructor %q#D"),
3412 fndecl);
3413 else
3414 error_at (loc,
3415 too_many_p
3416 ? G_("too many arguments to member function %q#D")
3417 : G_("too few arguments to member function %q#D"),
3418 fndecl);
3419 }
3420 else
3421 error_at (loc,
3422 too_many_p
3423 ? G_("too many arguments to function %q#D")
3424 : G_("too few arguments to function %q#D"),
3425 fndecl);
3426 inform (DECL_SOURCE_LOCATION (fndecl),
3427 "declared here");
3428 }
3429 else
3430 {
3431 if (c_dialect_objc () && objc_message_selector ())
3432 error_at (loc,
3433 too_many_p
3434 ? G_("too many arguments to method %q#D")
3435 : G_("too few arguments to method %q#D"),
3436 objc_message_selector ());
3437 else
3438 error_at (loc, too_many_p ? G_("too many arguments to function")
3439 : G_("too few arguments to function"));
3440 }
3441 }
3442
3443 /* Convert the actual parameter expressions in the list VALUES to the
3444 types in the list TYPELIST. The converted expressions are stored
3445 back in the VALUES vector.
3446 If parmdecls is exhausted, or when an element has NULL as its type,
3447 perform the default conversions.
3448
3449 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
3450
3451 This is also where warnings about wrong number of args are generated.
3452
3453 Returns the actual number of arguments processed (which might be less
3454 than the length of the vector), or -1 on error.
3455
3456 In C++, unspecified trailing parameters can be filled in with their
3457 default arguments, if such were specified. Do so here. */
3458
3459 static int
3460 convert_arguments (tree typelist, VEC(tree,gc) **values, tree fndecl,
3461 int flags, tsubst_flags_t complain)
3462 {
3463 tree typetail;
3464 unsigned int i;
3465
3466 /* Argument passing is always copy-initialization. */
3467 flags |= LOOKUP_ONLYCONVERTING;
3468
3469 for (i = 0, typetail = typelist;
3470 i < VEC_length (tree, *values);
3471 i++)
3472 {
3473 tree type = typetail ? TREE_VALUE (typetail) : 0;
3474 tree val = VEC_index (tree, *values, i);
3475
3476 if (val == error_mark_node || type == error_mark_node)
3477 return -1;
3478
3479 if (type == void_type_node)
3480 {
3481 if (complain & tf_error)
3482 {
3483 warn_args_num (input_location, fndecl, /*too_many_p=*/true);
3484 return i;
3485 }
3486 else
3487 return -1;
3488 }
3489
3490 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3491 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
3492 if (TREE_CODE (val) == NOP_EXPR
3493 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3494 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3495 val = TREE_OPERAND (val, 0);
3496
3497 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3498 {
3499 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3500 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3501 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3502 val = decay_conversion (val);
3503 }
3504
3505 if (val == error_mark_node)
3506 return -1;
3507
3508 if (type != 0)
3509 {
3510 /* Formal parm type is specified by a function prototype. */
3511 tree parmval;
3512
3513 if (!COMPLETE_TYPE_P (complete_type (type)))
3514 {
3515 if (complain & tf_error)
3516 {
3517 if (fndecl)
3518 error ("parameter %P of %qD has incomplete type %qT",
3519 i, fndecl, type);
3520 else
3521 error ("parameter %P has incomplete type %qT", i, type);
3522 }
3523 parmval = error_mark_node;
3524 }
3525 else
3526 {
3527 parmval = convert_for_initialization
3528 (NULL_TREE, type, val, flags,
3529 ICR_ARGPASS, fndecl, i, complain);
3530 parmval = convert_for_arg_passing (type, parmval);
3531 }
3532
3533 if (parmval == error_mark_node)
3534 return -1;
3535
3536 VEC_replace (tree, *values, i, parmval);
3537 }
3538 else
3539 {
3540 if (fndecl && DECL_BUILT_IN (fndecl)
3541 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CONSTANT_P)
3542 /* Don't do ellipsis conversion for __built_in_constant_p
3543 as this will result in spurious errors for non-trivial
3544 types. */
3545 val = require_complete_type (val);
3546 else
3547 val = convert_arg_to_ellipsis (val);
3548
3549 VEC_replace (tree, *values, i, val);
3550 }
3551
3552 if (typetail)
3553 typetail = TREE_CHAIN (typetail);
3554 }
3555
3556 if (typetail != 0 && typetail != void_list_node)
3557 {
3558 /* See if there are default arguments that can be used. Because
3559 we hold default arguments in the FUNCTION_TYPE (which is so
3560 wrong), we can see default parameters here from deduced
3561 contexts (and via typeof) for indirect function calls.
3562 Fortunately we know whether we have a function decl to
3563 provide default arguments in a language conformant
3564 manner. */
3565 if (fndecl && TREE_PURPOSE (typetail)
3566 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3567 {
3568 for (; typetail != void_list_node; ++i)
3569 {
3570 tree parmval
3571 = convert_default_arg (TREE_VALUE (typetail),
3572 TREE_PURPOSE (typetail),
3573 fndecl, i);
3574
3575 if (parmval == error_mark_node)
3576 return -1;
3577
3578 VEC_safe_push (tree, gc, *values, parmval);
3579 typetail = TREE_CHAIN (typetail);
3580 /* ends with `...'. */
3581 if (typetail == NULL_TREE)
3582 break;
3583 }
3584 }
3585 else
3586 {
3587 if (complain & tf_error)
3588 warn_args_num (input_location, fndecl, /*too_many_p=*/false);
3589 return -1;
3590 }
3591 }
3592
3593 return (int) i;
3594 }
3595 \f
3596 /* Build a binary-operation expression, after performing default
3597 conversions on the operands. CODE is the kind of expression to
3598 build. ARG1 and ARG2 are the arguments. ARG1_CODE and ARG2_CODE
3599 are the tree codes which correspond to ARG1 and ARG2 when issuing
3600 warnings about possibly misplaced parentheses. They may differ
3601 from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3602 folding (e.g., if the parser sees "a | 1 + 1", it may call this
3603 routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3604 To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3605 ARG2_CODE as ERROR_MARK. */
3606
3607 tree
3608 build_x_binary_op (enum tree_code code, tree arg1, enum tree_code arg1_code,
3609 tree arg2, enum tree_code arg2_code, bool *overloaded_p,
3610 tsubst_flags_t complain)
3611 {
3612 tree orig_arg1;
3613 tree orig_arg2;
3614 tree expr;
3615
3616 orig_arg1 = arg1;
3617 orig_arg2 = arg2;
3618
3619 if (processing_template_decl)
3620 {
3621 if (type_dependent_expression_p (arg1)
3622 || type_dependent_expression_p (arg2))
3623 return build_min_nt (code, arg1, arg2);
3624 arg1 = build_non_dependent_expr (arg1);
3625 arg2 = build_non_dependent_expr (arg2);
3626 }
3627
3628 if (code == DOTSTAR_EXPR)
3629 expr = build_m_component_ref (arg1, arg2);
3630 else
3631 expr = build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3632 overloaded_p, complain);
3633
3634 /* Check for cases such as x+y<<z which users are likely to
3635 misinterpret. But don't warn about obj << x + y, since that is a
3636 common idiom for I/O. */
3637 if (warn_parentheses
3638 && (complain & tf_warning)
3639 && !processing_template_decl
3640 && !error_operand_p (arg1)
3641 && !error_operand_p (arg2)
3642 && (code != LSHIFT_EXPR
3643 || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3644 warn_about_parentheses (code, arg1_code, orig_arg1, arg2_code, orig_arg2);
3645
3646 if (processing_template_decl && expr != error_mark_node)
3647 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3648
3649 return expr;
3650 }
3651
3652 /* Build and return an ARRAY_REF expression. */
3653
3654 tree
3655 build_x_array_ref (tree arg1, tree arg2, tsubst_flags_t complain)
3656 {
3657 tree orig_arg1 = arg1;
3658 tree orig_arg2 = arg2;
3659 tree expr;
3660
3661 if (processing_template_decl)
3662 {
3663 if (type_dependent_expression_p (arg1)
3664 || type_dependent_expression_p (arg2))
3665 return build_min_nt (ARRAY_REF, arg1, arg2,
3666 NULL_TREE, NULL_TREE);
3667 arg1 = build_non_dependent_expr (arg1);
3668 arg2 = build_non_dependent_expr (arg2);
3669 }
3670
3671 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3672 /*overloaded_p=*/NULL, complain);
3673
3674 if (processing_template_decl && expr != error_mark_node)
3675 return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3676 NULL_TREE, NULL_TREE);
3677 return expr;
3678 }
3679
3680 /* For the c-common bits. */
3681 tree
3682 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3683 int convert_p ATTRIBUTE_UNUSED)
3684 {
3685 return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3686 }
3687
3688
3689 /* Build a binary-operation expression without default conversions.
3690 CODE is the kind of expression to build.
3691 LOCATION is the location_t of the operator in the source code.
3692 This function differs from `build' in several ways:
3693 the data type of the result is computed and recorded in it,
3694 warnings are generated if arg data types are invalid,
3695 special handling for addition and subtraction of pointers is known,
3696 and some optimization is done (operations on narrow ints
3697 are done in the narrower type when that gives the same result).
3698 Constant folding is also done before the result is returned.
3699
3700 Note that the operands will never have enumeral types
3701 because either they have just had the default conversions performed
3702 or they have both just been converted to some other type in which
3703 the arithmetic is to be done.
3704
3705 C++: must do special pointer arithmetic when implementing
3706 multiple inheritance, and deal with pointer to member functions. */
3707
3708 tree
3709 cp_build_binary_op (location_t location,
3710 enum tree_code code, tree orig_op0, tree orig_op1,
3711 tsubst_flags_t complain)
3712 {
3713 tree op0, op1;
3714 enum tree_code code0, code1;
3715 tree type0, type1;
3716 const char *invalid_op_diag;
3717
3718 /* Expression code to give to the expression when it is built.
3719 Normally this is CODE, which is what the caller asked for,
3720 but in some special cases we change it. */
3721 enum tree_code resultcode = code;
3722
3723 /* Data type in which the computation is to be performed.
3724 In the simplest cases this is the common type of the arguments. */
3725 tree result_type = NULL;
3726
3727 /* Nonzero means operands have already been type-converted
3728 in whatever way is necessary.
3729 Zero means they need to be converted to RESULT_TYPE. */
3730 int converted = 0;
3731
3732 /* Nonzero means create the expression with this type, rather than
3733 RESULT_TYPE. */
3734 tree build_type = 0;
3735
3736 /* Nonzero means after finally constructing the expression
3737 convert it to this type. */
3738 tree final_type = 0;
3739
3740 tree result;
3741
3742 /* Nonzero if this is an operation like MIN or MAX which can
3743 safely be computed in short if both args are promoted shorts.
3744 Also implies COMMON.
3745 -1 indicates a bitwise operation; this makes a difference
3746 in the exact conditions for when it is safe to do the operation
3747 in a narrower mode. */
3748 int shorten = 0;
3749
3750 /* Nonzero if this is a comparison operation;
3751 if both args are promoted shorts, compare the original shorts.
3752 Also implies COMMON. */
3753 int short_compare = 0;
3754
3755 /* Nonzero means set RESULT_TYPE to the common type of the args. */
3756 int common = 0;
3757
3758 /* True if both operands have arithmetic type. */
3759 bool arithmetic_types_p;
3760
3761 /* Apply default conversions. */
3762 op0 = orig_op0;
3763 op1 = orig_op1;
3764
3765 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3766 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3767 || code == TRUTH_XOR_EXPR)
3768 {
3769 if (!really_overloaded_fn (op0))
3770 op0 = decay_conversion (op0);
3771 if (!really_overloaded_fn (op1))
3772 op1 = decay_conversion (op1);
3773 }
3774 else
3775 {
3776 if (!really_overloaded_fn (op0))
3777 op0 = default_conversion (op0);
3778 if (!really_overloaded_fn (op1))
3779 op1 = default_conversion (op1);
3780 }
3781
3782 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3783 STRIP_TYPE_NOPS (op0);
3784 STRIP_TYPE_NOPS (op1);
3785
3786 /* DTRT if one side is an overloaded function, but complain about it. */
3787 if (type_unknown_p (op0))
3788 {
3789 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
3790 if (t != error_mark_node)
3791 {
3792 if (complain & tf_error)
3793 permerror (input_location, "assuming cast to type %qT from overloaded function",
3794 TREE_TYPE (t));
3795 op0 = t;
3796 }
3797 }
3798 if (type_unknown_p (op1))
3799 {
3800 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
3801 if (t != error_mark_node)
3802 {
3803 if (complain & tf_error)
3804 permerror (input_location, "assuming cast to type %qT from overloaded function",
3805 TREE_TYPE (t));
3806 op1 = t;
3807 }
3808 }
3809
3810 type0 = TREE_TYPE (op0);
3811 type1 = TREE_TYPE (op1);
3812
3813 /* The expression codes of the data types of the arguments tell us
3814 whether the arguments are integers, floating, pointers, etc. */
3815 code0 = TREE_CODE (type0);
3816 code1 = TREE_CODE (type1);
3817
3818 /* If an error was already reported for one of the arguments,
3819 avoid reporting another error. */
3820 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
3821 return error_mark_node;
3822
3823 if ((invalid_op_diag
3824 = targetm.invalid_binary_op (code, type0, type1)))
3825 {
3826 error (invalid_op_diag);
3827 return error_mark_node;
3828 }
3829
3830 /* Issue warnings about peculiar, but valid, uses of NULL. */
3831 if ((orig_op0 == null_node || orig_op1 == null_node)
3832 /* It's reasonable to use pointer values as operands of &&
3833 and ||, so NULL is no exception. */
3834 && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR
3835 && ( /* Both are NULL (or 0) and the operation was not a
3836 comparison or a pointer subtraction. */
3837 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1)
3838 && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR)
3839 /* Or if one of OP0 or OP1 is neither a pointer nor NULL. */
3840 || (!null_ptr_cst_p (orig_op0)
3841 && !TYPE_PTR_P (type0) && !TYPE_PTR_TO_MEMBER_P (type0))
3842 || (!null_ptr_cst_p (orig_op1)
3843 && !TYPE_PTR_P (type1) && !TYPE_PTR_TO_MEMBER_P (type1)))
3844 && (complain & tf_warning))
3845 /* Some sort of arithmetic operation involving NULL was
3846 performed. */
3847 warning (OPT_Wpointer_arith, "NULL used in arithmetic");
3848
3849 switch (code)
3850 {
3851 case MINUS_EXPR:
3852 /* Subtraction of two similar pointers.
3853 We must subtract them as integers, then divide by object size. */
3854 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
3855 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
3856 TREE_TYPE (type1)))
3857 return pointer_diff (op0, op1, common_pointer_type (type0, type1));
3858 /* In all other cases except pointer - int, the usual arithmetic
3859 rules apply. */
3860 else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
3861 {
3862 common = 1;
3863 break;
3864 }
3865 /* The pointer - int case is just like pointer + int; fall
3866 through. */
3867 case PLUS_EXPR:
3868 if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
3869 && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
3870 {
3871 tree ptr_operand;
3872 tree int_operand;
3873 ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
3874 int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
3875 if (processing_template_decl)
3876 {
3877 result_type = TREE_TYPE (ptr_operand);
3878 break;
3879 }
3880 return cp_pointer_int_sum (code,
3881 ptr_operand,
3882 int_operand);
3883 }
3884 common = 1;
3885 break;
3886
3887 case MULT_EXPR:
3888 common = 1;
3889 break;
3890
3891 case TRUNC_DIV_EXPR:
3892 case CEIL_DIV_EXPR:
3893 case FLOOR_DIV_EXPR:
3894 case ROUND_DIV_EXPR:
3895 case EXACT_DIV_EXPR:
3896 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3897 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
3898 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3899 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
3900 {
3901 enum tree_code tcode0 = code0, tcode1 = code1;
3902
3903 warn_for_div_by_zero (location, op1);
3904
3905 if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
3906 tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
3907 if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
3908 tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
3909
3910 if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
3911 resultcode = RDIV_EXPR;
3912 else
3913 /* When dividing two signed integers, we have to promote to int.
3914 unless we divide by a constant != -1. Note that default
3915 conversion will have been performed on the operands at this
3916 point, so we have to dig out the original type to find out if
3917 it was unsigned. */
3918 shorten = ((TREE_CODE (op0) == NOP_EXPR
3919 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3920 || (TREE_CODE (op1) == INTEGER_CST
3921 && ! integer_all_onesp (op1)));
3922
3923 common = 1;
3924 }
3925 break;
3926
3927 case BIT_AND_EXPR:
3928 case BIT_IOR_EXPR:
3929 case BIT_XOR_EXPR:
3930 if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3931 || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3932 && !VECTOR_FLOAT_TYPE_P (type0)
3933 && !VECTOR_FLOAT_TYPE_P (type1)))
3934 shorten = -1;
3935 break;
3936
3937 case TRUNC_MOD_EXPR:
3938 case FLOOR_MOD_EXPR:
3939 warn_for_div_by_zero (location, op1);
3940
3941 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3942 && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
3943 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
3944 common = 1;
3945 else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3946 {
3947 /* Although it would be tempting to shorten always here, that loses
3948 on some targets, since the modulo instruction is undefined if the
3949 quotient can't be represented in the computation mode. We shorten
3950 only if unsigned or if dividing by something we know != -1. */
3951 shorten = ((TREE_CODE (op0) == NOP_EXPR
3952 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3953 || (TREE_CODE (op1) == INTEGER_CST
3954 && ! integer_all_onesp (op1)));
3955 common = 1;
3956 }
3957 break;
3958
3959 case TRUTH_ANDIF_EXPR:
3960 case TRUTH_ORIF_EXPR:
3961 case TRUTH_AND_EXPR:
3962 case TRUTH_OR_EXPR:
3963 result_type = boolean_type_node;
3964 break;
3965
3966 /* Shift operations: result has same type as first operand;
3967 always convert second operand to int.
3968 Also set SHORT_SHIFT if shifting rightward. */
3969
3970 case RSHIFT_EXPR:
3971 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3972 {
3973 result_type = type0;
3974 if (TREE_CODE (op1) == INTEGER_CST)
3975 {
3976 if (tree_int_cst_lt (op1, integer_zero_node))
3977 {
3978 if ((complain & tf_warning)
3979 && c_inhibit_evaluation_warnings == 0)
3980 warning (0, "right shift count is negative");
3981 }
3982 else
3983 {
3984 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0
3985 && (complain & tf_warning)
3986 && c_inhibit_evaluation_warnings == 0)
3987 warning (0, "right shift count >= width of type");
3988 }
3989 }
3990 /* Convert the shift-count to an integer, regardless of
3991 size of value being shifted. */
3992 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3993 op1 = cp_convert (integer_type_node, op1);
3994 /* Avoid converting op1 to result_type later. */
3995 converted = 1;
3996 }
3997 break;
3998
3999 case LSHIFT_EXPR:
4000 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4001 {
4002 result_type = type0;
4003 if (TREE_CODE (op1) == INTEGER_CST)
4004 {
4005 if (tree_int_cst_lt (op1, integer_zero_node))
4006 {
4007 if ((complain & tf_warning)
4008 && c_inhibit_evaluation_warnings == 0)
4009 warning (0, "left shift count is negative");
4010 }
4011 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
4012 {
4013 if ((complain & tf_warning)
4014 && c_inhibit_evaluation_warnings == 0)
4015 warning (0, "left shift count >= width of type");
4016 }
4017 }
4018 /* Convert the shift-count to an integer, regardless of
4019 size of value being shifted. */
4020 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
4021 op1 = cp_convert (integer_type_node, op1);
4022 /* Avoid converting op1 to result_type later. */
4023 converted = 1;
4024 }
4025 break;
4026
4027 case RROTATE_EXPR:
4028 case LROTATE_EXPR:
4029 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
4030 {
4031 result_type = type0;
4032 if (TREE_CODE (op1) == INTEGER_CST)
4033 {
4034 if (tree_int_cst_lt (op1, integer_zero_node))
4035 {
4036 if (complain & tf_warning)
4037 warning (0, (code == LROTATE_EXPR)
4038 ? G_("left rotate count is negative")
4039 : G_("right rotate count is negative"));
4040 }
4041 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
4042 {
4043 if (complain & tf_warning)
4044 warning (0, (code == LROTATE_EXPR)
4045 ? G_("left rotate count >= width of type")
4046 : G_("right rotate count >= width of type"));
4047 }
4048 }
4049 /* Convert the shift-count to an integer, regardless of
4050 size of value being shifted. */
4051 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
4052 op1 = cp_convert (integer_type_node, op1);
4053 }
4054 break;
4055
4056 case EQ_EXPR:
4057 case NE_EXPR:
4058 if ((complain & tf_warning)
4059 && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
4060 warning (OPT_Wfloat_equal,
4061 "comparing floating point with == or != is unsafe");
4062 if ((complain & tf_warning)
4063 && ((TREE_CODE (orig_op0) == STRING_CST && !integer_zerop (op1))
4064 || (TREE_CODE (orig_op1) == STRING_CST && !integer_zerop (op0))))
4065 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4066
4067 build_type = boolean_type_node;
4068 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4069 || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
4070 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4071 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
4072 short_compare = 1;
4073 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4074 || (TYPE_PTRMEM_P (type0) && TYPE_PTRMEM_P (type1)))
4075 result_type = composite_pointer_type (type0, type1, op0, op1,
4076 CPO_COMPARISON, complain);
4077 else if ((code0 == POINTER_TYPE || TYPE_PTRMEM_P (type0))
4078 && null_ptr_cst_p (op1))
4079 {
4080 if (TREE_CODE (op0) == ADDR_EXPR
4081 && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
4082 {
4083 if (complain & tf_warning)
4084 warning (OPT_Waddress, "the address of %qD will never be NULL",
4085 TREE_OPERAND (op0, 0));
4086 }
4087 result_type = type0;
4088 }
4089 else if ((code1 == POINTER_TYPE || TYPE_PTRMEM_P (type1))
4090 && null_ptr_cst_p (op0))
4091 {
4092 if (TREE_CODE (op1) == ADDR_EXPR
4093 && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
4094 {
4095 if (complain & tf_warning)
4096 warning (OPT_Waddress, "the address of %qD will never be NULL",
4097 TREE_OPERAND (op1, 0));
4098 }
4099 result_type = type1;
4100 }
4101 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4102 /* One of the operands must be of nullptr_t type. */
4103 result_type = TREE_TYPE (nullptr_node);
4104 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4105 {
4106 result_type = type0;
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 (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4113 {
4114 result_type = type1;
4115 if (complain & tf_error)
4116 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4117 else
4118 return error_mark_node;
4119 }
4120 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
4121 {
4122 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4123 == ptrmemfunc_vbit_in_delta)
4124 {
4125 tree pfn0 = pfn_from_ptrmemfunc (op0);
4126 tree delta0 = delta_from_ptrmemfunc (op0);
4127 tree e1 = cp_build_binary_op (location,
4128 EQ_EXPR,
4129 pfn0,
4130 fold_convert (TREE_TYPE (pfn0),
4131 integer_zero_node),
4132 complain);
4133 tree e2 = cp_build_binary_op (location,
4134 BIT_AND_EXPR,
4135 delta0,
4136 integer_one_node,
4137 complain);
4138 e2 = cp_build_binary_op (location,
4139 EQ_EXPR, e2, integer_zero_node,
4140 complain);
4141 op0 = cp_build_binary_op (location,
4142 TRUTH_ANDIF_EXPR, e1, e2,
4143 complain);
4144 op1 = cp_convert (TREE_TYPE (op0), integer_one_node);
4145 }
4146 else
4147 {
4148 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
4149 op1 = cp_convert (TREE_TYPE (op0), integer_zero_node);
4150 }
4151 result_type = TREE_TYPE (op0);
4152 }
4153 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
4154 return cp_build_binary_op (location, code, op1, op0, complain);
4155 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1))
4156 {
4157 tree type;
4158 /* E will be the final comparison. */
4159 tree e;
4160 /* E1 and E2 are for scratch. */
4161 tree e1;
4162 tree e2;
4163 tree pfn0;
4164 tree pfn1;
4165 tree delta0;
4166 tree delta1;
4167
4168 type = composite_pointer_type (type0, type1, op0, op1,
4169 CPO_COMPARISON, complain);
4170
4171 if (!same_type_p (TREE_TYPE (op0), type))
4172 op0 = cp_convert_and_check (type, op0);
4173 if (!same_type_p (TREE_TYPE (op1), type))
4174 op1 = cp_convert_and_check (type, op1);
4175
4176 if (op0 == error_mark_node || op1 == error_mark_node)
4177 return error_mark_node;
4178
4179 if (TREE_SIDE_EFFECTS (op0))
4180 op0 = save_expr (op0);
4181 if (TREE_SIDE_EFFECTS (op1))
4182 op1 = save_expr (op1);
4183
4184 pfn0 = pfn_from_ptrmemfunc (op0);
4185 pfn1 = pfn_from_ptrmemfunc (op1);
4186 delta0 = delta_from_ptrmemfunc (op0);
4187 delta1 = delta_from_ptrmemfunc (op1);
4188 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
4189 == ptrmemfunc_vbit_in_delta)
4190 {
4191 /* We generate:
4192
4193 (op0.pfn == op1.pfn
4194 && ((op0.delta == op1.delta)
4195 || (!op0.pfn && op0.delta & 1 == 0
4196 && op1.delta & 1 == 0))
4197
4198 The reason for the `!op0.pfn' bit is that a NULL
4199 pointer-to-member is any member with a zero PFN and
4200 LSB of the DELTA field is 0. */
4201
4202 e1 = cp_build_binary_op (location, BIT_AND_EXPR,
4203 delta0,
4204 integer_one_node,
4205 complain);
4206 e1 = cp_build_binary_op (location,
4207 EQ_EXPR, e1, integer_zero_node,
4208 complain);
4209 e2 = cp_build_binary_op (location, BIT_AND_EXPR,
4210 delta1,
4211 integer_one_node,
4212 complain);
4213 e2 = cp_build_binary_op (location,
4214 EQ_EXPR, e2, integer_zero_node,
4215 complain);
4216 e1 = cp_build_binary_op (location,
4217 TRUTH_ANDIF_EXPR, e2, e1,
4218 complain);
4219 e2 = cp_build_binary_op (location, EQ_EXPR,
4220 pfn0,
4221 fold_convert (TREE_TYPE (pfn0),
4222 integer_zero_node),
4223 complain);
4224 e2 = cp_build_binary_op (location,
4225 TRUTH_ANDIF_EXPR, e2, e1, complain);
4226 e1 = cp_build_binary_op (location,
4227 EQ_EXPR, delta0, delta1, complain);
4228 e1 = cp_build_binary_op (location,
4229 TRUTH_ORIF_EXPR, e1, e2, complain);
4230 }
4231 else
4232 {
4233 /* We generate:
4234
4235 (op0.pfn == op1.pfn
4236 && (!op0.pfn || op0.delta == op1.delta))
4237
4238 The reason for the `!op0.pfn' bit is that a NULL
4239 pointer-to-member is any member with a zero PFN; the
4240 DELTA field is unspecified. */
4241
4242 e1 = cp_build_binary_op (location,
4243 EQ_EXPR, delta0, delta1, complain);
4244 e2 = cp_build_binary_op (location,
4245 EQ_EXPR,
4246 pfn0,
4247 fold_convert (TREE_TYPE (pfn0),
4248 integer_zero_node),
4249 complain);
4250 e1 = cp_build_binary_op (location,
4251 TRUTH_ORIF_EXPR, e1, e2, complain);
4252 }
4253 e2 = build2 (EQ_EXPR, boolean_type_node, pfn0, pfn1);
4254 e = cp_build_binary_op (location,
4255 TRUTH_ANDIF_EXPR, e2, e1, complain);
4256 if (code == EQ_EXPR)
4257 return e;
4258 return cp_build_binary_op (location,
4259 EQ_EXPR, e, integer_zero_node, complain);
4260 }
4261 else
4262 {
4263 gcc_assert (!TYPE_PTRMEMFUNC_P (type0)
4264 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0),
4265 type1));
4266 gcc_assert (!TYPE_PTRMEMFUNC_P (type1)
4267 || !same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1),
4268 type0));
4269 }
4270
4271 break;
4272
4273 case MAX_EXPR:
4274 case MIN_EXPR:
4275 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
4276 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
4277 shorten = 1;
4278 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4279 result_type = composite_pointer_type (type0, type1, op0, op1,
4280 CPO_COMPARISON, complain);
4281 break;
4282
4283 case LE_EXPR:
4284 case GE_EXPR:
4285 case LT_EXPR:
4286 case GT_EXPR:
4287 if (TREE_CODE (orig_op0) == STRING_CST
4288 || TREE_CODE (orig_op1) == STRING_CST)
4289 {
4290 if (complain & tf_warning)
4291 warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
4292 }
4293
4294 build_type = boolean_type_node;
4295 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
4296 || code0 == ENUMERAL_TYPE)
4297 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4298 || code1 == ENUMERAL_TYPE))
4299 short_compare = 1;
4300 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
4301 result_type = composite_pointer_type (type0, type1, op0, op1,
4302 CPO_COMPARISON, complain);
4303 else if (code0 == POINTER_TYPE && null_ptr_cst_p (op1))
4304 result_type = type0;
4305 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op0))
4306 result_type = type1;
4307 else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4308 /* One of the operands must be of nullptr_t type. */
4309 result_type = TREE_TYPE (nullptr_node);
4310 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4311 {
4312 result_type = type0;
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 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4319 {
4320 result_type = type1;
4321 if (complain & tf_error)
4322 permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4323 else
4324 return error_mark_node;
4325 }
4326 break;
4327
4328 case UNORDERED_EXPR:
4329 case ORDERED_EXPR:
4330 case UNLT_EXPR:
4331 case UNLE_EXPR:
4332 case UNGT_EXPR:
4333 case UNGE_EXPR:
4334 case UNEQ_EXPR:
4335 build_type = integer_type_node;
4336 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
4337 {
4338 if (complain & tf_error)
4339 error ("unordered comparison on non-floating point argument");
4340 return error_mark_node;
4341 }
4342 common = 1;
4343 break;
4344
4345 default:
4346 break;
4347 }
4348
4349 if (((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
4350 || code0 == ENUMERAL_TYPE)
4351 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
4352 || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE)))
4353 arithmetic_types_p = 1;
4354 else
4355 {
4356 arithmetic_types_p = 0;
4357 /* Vector arithmetic is only allowed when both sides are vectors. */
4358 if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
4359 {
4360 if (!tree_int_cst_equal (TYPE_SIZE (type0), TYPE_SIZE (type1))
4361 || !same_scalar_type_ignoring_signedness (TREE_TYPE (type0),
4362 TREE_TYPE (type1)))
4363 {
4364 binary_op_error (location, code, type0, type1);
4365 return error_mark_node;
4366 }
4367 arithmetic_types_p = 1;
4368 }
4369 }
4370 /* Determine the RESULT_TYPE, if it is not already known. */
4371 if (!result_type
4372 && arithmetic_types_p
4373 && (shorten || common || short_compare))
4374 {
4375 result_type = cp_common_type (type0, type1);
4376 do_warn_double_promotion (result_type, type0, type1,
4377 "implicit conversion from %qT to %qT "
4378 "to match other operand of binary "
4379 "expression",
4380 location);
4381 }
4382
4383 if (!result_type)
4384 {
4385 if (complain & tf_error)
4386 error ("invalid operands of types %qT and %qT to binary %qO",
4387 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
4388 return error_mark_node;
4389 }
4390
4391 /* If we're in a template, the only thing we need to know is the
4392 RESULT_TYPE. */
4393 if (processing_template_decl)
4394 {
4395 /* Since the middle-end checks the type when doing a build2, we
4396 need to build the tree in pieces. This built tree will never
4397 get out of the front-end as we replace it when instantiating
4398 the template. */
4399 tree tmp = build2 (resultcode,
4400 build_type ? build_type : result_type,
4401 NULL_TREE, op1);
4402 TREE_OPERAND (tmp, 0) = op0;
4403 return tmp;
4404 }
4405
4406 if (arithmetic_types_p)
4407 {
4408 bool first_complex = (code0 == COMPLEX_TYPE);
4409 bool second_complex = (code1 == COMPLEX_TYPE);
4410 int none_complex = (!first_complex && !second_complex);
4411
4412 /* Adapted from patch for c/24581. */
4413 if (first_complex != second_complex
4414 && (code == PLUS_EXPR
4415 || code == MINUS_EXPR
4416 || code == MULT_EXPR
4417 || (code == TRUNC_DIV_EXPR && first_complex))
4418 && TREE_CODE (TREE_TYPE (result_type)) == REAL_TYPE
4419 && flag_signed_zeros)
4420 {
4421 /* An operation on mixed real/complex operands must be
4422 handled specially, but the language-independent code can
4423 more easily optimize the plain complex arithmetic if
4424 -fno-signed-zeros. */
4425 tree real_type = TREE_TYPE (result_type);
4426 tree real, imag;
4427 if (first_complex)
4428 {
4429 if (TREE_TYPE (op0) != result_type)
4430 op0 = cp_convert_and_check (result_type, op0);
4431 if (TREE_TYPE (op1) != real_type)
4432 op1 = cp_convert_and_check (real_type, op1);
4433 }
4434 else
4435 {
4436 if (TREE_TYPE (op0) != real_type)
4437 op0 = cp_convert_and_check (real_type, op0);
4438 if (TREE_TYPE (op1) != result_type)
4439 op1 = cp_convert_and_check (result_type, op1);
4440 }
4441 if (TREE_CODE (op0) == ERROR_MARK || TREE_CODE (op1) == ERROR_MARK)
4442 return error_mark_node;
4443 if (first_complex)
4444 {
4445 op0 = save_expr (op0);
4446 real = cp_build_unary_op (REALPART_EXPR, op0, 1, complain);
4447 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain);
4448 switch (code)
4449 {
4450 case MULT_EXPR:
4451 case TRUNC_DIV_EXPR:
4452 imag = build2 (resultcode, real_type, imag, op1);
4453 /* Fall through. */
4454 case PLUS_EXPR:
4455 case MINUS_EXPR:
4456 real = build2 (resultcode, real_type, real, op1);
4457 break;
4458 default:
4459 gcc_unreachable();
4460 }
4461 }
4462 else
4463 {
4464 op1 = save_expr (op1);
4465 real = cp_build_unary_op (REALPART_EXPR, op1, 1, complain);
4466 imag = cp_build_unary_op (IMAGPART_EXPR, op1, 1, complain);
4467 switch (code)
4468 {
4469 case MULT_EXPR:
4470 imag = build2 (resultcode, real_type, op0, imag);
4471 /* Fall through. */
4472 case PLUS_EXPR:
4473 real = build2 (resultcode, real_type, op0, real);
4474 break;
4475 case MINUS_EXPR:
4476 real = build2 (resultcode, real_type, op0, real);
4477 imag = build1 (NEGATE_EXPR, real_type, imag);
4478 break;
4479 default:
4480 gcc_unreachable();
4481 }
4482 }
4483 return build2 (COMPLEX_EXPR, result_type, real, imag);
4484 }
4485
4486 /* For certain operations (which identify themselves by shorten != 0)
4487 if both args were extended from the same smaller type,
4488 do the arithmetic in that type and then extend.
4489
4490 shorten !=0 and !=1 indicates a bitwise operation.
4491 For them, this optimization is safe only if
4492 both args are zero-extended or both are sign-extended.
4493 Otherwise, we might change the result.
4494 E.g., (short)-1 | (unsigned short)-1 is (int)-1
4495 but calculated in (unsigned short) it would be (unsigned short)-1. */
4496
4497 if (shorten && none_complex)
4498 {
4499 final_type = result_type;
4500 result_type = shorten_binary_op (result_type, op0, op1,
4501 shorten == -1);
4502 }
4503
4504 /* Comparison operations are shortened too but differently.
4505 They identify themselves by setting short_compare = 1. */
4506
4507 if (short_compare)
4508 {
4509 /* Don't write &op0, etc., because that would prevent op0
4510 from being kept in a register.
4511 Instead, make copies of the our local variables and
4512 pass the copies by reference, then copy them back afterward. */
4513 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
4514 enum tree_code xresultcode = resultcode;
4515 tree val
4516 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
4517 if (val != 0)
4518 return cp_convert (boolean_type_node, val);
4519 op0 = xop0, op1 = xop1;
4520 converted = 1;
4521 resultcode = xresultcode;
4522 }
4523
4524 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
4525 && warn_sign_compare
4526 && !TREE_NO_WARNING (orig_op0)
4527 && !TREE_NO_WARNING (orig_op1)
4528 /* Do not warn until the template is instantiated; we cannot
4529 bound the ranges of the arguments until that point. */
4530 && !processing_template_decl
4531 && (complain & tf_warning)
4532 && c_inhibit_evaluation_warnings == 0)
4533 {
4534 warn_for_sign_compare (location, orig_op0, orig_op1, op0, op1,
4535 result_type, resultcode);
4536 }
4537 }
4538
4539 /* If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
4540 Then the expression will be built.
4541 It will be given type FINAL_TYPE if that is nonzero;
4542 otherwise, it will be given type RESULT_TYPE. */
4543 if (! converted)
4544 {
4545 if (TREE_TYPE (op0) != result_type)
4546 op0 = cp_convert_and_check (result_type, op0);
4547 if (TREE_TYPE (op1) != result_type)
4548 op1 = cp_convert_and_check (result_type, op1);
4549
4550 if (op0 == error_mark_node || op1 == error_mark_node)
4551 return error_mark_node;
4552 }
4553
4554 if (build_type == NULL_TREE)
4555 build_type = result_type;
4556
4557 result = build2 (resultcode, build_type, op0, op1);
4558 result = fold_if_not_in_template (result);
4559 if (final_type != 0)
4560 result = cp_convert (final_type, result);
4561
4562 if (TREE_OVERFLOW_P (result)
4563 && !TREE_OVERFLOW_P (op0)
4564 && !TREE_OVERFLOW_P (op1))
4565 overflow_warning (location, result);
4566
4567 return result;
4568 }
4569 \f
4570 /* Return a tree for the sum or difference (RESULTCODE says which)
4571 of pointer PTROP and integer INTOP. */
4572
4573 static tree
4574 cp_pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop)
4575 {
4576 tree res_type = TREE_TYPE (ptrop);
4577
4578 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
4579 in certain circumstance (when it's valid to do so). So we need
4580 to make sure it's complete. We don't need to check here, if we
4581 can actually complete it at all, as those checks will be done in
4582 pointer_int_sum() anyway. */
4583 complete_type (TREE_TYPE (res_type));
4584
4585 return pointer_int_sum (input_location, resultcode, ptrop,
4586 fold_if_not_in_template (intop));
4587 }
4588
4589 /* Return a tree for the difference of pointers OP0 and OP1.
4590 The resulting tree has type int. */
4591
4592 static tree
4593 pointer_diff (tree op0, tree op1, tree ptrtype)
4594 {
4595 tree result;
4596 tree restype = ptrdiff_type_node;
4597 tree target_type = TREE_TYPE (ptrtype);
4598
4599 if (!complete_type_or_else (target_type, NULL_TREE))
4600 return error_mark_node;
4601
4602 if (TREE_CODE (target_type) == VOID_TYPE)
4603 permerror (input_location, "ISO C++ forbids using pointer of type %<void *%> in subtraction");
4604 if (TREE_CODE (target_type) == FUNCTION_TYPE)
4605 permerror (input_location, "ISO C++ forbids using pointer to a function in subtraction");
4606 if (TREE_CODE (target_type) == METHOD_TYPE)
4607 permerror (input_location, "ISO C++ forbids using pointer to a method in subtraction");
4608
4609 /* First do the subtraction as integers;
4610 then drop through to build the divide operator. */
4611
4612 op0 = cp_build_binary_op (input_location,
4613 MINUS_EXPR,
4614 cp_convert (restype, op0),
4615 cp_convert (restype, op1),
4616 tf_warning_or_error);
4617
4618 /* This generates an error if op1 is a pointer to an incomplete type. */
4619 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
4620 error ("invalid use of a pointer to an incomplete type in pointer arithmetic");
4621
4622 op1 = (TYPE_PTROB_P (ptrtype)
4623 ? size_in_bytes (target_type)
4624 : integer_one_node);
4625
4626 /* Do the division. */
4627
4628 result = build2 (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
4629 return fold_if_not_in_template (result);
4630 }
4631 \f
4632 /* Construct and perhaps optimize a tree representation
4633 for a unary operation. CODE, a tree_code, specifies the operation
4634 and XARG is the operand. */
4635
4636 tree
4637 build_x_unary_op (enum tree_code code, tree xarg, tsubst_flags_t complain)
4638 {
4639 tree orig_expr = xarg;
4640 tree exp;
4641 int ptrmem = 0;
4642
4643 if (processing_template_decl)
4644 {
4645 if (type_dependent_expression_p (xarg))
4646 return build_min_nt (code, xarg, NULL_TREE);
4647
4648 xarg = build_non_dependent_expr (xarg);
4649 }
4650
4651 exp = NULL_TREE;
4652
4653 /* [expr.unary.op] says:
4654
4655 The address of an object of incomplete type can be taken.
4656
4657 (And is just the ordinary address operator, not an overloaded
4658 "operator &".) However, if the type is a template
4659 specialization, we must complete the type at this point so that
4660 an overloaded "operator &" will be available if required. */
4661 if (code == ADDR_EXPR
4662 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
4663 && ((CLASS_TYPE_P (TREE_TYPE (xarg))
4664 && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (xarg))))
4665 || (TREE_CODE (xarg) == OFFSET_REF)))
4666 /* Don't look for a function. */;
4667 else
4668 exp = build_new_op (code, LOOKUP_NORMAL, xarg, NULL_TREE, NULL_TREE,
4669 /*overloaded_p=*/NULL, complain);
4670 if (!exp && code == ADDR_EXPR)
4671 {
4672 if (is_overloaded_fn (xarg))
4673 {
4674 tree fn = get_first_fn (xarg);
4675 if (DECL_CONSTRUCTOR_P (fn) || DECL_DESTRUCTOR_P (fn))
4676 {
4677 error (DECL_CONSTRUCTOR_P (fn)
4678 ? G_("taking address of constructor %qE")
4679 : G_("taking address of destructor %qE"),
4680 xarg);
4681 return error_mark_node;
4682 }
4683 }
4684
4685 /* A pointer to member-function can be formed only by saying
4686 &X::mf. */
4687 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
4688 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
4689 {
4690 if (TREE_CODE (xarg) != OFFSET_REF
4691 || !TYPE_P (TREE_OPERAND (xarg, 0)))
4692 {
4693 error ("invalid use of %qE to form a pointer-to-member-function",
4694 xarg);
4695 if (TREE_CODE (xarg) != OFFSET_REF)
4696 inform (input_location, " a qualified-id is required");
4697 return error_mark_node;
4698 }
4699 else
4700 {
4701 error ("parentheses around %qE cannot be used to form a"
4702 " pointer-to-member-function",
4703 xarg);
4704 PTRMEM_OK_P (xarg) = 1;
4705 }
4706 }
4707
4708 if (TREE_CODE (xarg) == OFFSET_REF)
4709 {
4710 ptrmem = PTRMEM_OK_P (xarg);
4711
4712 if (!ptrmem && !flag_ms_extensions
4713 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
4714 {
4715 /* A single non-static member, make sure we don't allow a
4716 pointer-to-member. */
4717 xarg = build2 (OFFSET_REF, TREE_TYPE (xarg),
4718 TREE_OPERAND (xarg, 0),
4719 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
4720 PTRMEM_OK_P (xarg) = ptrmem;
4721 }
4722 }
4723
4724 exp = cp_build_addr_expr_strict (xarg, complain);
4725 }
4726
4727 if (processing_template_decl && exp != error_mark_node)
4728 exp = build_min_non_dep (code, exp, orig_expr,
4729 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
4730 if (TREE_CODE (exp) == ADDR_EXPR)
4731 PTRMEM_OK_P (exp) = ptrmem;
4732 return exp;
4733 }
4734
4735 /* Like c_common_truthvalue_conversion, but handle pointer-to-member
4736 constants, where a null value is represented by an INTEGER_CST of
4737 -1. */
4738
4739 tree
4740 cp_truthvalue_conversion (tree expr)
4741 {
4742 tree type = TREE_TYPE (expr);
4743 if (TYPE_PTRMEM_P (type))
4744 return build_binary_op (EXPR_LOCATION (expr),
4745 NE_EXPR, expr, integer_zero_node, 1);
4746 else
4747 return c_common_truthvalue_conversion (input_location, expr);
4748 }
4749
4750 /* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
4751
4752 tree
4753 condition_conversion (tree expr)
4754 {
4755 tree t;
4756 if (processing_template_decl)
4757 return expr;
4758 t = perform_implicit_conversion_flags (boolean_type_node, expr,
4759 tf_warning_or_error, LOOKUP_NORMAL);
4760 t = fold_build_cleanup_point_expr (boolean_type_node, t);
4761 return t;
4762 }
4763
4764 /* Returns the address of T. This function will fold away
4765 ADDR_EXPR of INDIRECT_REF. */
4766
4767 tree
4768 build_address (tree t)
4769 {
4770 if (error_operand_p (t) || !cxx_mark_addressable (t))
4771 return error_mark_node;
4772 t = build_fold_addr_expr (t);
4773 if (TREE_CODE (t) != ADDR_EXPR)
4774 t = rvalue (t);
4775 return t;
4776 }
4777
4778 /* Returns the address of T with type TYPE. */
4779
4780 tree
4781 build_typed_address (tree t, tree type)
4782 {
4783 if (error_operand_p (t) || !cxx_mark_addressable (t))
4784 return error_mark_node;
4785 t = build_fold_addr_expr_with_type (t, type);
4786 if (TREE_CODE (t) != ADDR_EXPR)
4787 t = rvalue (t);
4788 return t;
4789 }
4790
4791 /* Return a NOP_EXPR converting EXPR to TYPE. */
4792
4793 tree
4794 build_nop (tree type, tree expr)
4795 {
4796 if (type == error_mark_node || error_operand_p (expr))
4797 return expr;
4798 return build1 (NOP_EXPR, type, expr);
4799 }
4800
4801 /* Take the address of ARG, whatever that means under C++ semantics.
4802 If STRICT_LVALUE is true, require an lvalue; otherwise, allow xvalues
4803 and class rvalues as well.
4804
4805 Nothing should call this function directly; instead, callers should use
4806 cp_build_addr_expr or cp_build_addr_expr_strict. */
4807
4808 static tree
4809 cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
4810 {
4811 tree argtype;
4812 tree val;
4813
4814 if (!arg || error_operand_p (arg))
4815 return error_mark_node;
4816
4817 arg = mark_lvalue_use (arg);
4818 argtype = lvalue_type (arg);
4819
4820 gcc_assert (TREE_CODE (arg) != IDENTIFIER_NODE
4821 || !IDENTIFIER_OPNAME_P (arg));
4822
4823 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
4824 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
4825 {
4826 /* They're trying to take the address of a unique non-static
4827 member function. This is ill-formed (except in MS-land),
4828 but let's try to DTRT.
4829 Note: We only handle unique functions here because we don't
4830 want to complain if there's a static overload; non-unique
4831 cases will be handled by instantiate_type. But we need to
4832 handle this case here to allow casts on the resulting PMF.
4833 We could defer this in non-MS mode, but it's easier to give
4834 a useful error here. */
4835
4836 /* Inside constant member functions, the `this' pointer
4837 contains an extra const qualifier. TYPE_MAIN_VARIANT
4838 is used here to remove this const from the diagnostics
4839 and the created OFFSET_REF. */
4840 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
4841 tree fn = get_first_fn (TREE_OPERAND (arg, 1));
4842 mark_used (fn);
4843
4844 if (! flag_ms_extensions)
4845 {
4846 tree name = DECL_NAME (fn);
4847 if (!(complain & tf_error))
4848 return error_mark_node;
4849 else if (current_class_type
4850 && TREE_OPERAND (arg, 0) == current_class_ref)
4851 /* An expression like &memfn. */
4852 permerror (input_location, "ISO C++ forbids taking the address of an unqualified"
4853 " or parenthesized non-static member function to form"
4854 " a pointer to member function. Say %<&%T::%D%>",
4855 base, name);
4856 else
4857 permerror (input_location, "ISO C++ forbids taking the address of a bound member"
4858 " function to form a pointer to member function."
4859 " Say %<&%T::%D%>",
4860 base, name);
4861 }
4862 arg = build_offset_ref (base, fn, /*address_p=*/true);
4863 }
4864
4865 /* Uninstantiated types are all functions. Taking the
4866 address of a function is a no-op, so just return the
4867 argument. */
4868 if (type_unknown_p (arg))
4869 return build1 (ADDR_EXPR, unknown_type_node, arg);
4870
4871 if (TREE_CODE (arg) == OFFSET_REF)
4872 /* We want a pointer to member; bypass all the code for actually taking
4873 the address of something. */
4874 goto offset_ref;
4875
4876 /* Anything not already handled and not a true memory reference
4877 is an error. */
4878 if (TREE_CODE (argtype) != FUNCTION_TYPE
4879 && TREE_CODE (argtype) != METHOD_TYPE)
4880 {
4881 cp_lvalue_kind kind = lvalue_kind (arg);
4882 if (kind == clk_none)
4883 {
4884 if (complain & tf_error)
4885 lvalue_error (lv_addressof);
4886 return error_mark_node;
4887 }
4888 if (strict_lvalue && (kind & (clk_rvalueref|clk_class)))
4889 {
4890 if (!(complain & tf_error))
4891 return error_mark_node;
4892 if (kind & clk_class)
4893 /* Make this a permerror because we used to accept it. */
4894 permerror (input_location, "taking address of temporary");
4895 else
4896 error ("taking address of xvalue (rvalue reference)");
4897 }
4898 }
4899
4900 if (TREE_CODE (argtype) == REFERENCE_TYPE)
4901 {
4902 tree type = build_pointer_type (TREE_TYPE (argtype));
4903 arg = build1 (CONVERT_EXPR, type, arg);
4904 return arg;
4905 }
4906 else if (pedantic && DECL_MAIN_P (arg))
4907 {
4908 /* ARM $3.4 */
4909 /* Apparently a lot of autoconf scripts for C++ packages do this,
4910 so only complain if -pedantic. */
4911 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
4912 pedwarn (input_location, OPT_pedantic,
4913 "ISO C++ forbids taking address of function %<::main%>");
4914 else if (flag_pedantic_errors)
4915 return error_mark_node;
4916 }
4917
4918 /* Let &* cancel out to simplify resulting code. */
4919 if (TREE_CODE (arg) == INDIRECT_REF)
4920 {
4921 /* We don't need to have `current_class_ptr' wrapped in a
4922 NON_LVALUE_EXPR node. */
4923 if (arg == current_class_ref)
4924 return current_class_ptr;
4925
4926 arg = TREE_OPERAND (arg, 0);
4927 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
4928 {
4929 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
4930 arg = build1 (CONVERT_EXPR, type, arg);
4931 }
4932 else
4933 /* Don't let this be an lvalue. */
4934 arg = rvalue (arg);
4935 return arg;
4936 }
4937
4938 /* ??? Cope with user tricks that amount to offsetof. */
4939 if (TREE_CODE (argtype) != FUNCTION_TYPE
4940 && TREE_CODE (argtype) != METHOD_TYPE
4941 && argtype != unknown_type_node
4942 && (val = get_base_address (arg))
4943 && TREE_CODE (val) == INDIRECT_REF
4944 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
4945 {
4946 tree type = build_pointer_type (argtype);
4947 tree op0 = fold_convert (type, TREE_OPERAND (val, 0));
4948 tree op1 = fold_convert (sizetype, fold_offsetof (arg, val));
4949 return fold_build2 (POINTER_PLUS_EXPR, type, op0, op1);
4950 }
4951
4952 /* Handle complex lvalues (when permitted)
4953 by reduction to simpler cases. */
4954 val = unary_complex_lvalue (ADDR_EXPR, arg);
4955 if (val != 0)
4956 return val;
4957
4958 switch (TREE_CODE (arg))
4959 {
4960 CASE_CONVERT:
4961 case FLOAT_EXPR:
4962 case FIX_TRUNC_EXPR:
4963 /* Even if we're not being pedantic, we cannot allow this
4964 extension when we're instantiating in a SFINAE
4965 context. */
4966 if (! lvalue_p (arg) && complain == tf_none)
4967 {
4968 if (complain & tf_error)
4969 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
4970 else
4971 return error_mark_node;
4972 }
4973 break;
4974
4975 case BASELINK:
4976 arg = BASELINK_FUNCTIONS (arg);
4977 /* Fall through. */
4978
4979 case OVERLOAD:
4980 arg = OVL_CURRENT (arg);
4981 break;
4982
4983 case OFFSET_REF:
4984 offset_ref:
4985 /* Turn a reference to a non-static data member into a
4986 pointer-to-member. */
4987 {
4988 tree type;
4989 tree t;
4990
4991 gcc_assert (PTRMEM_OK_P (arg));
4992
4993 t = TREE_OPERAND (arg, 1);
4994 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4995 {
4996 if (complain & tf_error)
4997 error ("cannot create pointer to reference member %qD", t);
4998 return error_mark_node;
4999 }
5000
5001 type = build_ptrmem_type (context_for_name_lookup (t),
5002 TREE_TYPE (t));
5003 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
5004 return t;
5005 }
5006
5007 default:
5008 break;
5009 }
5010
5011 if (argtype != error_mark_node)
5012 argtype = build_pointer_type (argtype);
5013
5014 /* In a template, we are processing a non-dependent expression
5015 so we can just form an ADDR_EXPR with the correct type. */
5016 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
5017 {
5018 val = build_address (arg);
5019 if (TREE_CODE (arg) == OFFSET_REF)
5020 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
5021 }
5022 else if (TREE_CODE (TREE_OPERAND (arg, 1)) == BASELINK)
5023 {
5024 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
5025
5026 /* We can only get here with a single static member
5027 function. */
5028 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
5029 && DECL_STATIC_FUNCTION_P (fn));
5030 mark_used (fn);
5031 val = build_address (fn);
5032 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
5033 /* Do not lose object's side effects. */
5034 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
5035 TREE_OPERAND (arg, 0), val);
5036 }
5037 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
5038 {
5039 if (complain & tf_error)
5040 error ("attempt to take address of bit-field structure member %qD",
5041 TREE_OPERAND (arg, 1));
5042 return error_mark_node;
5043 }
5044 else
5045 {
5046 tree object = TREE_OPERAND (arg, 0);
5047 tree field = TREE_OPERAND (arg, 1);
5048 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5049 (TREE_TYPE (object), decl_type_context (field)));
5050 val = build_address (arg);
5051 }
5052
5053 if (TREE_CODE (argtype) == POINTER_TYPE
5054 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
5055 {
5056 build_ptrmemfunc_type (argtype);
5057 val = build_ptrmemfunc (argtype, val, 0,
5058 /*c_cast_p=*/false,
5059 tf_warning_or_error);
5060 }
5061
5062 return val;
5063 }
5064
5065 /* Take the address of ARG if it has one, even if it's an rvalue. */
5066
5067 tree
5068 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
5069 {
5070 return cp_build_addr_expr_1 (arg, 0, complain);
5071 }
5072
5073 /* Take the address of ARG, but only if it's an lvalue. */
5074
5075 tree
5076 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
5077 {
5078 return cp_build_addr_expr_1 (arg, 1, complain);
5079 }
5080
5081 /* C++: Must handle pointers to members.
5082
5083 Perhaps type instantiation should be extended to handle conversion
5084 from aggregates to types we don't yet know we want? (Or are those
5085 cases typically errors which should be reported?)
5086
5087 NOCONVERT nonzero suppresses the default promotions
5088 (such as from short to int). */
5089
5090 tree
5091 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
5092 tsubst_flags_t complain)
5093 {
5094 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
5095 tree arg = xarg;
5096 tree argtype = 0;
5097 const char *errstring = NULL;
5098 tree val;
5099 const char *invalid_op_diag;
5100
5101 if (!arg || error_operand_p (arg))
5102 return error_mark_node;
5103
5104 if ((invalid_op_diag
5105 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
5106 ? CONVERT_EXPR
5107 : code),
5108 TREE_TYPE (xarg))))
5109 {
5110 error (invalid_op_diag);
5111 return error_mark_node;
5112 }
5113
5114 switch (code)
5115 {
5116 case UNARY_PLUS_EXPR:
5117 case NEGATE_EXPR:
5118 {
5119 int flags = WANT_ARITH | WANT_ENUM;
5120 /* Unary plus (but not unary minus) is allowed on pointers. */
5121 if (code == UNARY_PLUS_EXPR)
5122 flags |= WANT_POINTER;
5123 arg = build_expr_type_conversion (flags, arg, true);
5124 if (!arg)
5125 errstring = (code == NEGATE_EXPR
5126 ? _("wrong type argument to unary minus")
5127 : _("wrong type argument to unary plus"));
5128 else
5129 {
5130 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5131 arg = perform_integral_promotions (arg);
5132
5133 /* Make sure the result is not an lvalue: a unary plus or minus
5134 expression is always a rvalue. */
5135 arg = rvalue (arg);
5136 }
5137 }
5138 break;
5139
5140 case BIT_NOT_EXPR:
5141 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5142 {
5143 code = CONJ_EXPR;
5144 if (!noconvert)
5145 arg = default_conversion (arg);
5146 }
5147 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5148 | WANT_VECTOR_OR_COMPLEX,
5149 arg, true)))
5150 errstring = _("wrong type argument to bit-complement");
5151 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5152 arg = perform_integral_promotions (arg);
5153 break;
5154
5155 case ABS_EXPR:
5156 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5157 errstring = _("wrong type argument to abs");
5158 else if (!noconvert)
5159 arg = default_conversion (arg);
5160 break;
5161
5162 case CONJ_EXPR:
5163 /* Conjugating a real value is a no-op, but allow it anyway. */
5164 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5165 errstring = _("wrong type argument to conjugation");
5166 else if (!noconvert)
5167 arg = default_conversion (arg);
5168 break;
5169
5170 case TRUTH_NOT_EXPR:
5171 arg = perform_implicit_conversion (boolean_type_node, arg,
5172 complain);
5173 val = invert_truthvalue_loc (input_location, arg);
5174 if (arg != error_mark_node)
5175 return val;
5176 errstring = _("in argument to unary !");
5177 break;
5178
5179 case NOP_EXPR:
5180 break;
5181
5182 case REALPART_EXPR:
5183 if (TREE_CODE (arg) == COMPLEX_CST)
5184 return TREE_REALPART (arg);
5185 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5186 {
5187 arg = build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
5188 return fold_if_not_in_template (arg);
5189 }
5190 else
5191 return arg;
5192
5193 case IMAGPART_EXPR:
5194 if (TREE_CODE (arg) == COMPLEX_CST)
5195 return TREE_IMAGPART (arg);
5196 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5197 {
5198 arg = build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
5199 return fold_if_not_in_template (arg);
5200 }
5201 else
5202 return cp_convert (TREE_TYPE (arg), integer_zero_node);
5203
5204 case PREINCREMENT_EXPR:
5205 case POSTINCREMENT_EXPR:
5206 case PREDECREMENT_EXPR:
5207 case POSTDECREMENT_EXPR:
5208 /* Handle complex lvalues (when permitted)
5209 by reduction to simpler cases. */
5210
5211 val = unary_complex_lvalue (code, arg);
5212 if (val != 0)
5213 return val;
5214
5215 arg = mark_lvalue_use (arg);
5216
5217 /* Increment or decrement the real part of the value,
5218 and don't change the imaginary part. */
5219 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5220 {
5221 tree real, imag;
5222
5223 arg = stabilize_reference (arg);
5224 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5225 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5226 real = cp_build_unary_op (code, real, 1, complain);
5227 if (real == error_mark_node || imag == error_mark_node)
5228 return error_mark_node;
5229 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5230 real, imag);
5231 }
5232
5233 /* Report invalid types. */
5234
5235 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5236 arg, true)))
5237 {
5238 if (code == PREINCREMENT_EXPR)
5239 errstring = _("no pre-increment operator for type");
5240 else if (code == POSTINCREMENT_EXPR)
5241 errstring = _("no post-increment operator for type");
5242 else if (code == PREDECREMENT_EXPR)
5243 errstring = _("no pre-decrement operator for type");
5244 else
5245 errstring = _("no post-decrement operator for type");
5246 break;
5247 }
5248 else if (arg == error_mark_node)
5249 return error_mark_node;
5250
5251 /* Report something read-only. */
5252
5253 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5254 || TREE_READONLY (arg))
5255 {
5256 if (complain & tf_error)
5257 readonly_error (arg, ((code == PREINCREMENT_EXPR
5258 || code == POSTINCREMENT_EXPR)
5259 ? REK_INCREMENT : REK_DECREMENT));
5260 else
5261 return error_mark_node;
5262 }
5263
5264 {
5265 tree inc;
5266 tree declared_type = unlowered_expr_type (arg);
5267
5268 argtype = TREE_TYPE (arg);
5269
5270 /* ARM $5.2.5 last annotation says this should be forbidden. */
5271 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5272 {
5273 if (complain & tf_error)
5274 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5275 ? G_("ISO C++ forbids incrementing an enum")
5276 : G_("ISO C++ forbids decrementing an enum"));
5277 else
5278 return error_mark_node;
5279 }
5280
5281 /* Compute the increment. */
5282
5283 if (TREE_CODE (argtype) == POINTER_TYPE)
5284 {
5285 tree type = complete_type (TREE_TYPE (argtype));
5286
5287 if (!COMPLETE_OR_VOID_TYPE_P (type))
5288 {
5289 if (complain & tf_error)
5290 error (((code == PREINCREMENT_EXPR
5291 || code == POSTINCREMENT_EXPR))
5292 ? G_("cannot increment a pointer to incomplete type %qT")
5293 : G_("cannot decrement a pointer to incomplete type %qT"),
5294 TREE_TYPE (argtype));
5295 else
5296 return error_mark_node;
5297 }
5298 else if ((pedantic || warn_pointer_arith)
5299 && !TYPE_PTROB_P (argtype))
5300 {
5301 if (complain & tf_error)
5302 permerror (input_location, (code == PREINCREMENT_EXPR
5303 || code == POSTINCREMENT_EXPR)
5304 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
5305 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
5306 argtype);
5307 else
5308 return error_mark_node;
5309 }
5310
5311 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
5312 }
5313 else
5314 inc = integer_one_node;
5315
5316 inc = cp_convert (argtype, inc);
5317
5318 /* Complain about anything else that is not a true lvalue. */
5319 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
5320 || code == POSTINCREMENT_EXPR)
5321 ? lv_increment : lv_decrement),
5322 complain))
5323 return error_mark_node;
5324
5325 /* Forbid using -- on `bool'. */
5326 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
5327 {
5328 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
5329 {
5330 if (complain & tf_error)
5331 error ("invalid use of Boolean expression as operand "
5332 "to %<operator--%>");
5333 return error_mark_node;
5334 }
5335 val = boolean_increment (code, arg);
5336 }
5337 else
5338 val = build2 (code, TREE_TYPE (arg), arg, inc);
5339
5340 TREE_SIDE_EFFECTS (val) = 1;
5341 return val;
5342 }
5343
5344 case ADDR_EXPR:
5345 /* Note that this operation never does default_conversion
5346 regardless of NOCONVERT. */
5347 return cp_build_addr_expr (arg, complain);
5348
5349 default:
5350 break;
5351 }
5352
5353 if (!errstring)
5354 {
5355 if (argtype == 0)
5356 argtype = TREE_TYPE (arg);
5357 return fold_if_not_in_template (build1 (code, argtype, arg));
5358 }
5359
5360 if (complain & tf_error)
5361 error ("%s", errstring);
5362 return error_mark_node;
5363 }
5364
5365 /* Hook for the c-common bits that build a unary op. */
5366 tree
5367 build_unary_op (location_t location ATTRIBUTE_UNUSED,
5368 enum tree_code code, tree xarg, int noconvert)
5369 {
5370 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
5371 }
5372
5373 /* Apply unary lvalue-demanding operator CODE to the expression ARG
5374 for certain kinds of expressions which are not really lvalues
5375 but which we can accept as lvalues.
5376
5377 If ARG is not a kind of expression we can handle, return
5378 NULL_TREE. */
5379
5380 tree
5381 unary_complex_lvalue (enum tree_code code, tree arg)
5382 {
5383 /* Inside a template, making these kinds of adjustments is
5384 pointless; we are only concerned with the type of the
5385 expression. */
5386 if (processing_template_decl)
5387 return NULL_TREE;
5388
5389 /* Handle (a, b) used as an "lvalue". */
5390 if (TREE_CODE (arg) == COMPOUND_EXPR)
5391 {
5392 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
5393 tf_warning_or_error);
5394 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5395 TREE_OPERAND (arg, 0), real_result);
5396 }
5397
5398 /* Handle (a ? b : c) used as an "lvalue". */
5399 if (TREE_CODE (arg) == COND_EXPR
5400 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
5401 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
5402
5403 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
5404 if (TREE_CODE (arg) == MODIFY_EXPR
5405 || TREE_CODE (arg) == PREINCREMENT_EXPR
5406 || TREE_CODE (arg) == PREDECREMENT_EXPR)
5407 {
5408 tree lvalue = TREE_OPERAND (arg, 0);
5409 if (TREE_SIDE_EFFECTS (lvalue))
5410 {
5411 lvalue = stabilize_reference (lvalue);
5412 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
5413 lvalue, TREE_OPERAND (arg, 1));
5414 }
5415 return unary_complex_lvalue
5416 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
5417 }
5418
5419 if (code != ADDR_EXPR)
5420 return NULL_TREE;
5421
5422 /* Handle (a = b) used as an "lvalue" for `&'. */
5423 if (TREE_CODE (arg) == MODIFY_EXPR
5424 || TREE_CODE (arg) == INIT_EXPR)
5425 {
5426 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
5427 tf_warning_or_error);
5428 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5429 arg, real_result);
5430 TREE_NO_WARNING (arg) = 1;
5431 return arg;
5432 }
5433
5434 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
5435 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
5436 || TREE_CODE (arg) == OFFSET_REF)
5437 return NULL_TREE;
5438
5439 /* We permit compiler to make function calls returning
5440 objects of aggregate type look like lvalues. */
5441 {
5442 tree targ = arg;
5443
5444 if (TREE_CODE (targ) == SAVE_EXPR)
5445 targ = TREE_OPERAND (targ, 0);
5446
5447 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
5448 {
5449 if (TREE_CODE (arg) == SAVE_EXPR)
5450 targ = arg;
5451 else
5452 targ = build_cplus_new (TREE_TYPE (arg), arg);
5453 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
5454 }
5455
5456 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
5457 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
5458 TREE_OPERAND (targ, 0), current_function_decl, NULL);
5459 }
5460
5461 /* Don't let anything else be handled specially. */
5462 return NULL_TREE;
5463 }
5464 \f
5465 /* Mark EXP saying that we need to be able to take the
5466 address of it; it should not be allocated in a register.
5467 Value is true if successful.
5468
5469 C++: we do not allow `current_class_ptr' to be addressable. */
5470
5471 bool
5472 cxx_mark_addressable (tree exp)
5473 {
5474 tree x = exp;
5475
5476 while (1)
5477 switch (TREE_CODE (x))
5478 {
5479 case ADDR_EXPR:
5480 case COMPONENT_REF:
5481 case ARRAY_REF:
5482 case REALPART_EXPR:
5483 case IMAGPART_EXPR:
5484 x = TREE_OPERAND (x, 0);
5485 break;
5486
5487 case PARM_DECL:
5488 if (x == current_class_ptr)
5489 {
5490 error ("cannot take the address of %<this%>, which is an rvalue expression");
5491 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
5492 return true;
5493 }
5494 /* Fall through. */
5495
5496 case VAR_DECL:
5497 /* Caller should not be trying to mark initialized
5498 constant fields addressable. */
5499 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
5500 || DECL_IN_AGGR_P (x) == 0
5501 || TREE_STATIC (x)
5502 || DECL_EXTERNAL (x));
5503 /* Fall through. */
5504
5505 case CONST_DECL:
5506 case RESULT_DECL:
5507 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
5508 && !DECL_ARTIFICIAL (x))
5509 {
5510 if (TREE_CODE (x) == VAR_DECL && DECL_HARD_REGISTER (x))
5511 {
5512 error
5513 ("address of explicit register variable %qD requested", x);
5514 return false;
5515 }
5516 else if (extra_warnings)
5517 warning
5518 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
5519 }
5520 TREE_ADDRESSABLE (x) = 1;
5521 return true;
5522
5523 case FUNCTION_DECL:
5524 TREE_ADDRESSABLE (x) = 1;
5525 return true;
5526
5527 case CONSTRUCTOR:
5528 TREE_ADDRESSABLE (x) = 1;
5529 return true;
5530
5531 case TARGET_EXPR:
5532 TREE_ADDRESSABLE (x) = 1;
5533 cxx_mark_addressable (TREE_OPERAND (x, 0));
5534 return true;
5535
5536 default:
5537 return true;
5538 }
5539 }
5540 \f
5541 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
5542
5543 tree
5544 build_x_conditional_expr (tree ifexp, tree op1, tree op2,
5545 tsubst_flags_t complain)
5546 {
5547 tree orig_ifexp = ifexp;
5548 tree orig_op1 = op1;
5549 tree orig_op2 = op2;
5550 tree expr;
5551
5552 if (processing_template_decl)
5553 {
5554 /* The standard says that the expression is type-dependent if
5555 IFEXP is type-dependent, even though the eventual type of the
5556 expression doesn't dependent on IFEXP. */
5557 if (type_dependent_expression_p (ifexp)
5558 /* As a GNU extension, the middle operand may be omitted. */
5559 || (op1 && type_dependent_expression_p (op1))
5560 || type_dependent_expression_p (op2))
5561 return build_min_nt (COND_EXPR, ifexp, op1, op2);
5562 ifexp = build_non_dependent_expr (ifexp);
5563 if (op1)
5564 op1 = build_non_dependent_expr (op1);
5565 op2 = build_non_dependent_expr (op2);
5566 }
5567
5568 expr = build_conditional_expr (ifexp, op1, op2, complain);
5569 if (processing_template_decl && expr != error_mark_node)
5570 return build_min_non_dep (COND_EXPR, expr,
5571 orig_ifexp, orig_op1, orig_op2);
5572 return expr;
5573 }
5574 \f
5575 /* Given a list of expressions, return a compound expression
5576 that performs them all and returns the value of the last of them. */
5577
5578 tree
5579 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
5580 tsubst_flags_t complain)
5581 {
5582 tree expr = TREE_VALUE (list);
5583
5584 if (TREE_CHAIN (list))
5585 {
5586 if (complain & tf_error)
5587 switch (exp)
5588 {
5589 case ELK_INIT:
5590 permerror (input_location, "expression list treated as compound "
5591 "expression in initializer");
5592 break;
5593 case ELK_MEM_INIT:
5594 permerror (input_location, "expression list treated as compound "
5595 "expression in mem-initializer");
5596 break;
5597 case ELK_FUNC_CAST:
5598 permerror (input_location, "expression list treated as compound "
5599 "expression in functional cast");
5600 break;
5601 default:
5602 gcc_unreachable ();
5603 }
5604
5605 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
5606 expr = build_x_compound_expr (expr, TREE_VALUE (list),
5607 complain);
5608 }
5609
5610 return expr;
5611 }
5612
5613 /* Like build_x_compound_expr_from_list, but using a VEC. */
5614
5615 tree
5616 build_x_compound_expr_from_vec (VEC(tree,gc) *vec, const char *msg)
5617 {
5618 if (VEC_empty (tree, vec))
5619 return NULL_TREE;
5620 else if (VEC_length (tree, vec) == 1)
5621 return VEC_index (tree, vec, 0);
5622 else
5623 {
5624 tree expr;
5625 unsigned int ix;
5626 tree t;
5627
5628 if (msg != NULL)
5629 permerror (input_location,
5630 "%s expression list treated as compound expression",
5631 msg);
5632
5633 expr = VEC_index (tree, vec, 0);
5634 for (ix = 1; VEC_iterate (tree, vec, ix, t); ++ix)
5635 expr = build_x_compound_expr (expr, t, tf_warning_or_error);
5636
5637 return expr;
5638 }
5639 }
5640
5641 /* Handle overloading of the ',' operator when needed. */
5642
5643 tree
5644 build_x_compound_expr (tree op1, tree op2, tsubst_flags_t complain)
5645 {
5646 tree result;
5647 tree orig_op1 = op1;
5648 tree orig_op2 = op2;
5649
5650 if (processing_template_decl)
5651 {
5652 if (type_dependent_expression_p (op1)
5653 || type_dependent_expression_p (op2))
5654 return build_min_nt (COMPOUND_EXPR, op1, op2);
5655 op1 = build_non_dependent_expr (op1);
5656 op2 = build_non_dependent_expr (op2);
5657 }
5658
5659 result = build_new_op (COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2, NULL_TREE,
5660 /*overloaded_p=*/NULL, complain);
5661 if (!result)
5662 result = cp_build_compound_expr (op1, op2, complain);
5663
5664 if (processing_template_decl && result != error_mark_node)
5665 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
5666
5667 return result;
5668 }
5669
5670 /* Like cp_build_compound_expr, but for the c-common bits. */
5671
5672 tree
5673 build_compound_expr (location_t loc ATTRIBUTE_UNUSED, tree lhs, tree rhs)
5674 {
5675 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
5676 }
5677
5678 /* Build a compound expression. */
5679
5680 tree
5681 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
5682 {
5683 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
5684
5685 if (lhs == error_mark_node || rhs == error_mark_node)
5686 return error_mark_node;
5687
5688 if (TREE_CODE (rhs) == TARGET_EXPR)
5689 {
5690 /* If the rhs is a TARGET_EXPR, then build the compound
5691 expression inside the target_expr's initializer. This
5692 helps the compiler to eliminate unnecessary temporaries. */
5693 tree init = TREE_OPERAND (rhs, 1);
5694
5695 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
5696 TREE_OPERAND (rhs, 1) = init;
5697
5698 return rhs;
5699 }
5700
5701 if (type_unknown_p (rhs))
5702 {
5703 error ("no context to resolve type of %qE", rhs);
5704 return error_mark_node;
5705 }
5706
5707 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
5708 }
5709
5710 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
5711 casts away constness. CAST gives the type of cast.
5712
5713 ??? This function warns for casting away any qualifier not just
5714 const. We would like to specify exactly what qualifiers are casted
5715 away.
5716 */
5717
5718 static void
5719 check_for_casting_away_constness (tree src_type, tree dest_type,
5720 enum tree_code cast)
5721 {
5722 /* C-style casts are allowed to cast away constness. With
5723 WARN_CAST_QUAL, we still want to issue a warning. */
5724 if (cast == CAST_EXPR && !warn_cast_qual)
5725 return;
5726
5727 if (!casts_away_constness (src_type, dest_type))
5728 return;
5729
5730 switch (cast)
5731 {
5732 case CAST_EXPR:
5733 warning (OPT_Wcast_qual,
5734 "cast from type %qT to type %qT casts away qualifiers",
5735 src_type, dest_type);
5736 return;
5737
5738 case STATIC_CAST_EXPR:
5739 error ("static_cast from type %qT to type %qT casts away qualifiers",
5740 src_type, dest_type);
5741 return;
5742
5743 case REINTERPRET_CAST_EXPR:
5744 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
5745 src_type, dest_type);
5746 return;
5747 default:
5748 gcc_unreachable();
5749 }
5750 }
5751
5752 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
5753 (another pointer-to-member type in the same hierarchy) and return
5754 the converted expression. If ALLOW_INVERSE_P is permitted, a
5755 pointer-to-derived may be converted to pointer-to-base; otherwise,
5756 only the other direction is permitted. If C_CAST_P is true, this
5757 conversion is taking place as part of a C-style cast. */
5758
5759 tree
5760 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
5761 bool c_cast_p, tsubst_flags_t complain)
5762 {
5763 if (TYPE_PTRMEM_P (type))
5764 {
5765 tree delta;
5766
5767 if (TREE_CODE (expr) == PTRMEM_CST)
5768 expr = cplus_expand_constant (expr);
5769 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
5770 TYPE_PTRMEM_CLASS_TYPE (type),
5771 allow_inverse_p,
5772 c_cast_p, complain);
5773 if (delta == error_mark_node)
5774 return error_mark_node;
5775
5776 if (!integer_zerop (delta))
5777 {
5778 tree cond, op1, op2;
5779
5780 cond = cp_build_binary_op (input_location,
5781 EQ_EXPR,
5782 expr,
5783 build_int_cst (TREE_TYPE (expr), -1),
5784 tf_warning_or_error);
5785 op1 = build_nop (ptrdiff_type_node, expr);
5786 op2 = cp_build_binary_op (input_location,
5787 PLUS_EXPR, op1, delta,
5788 tf_warning_or_error);
5789
5790 expr = fold_build3_loc (input_location,
5791 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
5792
5793 }
5794
5795 return build_nop (type, expr);
5796 }
5797 else
5798 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
5799 allow_inverse_p, c_cast_p, complain);
5800 }
5801
5802 /* If EXPR is an INTEGER_CST and ORIG is an arithmetic constant, return
5803 a version of EXPR that has TREE_OVERFLOW set if it is set in ORIG.
5804 Otherwise, return EXPR unchanged. */
5805
5806 static tree
5807 ignore_overflows (tree expr, tree orig)
5808 {
5809 if (TREE_CODE (expr) == INTEGER_CST
5810 && CONSTANT_CLASS_P (orig)
5811 && TREE_CODE (orig) != STRING_CST
5812 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
5813 {
5814 if (!TREE_OVERFLOW (orig))
5815 /* Ensure constant sharing. */
5816 expr = build_int_cst_wide (TREE_TYPE (expr),
5817 TREE_INT_CST_LOW (expr),
5818 TREE_INT_CST_HIGH (expr));
5819 else
5820 {
5821 /* Avoid clobbering a shared constant. */
5822 expr = copy_node (expr);
5823 TREE_OVERFLOW (expr) = TREE_OVERFLOW (orig);
5824 }
5825 }
5826 return expr;
5827 }
5828
5829 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
5830 this static_cast is being attempted as one of the possible casts
5831 allowed by a C-style cast. (In that case, accessibility of base
5832 classes is not considered, and it is OK to cast away
5833 constness.) Return the result of the cast. *VALID_P is set to
5834 indicate whether or not the cast was valid. */
5835
5836 static tree
5837 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
5838 bool *valid_p, tsubst_flags_t complain)
5839 {
5840 tree intype;
5841 tree result;
5842 tree orig;
5843
5844 /* Assume the cast is valid. */
5845 *valid_p = true;
5846
5847 intype = TREE_TYPE (expr);
5848
5849 /* Save casted types in the function's used types hash table. */
5850 used_types_insert (type);
5851
5852 /* [expr.static.cast]
5853
5854 An lvalue of type "cv1 B", where B is a class type, can be cast
5855 to type "reference to cv2 D", where D is a class derived (clause
5856 _class.derived_) from B, if a valid standard conversion from
5857 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
5858 same cv-qualification as, or greater cv-qualification than, cv1,
5859 and B is not a virtual base class of D. */
5860 /* We check this case before checking the validity of "TYPE t =
5861 EXPR;" below because for this case:
5862
5863 struct B {};
5864 struct D : public B { D(const B&); };
5865 extern B& b;
5866 void f() { static_cast<const D&>(b); }
5867
5868 we want to avoid constructing a new D. The standard is not
5869 completely clear about this issue, but our interpretation is
5870 consistent with other compilers. */
5871 if (TREE_CODE (type) == REFERENCE_TYPE
5872 && CLASS_TYPE_P (TREE_TYPE (type))
5873 && CLASS_TYPE_P (intype)
5874 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
5875 && DERIVED_FROM_P (intype, TREE_TYPE (type))
5876 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
5877 build_pointer_type (TYPE_MAIN_VARIANT
5878 (TREE_TYPE (type))))
5879 && (c_cast_p
5880 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5881 {
5882 tree base;
5883
5884 /* There is a standard conversion from "D*" to "B*" even if "B"
5885 is ambiguous or inaccessible. If this is really a
5886 static_cast, then we check both for inaccessibility and
5887 ambiguity. However, if this is a static_cast being performed
5888 because the user wrote a C-style cast, then accessibility is
5889 not considered. */
5890 base = lookup_base (TREE_TYPE (type), intype,
5891 c_cast_p ? ba_unique : ba_check,
5892 NULL);
5893
5894 /* Convert from "B*" to "D*". This function will check that "B"
5895 is not a virtual base of "D". */
5896 expr = build_base_path (MINUS_EXPR, build_address (expr),
5897 base, /*nonnull=*/false);
5898 /* Convert the pointer to a reference -- but then remember that
5899 there are no expressions with reference type in C++. */
5900 return convert_from_reference (cp_fold_convert (type, expr));
5901 }
5902
5903 /* "An lvalue of type cv1 T1 can be cast to type rvalue reference to
5904 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
5905 if (TREE_CODE (type) == REFERENCE_TYPE
5906 && TYPE_REF_IS_RVALUE (type)
5907 && real_lvalue_p (expr)
5908 && reference_related_p (TREE_TYPE (type), intype)
5909 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5910 {
5911 expr = build_typed_address (expr, type);
5912 return convert_from_reference (expr);
5913 }
5914
5915 orig = expr;
5916
5917 /* Resolve overloaded address here rather than once in
5918 implicit_conversion and again in the inverse code below. */
5919 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
5920 {
5921 expr = instantiate_type (type, expr, complain);
5922 intype = TREE_TYPE (expr);
5923 }
5924
5925 /* [expr.static.cast]
5926
5927 An expression e can be explicitly converted to a type T using a
5928 static_cast of the form static_cast<T>(e) if the declaration T
5929 t(e);" is well-formed, for some invented temporary variable
5930 t. */
5931 result = perform_direct_initialization_if_possible (type, expr,
5932 c_cast_p, complain);
5933 if (result)
5934 {
5935 result = convert_from_reference (result);
5936
5937 /* Ignore any integer overflow caused by the cast. */
5938 result = ignore_overflows (result, orig);
5939
5940 /* [expr.static.cast]
5941
5942 If T is a reference type, the result is an lvalue; otherwise,
5943 the result is an rvalue. */
5944 if (TREE_CODE (type) != REFERENCE_TYPE)
5945 result = rvalue (result);
5946 return result;
5947 }
5948
5949 /* [expr.static.cast]
5950
5951 Any expression can be explicitly converted to type cv void. */
5952 if (TREE_CODE (type) == VOID_TYPE)
5953 return convert_to_void (expr, ICV_CAST, complain);
5954
5955 /* [expr.static.cast]
5956
5957 The inverse of any standard conversion sequence (clause _conv_),
5958 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
5959 (_conv.array_), function-to-pointer (_conv.func_), and boolean
5960 (_conv.bool_) conversions, can be performed explicitly using
5961 static_cast subject to the restriction that the explicit
5962 conversion does not cast away constness (_expr.const.cast_), and
5963 the following additional rules for specific cases: */
5964 /* For reference, the conversions not excluded are: integral
5965 promotions, floating point promotion, integral conversions,
5966 floating point conversions, floating-integral conversions,
5967 pointer conversions, and pointer to member conversions. */
5968 /* DR 128
5969
5970 A value of integral _or enumeration_ type can be explicitly
5971 converted to an enumeration type. */
5972 /* The effect of all that is that any conversion between any two
5973 types which are integral, floating, or enumeration types can be
5974 performed. */
5975 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5976 || SCALAR_FLOAT_TYPE_P (type))
5977 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
5978 || SCALAR_FLOAT_TYPE_P (intype)))
5979 {
5980 expr = ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL);
5981
5982 /* Ignore any integer overflow caused by the cast. */
5983 expr = ignore_overflows (expr, orig);
5984 return expr;
5985 }
5986
5987 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
5988 && CLASS_TYPE_P (TREE_TYPE (type))
5989 && CLASS_TYPE_P (TREE_TYPE (intype))
5990 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
5991 (TREE_TYPE (intype))),
5992 build_pointer_type (TYPE_MAIN_VARIANT
5993 (TREE_TYPE (type)))))
5994 {
5995 tree base;
5996
5997 if (!c_cast_p)
5998 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
5999 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
6000 c_cast_p ? ba_unique : ba_check,
6001 NULL);
6002 return build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false);
6003 }
6004
6005 if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
6006 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6007 {
6008 tree c1;
6009 tree c2;
6010 tree t1;
6011 tree t2;
6012
6013 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
6014 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
6015
6016 if (TYPE_PTRMEM_P (type))
6017 {
6018 t1 = (build_ptrmem_type
6019 (c1,
6020 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
6021 t2 = (build_ptrmem_type
6022 (c2,
6023 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
6024 }
6025 else
6026 {
6027 t1 = intype;
6028 t2 = type;
6029 }
6030 if (can_convert (t1, t2) || can_convert (t2, t1))
6031 {
6032 if (!c_cast_p)
6033 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
6034 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
6035 c_cast_p, tf_warning_or_error);
6036 }
6037 }
6038
6039 /* [expr.static.cast]
6040
6041 An rvalue of type "pointer to cv void" can be explicitly
6042 converted to a pointer to object type. A value of type pointer
6043 to object converted to "pointer to cv void" and back to the
6044 original pointer type will have its original value. */
6045 if (TREE_CODE (intype) == POINTER_TYPE
6046 && VOID_TYPE_P (TREE_TYPE (intype))
6047 && TYPE_PTROB_P (type))
6048 {
6049 if (!c_cast_p)
6050 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
6051 return build_nop (type, expr);
6052 }
6053
6054 *valid_p = false;
6055 return error_mark_node;
6056 }
6057
6058 /* Return an expression representing static_cast<TYPE>(EXPR). */
6059
6060 tree
6061 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
6062 {
6063 tree result;
6064 bool valid_p;
6065
6066 if (type == error_mark_node || expr == error_mark_node)
6067 return error_mark_node;
6068
6069 if (processing_template_decl)
6070 {
6071 expr = build_min (STATIC_CAST_EXPR, type, expr);
6072 /* We don't know if it will or will not have side effects. */
6073 TREE_SIDE_EFFECTS (expr) = 1;
6074 return convert_from_reference (expr);
6075 }
6076
6077 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6078 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6079 if (TREE_CODE (type) != REFERENCE_TYPE
6080 && TREE_CODE (expr) == NOP_EXPR
6081 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6082 expr = TREE_OPERAND (expr, 0);
6083
6084 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
6085 complain);
6086 if (valid_p)
6087 return result;
6088
6089 if (complain & tf_error)
6090 error ("invalid static_cast from type %qT to type %qT",
6091 TREE_TYPE (expr), type);
6092 return error_mark_node;
6093 }
6094
6095 /* EXPR is an expression with member function or pointer-to-member
6096 function type. TYPE is a pointer type. Converting EXPR to TYPE is
6097 not permitted by ISO C++, but we accept it in some modes. If we
6098 are not in one of those modes, issue a diagnostic. Return the
6099 converted expression. */
6100
6101 tree
6102 convert_member_func_to_ptr (tree type, tree expr)
6103 {
6104 tree intype;
6105 tree decl;
6106
6107 intype = TREE_TYPE (expr);
6108 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
6109 || TREE_CODE (intype) == METHOD_TYPE);
6110
6111 if (pedantic || warn_pmf2ptr)
6112 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpmf_conversions,
6113 "converting from %qT to %qT", intype, type);
6114
6115 if (TREE_CODE (intype) == METHOD_TYPE)
6116 expr = build_addr_func (expr);
6117 else if (TREE_CODE (expr) == PTRMEM_CST)
6118 expr = build_address (PTRMEM_CST_MEMBER (expr));
6119 else
6120 {
6121 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
6122 decl = build_address (decl);
6123 expr = get_member_function_from_ptrfunc (&decl, expr);
6124 }
6125
6126 return build_nop (type, expr);
6127 }
6128
6129 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
6130 If C_CAST_P is true, this reinterpret cast is being done as part of
6131 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
6132 indicate whether or not reinterpret_cast was valid. */
6133
6134 static tree
6135 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6136 bool *valid_p, tsubst_flags_t complain)
6137 {
6138 tree intype;
6139
6140 /* Assume the cast is invalid. */
6141 if (valid_p)
6142 *valid_p = true;
6143
6144 if (type == error_mark_node || error_operand_p (expr))
6145 return error_mark_node;
6146
6147 intype = TREE_TYPE (expr);
6148
6149 /* Save casted types in the function's used types hash table. */
6150 used_types_insert (type);
6151
6152 /* [expr.reinterpret.cast]
6153 An lvalue expression of type T1 can be cast to the type
6154 "reference to T2" if an expression of type "pointer to T1" can be
6155 explicitly converted to the type "pointer to T2" using a
6156 reinterpret_cast. */
6157 if (TREE_CODE (type) == REFERENCE_TYPE)
6158 {
6159 if (! real_lvalue_p (expr))
6160 {
6161 if (complain & tf_error)
6162 error ("invalid cast of an rvalue expression of type "
6163 "%qT to type %qT",
6164 intype, type);
6165 return error_mark_node;
6166 }
6167
6168 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6169 "B" are related class types; the reinterpret_cast does not
6170 adjust the pointer. */
6171 if (TYPE_PTR_P (intype)
6172 && (complain & tf_warning)
6173 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6174 COMPARE_BASE | COMPARE_DERIVED)))
6175 warning (0, "casting %qT to %qT does not dereference pointer",
6176 intype, type);
6177
6178 expr = cp_build_addr_expr (expr, complain);
6179
6180 if (warn_strict_aliasing > 2)
6181 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
6182
6183 if (expr != error_mark_node)
6184 expr = build_reinterpret_cast_1
6185 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
6186 valid_p, complain);
6187 if (expr != error_mark_node)
6188 /* cp_build_indirect_ref isn't right for rvalue refs. */
6189 expr = convert_from_reference (fold_convert (type, expr));
6190 return expr;
6191 }
6192
6193 /* As a G++ extension, we consider conversions from member
6194 functions, and pointers to member functions to
6195 pointer-to-function and pointer-to-void types. If
6196 -Wno-pmf-conversions has not been specified,
6197 convert_member_func_to_ptr will issue an error message. */
6198 if ((TYPE_PTRMEMFUNC_P (intype)
6199 || TREE_CODE (intype) == METHOD_TYPE)
6200 && TYPE_PTR_P (type)
6201 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6202 || VOID_TYPE_P (TREE_TYPE (type))))
6203 return convert_member_func_to_ptr (type, expr);
6204
6205 /* If the cast is not to a reference type, the lvalue-to-rvalue,
6206 array-to-pointer, and function-to-pointer conversions are
6207 performed. */
6208 expr = decay_conversion (expr);
6209
6210 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6211 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6212 if (TREE_CODE (expr) == NOP_EXPR
6213 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6214 expr = TREE_OPERAND (expr, 0);
6215
6216 if (error_operand_p (expr))
6217 return error_mark_node;
6218
6219 intype = TREE_TYPE (expr);
6220
6221 /* [expr.reinterpret.cast]
6222 A pointer can be converted to any integral type large enough to
6223 hold it. ... A value of type std::nullptr_t can be converted to
6224 an integral type; the conversion has the same meaning and
6225 validity as a conversion of (void*)0 to the integral type. */
6226 if (CP_INTEGRAL_TYPE_P (type)
6227 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
6228 {
6229 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
6230 {
6231 if (complain & tf_error)
6232 permerror (input_location, "cast from %qT to %qT loses precision",
6233 intype, type);
6234 else
6235 return error_mark_node;
6236 }
6237 if (NULLPTR_TYPE_P (intype))
6238 return build_int_cst (type, 0);
6239 }
6240 /* [expr.reinterpret.cast]
6241 A value of integral or enumeration type can be explicitly
6242 converted to a pointer. */
6243 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
6244 /* OK */
6245 ;
6246 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
6247 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6248 return fold_if_not_in_template (build_nop (type, expr));
6249 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
6250 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
6251 {
6252 tree sexpr = expr;
6253
6254 if (!c_cast_p)
6255 check_for_casting_away_constness (intype, type, REINTERPRET_CAST_EXPR);
6256 /* Warn about possible alignment problems. */
6257 if (STRICT_ALIGNMENT && warn_cast_align
6258 && (complain & tf_warning)
6259 && !VOID_TYPE_P (type)
6260 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
6261 && COMPLETE_TYPE_P (TREE_TYPE (type))
6262 && COMPLETE_TYPE_P (TREE_TYPE (intype))
6263 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
6264 warning (OPT_Wcast_align, "cast from %qT to %qT "
6265 "increases required alignment of target type", intype, type);
6266
6267 /* We need to strip nops here, because the front end likes to
6268 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
6269 STRIP_NOPS (sexpr);
6270 if (warn_strict_aliasing <= 2)
6271 strict_aliasing_warning (intype, type, sexpr);
6272
6273 return fold_if_not_in_template (build_nop (type, expr));
6274 }
6275 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
6276 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
6277 {
6278 if (pedantic && (complain & tf_warning))
6279 /* Only issue a warning, as we have always supported this
6280 where possible, and it is necessary in some cases. DR 195
6281 addresses this issue, but as of 2004/10/26 is still in
6282 drafting. */
6283 warning (0, "ISO C++ forbids casting between pointer-to-function and pointer-to-object");
6284 return fold_if_not_in_template (build_nop (type, expr));
6285 }
6286 else if (TREE_CODE (type) == VECTOR_TYPE)
6287 return fold_if_not_in_template (convert_to_vector (type, expr));
6288 else if (TREE_CODE (intype) == VECTOR_TYPE
6289 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6290 return fold_if_not_in_template (convert_to_integer (type, expr));
6291 else
6292 {
6293 if (valid_p)
6294 *valid_p = false;
6295 if (complain & tf_error)
6296 error ("invalid cast from type %qT to type %qT", intype, type);
6297 return error_mark_node;
6298 }
6299
6300 return cp_convert (type, expr);
6301 }
6302
6303 tree
6304 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
6305 {
6306 if (type == error_mark_node || expr == error_mark_node)
6307 return error_mark_node;
6308
6309 if (processing_template_decl)
6310 {
6311 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
6312
6313 if (!TREE_SIDE_EFFECTS (t)
6314 && type_dependent_expression_p (expr))
6315 /* There might turn out to be side effects inside expr. */
6316 TREE_SIDE_EFFECTS (t) = 1;
6317 return convert_from_reference (t);
6318 }
6319
6320 return build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
6321 /*valid_p=*/NULL, complain);
6322 }
6323
6324 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
6325 return an appropriate expression. Otherwise, return
6326 error_mark_node. If the cast is not valid, and COMPLAIN is true,
6327 then a diagnostic will be issued. If VALID_P is non-NULL, we are
6328 performing a C-style cast, its value upon return will indicate
6329 whether or not the conversion succeeded. */
6330
6331 static tree
6332 build_const_cast_1 (tree dst_type, tree expr, bool complain,
6333 bool *valid_p)
6334 {
6335 tree src_type;
6336 tree reference_type;
6337
6338 /* Callers are responsible for handling error_mark_node as a
6339 destination type. */
6340 gcc_assert (dst_type != error_mark_node);
6341 /* In a template, callers should be building syntactic
6342 representations of casts, not using this machinery. */
6343 gcc_assert (!processing_template_decl);
6344
6345 /* Assume the conversion is invalid. */
6346 if (valid_p)
6347 *valid_p = false;
6348
6349 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRMEM_P (dst_type))
6350 {
6351 if (complain)
6352 error ("invalid use of const_cast with type %qT, "
6353 "which is not a pointer, "
6354 "reference, nor a pointer-to-data-member type", dst_type);
6355 return error_mark_node;
6356 }
6357
6358 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
6359 {
6360 if (complain)
6361 error ("invalid use of const_cast with type %qT, which is a pointer "
6362 "or reference to a function type", dst_type);
6363 return error_mark_node;
6364 }
6365
6366 /* Save casted types in the function's used types hash table. */
6367 used_types_insert (dst_type);
6368
6369 src_type = TREE_TYPE (expr);
6370 /* Expressions do not really have reference types. */
6371 if (TREE_CODE (src_type) == REFERENCE_TYPE)
6372 src_type = TREE_TYPE (src_type);
6373
6374 /* [expr.const.cast]
6375
6376 An lvalue of type T1 can be explicitly converted to an lvalue of
6377 type T2 using the cast const_cast<T2&> (where T1 and T2 are object
6378 types) if a pointer to T1 can be explicitly converted to the type
6379 pointer to T2 using a const_cast. */
6380 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
6381 {
6382 reference_type = dst_type;
6383 if (! real_lvalue_p (expr))
6384 {
6385 if (complain)
6386 error ("invalid const_cast of an rvalue of type %qT to type %qT",
6387 src_type, dst_type);
6388 return error_mark_node;
6389 }
6390 dst_type = build_pointer_type (TREE_TYPE (dst_type));
6391 src_type = build_pointer_type (src_type);
6392 }
6393 else
6394 {
6395 reference_type = NULL_TREE;
6396 /* If the destination type is not a reference type, the
6397 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6398 conversions are performed. */
6399 src_type = type_decays_to (src_type);
6400 if (src_type == error_mark_node)
6401 return error_mark_node;
6402 }
6403
6404 if ((TYPE_PTR_P (src_type) || TYPE_PTRMEM_P (src_type))
6405 && comp_ptr_ttypes_const (dst_type, src_type))
6406 {
6407 if (valid_p)
6408 {
6409 *valid_p = true;
6410 /* This cast is actually a C-style cast. Issue a warning if
6411 the user is making a potentially unsafe cast. */
6412 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR);
6413 }
6414 if (reference_type)
6415 {
6416 expr = cp_build_addr_expr (expr,
6417 complain ? tf_warning_or_error : tf_none);
6418 expr = build_nop (reference_type, expr);
6419 return convert_from_reference (expr);
6420 }
6421 else
6422 {
6423 expr = decay_conversion (expr);
6424 /* build_c_cast puts on a NOP_EXPR to make the result not an
6425 lvalue. Strip such NOP_EXPRs if VALUE is being used in
6426 non-lvalue context. */
6427 if (TREE_CODE (expr) == NOP_EXPR
6428 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6429 expr = TREE_OPERAND (expr, 0);
6430 return build_nop (dst_type, expr);
6431 }
6432 }
6433
6434 if (complain)
6435 error ("invalid const_cast from type %qT to type %qT",
6436 src_type, dst_type);
6437 return error_mark_node;
6438 }
6439
6440 tree
6441 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
6442 {
6443 if (type == error_mark_node || error_operand_p (expr))
6444 return error_mark_node;
6445
6446 if (processing_template_decl)
6447 {
6448 tree t = build_min (CONST_CAST_EXPR, type, expr);
6449
6450 if (!TREE_SIDE_EFFECTS (t)
6451 && type_dependent_expression_p (expr))
6452 /* There might turn out to be side effects inside expr. */
6453 TREE_SIDE_EFFECTS (t) = 1;
6454 return convert_from_reference (t);
6455 }
6456
6457 return build_const_cast_1 (type, expr, complain & tf_error,
6458 /*valid_p=*/NULL);
6459 }
6460
6461 /* Like cp_build_c_cast, but for the c-common bits. */
6462
6463 tree
6464 build_c_cast (location_t loc ATTRIBUTE_UNUSED, tree type, tree expr)
6465 {
6466 return cp_build_c_cast (type, expr, tf_warning_or_error);
6467 }
6468
6469 /* Build an expression representing an explicit C-style cast to type
6470 TYPE of expression EXPR. */
6471
6472 tree
6473 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
6474 {
6475 tree value = expr;
6476 tree result;
6477 bool valid_p;
6478
6479 if (type == error_mark_node || error_operand_p (expr))
6480 return error_mark_node;
6481
6482 if (processing_template_decl)
6483 {
6484 tree t = build_min (CAST_EXPR, type,
6485 tree_cons (NULL_TREE, value, NULL_TREE));
6486 /* We don't know if it will or will not have side effects. */
6487 TREE_SIDE_EFFECTS (t) = 1;
6488 return convert_from_reference (t);
6489 }
6490
6491 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
6492 'Class') should always be retained, because this information aids
6493 in method lookup. */
6494 if (objc_is_object_ptr (type)
6495 && objc_is_object_ptr (TREE_TYPE (expr)))
6496 return build_nop (type, expr);
6497
6498 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6499 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6500 if (TREE_CODE (type) != REFERENCE_TYPE
6501 && TREE_CODE (value) == NOP_EXPR
6502 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
6503 value = TREE_OPERAND (value, 0);
6504
6505 if (TREE_CODE (type) == ARRAY_TYPE)
6506 {
6507 /* Allow casting from T1* to T2[] because Cfront allows it.
6508 NIHCL uses it. It is not valid ISO C++ however. */
6509 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
6510 {
6511 if (complain & tf_error)
6512 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
6513 else
6514 return error_mark_node;
6515 type = build_pointer_type (TREE_TYPE (type));
6516 }
6517 else
6518 {
6519 if (complain & tf_error)
6520 error ("ISO C++ forbids casting to an array type %qT", type);
6521 return error_mark_node;
6522 }
6523 }
6524
6525 if (TREE_CODE (type) == FUNCTION_TYPE
6526 || TREE_CODE (type) == METHOD_TYPE)
6527 {
6528 if (complain & tf_error)
6529 error ("invalid cast to function type %qT", type);
6530 return error_mark_node;
6531 }
6532
6533 if (TREE_CODE (type) == POINTER_TYPE
6534 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
6535 /* Casting to an integer of smaller size is an error detected elsewhere. */
6536 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
6537 /* Don't warn about converting any constant. */
6538 && !TREE_CONSTANT (value))
6539 warning_at (input_location, OPT_Wint_to_pointer_cast,
6540 "cast to pointer from integer of different size");
6541
6542 /* A C-style cast can be a const_cast. */
6543 result = build_const_cast_1 (type, value, /*complain=*/false,
6544 &valid_p);
6545 if (valid_p)
6546 return result;
6547
6548 /* Or a static cast. */
6549 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
6550 &valid_p, complain);
6551 /* Or a reinterpret_cast. */
6552 if (!valid_p)
6553 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
6554 &valid_p, complain);
6555 /* The static_cast or reinterpret_cast may be followed by a
6556 const_cast. */
6557 if (valid_p
6558 /* A valid cast may result in errors if, for example, a
6559 conversion to am ambiguous base class is required. */
6560 && !error_operand_p (result))
6561 {
6562 tree result_type;
6563
6564 /* Non-class rvalues always have cv-unqualified type. */
6565 if (!CLASS_TYPE_P (type))
6566 type = TYPE_MAIN_VARIANT (type);
6567 result_type = TREE_TYPE (result);
6568 if (!CLASS_TYPE_P (result_type))
6569 result_type = TYPE_MAIN_VARIANT (result_type);
6570 /* If the type of RESULT does not match TYPE, perform a
6571 const_cast to make it match. If the static_cast or
6572 reinterpret_cast succeeded, we will differ by at most
6573 cv-qualification, so the follow-on const_cast is guaranteed
6574 to succeed. */
6575 if (!same_type_p (non_reference (type), non_reference (result_type)))
6576 {
6577 result = build_const_cast_1 (type, result, false, &valid_p);
6578 gcc_assert (valid_p);
6579 }
6580 return result;
6581 }
6582
6583 return error_mark_node;
6584 }
6585 \f
6586 /* For use from the C common bits. */
6587 tree
6588 build_modify_expr (location_t location ATTRIBUTE_UNUSED,
6589 tree lhs, tree lhs_origtype ATTRIBUTE_UNUSED,
6590 enum tree_code modifycode,
6591 location_t rhs_location ATTRIBUTE_UNUSED, tree rhs,
6592 tree rhs_origtype ATTRIBUTE_UNUSED)
6593 {
6594 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
6595 }
6596
6597 /* Build an assignment expression of lvalue LHS from value RHS.
6598 MODIFYCODE is the code for a binary operator that we use
6599 to combine the old value of LHS with RHS to get the new value.
6600 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
6601
6602 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
6603
6604 tree
6605 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6606 tsubst_flags_t complain)
6607 {
6608 tree result;
6609 tree newrhs = rhs;
6610 tree lhstype = TREE_TYPE (lhs);
6611 tree olhstype = lhstype;
6612 bool plain_assign = (modifycode == NOP_EXPR);
6613
6614 /* Avoid duplicate error messages from operands that had errors. */
6615 if (error_operand_p (lhs) || error_operand_p (rhs))
6616 return error_mark_node;
6617
6618 /* Handle control structure constructs used as "lvalues". */
6619 switch (TREE_CODE (lhs))
6620 {
6621 /* Handle --foo = 5; as these are valid constructs in C++. */
6622 case PREDECREMENT_EXPR:
6623 case PREINCREMENT_EXPR:
6624 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6625 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6626 stabilize_reference (TREE_OPERAND (lhs, 0)),
6627 TREE_OPERAND (lhs, 1));
6628 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
6629 modifycode, rhs, complain);
6630 if (newrhs == error_mark_node)
6631 return error_mark_node;
6632 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6633
6634 /* Handle (a, b) used as an "lvalue". */
6635 case COMPOUND_EXPR:
6636 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6637 modifycode, rhs, complain);
6638 if (newrhs == error_mark_node)
6639 return error_mark_node;
6640 return build2 (COMPOUND_EXPR, lhstype,
6641 TREE_OPERAND (lhs, 0), newrhs);
6642
6643 case MODIFY_EXPR:
6644 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6645 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6646 stabilize_reference (TREE_OPERAND (lhs, 0)),
6647 TREE_OPERAND (lhs, 1));
6648 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
6649 complain);
6650 if (newrhs == error_mark_node)
6651 return error_mark_node;
6652 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6653
6654 case MIN_EXPR:
6655 case MAX_EXPR:
6656 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
6657 when neither operand has side-effects. */
6658 if (!lvalue_or_else (lhs, lv_assign, complain))
6659 return error_mark_node;
6660
6661 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
6662 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
6663
6664 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
6665 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
6666 boolean_type_node,
6667 TREE_OPERAND (lhs, 0),
6668 TREE_OPERAND (lhs, 1)),
6669 TREE_OPERAND (lhs, 0),
6670 TREE_OPERAND (lhs, 1));
6671 /* Fall through. */
6672
6673 /* Handle (a ? b : c) used as an "lvalue". */
6674 case COND_EXPR:
6675 {
6676 /* Produce (a ? (b = rhs) : (c = rhs))
6677 except that the RHS goes through a save-expr
6678 so the code to compute it is only emitted once. */
6679 tree cond;
6680 tree preeval = NULL_TREE;
6681
6682 if (VOID_TYPE_P (TREE_TYPE (rhs)))
6683 {
6684 if (complain & tf_error)
6685 error ("void value not ignored as it ought to be");
6686 return error_mark_node;
6687 }
6688
6689 rhs = stabilize_expr (rhs, &preeval);
6690
6691 /* Check this here to avoid odd errors when trying to convert
6692 a throw to the type of the COND_EXPR. */
6693 if (!lvalue_or_else (lhs, lv_assign, complain))
6694 return error_mark_node;
6695
6696 cond = build_conditional_expr
6697 (TREE_OPERAND (lhs, 0),
6698 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6699 modifycode, rhs, complain),
6700 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
6701 modifycode, rhs, complain),
6702 complain);
6703
6704 if (cond == error_mark_node)
6705 return cond;
6706 /* Make sure the code to compute the rhs comes out
6707 before the split. */
6708 if (preeval)
6709 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
6710 return cond;
6711 }
6712
6713 default:
6714 break;
6715 }
6716
6717 if (modifycode == INIT_EXPR)
6718 {
6719 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
6720 /* Do the default thing. */;
6721 else if (TREE_CODE (rhs) == CONSTRUCTOR)
6722 {
6723 /* Compound literal. */
6724 if (! same_type_p (TREE_TYPE (rhs), lhstype))
6725 /* Call convert to generate an error; see PR 11063. */
6726 rhs = convert (lhstype, rhs);
6727 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
6728 TREE_SIDE_EFFECTS (result) = 1;
6729 return result;
6730 }
6731 else if (! MAYBE_CLASS_TYPE_P (lhstype))
6732 /* Do the default thing. */;
6733 else
6734 {
6735 VEC(tree,gc) *rhs_vec = make_tree_vector_single (rhs);
6736 result = build_special_member_call (lhs, complete_ctor_identifier,
6737 &rhs_vec, lhstype, LOOKUP_NORMAL,
6738 complain);
6739 release_tree_vector (rhs_vec);
6740 if (result == NULL_TREE)
6741 return error_mark_node;
6742 return result;
6743 }
6744 }
6745 else
6746 {
6747 lhs = require_complete_type (lhs);
6748 if (lhs == error_mark_node)
6749 return error_mark_node;
6750
6751 if (modifycode == NOP_EXPR)
6752 {
6753 /* `operator=' is not an inheritable operator. */
6754 if (! MAYBE_CLASS_TYPE_P (lhstype))
6755 /* Do the default thing. */;
6756 else
6757 {
6758 result = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL,
6759 lhs, rhs, make_node (NOP_EXPR),
6760 /*overloaded_p=*/NULL,
6761 complain);
6762 if (result == NULL_TREE)
6763 return error_mark_node;
6764 return result;
6765 }
6766 lhstype = olhstype;
6767 }
6768 else
6769 {
6770 /* A binary op has been requested. Combine the old LHS
6771 value with the RHS producing the value we should actually
6772 store into the LHS. */
6773 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
6774 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
6775 || MAYBE_CLASS_TYPE_P (lhstype)));
6776
6777 lhs = stabilize_reference (lhs);
6778 newrhs = cp_build_binary_op (input_location,
6779 modifycode, lhs, rhs,
6780 complain);
6781 if (newrhs == error_mark_node)
6782 {
6783 if (complain & tf_error)
6784 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
6785 TREE_TYPE (lhs), TREE_TYPE (rhs));
6786 return error_mark_node;
6787 }
6788
6789 /* Now it looks like a plain assignment. */
6790 modifycode = NOP_EXPR;
6791 }
6792 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
6793 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
6794 }
6795
6796 /* The left-hand side must be an lvalue. */
6797 if (!lvalue_or_else (lhs, lv_assign, complain))
6798 return error_mark_node;
6799
6800 /* Warn about modifying something that is `const'. Don't warn if
6801 this is initialization. */
6802 if (modifycode != INIT_EXPR
6803 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
6804 /* Functions are not modifiable, even though they are
6805 lvalues. */
6806 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
6807 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
6808 /* If it's an aggregate and any field is const, then it is
6809 effectively const. */
6810 || (CLASS_TYPE_P (lhstype)
6811 && C_TYPE_FIELDS_READONLY (lhstype))))
6812 {
6813 if (complain & tf_error)
6814 readonly_error (lhs, REK_ASSIGNMENT);
6815 else
6816 return error_mark_node;
6817 }
6818
6819 /* If storing into a structure or union member, it may have been given a
6820 lowered bitfield type. We need to convert to the declared type first,
6821 so retrieve it now. */
6822
6823 olhstype = unlowered_expr_type (lhs);
6824
6825 /* Convert new value to destination type. */
6826
6827 if (TREE_CODE (lhstype) == ARRAY_TYPE)
6828 {
6829 int from_array;
6830
6831 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
6832 {
6833 if (modifycode != INIT_EXPR)
6834 {
6835 if (complain & tf_error)
6836 error ("assigning to an array from an initializer list");
6837 return error_mark_node;
6838 }
6839 if (check_array_initializer (lhs, lhstype, newrhs))
6840 return error_mark_node;
6841 newrhs = digest_init (lhstype, newrhs);
6842 }
6843
6844 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
6845 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
6846 {
6847 if (complain & tf_error)
6848 error ("incompatible types in assignment of %qT to %qT",
6849 TREE_TYPE (rhs), lhstype);
6850 return error_mark_node;
6851 }
6852
6853 /* Allow array assignment in compiler-generated code. */
6854 else if (!current_function_decl
6855 || !DECL_ARTIFICIAL (current_function_decl))
6856 {
6857 /* This routine is used for both initialization and assignment.
6858 Make sure the diagnostic message differentiates the context. */
6859 if (complain & tf_error)
6860 {
6861 if (modifycode == INIT_EXPR)
6862 error ("array used as initializer");
6863 else
6864 error ("invalid array assignment");
6865 }
6866 return error_mark_node;
6867 }
6868
6869 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
6870 ? 1 + (modifycode != INIT_EXPR): 0;
6871 return build_vec_init (lhs, NULL_TREE, newrhs,
6872 /*explicit_value_init_p=*/false,
6873 from_array, complain);
6874 }
6875
6876 if (modifycode == INIT_EXPR)
6877 /* Calls with INIT_EXPR are all direct-initialization, so don't set
6878 LOOKUP_ONLYCONVERTING. */
6879 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
6880 ICR_INIT, NULL_TREE, 0,
6881 complain);
6882 else
6883 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
6884 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
6885
6886 if (!same_type_p (lhstype, olhstype))
6887 newrhs = cp_convert_and_check (lhstype, newrhs);
6888
6889 if (modifycode != INIT_EXPR)
6890 {
6891 if (TREE_CODE (newrhs) == CALL_EXPR
6892 && TYPE_NEEDS_CONSTRUCTING (lhstype))
6893 newrhs = build_cplus_new (lhstype, newrhs);
6894
6895 /* Can't initialize directly from a TARGET_EXPR, since that would
6896 cause the lhs to be constructed twice, and possibly result in
6897 accidental self-initialization. So we force the TARGET_EXPR to be
6898 expanded without a target. */
6899 if (TREE_CODE (newrhs) == TARGET_EXPR)
6900 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
6901 TREE_OPERAND (newrhs, 0));
6902 }
6903
6904 if (newrhs == error_mark_node)
6905 return error_mark_node;
6906
6907 if (c_dialect_objc () && flag_objc_gc)
6908 {
6909 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
6910
6911 if (result)
6912 return result;
6913 }
6914
6915 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6916 lhstype, lhs, newrhs);
6917
6918 TREE_SIDE_EFFECTS (result) = 1;
6919 if (!plain_assign)
6920 TREE_NO_WARNING (result) = 1;
6921
6922 return result;
6923 }
6924
6925 tree
6926 build_x_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6927 tsubst_flags_t complain)
6928 {
6929 if (processing_template_decl)
6930 return build_min_nt (MODOP_EXPR, lhs,
6931 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
6932
6933 if (modifycode != NOP_EXPR)
6934 {
6935 tree rval = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
6936 make_node (modifycode),
6937 /*overloaded_p=*/NULL,
6938 complain);
6939 if (rval)
6940 {
6941 TREE_NO_WARNING (rval) = 1;
6942 return rval;
6943 }
6944 }
6945 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
6946 }
6947
6948 /* Helper function for get_delta_difference which assumes FROM is a base
6949 class of TO. Returns a delta for the conversion of pointer-to-member
6950 of FROM to pointer-to-member of TO. If the conversion is invalid and
6951 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
6952 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
6953 If C_CAST_P is true, this conversion is taking place as part of a
6954 C-style cast. */
6955
6956 static tree
6957 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
6958 tsubst_flags_t complain)
6959 {
6960 tree binfo;
6961 base_kind kind;
6962 base_access access = c_cast_p ? ba_unique : ba_check;
6963
6964 /* Note: ba_quiet does not distinguish between access control and
6965 ambiguity. */
6966 if (!(complain & tf_error))
6967 access |= ba_quiet;
6968
6969 binfo = lookup_base (to, from, access, &kind);
6970
6971 if (kind == bk_inaccessible || kind == bk_ambig)
6972 {
6973 if (!(complain & tf_error))
6974 return error_mark_node;
6975
6976 error (" in pointer to member function conversion");
6977 return size_zero_node;
6978 }
6979 else if (binfo)
6980 {
6981 if (kind != bk_via_virtual)
6982 return BINFO_OFFSET (binfo);
6983 else
6984 /* FROM is a virtual base class of TO. Issue an error or warning
6985 depending on whether or not this is a reinterpret cast. */
6986 {
6987 if (!(complain & tf_error))
6988 return error_mark_node;
6989
6990 error ("pointer to member conversion via virtual base %qT",
6991 BINFO_TYPE (binfo_from_vbase (binfo)));
6992
6993 return size_zero_node;
6994 }
6995 }
6996 else
6997 return NULL_TREE;
6998 }
6999
7000 /* Get difference in deltas for different pointer to member function
7001 types. If the conversion is invalid and tf_error is not set in
7002 COMPLAIN, returns error_mark_node, otherwise returns an integer
7003 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
7004 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
7005 conversions as well. If C_CAST_P is true this conversion is taking
7006 place as part of a C-style cast.
7007
7008 Note that the naming of FROM and TO is kind of backwards; the return
7009 value is what we add to a TO in order to get a FROM. They are named
7010 this way because we call this function to find out how to convert from
7011 a pointer to member of FROM to a pointer to member of TO. */
7012
7013 static tree
7014 get_delta_difference (tree from, tree to,
7015 bool allow_inverse_p,
7016 bool c_cast_p, tsubst_flags_t complain)
7017 {
7018 tree result;
7019
7020 if (same_type_ignoring_top_level_qualifiers_p (from, to))
7021 /* Pointer to member of incomplete class is permitted*/
7022 result = size_zero_node;
7023 else
7024 result = get_delta_difference_1 (from, to, c_cast_p, complain);
7025
7026 if (result == error_mark_node)
7027 return error_mark_node;
7028
7029 if (!result)
7030 {
7031 if (!allow_inverse_p)
7032 {
7033 if (!(complain & tf_error))
7034 return error_mark_node;
7035
7036 error_not_base_type (from, to);
7037 error (" in pointer to member conversion");
7038 result = size_zero_node;
7039 }
7040 else
7041 {
7042 result = get_delta_difference_1 (to, from, c_cast_p, complain);
7043
7044 if (result == error_mark_node)
7045 return error_mark_node;
7046
7047 if (result)
7048 result = size_diffop_loc (input_location,
7049 size_zero_node, result);
7050 else
7051 {
7052 if (!(complain & tf_error))
7053 return error_mark_node;
7054
7055 error_not_base_type (from, to);
7056 error (" in pointer to member conversion");
7057 result = size_zero_node;
7058 }
7059 }
7060 }
7061
7062 return fold_if_not_in_template (convert_to_integer (ptrdiff_type_node,
7063 result));
7064 }
7065
7066 /* Return a constructor for the pointer-to-member-function TYPE using
7067 the other components as specified. */
7068
7069 tree
7070 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
7071 {
7072 tree u = NULL_TREE;
7073 tree delta_field;
7074 tree pfn_field;
7075 VEC(constructor_elt, gc) *v;
7076
7077 /* Pull the FIELD_DECLs out of the type. */
7078 pfn_field = TYPE_FIELDS (type);
7079 delta_field = DECL_CHAIN (pfn_field);
7080
7081 /* Make sure DELTA has the type we want. */
7082 delta = convert_and_check (delta_type_node, delta);
7083
7084 /* Convert to the correct target type if necessary. */
7085 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
7086
7087 /* Finish creating the initializer. */
7088 v = VEC_alloc(constructor_elt, gc, 2);
7089 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
7090 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
7091 u = build_constructor (type, v);
7092 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
7093 TREE_STATIC (u) = (TREE_CONSTANT (u)
7094 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
7095 != NULL_TREE)
7096 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
7097 != NULL_TREE));
7098 return u;
7099 }
7100
7101 /* Build a constructor for a pointer to member function. It can be
7102 used to initialize global variables, local variable, or used
7103 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
7104 want to be.
7105
7106 If FORCE is nonzero, then force this conversion, even if
7107 we would rather not do it. Usually set when using an explicit
7108 cast. A C-style cast is being processed iff C_CAST_P is true.
7109
7110 Return error_mark_node, if something goes wrong. */
7111
7112 tree
7113 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
7114 tsubst_flags_t complain)
7115 {
7116 tree fn;
7117 tree pfn_type;
7118 tree to_type;
7119
7120 if (error_operand_p (pfn))
7121 return error_mark_node;
7122
7123 pfn_type = TREE_TYPE (pfn);
7124 to_type = build_ptrmemfunc_type (type);
7125
7126 /* Handle multiple conversions of pointer to member functions. */
7127 if (TYPE_PTRMEMFUNC_P (pfn_type))
7128 {
7129 tree delta = NULL_TREE;
7130 tree npfn = NULL_TREE;
7131 tree n;
7132
7133 if (!force
7134 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn, LOOKUP_NORMAL))
7135 error ("invalid conversion to type %qT from type %qT",
7136 to_type, pfn_type);
7137
7138 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
7139 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7140 force,
7141 c_cast_p, complain);
7142 if (n == error_mark_node)
7143 return error_mark_node;
7144
7145 /* We don't have to do any conversion to convert a
7146 pointer-to-member to its own type. But, we don't want to
7147 just return a PTRMEM_CST if there's an explicit cast; that
7148 cast should make the expression an invalid template argument. */
7149 if (TREE_CODE (pfn) != PTRMEM_CST)
7150 {
7151 if (same_type_p (to_type, pfn_type))
7152 return pfn;
7153 else if (integer_zerop (n))
7154 return build_reinterpret_cast (to_type, pfn,
7155 tf_warning_or_error);
7156 }
7157
7158 if (TREE_SIDE_EFFECTS (pfn))
7159 pfn = save_expr (pfn);
7160
7161 /* Obtain the function pointer and the current DELTA. */
7162 if (TREE_CODE (pfn) == PTRMEM_CST)
7163 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
7164 else
7165 {
7166 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
7167 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
7168 }
7169
7170 /* Just adjust the DELTA field. */
7171 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7172 (TREE_TYPE (delta), ptrdiff_type_node));
7173 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
7174 n = cp_build_binary_op (input_location,
7175 LSHIFT_EXPR, n, integer_one_node,
7176 tf_warning_or_error);
7177 delta = cp_build_binary_op (input_location,
7178 PLUS_EXPR, delta, n, tf_warning_or_error);
7179 return build_ptrmemfunc1 (to_type, delta, npfn);
7180 }
7181
7182 /* Handle null pointer to member function conversions. */
7183 if (null_ptr_cst_p (pfn))
7184 {
7185 pfn = build_c_cast (input_location, type, integer_zero_node);
7186 return build_ptrmemfunc1 (to_type,
7187 integer_zero_node,
7188 pfn);
7189 }
7190
7191 if (type_unknown_p (pfn))
7192 return instantiate_type (type, pfn, tf_warning_or_error);
7193
7194 fn = TREE_OPERAND (pfn, 0);
7195 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7196 /* In a template, we will have preserved the
7197 OFFSET_REF. */
7198 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
7199 return make_ptrmem_cst (to_type, fn);
7200 }
7201
7202 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
7203 given by CST.
7204
7205 ??? There is no consistency as to the types returned for the above
7206 values. Some code acts as if it were a sizetype and some as if it were
7207 integer_type_node. */
7208
7209 void
7210 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
7211 {
7212 tree type = TREE_TYPE (cst);
7213 tree fn = PTRMEM_CST_MEMBER (cst);
7214 tree ptr_class, fn_class;
7215
7216 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7217
7218 /* The class that the function belongs to. */
7219 fn_class = DECL_CONTEXT (fn);
7220
7221 /* The class that we're creating a pointer to member of. */
7222 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
7223
7224 /* First, calculate the adjustment to the function's class. */
7225 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
7226 /*c_cast_p=*/0, tf_warning_or_error);
7227
7228 if (!DECL_VIRTUAL_P (fn))
7229 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type), build_addr_func (fn));
7230 else
7231 {
7232 /* If we're dealing with a virtual function, we have to adjust 'this'
7233 again, to point to the base which provides the vtable entry for
7234 fn; the call will do the opposite adjustment. */
7235 tree orig_class = DECL_CONTEXT (fn);
7236 tree binfo = binfo_or_else (orig_class, fn_class);
7237 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7238 *delta, BINFO_OFFSET (binfo));
7239 *delta = fold_if_not_in_template (*delta);
7240
7241 /* We set PFN to the vtable offset at which the function can be
7242 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
7243 case delta is shifted left, and then incremented). */
7244 *pfn = DECL_VINDEX (fn);
7245 *pfn = build2 (MULT_EXPR, integer_type_node, *pfn,
7246 TYPE_SIZE_UNIT (vtable_entry_type));
7247 *pfn = fold_if_not_in_template (*pfn);
7248
7249 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
7250 {
7251 case ptrmemfunc_vbit_in_pfn:
7252 *pfn = build2 (PLUS_EXPR, integer_type_node, *pfn,
7253 integer_one_node);
7254 *pfn = fold_if_not_in_template (*pfn);
7255 break;
7256
7257 case ptrmemfunc_vbit_in_delta:
7258 *delta = build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
7259 *delta, integer_one_node);
7260 *delta = fold_if_not_in_template (*delta);
7261 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7262 *delta, integer_one_node);
7263 *delta = fold_if_not_in_template (*delta);
7264 break;
7265
7266 default:
7267 gcc_unreachable ();
7268 }
7269
7270 *pfn = build_nop (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
7271 *pfn = fold_if_not_in_template (*pfn);
7272 }
7273 }
7274
7275 /* Return an expression for PFN from the pointer-to-member function
7276 given by T. */
7277
7278 static tree
7279 pfn_from_ptrmemfunc (tree t)
7280 {
7281 if (TREE_CODE (t) == PTRMEM_CST)
7282 {
7283 tree delta;
7284 tree pfn;
7285
7286 expand_ptrmemfunc_cst (t, &delta, &pfn);
7287 if (pfn)
7288 return pfn;
7289 }
7290
7291 return build_ptrmemfunc_access_expr (t, pfn_identifier);
7292 }
7293
7294 /* Return an expression for DELTA from the pointer-to-member function
7295 given by T. */
7296
7297 static tree
7298 delta_from_ptrmemfunc (tree t)
7299 {
7300 if (TREE_CODE (t) == PTRMEM_CST)
7301 {
7302 tree delta;
7303 tree pfn;
7304
7305 expand_ptrmemfunc_cst (t, &delta, &pfn);
7306 if (delta)
7307 return delta;
7308 }
7309
7310 return build_ptrmemfunc_access_expr (t, delta_identifier);
7311 }
7312
7313 /* Convert value RHS to type TYPE as preparation for an assignment to
7314 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
7315 implicit conversion is. If FNDECL is non-NULL, we are doing the
7316 conversion in order to pass the PARMNUMth argument of FNDECL.
7317 If FNDECL is NULL, we are doing the conversion in function pointer
7318 argument passing, conversion in initialization, etc. */
7319
7320 static tree
7321 convert_for_assignment (tree type, tree rhs,
7322 impl_conv_rhs errtype, tree fndecl, int parmnum,
7323 tsubst_flags_t complain, int flags)
7324 {
7325 tree rhstype;
7326 enum tree_code coder;
7327
7328 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
7329 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
7330 rhs = TREE_OPERAND (rhs, 0);
7331
7332 rhstype = TREE_TYPE (rhs);
7333 coder = TREE_CODE (rhstype);
7334
7335 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
7336 && vector_types_convertible_p (type, rhstype, true))
7337 {
7338 rhs = mark_rvalue_use (rhs);
7339 return convert (type, rhs);
7340 }
7341
7342 if (rhs == error_mark_node || rhstype == error_mark_node)
7343 return error_mark_node;
7344 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
7345 return error_mark_node;
7346
7347 /* The RHS of an assignment cannot have void type. */
7348 if (coder == VOID_TYPE)
7349 {
7350 if (complain & tf_error)
7351 error ("void value not ignored as it ought to be");
7352 return error_mark_node;
7353 }
7354
7355 /* Simplify the RHS if possible. */
7356 if (TREE_CODE (rhs) == CONST_DECL)
7357 rhs = DECL_INITIAL (rhs);
7358
7359 if (c_dialect_objc ())
7360 {
7361 int parmno;
7362 tree selector;
7363 tree rname = fndecl;
7364
7365 switch (errtype)
7366 {
7367 case ICR_ASSIGN:
7368 parmno = -1;
7369 break;
7370 case ICR_INIT:
7371 parmno = -2;
7372 break;
7373 default:
7374 selector = objc_message_selector ();
7375 parmno = parmnum;
7376 if (selector && parmno > 1)
7377 {
7378 rname = selector;
7379 parmno -= 1;
7380 }
7381 }
7382
7383 if (objc_compare_types (type, rhstype, parmno, rname))
7384 {
7385 rhs = mark_rvalue_use (rhs);
7386 return convert (type, rhs);
7387 }
7388 }
7389
7390 /* [expr.ass]
7391
7392 The expression is implicitly converted (clause _conv_) to the
7393 cv-unqualified type of the left operand.
7394
7395 We allow bad conversions here because by the time we get to this point
7396 we are committed to doing the conversion. If we end up doing a bad
7397 conversion, convert_like will complain. */
7398 if (!can_convert_arg_bad (type, rhstype, rhs, flags))
7399 {
7400 /* When -Wno-pmf-conversions is use, we just silently allow
7401 conversions from pointers-to-members to plain pointers. If
7402 the conversion doesn't work, cp_convert will complain. */
7403 if (!warn_pmf2ptr
7404 && TYPE_PTR_P (type)
7405 && TYPE_PTRMEMFUNC_P (rhstype))
7406 rhs = cp_convert (strip_top_quals (type), rhs);
7407 else
7408 {
7409 if (complain & tf_error)
7410 {
7411 /* If the right-hand side has unknown type, then it is an
7412 overloaded function. Call instantiate_type to get error
7413 messages. */
7414 if (rhstype == unknown_type_node)
7415 instantiate_type (type, rhs, tf_warning_or_error);
7416 else if (fndecl)
7417 error ("cannot convert %qT to %qT for argument %qP to %qD",
7418 rhstype, type, parmnum, fndecl);
7419 else
7420 switch (errtype)
7421 {
7422 case ICR_DEFAULT_ARGUMENT:
7423 error ("cannot convert %qT to %qT in default argument",
7424 rhstype, type);
7425 break;
7426 case ICR_ARGPASS:
7427 error ("cannot convert %qT to %qT in argument passing",
7428 rhstype, type);
7429 break;
7430 case ICR_CONVERTING:
7431 error ("cannot convert %qT to %qT",
7432 rhstype, type);
7433 break;
7434 case ICR_INIT:
7435 error ("cannot convert %qT to %qT in initialization",
7436 rhstype, type);
7437 break;
7438 case ICR_RETURN:
7439 error ("cannot convert %qT to %qT in return",
7440 rhstype, type);
7441 break;
7442 case ICR_ASSIGN:
7443 error ("cannot convert %qT to %qT in assignment",
7444 rhstype, type);
7445 break;
7446 default:
7447 gcc_unreachable();
7448 }
7449 }
7450 return error_mark_node;
7451 }
7452 }
7453 if (warn_missing_format_attribute)
7454 {
7455 const enum tree_code codel = TREE_CODE (type);
7456 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
7457 && coder == codel
7458 && check_missing_format_attribute (type, rhstype)
7459 && (complain & tf_warning))
7460 switch (errtype)
7461 {
7462 case ICR_ARGPASS:
7463 case ICR_DEFAULT_ARGUMENT:
7464 if (fndecl)
7465 warning (OPT_Wmissing_format_attribute,
7466 "parameter %qP of %qD might be a candidate "
7467 "for a format attribute", parmnum, fndecl);
7468 else
7469 warning (OPT_Wmissing_format_attribute,
7470 "parameter might be a candidate "
7471 "for a format attribute");
7472 break;
7473 case ICR_CONVERTING:
7474 warning (OPT_Wmissing_format_attribute,
7475 "target of conversion might be might be a candidate "
7476 "for a format attribute");
7477 break;
7478 case ICR_INIT:
7479 warning (OPT_Wmissing_format_attribute,
7480 "target of initialization might be a candidate "
7481 "for a format attribute");
7482 break;
7483 case ICR_RETURN:
7484 warning (OPT_Wmissing_format_attribute,
7485 "return type might be a candidate "
7486 "for a format attribute");
7487 break;
7488 case ICR_ASSIGN:
7489 warning (OPT_Wmissing_format_attribute,
7490 "left-hand side of assignment might be a candidate "
7491 "for a format attribute");
7492 break;
7493 default:
7494 gcc_unreachable();
7495 }
7496 }
7497
7498 /* If -Wparentheses, warn about a = b = c when a has type bool and b
7499 does not. */
7500 if (warn_parentheses
7501 && TREE_CODE (type) == BOOLEAN_TYPE
7502 && TREE_CODE (rhs) == MODIFY_EXPR
7503 && !TREE_NO_WARNING (rhs)
7504 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
7505 && (complain & tf_warning))
7506 {
7507 location_t loc = EXPR_HAS_LOCATION (rhs)
7508 ? EXPR_LOCATION (rhs) : input_location;
7509
7510 warning_at (loc, OPT_Wparentheses,
7511 "suggest parentheses around assignment used as truth value");
7512 TREE_NO_WARNING (rhs) = 1;
7513 }
7514
7515 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
7516 complain, flags);
7517 }
7518
7519 /* Convert RHS to be of type TYPE.
7520 If EXP is nonzero, it is the target of the initialization.
7521 ERRTYPE indicates what kind of error the implicit conversion is.
7522
7523 Two major differences between the behavior of
7524 `convert_for_assignment' and `convert_for_initialization'
7525 are that references are bashed in the former, while
7526 copied in the latter, and aggregates are assigned in
7527 the former (operator=) while initialized in the
7528 latter (X(X&)).
7529
7530 If using constructor make sure no conversion operator exists, if one does
7531 exist, an ambiguity exists.
7532
7533 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
7534
7535 tree
7536 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
7537 impl_conv_rhs errtype, tree fndecl, int parmnum,
7538 tsubst_flags_t complain)
7539 {
7540 enum tree_code codel = TREE_CODE (type);
7541 tree rhstype;
7542 enum tree_code coder;
7543
7544 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7545 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
7546 if (TREE_CODE (rhs) == NOP_EXPR
7547 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
7548 && codel != REFERENCE_TYPE)
7549 rhs = TREE_OPERAND (rhs, 0);
7550
7551 if (type == error_mark_node
7552 || rhs == error_mark_node
7553 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
7554 return error_mark_node;
7555
7556 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
7557 && TREE_CODE (type) != ARRAY_TYPE
7558 && (TREE_CODE (type) != REFERENCE_TYPE
7559 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
7560 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
7561 && (TREE_CODE (type) != REFERENCE_TYPE
7562 || TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE))
7563 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
7564 rhs = decay_conversion (rhs);
7565
7566 rhstype = TREE_TYPE (rhs);
7567 coder = TREE_CODE (rhstype);
7568
7569 if (coder == ERROR_MARK)
7570 return error_mark_node;
7571
7572 /* We accept references to incomplete types, so we can
7573 return here before checking if RHS is of complete type. */
7574
7575 if (codel == REFERENCE_TYPE)
7576 {
7577 /* This should eventually happen in convert_arguments. */
7578 int savew = 0, savee = 0;
7579
7580 if (fndecl)
7581 savew = warningcount, savee = errorcount;
7582 rhs = initialize_reference (type, rhs, /*decl=*/NULL_TREE,
7583 /*cleanup=*/NULL, complain);
7584 if (fndecl)
7585 {
7586 if (warningcount > savew)
7587 warning (0, "in passing argument %P of %q+D", parmnum, fndecl);
7588 else if (errorcount > savee)
7589 error ("in passing argument %P of %q+D", parmnum, fndecl);
7590 }
7591 return rhs;
7592 }
7593
7594 if (exp != 0)
7595 exp = require_complete_type (exp);
7596 if (exp == error_mark_node)
7597 return error_mark_node;
7598
7599 rhstype = non_reference (rhstype);
7600
7601 type = complete_type (type);
7602
7603 if (DIRECT_INIT_EXPR_P (type, rhs))
7604 /* Don't try to do copy-initialization if we already have
7605 direct-initialization. */
7606 return rhs;
7607
7608 if (MAYBE_CLASS_TYPE_P (type))
7609 return ocp_convert (type, rhs, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
7610
7611 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
7612 complain, flags);
7613 }
7614 \f
7615 /* If RETVAL is the address of, or a reference to, a local variable or
7616 temporary give an appropriate warning. */
7617
7618 static void
7619 maybe_warn_about_returning_address_of_local (tree retval)
7620 {
7621 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
7622 tree whats_returned = retval;
7623
7624 for (;;)
7625 {
7626 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
7627 whats_returned = TREE_OPERAND (whats_returned, 1);
7628 else if (CONVERT_EXPR_P (whats_returned)
7629 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
7630 whats_returned = TREE_OPERAND (whats_returned, 0);
7631 else
7632 break;
7633 }
7634
7635 if (TREE_CODE (whats_returned) != ADDR_EXPR)
7636 return;
7637 whats_returned = TREE_OPERAND (whats_returned, 0);
7638
7639 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7640 {
7641 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
7642 || TREE_CODE (whats_returned) == TARGET_EXPR)
7643 {
7644 warning (0, "returning reference to temporary");
7645 return;
7646 }
7647 if (TREE_CODE (whats_returned) == VAR_DECL
7648 && DECL_NAME (whats_returned)
7649 && TEMP_NAME_P (DECL_NAME (whats_returned)))
7650 {
7651 warning (0, "reference to non-lvalue returned");
7652 return;
7653 }
7654 }
7655
7656 while (TREE_CODE (whats_returned) == COMPONENT_REF
7657 || TREE_CODE (whats_returned) == ARRAY_REF)
7658 whats_returned = TREE_OPERAND (whats_returned, 0);
7659
7660 if (DECL_P (whats_returned)
7661 && DECL_NAME (whats_returned)
7662 && DECL_FUNCTION_SCOPE_P (whats_returned)
7663 && !(TREE_STATIC (whats_returned)
7664 || TREE_PUBLIC (whats_returned)))
7665 {
7666 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7667 warning (0, "reference to local variable %q+D returned",
7668 whats_returned);
7669 else
7670 warning (0, "address of local variable %q+D returned",
7671 whats_returned);
7672 return;
7673 }
7674 }
7675
7676 /* Check that returning RETVAL from the current function is valid.
7677 Return an expression explicitly showing all conversions required to
7678 change RETVAL into the function return type, and to assign it to
7679 the DECL_RESULT for the function. Set *NO_WARNING to true if
7680 code reaches end of non-void function warning shouldn't be issued
7681 on this RETURN_EXPR. */
7682
7683 tree
7684 check_return_expr (tree retval, bool *no_warning)
7685 {
7686 tree result;
7687 /* The type actually returned by the function, after any
7688 promotions. */
7689 tree valtype;
7690 int fn_returns_value_p;
7691 bool named_return_value_okay_p;
7692
7693 *no_warning = false;
7694
7695 /* A `volatile' function is one that isn't supposed to return, ever.
7696 (This is a G++ extension, used to get better code for functions
7697 that call the `volatile' function.) */
7698 if (TREE_THIS_VOLATILE (current_function_decl))
7699 warning (0, "function declared %<noreturn%> has a %<return%> statement");
7700
7701 /* Check for various simple errors. */
7702 if (DECL_DESTRUCTOR_P (current_function_decl))
7703 {
7704 if (retval)
7705 error ("returning a value from a destructor");
7706 return NULL_TREE;
7707 }
7708 else if (DECL_CONSTRUCTOR_P (current_function_decl))
7709 {
7710 if (in_function_try_handler)
7711 /* If a return statement appears in a handler of the
7712 function-try-block of a constructor, the program is ill-formed. */
7713 error ("cannot return from a handler of a function-try-block of a constructor");
7714 else if (retval)
7715 /* You can't return a value from a constructor. */
7716 error ("returning a value from a constructor");
7717 return NULL_TREE;
7718 }
7719
7720 /* As an extension, deduce lambda return type from a return statement
7721 anywhere in the body. */
7722 if (retval && LAMBDA_FUNCTION_P (current_function_decl))
7723 {
7724 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7725 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda))
7726 {
7727 tree type = lambda_return_type (retval);
7728 tree oldtype = LAMBDA_EXPR_RETURN_TYPE (lambda);
7729
7730 if (VOID_TYPE_P (type))
7731 { /* Nothing. */ }
7732 else if (oldtype == NULL_TREE)
7733 {
7734 pedwarn (input_location, OPT_pedantic, "lambda return type "
7735 "can only be deduced when the return statement is "
7736 "the only statement in the function body");
7737 apply_lambda_return_type (lambda, type);
7738 }
7739 else if (!same_type_p (type, oldtype))
7740 error ("inconsistent types %qT and %qT deduced for "
7741 "lambda return type", type, oldtype);
7742 }
7743 }
7744
7745 if (processing_template_decl)
7746 {
7747 current_function_returns_value = 1;
7748 if (check_for_bare_parameter_packs (retval))
7749 retval = error_mark_node;
7750 return retval;
7751 }
7752
7753 /* When no explicit return-value is given in a function with a named
7754 return value, the named return value is used. */
7755 result = DECL_RESULT (current_function_decl);
7756 valtype = TREE_TYPE (result);
7757 gcc_assert (valtype != NULL_TREE);
7758 fn_returns_value_p = !VOID_TYPE_P (valtype);
7759 if (!retval && DECL_NAME (result) && fn_returns_value_p)
7760 retval = result;
7761
7762 /* Check for a return statement with no return value in a function
7763 that's supposed to return a value. */
7764 if (!retval && fn_returns_value_p)
7765 {
7766 permerror (input_location, "return-statement with no value, in function returning %qT",
7767 valtype);
7768 /* Clear this, so finish_function won't say that we reach the
7769 end of a non-void function (which we don't, we gave a
7770 return!). */
7771 current_function_returns_null = 0;
7772 /* And signal caller that TREE_NO_WARNING should be set on the
7773 RETURN_EXPR to avoid control reaches end of non-void function
7774 warnings in tree-cfg.c. */
7775 *no_warning = true;
7776 }
7777 /* Check for a return statement with a value in a function that
7778 isn't supposed to return a value. */
7779 else if (retval && !fn_returns_value_p)
7780 {
7781 if (VOID_TYPE_P (TREE_TYPE (retval)))
7782 /* You can return a `void' value from a function of `void'
7783 type. In that case, we have to evaluate the expression for
7784 its side-effects. */
7785 finish_expr_stmt (retval);
7786 else
7787 permerror (input_location, "return-statement with a value, in function "
7788 "returning 'void'");
7789 current_function_returns_null = 1;
7790
7791 /* There's really no value to return, after all. */
7792 return NULL_TREE;
7793 }
7794 else if (!retval)
7795 /* Remember that this function can sometimes return without a
7796 value. */
7797 current_function_returns_null = 1;
7798 else
7799 /* Remember that this function did return a value. */
7800 current_function_returns_value = 1;
7801
7802 /* Check for erroneous operands -- but after giving ourselves a
7803 chance to provide an error about returning a value from a void
7804 function. */
7805 if (error_operand_p (retval))
7806 {
7807 current_function_return_value = error_mark_node;
7808 return error_mark_node;
7809 }
7810
7811 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
7812 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
7813 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
7814 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
7815 && ! flag_check_new
7816 && retval && null_ptr_cst_p (retval))
7817 warning (0, "%<operator new%> must not return NULL unless it is "
7818 "declared %<throw()%> (or -fcheck-new is in effect)");
7819
7820 /* Effective C++ rule 15. See also start_function. */
7821 if (warn_ecpp
7822 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
7823 {
7824 bool warn = true;
7825
7826 /* The function return type must be a reference to the current
7827 class. */
7828 if (TREE_CODE (valtype) == REFERENCE_TYPE
7829 && same_type_ignoring_top_level_qualifiers_p
7830 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
7831 {
7832 /* Returning '*this' is obviously OK. */
7833 if (retval == current_class_ref)
7834 warn = false;
7835 /* If we are calling a function whose return type is the same of
7836 the current class reference, it is ok. */
7837 else if (TREE_CODE (retval) == INDIRECT_REF
7838 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
7839 warn = false;
7840 }
7841
7842 if (warn)
7843 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
7844 }
7845
7846 /* The fabled Named Return Value optimization, as per [class.copy]/15:
7847
7848 [...] For a function with a class return type, if the expression
7849 in the return statement is the name of a local object, and the cv-
7850 unqualified type of the local object is the same as the function
7851 return type, an implementation is permitted to omit creating the tem-
7852 porary object to hold the function return value [...]
7853
7854 So, if this is a value-returning function that always returns the same
7855 local variable, remember it.
7856
7857 It might be nice to be more flexible, and choose the first suitable
7858 variable even if the function sometimes returns something else, but
7859 then we run the risk of clobbering the variable we chose if the other
7860 returned expression uses the chosen variable somehow. And people expect
7861 this restriction, anyway. (jason 2000-11-19)
7862
7863 See finish_function and finalize_nrv for the rest of this optimization. */
7864
7865 named_return_value_okay_p =
7866 (retval != NULL_TREE
7867 /* Must be a local, automatic variable. */
7868 && TREE_CODE (retval) == VAR_DECL
7869 && DECL_CONTEXT (retval) == current_function_decl
7870 && ! TREE_STATIC (retval)
7871 && ! DECL_ANON_UNION_VAR_P (retval)
7872 && (DECL_ALIGN (retval)
7873 >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
7874 /* The cv-unqualified type of the returned value must be the
7875 same as the cv-unqualified return type of the
7876 function. */
7877 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7878 (TYPE_MAIN_VARIANT
7879 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7880 /* And the returned value must be non-volatile. */
7881 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
7882
7883 if (fn_returns_value_p && flag_elide_constructors)
7884 {
7885 if (named_return_value_okay_p
7886 && (current_function_return_value == NULL_TREE
7887 || current_function_return_value == retval))
7888 current_function_return_value = retval;
7889 else
7890 current_function_return_value = error_mark_node;
7891 }
7892
7893 /* We don't need to do any conversions when there's nothing being
7894 returned. */
7895 if (!retval)
7896 return NULL_TREE;
7897
7898 /* Do any required conversions. */
7899 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
7900 /* No conversions are required. */
7901 ;
7902 else
7903 {
7904 /* The type the function is declared to return. */
7905 tree functype = TREE_TYPE (TREE_TYPE (current_function_decl));
7906 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
7907
7908 /* The functype's return type will have been set to void, if it
7909 was an incomplete type. Just treat this as 'return;' */
7910 if (VOID_TYPE_P (functype))
7911 return error_mark_node;
7912
7913 /* Under C++0x [12.8/16 class.copy], a returned lvalue is sometimes
7914 treated as an rvalue for the purposes of overload resolution to
7915 favor move constructors over copy constructors. */
7916 if ((cxx_dialect != cxx98)
7917 && named_return_value_okay_p
7918 /* The variable must not have the `volatile' qualifier. */
7919 && !CP_TYPE_VOLATILE_P (TREE_TYPE (retval))
7920 /* The return type must be a class type. */
7921 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
7922 flags = flags | LOOKUP_PREFER_RVALUE;
7923
7924 /* First convert the value to the function's return type, then
7925 to the type of return value's location to handle the
7926 case that functype is smaller than the valtype. */
7927 retval = convert_for_initialization
7928 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
7929 tf_warning_or_error);
7930 retval = convert (valtype, retval);
7931
7932 /* If the conversion failed, treat this just like `return;'. */
7933 if (retval == error_mark_node)
7934 return retval;
7935 /* We can't initialize a register from a AGGR_INIT_EXPR. */
7936 else if (! cfun->returns_struct
7937 && TREE_CODE (retval) == TARGET_EXPR
7938 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
7939 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
7940 TREE_OPERAND (retval, 0));
7941 else
7942 maybe_warn_about_returning_address_of_local (retval);
7943 }
7944
7945 /* Actually copy the value returned into the appropriate location. */
7946 if (retval && retval != result)
7947 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
7948
7949 return retval;
7950 }
7951
7952 \f
7953 /* Returns nonzero if the pointer-type FROM can be converted to the
7954 pointer-type TO via a qualification conversion. If CONSTP is -1,
7955 then we return nonzero if the pointers are similar, and the
7956 cv-qualification signature of FROM is a proper subset of that of TO.
7957
7958 If CONSTP is positive, then all outer pointers have been
7959 const-qualified. */
7960
7961 static int
7962 comp_ptr_ttypes_real (tree to, tree from, int constp)
7963 {
7964 bool to_more_cv_qualified = false;
7965 bool is_opaque_pointer = false;
7966
7967 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7968 {
7969 if (TREE_CODE (to) != TREE_CODE (from))
7970 return 0;
7971
7972 if (TREE_CODE (from) == OFFSET_TYPE
7973 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
7974 TYPE_OFFSET_BASETYPE (to)))
7975 return 0;
7976
7977 /* Const and volatile mean something different for function types,
7978 so the usual checks are not appropriate. */
7979 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7980 {
7981 /* In Objective-C++, some types may have been 'volatilized' by
7982 the compiler for EH; when comparing them here, the volatile
7983 qualification must be ignored. */
7984 bool objc_quals_match = objc_type_quals_match (to, from);
7985
7986 if (!at_least_as_qualified_p (to, from) && !objc_quals_match)
7987 return 0;
7988
7989 if (!at_least_as_qualified_p (from, to) && !objc_quals_match)
7990 {
7991 if (constp == 0)
7992 return 0;
7993 to_more_cv_qualified = true;
7994 }
7995
7996 if (constp > 0)
7997 constp &= TYPE_READONLY (to);
7998 }
7999
8000 if (TREE_CODE (to) == VECTOR_TYPE)
8001 is_opaque_pointer = vector_targets_convertible_p (to, from);
8002
8003 if (TREE_CODE (to) != POINTER_TYPE && !TYPE_PTRMEM_P (to))
8004 return ((constp >= 0 || to_more_cv_qualified)
8005 && (is_opaque_pointer
8006 || same_type_ignoring_top_level_qualifiers_p (to, from)));
8007 }
8008 }
8009
8010 /* When comparing, say, char ** to char const **, this function takes
8011 the 'char *' and 'char const *'. Do not pass non-pointer/reference
8012 types to this function. */
8013
8014 int
8015 comp_ptr_ttypes (tree to, tree from)
8016 {
8017 return comp_ptr_ttypes_real (to, from, 1);
8018 }
8019
8020 /* Returns true iff FNTYPE is a non-class type that involves
8021 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
8022 if a parameter type is ill-formed. */
8023
8024 bool
8025 error_type_p (const_tree type)
8026 {
8027 tree t;
8028
8029 switch (TREE_CODE (type))
8030 {
8031 case ERROR_MARK:
8032 return true;
8033
8034 case POINTER_TYPE:
8035 case REFERENCE_TYPE:
8036 case OFFSET_TYPE:
8037 return error_type_p (TREE_TYPE (type));
8038
8039 case FUNCTION_TYPE:
8040 case METHOD_TYPE:
8041 if (error_type_p (TREE_TYPE (type)))
8042 return true;
8043 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
8044 if (error_type_p (TREE_VALUE (t)))
8045 return true;
8046 return false;
8047
8048 case RECORD_TYPE:
8049 if (TYPE_PTRMEMFUNC_P (type))
8050 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
8051 return false;
8052
8053 default:
8054 return false;
8055 }
8056 }
8057
8058 /* Returns 1 if to and from are (possibly multi-level) pointers to the same
8059 type or inheritance-related types, regardless of cv-quals. */
8060
8061 int
8062 ptr_reasonably_similar (const_tree to, const_tree from)
8063 {
8064 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8065 {
8066 /* Any target type is similar enough to void. */
8067 if (TREE_CODE (to) == VOID_TYPE)
8068 return !error_type_p (from);
8069 if (TREE_CODE (from) == VOID_TYPE)
8070 return !error_type_p (to);
8071
8072 if (TREE_CODE (to) != TREE_CODE (from))
8073 return 0;
8074
8075 if (TREE_CODE (from) == OFFSET_TYPE
8076 && comptypes (TYPE_OFFSET_BASETYPE (to),
8077 TYPE_OFFSET_BASETYPE (from),
8078 COMPARE_BASE | COMPARE_DERIVED))
8079 continue;
8080
8081 if (TREE_CODE (to) == VECTOR_TYPE
8082 && vector_types_convertible_p (to, from, false))
8083 return 1;
8084
8085 if (TREE_CODE (to) == INTEGER_TYPE
8086 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
8087 return 1;
8088
8089 if (TREE_CODE (to) == FUNCTION_TYPE)
8090 return !error_type_p (to) && !error_type_p (from);
8091
8092 if (TREE_CODE (to) != POINTER_TYPE)
8093 return comptypes
8094 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
8095 COMPARE_BASE | COMPARE_DERIVED);
8096 }
8097 }
8098
8099 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
8100 pointer-to-member types) are the same, ignoring cv-qualification at
8101 all levels. */
8102
8103 bool
8104 comp_ptr_ttypes_const (tree to, tree from)
8105 {
8106 bool is_opaque_pointer = false;
8107
8108 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8109 {
8110 if (TREE_CODE (to) != TREE_CODE (from))
8111 return false;
8112
8113 if (TREE_CODE (from) == OFFSET_TYPE
8114 && same_type_p (TYPE_OFFSET_BASETYPE (from),
8115 TYPE_OFFSET_BASETYPE (to)))
8116 continue;
8117
8118 if (TREE_CODE (to) == VECTOR_TYPE)
8119 is_opaque_pointer = vector_targets_convertible_p (to, from);
8120
8121 if (TREE_CODE (to) != POINTER_TYPE)
8122 return (is_opaque_pointer
8123 || same_type_ignoring_top_level_qualifiers_p (to, from));
8124 }
8125 }
8126
8127 /* Returns the type qualifiers for this type, including the qualifiers on the
8128 elements for an array type. */
8129
8130 int
8131 cp_type_quals (const_tree type)
8132 {
8133 int quals;
8134 /* This CONST_CAST is okay because strip_array_types returns its
8135 argument unmodified and we assign it to a const_tree. */
8136 type = strip_array_types (CONST_CAST_TREE (type));
8137 if (type == error_mark_node
8138 /* Quals on a FUNCTION_TYPE are memfn quals. */
8139 || TREE_CODE (type) == FUNCTION_TYPE)
8140 return TYPE_UNQUALIFIED;
8141 quals = TYPE_QUALS (type);
8142 /* METHOD and REFERENCE_TYPEs should never have quals. */
8143 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
8144 && TREE_CODE (type) != REFERENCE_TYPE)
8145 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
8146 == TYPE_UNQUALIFIED));
8147 return quals;
8148 }
8149
8150 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
8151 METHOD_TYPE. */
8152
8153 int
8154 type_memfn_quals (const_tree type)
8155 {
8156 if (TREE_CODE (type) == FUNCTION_TYPE)
8157 return TYPE_QUALS (type);
8158 else if (TREE_CODE (type) == METHOD_TYPE)
8159 return cp_type_quals (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))));
8160 else
8161 gcc_unreachable ();
8162 }
8163
8164 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
8165 MEMFN_QUALS. */
8166
8167 tree
8168 apply_memfn_quals (tree type, cp_cv_quals memfn_quals)
8169 {
8170 /* Could handle METHOD_TYPE here if necessary. */
8171 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8172 if (TYPE_QUALS (type) == memfn_quals)
8173 return type;
8174 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
8175 complex. */
8176 return build_qualified_type (type, memfn_quals);
8177 }
8178
8179 /* Returns nonzero if TYPE is const or volatile. */
8180
8181 bool
8182 cv_qualified_p (const_tree type)
8183 {
8184 int quals = cp_type_quals (type);
8185 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
8186 }
8187
8188 /* Returns nonzero if the TYPE contains a mutable member. */
8189
8190 bool
8191 cp_has_mutable_p (const_tree type)
8192 {
8193 /* This CONST_CAST is okay because strip_array_types returns its
8194 argument unmodified and we assign it to a const_tree. */
8195 type = strip_array_types (CONST_CAST_TREE(type));
8196
8197 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
8198 }
8199
8200 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
8201 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
8202 approximation. In particular, consider:
8203
8204 int f();
8205 struct S { int i; };
8206 const S s = { f(); }
8207
8208 Here, we will make "s" as TREE_READONLY (because it is declared
8209 "const") -- only to reverse ourselves upon seeing that the
8210 initializer is non-constant. */
8211
8212 void
8213 cp_apply_type_quals_to_decl (int type_quals, tree decl)
8214 {
8215 tree type = TREE_TYPE (decl);
8216
8217 if (type == error_mark_node)
8218 return;
8219
8220 if (TREE_CODE (decl) == TYPE_DECL)
8221 return;
8222
8223 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
8224 && type_quals != TYPE_UNQUALIFIED));
8225
8226 /* Avoid setting TREE_READONLY incorrectly. */
8227 if (/* If the object has a constructor, the constructor may modify
8228 the object. */
8229 TYPE_NEEDS_CONSTRUCTING (type)
8230 /* If the type isn't complete, we don't know yet if it will need
8231 constructing. */
8232 || !COMPLETE_TYPE_P (type)
8233 /* If the type has a mutable component, that component might be
8234 modified. */
8235 || TYPE_HAS_MUTABLE_P (type))
8236 type_quals &= ~TYPE_QUAL_CONST;
8237
8238 c_apply_type_quals_to_decl (type_quals, decl);
8239 }
8240
8241 /* Subroutine of casts_away_constness. Make T1 and T2 point at
8242 exemplar types such that casting T1 to T2 is casting away constness
8243 if and only if there is no implicit conversion from T1 to T2. */
8244
8245 static void
8246 casts_away_constness_r (tree *t1, tree *t2)
8247 {
8248 int quals1;
8249 int quals2;
8250
8251 /* [expr.const.cast]
8252
8253 For multi-level pointer to members and multi-level mixed pointers
8254 and pointers to members (conv.qual), the "member" aspect of a
8255 pointer to member level is ignored when determining if a const
8256 cv-qualifier has been cast away. */
8257 /* [expr.const.cast]
8258
8259 For two pointer types:
8260
8261 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
8262 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
8263 K is min(N,M)
8264
8265 casting from X1 to X2 casts away constness if, for a non-pointer
8266 type T there does not exist an implicit conversion (clause
8267 _conv_) from:
8268
8269 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
8270
8271 to
8272
8273 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
8274 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRMEM_P (*t1))
8275 || (!TYPE_PTR_P (*t2) && !TYPE_PTRMEM_P (*t2)))
8276 {
8277 *t1 = cp_build_qualified_type (void_type_node,
8278 cp_type_quals (*t1));
8279 *t2 = cp_build_qualified_type (void_type_node,
8280 cp_type_quals (*t2));
8281 return;
8282 }
8283
8284 quals1 = cp_type_quals (*t1);
8285 quals2 = cp_type_quals (*t2);
8286
8287 if (TYPE_PTRMEM_P (*t1))
8288 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
8289 else
8290 *t1 = TREE_TYPE (*t1);
8291 if (TYPE_PTRMEM_P (*t2))
8292 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
8293 else
8294 *t2 = TREE_TYPE (*t2);
8295
8296 casts_away_constness_r (t1, t2);
8297 *t1 = build_pointer_type (*t1);
8298 *t2 = build_pointer_type (*t2);
8299 *t1 = cp_build_qualified_type (*t1, quals1);
8300 *t2 = cp_build_qualified_type (*t2, quals2);
8301 }
8302
8303 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
8304 constness.
8305
8306 ??? This function returns non-zero if casting away qualifiers not
8307 just const. We would like to return to the caller exactly which
8308 qualifiers are casted away to give more accurate diagnostics.
8309 */
8310
8311 static bool
8312 casts_away_constness (tree t1, tree t2)
8313 {
8314 if (TREE_CODE (t2) == REFERENCE_TYPE)
8315 {
8316 /* [expr.const.cast]
8317
8318 Casting from an lvalue of type T1 to an lvalue of type T2
8319 using a reference cast casts away constness if a cast from an
8320 rvalue of type "pointer to T1" to the type "pointer to T2"
8321 casts away constness. */
8322 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
8323 return casts_away_constness (build_pointer_type (t1),
8324 build_pointer_type (TREE_TYPE (t2)));
8325 }
8326
8327 if (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
8328 /* [expr.const.cast]
8329
8330 Casting from an rvalue of type "pointer to data member of X
8331 of type T1" to the type "pointer to data member of Y of type
8332 T2" casts away constness if a cast from an rvalue of type
8333 "pointer to T1" to the type "pointer to T2" casts away
8334 constness. */
8335 return casts_away_constness
8336 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
8337 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)));
8338
8339 /* Casting away constness is only something that makes sense for
8340 pointer or reference types. */
8341 if (TREE_CODE (t1) != POINTER_TYPE
8342 || TREE_CODE (t2) != POINTER_TYPE)
8343 return false;
8344
8345 /* Top-level qualifiers don't matter. */
8346 t1 = TYPE_MAIN_VARIANT (t1);
8347 t2 = TYPE_MAIN_VARIANT (t2);
8348 casts_away_constness_r (&t1, &t2);
8349 if (!can_convert (t2, t1))
8350 return true;
8351
8352 return false;
8353 }
8354
8355 /* If T is a REFERENCE_TYPE return the type to which T refers.
8356 Otherwise, return T itself. */
8357
8358 tree
8359 non_reference (tree t)
8360 {
8361 if (TREE_CODE (t) == REFERENCE_TYPE)
8362 t = TREE_TYPE (t);
8363 return t;
8364 }
8365
8366
8367 /* Return nonzero if REF is an lvalue valid for this language;
8368 otherwise, print an error message and return zero. USE says
8369 how the lvalue is being used and so selects the error message. */
8370
8371 int
8372 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
8373 {
8374 cp_lvalue_kind kind = lvalue_kind (ref);
8375
8376 if (kind == clk_none)
8377 {
8378 if (complain & tf_error)
8379 lvalue_error (use);
8380 return 0;
8381 }
8382 else if (kind & (clk_rvalueref|clk_class))
8383 {
8384 if (!(complain & tf_error))
8385 return 0;
8386 if (kind & clk_class)
8387 /* Make this a permerror because we used to accept it. */
8388 permerror (input_location, "using temporary as lvalue");
8389 else
8390 error ("using xvalue (rvalue reference) as lvalue");
8391 }
8392 return 1;
8393 }
8394