Require lvalues as specified by the standard.
[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 bool win = strict_lvalue ? real_lvalue_p (arg) : lvalue_p (arg);
4882 if (!win)
4883 {
4884 if (complain & tf_error)
4885 lvalue_error (lv_addressof);
4886 return error_mark_node;
4887 }
4888 }
4889
4890 if (TREE_CODE (argtype) == REFERENCE_TYPE)
4891 {
4892 tree type = build_pointer_type (TREE_TYPE (argtype));
4893 arg = build1 (CONVERT_EXPR, type, arg);
4894 return arg;
4895 }
4896 else if (pedantic && DECL_MAIN_P (arg))
4897 {
4898 /* ARM $3.4 */
4899 /* Apparently a lot of autoconf scripts for C++ packages do this,
4900 so only complain if -pedantic. */
4901 if (complain & (flag_pedantic_errors ? tf_error : tf_warning))
4902 pedwarn (input_location, OPT_pedantic,
4903 "ISO C++ forbids taking address of function %<::main%>");
4904 else if (flag_pedantic_errors)
4905 return error_mark_node;
4906 }
4907
4908 /* Let &* cancel out to simplify resulting code. */
4909 if (TREE_CODE (arg) == INDIRECT_REF)
4910 {
4911 /* We don't need to have `current_class_ptr' wrapped in a
4912 NON_LVALUE_EXPR node. */
4913 if (arg == current_class_ref)
4914 return current_class_ptr;
4915
4916 arg = TREE_OPERAND (arg, 0);
4917 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
4918 {
4919 tree type = build_pointer_type (TREE_TYPE (TREE_TYPE (arg)));
4920 arg = build1 (CONVERT_EXPR, type, arg);
4921 }
4922 else
4923 /* Don't let this be an lvalue. */
4924 arg = rvalue (arg);
4925 return arg;
4926 }
4927
4928 /* ??? Cope with user tricks that amount to offsetof. */
4929 if (TREE_CODE (argtype) != FUNCTION_TYPE
4930 && TREE_CODE (argtype) != METHOD_TYPE
4931 && argtype != unknown_type_node
4932 && (val = get_base_address (arg))
4933 && TREE_CODE (val) == INDIRECT_REF
4934 && TREE_CONSTANT (TREE_OPERAND (val, 0)))
4935 {
4936 tree type = build_pointer_type (argtype);
4937 tree op0 = fold_convert (type, TREE_OPERAND (val, 0));
4938 tree op1 = fold_convert (sizetype, fold_offsetof (arg, val));
4939 return fold_build2 (POINTER_PLUS_EXPR, type, op0, op1);
4940 }
4941
4942 /* Handle complex lvalues (when permitted)
4943 by reduction to simpler cases. */
4944 val = unary_complex_lvalue (ADDR_EXPR, arg);
4945 if (val != 0)
4946 return val;
4947
4948 switch (TREE_CODE (arg))
4949 {
4950 CASE_CONVERT:
4951 case FLOAT_EXPR:
4952 case FIX_TRUNC_EXPR:
4953 /* Even if we're not being pedantic, we cannot allow this
4954 extension when we're instantiating in a SFINAE
4955 context. */
4956 if (! lvalue_p (arg) && complain == tf_none)
4957 {
4958 if (complain & tf_error)
4959 permerror (input_location, "ISO C++ forbids taking the address of a cast to a non-lvalue expression");
4960 else
4961 return error_mark_node;
4962 }
4963 break;
4964
4965 case BASELINK:
4966 arg = BASELINK_FUNCTIONS (arg);
4967 /* Fall through. */
4968
4969 case OVERLOAD:
4970 arg = OVL_CURRENT (arg);
4971 break;
4972
4973 case OFFSET_REF:
4974 offset_ref:
4975 /* Turn a reference to a non-static data member into a
4976 pointer-to-member. */
4977 {
4978 tree type;
4979 tree t;
4980
4981 gcc_assert (PTRMEM_OK_P (arg));
4982
4983 t = TREE_OPERAND (arg, 1);
4984 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4985 {
4986 if (complain & tf_error)
4987 error ("cannot create pointer to reference member %qD", t);
4988 return error_mark_node;
4989 }
4990
4991 type = build_ptrmem_type (context_for_name_lookup (t),
4992 TREE_TYPE (t));
4993 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
4994 return t;
4995 }
4996
4997 default:
4998 break;
4999 }
5000
5001 if (argtype != error_mark_node)
5002 argtype = build_pointer_type (argtype);
5003
5004 /* In a template, we are processing a non-dependent expression
5005 so we can just form an ADDR_EXPR with the correct type. */
5006 if (processing_template_decl || TREE_CODE (arg) != COMPONENT_REF)
5007 {
5008 val = build_address (arg);
5009 if (TREE_CODE (arg) == OFFSET_REF)
5010 PTRMEM_OK_P (val) = PTRMEM_OK_P (arg);
5011 }
5012 else if (TREE_CODE (TREE_OPERAND (arg, 1)) == BASELINK)
5013 {
5014 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
5015
5016 /* We can only get here with a single static member
5017 function. */
5018 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
5019 && DECL_STATIC_FUNCTION_P (fn));
5020 mark_used (fn);
5021 val = build_address (fn);
5022 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
5023 /* Do not lose object's side effects. */
5024 val = build2 (COMPOUND_EXPR, TREE_TYPE (val),
5025 TREE_OPERAND (arg, 0), val);
5026 }
5027 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
5028 {
5029 if (complain & tf_error)
5030 error ("attempt to take address of bit-field structure member %qD",
5031 TREE_OPERAND (arg, 1));
5032 return error_mark_node;
5033 }
5034 else
5035 {
5036 tree object = TREE_OPERAND (arg, 0);
5037 tree field = TREE_OPERAND (arg, 1);
5038 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5039 (TREE_TYPE (object), decl_type_context (field)));
5040 val = build_address (arg);
5041 }
5042
5043 if (TREE_CODE (argtype) == POINTER_TYPE
5044 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
5045 {
5046 build_ptrmemfunc_type (argtype);
5047 val = build_ptrmemfunc (argtype, val, 0,
5048 /*c_cast_p=*/false,
5049 tf_warning_or_error);
5050 }
5051
5052 return val;
5053 }
5054
5055 /* Take the address of ARG if it has one, even if it's an rvalue. */
5056
5057 tree
5058 cp_build_addr_expr (tree arg, tsubst_flags_t complain)
5059 {
5060 return cp_build_addr_expr_1 (arg, 0, complain);
5061 }
5062
5063 /* Take the address of ARG, but only if it's an lvalue. */
5064
5065 tree
5066 cp_build_addr_expr_strict (tree arg, tsubst_flags_t complain)
5067 {
5068 return cp_build_addr_expr_1 (arg, 1, complain);
5069 }
5070
5071 /* C++: Must handle pointers to members.
5072
5073 Perhaps type instantiation should be extended to handle conversion
5074 from aggregates to types we don't yet know we want? (Or are those
5075 cases typically errors which should be reported?)
5076
5077 NOCONVERT nonzero suppresses the default promotions
5078 (such as from short to int). */
5079
5080 tree
5081 cp_build_unary_op (enum tree_code code, tree xarg, int noconvert,
5082 tsubst_flags_t complain)
5083 {
5084 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
5085 tree arg = xarg;
5086 tree argtype = 0;
5087 const char *errstring = NULL;
5088 tree val;
5089 const char *invalid_op_diag;
5090
5091 if (!arg || error_operand_p (arg))
5092 return error_mark_node;
5093
5094 if ((invalid_op_diag
5095 = targetm.invalid_unary_op ((code == UNARY_PLUS_EXPR
5096 ? CONVERT_EXPR
5097 : code),
5098 TREE_TYPE (xarg))))
5099 {
5100 error (invalid_op_diag);
5101 return error_mark_node;
5102 }
5103
5104 switch (code)
5105 {
5106 case UNARY_PLUS_EXPR:
5107 case NEGATE_EXPR:
5108 {
5109 int flags = WANT_ARITH | WANT_ENUM;
5110 /* Unary plus (but not unary minus) is allowed on pointers. */
5111 if (code == UNARY_PLUS_EXPR)
5112 flags |= WANT_POINTER;
5113 arg = build_expr_type_conversion (flags, arg, true);
5114 if (!arg)
5115 errstring = (code == NEGATE_EXPR
5116 ? _("wrong type argument to unary minus")
5117 : _("wrong type argument to unary plus"));
5118 else
5119 {
5120 if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5121 arg = perform_integral_promotions (arg);
5122
5123 /* Make sure the result is not an lvalue: a unary plus or minus
5124 expression is always a rvalue. */
5125 arg = rvalue (arg);
5126 }
5127 }
5128 break;
5129
5130 case BIT_NOT_EXPR:
5131 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5132 {
5133 code = CONJ_EXPR;
5134 if (!noconvert)
5135 arg = default_conversion (arg);
5136 }
5137 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM
5138 | WANT_VECTOR_OR_COMPLEX,
5139 arg, true)))
5140 errstring = _("wrong type argument to bit-complement");
5141 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
5142 arg = perform_integral_promotions (arg);
5143 break;
5144
5145 case ABS_EXPR:
5146 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5147 errstring = _("wrong type argument to abs");
5148 else if (!noconvert)
5149 arg = default_conversion (arg);
5150 break;
5151
5152 case CONJ_EXPR:
5153 /* Conjugating a real value is a no-op, but allow it anyway. */
5154 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
5155 errstring = _("wrong type argument to conjugation");
5156 else if (!noconvert)
5157 arg = default_conversion (arg);
5158 break;
5159
5160 case TRUTH_NOT_EXPR:
5161 arg = perform_implicit_conversion (boolean_type_node, arg,
5162 complain);
5163 val = invert_truthvalue_loc (input_location, arg);
5164 if (arg != error_mark_node)
5165 return val;
5166 errstring = _("in argument to unary !");
5167 break;
5168
5169 case NOP_EXPR:
5170 break;
5171
5172 case REALPART_EXPR:
5173 if (TREE_CODE (arg) == COMPLEX_CST)
5174 return TREE_REALPART (arg);
5175 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5176 {
5177 arg = build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
5178 return fold_if_not_in_template (arg);
5179 }
5180 else
5181 return arg;
5182
5183 case IMAGPART_EXPR:
5184 if (TREE_CODE (arg) == COMPLEX_CST)
5185 return TREE_IMAGPART (arg);
5186 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5187 {
5188 arg = build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg);
5189 return fold_if_not_in_template (arg);
5190 }
5191 else
5192 return cp_convert (TREE_TYPE (arg), integer_zero_node);
5193
5194 case PREINCREMENT_EXPR:
5195 case POSTINCREMENT_EXPR:
5196 case PREDECREMENT_EXPR:
5197 case POSTDECREMENT_EXPR:
5198 /* Handle complex lvalues (when permitted)
5199 by reduction to simpler cases. */
5200
5201 val = unary_complex_lvalue (code, arg);
5202 if (val != 0)
5203 return val;
5204
5205 arg = mark_lvalue_use (arg);
5206
5207 /* Increment or decrement the real part of the value,
5208 and don't change the imaginary part. */
5209 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
5210 {
5211 tree real, imag;
5212
5213 arg = stabilize_reference (arg);
5214 real = cp_build_unary_op (REALPART_EXPR, arg, 1, complain);
5215 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain);
5216 real = cp_build_unary_op (code, real, 1, complain);
5217 if (real == error_mark_node || imag == error_mark_node)
5218 return error_mark_node;
5219 return build2 (COMPLEX_EXPR, TREE_TYPE (arg),
5220 real, imag);
5221 }
5222
5223 /* Report invalid types. */
5224
5225 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
5226 arg, true)))
5227 {
5228 if (code == PREINCREMENT_EXPR)
5229 errstring = _("no pre-increment operator for type");
5230 else if (code == POSTINCREMENT_EXPR)
5231 errstring = _("no post-increment operator for type");
5232 else if (code == PREDECREMENT_EXPR)
5233 errstring = _("no pre-decrement operator for type");
5234 else
5235 errstring = _("no post-decrement operator for type");
5236 break;
5237 }
5238 else if (arg == error_mark_node)
5239 return error_mark_node;
5240
5241 /* Report something read-only. */
5242
5243 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
5244 || TREE_READONLY (arg))
5245 {
5246 if (complain & tf_error)
5247 readonly_error (arg, ((code == PREINCREMENT_EXPR
5248 || code == POSTINCREMENT_EXPR)
5249 ? REK_INCREMENT : REK_DECREMENT));
5250 else
5251 return error_mark_node;
5252 }
5253
5254 {
5255 tree inc;
5256 tree declared_type = unlowered_expr_type (arg);
5257
5258 argtype = TREE_TYPE (arg);
5259
5260 /* ARM $5.2.5 last annotation says this should be forbidden. */
5261 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
5262 {
5263 if (complain & tf_error)
5264 permerror (input_location, (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
5265 ? G_("ISO C++ forbids incrementing an enum")
5266 : G_("ISO C++ forbids decrementing an enum"));
5267 else
5268 return error_mark_node;
5269 }
5270
5271 /* Compute the increment. */
5272
5273 if (TREE_CODE (argtype) == POINTER_TYPE)
5274 {
5275 tree type = complete_type (TREE_TYPE (argtype));
5276
5277 if (!COMPLETE_OR_VOID_TYPE_P (type))
5278 {
5279 if (complain & tf_error)
5280 error (((code == PREINCREMENT_EXPR
5281 || code == POSTINCREMENT_EXPR))
5282 ? G_("cannot increment a pointer to incomplete type %qT")
5283 : G_("cannot decrement a pointer to incomplete type %qT"),
5284 TREE_TYPE (argtype));
5285 else
5286 return error_mark_node;
5287 }
5288 else if ((pedantic || warn_pointer_arith)
5289 && !TYPE_PTROB_P (argtype))
5290 {
5291 if (complain & tf_error)
5292 permerror (input_location, (code == PREINCREMENT_EXPR
5293 || code == POSTINCREMENT_EXPR)
5294 ? G_("ISO C++ forbids incrementing a pointer of type %qT")
5295 : G_("ISO C++ forbids decrementing a pointer of type %qT"),
5296 argtype);
5297 else
5298 return error_mark_node;
5299 }
5300
5301 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
5302 }
5303 else
5304 inc = integer_one_node;
5305
5306 inc = cp_convert (argtype, inc);
5307
5308 /* Complain about anything else that is not a true lvalue. */
5309 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
5310 || code == POSTINCREMENT_EXPR)
5311 ? lv_increment : lv_decrement),
5312 complain))
5313 return error_mark_node;
5314
5315 /* Forbid using -- on `bool'. */
5316 if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
5317 {
5318 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
5319 {
5320 if (complain & tf_error)
5321 error ("invalid use of Boolean expression as operand "
5322 "to %<operator--%>");
5323 return error_mark_node;
5324 }
5325 val = boolean_increment (code, arg);
5326 }
5327 else
5328 val = build2 (code, TREE_TYPE (arg), arg, inc);
5329
5330 TREE_SIDE_EFFECTS (val) = 1;
5331 return val;
5332 }
5333
5334 case ADDR_EXPR:
5335 /* Note that this operation never does default_conversion
5336 regardless of NOCONVERT. */
5337 return cp_build_addr_expr (arg, complain);
5338
5339 default:
5340 break;
5341 }
5342
5343 if (!errstring)
5344 {
5345 if (argtype == 0)
5346 argtype = TREE_TYPE (arg);
5347 return fold_if_not_in_template (build1 (code, argtype, arg));
5348 }
5349
5350 if (complain & tf_error)
5351 error ("%s", errstring);
5352 return error_mark_node;
5353 }
5354
5355 /* Hook for the c-common bits that build a unary op. */
5356 tree
5357 build_unary_op (location_t location ATTRIBUTE_UNUSED,
5358 enum tree_code code, tree xarg, int noconvert)
5359 {
5360 return cp_build_unary_op (code, xarg, noconvert, tf_warning_or_error);
5361 }
5362
5363 /* Apply unary lvalue-demanding operator CODE to the expression ARG
5364 for certain kinds of expressions which are not really lvalues
5365 but which we can accept as lvalues.
5366
5367 If ARG is not a kind of expression we can handle, return
5368 NULL_TREE. */
5369
5370 tree
5371 unary_complex_lvalue (enum tree_code code, tree arg)
5372 {
5373 /* Inside a template, making these kinds of adjustments is
5374 pointless; we are only concerned with the type of the
5375 expression. */
5376 if (processing_template_decl)
5377 return NULL_TREE;
5378
5379 /* Handle (a, b) used as an "lvalue". */
5380 if (TREE_CODE (arg) == COMPOUND_EXPR)
5381 {
5382 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 1), 0,
5383 tf_warning_or_error);
5384 return build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5385 TREE_OPERAND (arg, 0), real_result);
5386 }
5387
5388 /* Handle (a ? b : c) used as an "lvalue". */
5389 if (TREE_CODE (arg) == COND_EXPR
5390 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
5391 return rationalize_conditional_expr (code, arg, tf_warning_or_error);
5392
5393 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
5394 if (TREE_CODE (arg) == MODIFY_EXPR
5395 || TREE_CODE (arg) == PREINCREMENT_EXPR
5396 || TREE_CODE (arg) == PREDECREMENT_EXPR)
5397 {
5398 tree lvalue = TREE_OPERAND (arg, 0);
5399 if (TREE_SIDE_EFFECTS (lvalue))
5400 {
5401 lvalue = stabilize_reference (lvalue);
5402 arg = build2 (TREE_CODE (arg), TREE_TYPE (arg),
5403 lvalue, TREE_OPERAND (arg, 1));
5404 }
5405 return unary_complex_lvalue
5406 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
5407 }
5408
5409 if (code != ADDR_EXPR)
5410 return NULL_TREE;
5411
5412 /* Handle (a = b) used as an "lvalue" for `&'. */
5413 if (TREE_CODE (arg) == MODIFY_EXPR
5414 || TREE_CODE (arg) == INIT_EXPR)
5415 {
5416 tree real_result = cp_build_unary_op (code, TREE_OPERAND (arg, 0), 0,
5417 tf_warning_or_error);
5418 arg = build2 (COMPOUND_EXPR, TREE_TYPE (real_result),
5419 arg, real_result);
5420 TREE_NO_WARNING (arg) = 1;
5421 return arg;
5422 }
5423
5424 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
5425 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
5426 || TREE_CODE (arg) == OFFSET_REF)
5427 return NULL_TREE;
5428
5429 /* We permit compiler to make function calls returning
5430 objects of aggregate type look like lvalues. */
5431 {
5432 tree targ = arg;
5433
5434 if (TREE_CODE (targ) == SAVE_EXPR)
5435 targ = TREE_OPERAND (targ, 0);
5436
5437 if (TREE_CODE (targ) == CALL_EXPR && MAYBE_CLASS_TYPE_P (TREE_TYPE (targ)))
5438 {
5439 if (TREE_CODE (arg) == SAVE_EXPR)
5440 targ = arg;
5441 else
5442 targ = build_cplus_new (TREE_TYPE (arg), arg);
5443 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
5444 }
5445
5446 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
5447 return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
5448 TREE_OPERAND (targ, 0), current_function_decl, NULL);
5449 }
5450
5451 /* Don't let anything else be handled specially. */
5452 return NULL_TREE;
5453 }
5454 \f
5455 /* Mark EXP saying that we need to be able to take the
5456 address of it; it should not be allocated in a register.
5457 Value is true if successful.
5458
5459 C++: we do not allow `current_class_ptr' to be addressable. */
5460
5461 bool
5462 cxx_mark_addressable (tree exp)
5463 {
5464 tree x = exp;
5465
5466 while (1)
5467 switch (TREE_CODE (x))
5468 {
5469 case ADDR_EXPR:
5470 case COMPONENT_REF:
5471 case ARRAY_REF:
5472 case REALPART_EXPR:
5473 case IMAGPART_EXPR:
5474 x = TREE_OPERAND (x, 0);
5475 break;
5476
5477 case PARM_DECL:
5478 if (x == current_class_ptr)
5479 {
5480 error ("cannot take the address of %<this%>, which is an rvalue expression");
5481 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later. */
5482 return true;
5483 }
5484 /* Fall through. */
5485
5486 case VAR_DECL:
5487 /* Caller should not be trying to mark initialized
5488 constant fields addressable. */
5489 gcc_assert (DECL_LANG_SPECIFIC (x) == 0
5490 || DECL_IN_AGGR_P (x) == 0
5491 || TREE_STATIC (x)
5492 || DECL_EXTERNAL (x));
5493 /* Fall through. */
5494
5495 case CONST_DECL:
5496 case RESULT_DECL:
5497 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
5498 && !DECL_ARTIFICIAL (x))
5499 {
5500 if (TREE_CODE (x) == VAR_DECL && DECL_HARD_REGISTER (x))
5501 {
5502 error
5503 ("address of explicit register variable %qD requested", x);
5504 return false;
5505 }
5506 else if (extra_warnings)
5507 warning
5508 (OPT_Wextra, "address requested for %qD, which is declared %<register%>", x);
5509 }
5510 TREE_ADDRESSABLE (x) = 1;
5511 return true;
5512
5513 case FUNCTION_DECL:
5514 TREE_ADDRESSABLE (x) = 1;
5515 return true;
5516
5517 case CONSTRUCTOR:
5518 TREE_ADDRESSABLE (x) = 1;
5519 return true;
5520
5521 case TARGET_EXPR:
5522 TREE_ADDRESSABLE (x) = 1;
5523 cxx_mark_addressable (TREE_OPERAND (x, 0));
5524 return true;
5525
5526 default:
5527 return true;
5528 }
5529 }
5530 \f
5531 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
5532
5533 tree
5534 build_x_conditional_expr (tree ifexp, tree op1, tree op2,
5535 tsubst_flags_t complain)
5536 {
5537 tree orig_ifexp = ifexp;
5538 tree orig_op1 = op1;
5539 tree orig_op2 = op2;
5540 tree expr;
5541
5542 if (processing_template_decl)
5543 {
5544 /* The standard says that the expression is type-dependent if
5545 IFEXP is type-dependent, even though the eventual type of the
5546 expression doesn't dependent on IFEXP. */
5547 if (type_dependent_expression_p (ifexp)
5548 /* As a GNU extension, the middle operand may be omitted. */
5549 || (op1 && type_dependent_expression_p (op1))
5550 || type_dependent_expression_p (op2))
5551 return build_min_nt (COND_EXPR, ifexp, op1, op2);
5552 ifexp = build_non_dependent_expr (ifexp);
5553 if (op1)
5554 op1 = build_non_dependent_expr (op1);
5555 op2 = build_non_dependent_expr (op2);
5556 }
5557
5558 expr = build_conditional_expr (ifexp, op1, op2, complain);
5559 if (processing_template_decl && expr != error_mark_node)
5560 return build_min_non_dep (COND_EXPR, expr,
5561 orig_ifexp, orig_op1, orig_op2);
5562 return expr;
5563 }
5564 \f
5565 /* Given a list of expressions, return a compound expression
5566 that performs them all and returns the value of the last of them. */
5567
5568 tree
5569 build_x_compound_expr_from_list (tree list, expr_list_kind exp,
5570 tsubst_flags_t complain)
5571 {
5572 tree expr = TREE_VALUE (list);
5573
5574 if (TREE_CHAIN (list))
5575 {
5576 if (complain & tf_error)
5577 switch (exp)
5578 {
5579 case ELK_INIT:
5580 permerror (input_location, "expression list treated as compound "
5581 "expression in initializer");
5582 break;
5583 case ELK_MEM_INIT:
5584 permerror (input_location, "expression list treated as compound "
5585 "expression in mem-initializer");
5586 break;
5587 case ELK_FUNC_CAST:
5588 permerror (input_location, "expression list treated as compound "
5589 "expression in functional cast");
5590 break;
5591 default:
5592 gcc_unreachable ();
5593 }
5594
5595 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
5596 expr = build_x_compound_expr (expr, TREE_VALUE (list),
5597 complain);
5598 }
5599
5600 return expr;
5601 }
5602
5603 /* Like build_x_compound_expr_from_list, but using a VEC. */
5604
5605 tree
5606 build_x_compound_expr_from_vec (VEC(tree,gc) *vec, const char *msg)
5607 {
5608 if (VEC_empty (tree, vec))
5609 return NULL_TREE;
5610 else if (VEC_length (tree, vec) == 1)
5611 return VEC_index (tree, vec, 0);
5612 else
5613 {
5614 tree expr;
5615 unsigned int ix;
5616 tree t;
5617
5618 if (msg != NULL)
5619 permerror (input_location,
5620 "%s expression list treated as compound expression",
5621 msg);
5622
5623 expr = VEC_index (tree, vec, 0);
5624 for (ix = 1; VEC_iterate (tree, vec, ix, t); ++ix)
5625 expr = build_x_compound_expr (expr, t, tf_warning_or_error);
5626
5627 return expr;
5628 }
5629 }
5630
5631 /* Handle overloading of the ',' operator when needed. */
5632
5633 tree
5634 build_x_compound_expr (tree op1, tree op2, tsubst_flags_t complain)
5635 {
5636 tree result;
5637 tree orig_op1 = op1;
5638 tree orig_op2 = op2;
5639
5640 if (processing_template_decl)
5641 {
5642 if (type_dependent_expression_p (op1)
5643 || type_dependent_expression_p (op2))
5644 return build_min_nt (COMPOUND_EXPR, op1, op2);
5645 op1 = build_non_dependent_expr (op1);
5646 op2 = build_non_dependent_expr (op2);
5647 }
5648
5649 result = build_new_op (COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2, NULL_TREE,
5650 /*overloaded_p=*/NULL, complain);
5651 if (!result)
5652 result = cp_build_compound_expr (op1, op2, complain);
5653
5654 if (processing_template_decl && result != error_mark_node)
5655 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
5656
5657 return result;
5658 }
5659
5660 /* Like cp_build_compound_expr, but for the c-common bits. */
5661
5662 tree
5663 build_compound_expr (location_t loc ATTRIBUTE_UNUSED, tree lhs, tree rhs)
5664 {
5665 return cp_build_compound_expr (lhs, rhs, tf_warning_or_error);
5666 }
5667
5668 /* Build a compound expression. */
5669
5670 tree
5671 cp_build_compound_expr (tree lhs, tree rhs, tsubst_flags_t complain)
5672 {
5673 lhs = convert_to_void (lhs, ICV_LEFT_OF_COMMA, complain);
5674
5675 if (lhs == error_mark_node || rhs == error_mark_node)
5676 return error_mark_node;
5677
5678 if (TREE_CODE (rhs) == TARGET_EXPR)
5679 {
5680 /* If the rhs is a TARGET_EXPR, then build the compound
5681 expression inside the target_expr's initializer. This
5682 helps the compiler to eliminate unnecessary temporaries. */
5683 tree init = TREE_OPERAND (rhs, 1);
5684
5685 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
5686 TREE_OPERAND (rhs, 1) = init;
5687
5688 return rhs;
5689 }
5690
5691 if (type_unknown_p (rhs))
5692 {
5693 error ("no context to resolve type of %qE", rhs);
5694 return error_mark_node;
5695 }
5696
5697 return build2 (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
5698 }
5699
5700 /* Issue a diagnostic message if casting from SRC_TYPE to DEST_TYPE
5701 casts away constness. CAST gives the type of cast.
5702
5703 ??? This function warns for casting away any qualifier not just
5704 const. We would like to specify exactly what qualifiers are casted
5705 away.
5706 */
5707
5708 static void
5709 check_for_casting_away_constness (tree src_type, tree dest_type,
5710 enum tree_code cast)
5711 {
5712 /* C-style casts are allowed to cast away constness. With
5713 WARN_CAST_QUAL, we still want to issue a warning. */
5714 if (cast == CAST_EXPR && !warn_cast_qual)
5715 return;
5716
5717 if (!casts_away_constness (src_type, dest_type))
5718 return;
5719
5720 switch (cast)
5721 {
5722 case CAST_EXPR:
5723 warning (OPT_Wcast_qual,
5724 "cast from type %qT to type %qT casts away qualifiers",
5725 src_type, dest_type);
5726 return;
5727
5728 case STATIC_CAST_EXPR:
5729 error ("static_cast from type %qT to type %qT casts away qualifiers",
5730 src_type, dest_type);
5731 return;
5732
5733 case REINTERPRET_CAST_EXPR:
5734 error ("reinterpret_cast from type %qT to type %qT casts away qualifiers",
5735 src_type, dest_type);
5736 return;
5737 default:
5738 gcc_unreachable();
5739 }
5740 }
5741
5742 /* Convert EXPR (an expression with pointer-to-member type) to TYPE
5743 (another pointer-to-member type in the same hierarchy) and return
5744 the converted expression. If ALLOW_INVERSE_P is permitted, a
5745 pointer-to-derived may be converted to pointer-to-base; otherwise,
5746 only the other direction is permitted. If C_CAST_P is true, this
5747 conversion is taking place as part of a C-style cast. */
5748
5749 tree
5750 convert_ptrmem (tree type, tree expr, bool allow_inverse_p,
5751 bool c_cast_p, tsubst_flags_t complain)
5752 {
5753 if (TYPE_PTRMEM_P (type))
5754 {
5755 tree delta;
5756
5757 if (TREE_CODE (expr) == PTRMEM_CST)
5758 expr = cplus_expand_constant (expr);
5759 delta = get_delta_difference (TYPE_PTRMEM_CLASS_TYPE (TREE_TYPE (expr)),
5760 TYPE_PTRMEM_CLASS_TYPE (type),
5761 allow_inverse_p,
5762 c_cast_p, complain);
5763 if (delta == error_mark_node)
5764 return error_mark_node;
5765
5766 if (!integer_zerop (delta))
5767 {
5768 tree cond, op1, op2;
5769
5770 cond = cp_build_binary_op (input_location,
5771 EQ_EXPR,
5772 expr,
5773 build_int_cst (TREE_TYPE (expr), -1),
5774 tf_warning_or_error);
5775 op1 = build_nop (ptrdiff_type_node, expr);
5776 op2 = cp_build_binary_op (input_location,
5777 PLUS_EXPR, op1, delta,
5778 tf_warning_or_error);
5779
5780 expr = fold_build3_loc (input_location,
5781 COND_EXPR, ptrdiff_type_node, cond, op1, op2);
5782
5783 }
5784
5785 return build_nop (type, expr);
5786 }
5787 else
5788 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
5789 allow_inverse_p, c_cast_p, complain);
5790 }
5791
5792 /* If EXPR is an INTEGER_CST and ORIG is an arithmetic constant, return
5793 a version of EXPR that has TREE_OVERFLOW set if it is set in ORIG.
5794 Otherwise, return EXPR unchanged. */
5795
5796 static tree
5797 ignore_overflows (tree expr, tree orig)
5798 {
5799 if (TREE_CODE (expr) == INTEGER_CST
5800 && CONSTANT_CLASS_P (orig)
5801 && TREE_CODE (orig) != STRING_CST
5802 && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
5803 {
5804 if (!TREE_OVERFLOW (orig))
5805 /* Ensure constant sharing. */
5806 expr = build_int_cst_wide (TREE_TYPE (expr),
5807 TREE_INT_CST_LOW (expr),
5808 TREE_INT_CST_HIGH (expr));
5809 else
5810 {
5811 /* Avoid clobbering a shared constant. */
5812 expr = copy_node (expr);
5813 TREE_OVERFLOW (expr) = TREE_OVERFLOW (orig);
5814 }
5815 }
5816 return expr;
5817 }
5818
5819 /* Perform a static_cast from EXPR to TYPE. When C_CAST_P is true,
5820 this static_cast is being attempted as one of the possible casts
5821 allowed by a C-style cast. (In that case, accessibility of base
5822 classes is not considered, and it is OK to cast away
5823 constness.) Return the result of the cast. *VALID_P is set to
5824 indicate whether or not the cast was valid. */
5825
5826 static tree
5827 build_static_cast_1 (tree type, tree expr, bool c_cast_p,
5828 bool *valid_p, tsubst_flags_t complain)
5829 {
5830 tree intype;
5831 tree result;
5832 tree orig;
5833
5834 /* Assume the cast is valid. */
5835 *valid_p = true;
5836
5837 intype = TREE_TYPE (expr);
5838
5839 /* Save casted types in the function's used types hash table. */
5840 used_types_insert (type);
5841
5842 /* [expr.static.cast]
5843
5844 An lvalue of type "cv1 B", where B is a class type, can be cast
5845 to type "reference to cv2 D", where D is a class derived (clause
5846 _class.derived_) from B, if a valid standard conversion from
5847 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
5848 same cv-qualification as, or greater cv-qualification than, cv1,
5849 and B is not a virtual base class of D. */
5850 /* We check this case before checking the validity of "TYPE t =
5851 EXPR;" below because for this case:
5852
5853 struct B {};
5854 struct D : public B { D(const B&); };
5855 extern B& b;
5856 void f() { static_cast<const D&>(b); }
5857
5858 we want to avoid constructing a new D. The standard is not
5859 completely clear about this issue, but our interpretation is
5860 consistent with other compilers. */
5861 if (TREE_CODE (type) == REFERENCE_TYPE
5862 && CLASS_TYPE_P (TREE_TYPE (type))
5863 && CLASS_TYPE_P (intype)
5864 && (TYPE_REF_IS_RVALUE (type) || real_lvalue_p (expr))
5865 && DERIVED_FROM_P (intype, TREE_TYPE (type))
5866 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
5867 build_pointer_type (TYPE_MAIN_VARIANT
5868 (TREE_TYPE (type))))
5869 && (c_cast_p
5870 || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5871 {
5872 tree base;
5873
5874 /* There is a standard conversion from "D*" to "B*" even if "B"
5875 is ambiguous or inaccessible. If this is really a
5876 static_cast, then we check both for inaccessibility and
5877 ambiguity. However, if this is a static_cast being performed
5878 because the user wrote a C-style cast, then accessibility is
5879 not considered. */
5880 base = lookup_base (TREE_TYPE (type), intype,
5881 c_cast_p ? ba_unique : ba_check,
5882 NULL);
5883
5884 /* Convert from "B*" to "D*". This function will check that "B"
5885 is not a virtual base of "D". */
5886 expr = build_base_path (MINUS_EXPR, build_address (expr),
5887 base, /*nonnull=*/false);
5888 /* Convert the pointer to a reference -- but then remember that
5889 there are no expressions with reference type in C++. */
5890 return convert_from_reference (cp_fold_convert (type, expr));
5891 }
5892
5893 /* "An lvalue of type cv1 T1 can be cast to type rvalue reference to
5894 cv2 T2 if cv2 T2 is reference-compatible with cv1 T1 (8.5.3)." */
5895 if (TREE_CODE (type) == REFERENCE_TYPE
5896 && TYPE_REF_IS_RVALUE (type)
5897 && real_lvalue_p (expr)
5898 && reference_related_p (TREE_TYPE (type), intype)
5899 && (c_cast_p || at_least_as_qualified_p (TREE_TYPE (type), intype)))
5900 {
5901 expr = build_typed_address (expr, type);
5902 return convert_from_reference (expr);
5903 }
5904
5905 orig = expr;
5906
5907 /* Resolve overloaded address here rather than once in
5908 implicit_conversion and again in the inverse code below. */
5909 if (TYPE_PTRMEMFUNC_P (type) && type_unknown_p (expr))
5910 {
5911 expr = instantiate_type (type, expr, complain);
5912 intype = TREE_TYPE (expr);
5913 }
5914
5915 /* [expr.static.cast]
5916
5917 An expression e can be explicitly converted to a type T using a
5918 static_cast of the form static_cast<T>(e) if the declaration T
5919 t(e);" is well-formed, for some invented temporary variable
5920 t. */
5921 result = perform_direct_initialization_if_possible (type, expr,
5922 c_cast_p, complain);
5923 if (result)
5924 {
5925 result = convert_from_reference (result);
5926
5927 /* Ignore any integer overflow caused by the cast. */
5928 result = ignore_overflows (result, orig);
5929
5930 /* [expr.static.cast]
5931
5932 If T is a reference type, the result is an lvalue; otherwise,
5933 the result is an rvalue. */
5934 if (TREE_CODE (type) != REFERENCE_TYPE)
5935 result = rvalue (result);
5936 return result;
5937 }
5938
5939 /* [expr.static.cast]
5940
5941 Any expression can be explicitly converted to type cv void. */
5942 if (TREE_CODE (type) == VOID_TYPE)
5943 return convert_to_void (expr, ICV_CAST, complain);
5944
5945 /* [expr.static.cast]
5946
5947 The inverse of any standard conversion sequence (clause _conv_),
5948 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
5949 (_conv.array_), function-to-pointer (_conv.func_), and boolean
5950 (_conv.bool_) conversions, can be performed explicitly using
5951 static_cast subject to the restriction that the explicit
5952 conversion does not cast away constness (_expr.const.cast_), and
5953 the following additional rules for specific cases: */
5954 /* For reference, the conversions not excluded are: integral
5955 promotions, floating point promotion, integral conversions,
5956 floating point conversions, floating-integral conversions,
5957 pointer conversions, and pointer to member conversions. */
5958 /* DR 128
5959
5960 A value of integral _or enumeration_ type can be explicitly
5961 converted to an enumeration type. */
5962 /* The effect of all that is that any conversion between any two
5963 types which are integral, floating, or enumeration types can be
5964 performed. */
5965 if ((INTEGRAL_OR_ENUMERATION_TYPE_P (type)
5966 || SCALAR_FLOAT_TYPE_P (type))
5967 && (INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
5968 || SCALAR_FLOAT_TYPE_P (intype)))
5969 {
5970 expr = ocp_convert (type, expr, CONV_C_CAST, LOOKUP_NORMAL);
5971
5972 /* Ignore any integer overflow caused by the cast. */
5973 expr = ignore_overflows (expr, orig);
5974 return expr;
5975 }
5976
5977 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
5978 && CLASS_TYPE_P (TREE_TYPE (type))
5979 && CLASS_TYPE_P (TREE_TYPE (intype))
5980 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
5981 (TREE_TYPE (intype))),
5982 build_pointer_type (TYPE_MAIN_VARIANT
5983 (TREE_TYPE (type)))))
5984 {
5985 tree base;
5986
5987 if (!c_cast_p)
5988 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
5989 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
5990 c_cast_p ? ba_unique : ba_check,
5991 NULL);
5992 return build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false);
5993 }
5994
5995 if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
5996 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
5997 {
5998 tree c1;
5999 tree c2;
6000 tree t1;
6001 tree t2;
6002
6003 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
6004 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
6005
6006 if (TYPE_PTRMEM_P (type))
6007 {
6008 t1 = (build_ptrmem_type
6009 (c1,
6010 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
6011 t2 = (build_ptrmem_type
6012 (c2,
6013 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
6014 }
6015 else
6016 {
6017 t1 = intype;
6018 t2 = type;
6019 }
6020 if (can_convert (t1, t2) || can_convert (t2, t1))
6021 {
6022 if (!c_cast_p)
6023 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
6024 return convert_ptrmem (type, expr, /*allow_inverse_p=*/1,
6025 c_cast_p, tf_warning_or_error);
6026 }
6027 }
6028
6029 /* [expr.static.cast]
6030
6031 An rvalue of type "pointer to cv void" can be explicitly
6032 converted to a pointer to object type. A value of type pointer
6033 to object converted to "pointer to cv void" and back to the
6034 original pointer type will have its original value. */
6035 if (TREE_CODE (intype) == POINTER_TYPE
6036 && VOID_TYPE_P (TREE_TYPE (intype))
6037 && TYPE_PTROB_P (type))
6038 {
6039 if (!c_cast_p)
6040 check_for_casting_away_constness (intype, type, STATIC_CAST_EXPR);
6041 return build_nop (type, expr);
6042 }
6043
6044 *valid_p = false;
6045 return error_mark_node;
6046 }
6047
6048 /* Return an expression representing static_cast<TYPE>(EXPR). */
6049
6050 tree
6051 build_static_cast (tree type, tree expr, tsubst_flags_t complain)
6052 {
6053 tree result;
6054 bool valid_p;
6055
6056 if (type == error_mark_node || expr == error_mark_node)
6057 return error_mark_node;
6058
6059 if (processing_template_decl)
6060 {
6061 expr = build_min (STATIC_CAST_EXPR, type, expr);
6062 /* We don't know if it will or will not have side effects. */
6063 TREE_SIDE_EFFECTS (expr) = 1;
6064 return convert_from_reference (expr);
6065 }
6066
6067 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6068 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6069 if (TREE_CODE (type) != REFERENCE_TYPE
6070 && TREE_CODE (expr) == NOP_EXPR
6071 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6072 expr = TREE_OPERAND (expr, 0);
6073
6074 result = build_static_cast_1 (type, expr, /*c_cast_p=*/false, &valid_p,
6075 complain);
6076 if (valid_p)
6077 return result;
6078
6079 if (complain & tf_error)
6080 error ("invalid static_cast from type %qT to type %qT",
6081 TREE_TYPE (expr), type);
6082 return error_mark_node;
6083 }
6084
6085 /* EXPR is an expression with member function or pointer-to-member
6086 function type. TYPE is a pointer type. Converting EXPR to TYPE is
6087 not permitted by ISO C++, but we accept it in some modes. If we
6088 are not in one of those modes, issue a diagnostic. Return the
6089 converted expression. */
6090
6091 tree
6092 convert_member_func_to_ptr (tree type, tree expr)
6093 {
6094 tree intype;
6095 tree decl;
6096
6097 intype = TREE_TYPE (expr);
6098 gcc_assert (TYPE_PTRMEMFUNC_P (intype)
6099 || TREE_CODE (intype) == METHOD_TYPE);
6100
6101 if (pedantic || warn_pmf2ptr)
6102 pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpmf_conversions,
6103 "converting from %qT to %qT", intype, type);
6104
6105 if (TREE_CODE (intype) == METHOD_TYPE)
6106 expr = build_addr_func (expr);
6107 else if (TREE_CODE (expr) == PTRMEM_CST)
6108 expr = build_address (PTRMEM_CST_MEMBER (expr));
6109 else
6110 {
6111 decl = maybe_dummy_object (TYPE_PTRMEM_CLASS_TYPE (intype), 0);
6112 decl = build_address (decl);
6113 expr = get_member_function_from_ptrfunc (&decl, expr);
6114 }
6115
6116 return build_nop (type, expr);
6117 }
6118
6119 /* Return a representation for a reinterpret_cast from EXPR to TYPE.
6120 If C_CAST_P is true, this reinterpret cast is being done as part of
6121 a C-style cast. If VALID_P is non-NULL, *VALID_P is set to
6122 indicate whether or not reinterpret_cast was valid. */
6123
6124 static tree
6125 build_reinterpret_cast_1 (tree type, tree expr, bool c_cast_p,
6126 bool *valid_p, tsubst_flags_t complain)
6127 {
6128 tree intype;
6129
6130 /* Assume the cast is invalid. */
6131 if (valid_p)
6132 *valid_p = true;
6133
6134 if (type == error_mark_node || error_operand_p (expr))
6135 return error_mark_node;
6136
6137 intype = TREE_TYPE (expr);
6138
6139 /* Save casted types in the function's used types hash table. */
6140 used_types_insert (type);
6141
6142 /* [expr.reinterpret.cast]
6143 An lvalue expression of type T1 can be cast to the type
6144 "reference to T2" if an expression of type "pointer to T1" can be
6145 explicitly converted to the type "pointer to T2" using a
6146 reinterpret_cast. */
6147 if (TREE_CODE (type) == REFERENCE_TYPE)
6148 {
6149 if (! real_lvalue_p (expr))
6150 {
6151 if (complain & tf_error)
6152 error ("invalid cast of an rvalue expression of type "
6153 "%qT to type %qT",
6154 intype, type);
6155 return error_mark_node;
6156 }
6157
6158 /* Warn about a reinterpret_cast from "A*" to "B&" if "A" and
6159 "B" are related class types; the reinterpret_cast does not
6160 adjust the pointer. */
6161 if (TYPE_PTR_P (intype)
6162 && (complain & tf_warning)
6163 && (comptypes (TREE_TYPE (intype), TREE_TYPE (type),
6164 COMPARE_BASE | COMPARE_DERIVED)))
6165 warning (0, "casting %qT to %qT does not dereference pointer",
6166 intype, type);
6167
6168 expr = cp_build_addr_expr (expr, complain);
6169
6170 if (warn_strict_aliasing > 2)
6171 strict_aliasing_warning (TREE_TYPE (expr), type, expr);
6172
6173 if (expr != error_mark_node)
6174 expr = build_reinterpret_cast_1
6175 (build_pointer_type (TREE_TYPE (type)), expr, c_cast_p,
6176 valid_p, complain);
6177 if (expr != error_mark_node)
6178 /* cp_build_indirect_ref isn't right for rvalue refs. */
6179 expr = convert_from_reference (fold_convert (type, expr));
6180 return expr;
6181 }
6182
6183 /* As a G++ extension, we consider conversions from member
6184 functions, and pointers to member functions to
6185 pointer-to-function and pointer-to-void types. If
6186 -Wno-pmf-conversions has not been specified,
6187 convert_member_func_to_ptr will issue an error message. */
6188 if ((TYPE_PTRMEMFUNC_P (intype)
6189 || TREE_CODE (intype) == METHOD_TYPE)
6190 && TYPE_PTR_P (type)
6191 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6192 || VOID_TYPE_P (TREE_TYPE (type))))
6193 return convert_member_func_to_ptr (type, expr);
6194
6195 /* If the cast is not to a reference type, the lvalue-to-rvalue,
6196 array-to-pointer, and function-to-pointer conversions are
6197 performed. */
6198 expr = decay_conversion (expr);
6199
6200 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6201 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6202 if (TREE_CODE (expr) == NOP_EXPR
6203 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6204 expr = TREE_OPERAND (expr, 0);
6205
6206 if (error_operand_p (expr))
6207 return error_mark_node;
6208
6209 intype = TREE_TYPE (expr);
6210
6211 /* [expr.reinterpret.cast]
6212 A pointer can be converted to any integral type large enough to
6213 hold it. ... A value of type std::nullptr_t can be converted to
6214 an integral type; the conversion has the same meaning and
6215 validity as a conversion of (void*)0 to the integral type. */
6216 if (CP_INTEGRAL_TYPE_P (type)
6217 && (TYPE_PTR_P (intype) || NULLPTR_TYPE_P (intype)))
6218 {
6219 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
6220 {
6221 if (complain & tf_error)
6222 permerror (input_location, "cast from %qT to %qT loses precision",
6223 intype, type);
6224 else
6225 return error_mark_node;
6226 }
6227 if (NULLPTR_TYPE_P (intype))
6228 return build_int_cst (type, 0);
6229 }
6230 /* [expr.reinterpret.cast]
6231 A value of integral or enumeration type can be explicitly
6232 converted to a pointer. */
6233 else if (TYPE_PTR_P (type) && INTEGRAL_OR_ENUMERATION_TYPE_P (intype))
6234 /* OK */
6235 ;
6236 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
6237 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
6238 return fold_if_not_in_template (build_nop (type, expr));
6239 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
6240 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
6241 {
6242 tree sexpr = expr;
6243
6244 if (!c_cast_p)
6245 check_for_casting_away_constness (intype, type, REINTERPRET_CAST_EXPR);
6246 /* Warn about possible alignment problems. */
6247 if (STRICT_ALIGNMENT && warn_cast_align
6248 && (complain & tf_warning)
6249 && !VOID_TYPE_P (type)
6250 && TREE_CODE (TREE_TYPE (intype)) != FUNCTION_TYPE
6251 && COMPLETE_TYPE_P (TREE_TYPE (type))
6252 && COMPLETE_TYPE_P (TREE_TYPE (intype))
6253 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (intype)))
6254 warning (OPT_Wcast_align, "cast from %qT to %qT "
6255 "increases required alignment of target type", intype, type);
6256
6257 /* We need to strip nops here, because the front end likes to
6258 create (int *)&a for array-to-pointer decay, instead of &a[0]. */
6259 STRIP_NOPS (sexpr);
6260 if (warn_strict_aliasing <= 2)
6261 strict_aliasing_warning (intype, type, sexpr);
6262
6263 return fold_if_not_in_template (build_nop (type, expr));
6264 }
6265 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
6266 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
6267 {
6268 if (pedantic && (complain & tf_warning))
6269 /* Only issue a warning, as we have always supported this
6270 where possible, and it is necessary in some cases. DR 195
6271 addresses this issue, but as of 2004/10/26 is still in
6272 drafting. */
6273 warning (0, "ISO C++ forbids casting between pointer-to-function and pointer-to-object");
6274 return fold_if_not_in_template (build_nop (type, expr));
6275 }
6276 else if (TREE_CODE (type) == VECTOR_TYPE)
6277 return fold_if_not_in_template (convert_to_vector (type, expr));
6278 else if (TREE_CODE (intype) == VECTOR_TYPE
6279 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6280 return fold_if_not_in_template (convert_to_integer (type, expr));
6281 else
6282 {
6283 if (valid_p)
6284 *valid_p = false;
6285 if (complain & tf_error)
6286 error ("invalid cast from type %qT to type %qT", intype, type);
6287 return error_mark_node;
6288 }
6289
6290 return cp_convert (type, expr);
6291 }
6292
6293 tree
6294 build_reinterpret_cast (tree type, tree expr, tsubst_flags_t complain)
6295 {
6296 if (type == error_mark_node || expr == error_mark_node)
6297 return error_mark_node;
6298
6299 if (processing_template_decl)
6300 {
6301 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
6302
6303 if (!TREE_SIDE_EFFECTS (t)
6304 && type_dependent_expression_p (expr))
6305 /* There might turn out to be side effects inside expr. */
6306 TREE_SIDE_EFFECTS (t) = 1;
6307 return convert_from_reference (t);
6308 }
6309
6310 return build_reinterpret_cast_1 (type, expr, /*c_cast_p=*/false,
6311 /*valid_p=*/NULL, complain);
6312 }
6313
6314 /* Perform a const_cast from EXPR to TYPE. If the cast is valid,
6315 return an appropriate expression. Otherwise, return
6316 error_mark_node. If the cast is not valid, and COMPLAIN is true,
6317 then a diagnostic will be issued. If VALID_P is non-NULL, we are
6318 performing a C-style cast, its value upon return will indicate
6319 whether or not the conversion succeeded. */
6320
6321 static tree
6322 build_const_cast_1 (tree dst_type, tree expr, bool complain,
6323 bool *valid_p)
6324 {
6325 tree src_type;
6326 tree reference_type;
6327
6328 /* Callers are responsible for handling error_mark_node as a
6329 destination type. */
6330 gcc_assert (dst_type != error_mark_node);
6331 /* In a template, callers should be building syntactic
6332 representations of casts, not using this machinery. */
6333 gcc_assert (!processing_template_decl);
6334
6335 /* Assume the conversion is invalid. */
6336 if (valid_p)
6337 *valid_p = false;
6338
6339 if (!POINTER_TYPE_P (dst_type) && !TYPE_PTRMEM_P (dst_type))
6340 {
6341 if (complain)
6342 error ("invalid use of const_cast with type %qT, "
6343 "which is not a pointer, "
6344 "reference, nor a pointer-to-data-member type", dst_type);
6345 return error_mark_node;
6346 }
6347
6348 if (TREE_CODE (TREE_TYPE (dst_type)) == FUNCTION_TYPE)
6349 {
6350 if (complain)
6351 error ("invalid use of const_cast with type %qT, which is a pointer "
6352 "or reference to a function type", dst_type);
6353 return error_mark_node;
6354 }
6355
6356 /* Save casted types in the function's used types hash table. */
6357 used_types_insert (dst_type);
6358
6359 src_type = TREE_TYPE (expr);
6360 /* Expressions do not really have reference types. */
6361 if (TREE_CODE (src_type) == REFERENCE_TYPE)
6362 src_type = TREE_TYPE (src_type);
6363
6364 /* [expr.const.cast]
6365
6366 An lvalue of type T1 can be explicitly converted to an lvalue of
6367 type T2 using the cast const_cast<T2&> (where T1 and T2 are object
6368 types) if a pointer to T1 can be explicitly converted to the type
6369 pointer to T2 using a const_cast. */
6370 if (TREE_CODE (dst_type) == REFERENCE_TYPE)
6371 {
6372 reference_type = dst_type;
6373 if (! real_lvalue_p (expr))
6374 {
6375 if (complain)
6376 error ("invalid const_cast of an rvalue of type %qT to type %qT",
6377 src_type, dst_type);
6378 return error_mark_node;
6379 }
6380 dst_type = build_pointer_type (TREE_TYPE (dst_type));
6381 src_type = build_pointer_type (src_type);
6382 }
6383 else
6384 {
6385 reference_type = NULL_TREE;
6386 /* If the destination type is not a reference type, the
6387 lvalue-to-rvalue, array-to-pointer, and function-to-pointer
6388 conversions are performed. */
6389 src_type = type_decays_to (src_type);
6390 if (src_type == error_mark_node)
6391 return error_mark_node;
6392 }
6393
6394 if ((TYPE_PTR_P (src_type) || TYPE_PTRMEM_P (src_type))
6395 && comp_ptr_ttypes_const (dst_type, src_type))
6396 {
6397 if (valid_p)
6398 {
6399 *valid_p = true;
6400 /* This cast is actually a C-style cast. Issue a warning if
6401 the user is making a potentially unsafe cast. */
6402 check_for_casting_away_constness (src_type, dst_type, CAST_EXPR);
6403 }
6404 if (reference_type)
6405 {
6406 expr = cp_build_addr_expr (expr,
6407 complain ? tf_warning_or_error : tf_none);
6408 expr = build_nop (reference_type, expr);
6409 return convert_from_reference (expr);
6410 }
6411 else
6412 {
6413 expr = decay_conversion (expr);
6414 /* build_c_cast puts on a NOP_EXPR to make the result not an
6415 lvalue. Strip such NOP_EXPRs if VALUE is being used in
6416 non-lvalue context. */
6417 if (TREE_CODE (expr) == NOP_EXPR
6418 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
6419 expr = TREE_OPERAND (expr, 0);
6420 return build_nop (dst_type, expr);
6421 }
6422 }
6423
6424 if (complain)
6425 error ("invalid const_cast from type %qT to type %qT",
6426 src_type, dst_type);
6427 return error_mark_node;
6428 }
6429
6430 tree
6431 build_const_cast (tree type, tree expr, tsubst_flags_t complain)
6432 {
6433 if (type == error_mark_node || error_operand_p (expr))
6434 return error_mark_node;
6435
6436 if (processing_template_decl)
6437 {
6438 tree t = build_min (CONST_CAST_EXPR, type, expr);
6439
6440 if (!TREE_SIDE_EFFECTS (t)
6441 && type_dependent_expression_p (expr))
6442 /* There might turn out to be side effects inside expr. */
6443 TREE_SIDE_EFFECTS (t) = 1;
6444 return convert_from_reference (t);
6445 }
6446
6447 return build_const_cast_1 (type, expr, complain & tf_error,
6448 /*valid_p=*/NULL);
6449 }
6450
6451 /* Like cp_build_c_cast, but for the c-common bits. */
6452
6453 tree
6454 build_c_cast (location_t loc ATTRIBUTE_UNUSED, tree type, tree expr)
6455 {
6456 return cp_build_c_cast (type, expr, tf_warning_or_error);
6457 }
6458
6459 /* Build an expression representing an explicit C-style cast to type
6460 TYPE of expression EXPR. */
6461
6462 tree
6463 cp_build_c_cast (tree type, tree expr, tsubst_flags_t complain)
6464 {
6465 tree value = expr;
6466 tree result;
6467 bool valid_p;
6468
6469 if (type == error_mark_node || error_operand_p (expr))
6470 return error_mark_node;
6471
6472 if (processing_template_decl)
6473 {
6474 tree t = build_min (CAST_EXPR, type,
6475 tree_cons (NULL_TREE, value, NULL_TREE));
6476 /* We don't know if it will or will not have side effects. */
6477 TREE_SIDE_EFFECTS (t) = 1;
6478 return convert_from_reference (t);
6479 }
6480
6481 /* Casts to a (pointer to a) specific ObjC class (or 'id' or
6482 'Class') should always be retained, because this information aids
6483 in method lookup. */
6484 if (objc_is_object_ptr (type)
6485 && objc_is_object_ptr (TREE_TYPE (expr)))
6486 return build_nop (type, expr);
6487
6488 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6489 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
6490 if (TREE_CODE (type) != REFERENCE_TYPE
6491 && TREE_CODE (value) == NOP_EXPR
6492 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
6493 value = TREE_OPERAND (value, 0);
6494
6495 if (TREE_CODE (type) == ARRAY_TYPE)
6496 {
6497 /* Allow casting from T1* to T2[] because Cfront allows it.
6498 NIHCL uses it. It is not valid ISO C++ however. */
6499 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
6500 {
6501 if (complain & tf_error)
6502 permerror (input_location, "ISO C++ forbids casting to an array type %qT", type);
6503 else
6504 return error_mark_node;
6505 type = build_pointer_type (TREE_TYPE (type));
6506 }
6507 else
6508 {
6509 if (complain & tf_error)
6510 error ("ISO C++ forbids casting to an array type %qT", type);
6511 return error_mark_node;
6512 }
6513 }
6514
6515 if (TREE_CODE (type) == FUNCTION_TYPE
6516 || TREE_CODE (type) == METHOD_TYPE)
6517 {
6518 if (complain & tf_error)
6519 error ("invalid cast to function type %qT", type);
6520 return error_mark_node;
6521 }
6522
6523 if (TREE_CODE (type) == POINTER_TYPE
6524 && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
6525 /* Casting to an integer of smaller size is an error detected elsewhere. */
6526 && TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (value))
6527 /* Don't warn about converting any constant. */
6528 && !TREE_CONSTANT (value))
6529 warning_at (input_location, OPT_Wint_to_pointer_cast,
6530 "cast to pointer from integer of different size");
6531
6532 /* A C-style cast can be a const_cast. */
6533 result = build_const_cast_1 (type, value, /*complain=*/false,
6534 &valid_p);
6535 if (valid_p)
6536 return result;
6537
6538 /* Or a static cast. */
6539 result = build_static_cast_1 (type, value, /*c_cast_p=*/true,
6540 &valid_p, complain);
6541 /* Or a reinterpret_cast. */
6542 if (!valid_p)
6543 result = build_reinterpret_cast_1 (type, value, /*c_cast_p=*/true,
6544 &valid_p, complain);
6545 /* The static_cast or reinterpret_cast may be followed by a
6546 const_cast. */
6547 if (valid_p
6548 /* A valid cast may result in errors if, for example, a
6549 conversion to am ambiguous base class is required. */
6550 && !error_operand_p (result))
6551 {
6552 tree result_type;
6553
6554 /* Non-class rvalues always have cv-unqualified type. */
6555 if (!CLASS_TYPE_P (type))
6556 type = TYPE_MAIN_VARIANT (type);
6557 result_type = TREE_TYPE (result);
6558 if (!CLASS_TYPE_P (result_type))
6559 result_type = TYPE_MAIN_VARIANT (result_type);
6560 /* If the type of RESULT does not match TYPE, perform a
6561 const_cast to make it match. If the static_cast or
6562 reinterpret_cast succeeded, we will differ by at most
6563 cv-qualification, so the follow-on const_cast is guaranteed
6564 to succeed. */
6565 if (!same_type_p (non_reference (type), non_reference (result_type)))
6566 {
6567 result = build_const_cast_1 (type, result, false, &valid_p);
6568 gcc_assert (valid_p);
6569 }
6570 return result;
6571 }
6572
6573 return error_mark_node;
6574 }
6575 \f
6576 /* For use from the C common bits. */
6577 tree
6578 build_modify_expr (location_t location ATTRIBUTE_UNUSED,
6579 tree lhs, tree lhs_origtype ATTRIBUTE_UNUSED,
6580 enum tree_code modifycode,
6581 location_t rhs_location ATTRIBUTE_UNUSED, tree rhs,
6582 tree rhs_origtype ATTRIBUTE_UNUSED)
6583 {
6584 return cp_build_modify_expr (lhs, modifycode, rhs, tf_warning_or_error);
6585 }
6586
6587 /* Build an assignment expression of lvalue LHS from value RHS.
6588 MODIFYCODE is the code for a binary operator that we use
6589 to combine the old value of LHS with RHS to get the new value.
6590 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
6591
6592 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
6593
6594 tree
6595 cp_build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6596 tsubst_flags_t complain)
6597 {
6598 tree result;
6599 tree newrhs = rhs;
6600 tree lhstype = TREE_TYPE (lhs);
6601 tree olhstype = lhstype;
6602 bool plain_assign = (modifycode == NOP_EXPR);
6603
6604 /* Avoid duplicate error messages from operands that had errors. */
6605 if (error_operand_p (lhs) || error_operand_p (rhs))
6606 return error_mark_node;
6607
6608 /* Handle control structure constructs used as "lvalues". */
6609 switch (TREE_CODE (lhs))
6610 {
6611 /* Handle --foo = 5; as these are valid constructs in C++. */
6612 case PREDECREMENT_EXPR:
6613 case PREINCREMENT_EXPR:
6614 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6615 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6616 stabilize_reference (TREE_OPERAND (lhs, 0)),
6617 TREE_OPERAND (lhs, 1));
6618 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0),
6619 modifycode, rhs, complain);
6620 if (newrhs == error_mark_node)
6621 return error_mark_node;
6622 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6623
6624 /* Handle (a, b) used as an "lvalue". */
6625 case COMPOUND_EXPR:
6626 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6627 modifycode, rhs, complain);
6628 if (newrhs == error_mark_node)
6629 return error_mark_node;
6630 return build2 (COMPOUND_EXPR, lhstype,
6631 TREE_OPERAND (lhs, 0), newrhs);
6632
6633 case MODIFY_EXPR:
6634 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
6635 lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
6636 stabilize_reference (TREE_OPERAND (lhs, 0)),
6637 TREE_OPERAND (lhs, 1));
6638 newrhs = cp_build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs,
6639 complain);
6640 if (newrhs == error_mark_node)
6641 return error_mark_node;
6642 return build2 (COMPOUND_EXPR, lhstype, lhs, newrhs);
6643
6644 case MIN_EXPR:
6645 case MAX_EXPR:
6646 /* MIN_EXPR and MAX_EXPR are currently only permitted as lvalues,
6647 when neither operand has side-effects. */
6648 if (!lvalue_or_else (lhs, lv_assign, complain))
6649 return error_mark_node;
6650
6651 gcc_assert (!TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0))
6652 && !TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 1)));
6653
6654 lhs = build3 (COND_EXPR, TREE_TYPE (lhs),
6655 build2 (TREE_CODE (lhs) == MIN_EXPR ? LE_EXPR : GE_EXPR,
6656 boolean_type_node,
6657 TREE_OPERAND (lhs, 0),
6658 TREE_OPERAND (lhs, 1)),
6659 TREE_OPERAND (lhs, 0),
6660 TREE_OPERAND (lhs, 1));
6661 /* Fall through. */
6662
6663 /* Handle (a ? b : c) used as an "lvalue". */
6664 case COND_EXPR:
6665 {
6666 /* Produce (a ? (b = rhs) : (c = rhs))
6667 except that the RHS goes through a save-expr
6668 so the code to compute it is only emitted once. */
6669 tree cond;
6670 tree preeval = NULL_TREE;
6671
6672 if (VOID_TYPE_P (TREE_TYPE (rhs)))
6673 {
6674 if (complain & tf_error)
6675 error ("void value not ignored as it ought to be");
6676 return error_mark_node;
6677 }
6678
6679 rhs = stabilize_expr (rhs, &preeval);
6680
6681 /* Check this here to avoid odd errors when trying to convert
6682 a throw to the type of the COND_EXPR. */
6683 if (!lvalue_or_else (lhs, lv_assign, complain))
6684 return error_mark_node;
6685
6686 cond = build_conditional_expr
6687 (TREE_OPERAND (lhs, 0),
6688 cp_build_modify_expr (TREE_OPERAND (lhs, 1),
6689 modifycode, rhs, complain),
6690 cp_build_modify_expr (TREE_OPERAND (lhs, 2),
6691 modifycode, rhs, complain),
6692 complain);
6693
6694 if (cond == error_mark_node)
6695 return cond;
6696 /* Make sure the code to compute the rhs comes out
6697 before the split. */
6698 if (preeval)
6699 cond = build2 (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
6700 return cond;
6701 }
6702
6703 default:
6704 break;
6705 }
6706
6707 if (modifycode == INIT_EXPR)
6708 {
6709 if (BRACE_ENCLOSED_INITIALIZER_P (rhs))
6710 /* Do the default thing. */;
6711 else if (TREE_CODE (rhs) == CONSTRUCTOR)
6712 {
6713 /* Compound literal. */
6714 if (! same_type_p (TREE_TYPE (rhs), lhstype))
6715 /* Call convert to generate an error; see PR 11063. */
6716 rhs = convert (lhstype, rhs);
6717 result = build2 (INIT_EXPR, lhstype, lhs, rhs);
6718 TREE_SIDE_EFFECTS (result) = 1;
6719 return result;
6720 }
6721 else if (! MAYBE_CLASS_TYPE_P (lhstype))
6722 /* Do the default thing. */;
6723 else
6724 {
6725 VEC(tree,gc) *rhs_vec = make_tree_vector_single (rhs);
6726 result = build_special_member_call (lhs, complete_ctor_identifier,
6727 &rhs_vec, lhstype, LOOKUP_NORMAL,
6728 complain);
6729 release_tree_vector (rhs_vec);
6730 if (result == NULL_TREE)
6731 return error_mark_node;
6732 return result;
6733 }
6734 }
6735 else
6736 {
6737 lhs = require_complete_type (lhs);
6738 if (lhs == error_mark_node)
6739 return error_mark_node;
6740
6741 if (modifycode == NOP_EXPR)
6742 {
6743 /* `operator=' is not an inheritable operator. */
6744 if (! MAYBE_CLASS_TYPE_P (lhstype))
6745 /* Do the default thing. */;
6746 else
6747 {
6748 result = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL,
6749 lhs, rhs, make_node (NOP_EXPR),
6750 /*overloaded_p=*/NULL,
6751 complain);
6752 if (result == NULL_TREE)
6753 return error_mark_node;
6754 return result;
6755 }
6756 lhstype = olhstype;
6757 }
6758 else
6759 {
6760 /* A binary op has been requested. Combine the old LHS
6761 value with the RHS producing the value we should actually
6762 store into the LHS. */
6763 gcc_assert (!((TREE_CODE (lhstype) == REFERENCE_TYPE
6764 && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
6765 || MAYBE_CLASS_TYPE_P (lhstype)));
6766
6767 lhs = stabilize_reference (lhs);
6768 newrhs = cp_build_binary_op (input_location,
6769 modifycode, lhs, rhs,
6770 complain);
6771 if (newrhs == error_mark_node)
6772 {
6773 if (complain & tf_error)
6774 error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
6775 TREE_TYPE (lhs), TREE_TYPE (rhs));
6776 return error_mark_node;
6777 }
6778
6779 /* Now it looks like a plain assignment. */
6780 modifycode = NOP_EXPR;
6781 }
6782 gcc_assert (TREE_CODE (lhstype) != REFERENCE_TYPE);
6783 gcc_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE);
6784 }
6785
6786 /* The left-hand side must be an lvalue. */
6787 if (!lvalue_or_else (lhs, lv_assign, complain))
6788 return error_mark_node;
6789
6790 /* Warn about modifying something that is `const'. Don't warn if
6791 this is initialization. */
6792 if (modifycode != INIT_EXPR
6793 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
6794 /* Functions are not modifiable, even though they are
6795 lvalues. */
6796 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
6797 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
6798 /* If it's an aggregate and any field is const, then it is
6799 effectively const. */
6800 || (CLASS_TYPE_P (lhstype)
6801 && C_TYPE_FIELDS_READONLY (lhstype))))
6802 {
6803 if (complain & tf_error)
6804 readonly_error (lhs, REK_ASSIGNMENT);
6805 else
6806 return error_mark_node;
6807 }
6808
6809 /* If storing into a structure or union member, it may have been given a
6810 lowered bitfield type. We need to convert to the declared type first,
6811 so retrieve it now. */
6812
6813 olhstype = unlowered_expr_type (lhs);
6814
6815 /* Convert new value to destination type. */
6816
6817 if (TREE_CODE (lhstype) == ARRAY_TYPE)
6818 {
6819 int from_array;
6820
6821 if (BRACE_ENCLOSED_INITIALIZER_P (newrhs))
6822 {
6823 if (modifycode != INIT_EXPR)
6824 {
6825 if (complain & tf_error)
6826 error ("assigning to an array from an initializer list");
6827 return error_mark_node;
6828 }
6829 if (check_array_initializer (lhs, lhstype, newrhs))
6830 return error_mark_node;
6831 newrhs = digest_init (lhstype, newrhs);
6832 }
6833
6834 else if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
6835 TYPE_MAIN_VARIANT (TREE_TYPE (newrhs))))
6836 {
6837 if (complain & tf_error)
6838 error ("incompatible types in assignment of %qT to %qT",
6839 TREE_TYPE (rhs), lhstype);
6840 return error_mark_node;
6841 }
6842
6843 /* Allow array assignment in compiler-generated code. */
6844 else if (!current_function_decl
6845 || !DECL_ARTIFICIAL (current_function_decl))
6846 {
6847 /* This routine is used for both initialization and assignment.
6848 Make sure the diagnostic message differentiates the context. */
6849 if (complain & tf_error)
6850 {
6851 if (modifycode == INIT_EXPR)
6852 error ("array used as initializer");
6853 else
6854 error ("invalid array assignment");
6855 }
6856 return error_mark_node;
6857 }
6858
6859 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
6860 ? 1 + (modifycode != INIT_EXPR): 0;
6861 return build_vec_init (lhs, NULL_TREE, newrhs,
6862 /*explicit_value_init_p=*/false,
6863 from_array, complain);
6864 }
6865
6866 if (modifycode == INIT_EXPR)
6867 /* Calls with INIT_EXPR are all direct-initialization, so don't set
6868 LOOKUP_ONLYCONVERTING. */
6869 newrhs = convert_for_initialization (lhs, olhstype, newrhs, LOOKUP_NORMAL,
6870 ICR_INIT, NULL_TREE, 0,
6871 complain);
6872 else
6873 newrhs = convert_for_assignment (olhstype, newrhs, ICR_ASSIGN,
6874 NULL_TREE, 0, complain, LOOKUP_IMPLICIT);
6875
6876 if (!same_type_p (lhstype, olhstype))
6877 newrhs = cp_convert_and_check (lhstype, newrhs);
6878
6879 if (modifycode != INIT_EXPR)
6880 {
6881 if (TREE_CODE (newrhs) == CALL_EXPR
6882 && TYPE_NEEDS_CONSTRUCTING (lhstype))
6883 newrhs = build_cplus_new (lhstype, newrhs);
6884
6885 /* Can't initialize directly from a TARGET_EXPR, since that would
6886 cause the lhs to be constructed twice, and possibly result in
6887 accidental self-initialization. So we force the TARGET_EXPR to be
6888 expanded without a target. */
6889 if (TREE_CODE (newrhs) == TARGET_EXPR)
6890 newrhs = build2 (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
6891 TREE_OPERAND (newrhs, 0));
6892 }
6893
6894 if (newrhs == error_mark_node)
6895 return error_mark_node;
6896
6897 if (c_dialect_objc () && flag_objc_gc)
6898 {
6899 result = objc_generate_write_barrier (lhs, modifycode, newrhs);
6900
6901 if (result)
6902 return result;
6903 }
6904
6905 result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6906 lhstype, lhs, newrhs);
6907
6908 TREE_SIDE_EFFECTS (result) = 1;
6909 if (!plain_assign)
6910 TREE_NO_WARNING (result) = 1;
6911
6912 return result;
6913 }
6914
6915 tree
6916 build_x_modify_expr (tree lhs, enum tree_code modifycode, tree rhs,
6917 tsubst_flags_t complain)
6918 {
6919 if (processing_template_decl)
6920 return build_min_nt (MODOP_EXPR, lhs,
6921 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
6922
6923 if (modifycode != NOP_EXPR)
6924 {
6925 tree rval = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
6926 make_node (modifycode),
6927 /*overloaded_p=*/NULL,
6928 complain);
6929 if (rval)
6930 {
6931 TREE_NO_WARNING (rval) = 1;
6932 return rval;
6933 }
6934 }
6935 return cp_build_modify_expr (lhs, modifycode, rhs, complain);
6936 }
6937
6938 /* Helper function for get_delta_difference which assumes FROM is a base
6939 class of TO. Returns a delta for the conversion of pointer-to-member
6940 of FROM to pointer-to-member of TO. If the conversion is invalid and
6941 tf_error is not set in COMPLAIN returns error_mark_node, otherwise
6942 returns zero. If FROM is not a base class of TO, returns NULL_TREE.
6943 If C_CAST_P is true, this conversion is taking place as part of a
6944 C-style cast. */
6945
6946 static tree
6947 get_delta_difference_1 (tree from, tree to, bool c_cast_p,
6948 tsubst_flags_t complain)
6949 {
6950 tree binfo;
6951 base_kind kind;
6952 base_access access = c_cast_p ? ba_unique : ba_check;
6953
6954 /* Note: ba_quiet does not distinguish between access control and
6955 ambiguity. */
6956 if (!(complain & tf_error))
6957 access |= ba_quiet;
6958
6959 binfo = lookup_base (to, from, access, &kind);
6960
6961 if (kind == bk_inaccessible || kind == bk_ambig)
6962 {
6963 if (!(complain & tf_error))
6964 return error_mark_node;
6965
6966 error (" in pointer to member function conversion");
6967 return size_zero_node;
6968 }
6969 else if (binfo)
6970 {
6971 if (kind != bk_via_virtual)
6972 return BINFO_OFFSET (binfo);
6973 else
6974 /* FROM is a virtual base class of TO. Issue an error or warning
6975 depending on whether or not this is a reinterpret cast. */
6976 {
6977 if (!(complain & tf_error))
6978 return error_mark_node;
6979
6980 error ("pointer to member conversion via virtual base %qT",
6981 BINFO_TYPE (binfo_from_vbase (binfo)));
6982
6983 return size_zero_node;
6984 }
6985 }
6986 else
6987 return NULL_TREE;
6988 }
6989
6990 /* Get difference in deltas for different pointer to member function
6991 types. If the conversion is invalid and tf_error is not set in
6992 COMPLAIN, returns error_mark_node, otherwise returns an integer
6993 constant of type PTRDIFF_TYPE_NODE and its value is zero if the
6994 conversion is invalid. If ALLOW_INVERSE_P is true, then allow reverse
6995 conversions as well. If C_CAST_P is true this conversion is taking
6996 place as part of a C-style cast.
6997
6998 Note that the naming of FROM and TO is kind of backwards; the return
6999 value is what we add to a TO in order to get a FROM. They are named
7000 this way because we call this function to find out how to convert from
7001 a pointer to member of FROM to a pointer to member of TO. */
7002
7003 static tree
7004 get_delta_difference (tree from, tree to,
7005 bool allow_inverse_p,
7006 bool c_cast_p, tsubst_flags_t complain)
7007 {
7008 tree result;
7009
7010 if (same_type_ignoring_top_level_qualifiers_p (from, to))
7011 /* Pointer to member of incomplete class is permitted*/
7012 result = size_zero_node;
7013 else
7014 result = get_delta_difference_1 (from, to, c_cast_p, complain);
7015
7016 if (result == error_mark_node)
7017 return error_mark_node;
7018
7019 if (!result)
7020 {
7021 if (!allow_inverse_p)
7022 {
7023 if (!(complain & tf_error))
7024 return error_mark_node;
7025
7026 error_not_base_type (from, to);
7027 error (" in pointer to member conversion");
7028 result = size_zero_node;
7029 }
7030 else
7031 {
7032 result = get_delta_difference_1 (to, from, c_cast_p, complain);
7033
7034 if (result == error_mark_node)
7035 return error_mark_node;
7036
7037 if (result)
7038 result = size_diffop_loc (input_location,
7039 size_zero_node, result);
7040 else
7041 {
7042 if (!(complain & tf_error))
7043 return error_mark_node;
7044
7045 error_not_base_type (from, to);
7046 error (" in pointer to member conversion");
7047 result = size_zero_node;
7048 }
7049 }
7050 }
7051
7052 return fold_if_not_in_template (convert_to_integer (ptrdiff_type_node,
7053 result));
7054 }
7055
7056 /* Return a constructor for the pointer-to-member-function TYPE using
7057 the other components as specified. */
7058
7059 tree
7060 build_ptrmemfunc1 (tree type, tree delta, tree pfn)
7061 {
7062 tree u = NULL_TREE;
7063 tree delta_field;
7064 tree pfn_field;
7065 VEC(constructor_elt, gc) *v;
7066
7067 /* Pull the FIELD_DECLs out of the type. */
7068 pfn_field = TYPE_FIELDS (type);
7069 delta_field = DECL_CHAIN (pfn_field);
7070
7071 /* Make sure DELTA has the type we want. */
7072 delta = convert_and_check (delta_type_node, delta);
7073
7074 /* Convert to the correct target type if necessary. */
7075 pfn = fold_convert (TREE_TYPE (pfn_field), pfn);
7076
7077 /* Finish creating the initializer. */
7078 v = VEC_alloc(constructor_elt, gc, 2);
7079 CONSTRUCTOR_APPEND_ELT(v, pfn_field, pfn);
7080 CONSTRUCTOR_APPEND_ELT(v, delta_field, delta);
7081 u = build_constructor (type, v);
7082 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) & TREE_CONSTANT (delta);
7083 TREE_STATIC (u) = (TREE_CONSTANT (u)
7084 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
7085 != NULL_TREE)
7086 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
7087 != NULL_TREE));
7088 return u;
7089 }
7090
7091 /* Build a constructor for a pointer to member function. It can be
7092 used to initialize global variables, local variable, or used
7093 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
7094 want to be.
7095
7096 If FORCE is nonzero, then force this conversion, even if
7097 we would rather not do it. Usually set when using an explicit
7098 cast. A C-style cast is being processed iff C_CAST_P is true.
7099
7100 Return error_mark_node, if something goes wrong. */
7101
7102 tree
7103 build_ptrmemfunc (tree type, tree pfn, int force, bool c_cast_p,
7104 tsubst_flags_t complain)
7105 {
7106 tree fn;
7107 tree pfn_type;
7108 tree to_type;
7109
7110 if (error_operand_p (pfn))
7111 return error_mark_node;
7112
7113 pfn_type = TREE_TYPE (pfn);
7114 to_type = build_ptrmemfunc_type (type);
7115
7116 /* Handle multiple conversions of pointer to member functions. */
7117 if (TYPE_PTRMEMFUNC_P (pfn_type))
7118 {
7119 tree delta = NULL_TREE;
7120 tree npfn = NULL_TREE;
7121 tree n;
7122
7123 if (!force
7124 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn, LOOKUP_NORMAL))
7125 error ("invalid conversion to type %qT from type %qT",
7126 to_type, pfn_type);
7127
7128 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
7129 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7130 force,
7131 c_cast_p, complain);
7132 if (n == error_mark_node)
7133 return error_mark_node;
7134
7135 /* We don't have to do any conversion to convert a
7136 pointer-to-member to its own type. But, we don't want to
7137 just return a PTRMEM_CST if there's an explicit cast; that
7138 cast should make the expression an invalid template argument. */
7139 if (TREE_CODE (pfn) != PTRMEM_CST)
7140 {
7141 if (same_type_p (to_type, pfn_type))
7142 return pfn;
7143 else if (integer_zerop (n))
7144 return build_reinterpret_cast (to_type, pfn,
7145 tf_warning_or_error);
7146 }
7147
7148 if (TREE_SIDE_EFFECTS (pfn))
7149 pfn = save_expr (pfn);
7150
7151 /* Obtain the function pointer and the current DELTA. */
7152 if (TREE_CODE (pfn) == PTRMEM_CST)
7153 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
7154 else
7155 {
7156 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
7157 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
7158 }
7159
7160 /* Just adjust the DELTA field. */
7161 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7162 (TREE_TYPE (delta), ptrdiff_type_node));
7163 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
7164 n = cp_build_binary_op (input_location,
7165 LSHIFT_EXPR, n, integer_one_node,
7166 tf_warning_or_error);
7167 delta = cp_build_binary_op (input_location,
7168 PLUS_EXPR, delta, n, tf_warning_or_error);
7169 return build_ptrmemfunc1 (to_type, delta, npfn);
7170 }
7171
7172 /* Handle null pointer to member function conversions. */
7173 if (null_ptr_cst_p (pfn))
7174 {
7175 pfn = build_c_cast (input_location, type, integer_zero_node);
7176 return build_ptrmemfunc1 (to_type,
7177 integer_zero_node,
7178 pfn);
7179 }
7180
7181 if (type_unknown_p (pfn))
7182 return instantiate_type (type, pfn, tf_warning_or_error);
7183
7184 fn = TREE_OPERAND (pfn, 0);
7185 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7186 /* In a template, we will have preserved the
7187 OFFSET_REF. */
7188 || (processing_template_decl && TREE_CODE (fn) == OFFSET_REF));
7189 return make_ptrmem_cst (to_type, fn);
7190 }
7191
7192 /* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
7193 given by CST.
7194
7195 ??? There is no consistency as to the types returned for the above
7196 values. Some code acts as if it were a sizetype and some as if it were
7197 integer_type_node. */
7198
7199 void
7200 expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
7201 {
7202 tree type = TREE_TYPE (cst);
7203 tree fn = PTRMEM_CST_MEMBER (cst);
7204 tree ptr_class, fn_class;
7205
7206 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7207
7208 /* The class that the function belongs to. */
7209 fn_class = DECL_CONTEXT (fn);
7210
7211 /* The class that we're creating a pointer to member of. */
7212 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
7213
7214 /* First, calculate the adjustment to the function's class. */
7215 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0,
7216 /*c_cast_p=*/0, tf_warning_or_error);
7217
7218 if (!DECL_VIRTUAL_P (fn))
7219 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type), build_addr_func (fn));
7220 else
7221 {
7222 /* If we're dealing with a virtual function, we have to adjust 'this'
7223 again, to point to the base which provides the vtable entry for
7224 fn; the call will do the opposite adjustment. */
7225 tree orig_class = DECL_CONTEXT (fn);
7226 tree binfo = binfo_or_else (orig_class, fn_class);
7227 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7228 *delta, BINFO_OFFSET (binfo));
7229 *delta = fold_if_not_in_template (*delta);
7230
7231 /* We set PFN to the vtable offset at which the function can be
7232 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
7233 case delta is shifted left, and then incremented). */
7234 *pfn = DECL_VINDEX (fn);
7235 *pfn = build2 (MULT_EXPR, integer_type_node, *pfn,
7236 TYPE_SIZE_UNIT (vtable_entry_type));
7237 *pfn = fold_if_not_in_template (*pfn);
7238
7239 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
7240 {
7241 case ptrmemfunc_vbit_in_pfn:
7242 *pfn = build2 (PLUS_EXPR, integer_type_node, *pfn,
7243 integer_one_node);
7244 *pfn = fold_if_not_in_template (*pfn);
7245 break;
7246
7247 case ptrmemfunc_vbit_in_delta:
7248 *delta = build2 (LSHIFT_EXPR, TREE_TYPE (*delta),
7249 *delta, integer_one_node);
7250 *delta = fold_if_not_in_template (*delta);
7251 *delta = build2 (PLUS_EXPR, TREE_TYPE (*delta),
7252 *delta, integer_one_node);
7253 *delta = fold_if_not_in_template (*delta);
7254 break;
7255
7256 default:
7257 gcc_unreachable ();
7258 }
7259
7260 *pfn = build_nop (TYPE_PTRMEMFUNC_FN_TYPE (type), *pfn);
7261 *pfn = fold_if_not_in_template (*pfn);
7262 }
7263 }
7264
7265 /* Return an expression for PFN from the pointer-to-member function
7266 given by T. */
7267
7268 static tree
7269 pfn_from_ptrmemfunc (tree t)
7270 {
7271 if (TREE_CODE (t) == PTRMEM_CST)
7272 {
7273 tree delta;
7274 tree pfn;
7275
7276 expand_ptrmemfunc_cst (t, &delta, &pfn);
7277 if (pfn)
7278 return pfn;
7279 }
7280
7281 return build_ptrmemfunc_access_expr (t, pfn_identifier);
7282 }
7283
7284 /* Return an expression for DELTA from the pointer-to-member function
7285 given by T. */
7286
7287 static tree
7288 delta_from_ptrmemfunc (tree t)
7289 {
7290 if (TREE_CODE (t) == PTRMEM_CST)
7291 {
7292 tree delta;
7293 tree pfn;
7294
7295 expand_ptrmemfunc_cst (t, &delta, &pfn);
7296 if (delta)
7297 return delta;
7298 }
7299
7300 return build_ptrmemfunc_access_expr (t, delta_identifier);
7301 }
7302
7303 /* Convert value RHS to type TYPE as preparation for an assignment to
7304 an lvalue of type TYPE. ERRTYPE indicates what kind of error the
7305 implicit conversion is. If FNDECL is non-NULL, we are doing the
7306 conversion in order to pass the PARMNUMth argument of FNDECL.
7307 If FNDECL is NULL, we are doing the conversion in function pointer
7308 argument passing, conversion in initialization, etc. */
7309
7310 static tree
7311 convert_for_assignment (tree type, tree rhs,
7312 impl_conv_rhs errtype, tree fndecl, int parmnum,
7313 tsubst_flags_t complain, int flags)
7314 {
7315 tree rhstype;
7316 enum tree_code coder;
7317
7318 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
7319 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
7320 rhs = TREE_OPERAND (rhs, 0);
7321
7322 rhstype = TREE_TYPE (rhs);
7323 coder = TREE_CODE (rhstype);
7324
7325 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
7326 && vector_types_convertible_p (type, rhstype, true))
7327 {
7328 rhs = mark_rvalue_use (rhs);
7329 return convert (type, rhs);
7330 }
7331
7332 if (rhs == error_mark_node || rhstype == error_mark_node)
7333 return error_mark_node;
7334 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
7335 return error_mark_node;
7336
7337 /* The RHS of an assignment cannot have void type. */
7338 if (coder == VOID_TYPE)
7339 {
7340 if (complain & tf_error)
7341 error ("void value not ignored as it ought to be");
7342 return error_mark_node;
7343 }
7344
7345 /* Simplify the RHS if possible. */
7346 if (TREE_CODE (rhs) == CONST_DECL)
7347 rhs = DECL_INITIAL (rhs);
7348
7349 if (c_dialect_objc ())
7350 {
7351 int parmno;
7352 tree selector;
7353 tree rname = fndecl;
7354
7355 switch (errtype)
7356 {
7357 case ICR_ASSIGN:
7358 parmno = -1;
7359 break;
7360 case ICR_INIT:
7361 parmno = -2;
7362 break;
7363 default:
7364 selector = objc_message_selector ();
7365 parmno = parmnum;
7366 if (selector && parmno > 1)
7367 {
7368 rname = selector;
7369 parmno -= 1;
7370 }
7371 }
7372
7373 if (objc_compare_types (type, rhstype, parmno, rname))
7374 {
7375 rhs = mark_rvalue_use (rhs);
7376 return convert (type, rhs);
7377 }
7378 }
7379
7380 /* [expr.ass]
7381
7382 The expression is implicitly converted (clause _conv_) to the
7383 cv-unqualified type of the left operand.
7384
7385 We allow bad conversions here because by the time we get to this point
7386 we are committed to doing the conversion. If we end up doing a bad
7387 conversion, convert_like will complain. */
7388 if (!can_convert_arg_bad (type, rhstype, rhs, flags))
7389 {
7390 /* When -Wno-pmf-conversions is use, we just silently allow
7391 conversions from pointers-to-members to plain pointers. If
7392 the conversion doesn't work, cp_convert will complain. */
7393 if (!warn_pmf2ptr
7394 && TYPE_PTR_P (type)
7395 && TYPE_PTRMEMFUNC_P (rhstype))
7396 rhs = cp_convert (strip_top_quals (type), rhs);
7397 else
7398 {
7399 if (complain & tf_error)
7400 {
7401 /* If the right-hand side has unknown type, then it is an
7402 overloaded function. Call instantiate_type to get error
7403 messages. */
7404 if (rhstype == unknown_type_node)
7405 instantiate_type (type, rhs, tf_warning_or_error);
7406 else if (fndecl)
7407 error ("cannot convert %qT to %qT for argument %qP to %qD",
7408 rhstype, type, parmnum, fndecl);
7409 else
7410 switch (errtype)
7411 {
7412 case ICR_DEFAULT_ARGUMENT:
7413 error ("cannot convert %qT to %qT in default argument",
7414 rhstype, type);
7415 break;
7416 case ICR_ARGPASS:
7417 error ("cannot convert %qT to %qT in argument passing",
7418 rhstype, type);
7419 break;
7420 case ICR_CONVERTING:
7421 error ("cannot convert %qT to %qT",
7422 rhstype, type);
7423 break;
7424 case ICR_INIT:
7425 error ("cannot convert %qT to %qT in initialization",
7426 rhstype, type);
7427 break;
7428 case ICR_RETURN:
7429 error ("cannot convert %qT to %qT in return",
7430 rhstype, type);
7431 break;
7432 case ICR_ASSIGN:
7433 error ("cannot convert %qT to %qT in assignment",
7434 rhstype, type);
7435 break;
7436 default:
7437 gcc_unreachable();
7438 }
7439 }
7440 return error_mark_node;
7441 }
7442 }
7443 if (warn_missing_format_attribute)
7444 {
7445 const enum tree_code codel = TREE_CODE (type);
7446 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
7447 && coder == codel
7448 && check_missing_format_attribute (type, rhstype)
7449 && (complain & tf_warning))
7450 switch (errtype)
7451 {
7452 case ICR_ARGPASS:
7453 case ICR_DEFAULT_ARGUMENT:
7454 if (fndecl)
7455 warning (OPT_Wmissing_format_attribute,
7456 "parameter %qP of %qD might be a candidate "
7457 "for a format attribute", parmnum, fndecl);
7458 else
7459 warning (OPT_Wmissing_format_attribute,
7460 "parameter might be a candidate "
7461 "for a format attribute");
7462 break;
7463 case ICR_CONVERTING:
7464 warning (OPT_Wmissing_format_attribute,
7465 "target of conversion might be might be a candidate "
7466 "for a format attribute");
7467 break;
7468 case ICR_INIT:
7469 warning (OPT_Wmissing_format_attribute,
7470 "target of initialization might be a candidate "
7471 "for a format attribute");
7472 break;
7473 case ICR_RETURN:
7474 warning (OPT_Wmissing_format_attribute,
7475 "return type might be a candidate "
7476 "for a format attribute");
7477 break;
7478 case ICR_ASSIGN:
7479 warning (OPT_Wmissing_format_attribute,
7480 "left-hand side of assignment might be a candidate "
7481 "for a format attribute");
7482 break;
7483 default:
7484 gcc_unreachable();
7485 }
7486 }
7487
7488 /* If -Wparentheses, warn about a = b = c when a has type bool and b
7489 does not. */
7490 if (warn_parentheses
7491 && TREE_CODE (type) == BOOLEAN_TYPE
7492 && TREE_CODE (rhs) == MODIFY_EXPR
7493 && !TREE_NO_WARNING (rhs)
7494 && TREE_CODE (TREE_TYPE (rhs)) != BOOLEAN_TYPE
7495 && (complain & tf_warning))
7496 {
7497 location_t loc = EXPR_HAS_LOCATION (rhs)
7498 ? EXPR_LOCATION (rhs) : input_location;
7499
7500 warning_at (loc, OPT_Wparentheses,
7501 "suggest parentheses around assignment used as truth value");
7502 TREE_NO_WARNING (rhs) = 1;
7503 }
7504
7505 return perform_implicit_conversion_flags (strip_top_quals (type), rhs,
7506 complain, flags);
7507 }
7508
7509 /* Convert RHS to be of type TYPE.
7510 If EXP is nonzero, it is the target of the initialization.
7511 ERRTYPE indicates what kind of error the implicit conversion is.
7512
7513 Two major differences between the behavior of
7514 `convert_for_assignment' and `convert_for_initialization'
7515 are that references are bashed in the former, while
7516 copied in the latter, and aggregates are assigned in
7517 the former (operator=) while initialized in the
7518 latter (X(X&)).
7519
7520 If using constructor make sure no conversion operator exists, if one does
7521 exist, an ambiguity exists.
7522
7523 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
7524
7525 tree
7526 convert_for_initialization (tree exp, tree type, tree rhs, int flags,
7527 impl_conv_rhs errtype, tree fndecl, int parmnum,
7528 tsubst_flags_t complain)
7529 {
7530 enum tree_code codel = TREE_CODE (type);
7531 tree rhstype;
7532 enum tree_code coder;
7533
7534 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
7535 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
7536 if (TREE_CODE (rhs) == NOP_EXPR
7537 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
7538 && codel != REFERENCE_TYPE)
7539 rhs = TREE_OPERAND (rhs, 0);
7540
7541 if (type == error_mark_node
7542 || rhs == error_mark_node
7543 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
7544 return error_mark_node;
7545
7546 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
7547 && TREE_CODE (type) != ARRAY_TYPE
7548 && (TREE_CODE (type) != REFERENCE_TYPE
7549 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
7550 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
7551 && (TREE_CODE (type) != REFERENCE_TYPE
7552 || TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE))
7553 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
7554 rhs = decay_conversion (rhs);
7555
7556 rhstype = TREE_TYPE (rhs);
7557 coder = TREE_CODE (rhstype);
7558
7559 if (coder == ERROR_MARK)
7560 return error_mark_node;
7561
7562 /* We accept references to incomplete types, so we can
7563 return here before checking if RHS is of complete type. */
7564
7565 if (codel == REFERENCE_TYPE)
7566 {
7567 /* This should eventually happen in convert_arguments. */
7568 int savew = 0, savee = 0;
7569
7570 if (fndecl)
7571 savew = warningcount, savee = errorcount;
7572 rhs = initialize_reference (type, rhs, /*decl=*/NULL_TREE,
7573 /*cleanup=*/NULL, complain);
7574 if (fndecl)
7575 {
7576 if (warningcount > savew)
7577 warning (0, "in passing argument %P of %q+D", parmnum, fndecl);
7578 else if (errorcount > savee)
7579 error ("in passing argument %P of %q+D", parmnum, fndecl);
7580 }
7581 return rhs;
7582 }
7583
7584 if (exp != 0)
7585 exp = require_complete_type (exp);
7586 if (exp == error_mark_node)
7587 return error_mark_node;
7588
7589 rhstype = non_reference (rhstype);
7590
7591 type = complete_type (type);
7592
7593 if (DIRECT_INIT_EXPR_P (type, rhs))
7594 /* Don't try to do copy-initialization if we already have
7595 direct-initialization. */
7596 return rhs;
7597
7598 if (MAYBE_CLASS_TYPE_P (type))
7599 return ocp_convert (type, rhs, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
7600
7601 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum,
7602 complain, flags);
7603 }
7604 \f
7605 /* If RETVAL is the address of, or a reference to, a local variable or
7606 temporary give an appropriate warning. */
7607
7608 static void
7609 maybe_warn_about_returning_address_of_local (tree retval)
7610 {
7611 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
7612 tree whats_returned = retval;
7613
7614 for (;;)
7615 {
7616 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
7617 whats_returned = TREE_OPERAND (whats_returned, 1);
7618 else if (CONVERT_EXPR_P (whats_returned)
7619 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR)
7620 whats_returned = TREE_OPERAND (whats_returned, 0);
7621 else
7622 break;
7623 }
7624
7625 if (TREE_CODE (whats_returned) != ADDR_EXPR)
7626 return;
7627 whats_returned = TREE_OPERAND (whats_returned, 0);
7628
7629 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7630 {
7631 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
7632 || TREE_CODE (whats_returned) == TARGET_EXPR)
7633 {
7634 warning (0, "returning reference to temporary");
7635 return;
7636 }
7637 if (TREE_CODE (whats_returned) == VAR_DECL
7638 && DECL_NAME (whats_returned)
7639 && TEMP_NAME_P (DECL_NAME (whats_returned)))
7640 {
7641 warning (0, "reference to non-lvalue returned");
7642 return;
7643 }
7644 }
7645
7646 while (TREE_CODE (whats_returned) == COMPONENT_REF
7647 || TREE_CODE (whats_returned) == ARRAY_REF)
7648 whats_returned = TREE_OPERAND (whats_returned, 0);
7649
7650 if (DECL_P (whats_returned)
7651 && DECL_NAME (whats_returned)
7652 && DECL_FUNCTION_SCOPE_P (whats_returned)
7653 && !(TREE_STATIC (whats_returned)
7654 || TREE_PUBLIC (whats_returned)))
7655 {
7656 if (TREE_CODE (valtype) == REFERENCE_TYPE)
7657 warning (0, "reference to local variable %q+D returned",
7658 whats_returned);
7659 else
7660 warning (0, "address of local variable %q+D returned",
7661 whats_returned);
7662 return;
7663 }
7664 }
7665
7666 /* Check that returning RETVAL from the current function is valid.
7667 Return an expression explicitly showing all conversions required to
7668 change RETVAL into the function return type, and to assign it to
7669 the DECL_RESULT for the function. Set *NO_WARNING to true if
7670 code reaches end of non-void function warning shouldn't be issued
7671 on this RETURN_EXPR. */
7672
7673 tree
7674 check_return_expr (tree retval, bool *no_warning)
7675 {
7676 tree result;
7677 /* The type actually returned by the function, after any
7678 promotions. */
7679 tree valtype;
7680 int fn_returns_value_p;
7681 bool named_return_value_okay_p;
7682
7683 *no_warning = false;
7684
7685 /* A `volatile' function is one that isn't supposed to return, ever.
7686 (This is a G++ extension, used to get better code for functions
7687 that call the `volatile' function.) */
7688 if (TREE_THIS_VOLATILE (current_function_decl))
7689 warning (0, "function declared %<noreturn%> has a %<return%> statement");
7690
7691 /* Check for various simple errors. */
7692 if (DECL_DESTRUCTOR_P (current_function_decl))
7693 {
7694 if (retval)
7695 error ("returning a value from a destructor");
7696 return NULL_TREE;
7697 }
7698 else if (DECL_CONSTRUCTOR_P (current_function_decl))
7699 {
7700 if (in_function_try_handler)
7701 /* If a return statement appears in a handler of the
7702 function-try-block of a constructor, the program is ill-formed. */
7703 error ("cannot return from a handler of a function-try-block of a constructor");
7704 else if (retval)
7705 /* You can't return a value from a constructor. */
7706 error ("returning a value from a constructor");
7707 return NULL_TREE;
7708 }
7709
7710 /* As an extension, deduce lambda return type from a return statement
7711 anywhere in the body. */
7712 if (retval && LAMBDA_FUNCTION_P (current_function_decl))
7713 {
7714 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
7715 if (LAMBDA_EXPR_DEDUCE_RETURN_TYPE_P (lambda))
7716 {
7717 tree type = lambda_return_type (retval);
7718 tree oldtype = LAMBDA_EXPR_RETURN_TYPE (lambda);
7719
7720 if (VOID_TYPE_P (type))
7721 { /* Nothing. */ }
7722 else if (oldtype == NULL_TREE)
7723 {
7724 pedwarn (input_location, OPT_pedantic, "lambda return type "
7725 "can only be deduced when the return statement is "
7726 "the only statement in the function body");
7727 apply_lambda_return_type (lambda, type);
7728 }
7729 else if (!same_type_p (type, oldtype))
7730 error ("inconsistent types %qT and %qT deduced for "
7731 "lambda return type", type, oldtype);
7732 }
7733 }
7734
7735 if (processing_template_decl)
7736 {
7737 current_function_returns_value = 1;
7738 if (check_for_bare_parameter_packs (retval))
7739 retval = error_mark_node;
7740 return retval;
7741 }
7742
7743 /* When no explicit return-value is given in a function with a named
7744 return value, the named return value is used. */
7745 result = DECL_RESULT (current_function_decl);
7746 valtype = TREE_TYPE (result);
7747 gcc_assert (valtype != NULL_TREE);
7748 fn_returns_value_p = !VOID_TYPE_P (valtype);
7749 if (!retval && DECL_NAME (result) && fn_returns_value_p)
7750 retval = result;
7751
7752 /* Check for a return statement with no return value in a function
7753 that's supposed to return a value. */
7754 if (!retval && fn_returns_value_p)
7755 {
7756 permerror (input_location, "return-statement with no value, in function returning %qT",
7757 valtype);
7758 /* Clear this, so finish_function won't say that we reach the
7759 end of a non-void function (which we don't, we gave a
7760 return!). */
7761 current_function_returns_null = 0;
7762 /* And signal caller that TREE_NO_WARNING should be set on the
7763 RETURN_EXPR to avoid control reaches end of non-void function
7764 warnings in tree-cfg.c. */
7765 *no_warning = true;
7766 }
7767 /* Check for a return statement with a value in a function that
7768 isn't supposed to return a value. */
7769 else if (retval && !fn_returns_value_p)
7770 {
7771 if (VOID_TYPE_P (TREE_TYPE (retval)))
7772 /* You can return a `void' value from a function of `void'
7773 type. In that case, we have to evaluate the expression for
7774 its side-effects. */
7775 finish_expr_stmt (retval);
7776 else
7777 permerror (input_location, "return-statement with a value, in function "
7778 "returning 'void'");
7779 current_function_returns_null = 1;
7780
7781 /* There's really no value to return, after all. */
7782 return NULL_TREE;
7783 }
7784 else if (!retval)
7785 /* Remember that this function can sometimes return without a
7786 value. */
7787 current_function_returns_null = 1;
7788 else
7789 /* Remember that this function did return a value. */
7790 current_function_returns_value = 1;
7791
7792 /* Check for erroneous operands -- but after giving ourselves a
7793 chance to provide an error about returning a value from a void
7794 function. */
7795 if (error_operand_p (retval))
7796 {
7797 current_function_return_value = error_mark_node;
7798 return error_mark_node;
7799 }
7800
7801 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
7802 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
7803 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
7804 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
7805 && ! flag_check_new
7806 && retval && null_ptr_cst_p (retval))
7807 warning (0, "%<operator new%> must not return NULL unless it is "
7808 "declared %<throw()%> (or -fcheck-new is in effect)");
7809
7810 /* Effective C++ rule 15. See also start_function. */
7811 if (warn_ecpp
7812 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR))
7813 {
7814 bool warn = true;
7815
7816 /* The function return type must be a reference to the current
7817 class. */
7818 if (TREE_CODE (valtype) == REFERENCE_TYPE
7819 && same_type_ignoring_top_level_qualifiers_p
7820 (TREE_TYPE (valtype), TREE_TYPE (current_class_ref)))
7821 {
7822 /* Returning '*this' is obviously OK. */
7823 if (retval == current_class_ref)
7824 warn = false;
7825 /* If we are calling a function whose return type is the same of
7826 the current class reference, it is ok. */
7827 else if (TREE_CODE (retval) == INDIRECT_REF
7828 && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
7829 warn = false;
7830 }
7831
7832 if (warn)
7833 warning (OPT_Weffc__, "%<operator=%> should return a reference to %<*this%>");
7834 }
7835
7836 /* The fabled Named Return Value optimization, as per [class.copy]/15:
7837
7838 [...] For a function with a class return type, if the expression
7839 in the return statement is the name of a local object, and the cv-
7840 unqualified type of the local object is the same as the function
7841 return type, an implementation is permitted to omit creating the tem-
7842 porary object to hold the function return value [...]
7843
7844 So, if this is a value-returning function that always returns the same
7845 local variable, remember it.
7846
7847 It might be nice to be more flexible, and choose the first suitable
7848 variable even if the function sometimes returns something else, but
7849 then we run the risk of clobbering the variable we chose if the other
7850 returned expression uses the chosen variable somehow. And people expect
7851 this restriction, anyway. (jason 2000-11-19)
7852
7853 See finish_function and finalize_nrv for the rest of this optimization. */
7854
7855 named_return_value_okay_p =
7856 (retval != NULL_TREE
7857 /* Must be a local, automatic variable. */
7858 && TREE_CODE (retval) == VAR_DECL
7859 && DECL_CONTEXT (retval) == current_function_decl
7860 && ! TREE_STATIC (retval)
7861 && ! DECL_ANON_UNION_VAR_P (retval)
7862 && (DECL_ALIGN (retval)
7863 >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
7864 /* The cv-unqualified type of the returned value must be the
7865 same as the cv-unqualified return type of the
7866 function. */
7867 && same_type_p ((TYPE_MAIN_VARIANT (TREE_TYPE (retval))),
7868 (TYPE_MAIN_VARIANT
7869 (TREE_TYPE (TREE_TYPE (current_function_decl)))))
7870 /* And the returned value must be non-volatile. */
7871 && ! TYPE_VOLATILE (TREE_TYPE (retval)));
7872
7873 if (fn_returns_value_p && flag_elide_constructors)
7874 {
7875 if (named_return_value_okay_p
7876 && (current_function_return_value == NULL_TREE
7877 || current_function_return_value == retval))
7878 current_function_return_value = retval;
7879 else
7880 current_function_return_value = error_mark_node;
7881 }
7882
7883 /* We don't need to do any conversions when there's nothing being
7884 returned. */
7885 if (!retval)
7886 return NULL_TREE;
7887
7888 /* Do any required conversions. */
7889 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
7890 /* No conversions are required. */
7891 ;
7892 else
7893 {
7894 /* The type the function is declared to return. */
7895 tree functype = TREE_TYPE (TREE_TYPE (current_function_decl));
7896 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
7897
7898 /* The functype's return type will have been set to void, if it
7899 was an incomplete type. Just treat this as 'return;' */
7900 if (VOID_TYPE_P (functype))
7901 return error_mark_node;
7902
7903 /* Under C++0x [12.8/16 class.copy], a returned lvalue is sometimes
7904 treated as an rvalue for the purposes of overload resolution to
7905 favor move constructors over copy constructors. */
7906 if ((cxx_dialect != cxx98)
7907 && named_return_value_okay_p
7908 /* The variable must not have the `volatile' qualifier. */
7909 && !CP_TYPE_VOLATILE_P (TREE_TYPE (retval))
7910 /* The return type must be a class type. */
7911 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
7912 flags = flags | LOOKUP_PREFER_RVALUE;
7913
7914 /* First convert the value to the function's return type, then
7915 to the type of return value's location to handle the
7916 case that functype is smaller than the valtype. */
7917 retval = convert_for_initialization
7918 (NULL_TREE, functype, retval, flags, ICR_RETURN, NULL_TREE, 0,
7919 tf_warning_or_error);
7920 retval = convert (valtype, retval);
7921
7922 /* If the conversion failed, treat this just like `return;'. */
7923 if (retval == error_mark_node)
7924 return retval;
7925 /* We can't initialize a register from a AGGR_INIT_EXPR. */
7926 else if (! cfun->returns_struct
7927 && TREE_CODE (retval) == TARGET_EXPR
7928 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
7929 retval = build2 (COMPOUND_EXPR, TREE_TYPE (retval), retval,
7930 TREE_OPERAND (retval, 0));
7931 else
7932 maybe_warn_about_returning_address_of_local (retval);
7933 }
7934
7935 /* Actually copy the value returned into the appropriate location. */
7936 if (retval && retval != result)
7937 retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
7938
7939 return retval;
7940 }
7941
7942 \f
7943 /* Returns nonzero if the pointer-type FROM can be converted to the
7944 pointer-type TO via a qualification conversion. If CONSTP is -1,
7945 then we return nonzero if the pointers are similar, and the
7946 cv-qualification signature of FROM is a proper subset of that of TO.
7947
7948 If CONSTP is positive, then all outer pointers have been
7949 const-qualified. */
7950
7951 static int
7952 comp_ptr_ttypes_real (tree to, tree from, int constp)
7953 {
7954 bool to_more_cv_qualified = false;
7955 bool is_opaque_pointer = false;
7956
7957 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7958 {
7959 if (TREE_CODE (to) != TREE_CODE (from))
7960 return 0;
7961
7962 if (TREE_CODE (from) == OFFSET_TYPE
7963 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
7964 TYPE_OFFSET_BASETYPE (to)))
7965 return 0;
7966
7967 /* Const and volatile mean something different for function types,
7968 so the usual checks are not appropriate. */
7969 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7970 {
7971 /* In Objective-C++, some types may have been 'volatilized' by
7972 the compiler for EH; when comparing them here, the volatile
7973 qualification must be ignored. */
7974 bool objc_quals_match = objc_type_quals_match (to, from);
7975
7976 if (!at_least_as_qualified_p (to, from) && !objc_quals_match)
7977 return 0;
7978
7979 if (!at_least_as_qualified_p (from, to) && !objc_quals_match)
7980 {
7981 if (constp == 0)
7982 return 0;
7983 to_more_cv_qualified = true;
7984 }
7985
7986 if (constp > 0)
7987 constp &= TYPE_READONLY (to);
7988 }
7989
7990 if (TREE_CODE (to) == VECTOR_TYPE)
7991 is_opaque_pointer = vector_targets_convertible_p (to, from);
7992
7993 if (TREE_CODE (to) != POINTER_TYPE && !TYPE_PTRMEM_P (to))
7994 return ((constp >= 0 || to_more_cv_qualified)
7995 && (is_opaque_pointer
7996 || same_type_ignoring_top_level_qualifiers_p (to, from)));
7997 }
7998 }
7999
8000 /* When comparing, say, char ** to char const **, this function takes
8001 the 'char *' and 'char const *'. Do not pass non-pointer/reference
8002 types to this function. */
8003
8004 int
8005 comp_ptr_ttypes (tree to, tree from)
8006 {
8007 return comp_ptr_ttypes_real (to, from, 1);
8008 }
8009
8010 /* Returns true iff FNTYPE is a non-class type that involves
8011 error_mark_node. We can get FUNCTION_TYPE with buried error_mark_node
8012 if a parameter type is ill-formed. */
8013
8014 bool
8015 error_type_p (const_tree type)
8016 {
8017 tree t;
8018
8019 switch (TREE_CODE (type))
8020 {
8021 case ERROR_MARK:
8022 return true;
8023
8024 case POINTER_TYPE:
8025 case REFERENCE_TYPE:
8026 case OFFSET_TYPE:
8027 return error_type_p (TREE_TYPE (type));
8028
8029 case FUNCTION_TYPE:
8030 case METHOD_TYPE:
8031 if (error_type_p (TREE_TYPE (type)))
8032 return true;
8033 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
8034 if (error_type_p (TREE_VALUE (t)))
8035 return true;
8036 return false;
8037
8038 case RECORD_TYPE:
8039 if (TYPE_PTRMEMFUNC_P (type))
8040 return error_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type));
8041 return false;
8042
8043 default:
8044 return false;
8045 }
8046 }
8047
8048 /* Returns 1 if to and from are (possibly multi-level) pointers to the same
8049 type or inheritance-related types, regardless of cv-quals. */
8050
8051 int
8052 ptr_reasonably_similar (const_tree to, const_tree from)
8053 {
8054 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8055 {
8056 /* Any target type is similar enough to void. */
8057 if (TREE_CODE (to) == VOID_TYPE)
8058 return !error_type_p (from);
8059 if (TREE_CODE (from) == VOID_TYPE)
8060 return !error_type_p (to);
8061
8062 if (TREE_CODE (to) != TREE_CODE (from))
8063 return 0;
8064
8065 if (TREE_CODE (from) == OFFSET_TYPE
8066 && comptypes (TYPE_OFFSET_BASETYPE (to),
8067 TYPE_OFFSET_BASETYPE (from),
8068 COMPARE_BASE | COMPARE_DERIVED))
8069 continue;
8070
8071 if (TREE_CODE (to) == VECTOR_TYPE
8072 && vector_types_convertible_p (to, from, false))
8073 return 1;
8074
8075 if (TREE_CODE (to) == INTEGER_TYPE
8076 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
8077 return 1;
8078
8079 if (TREE_CODE (to) == FUNCTION_TYPE)
8080 return !error_type_p (to) && !error_type_p (from);
8081
8082 if (TREE_CODE (to) != POINTER_TYPE)
8083 return comptypes
8084 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
8085 COMPARE_BASE | COMPARE_DERIVED);
8086 }
8087 }
8088
8089 /* Return true if TO and FROM (both of which are POINTER_TYPEs or
8090 pointer-to-member types) are the same, ignoring cv-qualification at
8091 all levels. */
8092
8093 bool
8094 comp_ptr_ttypes_const (tree to, tree from)
8095 {
8096 bool is_opaque_pointer = false;
8097
8098 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
8099 {
8100 if (TREE_CODE (to) != TREE_CODE (from))
8101 return false;
8102
8103 if (TREE_CODE (from) == OFFSET_TYPE
8104 && same_type_p (TYPE_OFFSET_BASETYPE (from),
8105 TYPE_OFFSET_BASETYPE (to)))
8106 continue;
8107
8108 if (TREE_CODE (to) == VECTOR_TYPE)
8109 is_opaque_pointer = vector_targets_convertible_p (to, from);
8110
8111 if (TREE_CODE (to) != POINTER_TYPE)
8112 return (is_opaque_pointer
8113 || same_type_ignoring_top_level_qualifiers_p (to, from));
8114 }
8115 }
8116
8117 /* Returns the type qualifiers for this type, including the qualifiers on the
8118 elements for an array type. */
8119
8120 int
8121 cp_type_quals (const_tree type)
8122 {
8123 int quals;
8124 /* This CONST_CAST is okay because strip_array_types returns its
8125 argument unmodified and we assign it to a const_tree. */
8126 type = strip_array_types (CONST_CAST_TREE (type));
8127 if (type == error_mark_node
8128 /* Quals on a FUNCTION_TYPE are memfn quals. */
8129 || TREE_CODE (type) == FUNCTION_TYPE)
8130 return TYPE_UNQUALIFIED;
8131 quals = TYPE_QUALS (type);
8132 /* METHOD and REFERENCE_TYPEs should never have quals. */
8133 gcc_assert ((TREE_CODE (type) != METHOD_TYPE
8134 && TREE_CODE (type) != REFERENCE_TYPE)
8135 || ((quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE))
8136 == TYPE_UNQUALIFIED));
8137 return quals;
8138 }
8139
8140 /* Returns the function-cv-quals for TYPE, which must be a FUNCTION_TYPE or
8141 METHOD_TYPE. */
8142
8143 int
8144 type_memfn_quals (const_tree type)
8145 {
8146 if (TREE_CODE (type) == FUNCTION_TYPE)
8147 return TYPE_QUALS (type);
8148 else if (TREE_CODE (type) == METHOD_TYPE)
8149 return cp_type_quals (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))));
8150 else
8151 gcc_unreachable ();
8152 }
8153
8154 /* Returns the FUNCTION_TYPE TYPE with its function-cv-quals changed to
8155 MEMFN_QUALS. */
8156
8157 tree
8158 apply_memfn_quals (tree type, cp_cv_quals memfn_quals)
8159 {
8160 /* Could handle METHOD_TYPE here if necessary. */
8161 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
8162 if (TYPE_QUALS (type) == memfn_quals)
8163 return type;
8164 /* This should really have a different TYPE_MAIN_VARIANT, but that gets
8165 complex. */
8166 return build_qualified_type (type, memfn_quals);
8167 }
8168
8169 /* Returns nonzero if TYPE is const or volatile. */
8170
8171 bool
8172 cv_qualified_p (const_tree type)
8173 {
8174 int quals = cp_type_quals (type);
8175 return (quals & (TYPE_QUAL_CONST|TYPE_QUAL_VOLATILE)) != 0;
8176 }
8177
8178 /* Returns nonzero if the TYPE contains a mutable member. */
8179
8180 bool
8181 cp_has_mutable_p (const_tree type)
8182 {
8183 /* This CONST_CAST is okay because strip_array_types returns its
8184 argument unmodified and we assign it to a const_tree. */
8185 type = strip_array_types (CONST_CAST_TREE(type));
8186
8187 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
8188 }
8189
8190 /* Set TREE_READONLY and TREE_VOLATILE on DECL as indicated by the
8191 TYPE_QUALS. For a VAR_DECL, this may be an optimistic
8192 approximation. In particular, consider:
8193
8194 int f();
8195 struct S { int i; };
8196 const S s = { f(); }
8197
8198 Here, we will make "s" as TREE_READONLY (because it is declared
8199 "const") -- only to reverse ourselves upon seeing that the
8200 initializer is non-constant. */
8201
8202 void
8203 cp_apply_type_quals_to_decl (int type_quals, tree decl)
8204 {
8205 tree type = TREE_TYPE (decl);
8206
8207 if (type == error_mark_node)
8208 return;
8209
8210 if (TREE_CODE (decl) == TYPE_DECL)
8211 return;
8212
8213 gcc_assert (!(TREE_CODE (type) == FUNCTION_TYPE
8214 && type_quals != TYPE_UNQUALIFIED));
8215
8216 /* Avoid setting TREE_READONLY incorrectly. */
8217 if (/* If the object has a constructor, the constructor may modify
8218 the object. */
8219 TYPE_NEEDS_CONSTRUCTING (type)
8220 /* If the type isn't complete, we don't know yet if it will need
8221 constructing. */
8222 || !COMPLETE_TYPE_P (type)
8223 /* If the type has a mutable component, that component might be
8224 modified. */
8225 || TYPE_HAS_MUTABLE_P (type))
8226 type_quals &= ~TYPE_QUAL_CONST;
8227
8228 c_apply_type_quals_to_decl (type_quals, decl);
8229 }
8230
8231 /* Subroutine of casts_away_constness. Make T1 and T2 point at
8232 exemplar types such that casting T1 to T2 is casting away constness
8233 if and only if there is no implicit conversion from T1 to T2. */
8234
8235 static void
8236 casts_away_constness_r (tree *t1, tree *t2)
8237 {
8238 int quals1;
8239 int quals2;
8240
8241 /* [expr.const.cast]
8242
8243 For multi-level pointer to members and multi-level mixed pointers
8244 and pointers to members (conv.qual), the "member" aspect of a
8245 pointer to member level is ignored when determining if a const
8246 cv-qualifier has been cast away. */
8247 /* [expr.const.cast]
8248
8249 For two pointer types:
8250
8251 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
8252 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
8253 K is min(N,M)
8254
8255 casting from X1 to X2 casts away constness if, for a non-pointer
8256 type T there does not exist an implicit conversion (clause
8257 _conv_) from:
8258
8259 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
8260
8261 to
8262
8263 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
8264 if ((!TYPE_PTR_P (*t1) && !TYPE_PTRMEM_P (*t1))
8265 || (!TYPE_PTR_P (*t2) && !TYPE_PTRMEM_P (*t2)))
8266 {
8267 *t1 = cp_build_qualified_type (void_type_node,
8268 cp_type_quals (*t1));
8269 *t2 = cp_build_qualified_type (void_type_node,
8270 cp_type_quals (*t2));
8271 return;
8272 }
8273
8274 quals1 = cp_type_quals (*t1);
8275 quals2 = cp_type_quals (*t2);
8276
8277 if (TYPE_PTRMEM_P (*t1))
8278 *t1 = TYPE_PTRMEM_POINTED_TO_TYPE (*t1);
8279 else
8280 *t1 = TREE_TYPE (*t1);
8281 if (TYPE_PTRMEM_P (*t2))
8282 *t2 = TYPE_PTRMEM_POINTED_TO_TYPE (*t2);
8283 else
8284 *t2 = TREE_TYPE (*t2);
8285
8286 casts_away_constness_r (t1, t2);
8287 *t1 = build_pointer_type (*t1);
8288 *t2 = build_pointer_type (*t2);
8289 *t1 = cp_build_qualified_type (*t1, quals1);
8290 *t2 = cp_build_qualified_type (*t2, quals2);
8291 }
8292
8293 /* Returns nonzero if casting from TYPE1 to TYPE2 casts away
8294 constness.
8295
8296 ??? This function returns non-zero if casting away qualifiers not
8297 just const. We would like to return to the caller exactly which
8298 qualifiers are casted away to give more accurate diagnostics.
8299 */
8300
8301 static bool
8302 casts_away_constness (tree t1, tree t2)
8303 {
8304 if (TREE_CODE (t2) == REFERENCE_TYPE)
8305 {
8306 /* [expr.const.cast]
8307
8308 Casting from an lvalue of type T1 to an lvalue of type T2
8309 using a reference cast casts away constness if a cast from an
8310 rvalue of type "pointer to T1" to the type "pointer to T2"
8311 casts away constness. */
8312 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
8313 return casts_away_constness (build_pointer_type (t1),
8314 build_pointer_type (TREE_TYPE (t2)));
8315 }
8316
8317 if (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
8318 /* [expr.const.cast]
8319
8320 Casting from an rvalue of type "pointer to data member of X
8321 of type T1" to the type "pointer to data member of Y of type
8322 T2" casts away constness if a cast from an rvalue of type
8323 "pointer to T1" to the type "pointer to T2" casts away
8324 constness. */
8325 return casts_away_constness
8326 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
8327 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)));
8328
8329 /* Casting away constness is only something that makes sense for
8330 pointer or reference types. */
8331 if (TREE_CODE (t1) != POINTER_TYPE
8332 || TREE_CODE (t2) != POINTER_TYPE)
8333 return false;
8334
8335 /* Top-level qualifiers don't matter. */
8336 t1 = TYPE_MAIN_VARIANT (t1);
8337 t2 = TYPE_MAIN_VARIANT (t2);
8338 casts_away_constness_r (&t1, &t2);
8339 if (!can_convert (t2, t1))
8340 return true;
8341
8342 return false;
8343 }
8344
8345 /* If T is a REFERENCE_TYPE return the type to which T refers.
8346 Otherwise, return T itself. */
8347
8348 tree
8349 non_reference (tree t)
8350 {
8351 if (TREE_CODE (t) == REFERENCE_TYPE)
8352 t = TREE_TYPE (t);
8353 return t;
8354 }
8355
8356
8357 /* Return nonzero if REF is an lvalue valid for this language;
8358 otherwise, print an error message and return zero. USE says
8359 how the lvalue is being used and so selects the error message. */
8360
8361 int
8362 lvalue_or_else (tree ref, enum lvalue_use use, tsubst_flags_t complain)
8363 {
8364 int win = real_lvalue_p (ref);
8365
8366 if (!win && (complain & tf_error))
8367 lvalue_error (use);
8368
8369 return win;
8370 }
8371