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