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