]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/typeck.c
ChangeLog: Fix typos.
[thirdparty/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,
86ac0575 3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
8d08fdba
MS
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
5
f5adbb8d 6This file is part of GCC.
8d08fdba 7
f5adbb8d 8GCC is free software; you can redistribute it and/or modify
8d08fdba
MS
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
f5adbb8d 13GCC is distributed in the hope that it will be useful,
8d08fdba
MS
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
f5adbb8d 19along with GCC; see the file COPYING. If not, write to
6bc06b8f
RK
20the Free Software Foundation, 59 Temple Place - Suite 330,
21Boston, MA 02111-1307, USA. */
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
27 checks, and some optimization.
28
29 There are also routines to build RETURN_STMT nodes and CASE_STMT nodes,
30 and to process initializations in declarations (since they work
31 like a strange sort of assignment). */
32
8d08fdba 33#include "config.h"
8d052bc7 34#include "system.h"
4977bab6
ZW
35#include "coretypes.h"
36#include "tm.h"
8d08fdba
MS
37#include "tree.h"
38#include "rtl.h"
8f17b5c5 39#include "expr.h"
8d08fdba 40#include "cp-tree.h"
a091679a 41#include "tm_p.h"
8d08fdba 42#include "flags.h"
e8abc66f 43#include "output.h"
12027a89 44#include "toplev.h"
2a2b2d43 45#include "diagnostic.h"
672a6f42 46#include "target.h"
7b6d72fc 47#include "convert.h"
8d08fdba 48
acd8e2d0
NS
49static tree convert_for_assignment (tree, tree, const char *, tree, int);
50static tree cp_pointer_int_sum (enum tree_code, tree, tree);
51static tree rationalize_conditional_expr (enum tree_code, tree);
acd8e2d0
NS
52static int comp_ptr_ttypes_real (tree, tree, int);
53static int comp_ptr_ttypes_const (tree, tree);
acd8e2d0
NS
54static bool comp_except_types (tree, tree, bool);
55static bool comp_array_types (tree, tree, bool);
56static tree common_base_type (tree, tree);
57static tree lookup_anon_field (tree, tree);
58static tree pointer_diff (tree, tree, tree);
acd8e2d0 59static tree get_delta_difference (tree, tree, int);
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);
8d08fdba 64
4d6abc1c 65/* Return the target type of TYPE, which means return T for:
8d08fdba
MS
66 T*, T&, T[], T (...), and otherwise, just T. */
67
68tree
acd8e2d0 69target_type (tree type)
8d08fdba 70{
ee76b931 71 type = non_reference (type);
8d08fdba
MS
72 while (TREE_CODE (type) == POINTER_TYPE
73 || TREE_CODE (type) == ARRAY_TYPE
74 || TREE_CODE (type) == FUNCTION_TYPE
75 || TREE_CODE (type) == METHOD_TYPE
a5ac359a 76 || TYPE_PTRMEM_P (type))
8d08fdba
MS
77 type = TREE_TYPE (type);
78 return type;
79}
80
81/* Do `exp = require_complete_type (exp);' to make sure exp
ae58fa02
MM
82 does not have an incomplete type. (That includes void types.)
83 Returns the error_mark_node if the VALUE does not have
84 complete type when this function returns. */
8d08fdba
MS
85
86tree
acd8e2d0 87require_complete_type (tree value)
8d08fdba 88{
5566b478
MS
89 tree type;
90
66543169 91 if (processing_template_decl || value == error_mark_node)
5566b478
MS
92 return value;
93
2c73f9f5
ML
94 if (TREE_CODE (value) == OVERLOAD)
95 type = unknown_type_node;
96 else
97 type = TREE_TYPE (value);
8d08fdba
MS
98
99 /* First, detect a valid value with a complete type. */
d0f062fb 100 if (COMPLETE_TYPE_P (type))
8d08fdba
MS
101 return value;
102
66543169 103 if (complete_type_or_else (type, value))
8f259df3
MM
104 return value;
105 else
ae58fa02 106 return error_mark_node;
8d08fdba
MS
107}
108
8f259df3
MM
109/* Try to complete TYPE, if it is incomplete. For example, if TYPE is
110 a template instantiation, do the instantiation. Returns TYPE,
111 whether or not it could be completed, unless something goes
112 horribly wrong, in which case the error_mark_node is returned. */
113
5566b478 114tree
acd8e2d0 115complete_type (tree type)
5566b478 116{
8857f91e
MM
117 if (type == NULL_TREE)
118 /* Rather than crash, we return something sure to cause an error
119 at some point. */
120 return error_mark_node;
121
d0f062fb 122 if (type == error_mark_node || COMPLETE_TYPE_P (type))
5566b478 123 ;
e349ee73 124 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
5566b478
MS
125 {
126 tree t = complete_type (TREE_TYPE (type));
d0f062fb 127 if (COMPLETE_TYPE_P (t) && ! processing_template_decl)
6467930b 128 layout_type (type);
c73964b2
MS
129 TYPE_NEEDS_CONSTRUCTING (type)
130 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
834c6dff
MM
131 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
132 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
5566b478 133 }
7ddedda4 134 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
e76a2646 135 instantiate_class_template (TYPE_MAIN_VARIANT (type));
5566b478
MS
136
137 return type;
138}
139
5aa3396c
JM
140/* Like complete_type, but issue an error if the TYPE cannot be completed.
141 VALUE is used for informative diagnostics. DIAG_TYPE indicates the type
142 of diagnostic: 0 for an error, 1 for a warning, 2 for a pedwarn.
66543169 143 Returns NULL_TREE if the type cannot be made complete. */
8f259df3
MM
144
145tree
acd8e2d0 146complete_type_or_diagnostic (tree type, tree value, int diag_type)
8f259df3
MM
147{
148 type = complete_type (type);
ae58fa02
MM
149 if (type == error_mark_node)
150 /* We already issued an error. */
151 return NULL_TREE;
d0f062fb 152 else if (!COMPLETE_TYPE_P (type))
8f259df3 153 {
5aa3396c 154 cxx_incomplete_type_diagnostic (value, type, diag_type);
8f259df3
MM
155 return NULL_TREE;
156 }
157 else
158 return type;
159}
160
8d08fdba 161/* Return truthvalue of whether type of EXP is instantiated. */
e92cc029 162
8d08fdba 163int
5671bf27 164type_unknown_p (tree exp)
8d08fdba 165{
2c73f9f5 166 return (TREE_CODE (exp) == OVERLOAD
a31fe44e 167 || TREE_CODE (exp) == TREE_LIST
a5ac359a 168 || TREE_TYPE (exp) == unknown_type_node);
8d08fdba
MS
169}
170
8d08fdba
MS
171\f
172/* Return the common type of two parameter lists.
173 We assume that comptypes has already been done and returned 1;
174 if that isn't so, this may crash.
175
176 As an optimization, free the space we allocate if the parameter
177 lists are already common. */
178
179tree
5671bf27 180commonparms (tree p1, tree p2)
8d08fdba
MS
181{
182 tree oldargs = p1, newargs, n;
183 int i, len;
184 int any_change = 0;
8d08fdba
MS
185
186 len = list_length (p1);
187 newargs = tree_last (p1);
188
189 if (newargs == void_list_node)
190 i = 1;
191 else
192 {
193 i = 0;
194 newargs = 0;
195 }
196
197 for (; i < len; i++)
198 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
199
200 n = newargs;
201
202 for (i = 0; p1;
203 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
204 {
205 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
206 {
8d08fdba
MS
207 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
208 any_change = 1;
209 }
210 else if (! TREE_PURPOSE (p1))
211 {
212 if (TREE_PURPOSE (p2))
213 {
214 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
215 any_change = 1;
216 }
217 }
218 else
219 {
1743ca29 220 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
a4443a08 221 any_change = 1;
8d08fdba
MS
222 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
223 }
224 if (TREE_VALUE (p1) != TREE_VALUE (p2))
225 {
226 any_change = 1;
6da794e8 227 TREE_VALUE (n) = merge_types (TREE_VALUE (p1), TREE_VALUE (p2));
8d08fdba
MS
228 }
229 else
230 TREE_VALUE (n) = TREE_VALUE (p1);
231 }
232 if (! any_change)
970d6386 233 return oldargs;
8d08fdba
MS
234
235 return newargs;
236}
237
f2ee215b
BK
238/* Given a type, perhaps copied for a typedef,
239 find the "original" version of it. */
240tree
5671bf27 241original_type (tree t)
f2ee215b
BK
242{
243 while (TYPE_NAME (t) != NULL_TREE)
244 {
245 tree x = TYPE_NAME (t);
246 if (TREE_CODE (x) != TYPE_DECL)
247 break;
248 x = DECL_ORIGINAL_TYPE (x);
249 if (x == NULL_TREE)
250 break;
251 t = x;
252 }
253 return t;
254}
255
a7a64a77 256/* T1 and T2 are arithmetic or enumeration types. Return the type
aba649ba 257 that will result from the "usual arithmetic conversions" on T1 and
a7a64a77
MM
258 T2 as described in [expr]. */
259
260tree
5671bf27 261type_after_usual_arithmetic_conversions (tree t1, tree t2)
a7a64a77
MM
262{
263 enum tree_code code1 = TREE_CODE (t1);
264 enum tree_code code2 = TREE_CODE (t2);
265 tree attributes;
266
267 /* FIXME: Attributes. */
268 my_friendly_assert (ARITHMETIC_TYPE_P (t1)
6da794e8 269 || TREE_CODE (t1) == COMPLEX_TYPE
a7a64a77
MM
270 || TREE_CODE (t1) == ENUMERAL_TYPE,
271 19990725);
272 my_friendly_assert (ARITHMETIC_TYPE_P (t2)
6da794e8 273 || TREE_CODE (t2) == COMPLEX_TYPE
a7a64a77
MM
274 || TREE_CODE (t2) == ENUMERAL_TYPE,
275 19990725);
276
6da794e8
JM
277 /* In what follows, we slightly generalize the rules given in [expr] so
278 as to deal with `long long' and `complex'. First, merge the
279 attributes. */
f6897b10 280 attributes = (*targetm.merge_type_attributes) (t1, t2);
a7a64a77 281
6da794e8
JM
282 /* If one type is complex, form the common type of the non-complex
283 components, then make that complex. Use T1 or T2 if it is the
284 required type. */
285 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
286 {
287 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
288 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
289 tree subtype
290 = type_after_usual_arithmetic_conversions (subtype1, subtype2);
291
292 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
293 return build_type_attribute_variant (t1, attributes);
294 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
295 return build_type_attribute_variant (t2, attributes);
296 else
297 return build_type_attribute_variant (build_complex_type (subtype),
298 attributes);
299 }
300
a7a64a77
MM
301 /* If only one is real, use it as the result. */
302 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
303 return build_type_attribute_variant (t1, attributes);
304 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
305 return build_type_attribute_variant (t2, attributes);
306
307 /* Perform the integral promotions. */
308 if (code1 != REAL_TYPE)
309 {
310 t1 = type_promotes_to (t1);
311 t2 = type_promotes_to (t2);
312 }
313
314 /* Both real or both integers; use the one with greater precision. */
315 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
316 return build_type_attribute_variant (t1, attributes);
317 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
318 return build_type_attribute_variant (t2, attributes);
319
2f4d058f
AH
320 /* The types are the same; no need to do anything fancy. */
321 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
322 return build_type_attribute_variant (t1, attributes);
323
a7a64a77
MM
324 if (code1 != REAL_TYPE)
325 {
7e9d4b22
JM
326 /* If one is a sizetype, use it so size_binop doesn't blow up. */
327 if (TYPE_IS_SIZETYPE (t1) > TYPE_IS_SIZETYPE (t2))
328 return build_type_attribute_variant (t1, attributes);
329 if (TYPE_IS_SIZETYPE (t2) > TYPE_IS_SIZETYPE (t1))
330 return build_type_attribute_variant (t2, attributes);
331
a7a64a77
MM
332 /* If one is unsigned long long, then convert the other to unsigned
333 long long. */
334 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_unsigned_type_node)
335 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_unsigned_type_node))
336 return build_type_attribute_variant (long_long_unsigned_type_node,
337 attributes);
338 /* If one is a long long, and the other is an unsigned long, and
339 long long can represent all the values of an unsigned long, then
340 convert to a long long. Otherwise, convert to an unsigned long
341 long. Otherwise, if either operand is long long, convert the
342 other to long long.
343
344 Since we're here, we know the TYPE_PRECISION is the same;
345 therefore converting to long long cannot represent all the values
346 of an unsigned long, so we choose unsigned long long in that
347 case. */
348 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_long_integer_type_node)
349 || same_type_p (TYPE_MAIN_VARIANT (t2), long_long_integer_type_node))
350 {
351 tree t = ((TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
352 ? long_long_unsigned_type_node
353 : long_long_integer_type_node);
354 return build_type_attribute_variant (t, attributes);
355 }
356
357 /* Go through the same procedure, but for longs. */
358 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_unsigned_type_node)
359 || same_type_p (TYPE_MAIN_VARIANT (t2), long_unsigned_type_node))
360 return build_type_attribute_variant (long_unsigned_type_node,
361 attributes);
362 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_integer_type_node)
363 || same_type_p (TYPE_MAIN_VARIANT (t2), long_integer_type_node))
364 {
365 tree t = ((TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
366 ? long_unsigned_type_node : long_integer_type_node);
367 return build_type_attribute_variant (t, attributes);
368 }
369 /* Otherwise prefer the unsigned one. */
370 if (TREE_UNSIGNED (t1))
371 return build_type_attribute_variant (t1, attributes);
372 else
373 return build_type_attribute_variant (t2, attributes);
374 }
375 else
376 {
377 if (same_type_p (TYPE_MAIN_VARIANT (t1), long_double_type_node)
378 || same_type_p (TYPE_MAIN_VARIANT (t2), long_double_type_node))
379 return build_type_attribute_variant (long_double_type_node,
380 attributes);
381 if (same_type_p (TYPE_MAIN_VARIANT (t1), double_type_node)
382 || same_type_p (TYPE_MAIN_VARIANT (t2), double_type_node))
383 return build_type_attribute_variant (double_type_node,
384 attributes);
2f4d058f
AH
385 if (same_type_p (TYPE_MAIN_VARIANT (t1), float_type_node)
386 || same_type_p (TYPE_MAIN_VARIANT (t2), float_type_node))
a7a64a77
MM
387 return build_type_attribute_variant (float_type_node,
388 attributes);
2f4d058f
AH
389
390 /* Two floating-point types whose TYPE_MAIN_VARIANTs are none of
391 the standard C++ floating-point types. Logic earlier in this
392 function has already eliminated the possibility that
393 TYPE_PRECISION (t2) != TYPE_PRECISION (t1), so there's no
394 compelling reason to choose one or the other. */
395 return build_type_attribute_variant (t1, attributes);
a7a64a77
MM
396 }
397}
398
a5ac359a
MM
399/* Subroutine of composite_pointer_type to implement the recursive
400 case. See that function for documentation fo the parameters. */
401
402static tree
403composite_pointer_type_r (tree t1, tree t2, const char* location)
404{
405 tree pointee1;
406 tree pointee2;
407 tree result_type;
408 tree attributes;
409
410 /* Determine the types pointed to by T1 and T2. */
411 if (TREE_CODE (t1) == POINTER_TYPE)
412 {
413 pointee1 = TREE_TYPE (t1);
414 pointee2 = TREE_TYPE (t2);
415 }
416 else
417 {
418 pointee1 = TYPE_PTRMEM_POINTED_TO_TYPE (t1);
419 pointee2 = TYPE_PTRMEM_POINTED_TO_TYPE (t2);
420 }
421
422 /* [expr.rel]
423
424 Otherwise, the composite pointer type is a pointer type
425 similar (_conv.qual_) to the type of one of the operands,
426 with a cv-qualification signature (_conv.qual_) that is the
427 union of the cv-qualification signatures of the operand
428 types. */
429 if (same_type_ignoring_top_level_qualifiers_p (pointee1, pointee2))
430 result_type = pointee1;
431 else if ((TREE_CODE (pointee1) == POINTER_TYPE
432 && TREE_CODE (pointee2) == POINTER_TYPE)
433 || (TYPE_PTR_TO_MEMBER_P (pointee1)
434 && TYPE_PTR_TO_MEMBER_P (pointee2)))
435 result_type = composite_pointer_type_r (pointee1, pointee2, location);
436 else
437 {
438 pedwarn ("%s between distinct pointer types `%T' and `%T' "
439 "lacks a cast",
440 location, t1, t2);
441 result_type = void_type_node;
442 }
443 result_type = cp_build_qualified_type (result_type,
444 (cp_type_quals (pointee1)
445 | cp_type_quals (pointee2)));
446 result_type = build_pointer_type (result_type);
447 /* If the original types were pointers to members, so is the
448 result. */
449 if (TYPE_PTR_TO_MEMBER_P (t1))
450 {
451 if (!same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
452 TYPE_PTRMEM_CLASS_TYPE (t2)))
453 pedwarn ("%s between distinct pointer types `%T' and `%T' "
454 "lacks a cast",
455 location, t1, t2);
456 result_type = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
457 result_type);
458 }
459
460 /* Merge the attributes. */
461 attributes = (*targetm.merge_type_attributes) (t1, t2);
462 return build_type_attribute_variant (result_type, attributes);
463}
464
a7a64a77
MM
465/* Return the composite pointer type (see [expr.rel]) for T1 and T2.
466 ARG1 and ARG2 are the values with those types. The LOCATION is a
a5ac359a
MM
467 string describing the current location, in case an error occurs.
468
469 This routine also implements the computation of a common type for
470 pointers-to-members as per [expr.eq]. */
a7a64a77
MM
471
472tree
5671bf27
AJ
473composite_pointer_type (tree t1, tree t2, tree arg1, tree arg2,
474 const char* location)
a7a64a77 475{
a5ac359a
MM
476 tree class1;
477 tree class2;
a7a64a77
MM
478
479 /* [expr.rel]
480
481 If one operand is a null pointer constant, the composite pointer
482 type is the type of the other operand. */
483 if (null_ptr_cst_p (arg1))
484 return t2;
485 if (null_ptr_cst_p (arg2))
486 return t1;
487
634790f4
MM
488 /* We have:
489
490 [expr.rel]
491
492 If one of the operands has type "pointer to cv1 void*", then
493 the other has type "pointer to cv2T", and the composite pointer
494 type is "pointer to cv12 void", where cv12 is the union of cv1
495 and cv2.
496
497 If either type is a pointer to void, make sure it is T1. */
a5ac359a 498 if (TREE_CODE (t2) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t2)))
a7a64a77 499 {
634790f4
MM
500 tree t;
501 t = t1;
502 t1 = t2;
503 t2 = t;
a7a64a77 504 }
a5ac359a 505
634790f4 506 /* Now, if T1 is a pointer to void, merge the qualifiers. */
a5ac359a 507 if (TREE_CODE (t1) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (t1)))
a7a64a77 508 {
a5ac359a
MM
509 tree attributes;
510 tree result_type;
511
634790f4 512 if (pedantic && TYPE_PTRFN_P (t2))
ddcc7cf6 513 pedwarn ("ISO C++ forbids %s between pointer of type `void *' and pointer-to-function", location);
a5ac359a
MM
514 result_type
515 = cp_build_qualified_type (void_type_node,
516 (cp_type_quals (TREE_TYPE (t1))
517 | cp_type_quals (TREE_TYPE (t2))));
634790f4 518 result_type = build_pointer_type (result_type);
a5ac359a
MM
519 /* Merge the attributes. */
520 attributes = (*targetm.merge_type_attributes) (t1, t2);
521 return build_type_attribute_variant (result_type, attributes);
522 }
523
524 /* [expr.eq] permits the application of a pointer conversion to
525 bring the pointers to a common type. */
526 if (TREE_CODE (t1) == POINTER_TYPE && TREE_CODE (t2) == POINTER_TYPE
527 && CLASS_TYPE_P (TREE_TYPE (t1))
528 && CLASS_TYPE_P (TREE_TYPE (t2))
529 && !same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (t1),
530 TREE_TYPE (t2)))
531 {
532 class1 = TREE_TYPE (t1);
533 class2 = TREE_TYPE (t2);
534
535 if (DERIVED_FROM_P (class1, class2))
536 t2 = (build_pointer_type
537 (cp_build_qualified_type (class1, TYPE_QUALS (class2))));
538 else if (DERIVED_FROM_P (class2, class1))
539 t1 = (build_pointer_type
540 (cp_build_qualified_type (class2, TYPE_QUALS (class1))));
541 else
542 {
543 error ("%s between distinct pointer types `%T' and `%T' "
544 "lacks a cast", location, t1, t2);
545 return error_mark_node;
546 }
a7a64a77 547 }
a5ac359a
MM
548 /* [expr.eq] permits the application of a pointer-to-member
549 conversion to change the class type of one of the types. */
550 else if (TYPE_PTR_TO_MEMBER_P (t1)
551 && !same_type_p (TYPE_PTRMEM_CLASS_TYPE (t1),
552 TYPE_PTRMEM_CLASS_TYPE (t2)))
708cae97 553 {
a5ac359a
MM
554 class1 = TYPE_PTRMEM_CLASS_TYPE (t1);
555 class2 = TYPE_PTRMEM_CLASS_TYPE (t2);
708cae97 556
a5ac359a
MM
557 if (DERIVED_FROM_P (class1, class2))
558 t1 = build_ptrmem_type (class2, TYPE_PTRMEM_POINTED_TO_TYPE (t1));
559 else if (DERIVED_FROM_P (class2, class1))
560 t2 = build_ptrmem_type (class1, TYPE_PTRMEM_POINTED_TO_TYPE (t2));
a7a64a77
MM
561 else
562 {
a5ac359a
MM
563 error ("%s between distinct pointer-to-member types `%T' and `%T' "
564 "lacks a cast", location, t1, t2);
565 return error_mark_node;
a7a64a77
MM
566 }
567 }
a7a64a77 568
a5ac359a 569 return composite_pointer_type_r (t1, t2, location);
a7a64a77
MM
570}
571
6da794e8 572/* Return the merged type of two types.
8d08fdba
MS
573 We assume that comptypes has already been done and returned 1;
574 if that isn't so, this may crash.
575
6da794e8
JM
576 This just combines attributes and default arguments; any other
577 differences would cause the two types to compare unalike. */
8d08fdba
MS
578
579tree
5671bf27 580merge_types (tree t1, tree t2)
8d08fdba
MS
581{
582 register enum tree_code code1;
583 register enum tree_code code2;
2986ae00 584 tree attributes;
8d08fdba
MS
585
586 /* Save time if the two types are the same. */
f2ee215b 587 if (t1 == t2)
9076e292 588 return t1;
6da794e8 589 if (original_type (t1) == original_type (t2))
9076e292 590 return t1;
8d08fdba
MS
591
592 /* If one type is nonsense, use the other. */
593 if (t1 == error_mark_node)
9076e292 594 return t2;
8d08fdba 595 if (t2 == error_mark_node)
9076e292 596 return t1;
8d08fdba 597
d9525bec 598 /* Merge the attributes. */
f6897b10 599 attributes = (*targetm.merge_type_attributes) (t1, t2);
2986ae00 600
5566b478
MS
601 if (TYPE_PTRMEMFUNC_P (t1))
602 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
603 if (TYPE_PTRMEMFUNC_P (t2))
604 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
605
8d08fdba
MS
606 code1 = TREE_CODE (t1);
607 code2 = TREE_CODE (t2);
608
609 switch (code1)
610 {
8d08fdba
MS
611 case POINTER_TYPE:
612 case REFERENCE_TYPE:
6da794e8 613 /* For two pointers, do this recursively on the target type. */
8d08fdba 614 {
6da794e8 615 tree target = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
77adef84 616 int quals = cp_type_quals (t1);
5b163de4 617
8d08fdba 618 if (code1 == POINTER_TYPE)
2986ae00 619 t1 = build_pointer_type (target);
8d08fdba 620 else
2986ae00 621 t1 = build_reference_type (target);
71851aaa 622 t1 = build_type_attribute_variant (t1, attributes);
77adef84 623 t1 = cp_build_qualified_type (t1, quals);
71851aaa
MS
624
625 if (TREE_CODE (target) == METHOD_TYPE)
626 t1 = build_ptrmemfunc_type (t1);
627
628 return t1;
8d08fdba 629 }
8d08fdba 630
6da794e8
JM
631 case OFFSET_TYPE:
632 {
fe0378ed
MM
633 int quals;
634 tree pointee;
635 quals = cp_type_quals (t1);
636 pointee = merge_types (TYPE_PTRMEM_POINTED_TO_TYPE (t1),
637 TYPE_PTRMEM_POINTED_TO_TYPE (t2));
638 t1 = build_ptrmem_type (TYPE_PTRMEM_CLASS_TYPE (t1),
639 pointee);
640 t1 = cp_build_qualified_type (t1, quals);
6da794e8
JM
641 break;
642 }
643
8d08fdba
MS
644 case ARRAY_TYPE:
645 {
6da794e8 646 tree elt = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
8d08fdba
MS
647 /* Save space: see if the result is identical to one of the args. */
648 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
2986ae00 649 return build_type_attribute_variant (t1, attributes);
8d08fdba 650 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
2986ae00 651 return build_type_attribute_variant (t2, attributes);
8d08fdba 652 /* Merge the element types, and have a size if either arg has one. */
e349ee73
MS
653 t1 = build_cplus_array_type
654 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
6da794e8 655 break;
8d08fdba
MS
656 }
657
658 case FUNCTION_TYPE:
659 /* Function types: prefer the one that specified arg types.
660 If both do, merge the arg types. Also merge the return types. */
661 {
6da794e8 662 tree valtype = merge_types (TREE_TYPE (t1), TREE_TYPE (t2));
8d08fdba
MS
663 tree p1 = TYPE_ARG_TYPES (t1);
664 tree p2 = TYPE_ARG_TYPES (t2);
665 tree rval, raises;
666
667 /* Save space: see if the result is identical to one of the args. */
668 if (valtype == TREE_TYPE (t1) && ! p2)
2986ae00 669 return build_type_attribute_variant (t1, attributes);
8d08fdba 670 if (valtype == TREE_TYPE (t2) && ! p1)
2986ae00 671 return build_type_attribute_variant (t2, attributes);
8d08fdba
MS
672
673 /* Simple way if one arg fails to specify argument types. */
674 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
675 {
676 rval = build_function_type (valtype, p2);
8926095f 677 if ((raises = TYPE_RAISES_EXCEPTIONS (t2)))
f30432d7 678 rval = build_exception_variant (rval, raises);
2986ae00 679 return build_type_attribute_variant (rval, attributes);
8d08fdba
MS
680 }
681 raises = TYPE_RAISES_EXCEPTIONS (t1);
682 if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
683 {
684 rval = build_function_type (valtype, p1);
685 if (raises)
f30432d7 686 rval = build_exception_variant (rval, raises);
2986ae00 687 return build_type_attribute_variant (rval, attributes);
8d08fdba
MS
688 }
689
690 rval = build_function_type (valtype, commonparms (p1, p2));
6da794e8
JM
691 t1 = build_exception_variant (rval, raises);
692 break;
8d08fdba
MS
693 }
694
6da794e8
JM
695 case METHOD_TYPE:
696 {
697 /* Get this value the long way, since TYPE_METHOD_BASETYPE
698 is just the main variant of this. */
699 tree basetype = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t2)));
700 tree raises = TYPE_RAISES_EXCEPTIONS (t1);
701 tree t3;
702
703 /* If this was a member function type, get back to the
704 original type of type member function (i.e., without
705 the class instance variable up front. */
706 t1 = build_function_type (TREE_TYPE (t1),
707 TREE_CHAIN (TYPE_ARG_TYPES (t1)));
708 t2 = build_function_type (TREE_TYPE (t2),
709 TREE_CHAIN (TYPE_ARG_TYPES (t2)));
710 t3 = merge_types (t1, t2);
43dc123f
MM
711 t3 = build_method_type_directly (basetype, TREE_TYPE (t3),
712 TYPE_ARG_TYPES (t3));
6da794e8
JM
713 t1 = build_exception_variant (t3, raises);
714 break;
715 }
8d08fdba 716
6da794e8
JM
717 default:;
718 }
719 return build_type_attribute_variant (t1, attributes);
720}
8d08fdba 721
6da794e8
JM
722/* Return the common type of two types.
723 We assume that comptypes has already been done and returned 1;
724 if that isn't so, this may crash.
71851aaa 725
6da794e8
JM
726 This is the type for the result of most arithmetic operations
727 if the operands have the given two types. */
728
729tree
5671bf27 730common_type (tree t1, tree t2)
6da794e8
JM
731{
732 enum tree_code code1;
733 enum tree_code code2;
2986ae00 734
6da794e8
JM
735 /* If one type is nonsense, bail. */
736 if (t1 == error_mark_node || t2 == error_mark_node)
737 return error_mark_node;
8d08fdba 738
6da794e8
JM
739 code1 = TREE_CODE (t1);
740 code2 = TREE_CODE (t2);
8d08fdba 741
6da794e8
JM
742 if ((ARITHMETIC_TYPE_P (t1) || code1 == ENUMERAL_TYPE
743 || code1 == COMPLEX_TYPE)
744 && (ARITHMETIC_TYPE_P (t2) || code2 == ENUMERAL_TYPE
745 || code2 == COMPLEX_TYPE))
746 return type_after_usual_arithmetic_conversions (t1, t2);
747
748 else if ((TYPE_PTR_P (t1) && TYPE_PTR_P (t2))
749 || (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
750 || (TYPE_PTRMEMFUNC_P (t1) && TYPE_PTRMEMFUNC_P (t2)))
751 return composite_pointer_type (t1, t2, error_mark_node, error_mark_node,
752 "conversion");
6da794e8
JM
753 else
754 abort ();
8d08fdba
MS
755}
756\f
4cc1d462 757/* Compare two exception specifier types for exactness or subsetness, if
acd8e2d0
NS
758 allowed. Returns false for mismatch, true for match (same, or
759 derived and !exact).
4cc1d462
NS
760
761 [except.spec] "If a class X ... objects of class X or any class publicly
34cd5ae7 762 and unambiguously derived from X. Similarly, if a pointer type Y * ...
4cc1d462 763 exceptions of type Y * or that are pointers to any type publicly and
34cd5ae7 764 unambiguously derived from Y. Otherwise a function only allows exceptions
4cc1d462
NS
765 that have the same type ..."
766 This does not mention cv qualifiers and is different to what throw
767 [except.throw] and catch [except.catch] will do. They will ignore the
768 top level cv qualifiers, and allow qualifiers in the pointer to class
769 example.
770
771 We implement the letter of the standard. */
772
acd8e2d0
NS
773static bool
774comp_except_types (tree a, tree b, bool exact)
4cc1d462
NS
775{
776 if (same_type_p (a, b))
acd8e2d0 777 return true;
4cc1d462
NS
778 else if (!exact)
779 {
89d684bb 780 if (cp_type_quals (a) || cp_type_quals (b))
acd8e2d0 781 return false;
4cc1d462
NS
782
783 if (TREE_CODE (a) == POINTER_TYPE
784 && TREE_CODE (b) == POINTER_TYPE)
785 {
786 a = TREE_TYPE (a);
787 b = TREE_TYPE (b);
89d684bb 788 if (cp_type_quals (a) || cp_type_quals (b))
acd8e2d0 789 return false;
4cc1d462
NS
790 }
791
792 if (TREE_CODE (a) != RECORD_TYPE
793 || TREE_CODE (b) != RECORD_TYPE)
acd8e2d0 794 return false;
4cc1d462
NS
795
796 if (ACCESSIBLY_UNIQUELY_DERIVED_P (a, b))
acd8e2d0 797 return true;
4cc1d462 798 }
acd8e2d0 799 return false;
4cc1d462
NS
800}
801
acd8e2d0
NS
802/* Return true if TYPE1 and TYPE2 are equivalent exception specifiers.
803 If EXACT is false, T2 can be stricter than T1 (according to 15.4/7),
4cc1d462
NS
804 otherwise it must be exact. Exception lists are unordered, but
805 we've already filtered out duplicates. Most lists will be in order,
806 we should try to make use of that. */
e92cc029 807
acd8e2d0
NS
808bool
809comp_except_specs (tree t1, tree t2, bool exact)
8d08fdba 810{
4cc1d462
NS
811 tree probe;
812 tree base;
813 int length = 0;
814
815 if (t1 == t2)
acd8e2d0 816 return true;
4cc1d462 817
c6002625 818 if (t1 == NULL_TREE) /* T1 is ... */
4cc1d462
NS
819 return t2 == NULL_TREE || !exact;
820 if (!TREE_VALUE (t1)) /* t1 is EMPTY */
821 return t2 != NULL_TREE && !TREE_VALUE (t2);
c6002625 822 if (t2 == NULL_TREE) /* T2 is ... */
acd8e2d0 823 return false;
dffa4176 824 if (TREE_VALUE (t1) && !TREE_VALUE (t2)) /* T2 is EMPTY, T1 is not */
4cc1d462
NS
825 return !exact;
826
827 /* Neither set is ... or EMPTY, make sure each part of T2 is in T1.
828 Count how many we find, to determine exactness. For exact matching and
829 ordered T1, T2, this is an O(n) operation, otherwise its worst case is
830 O(nm). */
831 for (base = t1; t2 != NULL_TREE; t2 = TREE_CHAIN (t2))
832 {
833 for (probe = base; probe != NULL_TREE; probe = TREE_CHAIN (probe))
834 {
835 tree a = TREE_VALUE (probe);
836 tree b = TREE_VALUE (t2);
837
838 if (comp_except_types (a, b, exact))
839 {
840 if (probe == base && exact)
841 base = TREE_CHAIN (probe);
842 length++;
843 break;
844 }
845 }
846 if (probe == NULL_TREE)
acd8e2d0 847 return false;
4cc1d462
NS
848 }
849 return !exact || base == NULL_TREE || length == list_length (t1);
8d08fdba
MS
850}
851
acd8e2d0
NS
852/* Compare the array types T1 and T2. ALLOW_REDECLARATION is true if
853 [] can match [size]. */
3bfdc719 854
c8a209ca 855static bool
acd8e2d0 856comp_array_types (tree t1, tree t2, bool allow_redeclaration)
8d08fdba 857{
3bfdc719
MM
858 tree d1;
859 tree d2;
860
861 if (t1 == t2)
acd8e2d0 862 return true;
8d08fdba 863
3bfdc719 864 /* The type of the array elements must be the same. */
acd8e2d0 865 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
c8a209ca 866 return false;
8d08fdba 867
3bfdc719
MM
868 d1 = TYPE_DOMAIN (t1);
869 d2 = TYPE_DOMAIN (t2);
870
871 if (d1 == d2)
c8a209ca 872 return true;
8d08fdba 873
3bfdc719 874 /* If one of the arrays is dimensionless, and the other has a
0e339752 875 dimension, they are of different types. However, it is valid to
3bfdc719
MM
876 write:
877
878 extern int a[];
879 int a[3];
880
881 by [basic.link]:
882
883 declarations for an array object can specify
884 array types that differ by the presence or absence of a major
885 array bound (_dcl.array_). */
886 if (!d1 || !d2)
acd8e2d0 887 return allow_redeclaration;
3bfdc719
MM
888
889 /* Check that the dimensions are the same. */
c8a209ca
NS
890 return (cp_tree_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2))
891 && cp_tree_equal (TYPE_MAX_VALUE (d1), TYPE_MAX_VALUE (d2)));
8d08fdba
MS
892}
893
c8a209ca
NS
894/* Return true if T1 and T2 are related as allowed by STRICT. STRICT
895 is a bitwise-or of the COMPARE_* flags. */
e92cc029 896
c8a209ca 897bool
acd8e2d0 898comptypes (tree t1, tree t2, int strict)
8d08fdba 899{
8d08fdba 900 if (t1 == t2)
c8a209ca
NS
901 return true;
902
c8a209ca 903 /* Suppress errors caused by previously reported errors */
ae8803a8 904 if (t1 == error_mark_node || t2 == error_mark_node)
c8a209ca 905 return false;
6df5158a
NS
906
907 my_friendly_assert (TYPE_P (t1) && TYPE_P (t2), 20030623);
908
c8a209ca
NS
909 /* TYPENAME_TYPEs should be resolved if the qualifying scope is the
910 current instantiation. */
911 if (TREE_CODE (t1) == TYPENAME_TYPE)
912 {
913 tree resolved = resolve_typename_type (t1, /*only_current_p=*/true);
914
915 if (resolved != error_mark_node)
916 t1 = resolved;
917 }
918
919 if (TREE_CODE (t2) == TYPENAME_TYPE)
920 {
921 tree resolved = resolve_typename_type (t2, /*only_current_p=*/true);
922
923 if (resolved != error_mark_node)
924 t2 = resolved;
925 }
8d08fdba 926
c8a209ca 927 /* If either type is the internal version of sizetype, use the
21318741
RK
928 language version. */
929 if (TREE_CODE (t1) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t1)
c8a209ca 930 && TYPE_DOMAIN (t1))
21318741
RK
931 t1 = TYPE_DOMAIN (t1);
932
933 if (TREE_CODE (t2) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t2)
c8a209ca 934 && TYPE_DOMAIN (t2))
21318741 935 t2 = TYPE_DOMAIN (t2);
fed3cef0 936
5566b478
MS
937 if (TYPE_PTRMEMFUNC_P (t1))
938 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
939 if (TYPE_PTRMEMFUNC_P (t2))
940 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
941
8d08fdba 942 /* Different classes of types can't be compatible. */
8d08fdba 943 if (TREE_CODE (t1) != TREE_CODE (t2))
c8a209ca 944 return false;
8d08fdba
MS
945
946 /* Qualifiers must match. */
89d684bb 947 if (cp_type_quals (t1) != cp_type_quals (t2))
c8a209ca
NS
948 return false;
949 if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2))
950 return false;
8d08fdba
MS
951
952 /* Allow for two different type nodes which have essentially the same
953 definition. Note that we already checked for equality of the type
38e01259 954 qualifiers (just above). */
8d08fdba
MS
955
956 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
c8a209ca 957 return true;
8d08fdba 958
c8a209ca
NS
959 if (!(*targetm.comp_type_attributes) (t1, t2))
960 return false;
2986ae00 961
8d08fdba
MS
962 switch (TREE_CODE (t1))
963 {
e7e66632 964 case TEMPLATE_TEMPLATE_PARM:
a1281f45 965 case BOUND_TEMPLATE_TEMPLATE_PARM:
e7e66632
KL
966 if (TEMPLATE_TYPE_IDX (t1) != TEMPLATE_TYPE_IDX (t2)
967 || TEMPLATE_TYPE_LEVEL (t1) != TEMPLATE_TYPE_LEVEL (t2))
c8a209ca
NS
968 return false;
969 if (!comp_template_parms
970 (DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t1)),
971 DECL_TEMPLATE_PARMS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (t2))))
972 return false;
a1281f45 973 if (TREE_CODE (t1) == TEMPLATE_TEMPLATE_PARM)
c8a209ca 974 return true;
e7e66632 975 /* Don't check inheritance. */
acd8e2d0 976 strict = COMPARE_STRICT;
e7e66632
KL
977 /* fall through */
978
8d08fdba
MS
979 case RECORD_TYPE:
980 case UNION_TYPE:
7ddedda4
MM
981 if (TYPE_TEMPLATE_INFO (t1) && TYPE_TEMPLATE_INFO (t2)
982 && (TYPE_TI_TEMPLATE (t1) == TYPE_TI_TEMPLATE (t2)
c8a209ca
NS
983 || TREE_CODE (t1) == BOUND_TEMPLATE_TEMPLATE_PARM)
984 && comp_template_args (TYPE_TI_ARGS (t1), TYPE_TI_ARGS (t2)))
985 return true;
986
acd8e2d0 987 if ((strict & COMPARE_BASE) && DERIVED_FROM_P (t1, t2))
c8a209ca 988 return true;
acd8e2d0 989 else if ((strict & COMPARE_DERIVED) && DERIVED_FROM_P (t2, t1))
c8a209ca
NS
990 return true;
991
992 return false;
8d08fdba
MS
993
994 case OFFSET_TYPE:
c8a209ca 995 if (!comptypes (TYPE_OFFSET_BASETYPE (t1), TYPE_OFFSET_BASETYPE (t2),
acd8e2d0 996 strict & ~COMPARE_REDECLARATION))
c8a209ca 997 return false;
acd8e2d0 998 /* FALLTHROUGH*/
8d08fdba 999
8d08fdba
MS
1000 case POINTER_TYPE:
1001 case REFERENCE_TYPE:
acd8e2d0 1002 return same_type_p (TREE_TYPE (t1), TREE_TYPE (t2));
8d08fdba 1003
dffa4176 1004 case METHOD_TYPE:
8d08fdba 1005 case FUNCTION_TYPE:
acd8e2d0 1006 if (!same_type_p (TREE_TYPE (t1), TREE_TYPE (t2)))
c8a209ca
NS
1007 return false;
1008 return compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
8d08fdba
MS
1009
1010 case ARRAY_TYPE:
9bcb9aae 1011 /* Target types must match incl. qualifiers. */
acd8e2d0 1012 return comp_array_types (t1, t2, !!(strict & COMPARE_REDECLARATION));
8d08fdba 1013
51c184be 1014 case TEMPLATE_TYPE_PARM:
c8a209ca
NS
1015 return (TEMPLATE_TYPE_IDX (t1) == TEMPLATE_TYPE_IDX (t2)
1016 && TEMPLATE_TYPE_LEVEL (t1) == TEMPLATE_TYPE_LEVEL (t2));
e76a2646
MS
1017
1018 case TYPENAME_TYPE:
c8a209ca
NS
1019 if (!cp_tree_equal (TYPENAME_TYPE_FULLNAME (t1),
1020 TYPENAME_TYPE_FULLNAME (t2)))
1021 return false;
3bfdc719 1022 return same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
7f85441b 1023
b8c6534b 1024 case UNBOUND_CLASS_TEMPLATE:
c8a209ca
NS
1025 if (!cp_tree_equal (TYPE_IDENTIFIER (t1), TYPE_IDENTIFIER (t2)))
1026 return false;
b8c6534b
KL
1027 return same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1028
a7a64a77
MM
1029 case COMPLEX_TYPE:
1030 return same_type_p (TREE_TYPE (t1), TREE_TYPE (t2));
1031
7f85441b
KG
1032 default:
1033 break;
8d08fdba 1034 }
c8a209ca 1035 return false;
8d08fdba
MS
1036}
1037
91063b51
MM
1038/* Returns 1 if TYPE1 is at least as qualified as TYPE2. */
1039
acd8e2d0
NS
1040bool
1041at_least_as_qualified_p (tree type1, tree type2)
91063b51 1042{
acd8e2d0
NS
1043 int q1 = cp_type_quals (type1);
1044 int q2 = cp_type_quals (type2);
1045
91063b51 1046 /* All qualifiers for TYPE2 must also appear in TYPE1. */
acd8e2d0 1047 return (q1 & q2) == q2;
91063b51
MM
1048}
1049
1050/* Returns 1 if TYPE1 is more qualified than TYPE2. */
1051
acd8e2d0
NS
1052bool
1053more_qualified_p (tree type1, tree type2)
91063b51 1054{
acd8e2d0
NS
1055 int q1 = cp_type_quals (type1);
1056 int q2 = cp_type_quals (type2);
1057
1058 return q1 != q2 && (q1 & q2) == q2;
91063b51
MM
1059}
1060
ceab47eb
MM
1061/* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1062 more cv-qualified that TYPE1, and 0 otherwise. */
1063
1064int
acd8e2d0 1065comp_cv_qualification (tree type1, tree type2)
ceab47eb 1066{
acd8e2d0
NS
1067 int q1 = cp_type_quals (type1);
1068 int q2 = cp_type_quals (type2);
1069
1070 if (q1 == q2)
ceab47eb
MM
1071 return 0;
1072
acd8e2d0 1073 if ((q1 & q2) == q2)
ceab47eb 1074 return 1;
acd8e2d0 1075 else if ((q1 & q2) == q1)
ceab47eb
MM
1076 return -1;
1077
1078 return 0;
1079}
1080
1081/* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1082 subset of the cv-qualification signature of TYPE2, and the types
1083 are similar. Returns -1 if the other way 'round, and 0 otherwise. */
1084
1085int
acd8e2d0 1086comp_cv_qual_signature (tree type1, tree type2)
ceab47eb
MM
1087{
1088 if (comp_ptr_ttypes_real (type2, type1, -1))
1089 return 1;
1090 else if (comp_ptr_ttypes_real (type1, type2, -1))
1091 return -1;
1092 else
1093 return 0;
1094}
1095
8d08fdba
MS
1096/* If two types share a common base type, return that basetype.
1097 If there is not a unique most-derived base type, this function
1098 returns ERROR_MARK_NODE. */
e92cc029 1099
bd6dd845 1100static tree
acd8e2d0 1101common_base_type (tree tt1, tree tt2)
8d08fdba 1102{
5566b478 1103 tree best = NULL_TREE;
8d08fdba
MS
1104 int i;
1105
1106 /* If one is a baseclass of another, that's good enough. */
1107 if (UNIQUELY_DERIVED_FROM_P (tt1, tt2))
1108 return tt1;
1109 if (UNIQUELY_DERIVED_FROM_P (tt2, tt1))
1110 return tt2;
1111
8d08fdba
MS
1112 /* Otherwise, try to find a unique baseclass of TT1
1113 that is shared by TT2, and follow that down. */
1114 for (i = CLASSTYPE_N_BASECLASSES (tt1)-1; i >= 0; i--)
1115 {
1116 tree basetype = TYPE_BINFO_BASETYPE (tt1, i);
1117 tree trial = common_base_type (basetype, tt2);
1118 if (trial)
1119 {
1120 if (trial == error_mark_node)
1121 return trial;
1122 if (best == NULL_TREE)
1123 best = trial;
1124 else if (best != trial)
1125 return error_mark_node;
1126 }
1127 }
1128
1129 /* Same for TT2. */
1130 for (i = CLASSTYPE_N_BASECLASSES (tt2)-1; i >= 0; i--)
1131 {
1132 tree basetype = TYPE_BINFO_BASETYPE (tt2, i);
1133 tree trial = common_base_type (tt1, basetype);
1134 if (trial)
1135 {
1136 if (trial == error_mark_node)
1137 return trial;
1138 if (best == NULL_TREE)
1139 best = trial;
1140 else if (best != trial)
1141 return error_mark_node;
1142 }
1143 }
1144 return best;
1145}
1146\f
1147/* Subroutines of `comptypes'. */
1148
acd8e2d0 1149/* Return true if two parameter type lists PARMS1 and PARMS2 are
03017874
MM
1150 equivalent in the sense that functions with those parameter types
1151 can have equivalent types. The two lists must be equivalent,
acd8e2d0 1152 element by element. */
8d08fdba 1153
acd8e2d0
NS
1154bool
1155compparms (tree parms1, tree parms2)
8d08fdba 1156{
acd8e2d0 1157 tree t1, t2;
8d08fdba
MS
1158
1159 /* An unspecified parmlist matches any specified parmlist
1160 whose argument types don't need default promotions. */
1161
acd8e2d0
NS
1162 for (t1 = parms1, t2 = parms2;
1163 t1 || t2;
1164 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
8d08fdba 1165 {
8d08fdba 1166 /* If one parmlist is shorter than the other,
4daa9c14 1167 they fail to match. */
acd8e2d0
NS
1168 if (!t1 || !t2)
1169 return false;
ae8803a8 1170 if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
acd8e2d0 1171 return false;
8d08fdba 1172 }
acd8e2d0 1173 return true;
8d08fdba
MS
1174}
1175
8d08fdba 1176\f
7a18b933
NS
1177/* Process a sizeof or alignof expression where the operand is a
1178 type. */
1179
8d08fdba 1180tree
7a18b933 1181cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
8d08fdba 1182{
fa72b064
GDR
1183 enum tree_code type_code;
1184 tree value;
1185 const char *op_name;
8d08fdba 1186
fa72b064 1187 my_friendly_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR, 20020720);
7a18b933
NS
1188 if (type == error_mark_node)
1189 return error_mark_node;
1190
5156628f 1191 if (processing_template_decl)
7a18b933
NS
1192 {
1193 value = build_min (op, size_type_node, type);
1194 TREE_READONLY (value) = 1;
1195 return value;
1196 }
fa72b064
GDR
1197
1198 op_name = operator_name_info[(int) op].name;
ee76b931
MM
1199
1200 type = non_reference (type);
fa72b064 1201 type_code = TREE_CODE (type);
5566b478 1202
fa72b064 1203 if (type_code == METHOD_TYPE)
8d08fdba 1204 {
ea793912 1205 if (complain && (pedantic || warn_pointer_arith))
fa72b064
GDR
1206 pedwarn ("invalid application of `%s' to a member function", op_name);
1207 value = size_one_node;
8d08fdba 1208 }
8422942c 1209 else
ea793912 1210 value = c_sizeof_or_alignof_type (complete_type (type), op, complain);
8d08fdba 1211
fa72b064 1212 return value;
8d08fdba
MS
1213}
1214
7a18b933
NS
1215/* Process a sizeof or alignof expression where the operand is an
1216 expression. */
1217
5566b478 1218tree
7a18b933 1219cxx_sizeof_or_alignof_expr (tree e, enum tree_code op)
5566b478 1220{
7a18b933
NS
1221 const char *op_name = operator_name_info[(int) op].name;
1222
1223 if (e == error_mark_node)
1224 return error_mark_node;
1225
5156628f 1226 if (processing_template_decl)
7a18b933
NS
1227 {
1228 e = build_min (op, size_type_node, e);
1229 TREE_SIDE_EFFECTS (e) = 0;
1230 TREE_READONLY (e) = 1;
1231
1232 return e;
1233 }
1234
5566b478 1235 if (TREE_CODE (e) == COMPONENT_REF
162bc98d 1236 && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
5566b478 1237 {
7a18b933
NS
1238 error ("invalid application of `%s' to a bit-field", op_name);
1239 e = char_type_node;
1240 }
1241 else if (is_overloaded_fn (e))
1242 {
1243 pedwarn ("ISO C++ forbids applying `%s' to an expression of function type", op_name);
1244 e = char_type_node;
5566b478 1245 }
05e0b2f4
JM
1246 else if (type_unknown_p (e))
1247 {
7a228918 1248 cxx_incomplete_type_error (e, TREE_TYPE (e));
7a18b933 1249 e = char_type_node;
05e0b2f4 1250 }
7a18b933
NS
1251 else
1252 e = TREE_TYPE (e);
1253
1254 return cxx_sizeof_or_alignof_type (e, op, true);
5566b478
MS
1255}
1256
8d08fdba 1257\f
0a72704b
MM
1258/* Perform the conversions in [expr] that apply when an lvalue appears
1259 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1260 function-to-pointer conversions.
8d08fdba 1261
0a72704b 1262 In addition manifest constants are replaced by their values. */
8d08fdba
MS
1263
1264tree
acd8e2d0 1265decay_conversion (tree exp)
8d08fdba 1266{
a359be75
JM
1267 register tree type;
1268 register enum tree_code code;
8d08fdba 1269
a359be75
JM
1270 type = TREE_TYPE (exp);
1271 code = TREE_CODE (type);
8d08fdba
MS
1272
1273 if (code == REFERENCE_TYPE)
1274 {
1275 exp = convert_from_reference (exp);
1276 type = TREE_TYPE (exp);
1277 code = TREE_CODE (type);
1278 }
1279
07c88314
MM
1280 if (type == error_mark_node)
1281 return error_mark_node;
1282
40260429
NS
1283 if (type_unknown_p (exp))
1284 {
7a228918 1285 cxx_incomplete_type_error (exp, TREE_TYPE (exp));
40260429
NS
1286 return error_mark_node;
1287 }
1288
8d08fdba
MS
1289 /* Constants can be used directly unless they're not loadable. */
1290 if (TREE_CODE (exp) == CONST_DECL)
1291 exp = DECL_INITIAL (exp);
5f56af5a
MM
1292 /* Replace a nonvolatile const static variable with its value. We
1293 don't do this for arrays, though; we want the address of the
1294 first element of the array, not the address of the first element
2ce07e2d 1295 of its initializing constant. */
fc611ce0 1296 else if (code != ARRAY_TYPE)
8d08fdba
MS
1297 {
1298 exp = decl_constant_value (exp);
1299 type = TREE_TYPE (exp);
1300 }
1301
1302 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1303 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1304
8d08fdba
MS
1305 if (code == VOID_TYPE)
1306 {
8251199e 1307 error ("void value not ignored as it ought to be");
8d08fdba
MS
1308 return error_mark_node;
1309 }
e6e174e5 1310 if (code == METHOD_TYPE)
d6b4ea85
MM
1311 {
1312 error ("invalid use of non-static member function");
1313 return error_mark_node;
1314 }
e6e174e5 1315 if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
5f56af5a 1316 return build_unary_op (ADDR_EXPR, exp, 0);
8d08fdba
MS
1317 if (code == ARRAY_TYPE)
1318 {
1319 register tree adr;
8d08fdba 1320 tree ptrtype;
8d08fdba
MS
1321
1322 if (TREE_CODE (exp) == INDIRECT_REF)
7b6d72fc
MM
1323 return build_nop (build_pointer_type (TREE_TYPE (type)),
1324 TREE_OPERAND (exp, 0));
8d08fdba
MS
1325
1326 if (TREE_CODE (exp) == COMPOUND_EXPR)
1327 {
a9aedbc2 1328 tree op1 = decay_conversion (TREE_OPERAND (exp, 1));
8d08fdba
MS
1329 return build (COMPOUND_EXPR, TREE_TYPE (op1),
1330 TREE_OPERAND (exp, 0), op1);
1331 }
1332
1333 if (!lvalue_p (exp)
1334 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1335 {
8251199e 1336 error ("invalid use of non-lvalue array");
8d08fdba
MS
1337 return error_mark_node;
1338 }
1339
01240200 1340 ptrtype = build_pointer_type (TREE_TYPE (type));
8d08fdba
MS
1341
1342 if (TREE_CODE (exp) == VAR_DECL)
1343 {
1344 /* ??? This is not really quite correct
1345 in that the type of the operand of ADDR_EXPR
1346 is not the target type of the type of the ADDR_EXPR itself.
1347 Question is, can this lossage be avoided? */
1348 adr = build1 (ADDR_EXPR, ptrtype, exp);
dffd7eb6 1349 if (!cxx_mark_addressable (exp))
8d08fdba
MS
1350 return error_mark_node;
1351 TREE_CONSTANT (adr) = staticp (exp);
1352 TREE_SIDE_EFFECTS (adr) = 0; /* Default would be, same as EXP. */
1353 return adr;
1354 }
1355 /* This way is better for a COMPONENT_REF since it can
1356 simplify the offset for a component. */
1357 adr = build_unary_op (ADDR_EXPR, exp, 1);
37c46b43 1358 return cp_convert (ptrtype, adr);
8d08fdba 1359 }
a9aedbc2 1360
ba9c33e8
JM
1361 /* [basic.lval]: Class rvalues can have cv-qualified types; non-class
1362 rvalues always have cv-unqualified types. */
1363 if (! CLASS_TYPE_P (type))
1364 exp = cp_convert (TYPE_MAIN_VARIANT (type), exp);
1365
a9aedbc2
MS
1366 return exp;
1367}
1368
1369tree
acd8e2d0 1370default_conversion (tree exp)
a9aedbc2 1371{
a9aedbc2
MS
1372 exp = decay_conversion (exp);
1373
0a72704b
MM
1374 if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
1375 exp = perform_integral_promotions (exp);
a9aedbc2 1376
8d08fdba
MS
1377 return exp;
1378}
6b5fbb55 1379
0a72704b
MM
1380/* EXPR is an expression with an integral or enumeration type.
1381 Perform the integral promotions in [conv.prom], and return the
1382 converted value. */
1383
1384tree
1385perform_integral_promotions (tree expr)
1386{
1387 tree type;
1388 tree promoted_type;
1389
1390 type = TREE_TYPE (expr);
1391 my_friendly_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type), 20030703);
1392 promoted_type = type_promotes_to (type);
1393 if (type != promoted_type)
1394 expr = cp_convert (promoted_type, expr);
1395 return expr;
1396}
1397
6b5fbb55
MS
1398/* Take the address of an inline function without setting TREE_ADDRESSABLE
1399 or TREE_USED. */
1400
1401tree
acd8e2d0 1402inline_conversion (tree exp)
6b5fbb55
MS
1403{
1404 if (TREE_CODE (exp) == FUNCTION_DECL)
91063b51
MM
1405 exp = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (exp)), exp);
1406
6b5fbb55
MS
1407 return exp;
1408}
d9cf7c82
JM
1409
1410/* Returns nonzero iff exp is a STRING_CST or the result of applying
1411 decay_conversion to one. */
1412
1413int
acd8e2d0 1414string_conv_p (tree totype, tree exp, int warn)
d9cf7c82
JM
1415{
1416 tree t;
1417
1418 if (! flag_const_strings || TREE_CODE (totype) != POINTER_TYPE)
1419 return 0;
1420
1421 t = TREE_TYPE (totype);
3bfdc719
MM
1422 if (!same_type_p (t, char_type_node)
1423 && !same_type_p (t, wchar_type_node))
d9cf7c82
JM
1424 return 0;
1425
848b92e1 1426 if (TREE_CODE (exp) == STRING_CST)
d9cf7c82 1427 {
848b92e1 1428 /* Make sure that we don't try to convert between char and wchar_t. */
6e176bd6 1429 if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
848b92e1
JM
1430 return 0;
1431 }
1432 else
1433 {
1434 /* Is this a string constant which has decayed to 'const char *'? */
91063b51 1435 t = build_pointer_type (build_qualified_type (t, TYPE_QUAL_CONST));
3bfdc719 1436 if (!same_type_p (TREE_TYPE (exp), t))
d9cf7c82
JM
1437 return 0;
1438 STRIP_NOPS (exp);
1439 if (TREE_CODE (exp) != ADDR_EXPR
1440 || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
1441 return 0;
1442 }
1443
1444 /* This warning is not very useful, as it complains about printf. */
1445 if (warn && warn_write_strings)
33bd39a2 1446 warning ("deprecated conversion from string constant to `%T'", totype);
d9cf7c82
JM
1447
1448 return 1;
1449}
8d08fdba 1450
e9a25f70
JL
1451/* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
1452 can, for example, use as an lvalue. This code used to be in
1453 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
1454 expressions, where we're dealing with aggregates. But now it's again only
1455 called from unary_complex_lvalue. The case (in particular) that led to
1456 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
1457 get it there. */
e92cc029 1458
8d08fdba 1459static tree
acd8e2d0 1460rationalize_conditional_expr (enum tree_code code, tree t)
8d08fdba 1461{
e9a25f70
JL
1462 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
1463 the first operand is always the one to be used if both operands
1464 are equal, so we know what conditional expression this used to be. */
1465 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
1466 {
1467 return
1468 build_conditional_expr (build_x_binary_op ((TREE_CODE (t) == MIN_EXPR
1469 ? LE_EXPR : GE_EXPR),
1470 TREE_OPERAND (t, 0),
1471 TREE_OPERAND (t, 1)),
1472 build_unary_op (code, TREE_OPERAND (t, 0), 0),
1473 build_unary_op (code, TREE_OPERAND (t, 1), 0));
1474 }
1475
8d08fdba
MS
1476 return
1477 build_conditional_expr (TREE_OPERAND (t, 0),
1478 build_unary_op (code, TREE_OPERAND (t, 1), 0),
1479 build_unary_op (code, TREE_OPERAND (t, 2), 0));
1480}
1481
9e9ff709
MS
1482/* Given the TYPE of an anonymous union field inside T, return the
1483 FIELD_DECL for the field. If not found return NULL_TREE. Because
1484 anonymous unions can nest, we must also search all anonymous unions
1485 that are directly reachable. */
e92cc029 1486
9e9ff709 1487static tree
acd8e2d0 1488lookup_anon_field (tree t, tree type)
9e9ff709
MS
1489{
1490 tree field;
1491
1492 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
1493 {
1494 if (TREE_STATIC (field))
1495 continue;
17bbb839 1496 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
9e9ff709
MS
1497 continue;
1498
1499 /* If we find it directly, return the field. */
1500 if (DECL_NAME (field) == NULL_TREE
71631a1f 1501 && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
9e9ff709
MS
1502 {
1503 return field;
1504 }
1505
1506 /* Otherwise, it could be nested, search harder. */
1507 if (DECL_NAME (field) == NULL_TREE
6bdb8141 1508 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
9e9ff709
MS
1509 {
1510 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
1511 if (subfield)
1512 return subfield;
1513 }
1514 }
1515 return NULL_TREE;
1516}
1517
50ad9642
MM
1518/* Build an expression representing OBJECT.MEMBER. OBJECT is an
1519 expression; MEMBER is a DECL or baselink. If ACCESS_PATH is
1520 non-NULL, it indicates the path to the base used to name MEMBER.
1521 If PRESERVE_REFERENCE is true, the expression returned will have
1522 REFERENCE_TYPE if the MEMBER does. Otherwise, the expression
1523 returned will have the type referred to by the reference.
1524
1525 This function does not perform access control; that is either done
1526 earlier by the parser when the name of MEMBER is resolved to MEMBER
1527 itself, or later when overload resolution selects one of the
1528 functions indicated by MEMBER. */
e92cc029 1529
8d08fdba 1530tree
50ad9642
MM
1531build_class_member_access_expr (tree object, tree member,
1532 tree access_path, bool preserve_reference)
8d08fdba 1533{
50ad9642
MM
1534 tree object_type;
1535 tree member_scope;
1536 tree result = NULL_TREE;
8d08fdba 1537
50ad9642 1538 if (object == error_mark_node || member == error_mark_node)
01240200 1539 return error_mark_node;
5566b478 1540
a723baf1
MM
1541 if (TREE_CODE (member) == PSEUDO_DTOR_EXPR)
1542 return member;
1543
50ad9642
MM
1544 my_friendly_assert (DECL_P (member) || BASELINK_P (member),
1545 20020801);
8d08fdba 1546
50ad9642 1547 /* [expr.ref]
5566b478 1548
50ad9642
MM
1549 The type of the first expression shall be "class object" (of a
1550 complete type). */
1551 object_type = TREE_TYPE (object);
1552 if (!complete_type_or_else (object_type, object))
1553 return error_mark_node;
1554 if (!CLASS_TYPE_P (object_type))
fc378698 1555 {
50ad9642
MM
1556 error ("request for member `%D' in `%E', which is of non-class type `%T'",
1557 member, object, object_type);
1558 return error_mark_node;
fc378698 1559 }
8d08fdba 1560
50ad9642
MM
1561 /* The standard does not seem to actually say that MEMBER must be a
1562 member of OBJECT_TYPE. However, that is clearly what is
1563 intended. */
1564 if (DECL_P (member))
8d08fdba 1565 {
50ad9642
MM
1566 member_scope = DECL_CLASS_CONTEXT (member);
1567 mark_used (member);
1568 if (TREE_DEPRECATED (member))
1569 warn_deprecated_use (member);
1570 }
1571 else
1572 member_scope = BINFO_TYPE (BASELINK_BINFO (member));
1573 /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
1574 presently be the anonymous union. Go outwards until we find a
1575 type related to OBJECT_TYPE. */
1576 while (ANON_AGGR_TYPE_P (member_scope)
1577 && !same_type_ignoring_top_level_qualifiers_p (member_scope,
1578 object_type))
1579 member_scope = TYPE_CONTEXT (member_scope);
1580 if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
1581 {
ef292d4f
GDR
1582 if (TREE_CODE (member) == FIELD_DECL)
1583 error ("invalid use of nonstatic data member '%E'", member);
1584 else
1585 error ("`%D' is not a member of `%T'", member, object_type);
50ad9642 1586 return error_mark_node;
8d08fdba 1587 }
8d08fdba 1588
f576dfc4
JM
1589 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
1590 `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only an lvalue
1591 in the frontend; only _DECLs and _REFs are lvalues in the backend. */
1592 {
1593 tree temp = unary_complex_lvalue (ADDR_EXPR, object);
1594 if (temp)
1595 object = build_indirect_ref (temp, NULL);
1596 }
2050a1bb 1597
50ad9642
MM
1598 /* In [expr.ref], there is an explicit list of the valid choices for
1599 MEMBER. We check for each of those cases here. */
1600 if (TREE_CODE (member) == VAR_DECL)
8d08fdba 1601 {
50ad9642
MM
1602 /* A static data member. */
1603 result = member;
1604 /* If OBJECT has side-effects, they are supposed to occur. */
1605 if (TREE_SIDE_EFFECTS (object))
1606 result = build (COMPOUND_EXPR, TREE_TYPE (result), object, result);
8d08fdba 1607 }
50ad9642
MM
1608 else if (TREE_CODE (member) == FIELD_DECL)
1609 {
1610 /* A non-static data member. */
1611 bool null_object_p;
1612 int type_quals;
1613 tree member_type;
8d08fdba 1614
50ad9642
MM
1615 null_object_p = (TREE_CODE (object) == INDIRECT_REF
1616 && integer_zerop (TREE_OPERAND (object, 0)));
8d08fdba 1617
50ad9642 1618 /* Convert OBJECT to the type of MEMBER. */
bdaa131b
JM
1619 if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
1620 TYPE_MAIN_VARIANT (member_scope)))
8d08fdba 1621 {
50ad9642
MM
1622 tree binfo;
1623 base_kind kind;
1624
1625 binfo = lookup_base (access_path ? access_path : object_type,
1626 member_scope, ba_ignore, &kind);
1627 if (binfo == error_mark_node)
1628 return error_mark_node;
1629
bdaa131b 1630 /* It is invalid to try to get to a virtual base of a
50ad9642
MM
1631 NULL object. The most common cause is invalid use of
1632 offsetof macro. */
1633 if (null_object_p && kind == bk_via_virtual)
1634 {
1635 error ("invalid access to non-static data member `%D' of NULL object",
1636 member);
1637 error ("(perhaps the `offsetof' macro was used incorrectly)");
1638 return error_mark_node;
1639 }
1640
1641 /* Convert to the base. */
1642 object = build_base_path (PLUS_EXPR, object, binfo,
1643 /*nonnull=*/1);
1644 /* If we found the base successfully then we should be able
1645 to convert to it successfully. */
1646 my_friendly_assert (object != error_mark_node,
1647 20020801);
8d08fdba 1648 }
3b5b4904
JM
1649
1650 /* Complain about other invalid uses of offsetof, even though they will
1651 give the right answer. Note that we complain whether or not they
1652 actually used the offsetof macro, since there's no way to know at this
1653 point. So we just give a warning, instead of a pedwarn. */
a01fff59
MA
1654 if (null_object_p && warn_invalid_offsetof
1655 && CLASSTYPE_NON_POD_P (object_type))
8d08fdba 1656 {
50ad9642
MM
1657 warning ("invalid access to non-static data member `%D' of NULL object",
1658 member);
1659 warning ("(perhaps the `offsetof' macro was used incorrectly)");
8d08fdba 1660 }
8d08fdba 1661
50ad9642
MM
1662 /* If MEMBER is from an anonymous aggregate, we have converted
1663 OBJECT so that it refers to the class containing the
1664 anonymous union. Generate a reference to the anonymous union
1665 itself, and recur to find MEMBER. */
0ca7178c 1666 if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
a723baf1
MM
1667 /* When this code is called from build_field_call, the
1668 object already has the type of the anonymous union.
1669 That is because the COMPONENT_REF was already
1670 constructed, and was then disassembled before calling
1671 build_field_call. After the function-call code is
1672 cleaned up, this waste can be eliminated. */
1673 && (!same_type_ignoring_top_level_qualifiers_p
1674 (TREE_TYPE (object), DECL_CONTEXT (member))))
50ad9642
MM
1675 {
1676 tree anonymous_union;
1677
1678 anonymous_union = lookup_anon_field (TREE_TYPE (object),
1679 DECL_CONTEXT (member));
1680 object = build_class_member_access_expr (object,
1681 anonymous_union,
1682 /*access_path=*/NULL_TREE,
1683 preserve_reference);
1684 }
1685
1686 /* Compute the type of the field, as described in [expr.ref]. */
1687 type_quals = TYPE_UNQUALIFIED;
1688 member_type = TREE_TYPE (member);
1689 if (TREE_CODE (member_type) != REFERENCE_TYPE)
1690 {
1691 type_quals = (cp_type_quals (member_type)
1692 | cp_type_quals (object_type));
1693
1694 /* A field is const (volatile) if the enclosing object, or the
1695 field itself, is const (volatile). But, a mutable field is
1696 not const, even within a const object. */
1697 if (DECL_MUTABLE_P (member))
1698 type_quals &= ~TYPE_QUAL_CONST;
1699 member_type = cp_build_qualified_type (member_type, type_quals);
1700 }
1701
1702 result = fold (build (COMPONENT_REF, member_type, object, member));
1703
1704 /* Mark the expression const or volatile, as appropriate. Even
1705 though we've dealt with the type above, we still have to mark the
1706 expression itself. */
1707 if (type_quals & TYPE_QUAL_CONST)
1708 TREE_READONLY (result) = 1;
1709 else if (type_quals & TYPE_QUAL_VOLATILE)
1710 TREE_THIS_VOLATILE (result) = 1;
1711 }
1712 else if (BASELINK_P (member))
9e9ff709 1713 {
50ad9642
MM
1714 /* The member is a (possibly overloaded) member function. */
1715 tree functions;
a723baf1 1716 tree type;
50ad9642
MM
1717
1718 /* If the MEMBER is exactly one static member function, then we
1719 know the type of the expression. Otherwise, we must wait
1720 until overload resolution has been performed. */
1721 functions = BASELINK_FUNCTIONS (member);
1722 if (TREE_CODE (functions) == FUNCTION_DECL
1723 && DECL_STATIC_FUNCTION_P (functions))
a723baf1 1724 type = TREE_TYPE (functions);
50ad9642 1725 else
a723baf1
MM
1726 type = unknown_type_node;
1727 /* Note that we do not convert OBJECT to the BASELINK_BINFO
1728 base. That will happen when the function is called. */
1729 result = build (COMPONENT_REF, type, object, member);
9e9ff709 1730 }
50ad9642 1731 else if (TREE_CODE (member) == CONST_DECL)
b928a651 1732 {
50ad9642
MM
1733 /* The member is an enumerator. */
1734 result = member;
1735 /* If OBJECT has side-effects, they are supposed to occur. */
1736 if (TREE_SIDE_EFFECTS (object))
1737 result = build (COMPOUND_EXPR, TREE_TYPE (result),
1738 object, result);
b928a651 1739 }
8d08fdba
MS
1740 else
1741 {
50ad9642
MM
1742 error ("invalid use of `%D'", member);
1743 return error_mark_node;
1744 }
8d08fdba 1745
50ad9642
MM
1746 if (!preserve_reference)
1747 /* [expr.ref]
1748
1749 If E2 is declared to have type "reference to T", then ... the
1750 type of E1.E2 is T. */
1751 result = convert_from_reference (result);
e6f62286 1752
50ad9642
MM
1753 return result;
1754}
8d08fdba 1755
a723baf1
MM
1756/* Return the destructor denoted by OBJECT.SCOPE::~DTOR_NAME, or, if
1757 SCOPE is NULL, by OBJECT.~DTOR_NAME. */
1758
1759static tree
1760lookup_destructor (tree object, tree scope, tree dtor_name)
1761{
1762 tree object_type = TREE_TYPE (object);
1763 tree dtor_type = TREE_OPERAND (dtor_name, 0);
1764
1765 if (scope && !check_dtor_name (scope, dtor_name))
1766 {
1767 error ("qualified type `%T' does not match destructor name `~%T'",
1768 scope, dtor_type);
1769 return error_mark_node;
1770 }
1771 if (!same_type_p (dtor_type, TYPE_MAIN_VARIANT (object_type)))
1772 {
1773 error ("destructor name `%T' does not match type `%T' of expression",
1774 dtor_type, object_type);
1775 return error_mark_node;
1776 }
1777 if (!TYPE_HAS_DESTRUCTOR (object_type))
1778 return build (PSEUDO_DTOR_EXPR, void_type_node, object, scope,
1779 dtor_type);
1780 return lookup_member (object_type, complete_dtor_identifier,
86ac0575 1781 /*protect=*/1, /*want_type=*/false);
a723baf1
MM
1782}
1783
50ad9642
MM
1784/* This function is called by the parser to process a class member
1785 access expression of the form OBJECT.NAME. NAME is a node used by
1786 the parser to represent a name; it is not yet a DECL. It may,
1787 however, be a BASELINK where the BASELINK_FUNCTIONS is a
1788 TEMPLATE_ID_EXPR. Templates must be looked up by the parser, and
1789 there is no reason to do the lookup twice, so the parser keeps the
1790 BASELINK. */
8d08fdba 1791
50ad9642
MM
1792tree
1793finish_class_member_access_expr (tree object, tree name)
1794{
d17811fd 1795 tree expr;
50ad9642
MM
1796 tree object_type;
1797 tree member;
1798 tree access_path = NULL_TREE;
d17811fd
MM
1799 tree orig_object = object;
1800 tree orig_name = name;
3c8c2a0a 1801
50ad9642
MM
1802 if (object == error_mark_node || name == error_mark_node)
1803 return error_mark_node;
3c8c2a0a 1804
d17811fd
MM
1805 object_type = TREE_TYPE (object);
1806
50ad9642 1807 if (processing_template_decl)
d17811fd
MM
1808 {
1809 if (/* If OBJECT_TYPE is dependent, so is OBJECT.NAME. */
1810 dependent_type_p (object_type)
1811 /* If NAME is "f<args>", where either 'f' or 'args' is
1812 dependent, then the expression is dependent. */
1813 || (TREE_CODE (name) == TEMPLATE_ID_EXPR
1814 && dependent_template_id_p (TREE_OPERAND (name, 0),
1815 TREE_OPERAND (name, 1)))
1816 /* If NAME is "T::X" where "T" is dependent, then the
1817 expression is dependent. */
1818 || (TREE_CODE (name) == SCOPE_REF
1819 && TYPE_P (TREE_OPERAND (name, 0))
1820 && dependent_type_p (TREE_OPERAND (name, 0))))
1821 return build_min_nt (COMPONENT_REF, object, name);
1822 object = build_non_dependent_expr (object);
1823 }
50ad9642 1824
50ad9642
MM
1825 if (TREE_CODE (object_type) == REFERENCE_TYPE)
1826 {
1827 object = convert_from_reference (object);
1828 object_type = TREE_TYPE (object);
8d08fdba
MS
1829 }
1830
50ad9642 1831 /* [expr.ref]
e23bd218 1832
50ad9642
MM
1833 The type of the first expression shall be "class object" (of a
1834 complete type). */
1835 if (!complete_type_or_else (object_type, object))
1836 return error_mark_node;
1837 if (!CLASS_TYPE_P (object_type))
1838 {
1839 error ("request for member `%D' in `%E', which is of non-class type `%T'",
1840 name, object, object_type);
1841 return error_mark_node;
1842 }
f2d9afec 1843
50ad9642 1844 if (BASELINK_P (name))
9e9ff709 1845 {
50ad9642
MM
1846 /* A member function that has already been looked up. */
1847 my_friendly_assert ((TREE_CODE (BASELINK_FUNCTIONS (name))
1848 == TEMPLATE_ID_EXPR),
1849 20020805);
1850 member = name;
1851 }
1852 else
1853 {
1854 bool is_template_id = false;
1855 tree template_args = NULL_TREE;
d17811fd 1856 tree scope;
2ee887f2 1857
50ad9642 1858 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2ee887f2 1859 {
50ad9642
MM
1860 is_template_id = true;
1861 template_args = TREE_OPERAND (name, 1);
1862 name = TREE_OPERAND (name, 0);
1863 }
f2d9afec 1864
50ad9642
MM
1865 if (TREE_CODE (name) == SCOPE_REF)
1866 {
50ad9642
MM
1867 /* A qualified name. The qualifying class or namespace `S' has
1868 already been looked up; it is either a TYPE or a
1869 NAMESPACE_DECL. The member name is either an IDENTIFIER_NODE
1870 or a BIT_NOT_EXPR. */
1871 scope = TREE_OPERAND (name, 0);
1872 name = TREE_OPERAND (name, 1);
1873 my_friendly_assert ((CLASS_TYPE_P (scope)
1874 || TREE_CODE (scope) == NAMESPACE_DECL),
1875 20020804);
1876 my_friendly_assert ((TREE_CODE (name) == IDENTIFIER_NODE
1877 || TREE_CODE (name) == BIT_NOT_EXPR),
1878 20020804);
1879
1880 /* If SCOPE is a namespace, then the qualified name does not
1881 name a member of OBJECT_TYPE. */
1882 if (TREE_CODE (scope) == NAMESPACE_DECL)
2ee887f2 1883 {
50ad9642 1884 error ("`%D::%D' is not a member of `%T'",
5b770a96 1885 scope, name, object_type);
2ee887f2
MS
1886 return error_mark_node;
1887 }
50ad9642
MM
1888
1889 /* Find the base of OBJECT_TYPE corresponding to SCOPE. */
1890 access_path = lookup_base (object_type, scope, ba_check, NULL);
c8a65a25 1891 if (access_path == error_mark_node)
50ad9642 1892 return error_mark_node;
c8a65a25
MM
1893 if (!access_path)
1894 {
1895 error ("`%T' is not a base of `%T'", scope, object_type);
1896 return error_mark_node;
1897 }
2ee887f2 1898 }
d17811fd
MM
1899 else
1900 {
1901 scope = NULL_TREE;
1902 access_path = object_type;
1903 }
1904
1905 if (TREE_CODE (name) == BIT_NOT_EXPR)
1906 member = lookup_destructor (object, scope, name);
1907 else
9e9ff709 1908 {
d17811fd
MM
1909 /* Look up the member. */
1910 member = lookup_member (access_path, name, /*protect=*/1,
86ac0575 1911 /*want_type=*/false);
8a5f4379
GDR
1912 if (member == NULL_TREE)
1913 {
1914 error ("'%D' has no member named '%E'", object_type, name);
1915 return error_mark_node;
1916 }
d17811fd 1917 if (member == error_mark_node)
50ad9642
MM
1918 return error_mark_node;
1919 }
50ad9642
MM
1920
1921 if (is_template_id)
1922 {
1923 tree template = member;
1924
1925 if (BASELINK_P (template))
d17811fd 1926 template = lookup_template_function (template, template_args);
50ad9642
MM
1927 else
1928 {
1929 error ("`%D' is not a member template function", name);
1930 return error_mark_node;
1931 }
9e9ff709
MS
1932 }
1933 }
1934
a723baf1
MM
1935 if (TREE_DEPRECATED (member))
1936 warn_deprecated_use (member);
1937
d17811fd 1938 expr = build_class_member_access_expr (object, member, access_path,
50ad9642 1939 /*preserve_reference=*/false);
d17811fd 1940 if (processing_template_decl && expr != error_mark_node)
8e1daa34
NS
1941 return build_min_non_dep (COMPONENT_REF, expr,
1942 orig_object, orig_name);
d17811fd 1943 return expr;
8d08fdba 1944}
5156628f 1945
50ad9642
MM
1946/* Return an expression for the MEMBER_NAME field in the internal
1947 representation of PTRMEM, a pointer-to-member function. (Each
1948 pointer-to-member function type gets its own RECORD_TYPE so it is
1949 more convenient to access the fields by name than by FIELD_DECL.)
1950 This routine converts the NAME to a FIELD_DECL and then creates the
1951 node for the complete expression. */
5156628f
MS
1952
1953tree
50ad9642 1954build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
5156628f 1955{
50ad9642
MM
1956 tree ptrmem_type;
1957 tree member;
1958 tree member_type;
1959
1960 /* This code is a stripped down version of
1961 build_class_member_access_expr. It does not work to use that
1962 routine directly because it expects the object to be of class
1963 type. */
1964 ptrmem_type = TREE_TYPE (ptrmem);
1965 my_friendly_assert (TYPE_PTRMEMFUNC_P (ptrmem_type), 20020804);
1966 member = lookup_member (ptrmem_type, member_name, /*protect=*/0,
86ac0575 1967 /*want_type=*/false);
50ad9642
MM
1968 member_type = cp_build_qualified_type (TREE_TYPE (member),
1969 cp_type_quals (ptrmem_type));
1970 return fold (build (COMPONENT_REF, member_type, ptrmem, member));
5156628f 1971}
50ad9642 1972
8d08fdba
MS
1973/* Given an expression PTR for a pointer, return an expression
1974 for the value pointed to.
1975 ERRORSTRING is the name of the operator to appear in error messages.
1976
1977 This function may need to overload OPERATOR_FNNAME.
1978 Must also handle REFERENCE_TYPEs for C++. */
1979
1980tree
d17811fd 1981build_x_indirect_ref (tree expr, const char *errorstring)
8d08fdba 1982{
d17811fd 1983 tree orig_expr = expr;
5566b478
MS
1984 tree rval;
1985
5156628f 1986 if (processing_template_decl)
d17811fd
MM
1987 {
1988 if (type_dependent_expression_p (expr))
1989 return build_min_nt (INDIRECT_REF, expr);
1990 expr = build_non_dependent_expr (expr);
1991 }
5566b478 1992
d17811fd 1993 rval = build_new_op (INDIRECT_REF, LOOKUP_NORMAL, expr, NULL_TREE,
14d22dd6 1994 NULL_TREE);
d17811fd
MM
1995 if (!rval)
1996 rval = build_indirect_ref (expr, errorstring);
1997
1998 if (processing_template_decl && rval != error_mark_node)
8e1daa34 1999 return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
d17811fd 2000 else
8d08fdba 2001 return rval;
8d08fdba
MS
2002}
2003
2004tree
5671bf27 2005build_indirect_ref (tree ptr, const char *errorstring)
8d08fdba 2006{
c11b6f21
MS
2007 register tree pointer, type;
2008
2009 if (ptr == error_mark_node)
2010 return error_mark_node;
2011
90e734a8
JM
2012 if (ptr == current_class_ptr)
2013 return current_class_ref;
2014
c11b6f21 2015 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
0a72704b 2016 ? ptr : decay_conversion (ptr));
c11b6f21 2017 type = TREE_TYPE (pointer);
8d08fdba 2018
162bc98d 2019 if (TYPE_PTR_P (type) || TREE_CODE (type) == REFERENCE_TYPE)
8d08fdba 2020 {
01240200
MM
2021 /* [expr.unary.op]
2022
2023 If the type of the expression is "pointer to T," the type
2024 of the result is "T."
2025
2026 We must use the canonical variant because certain parts of
2027 the back end, like fold, do pointer comparisons between
2028 types. */
2029 tree t = canonical_type_variant (TREE_TYPE (type));
2030
b72801e2 2031 if (VOID_TYPE_P (t))
a9183fef
NS
2032 {
2033 /* A pointer to incomplete type (other than cv void) can be
2034 dereferenced [expr.unary.op]/1 */
33bd39a2 2035 error ("`%T' is not a pointer-to-object type", type);
a9183fef
NS
2036 return error_mark_node;
2037 }
2038 else if (TREE_CODE (pointer) == ADDR_EXPR
688f6688 2039 && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
01240200
MM
2040 /* The POINTER was something like `&x'. We simplify `*&x' to
2041 `x'. */
8d08fdba
MS
2042 return TREE_OPERAND (pointer, 0);
2043 else
2044 {
01240200 2045 tree ref = build1 (INDIRECT_REF, t, pointer);
8d08fdba 2046
b0d75c1e
BK
2047 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2048 so that we get the proper error message if the result is used
2049 to assign to. Also, &* is supposed to be a no-op. */
91063b51
MM
2050 TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
2051 TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
8d08fdba 2052 TREE_SIDE_EFFECTS (ref)
271bd540 2053 = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
8d08fdba
MS
2054 return ref;
2055 }
2056 }
2057 /* `pointer' won't be an error_mark_node if we were given a
2058 pointer to member, so it's cool to check for this here. */
a5ac359a 2059 else if (TYPE_PTR_TO_MEMBER_P (type))
162bc98d 2060 error ("invalid use of `%s' on pointer to member", errorstring);
8d08fdba
MS
2061 else if (pointer != error_mark_node)
2062 {
2063 if (errorstring)
8251199e 2064 error ("invalid type argument of `%s'", errorstring);
8d08fdba 2065 else
8251199e 2066 error ("invalid type argument");
8d08fdba
MS
2067 }
2068 return error_mark_node;
2069}
2070
2071/* This handles expressions of the form "a[i]", which denotes
2072 an array reference.
2073
2074 This is logically equivalent in C to *(a+i), but we may do it differently.
2075 If A is a variable or a member, we generate a primitive ARRAY_REF.
2076 This avoids forcing the array out of registers, and can work on
2077 arrays that are not lvalues (for example, members of structures returned
2078 by functions).
2079
2080 If INDEX is of some user-defined type, it must be converted to
2081 integer type. Otherwise, to make a compatible PLUS_EXPR, it
2082 will inherit the type of the array, which will be some pointer type. */
2083
8d08fdba 2084tree
5671bf27 2085build_array_ref (tree array, tree idx)
8d08fdba 2086{
8d08fdba
MS
2087 if (idx == 0)
2088 {
8251199e 2089 error ("subscript missing in array reference");
8d08fdba
MS
2090 return error_mark_node;
2091 }
2092
2093 if (TREE_TYPE (array) == error_mark_node
2094 || TREE_TYPE (idx) == error_mark_node)
2095 return error_mark_node;
2096
0450d74d
RH
2097 /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
2098 inside it. */
2099 switch (TREE_CODE (array))
2100 {
2101 case COMPOUND_EXPR:
2102 {
2103 tree value = build_array_ref (TREE_OPERAND (array, 1), idx);
2104 return build (COMPOUND_EXPR, TREE_TYPE (value),
2105 TREE_OPERAND (array, 0), value);
2106 }
2107
2108 case COND_EXPR:
2109 return build_conditional_expr
2110 (TREE_OPERAND (array, 0),
2111 build_array_ref (TREE_OPERAND (array, 1), idx),
2112 build_array_ref (TREE_OPERAND (array, 2), idx));
2113
2114 default:
2115 break;
2116 }
2117
8d08fdba
MS
2118 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE
2119 && TREE_CODE (array) != INDIRECT_REF)
2120 {
2121 tree rval, type;
2122
2123 /* Subscripting with type char is likely to lose
2124 on a machine where chars are signed.
2125 So warn on any machine, but optionally.
2126 Don't warn for unsigned char since that type is safe.
2127 Don't warn for signed char because anyone who uses that
2128 must have done so deliberately. */
2129 if (warn_char_subscripts
2130 && TYPE_MAIN_VARIANT (TREE_TYPE (idx)) == char_type_node)
8251199e 2131 warning ("array subscript has type `char'");
8d08fdba 2132
0a72704b 2133 if (!INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
8d08fdba 2134 {
8251199e 2135 error ("array subscript is not an integer");
8d08fdba
MS
2136 return error_mark_node;
2137 }
2138
0a72704b
MM
2139 /* Apply integral promotions *after* noticing character types.
2140 (It is unclear why we do these promotions -- the standard
2141 does not say that we should. In fact, the natual thing would
2142 seem to be to convert IDX to ptrdiff_t; we're performing
2143 pointer arithmetic.) */
2144 idx = perform_integral_promotions (idx);
2145
8d08fdba
MS
2146 /* An array that is indexed by a non-constant
2147 cannot be stored in a register; we must be able to do
2148 address arithmetic on its address.
2149 Likewise an array of elements of variable size. */
2150 if (TREE_CODE (idx) != INTEGER_CST
d0f062fb 2151 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
3c215895
JM
2152 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
2153 != INTEGER_CST)))
8d08fdba 2154 {
dffd7eb6 2155 if (!cxx_mark_addressable (array))
8d08fdba
MS
2156 return error_mark_node;
2157 }
0450d74d 2158
8d08fdba
MS
2159 /* An array that is indexed by a constant value which is not within
2160 the array bounds cannot be stored in a register either; because we
2161 would get a crash in store_bit_field/extract_bit_field when trying
2162 to access a non-existent part of the register. */
2163 if (TREE_CODE (idx) == INTEGER_CST
2164 && TYPE_VALUES (TREE_TYPE (array))
2165 && ! int_fits_type_p (idx, TYPE_VALUES (TREE_TYPE (array))))
2166 {
dffd7eb6 2167 if (!cxx_mark_addressable (array))
8d08fdba
MS
2168 return error_mark_node;
2169 }
2170
8d08fdba 2171 if (pedantic && !lvalue_p (array))
7e4d7898 2172 pedwarn ("ISO C++ forbids subscripting non-lvalue array");
8d08fdba 2173
b7484fbe
MS
2174 /* Note in C++ it is valid to subscript a `register' array, since
2175 it is valid to take the address of something with that
2176 storage specification. */
2177 if (extra_warnings)
8d08fdba
MS
2178 {
2179 tree foo = array;
2180 while (TREE_CODE (foo) == COMPONENT_REF)
2181 foo = TREE_OPERAND (foo, 0);
2182 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo))
8251199e 2183 warning ("subscripting array declared `register'");
8d08fdba
MS
2184 }
2185
01240200 2186 type = TREE_TYPE (TREE_TYPE (array));
8d08fdba
MS
2187 rval = build (ARRAY_REF, type, array, idx);
2188 /* Array ref is const/volatile if the array elements are
2189 or if the array is.. */
2190 TREE_READONLY (rval)
91063b51 2191 |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
8d08fdba 2192 TREE_SIDE_EFFECTS (rval)
91063b51 2193 |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
8d08fdba 2194 TREE_THIS_VOLATILE (rval)
91063b51 2195 |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
8d08fdba
MS
2196 return require_complete_type (fold (rval));
2197 }
2198
2199 {
2200 tree ar = default_conversion (array);
2201 tree ind = default_conversion (idx);
2202
2203 /* Put the integer in IND to simplify error checking. */
2204 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
2205 {
2206 tree temp = ar;
2207 ar = ind;
2208 ind = temp;
2209 }
2210
2211 if (ar == error_mark_node)
2212 return ar;
2213
2214 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE)
2215 {
8251199e 2216 error ("subscripted value is neither array nor pointer");
8d08fdba
MS
2217 return error_mark_node;
2218 }
2219 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
2220 {
8251199e 2221 error ("array subscript is not an integer");
8d08fdba
MS
2222 return error_mark_node;
2223 }
2224
ab76ca54 2225 return build_indirect_ref (cp_build_binary_op (PLUS_EXPR, ar, ind),
8d08fdba
MS
2226 "array indexing");
2227 }
2228}
2229\f
8d08fdba 2230/* Resolve a pointer to member function. INSTANCE is the object
c87978aa
JM
2231 instance to use, if the member points to a virtual member.
2232
2233 This used to avoid checking for virtual functions if basetype
2234 has no virtual functions, according to an earlier ANSI draft.
2235 With the final ISO C++ rules, such an optimization is
2236 incorrect: A pointer to a derived member can be static_cast
2237 to pointer-to-base-member, as long as the dynamic object
c6002625 2238 later has the right member. */
8d08fdba
MS
2239
2240tree
5671bf27 2241get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function)
8d08fdba
MS
2242{
2243 if (TREE_CODE (function) == OFFSET_REF)
338d90b8 2244 function = TREE_OPERAND (function, 1);
8d08fdba
MS
2245
2246 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
2247 {
c87978aa
JM
2248 tree idx, delta, e1, e2, e3, vtbl, basetype;
2249 tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
f30432d7 2250
b7484fbe 2251 tree instance_ptr = *instance_ptrptr;
1c83ea9f 2252 tree instance_save_expr = 0;
c87978aa 2253 if (instance_ptr == error_mark_node)
32facac8 2254 {
c87978aa
JM
2255 if (TREE_CODE (function) == PTRMEM_CST)
2256 {
2257 /* Extracting the function address from a pmf is only
2258 allowed with -Wno-pmf-conversions. It only works for
c6002625 2259 pmf constants. */
c87978aa
JM
2260 e1 = build_addr_func (PTRMEM_CST_MEMBER (function));
2261 e1 = convert (fntype, e1);
2262 return e1;
2263 }
2264 else
2265 {
2266 error ("object missing in use of `%E'", function);
2267 return error_mark_node;
2268 }
32facac8
ML
2269 }
2270
b7484fbe 2271 if (TREE_SIDE_EFFECTS (instance_ptr))
1c83ea9f 2272 instance_ptr = instance_save_expr = save_expr (instance_ptr);
b7484fbe 2273
f30432d7
MS
2274 if (TREE_SIDE_EFFECTS (function))
2275 function = save_expr (function);
2276
c87978aa 2277 /* Start by extracting all the information from the PMF itself. */
c1def683 2278 e3 = PFN_FROM_PTRMEMFUNC (function);
50ad9642 2279 delta = build_ptrmemfunc_access_expr (function, delta_identifier);
85b7def6 2280 idx = build1 (NOP_EXPR, vtable_index_type, e3);
cb7fdde2
AO
2281 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
2282 {
2283 case ptrmemfunc_vbit_in_pfn:
85b7def6 2284 e1 = cp_build_binary_op (BIT_AND_EXPR, idx, integer_one_node);
c87978aa 2285 idx = cp_build_binary_op (MINUS_EXPR, idx, integer_one_node);
cb7fdde2
AO
2286 break;
2287
2288 case ptrmemfunc_vbit_in_delta:
c87978aa
JM
2289 e1 = cp_build_binary_op (BIT_AND_EXPR, delta, integer_one_node);
2290 delta = cp_build_binary_op (RSHIFT_EXPR, delta, integer_one_node);
cb7fdde2
AO
2291 break;
2292
2293 default:
2294 abort ();
2295 }
03b256e4 2296
c87978aa 2297 /* Convert down to the right base before using the instance. First
c6002625 2298 use the type... */
c87978aa
JM
2299 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
2300 basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
2301 basetype, ba_check, NULL);
2302 instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype, 1);
2303 if (instance_ptr == error_mark_node)
2304 return error_mark_node;
2305 /* ...and then the delta in the PMF. */
2306 instance_ptr = build (PLUS_EXPR, TREE_TYPE (instance_ptr),
2307 instance_ptr, delta);
2308
2309 /* Hand back the adjusted 'this' argument to our caller. */
2310 *instance_ptrptr = instance_ptr;
2311
2312 /* Next extract the vtable pointer from the object. */
2313 vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
2314 instance_ptr);
3e411c3f 2315 vtbl = build_indirect_ref (vtbl, NULL);
85b7def6 2316
c87978aa 2317 /* Finally, extract the function pointer from the vtable. */
85b7def6
JM
2318 e2 = fold (build (PLUS_EXPR, TREE_TYPE (vtbl), vtbl, idx));
2319 e2 = build_indirect_ref (e2, NULL);
f63ab951 2320 TREE_CONSTANT (e2) = 1;
c7e266a6 2321
67231816
RH
2322 /* When using function descriptors, the address of the
2323 vtable entry is treated as a function pointer. */
2324 if (TARGET_VTABLE_USES_DESCRIPTORS)
2325 e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
2326 build_unary_op (ADDR_EXPR, e2, /*noconvert=*/1));
2327
03b256e4
ML
2328 TREE_TYPE (e2) = TREE_TYPE (e3);
2329 e1 = build_conditional_expr (e1, e2, e3);
2330
2331 /* Make sure this doesn't get evaluated first inside one of the
2332 branches of the COND_EXPR. */
1c83ea9f 2333 if (instance_save_expr)
03b256e4 2334 e1 = build (COMPOUND_EXPR, TREE_TYPE (e1),
1c83ea9f 2335 instance_save_expr, e1);
03b256e4 2336
f49422da 2337 function = e1;
8d08fdba
MS
2338 }
2339 return function;
2340}
2341
2342tree
5671bf27 2343build_function_call (tree function, tree params)
8d08fdba
MS
2344{
2345 register tree fntype, fndecl;
8d08fdba 2346 register tree coerced_params;
1eb8759b 2347 tree result;
8d08fdba
MS
2348 tree name = NULL_TREE, assembler_name = NULL_TREE;
2349 int is_method;
2e4cf9dc 2350 tree original = function;
8d08fdba
MS
2351
2352 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
2353 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
2354 if (TREE_CODE (function) == NOP_EXPR
2355 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
2356 function = TREE_OPERAND (function, 0);
2357
2358 if (TREE_CODE (function) == FUNCTION_DECL)
2359 {
2360 name = DECL_NAME (function);
2361 assembler_name = DECL_ASSEMBLER_NAME (function);
2362
72b7eeff 2363 mark_used (function);
8d08fdba
MS
2364 fndecl = function;
2365
2366 /* Convert anything with function type to a pointer-to-function. */
35680744 2367 if (pedantic && DECL_MAIN_P (function))
7e4d7898 2368 pedwarn ("ISO C++ forbids calling `::main' from within program");
8d08fdba
MS
2369
2370 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
2371 (because calling an inline function does not mean the function
2372 needs to be separately compiled). */
2e4cf9dc 2373
8d08fdba 2374 if (DECL_INLINE (function))
73aad9b9 2375 function = inline_conversion (function);
8d08fdba 2376 else
4ac14744 2377 function = build_addr_func (function);
8d08fdba
MS
2378 }
2379 else
2380 {
2381 fndecl = NULL_TREE;
2382
4ac14744 2383 function = build_addr_func (function);
8d08fdba
MS
2384 }
2385
4ac14744
MS
2386 if (function == error_mark_node)
2387 return error_mark_node;
2388
8d08fdba
MS
2389 fntype = TREE_TYPE (function);
2390
2391 if (TYPE_PTRMEMFUNC_P (fntype))
2392 {
33bd39a2 2393 error ("must use .* or ->* to call pointer-to-member function in `%E (...)'",
2e4cf9dc 2394 original);
4ac14744 2395 return error_mark_node;
8d08fdba
MS
2396 }
2397
2398 is_method = (TREE_CODE (fntype) == POINTER_TYPE
2399 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
2400
2401 if (!((TREE_CODE (fntype) == POINTER_TYPE
2402 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
386b8a85
JM
2403 || is_method
2404 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
8d08fdba 2405 {
2e4cf9dc 2406 error ("`%E' cannot be used as a function", original);
8d08fdba
MS
2407 return error_mark_node;
2408 }
2409
2410 /* fntype now gets the type of function pointed to. */
2411 fntype = TREE_TYPE (fntype);
2412
2413 /* Convert the parameters to the types declared in the
2414 function prototype, or apply default promotions. */
2415
125e6594
MM
2416 coerced_params = convert_arguments (TYPE_ARG_TYPES (fntype),
2417 params, fndecl, LOOKUP_NORMAL);
863adfc0 2418 if (coerced_params == error_mark_node)
125e6594 2419 return error_mark_node;
863adfc0 2420
8d08fdba
MS
2421 /* Check for errors in format strings. */
2422
80a497e4
JM
2423 if (warn_format)
2424 check_function_format (NULL, TYPE_ATTRIBUTES (fntype), coerced_params);
8d08fdba
MS
2425
2426 /* Recognize certain built-in functions so we can make tree-codes
2427 other than CALL_EXPR. We do this when it enables fold-const.c
2428 to do something useful. */
2429
2430 if (TREE_CODE (function) == ADDR_EXPR
2431 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
1eb8759b
RH
2432 && DECL_BUILT_IN (TREE_OPERAND (function, 0)))
2433 {
2434 result = expand_tree_builtin (TREE_OPERAND (function, 0),
2435 params, coerced_params);
2436 if (result)
2437 return result;
2438 }
8d08fdba 2439
b2dd096b 2440 return build_cxx_call (function, params, coerced_params);
8d08fdba 2441}
8d08fdba
MS
2442\f
2443/* Convert the actual parameter expressions in the list VALUES
2444 to the types in the list TYPELIST.
2445 If parmdecls is exhausted, or when an element has NULL as its type,
2446 perform the default conversions.
2447
8d08fdba
MS
2448 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
2449
2450 This is also where warnings about wrong number of args are generated.
2451
2452 Return a list of expressions for the parameters as converted.
2453
2454 Both VALUES and the returned value are chains of TREE_LIST nodes
2455 with the elements of the list in the TREE_VALUE slots of those nodes.
2456
2457 In C++, unspecified trailing parameters can be filled in with their
2458 default arguments, if such were specified. Do so here. */
2459
2460tree
5671bf27 2461convert_arguments (tree typelist, tree values, tree fndecl, int flags)
8d08fdba 2462{
8d08fdba
MS
2463 register tree typetail, valtail;
2464 register tree result = NULL_TREE;
d8e178a0 2465 const char *called_thing = 0;
8d08fdba
MS
2466 int i = 0;
2467
faf5394a
MS
2468 /* Argument passing is always copy-initialization. */
2469 flags |= LOOKUP_ONLYCONVERTING;
2470
8d08fdba
MS
2471 if (fndecl)
2472 {
2473 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
2474 {
2475 if (DECL_NAME (fndecl) == NULL_TREE
2476 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
2477 called_thing = "constructor";
2478 else
2479 called_thing = "member function";
8d08fdba
MS
2480 }
2481 else
a0a33927 2482 called_thing = "function";
8d08fdba
MS
2483 }
2484
2485 for (valtail = values, typetail = typelist;
2486 valtail;
2487 valtail = TREE_CHAIN (valtail), i++)
2488 {
2489 register tree type = typetail ? TREE_VALUE (typetail) : 0;
2490 register tree val = TREE_VALUE (valtail);
2491
8ccc31eb 2492 if (val == error_mark_node)
863adfc0 2493 return error_mark_node;
8ccc31eb 2494
8d08fdba
MS
2495 if (type == void_type_node)
2496 {
2497 if (fndecl)
bf419747
MM
2498 {
2499 cp_error_at ("too many arguments to %s `%+#D'", called_thing,
2500 fndecl);
2501 error ("at this point in file");
2502 }
8d08fdba 2503 else
8251199e 2504 error ("too many arguments to function");
8d08fdba
MS
2505 /* In case anybody wants to know if this argument
2506 list is valid. */
2507 if (result)
2508 TREE_TYPE (tree_last (result)) = error_mark_node;
2509 break;
2510 }
2511
8d08fdba
MS
2512 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
2513 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
2514 if (TREE_CODE (val) == NOP_EXPR
a0a33927
MS
2515 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
2516 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
8d08fdba
MS
2517 val = TREE_OPERAND (val, 0);
2518
00595019
MS
2519 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
2520 {
2521 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
8d08fdba 2522 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
00595019 2523 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
0a72704b 2524 val = decay_conversion (val);
00595019 2525 }
8d08fdba
MS
2526
2527 if (val == error_mark_node)
863adfc0 2528 return error_mark_node;
8d08fdba 2529
8d08fdba
MS
2530 if (type != 0)
2531 {
2532 /* Formal parm type is specified by a function prototype. */
2533 tree parmval;
2534
d0f062fb 2535 if (!COMPLETE_TYPE_P (complete_type (type)))
8d08fdba 2536 {
3afd2e20
NS
2537 if (fndecl)
2538 error ("parameter %P of `%D' has incomplete type `%T'",
2539 i, fndecl, type);
2540 else
2541 error ("parameter %P has incomplete type `%T'", i, type);
2542 parmval = error_mark_node;
8d08fdba
MS
2543 }
2544 else
2545 {
9a3b49ac 2546 parmval = convert_for_initialization
56ae6d77 2547 (NULL_TREE, type, val, flags,
9a3b49ac 2548 "argument passing", fndecl, i);
8e51619a 2549 parmval = convert_for_arg_passing (type, parmval);
8d08fdba 2550 }
878cd289
MS
2551
2552 if (parmval == error_mark_node)
2553 return error_mark_node;
2554
e1b3e07d 2555 result = tree_cons (NULL_TREE, parmval, result);
8d08fdba
MS
2556 }
2557 else
2558 {
2559 if (TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
2560 val = convert_from_reference (val);
2561
d1188d91 2562 if (fndecl && DECL_BUILT_IN (fndecl)
4eaf1d5b
AH
2563 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CONSTANT_P)
2564 /* Don't do ellipsis conversion for __built_in_constant_p
2565 as this will result in spurious warnings for non-POD
2566 types. */
2567 val = require_complete_type (val);
2568 else
2569 val = convert_arg_to_ellipsis (val);
2570
2571 result = tree_cons (NULL_TREE, val, result);
8d08fdba
MS
2572 }
2573
8d08fdba
MS
2574 if (typetail)
2575 typetail = TREE_CHAIN (typetail);
2576 }
2577
2578 if (typetail != 0 && typetail != void_list_node)
2579 {
2580 /* See if there are default arguments that can be used */
a723baf1
MM
2581 if (TREE_PURPOSE (typetail)
2582 && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
8d08fdba 2583 {
f376e137 2584 for (; typetail != void_list_node; ++i)
8d08fdba 2585 {
297e73d8
MM
2586 tree parmval
2587 = convert_default_arg (TREE_VALUE (typetail),
2588 TREE_PURPOSE (typetail),
c3f08228 2589 fndecl, i);
8d08fdba 2590
878cd289
MS
2591 if (parmval == error_mark_node)
2592 return error_mark_node;
2593
e1b3e07d 2594 result = tree_cons (0, parmval, result);
8d08fdba
MS
2595 typetail = TREE_CHAIN (typetail);
2596 /* ends with `...'. */
2597 if (typetail == NULL_TREE)
2598 break;
2599 }
2600 }
2601 else
2602 {
2603 if (fndecl)
bf419747
MM
2604 {
2605 cp_error_at ("too few arguments to %s `%+#D'",
2606 called_thing, fndecl);
2607 error ("at this point in file");
2608 }
8d08fdba 2609 else
8251199e 2610 error ("too few arguments to function");
8d08fdba
MS
2611 return error_mark_list;
2612 }
2613 }
8d08fdba
MS
2614
2615 return nreverse (result);
2616}
2617\f
2618/* Build a binary-operation expression, after performing default
2619 conversions on the operands. CODE is the kind of expression to build. */
2620
2621tree
5671bf27 2622build_x_binary_op (enum tree_code code, tree arg1, tree arg2)
8d08fdba 2623{
d17811fd
MM
2624 tree orig_arg1;
2625 tree orig_arg2;
2626 tree expr;
5566b478 2627
d17811fd
MM
2628 orig_arg1 = arg1;
2629 orig_arg2 = arg2;
d6b4ea85 2630
d17811fd 2631 if (processing_template_decl)
14d22dd6 2632 {
d17811fd
MM
2633 if (type_dependent_expression_p (arg1)
2634 || type_dependent_expression_p (arg2))
2635 return build_min_nt (code, arg1, arg2);
2636 arg1 = build_non_dependent_expr (arg1);
2637 arg2 = build_non_dependent_expr (arg2);
2638 }
14d22dd6 2639
d17811fd
MM
2640 if (code == DOTSTAR_EXPR)
2641 expr = build_m_component_ref (arg1, arg2);
2642 else
2643 expr = build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE);
14d22dd6 2644
d17811fd 2645 if (processing_template_decl && expr != error_mark_node)
8e1daa34 2646 return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
14d22dd6 2647
d17811fd 2648 return expr;
14d22dd6
MM
2649}
2650
8d08fdba
MS
2651/* Build a binary-operation expression without default conversions.
2652 CODE is the kind of expression to build.
2653 This function differs from `build' in several ways:
2654 the data type of the result is computed and recorded in it,
2655 warnings are generated if arg data types are invalid,
2656 special handling for addition and subtraction of pointers is known,
2657 and some optimization is done (operations on narrow ints
2658 are done in the narrower type when that gives the same result).
2659 Constant folding is also done before the result is returned.
2660
8d08fdba
MS
2661 Note that the operands will never have enumeral types
2662 because either they have just had the default conversions performed
2663 or they have both just been converted to some other type in which
2664 the arithmetic is to be done.
2665
2666 C++: must do special pointer arithmetic when implementing
2667 multiple inheritance, and deal with pointer to member functions. */
2668
2669tree
5671bf27
AJ
2670build_binary_op (enum tree_code code, tree orig_op0, tree orig_op1,
2671 int convert_p ATTRIBUTE_UNUSED)
8d08fdba 2672{
39211cd5
MS
2673 tree op0, op1;
2674 register enum tree_code code0, code1;
2675 tree type0, type1;
8d08fdba
MS
2676
2677 /* Expression code to give to the expression when it is built.
2678 Normally this is CODE, which is what the caller asked for,
2679 but in some special cases we change it. */
2680 register enum tree_code resultcode = code;
2681
2682 /* Data type in which the computation is to be performed.
2683 In the simplest cases this is the common type of the arguments. */
2684 register tree result_type = NULL;
2685
2686 /* Nonzero means operands have already been type-converted
2687 in whatever way is necessary.
2688 Zero means they need to be converted to RESULT_TYPE. */
2689 int converted = 0;
2690
28cbf42c
MS
2691 /* Nonzero means create the expression with this type, rather than
2692 RESULT_TYPE. */
2693 tree build_type = 0;
2694
8d08fdba 2695 /* Nonzero means after finally constructing the expression
faae18ab 2696 convert it to this type. */
8d08fdba
MS
2697 tree final_type = 0;
2698
2699 /* Nonzero if this is an operation like MIN or MAX which can
2700 safely be computed in short if both args are promoted shorts.
2701 Also implies COMMON.
2702 -1 indicates a bitwise operation; this makes a difference
2703 in the exact conditions for when it is safe to do the operation
2704 in a narrower mode. */
2705 int shorten = 0;
2706
2707 /* Nonzero if this is a comparison operation;
2708 if both args are promoted shorts, compare the original shorts.
2709 Also implies COMMON. */
2710 int short_compare = 0;
2711
2712 /* Nonzero if this is a right-shift operation, which can be computed on the
2713 original short and then promoted if the operand is a promoted short. */
2714 int short_shift = 0;
2715
2716 /* Nonzero means set RESULT_TYPE to the common type of the args. */
2717 int common = 0;
2718
39211cd5 2719 /* Apply default conversions. */
40260429
NS
2720 op0 = orig_op0;
2721 op1 = orig_op1;
2722
a9aedbc2
MS
2723 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
2724 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
2725 || code == TRUTH_XOR_EXPR)
2726 {
40260429
NS
2727 if (!really_overloaded_fn (op0))
2728 op0 = decay_conversion (op0);
2729 if (!really_overloaded_fn (op1))
2730 op1 = decay_conversion (op1);
a9aedbc2
MS
2731 }
2732 else
2733 {
40260429
NS
2734 if (!really_overloaded_fn (op0))
2735 op0 = default_conversion (op0);
2736 if (!really_overloaded_fn (op1))
2737 op1 = default_conversion (op1);
a9aedbc2 2738 }
39211cd5 2739
a359be75
JM
2740 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2741 STRIP_TYPE_NOPS (op0);
2742 STRIP_TYPE_NOPS (op1);
2743
2744 /* DTRT if one side is an overloaded function, but complain about it. */
2745 if (type_unknown_p (op0))
2746 {
c2ea3a40 2747 tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
a359be75
JM
2748 if (t != error_mark_node)
2749 {
33bd39a2 2750 pedwarn ("assuming cast to type `%T' from overloaded function",
a359be75
JM
2751 TREE_TYPE (t));
2752 op0 = t;
2753 }
2754 }
2755 if (type_unknown_p (op1))
2756 {
c2ea3a40 2757 tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
a359be75
JM
2758 if (t != error_mark_node)
2759 {
33bd39a2 2760 pedwarn ("assuming cast to type `%T' from overloaded function",
a359be75
JM
2761 TREE_TYPE (t));
2762 op1 = t;
2763 }
2764 }
2765
39211cd5
MS
2766 type0 = TREE_TYPE (op0);
2767 type1 = TREE_TYPE (op1);
2768
2769 /* The expression codes of the data types of the arguments tell us
2770 whether the arguments are integers, floating, pointers, etc. */
2771 code0 = TREE_CODE (type0);
2772 code1 = TREE_CODE (type1);
2773
8d08fdba
MS
2774 /* If an error was already reported for one of the arguments,
2775 avoid reporting another error. */
2776
2777 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
2778 return error_mark_node;
2779
2780 switch (code)
2781 {
2782 case PLUS_EXPR:
2783 /* Handle the pointer + int case. */
2784 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
7552da58 2785 return cp_pointer_int_sum (PLUS_EXPR, op0, op1);
8d08fdba 2786 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
7552da58 2787 return cp_pointer_int_sum (PLUS_EXPR, op1, op0);
8d08fdba
MS
2788 else
2789 common = 1;
2790 break;
2791
2792 case MINUS_EXPR:
2793 /* Subtraction of two similar pointers.
2794 We must subtract them as integers, then divide by object size. */
2795 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
a5ac359a
MM
2796 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
2797 TREE_TYPE (type1)))
79a7c7fa 2798 return pointer_diff (op0, op1, common_type (type0, type1));
8d08fdba
MS
2799 /* Handle pointer minus int. Just like pointer plus int. */
2800 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
7552da58 2801 return cp_pointer_int_sum (MINUS_EXPR, op0, op1);
8d08fdba
MS
2802 else
2803 common = 1;
2804 break;
2805
2806 case MULT_EXPR:
2807 common = 1;
2808 break;
2809
2810 case TRUNC_DIV_EXPR:
2811 case CEIL_DIV_EXPR:
2812 case FLOOR_DIV_EXPR:
2813 case ROUND_DIV_EXPR:
2814 case EXACT_DIV_EXPR:
37c46b43
MS
2815 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2816 || code0 == COMPLEX_TYPE)
2817 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2818 || code1 == COMPLEX_TYPE))
8d08fdba 2819 {
a0a33927 2820 if (TREE_CODE (op1) == INTEGER_CST && integer_zerop (op1))
33bd39a2 2821 warning ("division by zero in `%E / 0'", op0);
a0a33927 2822 else if (TREE_CODE (op1) == REAL_CST && real_zerop (op1))
33bd39a2 2823 warning ("division by zero in `%E / 0.'", op0);
a0a33927 2824
8d08fdba
MS
2825 if (!(code0 == INTEGER_TYPE && code1 == INTEGER_TYPE))
2826 resultcode = RDIV_EXPR;
2827 else
2828 /* When dividing two signed integers, we have to promote to int.
ddd5a7c1 2829 unless we divide by a constant != -1. Note that default
8d08fdba
MS
2830 conversion will have been performed on the operands at this
2831 point, so we have to dig out the original type to find out if
2832 it was unsigned. */
2833 shorten = ((TREE_CODE (op0) == NOP_EXPR
2834 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
2835 || (TREE_CODE (op1) == INTEGER_CST
05bccae2
RK
2836 && ! integer_all_onesp (op1)));
2837
8d08fdba
MS
2838 common = 1;
2839 }
2840 break;
2841
2842 case BIT_AND_EXPR:
8d08fdba
MS
2843 case BIT_IOR_EXPR:
2844 case BIT_XOR_EXPR:
2845 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2846 shorten = -1;
8d08fdba
MS
2847 break;
2848
2849 case TRUNC_MOD_EXPR:
2850 case FLOOR_MOD_EXPR:
a0a33927 2851 if (code1 == INTEGER_TYPE && integer_zerop (op1))
33bd39a2 2852 warning ("division by zero in `%E %% 0'", op0);
a0a33927 2853 else if (code1 == REAL_TYPE && real_zerop (op1))
33bd39a2 2854 warning ("division by zero in `%E %% 0.'", op0);
a0a33927 2855
8d08fdba
MS
2856 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2857 {
2858 /* Although it would be tempting to shorten always here, that loses
2859 on some targets, since the modulo instruction is undefined if the
2860 quotient can't be represented in the computation mode. We shorten
2861 only if unsigned or if dividing by something we know != -1. */
2862 shorten = ((TREE_CODE (op0) == NOP_EXPR
2863 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
2864 || (TREE_CODE (op1) == INTEGER_CST
05bccae2 2865 && ! integer_all_onesp (op1)));
8d08fdba
MS
2866 common = 1;
2867 }
2868 break;
2869
2870 case TRUTH_ANDIF_EXPR:
2871 case TRUTH_ORIF_EXPR:
2872 case TRUTH_AND_EXPR:
2873 case TRUTH_OR_EXPR:
255512c1 2874 result_type = boolean_type_node;
8d08fdba
MS
2875 break;
2876
2877 /* Shift operations: result has same type as first operand;
2878 always convert second operand to int.
2879 Also set SHORT_SHIFT if shifting rightward. */
2880
2881 case RSHIFT_EXPR:
2882 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2883 {
2884 result_type = type0;
2885 if (TREE_CODE (op1) == INTEGER_CST)
2886 {
2887 if (tree_int_cst_lt (op1, integer_zero_node))
8251199e 2888 warning ("right shift count is negative");
8d08fdba
MS
2889 else
2890 {
665f2503 2891 if (! integer_zerop (op1))
8d08fdba 2892 short_shift = 1;
665f2503 2893 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
8251199e 2894 warning ("right shift count >= width of type");
8d08fdba
MS
2895 }
2896 }
2897 /* Convert the shift-count to an integer, regardless of
2898 size of value being shifted. */
2899 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
37c46b43 2900 op1 = cp_convert (integer_type_node, op1);
8d08fdba
MS
2901 /* Avoid converting op1 to result_type later. */
2902 converted = 1;
2903 }
2904 break;
2905
2906 case LSHIFT_EXPR:
2907 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2908 {
2909 result_type = type0;
2910 if (TREE_CODE (op1) == INTEGER_CST)
2911 {
2912 if (tree_int_cst_lt (op1, integer_zero_node))
8251199e 2913 warning ("left shift count is negative");
665f2503 2914 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
8251199e 2915 warning ("left shift count >= width of type");
8d08fdba
MS
2916 }
2917 /* Convert the shift-count to an integer, regardless of
2918 size of value being shifted. */
2919 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
37c46b43 2920 op1 = cp_convert (integer_type_node, op1);
8d08fdba
MS
2921 /* Avoid converting op1 to result_type later. */
2922 converted = 1;
2923 }
2924 break;
2925
2926 case RROTATE_EXPR:
2927 case LROTATE_EXPR:
2928 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2929 {
2930 result_type = type0;
2931 if (TREE_CODE (op1) == INTEGER_CST)
2932 {
2933 if (tree_int_cst_lt (op1, integer_zero_node))
8251199e 2934 warning ("%s rotate count is negative",
8d08fdba 2935 (code == LROTATE_EXPR) ? "left" : "right");
665f2503 2936 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
8251199e 2937 warning ("%s rotate count >= width of type",
8d08fdba
MS
2938 (code == LROTATE_EXPR) ? "left" : "right");
2939 }
2940 /* Convert the shift-count to an integer, regardless of
2941 size of value being shifted. */
2942 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
37c46b43 2943 op1 = cp_convert (integer_type_node, op1);
8d08fdba
MS
2944 }
2945 break;
2946
2947 case EQ_EXPR:
2948 case NE_EXPR:
1bdba2c0
DZ
2949 if (warn_float_equal && (code0 == REAL_TYPE || code1 == REAL_TYPE))
2950 warning ("comparing floating point with == or != is unsafe");
2951
28cbf42c 2952 build_type = boolean_type_node;
37c46b43
MS
2953 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2954 || code0 == COMPLEX_TYPE)
2955 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2956 || code1 == COMPLEX_TYPE))
8d08fdba 2957 short_compare = 1;
a5ac359a
MM
2958 else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2959 || (TYPE_PTRMEM_P (type0) && TYPE_PTRMEM_P (type1)))
708cae97
JM
2960 result_type = composite_pointer_type (type0, type1, op0, op1,
2961 "comparison");
a5ac359a
MM
2962 else if ((code0 == POINTER_TYPE || TYPE_PTRMEM_P (type0))
2963 && null_ptr_cst_p (op1))
faae18ab 2964 result_type = type0;
a5ac359a
MM
2965 else if ((code1 == POINTER_TYPE || TYPE_PTRMEM_P (type1))
2966 && null_ptr_cst_p (op0))
faae18ab 2967 result_type = type1;
8d08fdba
MS
2968 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2969 {
faae18ab 2970 result_type = type0;
7e4d7898 2971 error ("ISO C++ forbids comparison between pointer and integer");
8d08fdba
MS
2972 }
2973 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
2974 {
faae18ab 2975 result_type = type1;
7e4d7898 2976 error ("ISO C++ forbids comparison between pointer and integer");
8d08fdba 2977 }
a7a64a77 2978 else if (TYPE_PTRMEMFUNC_P (type0) && null_ptr_cst_p (op1))
8d08fdba 2979 {
50ad9642 2980 op0 = build_ptrmemfunc_access_expr (op0, pfn_identifier);
1f84ec23 2981 op1 = cp_convert (TREE_TYPE (op0), integer_zero_node);
faae18ab 2982 result_type = TREE_TYPE (op0);
8d08fdba 2983 }
a7a64a77 2984 else if (TYPE_PTRMEMFUNC_P (type1) && null_ptr_cst_p (op0))
ab76ca54 2985 return cp_build_binary_op (code, op1, op0);
8d08fdba 2986 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1)
a359be75 2987 && same_type_p (type0, type1))
8d08fdba 2988 {
c7e266a6
MM
2989 /* E will be the final comparison. */
2990 tree e;
2991 /* E1 and E2 are for scratch. */
2992 tree e1;
2993 tree e2;
1f84ec23
MM
2994 tree pfn0;
2995 tree pfn1;
2996 tree delta0;
2997 tree delta1;
c7e266a6 2998
ebb1abc3
JM
2999 if (TREE_SIDE_EFFECTS (op0))
3000 op0 = save_expr (op0);
3001 if (TREE_SIDE_EFFECTS (op1))
3002 op1 = save_expr (op1);
3003
1f84ec23
MM
3004 /* We generate:
3005
3006 (op0.pfn == op1.pfn
3007 && (!op0.pfn || op0.delta == op1.delta))
3008
3009 The reason for the `!op0.pfn' bit is that a NULL
3010 pointer-to-member is any member with a zero PFN; the
3011 DELTA field is unspecified. */
3012 pfn0 = pfn_from_ptrmemfunc (op0);
3013 pfn1 = pfn_from_ptrmemfunc (op1);
50ad9642
MM
3014 delta0 = build_ptrmemfunc_access_expr (op0,
3015 delta_identifier);
3016 delta1 = build_ptrmemfunc_access_expr (op1,
3017 delta_identifier);
1f84ec23
MM
3018 e1 = cp_build_binary_op (EQ_EXPR, delta0, delta1);
3019 e2 = cp_build_binary_op (EQ_EXPR,
3020 pfn0,
3021 cp_convert (TREE_TYPE (pfn0),
3022 integer_zero_node));
3023 e1 = cp_build_binary_op (TRUTH_ORIF_EXPR, e1, e2);
3024 e2 = build (EQ_EXPR, boolean_type_node, pfn0, pfn1);
3025 e = cp_build_binary_op (TRUTH_ANDIF_EXPR, e2, e1);
8d08fdba 3026 if (code == EQ_EXPR)
c7e266a6 3027 return e;
ab76ca54 3028 return cp_build_binary_op (EQ_EXPR, e, integer_zero_node);
8d08fdba 3029 }
c7e266a6
MM
3030 else if ((TYPE_PTRMEMFUNC_P (type0)
3031 && same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type0), type1))
3032 || (TYPE_PTRMEMFUNC_P (type1)
3033 && same_type_p (TYPE_PTRMEMFUNC_FN_TYPE (type1), type0)))
a98facb0 3034 abort ();
8d08fdba
MS
3035 break;
3036
3037 case MAX_EXPR:
3038 case MIN_EXPR:
3039 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3040 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3041 shorten = 1;
3042 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
708cae97
JM
3043 result_type = composite_pointer_type (type0, type1, op0, op1,
3044 "comparison");
8d08fdba
MS
3045 break;
3046
3047 case LE_EXPR:
3048 case GE_EXPR:
3049 case LT_EXPR:
3050 case GT_EXPR:
28cbf42c 3051 build_type = boolean_type_node;
8d08fdba
MS
3052 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3053 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3054 short_compare = 1;
3055 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
708cae97
JM
3056 result_type = composite_pointer_type (type0, type1, op0, op1,
3057 "comparison");
8d08fdba
MS
3058 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
3059 && integer_zerop (op1))
faae18ab 3060 result_type = type0;
8d08fdba
MS
3061 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
3062 && integer_zerop (op0))
faae18ab 3063 result_type = type1;
8d08fdba
MS
3064 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3065 {
faae18ab 3066 result_type = type0;
7e4d7898 3067 pedwarn ("ISO C++ forbids comparison between pointer and integer");
8d08fdba
MS
3068 }
3069 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
3070 {
faae18ab 3071 result_type = type1;
7e4d7898 3072 pedwarn ("ISO C++ forbids comparison between pointer and integer");
8d08fdba 3073 }
8d08fdba 3074 break;
7f85441b 3075
1eb8759b
RH
3076 case UNORDERED_EXPR:
3077 case ORDERED_EXPR:
3078 case UNLT_EXPR:
3079 case UNLE_EXPR:
3080 case UNGT_EXPR:
3081 case UNGE_EXPR:
3082 case UNEQ_EXPR:
1eb8759b
RH
3083 build_type = integer_type_node;
3084 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
3085 {
3086 error ("unordered comparison on non-floating point argument");
3087 return error_mark_node;
3088 }
3089 common = 1;
3090 break;
3091
7f85441b
KG
3092 default:
3093 break;
8d08fdba
MS
3094 }
3095
37c46b43
MS
3096 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
3097 &&
3098 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
8d08fdba 3099 {
37c46b43
MS
3100 int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
3101
8d08fdba
MS
3102 if (shorten || common || short_compare)
3103 result_type = common_type (type0, type1);
3104
3105 /* For certain operations (which identify themselves by shorten != 0)
3106 if both args were extended from the same smaller type,
3107 do the arithmetic in that type and then extend.
3108
3109 shorten !=0 and !=1 indicates a bitwise operation.
3110 For them, this optimization is safe only if
3111 both args are zero-extended or both are sign-extended.
3112 Otherwise, we might change the result.
3113 Eg, (short)-1 | (unsigned short)-1 is (int)-1
3114 but calculated in (unsigned short) it would be (unsigned short)-1. */
3115
37c46b43 3116 if (shorten && none_complex)
8d08fdba
MS
3117 {
3118 int unsigned0, unsigned1;
3119 tree arg0 = get_narrower (op0, &unsigned0);
3120 tree arg1 = get_narrower (op1, &unsigned1);
3121 /* UNS is 1 if the operation to be done is an unsigned one. */
3122 int uns = TREE_UNSIGNED (result_type);
3123 tree type;
3124
3125 final_type = result_type;
3126
3127 /* Handle the case that OP0 does not *contain* a conversion
3128 but it *requires* conversion to FINAL_TYPE. */
3129
3130 if (op0 == arg0 && TREE_TYPE (op0) != final_type)
3131 unsigned0 = TREE_UNSIGNED (TREE_TYPE (op0));
3132 if (op1 == arg1 && TREE_TYPE (op1) != final_type)
3133 unsigned1 = TREE_UNSIGNED (TREE_TYPE (op1));
3134
3135 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
3136
3137 /* For bitwise operations, signedness of nominal type
3138 does not matter. Consider only how operands were extended. */
3139 if (shorten == -1)
3140 uns = unsigned0;
3141
3142 /* Note that in all three cases below we refrain from optimizing
3143 an unsigned operation on sign-extended args.
3144 That would not be valid. */
3145
3146 /* Both args variable: if both extended in same way
3147 from same width, do it in that width.
3148 Do it unsigned if args were zero-extended. */
3149 if ((TYPE_PRECISION (TREE_TYPE (arg0))
3150 < TYPE_PRECISION (result_type))
3151 && (TYPE_PRECISION (TREE_TYPE (arg1))
3152 == TYPE_PRECISION (TREE_TYPE (arg0)))
3153 && unsigned0 == unsigned1
3154 && (unsigned0 || !uns))
ceef8ce4
NB
3155 result_type = c_common_signed_or_unsigned_type
3156 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
8d08fdba
MS
3157 else if (TREE_CODE (arg0) == INTEGER_CST
3158 && (unsigned1 || !uns)
3159 && (TYPE_PRECISION (TREE_TYPE (arg1))
3160 < TYPE_PRECISION (result_type))
ceef8ce4
NB
3161 && (type = c_common_signed_or_unsigned_type
3162 (unsigned1, TREE_TYPE (arg1)),
8d08fdba
MS
3163 int_fits_type_p (arg0, type)))
3164 result_type = type;
3165 else if (TREE_CODE (arg1) == INTEGER_CST
3166 && (unsigned0 || !uns)
3167 && (TYPE_PRECISION (TREE_TYPE (arg0))
3168 < TYPE_PRECISION (result_type))
ceef8ce4
NB
3169 && (type = c_common_signed_or_unsigned_type
3170 (unsigned0, TREE_TYPE (arg0)),
8d08fdba
MS
3171 int_fits_type_p (arg1, type)))
3172 result_type = type;
3173 }
3174
3175 /* Shifts can be shortened if shifting right. */
3176
3177 if (short_shift)
3178 {
3179 int unsigned_arg;
3180 tree arg0 = get_narrower (op0, &unsigned_arg);
3181
3182 final_type = result_type;
3183
3184 if (arg0 == op0 && final_type == TREE_TYPE (op0))
3185 unsigned_arg = TREE_UNSIGNED (TREE_TYPE (op0));
3186
3187 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
db5ae43f
MS
3188 /* We can shorten only if the shift count is less than the
3189 number of bits in the smaller type size. */
665f2503 3190 && compare_tree_int (op1, TYPE_PRECISION (TREE_TYPE (arg0))) < 0
8d08fdba
MS
3191 /* If arg is sign-extended and then unsigned-shifted,
3192 we can simulate this with a signed shift in arg's type
3193 only if the extended result is at least twice as wide
3194 as the arg. Otherwise, the shift could use up all the
3195 ones made by sign-extension and bring in zeros.
3196 We can't optimize that case at all, but in most machines
3197 it never happens because available widths are 2**N. */
3198 && (!TREE_UNSIGNED (final_type)
3199 || unsigned_arg
5566b478 3200 || (((unsigned) 2 * TYPE_PRECISION (TREE_TYPE (arg0)))
8d08fdba
MS
3201 <= TYPE_PRECISION (result_type))))
3202 {
3203 /* Do an unsigned shift if the operand was zero-extended. */
3204 result_type
ceef8ce4
NB
3205 = c_common_signed_or_unsigned_type (unsigned_arg,
3206 TREE_TYPE (arg0));
8d08fdba
MS
3207 /* Convert value-to-be-shifted to that type. */
3208 if (TREE_TYPE (op0) != result_type)
37c46b43 3209 op0 = cp_convert (result_type, op0);
8d08fdba
MS
3210 converted = 1;
3211 }
3212 }
3213
3214 /* Comparison operations are shortened too but differently.
3215 They identify themselves by setting short_compare = 1. */
3216
3217 if (short_compare)
3218 {
3219 /* Don't write &op0, etc., because that would prevent op0
3220 from being kept in a register.
3221 Instead, make copies of the our local variables and
3222 pass the copies by reference, then copy them back afterward. */
3223 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
3224 enum tree_code xresultcode = resultcode;
3225 tree val
3226 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
3227 if (val != 0)
37c46b43 3228 return cp_convert (boolean_type_node, val);
28cbf42c
MS
3229 op0 = xop0, op1 = xop1;
3230 converted = 1;
8d08fdba
MS
3231 resultcode = xresultcode;
3232 }
3233
8d3b081e 3234 if ((short_compare || code == MIN_EXPR || code == MAX_EXPR)
7d48af30
MM
3235 && warn_sign_compare
3236 /* Do not warn until the template is instantiated; we cannot
3237 bound the ranges of the arguments until that point. */
3238 && !processing_template_decl)
8d08fdba 3239 {
e3417fcd
MS
3240 int op0_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op0));
3241 int op1_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op1));
3242
8d08fdba
MS
3243 int unsignedp0, unsignedp1;
3244 tree primop0 = get_narrower (op0, &unsignedp0);
3245 tree primop1 = get_narrower (op1, &unsignedp1);
3246
e92cc029 3247 /* Check for comparison of different enum types. */
84663f74 3248 if (TREE_CODE (TREE_TYPE (orig_op0)) == ENUMERAL_TYPE
72b7eeff
MS
3249 && TREE_CODE (TREE_TYPE (orig_op1)) == ENUMERAL_TYPE
3250 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0))
3251 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1)))
3252 {
33bd39a2 3253 warning ("comparison between types `%#T' and `%#T'",
72b7eeff
MS
3254 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1));
3255 }
3256
e3417fcd 3257 /* Give warnings for comparisons between signed and unsigned
faae18ab 3258 quantities that may fail. */
e3417fcd
MS
3259 /* Do the checking based on the original operand trees, so that
3260 casts will be considered, but default promotions won't be. */
faae18ab
MS
3261
3262 /* Do not warn if the comparison is being done in a signed type,
3263 since the signed type will only be chosen if it can represent
3264 all the values of the unsigned type. */
3265 if (! TREE_UNSIGNED (result_type))
3266 /* OK */;
b19b4a78
MS
3267 /* Do not warn if both operands are unsigned. */
3268 else if (op0_signed == op1_signed)
3269 /* OK */;
faae18ab
MS
3270 /* Do not warn if the signed quantity is an unsuffixed
3271 integer literal (or some static constant expression
3facde26 3272 involving such literals or a conditional expression
faae18ab 3273 involving such literals) and it is non-negative. */
3facde26
KG
3274 else if ((op0_signed && tree_expr_nonnegative_p (orig_op0))
3275 || (op1_signed && tree_expr_nonnegative_p (orig_op1)))
faae18ab
MS
3276 /* OK */;
3277 /* Do not warn if the comparison is an equality operation,
3278 the unsigned quantity is an integral constant and it does
3279 not use the most significant bit of result_type. */
3280 else if ((resultcode == EQ_EXPR || resultcode == NE_EXPR)
3281 && ((op0_signed && TREE_CODE (orig_op1) == INTEGER_CST
ceef8ce4
NB
3282 && int_fits_type_p (orig_op1, c_common_signed_type
3283 (result_type)))
faae18ab 3284 || (op1_signed && TREE_CODE (orig_op0) == INTEGER_CST
ceef8ce4
NB
3285 && int_fits_type_p (orig_op0, c_common_signed_type
3286 (result_type)))))
faae18ab
MS
3287 /* OK */;
3288 else
f49fad00 3289 warning ("comparison between signed and unsigned integer expressions");
8d08fdba
MS
3290
3291 /* Warn if two unsigned values are being compared in a size
3292 larger than their original size, and one (and only one) is the
3293 result of a `~' operator. This comparison will always fail.
3294
3295 Also warn if one operand is a constant, and the constant does not
3296 have all bits set that are set in the ~ operand when it is
3297 extended. */
3298
5566b478
MS
3299 if ((TREE_CODE (primop0) == BIT_NOT_EXPR)
3300 ^ (TREE_CODE (primop1) == BIT_NOT_EXPR))
8d08fdba
MS
3301 {
3302 if (TREE_CODE (primop0) == BIT_NOT_EXPR)
3303 primop0 = get_narrower (TREE_OPERAND (op0, 0), &unsignedp0);
3304 if (TREE_CODE (primop1) == BIT_NOT_EXPR)
3305 primop1 = get_narrower (TREE_OPERAND (op1, 0), &unsignedp1);
3306
665f2503 3307 if (host_integerp (primop0, 0) || host_integerp (primop1, 0))
8d08fdba
MS
3308 {
3309 tree primop;
3310 HOST_WIDE_INT constant, mask;
3311 int unsignedp;
665f2503 3312 unsigned int bits;
8d08fdba 3313
665f2503 3314 if (host_integerp (primop0, 0))
8d08fdba
MS
3315 {
3316 primop = primop1;
3317 unsignedp = unsignedp1;
665f2503 3318 constant = tree_low_cst (primop0, 0);
8d08fdba
MS
3319 }
3320 else
3321 {
3322 primop = primop0;
3323 unsignedp = unsignedp0;
665f2503 3324 constant = tree_low_cst (primop1, 0);
8d08fdba
MS
3325 }
3326
3327 bits = TYPE_PRECISION (TREE_TYPE (primop));
faae18ab 3328 if (bits < TYPE_PRECISION (result_type)
8d08fdba
MS
3329 && bits < HOST_BITS_PER_LONG && unsignedp)
3330 {
3331 mask = (~ (HOST_WIDE_INT) 0) << bits;
3332 if ((mask & constant) != mask)
8251199e 3333 warning ("comparison of promoted ~unsigned with constant");
8d08fdba
MS
3334 }
3335 }
3336 else if (unsignedp0 && unsignedp1
3337 && (TYPE_PRECISION (TREE_TYPE (primop0))
faae18ab 3338 < TYPE_PRECISION (result_type))
8d08fdba 3339 && (TYPE_PRECISION (TREE_TYPE (primop1))
faae18ab 3340 < TYPE_PRECISION (result_type)))
8251199e 3341 warning ("comparison of promoted ~unsigned with unsigned");
8d08fdba
MS
3342 }
3343 }
3344 }
3345
3346 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
3347 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
3348 Then the expression will be built.
3349 It will be given type FINAL_TYPE if that is nonzero;
3350 otherwise, it will be given type RESULT_TYPE. */
3351
3352 if (!result_type)
3353 {
33bd39a2 3354 error ("invalid operands of types `%T' and `%T' to binary `%O'",
c7e266a6 3355 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), code);
8d08fdba
MS
3356 return error_mark_node;
3357 }
3358
0e339752 3359 /* Issue warnings about peculiar, but valid, uses of NULL. */
03d0f4af
MM
3360 if (/* It's reasonable to use pointer values as operands of &&
3361 and ||, so NULL is no exception. */
3362 !(code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR)
3363 && (/* If OP0 is NULL and OP1 is not a pointer, or vice versa. */
3364 (orig_op0 == null_node
3365 && TREE_CODE (TREE_TYPE (op1)) != POINTER_TYPE)
3366 /* Or vice versa. */
3367 || (orig_op1 == null_node
3368 && TREE_CODE (TREE_TYPE (op0)) != POINTER_TYPE)
3369 /* Or, both are NULL and the operation was not a comparison. */
3370 || (orig_op0 == null_node && orig_op1 == null_node
3371 && code != EQ_EXPR && code != NE_EXPR)))
e0f9a8bc
MM
3372 /* Some sort of arithmetic operation involving NULL was
3373 performed. Note that pointer-difference and pointer-addition
3374 have already been handled above, and so we don't end up here in
3375 that case. */
33bd39a2 3376 warning ("NULL used in arithmetic");
e0f9a8bc 3377
8d08fdba
MS
3378 if (! converted)
3379 {
3380 if (TREE_TYPE (op0) != result_type)
37c46b43 3381 op0 = cp_convert (result_type, op0);
8d08fdba 3382 if (TREE_TYPE (op1) != result_type)
37c46b43 3383 op1 = cp_convert (result_type, op1);
848b92e1
JM
3384
3385 if (op0 == error_mark_node || op1 == error_mark_node)
3386 return error_mark_node;
8d08fdba
MS
3387 }
3388
28cbf42c
MS
3389 if (build_type == NULL_TREE)
3390 build_type = result_type;
3391
8d08fdba 3392 {
28cbf42c 3393 register tree result = build (resultcode, build_type, op0, op1);
8d08fdba
MS
3394 register tree folded;
3395
3396 folded = fold (result);
3397 if (folded == result)
3398 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
3399 if (final_type != 0)
37c46b43 3400 return cp_convert (final_type, folded);
8d08fdba
MS
3401 return folded;
3402 }
3403}
3404\f
3405/* Return a tree for the sum or difference (RESULTCODE says which)
3406 of pointer PTROP and integer INTOP. */
3407
3408static tree
5671bf27
AJ
3409cp_pointer_int_sum (enum tree_code resultcode, register tree ptrop,
3410 register tree intop)
8d08fdba 3411{
bfba94bd
MM
3412 tree res_type = TREE_TYPE (ptrop);
3413
3414 /* pointer_int_sum() uses size_in_bytes() on the TREE_TYPE(res_type)
3415 in certain circumstance (when it's valid to do so). So we need
3416 to make sure it's complete. We don't need to check here, if we
3417 can actually complete it at all, as those checks will be done in
3418 pointer_int_sum() anyway. */
3419 complete_type (TREE_TYPE (res_type));
8f259df3 3420
7552da58 3421 return pointer_int_sum (resultcode, ptrop, fold (intop));
8d08fdba
MS
3422}
3423
3424/* Return a tree for the difference of pointers OP0 and OP1.
3425 The resulting tree has type int. */
3426
3427static tree
5671bf27 3428pointer_diff (register tree op0, register tree op1, register tree ptrtype)
8d08fdba
MS
3429{
3430 register tree result, folded;
3431 tree restype = ptrdiff_type_node;
79a7c7fa 3432 tree target_type = TREE_TYPE (ptrtype);
8d08fdba 3433
66543169 3434 if (!complete_type_or_else (target_type, NULL_TREE))
8f259df3
MM
3435 return error_mark_node;
3436
be99da77 3437 if (pedantic || warn_pointer_arith)
8d08fdba
MS
3438 {
3439 if (TREE_CODE (target_type) == VOID_TYPE)
7e4d7898 3440 pedwarn ("ISO C++ forbids using pointer of type `void *' in subtraction");
8d08fdba 3441 if (TREE_CODE (target_type) == FUNCTION_TYPE)
7e4d7898 3442 pedwarn ("ISO C++ forbids using pointer to a function in subtraction");
8d08fdba 3443 if (TREE_CODE (target_type) == METHOD_TYPE)
7e4d7898 3444 pedwarn ("ISO C++ forbids using pointer to a method in subtraction");
8d08fdba
MS
3445 }
3446
3447 /* First do the subtraction as integers;
3448 then drop through to build the divide operator. */
3449
ab76ca54
MM
3450 op0 = cp_build_binary_op (MINUS_EXPR,
3451 cp_convert (restype, op0),
3452 cp_convert (restype, op1));
8d08fdba
MS
3453
3454 /* This generates an error if op1 is a pointer to an incomplete type. */
d0f062fb 3455 if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
7e4d7898 3456 error ("invalid use of a pointer to an incomplete type in pointer arithmetic");
8d08fdba 3457
a5ac359a
MM
3458 op1 = (TYPE_PTROB_P (ptrtype)
3459 ? size_in_bytes (target_type)
3460 : integer_one_node);
8d08fdba
MS
3461
3462 /* Do the division. */
3463
37c46b43 3464 result = build (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
8d08fdba
MS
3465
3466 folded = fold (result);
3467 if (folded == result)
3468 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
3469 return folded;
3470}
3471\f
8d08fdba
MS
3472/* Construct and perhaps optimize a tree representation
3473 for a unary operation. CODE, a tree_code, specifies the operation
3474 and XARG is the operand. */
3475
3476tree
5671bf27 3477build_x_unary_op (enum tree_code code, tree xarg)
8d08fdba 3478{
d17811fd 3479 tree orig_expr = xarg;
19420d00
NS
3480 tree exp;
3481 int ptrmem = 0;
3482
5156628f 3483 if (processing_template_decl)
d17811fd
MM
3484 {
3485 if (type_dependent_expression_p (xarg))
3486 return build_min_nt (code, xarg, NULL_TREE);
3487 xarg = build_non_dependent_expr (xarg);
3488 }
3489
3490 exp = NULL_TREE;
5566b478 3491
8d08fdba 3492 /* & rec, on incomplete RECORD_TYPEs is the simple opr &, not an
e92cc029 3493 error message. */
db5ae43f 3494 if (code == ADDR_EXPR
386b8a85 3495 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
db5ae43f 3496 && ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (xarg)))
d0f062fb 3497 && !COMPLETE_TYPE_P (TREE_TYPE (xarg)))
db5ae43f
MS
3498 || (TREE_CODE (xarg) == OFFSET_REF)))
3499 /* don't look for a function */;
3500 else
d17811fd
MM
3501 exp = build_new_op (code, LOOKUP_NORMAL, xarg, NULL_TREE, NULL_TREE);
3502 if (!exp && code == ADDR_EXPR)
c91a56d2 3503 {
1e14c7f0
GDR
3504 /* A pointer to member-function can be formed only by saying
3505 &X::mf. */
3506 if (!flag_ms_extensions && TREE_CODE (TREE_TYPE (xarg)) == METHOD_TYPE
3507 && (TREE_CODE (xarg) != OFFSET_REF || !PTRMEM_OK_P (xarg)))
3508 {
3509 if (TREE_CODE (xarg) != OFFSET_REF)
3510 {
3511 error ("invalid use of '%E' to form a pointer-to-member-function. Use a qualified-id.",
3512 xarg);
3513 return error_mark_node;
3514 }
3515 else
3516 {
3517 error ("parenthesis around '%E' cannot be used to form a pointer-to-member-function",
3518 xarg);
3519 PTRMEM_OK_P (xarg) = 1;
3520 }
3521 }
3522
19420d00
NS
3523 if (TREE_CODE (xarg) == OFFSET_REF)
3524 {
3525 ptrmem = PTRMEM_OK_P (xarg);
3526
3527 if (!ptrmem && !flag_ms_extensions
3528 && TREE_CODE (TREE_TYPE (TREE_OPERAND (xarg, 1))) == METHOD_TYPE)
4542128e
NS
3529 {
3530 /* A single non-static member, make sure we don't allow a
3531 pointer-to-member. */
3532 xarg = build (OFFSET_REF, TREE_TYPE (xarg),
3533 TREE_OPERAND (xarg, 0),
3534 ovl_cons (TREE_OPERAND (xarg, 1), NULL_TREE));
3535 PTRMEM_OK_P (xarg) = ptrmem;
d17811fd 3536 }
19420d00
NS
3537 }
3538 else if (TREE_CODE (xarg) == TARGET_EXPR)
8251199e 3539 warning ("taking address of temporary");
d17811fd
MM
3540 exp = build_unary_op (ADDR_EXPR, xarg, 0);
3541 if (TREE_CODE (exp) == ADDR_EXPR)
3542 PTRMEM_OK_P (exp) = ptrmem;
c91a56d2
MS
3543 }
3544
d17811fd 3545 if (processing_template_decl && exp != error_mark_node)
8e1daa34
NS
3546 return build_min_non_dep (code, exp, orig_expr,
3547 /*For {PRE,POST}{INC,DEC}REMENT_EXPR*/NULL_TREE);
19420d00 3548 return exp;
8d08fdba
MS
3549}
3550
78ef5b89
NB
3551/* Like c_common_truthvalue_conversion, but handle pointer-to-member
3552 constants, where a null value is represented by an INTEGER_CST of
3553 -1. */
96d6c610
JM
3554
3555tree
5671bf27 3556cp_truthvalue_conversion (tree expr)
96d6c610
JM
3557{
3558 tree type = TREE_TYPE (expr);
3559 if (TYPE_PTRMEM_P (type))
3560 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
3561 else
78ef5b89 3562 return c_common_truthvalue_conversion (expr);
96d6c610
JM
3563}
3564
3565/* Just like cp_truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
8ccc31eb 3566
2986ae00 3567tree
5671bf27 3568condition_conversion (tree expr)
2986ae00 3569{
5566b478 3570 tree t;
5156628f 3571 if (processing_template_decl)
5566b478 3572 return expr;
5d73aa63 3573 t = perform_implicit_conversion (boolean_type_node, expr);
8ccc31eb
MS
3574 t = fold (build1 (CLEANUP_POINT_EXPR, boolean_type_node, t));
3575 return t;
2986ae00 3576}
7993382e
MM
3577
3578/* Return an ADDR_EXPR giving the address of T. This function
3579 attempts no optimizations or simplifications; it is a low-level
3580 primitive. */
3581
3582tree
3583build_address (tree t)
3584{
3585 tree addr;
3586
3587 if (error_operand_p (t) || !cxx_mark_addressable (t))
3588 return error_mark_node;
3589
92af500d 3590 addr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (t)), t);
7993382e
MM
3591 if (staticp (t))
3592 TREE_CONSTANT (addr) = 1;
3593
3594 return addr;
3595}
3596
3597/* Return a NOP_EXPR converting EXPR to TYPE. */
3598
3599tree
3600build_nop (tree type, tree expr)
3601{
3602 tree nop;
3603
3604 if (type == error_mark_node || error_operand_p (expr))
3605 return expr;
3606
3607 nop = build1 (NOP_EXPR, type, expr);
3608 if (TREE_CONSTANT (expr))
3609 TREE_CONSTANT (nop) = 1;
3610
3611 return nop;
3612}
3613
8d08fdba
MS
3614/* C++: Must handle pointers to members.
3615
3616 Perhaps type instantiation should be extended to handle conversion
3617 from aggregates to types we don't yet know we want? (Or are those
3618 cases typically errors which should be reported?)
3619
3620 NOCONVERT nonzero suppresses the default promotions
3621 (such as from short to int). */
e92cc029 3622
8d08fdba 3623tree
acd8e2d0 3624build_unary_op (enum tree_code code, tree xarg, int noconvert)
8d08fdba
MS
3625{
3626 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
3627 register tree arg = xarg;
3628 register tree argtype = 0;
d8e178a0 3629 const char *errstring = NULL;
8d08fdba 3630 tree val;
8d08fdba 3631
b7484fbe 3632 if (arg == error_mark_node)
8d08fdba
MS
3633 return error_mark_node;
3634
8d08fdba
MS
3635 switch (code)
3636 {
3637 case CONVERT_EXPR:
3638 /* This is used for unary plus, because a CONVERT_EXPR
3639 is enough to prevent anybody from looking inside for
3640 associativity, but won't generate any code. */
b7484fbe 3641 if (!(arg = build_expr_type_conversion
b746c5dc 3642 (WANT_ARITH | WANT_ENUM | WANT_POINTER, arg, true)))
b7484fbe
MS
3643 errstring = "wrong type argument to unary plus";
3644 else
8d08fdba
MS
3645 {
3646 if (!noconvert)
b7484fbe
MS
3647 arg = default_conversion (arg);
3648 arg = build1 (NON_LVALUE_EXPR, TREE_TYPE (arg), arg);
27fafc8d 3649 TREE_CONSTANT (arg) = TREE_CONSTANT (TREE_OPERAND (arg, 0));
8d08fdba 3650 }
b7484fbe 3651 break;
8d08fdba 3652
b7484fbe 3653 case NEGATE_EXPR:
b746c5dc 3654 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
b7484fbe 3655 errstring = "wrong type argument to unary minus";
0a72704b
MM
3656 else if (!noconvert && CP_INTEGRAL_TYPE_P (TREE_TYPE (arg)))
3657 arg = perform_integral_promotions (arg);
8d08fdba
MS
3658 break;
3659
3660 case BIT_NOT_EXPR:
37c46b43
MS
3661 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3662 {
3663 code = CONJ_EXPR;
3664 if (!noconvert)
3665 arg = default_conversion (arg);
3666 }
3667 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM,
b746c5dc 3668 arg, true)))
b7484fbe 3669 errstring = "wrong type argument to bit-complement";
8d08fdba 3670 else if (!noconvert)
0a72704b 3671 arg = perform_integral_promotions (arg);
8d08fdba
MS
3672 break;
3673
3674 case ABS_EXPR:
b746c5dc 3675 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
b7484fbe 3676 errstring = "wrong type argument to abs";
8d08fdba
MS
3677 else if (!noconvert)
3678 arg = default_conversion (arg);
3679 break;
3680
37c46b43
MS
3681 case CONJ_EXPR:
3682 /* Conjugating a real value is a no-op, but allow it anyway. */
b746c5dc 3683 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, true)))
37c46b43
MS
3684 errstring = "wrong type argument to conjugation";
3685 else if (!noconvert)
3686 arg = default_conversion (arg);
3687 break;
3688
8d08fdba 3689 case TRUTH_NOT_EXPR:
6cf4d1bc 3690 arg = perform_implicit_conversion (boolean_type_node, arg);
8d08fdba 3691 val = invert_truthvalue (arg);
2986ae00
MS
3692 if (arg != error_mark_node)
3693 return val;
3694 errstring = "in argument to unary !";
8d08fdba
MS
3695 break;
3696
3697 case NOP_EXPR:
3698 break;
3699
37c46b43
MS
3700 case REALPART_EXPR:
3701 if (TREE_CODE (arg) == COMPLEX_CST)
3702 return TREE_REALPART (arg);
3703 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3704 return fold (build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
3705 else
3706 return arg;
3707
3708 case IMAGPART_EXPR:
3709 if (TREE_CODE (arg) == COMPLEX_CST)
3710 return TREE_IMAGPART (arg);
3711 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3712 return fold (build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
3713 else
3714 return cp_convert (TREE_TYPE (arg), integer_zero_node);
3715
8d08fdba
MS
3716 case PREINCREMENT_EXPR:
3717 case POSTINCREMENT_EXPR:
3718 case PREDECREMENT_EXPR:
3719 case POSTDECREMENT_EXPR:
3720 /* Handle complex lvalues (when permitted)
3721 by reduction to simpler cases. */
3722
3723 val = unary_complex_lvalue (code, arg);
3724 if (val != 0)
3725 return val;
3726
37c46b43
MS
3727 /* Increment or decrement the real part of the value,
3728 and don't change the imaginary part. */
3729 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
3730 {
3731 tree real, imag;
3732
3733 arg = stabilize_reference (arg);
3734 real = build_unary_op (REALPART_EXPR, arg, 1);
3735 imag = build_unary_op (IMAGPART_EXPR, arg, 1);
3736 return build (COMPLEX_EXPR, TREE_TYPE (arg),
3737 build_unary_op (code, real, 1), imag);
3738 }
3739
8d08fdba
MS
3740 /* Report invalid types. */
3741
b7484fbe 3742 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
b746c5dc 3743 arg, true)))
8d08fdba
MS
3744 {
3745 if (code == PREINCREMENT_EXPR)
3746 errstring ="no pre-increment operator for type";
3747 else if (code == POSTINCREMENT_EXPR)
3748 errstring ="no post-increment operator for type";
3749 else if (code == PREDECREMENT_EXPR)
3750 errstring ="no pre-decrement operator for type";
3751 else
3752 errstring ="no post-decrement operator for type";
3753 break;
3754 }
3755
3756 /* Report something read-only. */
3757
91063b51 3758 if (CP_TYPE_CONST_P (TREE_TYPE (arg))
8d08fdba
MS
3759 || TREE_READONLY (arg))
3760 readonly_error (arg, ((code == PREINCREMENT_EXPR
3761 || code == POSTINCREMENT_EXPR)
3762 ? "increment" : "decrement"),
3763 0);
3764
3765 {
3766 register tree inc;
3767 tree result_type = TREE_TYPE (arg);
3768
3769 arg = get_unwidened (arg, 0);
3770 argtype = TREE_TYPE (arg);
3771
3772 /* ARM $5.2.5 last annotation says this should be forbidden. */
3773 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
7e4d7898 3774 pedwarn ("ISO C++ forbids %sing an enum",
8d08fdba
MS
3775 (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
3776 ? "increment" : "decrement");
3777
3778 /* Compute the increment. */
3779
b7484fbe 3780 if (TREE_CODE (argtype) == POINTER_TYPE)
8d08fdba 3781 {
d0f062fb
NS
3782 tree type = complete_type (TREE_TYPE (argtype));
3783
3784 if (!COMPLETE_OR_VOID_TYPE_P (type))
33bd39a2 3785 error ("cannot %s a pointer to incomplete type `%T'",
39211cd5
MS
3786 ((code == PREINCREMENT_EXPR
3787 || code == POSTINCREMENT_EXPR)
3788 ? "increment" : "decrement"), TREE_TYPE (argtype));
e62d5b58 3789 else if ((pedantic || warn_pointer_arith)
a5ac359a 3790 && !TYPE_PTROB_P (argtype))
33bd39a2 3791 pedwarn ("ISO C++ forbids %sing a pointer of type `%T'",
39211cd5
MS
3792 ((code == PREINCREMENT_EXPR
3793 || code == POSTINCREMENT_EXPR)
3794 ? "increment" : "decrement"), argtype);
ea793912 3795 inc = cxx_sizeof_nowarn (TREE_TYPE (argtype));
8d08fdba
MS
3796 }
3797 else
3798 inc = integer_one_node;
3799
37c46b43 3800 inc = cp_convert (argtype, inc);
8d08fdba
MS
3801
3802 /* Handle incrementing a cast-expression. */
3803
3804 switch (TREE_CODE (arg))
3805 {
3806 case NOP_EXPR:
3807 case CONVERT_EXPR:
3808 case FLOAT_EXPR:
3809 case FIX_TRUNC_EXPR:
3810 case FIX_FLOOR_EXPR:
3811 case FIX_ROUND_EXPR:
3812 case FIX_CEIL_EXPR:
3813 {
72b7eeff 3814 tree incremented, modify, value, compound;
f0e01782 3815 if (! lvalue_p (arg) && pedantic)
8251199e 3816 pedwarn ("cast to non-reference type used as lvalue");
8d08fdba
MS
3817 arg = stabilize_reference (arg);
3818 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
3819 value = arg;
3820 else
3821 value = save_expr (arg);
3822 incremented = build (((code == PREINCREMENT_EXPR
3823 || code == POSTINCREMENT_EXPR)
3824 ? PLUS_EXPR : MINUS_EXPR),
3825 argtype, value, inc);
72b7eeff 3826
8d08fdba 3827 modify = build_modify_expr (arg, NOP_EXPR, incremented);
72b7eeff
MS
3828 compound = build (COMPOUND_EXPR, TREE_TYPE (arg), modify, value);
3829
e92cc029 3830 /* Eliminate warning about unused result of + or -. */
72b7eeff
MS
3831 TREE_NO_UNUSED_WARNING (compound) = 1;
3832 return compound;
8d08fdba 3833 }
7f85441b
KG
3834
3835 default:
3836 break;
8d08fdba
MS
3837 }
3838
8d08fdba
MS
3839 /* Complain about anything else that is not a true lvalue. */
3840 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
3841 || code == POSTINCREMENT_EXPR)
3842 ? "increment" : "decrement")))
3843 return error_mark_node;
3844
b7484fbe
MS
3845 /* Forbid using -- on `bool'. */
3846 if (TREE_TYPE (arg) == boolean_type_node)
3847 {
3848 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
3849 {
33bd39a2 3850 error ("invalid use of `--' on bool variable `%D'", arg);
b7484fbe
MS
3851 return error_mark_node;
3852 }
19552aa5 3853 val = boolean_increment (code, arg);
b7484fbe
MS
3854 }
3855 else
3856 val = build (code, TREE_TYPE (arg), arg, inc);
3857
8d08fdba 3858 TREE_SIDE_EFFECTS (val) = 1;
37c46b43 3859 return cp_convert (result_type, val);
8d08fdba
MS
3860 }
3861
3862 case ADDR_EXPR:
3863 /* Note that this operation never does default_conversion
3864 regardless of NOCONVERT. */
3865
8cd4c175 3866 argtype = lvalue_type (arg);
a5ac359a
MM
3867
3868 if (TREE_CODE (arg) == OFFSET_REF)
3869 goto offset_ref;
3870
b7484fbe 3871 if (TREE_CODE (argtype) == REFERENCE_TYPE)
8d08fdba 3872 {
eb66be0e
MS
3873 arg = build1
3874 (CONVERT_EXPR,
8cd4c175 3875 build_pointer_type (TREE_TYPE (argtype)), arg);
eb66be0e 3876 TREE_CONSTANT (arg) = TREE_CONSTANT (TREE_OPERAND (arg, 0));
8d08fdba
MS
3877 return arg;
3878 }
35680744 3879 else if (pedantic && DECL_MAIN_P (arg))
a0a33927 3880 /* ARM $3.4 */
7e4d7898 3881 pedwarn ("ISO C++ forbids taking address of function `::main'");
8d08fdba
MS
3882
3883 /* Let &* cancel out to simplify resulting code. */
3884 if (TREE_CODE (arg) == INDIRECT_REF)
3885 {
4ac14744 3886 /* We don't need to have `current_class_ptr' wrapped in a
8d08fdba 3887 NON_LVALUE_EXPR node. */
4ac14744
MS
3888 if (arg == current_class_ref)
3889 return current_class_ptr;
8d08fdba 3890
8d08fdba
MS
3891 arg = TREE_OPERAND (arg, 0);
3892 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
3893 {
eb66be0e
MS
3894 arg = build1
3895 (CONVERT_EXPR,
3896 build_pointer_type (TREE_TYPE (TREE_TYPE (arg))), arg);
8d08fdba
MS
3897 TREE_CONSTANT (arg) = TREE_CONSTANT (TREE_OPERAND (arg, 0));
3898 }
3899 else if (lvalue_p (arg))
3900 /* Don't let this be an lvalue. */
3901 return non_lvalue (arg);
3902 return arg;
3903 }
3904
3905 /* For &x[y], return x+y */
3906 if (TREE_CODE (arg) == ARRAY_REF)
3907 {
dffd7eb6 3908 if (!cxx_mark_addressable (TREE_OPERAND (arg, 0)))
8d08fdba 3909 return error_mark_node;
ab76ca54
MM
3910 return cp_build_binary_op (PLUS_EXPR, TREE_OPERAND (arg, 0),
3911 TREE_OPERAND (arg, 1));
8d08fdba
MS
3912 }
3913
8d08fdba
MS
3914 /* Uninstantiated types are all functions. Taking the
3915 address of a function is a no-op, so just return the
3916 argument. */
3917
3918 if (TREE_CODE (arg) == IDENTIFIER_NODE
3919 && IDENTIFIER_OPNAME_P (arg))
3920 {
a98facb0 3921 abort ();
8d08fdba
MS
3922 /* We don't know the type yet, so just work around the problem.
3923 We know that this will resolve to an lvalue. */
3924 return build1 (ADDR_EXPR, unknown_type_node, arg);
3925 }
3926
96d6c610 3927 if (TREE_CODE (arg) == COMPONENT_REF && type_unknown_p (arg)
50ad9642 3928 && !really_overloaded_fn (TREE_OPERAND (arg, 1)))
19420d00 3929 {
fbf6f1ba 3930 /* They're trying to take the address of a unique non-static
96d6c610
JM
3931 member function. This is ill-formed (except in MS-land),
3932 but let's try to DTRT.
3933 Note: We only handle unique functions here because we don't
3934 want to complain if there's a static overload; non-unique
3935 cases will be handled by instantiate_type. But we need to
3936 handle this case here to allow casts on the resulting PMF.
3937 We could defer this in non-MS mode, but it's easier to give
3938 a useful error here. */
fbf6f1ba 3939
d219f3ff
KL
3940 /* Inside constant member functions, the `this' pointer
3941 contains an extra const qualifier. TYPE_MAIN_VARIANT
3942 is used here to remove this const from the diagnostics
3943 and the created OFFSET_REF. */
3944 tree base = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (arg, 0)));
50ad9642 3945 tree name = DECL_NAME (get_first_fn (TREE_OPERAND (arg, 1)));
96d6c610
JM
3946
3947 if (! flag_ms_extensions)
3948 {
3949 if (current_class_type
3950 && TREE_OPERAND (arg, 0) == current_class_ref)
3951 /* An expression like &memfn. */
16692dd5
KL
3952 pedwarn ("ISO C++ forbids taking the address of an unqualified"
3953 " or parenthesized non-static member function to form"
3954 " a pointer to member function. Say `&%T::%D'",
d219f3ff 3955 base, name);
96d6c610 3956 else
16692dd5
KL
3957 pedwarn ("ISO C++ forbids taking the address of a bound member"
3958 " function to form a pointer to member function."
3959 " Say `&%T::%D'",
d219f3ff 3960 base, name);
96d6c610 3961 }
a5ac359a 3962 arg = build_offset_ref (base, name, /*address_p=*/true);
19420d00 3963 }
a5ac359a
MM
3964
3965 offset_ref:
03017874 3966 if (type_unknown_p (arg))
51924768 3967 return build1 (ADDR_EXPR, unknown_type_node, arg);
19420d00 3968
8d08fdba
MS
3969 /* Handle complex lvalues (when permitted)
3970 by reduction to simpler cases. */
3971 val = unary_complex_lvalue (code, arg);
3972 if (val != 0)
3973 return val;
3974
8d08fdba
MS
3975 switch (TREE_CODE (arg))
3976 {
3977 case NOP_EXPR:
3978 case CONVERT_EXPR:
3979 case FLOAT_EXPR:
3980 case FIX_TRUNC_EXPR:
3981 case FIX_FLOOR_EXPR:
3982 case FIX_ROUND_EXPR:
3983 case FIX_CEIL_EXPR:
f0e01782 3984 if (! lvalue_p (arg) && pedantic)
ddcc7cf6 3985 pedwarn ("ISO C++ forbids taking the address of a cast to a non-lvalue expression");
7f85441b
KG
3986 break;
3987
3988 default:
3989 break;
8d08fdba 3990 }
8d08fdba
MS
3991
3992 /* Allow the address of a constructor if all the elements
3993 are constant. */
dc26f471
JM
3994 if (TREE_CODE (arg) == CONSTRUCTOR && TREE_HAS_CONSTRUCTOR (arg)
3995 && TREE_CONSTANT (arg))
8d08fdba
MS
3996 ;
3997 /* Anything not already handled and not a true memory reference
3998 is an error. */
b7484fbe
MS
3999 else if (TREE_CODE (argtype) != FUNCTION_TYPE
4000 && TREE_CODE (argtype) != METHOD_TYPE
d18a8251 4001 && !lvalue_or_else (arg, "unary `&'"))
8d08fdba
MS
4002 return error_mark_node;
4003
01240200
MM
4004 if (argtype != error_mark_node)
4005 argtype = build_pointer_type (argtype);
8d08fdba 4006
8d08fdba
MS
4007 {
4008 tree addr;
4009
8de9bb0e
NS
4010 if (TREE_CODE (arg) != COMPONENT_REF)
4011 addr = build_address (arg);
92af500d
NS
4012 else if (TREE_CODE (TREE_OPERAND (arg, 1)) == BASELINK)
4013 {
4014 tree fn = BASELINK_FUNCTIONS (TREE_OPERAND (arg, 1));
4015
4016 /* We can only get here with a single static member
4017 function. */
4018 my_friendly_assert (TREE_CODE (fn) == FUNCTION_DECL
4019 && DECL_STATIC_FUNCTION_P (fn),
4020 20030906);
4021 mark_used (fn);
4022 addr = build_address (fn);
4023 if (TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
4024 /* Do not lose object's side effects. */
4025 addr = build (COMPOUND_EXPR, TREE_TYPE (addr),
4026 TREE_OPERAND (arg, 0), addr);
4027 }
8de9bb0e 4028 else if (DECL_C_BIT_FIELD (TREE_OPERAND (arg, 1)))
c93a26f5
NS
4029 {
4030 error ("attempt to take address of bit-field structure member `%D'",
4031 TREE_OPERAND (arg, 1));
4032 return error_mark_node;
4033 }
8de9bb0e 4034 else
eac5ce6c 4035 {
8de9bb0e
NS
4036 /* Unfortunately we cannot just build an address
4037 expression here, because we would not handle
4038 address-constant-expressions or offsetof correctly. */
eac5ce6c
NS
4039 tree field = TREE_OPERAND (arg, 1);
4040 tree rval = build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0), 0);
4041 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (rval)),
4042 decl_type_context (field),
4043 ba_check, NULL);
4044
4045 rval = build_base_path (PLUS_EXPR, rval, binfo, 1);
7b6d72fc 4046 rval = build_nop (argtype, rval);
eac5ce6c
NS
4047 addr = fold (build (PLUS_EXPR, argtype, rval,
4048 cp_convert (argtype, byte_position (field))));
4049 }
4ac14744 4050
beb53fb8
JM
4051 if (TREE_CODE (argtype) == POINTER_TYPE
4052 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
4ac14744
MS
4053 {
4054 build_ptrmemfunc_type (argtype);
4055 addr = build_ptrmemfunc (argtype, addr, 0);
4056 }
4057
8d08fdba
MS
4058 return addr;
4059 }
7f85441b
KG
4060
4061 default:
4062 break;
8d08fdba
MS
4063 }
4064
4065 if (!errstring)
4066 {
4067 if (argtype == 0)
4068 argtype = TREE_TYPE (arg);
4069 return fold (build1 (code, argtype, arg));
4070 }
4071
b9d12519 4072 error ("%s", errstring);
8d08fdba
MS
4073 return error_mark_node;
4074}
4075
8d08fdba
MS
4076/* Apply unary lvalue-demanding operator CODE to the expression ARG
4077 for certain kinds of expressions which are not really lvalues
4078 but which we can accept as lvalues.
4079
4080 If ARG is not a kind of expression we can handle, return zero. */
4081
4082tree
acd8e2d0 4083unary_complex_lvalue (enum tree_code code, tree arg)
8d08fdba
MS
4084{
4085 /* Handle (a, b) used as an "lvalue". */
4086 if (TREE_CODE (arg) == COMPOUND_EXPR)
4087 {
4088 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 1), 0);
8d08fdba
MS
4089 return build (COMPOUND_EXPR, TREE_TYPE (real_result),
4090 TREE_OPERAND (arg, 0), real_result);
4091 }
4092
4093 /* Handle (a ? b : c) used as an "lvalue". */
e9a25f70
JL
4094 if (TREE_CODE (arg) == COND_EXPR
4095 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
a4443a08
MS
4096 return rationalize_conditional_expr (code, arg);
4097
ae818d3b 4098 /* Handle (a = b), (++a), and (--a) used as an "lvalue". */
e1cd6e56
MS
4099 if (TREE_CODE (arg) == MODIFY_EXPR
4100 || TREE_CODE (arg) == PREINCREMENT_EXPR
4101 || TREE_CODE (arg) == PREDECREMENT_EXPR)
ae818d3b
ER
4102 {
4103 tree lvalue = TREE_OPERAND (arg, 0);
4104 if (TREE_SIDE_EFFECTS (lvalue))
4105 {
4106 lvalue = stabilize_reference (lvalue);
4107 arg = build (TREE_CODE (arg), TREE_TYPE (arg),
4108 lvalue, TREE_OPERAND (arg, 1));
4109 }
4110 return unary_complex_lvalue
4111 (code, build (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue));
4112 }
8d08fdba
MS
4113
4114 if (code != ADDR_EXPR)
4115 return 0;
4116
4117 /* Handle (a = b) used as an "lvalue" for `&'. */
4118 if (TREE_CODE (arg) == MODIFY_EXPR
4119 || TREE_CODE (arg) == INIT_EXPR)
4120 {
4121 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 0), 0);
faf5394a
MS
4122 arg = build (COMPOUND_EXPR, TREE_TYPE (real_result), arg, real_result);
4123 TREE_NO_UNUSED_WARNING (arg) = 1;
4124 return arg;
8d08fdba
MS
4125 }
4126
8d08fdba
MS
4127 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
4128 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
a5ac359a 4129 || TREE_CODE (arg) == OFFSET_REF)
8d08fdba 4130 {
8d08fdba 4131 tree t;
8d08fdba
MS
4132
4133 my_friendly_assert (TREE_CODE (arg) != SCOPE_REF, 313);
4134
4135 if (TREE_CODE (arg) != OFFSET_REF)
4136 return 0;
4137
4138 t = TREE_OPERAND (arg, 1);
4139
3c215895
JM
4140 /* Check all this code for right semantics. */
4141 if (TREE_CODE (t) == FUNCTION_DECL)
1c2c08a5
JM
4142 {
4143 if (DECL_DESTRUCTOR_P (t))
33bd39a2 4144 error ("taking address of destructor");
1c2c08a5
JM
4145 return build_unary_op (ADDR_EXPR, t, 0);
4146 }
8d08fdba
MS
4147 if (TREE_CODE (t) == VAR_DECL)
4148 return build_unary_op (ADDR_EXPR, t, 0);
4149 else
4150 {
d22c8596 4151 tree type;
d22c8596 4152
8d08fdba 4153 if (TREE_OPERAND (arg, 0)
51924768 4154 && ! is_dummy_object (TREE_OPERAND (arg, 0))
01240200
MM
4155 && TREE_CODE (t) != FIELD_DECL)
4156 {
33bd39a2 4157 error ("taking address of bound pointer-to-member expression");
01240200
MM
4158 return error_mark_node;
4159 }
4542128e 4160 if (!PTRMEM_OK_P (arg))
d6b4ea85 4161 return build_unary_op (code, arg, 0);
4542128e
NS
4162
4163 if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4164 {
4165 error ("cannot create pointer to reference member `%D'", t);
4166 return error_mark_node;
4167 }
8d08fdba 4168
9e259dd1 4169 type = build_ptrmem_type (DECL_FIELD_CONTEXT (t), TREE_TYPE (t));
87533b37 4170 t = make_ptrmem_cst (type, TREE_OPERAND (arg, 1));
61a127b3 4171 return t;
8d08fdba
MS
4172 }
4173 }
4174
c91a56d2 4175
8d08fdba
MS
4176 /* We permit compiler to make function calls returning
4177 objects of aggregate type look like lvalues. */
4178 {
4179 tree targ = arg;
4180
4181 if (TREE_CODE (targ) == SAVE_EXPR)
4182 targ = TREE_OPERAND (targ, 0);
4183
4184 if (TREE_CODE (targ) == CALL_EXPR && IS_AGGR_TYPE (TREE_TYPE (targ)))
4185 {
4186 if (TREE_CODE (arg) == SAVE_EXPR)
4187 targ = arg;
4188 else
5566b478 4189 targ = build_cplus_new (TREE_TYPE (arg), arg);
f30432d7 4190 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
8d08fdba
MS
4191 }
4192
4193 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
f30432d7 4194 return build (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
8d08fdba 4195 TREE_OPERAND (targ, 0), current_function_decl, NULL);
8d08fdba
MS
4196 }
4197
4198 /* Don't let anything else be handled specially. */
4199 return 0;
4200}
8d08fdba
MS
4201\f
4202/* Mark EXP saying that we need to be able to take the
4203 address of it; it should not be allocated in a register.
dffd7eb6 4204 Value is true if successful.
8d08fdba 4205
4ac14744 4206 C++: we do not allow `current_class_ptr' to be addressable. */
8d08fdba 4207
dffd7eb6 4208bool
acd8e2d0 4209cxx_mark_addressable (tree exp)
8d08fdba
MS
4210{
4211 register tree x = exp;
4212
8d08fdba
MS
4213 while (1)
4214 switch (TREE_CODE (x))
4215 {
4216 case ADDR_EXPR:
4217 case COMPONENT_REF:
4218 case ARRAY_REF:
37c46b43
MS
4219 case REALPART_EXPR:
4220 case IMAGPART_EXPR:
8d08fdba
MS
4221 x = TREE_OPERAND (x, 0);
4222 break;
4223
4224 case PARM_DECL:
4ac14744 4225 if (x == current_class_ptr)
8d08fdba 4226 {
394fd776 4227 error ("cannot take the address of `this', which is an rvalue expression");
8d08fdba 4228 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later */
dffd7eb6 4229 return true;
8d08fdba 4230 }
aa8dea09
RH
4231 /* FALLTHRU */
4232
8d08fdba 4233 case VAR_DECL:
8d08fdba
MS
4234 /* Caller should not be trying to mark initialized
4235 constant fields addressable. */
4236 my_friendly_assert (DECL_LANG_SPECIFIC (x) == 0
4237 || DECL_IN_AGGR_P (x) == 0
4238 || TREE_STATIC (x)
4239 || DECL_EXTERNAL (x), 314);
aa8dea09 4240 /* FALLTHRU */
8d08fdba
MS
4241
4242 case CONST_DECL:
4243 case RESULT_DECL:
9a3b49ac
MS
4244 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
4245 && !DECL_ARTIFICIAL (x) && extra_warnings)
33bd39a2 4246 warning ("address requested for `%D', which is declared `register'",
9a3b49ac 4247 x);
8d08fdba 4248 TREE_ADDRESSABLE (x) = 1;
f29a2bd1 4249 put_var_into_stack (x, /*rescan=*/true);
dffd7eb6 4250 return true;
8d08fdba
MS
4251
4252 case FUNCTION_DECL:
8d08fdba 4253 TREE_ADDRESSABLE (x) = 1;
8d08fdba 4254 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x)) = 1;
dffd7eb6 4255 return true;
8d08fdba 4256
e92cc029
MS
4257 case CONSTRUCTOR:
4258 TREE_ADDRESSABLE (x) = 1;
dffd7eb6 4259 return true;
e92cc029 4260
9a3b49ac
MS
4261 case TARGET_EXPR:
4262 TREE_ADDRESSABLE (x) = 1;
dffd7eb6
NB
4263 cxx_mark_addressable (TREE_OPERAND (x, 0));
4264 return true;
9a3b49ac 4265
8d08fdba 4266 default:
dffd7eb6 4267 return true;
8d08fdba
MS
4268 }
4269}
4270\f
4271/* Build and return a conditional expression IFEXP ? OP1 : OP2. */
4272
4273tree
acd8e2d0 4274build_x_conditional_expr (tree ifexp, tree op1, tree op2)
8d08fdba 4275{
d17811fd
MM
4276 tree orig_ifexp = ifexp;
4277 tree orig_op1 = op1;
4278 tree orig_op2 = op2;
4279 tree expr;
4280
5156628f 4281 if (processing_template_decl)
d17811fd
MM
4282 {
4283 /* The standard says that the expression is type-dependent if
4284 IFEXP is type-dependent, even though the eventual type of the
4285 expression doesn't dependent on IFEXP. */
4286 if (type_dependent_expression_p (ifexp)
4287 || type_dependent_expression_p (op1)
4288 || type_dependent_expression_p (op2))
4289 return build_min_nt (COND_EXPR, ifexp, op1, op2);
4290 ifexp = build_non_dependent_expr (ifexp);
4291 op1 = build_non_dependent_expr (op1);
4292 op2 = build_non_dependent_expr (op2);
4293 }
5566b478 4294
d17811fd
MM
4295 expr = build_conditional_expr (ifexp, op1, op2);
4296 if (processing_template_decl && expr != error_mark_node)
8e1daa34
NS
4297 return build_min_non_dep (COND_EXPR, expr,
4298 orig_ifexp, orig_op1, orig_op2);
d17811fd 4299 return expr;
8d08fdba
MS
4300}
4301\f
c7b62f14
NS
4302/* Given a list of expressions, return a compound expression
4303 that performs them all and returns the value of the last of them. */
4304
4305tree build_x_compound_expr_from_list (tree list, const char *msg)
4306{
4307 tree expr = TREE_VALUE (list);
4308
4309 if (TREE_CHAIN (list))
4310 {
4311 if (msg)
4312 pedwarn ("%s expression list treated as compound expression", msg);
4313
4314 for (list = TREE_CHAIN (list); list; list = TREE_CHAIN (list))
4315 expr = build_x_compound_expr (expr, TREE_VALUE (list));
4316 }
4317
4318 return expr;
4319}
4320
4321/* Handle overloading of the ',' operator when needed. */
e92cc029 4322
8d08fdba 4323tree
d17811fd 4324build_x_compound_expr (tree op1, tree op2)
8d08fdba 4325{
8d08fdba 4326 tree result;
d17811fd
MM
4327 tree orig_op1 = op1;
4328 tree orig_op2 = op2;
8d08fdba 4329
5156628f 4330 if (processing_template_decl)
d17811fd
MM
4331 {
4332 if (type_dependent_expression_p (op1)
4333 || type_dependent_expression_p (op2))
4334 return build_min_nt (COMPOUND_EXPR, op1, op2);
4335 op1 = build_non_dependent_expr (op1);
4336 op2 = build_non_dependent_expr (op2);
4337 }
b19b4a78 4338
d17811fd
MM
4339 result = build_new_op (COMPOUND_EXPR, LOOKUP_NORMAL, op1, op2, NULL_TREE);
4340 if (!result)
e895113a 4341 result = build_compound_expr (op1, op2);
b19b4a78 4342
d17811fd 4343 if (processing_template_decl && result != error_mark_node)
8e1daa34
NS
4344 return build_min_non_dep (COMPOUND_EXPR, result, orig_op1, orig_op2);
4345
d17811fd 4346 return result;
8d08fdba
MS
4347}
4348
c7b62f14 4349/* Build a compound expression. */
8d08fdba
MS
4350
4351tree
c7b62f14 4352build_compound_expr (tree lhs, tree rhs)
8d08fdba 4353{
47d4c811
NS
4354 lhs = decl_constant_value (lhs);
4355 lhs = convert_to_void (lhs, "left-hand operand of comma");
e895113a 4356
c7b62f14 4357 if (lhs == error_mark_node || rhs == error_mark_node)
66543169 4358 return error_mark_node;
e895113a 4359
d340e53f
NS
4360 if (TREE_CODE (rhs) == TARGET_EXPR)
4361 {
4362 /* If the rhs is a TARGET_EXPR, then build the compound
4363 expression inside the target_expr's initializer. This
cd0be382 4364 helps the compiler to eliminate unnecessary temporaries. */
d340e53f 4365 tree init = TREE_OPERAND (rhs, 1);
e895113a 4366
d340e53f
NS
4367 init = build (COMPOUND_EXPR, TREE_TYPE (init), lhs, init);
4368 TREE_OPERAND (rhs, 1) = init;
4369
4370 return rhs;
4371 }
66543169 4372
c7b62f14 4373 return build (COMPOUND_EXPR, TREE_TYPE (rhs), lhs, rhs);
8d08fdba
MS
4374}
4375
3fe18f1d 4376/* Issue an error message if casting from SRC_TYPE to DEST_TYPE casts
a5ac359a
MM
4377 away constness. DESCRIPTION explains what operation is taking
4378 place. */
3fe18f1d
MM
4379
4380static void
a5ac359a
MM
4381check_for_casting_away_constness (tree src_type, tree dest_type,
4382 const char *description)
3fe18f1d
MM
4383{
4384 if (casts_away_constness (src_type, dest_type))
a5ac359a
MM
4385 error ("%s from type `%T' to type `%T' casts away constness",
4386 description, src_type, dest_type);
3fe18f1d
MM
4387}
4388
4389/* Return an expression representing static_cast<TYPE>(EXPR). */
4390
cdf5b885 4391tree
acd8e2d0 4392build_static_cast (tree type, tree expr)
a4443a08 4393{
00bb3dad 4394 tree intype;
3fe18f1d 4395 tree result;
c11b6f21
MS
4396
4397 if (type == error_mark_node || expr == error_mark_node)
4398 return error_mark_node;
4399
5156628f 4400 if (processing_template_decl)
e92cc029 4401 {
8e1daa34
NS
4402 expr = build_min (STATIC_CAST_EXPR, type, expr);
4403 /* We don't know if it will or will not have side effects. */
4404 TREE_SIDE_EFFECTS (expr) = 1;
4405 return expr;
e92cc029
MS
4406 }
4407
c11b6f21
MS
4408 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
4409 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
4410 if (TREE_CODE (type) != REFERENCE_TYPE
4411 && TREE_CODE (expr) == NOP_EXPR
4412 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
4413 expr = TREE_OPERAND (expr, 0);
4414
3fe18f1d 4415 intype = TREE_TYPE (expr);
c11b6f21 4416
3fe18f1d 4417 /* [expr.static.cast]
c11b6f21 4418
3fe18f1d
MM
4419 An lvalue of type "cv1 B", where B is a class type, can be cast
4420 to type "reference to cv2 D", where D is a class derived (clause
4421 _class.derived_) from B, if a valid standard conversion from
4422 "pointer to D" to "pointer to B" exists (_conv.ptr_), cv2 is the
4423 same cv-qualification as, or greater cv-qualification than, cv1,
4424 and B is not a virtual base class of D. */
0a72704b
MM
4425 /* We check this case before checking the validity of "TYPE t =
4426 EXPR;" below because for this case:
4427
4428 struct B {};
4429 struct D : public B { D(const B&); };
4430 extern B& b;
4431 void f() { static_cast<const D&>(b); }
4432
4433 we want to avoid constructing a new D. The standard is not
4434 completely clear about this issue, but our interpretation is
4435 consistent with other compilers. */
3fe18f1d
MM
4436 if (TREE_CODE (type) == REFERENCE_TYPE
4437 && CLASS_TYPE_P (TREE_TYPE (type))
4438 && CLASS_TYPE_P (intype)
d18a8251 4439 && real_lvalue_p (expr)
3fe18f1d
MM
4440 && DERIVED_FROM_P (intype, TREE_TYPE (type))
4441 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT (intype)),
4442 build_pointer_type (TYPE_MAIN_VARIANT
4443 (TREE_TYPE (type))))
4444 && at_least_as_qualified_p (TREE_TYPE (type), intype))
c11b6f21 4445 {
385bce06
MM
4446 /* There is a standard conversion from "D*" to "B*" even if "B"
4447 is ambiguous or inaccessible. Therefore, we ask lookup_base
4448 to check these conditions. */
4449 tree base = lookup_base (TREE_TYPE (type), intype, ba_check, NULL);
3fe18f1d 4450
385bce06
MM
4451 /* Convert from "B*" to "D*". This function will check that "B"
4452 is not a virtual base of "D". */
3fe18f1d
MM
4453 expr = build_base_path (MINUS_EXPR, build_address (expr),
4454 base, /*nonnull=*/false);
3a73bcc6
MM
4455 /* Convert the pointer to a reference -- but then remember that
4456 there are no expressions with reference type in C++. */
4457 return convert_from_reference (build_nop (type, expr));
c11b6f21 4458 }
3fe18f1d 4459
0a72704b
MM
4460 /* [expr.static.cast]
4461
4462 An expression e can be explicitly converted to a type T using a
4463 static_cast of the form static_cast<T>(e) if the declaration T
4464 t(e);" is well-formed, for some invented temporary variable
4465 t. */
4466 result = perform_direct_initialization_if_possible (type, expr);
4467 if (result)
4468 return convert_from_reference (result);
4469
4470 /* [expr.static.cast]
4471
4472 Any expression can be explicitly converted to type cv void. */
4473 if (TREE_CODE (type) == VOID_TYPE)
4474 return convert_to_void (expr, /*implicit=*/NULL);
4475
3fe18f1d
MM
4476 /* [expr.static.cast]
4477
4478 The inverse of any standard conversion sequence (clause _conv_),
4479 other than the lvalue-to-rvalue (_conv.lval_), array-to-pointer
4480 (_conv.array_), function-to-pointer (_conv.func_), and boolean
4481 (_conv.bool_) conversions, can be performed explicitly using
4482 static_cast subject to the restriction that the explicit
4483 conversion does not cast away constness (_expr.const.cast_), and
4484 the following additional rules for specific cases: */
4485 /* For reference, the conversions not excluded are: integral
4486 promotions, floating point promotion, integral conversions,
4487 floating point conversions, floating-integral conversions,
4488 pointer conversions, and pointer to member conversions. */
4489 if ((ARITHMETIC_TYPE_P (type) && ARITHMETIC_TYPE_P (intype))
4490 /* DR 128
4491
4492 A value of integral _or enumeration_ type can be explicitly
4493 converted to an enumeration type. */
4494 || (INTEGRAL_OR_ENUMERATION_TYPE_P (type)
4495 && INTEGRAL_OR_ENUMERATION_TYPE_P (intype)))
8e1daa34
NS
4496 /* Really, build_c_cast should defer to this function rather
4497 than the other way around. */
4498 return build_c_cast (type, expr);
4499
3fe18f1d
MM
4500 if (TYPE_PTR_P (type) && TYPE_PTR_P (intype)
4501 && CLASS_TYPE_P (TREE_TYPE (type))
4502 && CLASS_TYPE_P (TREE_TYPE (intype))
4503 && can_convert (build_pointer_type (TYPE_MAIN_VARIANT
4504 (TREE_TYPE (intype))),
4505 build_pointer_type (TYPE_MAIN_VARIANT
4506 (TREE_TYPE (type)))))
999cc24c 4507 {
3fe18f1d
MM
4508 tree base;
4509
a5ac359a 4510 check_for_casting_away_constness (intype, type, "static_cast");
385bce06
MM
4511 base = lookup_base (TREE_TYPE (type), TREE_TYPE (intype), ba_check,
4512 NULL);
3fe18f1d 4513 return build_base_path (MINUS_EXPR, expr, base, /*nonnull=*/false);
999cc24c 4514 }
8e1daa34 4515
3fe18f1d
MM
4516 if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
4517 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
4518 {
4519 tree c1;
4520 tree c2;
4521 tree t1;
4522 tree t2;
c11b6f21 4523
3fe18f1d
MM
4524 c1 = TYPE_PTRMEM_CLASS_TYPE (intype);
4525 c2 = TYPE_PTRMEM_CLASS_TYPE (type);
4526
4527 if (TYPE_PTRMEM_P (type))
4528 {
4529 t1 = (build_ptrmem_type
4530 (c1,
4531 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (intype))));
4532 t2 = (build_ptrmem_type
4533 (c2,
4534 TYPE_MAIN_VARIANT (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
4535 }
4536 else
4537 {
4538 t1 = intype;
4539 t2 = type;
4540 }
4541 if (can_convert (t1, t2))
4542 {
a5ac359a 4543 check_for_casting_away_constness (intype, type, "static_cast");
3fe18f1d
MM
4544 if (TYPE_PTRMEM_P (type))
4545 {
a5ac359a
MM
4546 tree delta;
4547
3fe18f1d
MM
4548 if (TREE_CODE (expr) == PTRMEM_CST)
4549 expr = cplus_expand_constant (expr);
a5ac359a
MM
4550 delta = get_delta_difference (c1, c2, /*force=*/1);
4551 if (!integer_zerop (delta))
4552 expr = cp_build_binary_op (PLUS_EXPR,
4553 build_nop (ptrdiff_type_node, expr),
4554 delta);
3fe18f1d
MM
4555 return build_nop (type, expr);
4556 }
4557 else
4558 return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr,
4559 /*force=*/1);
4560 }
4561 }
4562
af7b9902
MM
4563 /* [expr.static.cast]
4564
3fe18f1d
MM
4565 An rvalue of type "pointer to cv void" can be explicitly
4566 converted to a pointer to object type. A value of type pointer
4567 to object converted to "pointer to cv void" and back to the
4568 original pointer type will have its original value. */
4569 if (TREE_CODE (intype) == POINTER_TYPE
4570 && VOID_TYPE_P (TREE_TYPE (intype))
4571 && TYPE_PTROB_P (type))
af7b9902 4572 {
a5ac359a 4573 check_for_casting_away_constness (intype, type, "static_cast");
3fe18f1d 4574 return build_nop (type, expr);
af7b9902
MM
4575 }
4576
33bd39a2 4577 error ("invalid static_cast from type `%T' to type `%T'", intype, type);
c11b6f21 4578 return error_mark_node;
a4443a08
MS
4579}
4580
cdf5b885 4581tree
acd8e2d0 4582build_reinterpret_cast (tree type, tree expr)
a4443a08 4583{
c11b6f21
MS
4584 tree intype;
4585
4586 if (type == error_mark_node || expr == error_mark_node)
4587 return error_mark_node;
4588
5156628f 4589 if (processing_template_decl)
5566b478 4590 {
2a1e9fdd 4591 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
8e1daa34
NS
4592
4593 if (!TREE_SIDE_EFFECTS (t)
4594 && type_dependent_expression_p (expr))
4595 /* There might turn out to be side effects inside expr. */
4596 TREE_SIDE_EFFECTS (t) = 1;
5566b478
MS
4597 return t;
4598 }
4599
c11b6f21
MS
4600 if (TREE_CODE (type) != REFERENCE_TYPE)
4601 {
4602 expr = decay_conversion (expr);
4603
4604 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
4605 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
4606 if (TREE_CODE (expr) == NOP_EXPR
4607 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
4608 expr = TREE_OPERAND (expr, 0);
4609 }
4610
c11b6f21 4611 intype = TREE_TYPE (expr);
a80e4195 4612
c11b6f21
MS
4613 if (TREE_CODE (type) == REFERENCE_TYPE)
4614 {
4615 if (! real_lvalue_p (expr))
4616 {
33bd39a2 4617 error ("invalid reinterpret_cast of an rvalue expression of type `%T' to type `%T'", intype, type);
c11b6f21
MS
4618 return error_mark_node;
4619 }
4620 expr = build_unary_op (ADDR_EXPR, expr, 0);
4621 if (expr != error_mark_node)
4622 expr = build_reinterpret_cast
4623 (build_pointer_type (TREE_TYPE (type)), expr);
4624 if (expr != error_mark_node)
4625 expr = build_indirect_ref (expr, 0);
4626 return expr;
4627 }
9edc3913 4628 else if (same_type_ignoring_top_level_qualifiers_p (intype, type))
c11b6f21 4629 return build_static_cast (type, expr);
8ccc31eb 4630
c11b6f21
MS
4631 if (TYPE_PTR_P (type) && (TREE_CODE (intype) == INTEGER_TYPE
4632 || TREE_CODE (intype) == ENUMERAL_TYPE))
4633 /* OK */;
4634 else if (TREE_CODE (type) == INTEGER_TYPE && TYPE_PTR_P (intype))
8ccc31eb 4635 {
c11b6f21 4636 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
33bd39a2 4637 pedwarn ("reinterpret_cast from `%T' to `%T' loses precision",
c11b6f21 4638 intype, type);
8ccc31eb 4639 }
c11b6f21
MS
4640 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
4641 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
8ccc31eb 4642 {
fc611ce0 4643 expr = decl_constant_value (expr);
c11b6f21 4644 return fold (build1 (NOP_EXPR, type, expr));
8ccc31eb 4645 }
c11b6f21
MS
4646 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
4647 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
8ccc31eb 4648 {
a5ac359a 4649 check_for_casting_away_constness (intype, type, "reinterpret_cast");
fc611ce0 4650 expr = decl_constant_value (expr);
c11b6f21 4651 return fold (build1 (NOP_EXPR, type, expr));
8ccc31eb 4652 }
ffb690bd 4653 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
a06d48ef 4654 || (TYPE_PTRFN_P (intype) && TYPE_PTROBV_P (type)))
ffb690bd 4655 {
7e4d7898 4656 pedwarn ("ISO C++ forbids casting between pointer-to-function and pointer-to-object");
fc611ce0 4657 expr = decl_constant_value (expr);
ffb690bd
JM
4658 return fold (build1 (NOP_EXPR, type, expr));
4659 }
c11b6f21 4660 else
8ccc31eb 4661 {
33bd39a2 4662 error ("invalid reinterpret_cast from type `%T' to type `%T'",
7e4d7898 4663 intype, type);
8ccc31eb
MS
4664 return error_mark_node;
4665 }
c11b6f21 4666
37c46b43 4667 return cp_convert (type, expr);
a4443a08
MS
4668}
4669
cdf5b885 4670tree
acd8e2d0 4671build_const_cast (tree type, tree expr)
a4443a08 4672{
c11b6f21 4673 tree intype;
8ccc31eb 4674
f30432d7
MS
4675 if (type == error_mark_node || expr == error_mark_node)
4676 return error_mark_node;
4677
5156628f 4678 if (processing_template_decl)
e92cc029 4679 {
2a1e9fdd 4680 tree t = build_min (CONST_CAST_EXPR, type, expr);
8e1daa34
NS
4681
4682 if (!TREE_SIDE_EFFECTS (t)
4683 && type_dependent_expression_p (expr))
4684 /* There might turn out to be side effects inside expr. */
4685 TREE_SIDE_EFFECTS (t) = 1;
e92cc029
MS
4686 return t;
4687 }
4688
2f8ec491 4689 if (!POINTER_TYPE_P (type))
33bd39a2 4690 error ("invalid use of const_cast with type `%T', which is not a pointer, reference, nor a pointer-to-data-member type", type);
2f8ec491
MM
4691 else if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4692 {
33bd39a2 4693 error ("invalid use of const_cast with type `%T', which is a pointer or reference to a function type", type);
3fd91cbd
MM
4694 return error_mark_node;
4695 }
4696
c11b6f21 4697 if (TREE_CODE (type) != REFERENCE_TYPE)
8ccc31eb 4698 {
c11b6f21
MS
4699 expr = decay_conversion (expr);
4700
4701 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
4702 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
4703 if (TREE_CODE (expr) == NOP_EXPR
4704 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
4705 expr = TREE_OPERAND (expr, 0);
8ccc31eb
MS
4706 }
4707
c11b6f21 4708 intype = TREE_TYPE (expr);
9edc3913
MM
4709
4710 if (same_type_ignoring_top_level_qualifiers_p (intype, type))
c11b6f21
MS
4711 return build_static_cast (type, expr);
4712 else if (TREE_CODE (type) == REFERENCE_TYPE)
8ccc31eb 4713 {
c11b6f21 4714 if (! real_lvalue_p (expr))
8ccc31eb 4715 {
33bd39a2 4716 error ("invalid const_cast of an rvalue of type `%T' to type `%T'", intype, type);
8ccc31eb
MS
4717 return error_mark_node;
4718 }
8ccc31eb 4719
c11b6f21 4720 if (comp_ptr_ttypes_const (TREE_TYPE (type), intype))
c2840dfb
JM
4721 {
4722 expr = build_unary_op (ADDR_EXPR, expr, 0);
4723 expr = build1 (NOP_EXPR, type, expr);
4724 return convert_from_reference (expr);
4725 }
8ccc31eb 4726 }
a5ac359a
MM
4727 else if (((TREE_CODE (type) == POINTER_TYPE
4728 && TREE_CODE (intype) == POINTER_TYPE)
4729 || (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype)))
c11b6f21 4730 && comp_ptr_ttypes_const (TREE_TYPE (type), TREE_TYPE (intype)))
37c46b43 4731 return cp_convert (type, expr);
8ccc31eb 4732
33bd39a2 4733 error ("invalid const_cast from type `%T' to type `%T'", intype, type);
c11b6f21 4734 return error_mark_node;
a4443a08
MS
4735}
4736
6060a796
MS
4737/* Build an expression representing a cast to type TYPE of expression EXPR.
4738
4739 ALLOW_NONCONVERTING is true if we should allow non-converting constructors
4740 when doing the cast. */
8d08fdba
MS
4741
4742tree
acd8e2d0 4743build_c_cast (tree type, tree expr)
8d08fdba
MS
4744{
4745 register tree value = expr;
e6e174e5 4746 tree otype;
8d08fdba
MS
4747
4748 if (type == error_mark_node || expr == error_mark_node)
4749 return error_mark_node;
4750
0949f723
NS
4751 if (processing_template_decl)
4752 {
4753 tree t = build_min (CAST_EXPR, type,
4754 tree_cons (NULL_TREE, value, NULL_TREE));
8e1daa34
NS
4755 /* We don't know if it will or will not have side effects. */
4756 TREE_SIDE_EFFECTS (t) = 1;
0949f723
NS
4757 return t;
4758 }
4759
8d08fdba 4760 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
8ccc31eb
MS
4761 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
4762 if (TREE_CODE (type) != REFERENCE_TYPE
4763 && TREE_CODE (value) == NOP_EXPR
8d08fdba
MS
4764 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
4765 value = TREE_OPERAND (value, 0);
4766
8d08fdba
MS
4767 if (TREE_CODE (type) == ARRAY_TYPE)
4768 {
4769 /* Allow casting from T1* to T2[] because Cfront allows it.
cab1f180 4770 NIHCL uses it. It is not valid ISO C++ however. */
8d08fdba
MS
4771 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
4772 {
33bd39a2 4773 pedwarn ("ISO C++ forbids casting to an array type `%T'", type);
8d08fdba
MS
4774 type = build_pointer_type (TREE_TYPE (type));
4775 }
4776 else
4777 {
33bd39a2 4778 error ("ISO C++ forbids casting to an array type `%T'", type);
8d08fdba
MS
4779 return error_mark_node;
4780 }
4781 }
4782
a0a33927
MS
4783 if (TREE_CODE (type) == FUNCTION_TYPE
4784 || TREE_CODE (type) == METHOD_TYPE)
4785 {
33bd39a2 4786 error ("invalid cast to function type `%T'", type);
a0a33927
MS
4787 return error_mark_node;
4788 }
4789
02cac427
NS
4790 if (TREE_CODE (type) == VOID_TYPE)
4791 {
4792 /* Conversion to void does not cause any of the normal function to
4793 * pointer, array to pointer and lvalue to rvalue decays. */
4794
4795 value = convert_to_void (value, /*implicit=*/NULL);
4796 return value;
4797 }
79b59cc3
MM
4798
4799 if (!complete_type_or_else (type, NULL_TREE))
4800 return error_mark_node;
4801
e6e174e5
JM
4802 /* Convert functions and arrays to pointers and
4803 convert references to their expanded types,
4804 but don't convert any other types. If, however, we are
4805 casting to a class type, there's no reason to do this: the
4806 cast will only succeed if there is a converting constructor,
4807 and the default conversions will be done at that point. In
4808 fact, doing the default conversion here is actually harmful
4809 in cases like this:
4810
4811 typedef int A[2];
4812 struct S { S(const A&); };
4813
4814 since we don't want the array-to-pointer conversion done. */
4815 if (!IS_AGGR_TYPE (type))
4816 {
4817 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
4818 || (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE
8d7f862c 4819 /* Don't do the default conversion on a ->* expression. */
e6e174e5 4820 && ! (TREE_CODE (type) == POINTER_TYPE
8d7f862c 4821 && bound_pmf_p (value)))
e6e174e5
JM
4822 || TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
4823 || TREE_CODE (TREE_TYPE (value)) == REFERENCE_TYPE)
0a72704b 4824 value = decay_conversion (value);
e6e174e5
JM
4825 }
4826 else if (TREE_CODE (TREE_TYPE (value)) == REFERENCE_TYPE)
4827 /* However, even for class types, we still need to strip away
4828 the reference type, since the call to convert_force below
4829 does not expect the input expression to be of reference
4830 type. */
4831 value = convert_from_reference (value);
4785faf1 4832
e6e174e5
JM
4833 otype = TREE_TYPE (value);
4834
4835 /* Optionally warn about potentially worrisome casts. */
4836
4837 if (warn_cast_qual
4838 && TREE_CODE (type) == POINTER_TYPE
4839 && TREE_CODE (otype) == POINTER_TYPE
4840 && !at_least_as_qualified_p (TREE_TYPE (type),
4841 TREE_TYPE (otype)))
33bd39a2 4842 warning ("cast from `%T' to `%T' discards qualifiers from pointer target type",
8be7ab5d 4843 otype, type);
8d08fdba 4844
e6e174e5 4845 if (TREE_CODE (type) == INTEGER_TYPE
a5ac359a 4846 && TYPE_PTR_P (otype)
e6e174e5
JM
4847 && TYPE_PRECISION (type) != TYPE_PRECISION (otype))
4848 warning ("cast from pointer to integer of different size");
4849
a5ac359a 4850 if (TYPE_PTR_P (type)
e6e174e5
JM
4851 && TREE_CODE (otype) == INTEGER_TYPE
4852 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
bf061ee4
RH
4853 /* Don't warn about converting any constant. */
4854 && !TREE_CONSTANT (value))
e6e174e5 4855 warning ("cast to pointer from integer of different size");
8d08fdba 4856
02cac427 4857 if (TREE_CODE (type) == REFERENCE_TYPE)
e6e174e5
JM
4858 value = (convert_from_reference
4859 (convert_to_reference (type, value, CONV_C_CAST,
4860 LOOKUP_COMPLAIN, NULL_TREE)));
4861 else
4862 {
4863 tree ovalue;
8ccc31eb 4864
fc611ce0 4865 value = decl_constant_value (value);
8ccc31eb 4866
e6e174e5
JM
4867 ovalue = value;
4868 value = convert_force (type, value, CONV_C_CAST);
8ccc31eb 4869
e6e174e5
JM
4870 /* Ignore any integer overflow caused by the cast. */
4871 if (TREE_CODE (value) == INTEGER_CST)
4872 {
4873 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
4874 TREE_CONSTANT_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (ovalue);
8d08fdba
MS
4875 }
4876 }
4877
8be7ab5d
NS
4878 /* Warn about possible alignment problems. Do this here when we will have
4879 instantiated any necessary template types. */
4880 if (STRICT_ALIGNMENT && warn_cast_align
4881 && TREE_CODE (type) == POINTER_TYPE
4882 && TREE_CODE (otype) == POINTER_TYPE
4883 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
4884 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
d0f062fb
NS
4885 && COMPLETE_TYPE_P (TREE_TYPE (otype))
4886 && COMPLETE_TYPE_P (TREE_TYPE (type))
8be7ab5d 4887 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
33bd39a2 4888 warning ("cast from `%T' to `%T' increases required alignment of target type",
8be7ab5d
NS
4889 otype, type);
4890
8d08fdba 4891 /* Always produce some operator for an explicit cast,
c11b6f21
MS
4892 so we can tell (for -pedantic) that the cast is no lvalue. */
4893 if (TREE_CODE (type) != REFERENCE_TYPE && value == expr
4894 && real_lvalue_p (value))
8ccc31eb 4895 value = non_lvalue (value);
8d08fdba
MS
4896
4897 return value;
4898}
4899\f
8d08fdba
MS
4900/* Build an assignment expression of lvalue LHS from value RHS.
4901 MODIFYCODE is the code for a binary operator that we use
4902 to combine the old value of LHS with RHS to get the new value.
4903 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
4904
e92cc029
MS
4905 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
4906
8d08fdba 4907tree
acd8e2d0 4908build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs)
8d08fdba
MS
4909{
4910 register tree result;
4911 tree newrhs = rhs;
4912 tree lhstype = TREE_TYPE (lhs);
4913 tree olhstype = lhstype;
a3203465 4914 tree olhs = lhs;
8d08fdba 4915
8d08fdba 4916 /* Avoid duplicate error messages from operands that had errors. */
bd6dd845 4917 if (lhs == error_mark_node || rhs == error_mark_node)
8d08fdba
MS
4918 return error_mark_node;
4919
8d08fdba 4920 /* Handle control structure constructs used as "lvalues". */
8d08fdba
MS
4921 switch (TREE_CODE (lhs))
4922 {
4923 /* Handle --foo = 5; as these are valid constructs in C++ */
4924 case PREDECREMENT_EXPR:
4925 case PREINCREMENT_EXPR:
4926 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
4927 lhs = build (TREE_CODE (lhs), TREE_TYPE (lhs),
46b02c6d
MS
4928 stabilize_reference (TREE_OPERAND (lhs, 0)),
4929 TREE_OPERAND (lhs, 1));
8d08fdba
MS
4930 return build (COMPOUND_EXPR, lhstype,
4931 lhs,
4932 build_modify_expr (TREE_OPERAND (lhs, 0),
4933 modifycode, rhs));
4934
4935 /* Handle (a, b) used as an "lvalue". */
4936 case COMPOUND_EXPR:
8d08fdba
MS
4937 newrhs = build_modify_expr (TREE_OPERAND (lhs, 1),
4938 modifycode, rhs);
bd6dd845 4939 if (newrhs == error_mark_node)
8d08fdba
MS
4940 return error_mark_node;
4941 return build (COMPOUND_EXPR, lhstype,
4942 TREE_OPERAND (lhs, 0), newrhs);
4943
a4443a08 4944 case MODIFY_EXPR:
a65cddcf
JM
4945 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
4946 lhs = build (TREE_CODE (lhs), TREE_TYPE (lhs),
4947 stabilize_reference (TREE_OPERAND (lhs, 0)),
4948 TREE_OPERAND (lhs, 1));
a4443a08 4949 newrhs = build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs);
bd6dd845 4950 if (newrhs == error_mark_node)
a4443a08
MS
4951 return error_mark_node;
4952 return build (COMPOUND_EXPR, lhstype, lhs, newrhs);
4953
8d08fdba
MS
4954 /* Handle (a ? b : c) used as an "lvalue". */
4955 case COND_EXPR:
8d08fdba
MS
4956 {
4957 /* Produce (a ? (b = rhs) : (c = rhs))
4958 except that the RHS goes through a save-expr
4959 so the code to compute it is only emitted once. */
df39af7d 4960 tree cond;
a77a9a18 4961 tree preeval = NULL_TREE;
df39af7d 4962
a77a9a18 4963 rhs = stabilize_expr (rhs, &preeval);
a56ca899 4964
df39af7d
JM
4965 /* Check this here to avoid odd errors when trying to convert
4966 a throw to the type of the COND_EXPR. */
4967 if (!lvalue_or_else (lhs, "assignment"))
4968 return error_mark_node;
4969
4970 cond = build_conditional_expr
4971 (TREE_OPERAND (lhs, 0),
4972 build_modify_expr (cp_convert (TREE_TYPE (lhs),
4973 TREE_OPERAND (lhs, 1)),
4974 modifycode, rhs),
4975 build_modify_expr (cp_convert (TREE_TYPE (lhs),
4976 TREE_OPERAND (lhs, 2)),
4977 modifycode, rhs));
4978
bd6dd845 4979 if (cond == error_mark_node)
8d08fdba
MS
4980 return cond;
4981 /* Make sure the code to compute the rhs comes out
4982 before the split. */
a77a9a18 4983 return build (COMPOUND_EXPR, TREE_TYPE (lhs), preeval, cond);
8d08fdba 4984 }
a56ca899 4985
7f85441b
KG
4986 default:
4987 break;
8d08fdba
MS
4988 }
4989
8d08fdba
MS
4990 if (modifycode == INIT_EXPR)
4991 {
f30efcb7
JM
4992 if (TREE_CODE (rhs) == CONSTRUCTOR)
4993 {
182609b5
JM
4994 if (! same_type_p (TREE_TYPE (rhs), lhstype))
4995 /* Call convert to generate an error; see PR 11063. */
4996 rhs = convert (lhstype, rhs);
f30efcb7
JM
4997 result = build (INIT_EXPR, lhstype, lhs, rhs);
4998 TREE_SIDE_EFFECTS (result) = 1;
4999 return result;
5000 }
5001 else if (! IS_AGGR_TYPE (lhstype))
db5ae43f 5002 /* Do the default thing */;
db5ae43f 5003 else
8d08fdba 5004 {
4ba126e4
MM
5005 result = build_special_member_call (lhs, complete_ctor_identifier,
5006 build_tree_list (NULL_TREE, rhs),
5007 TYPE_BINFO (lhstype),
5008 LOOKUP_NORMAL);
8d08fdba
MS
5009 if (result == NULL_TREE)
5010 return error_mark_node;
5011 return result;
5012 }
5013 }
a56ca899 5014 else
8d08fdba 5015 {
a56ca899 5016 if (TREE_CODE (lhstype) == REFERENCE_TYPE)
8d08fdba 5017 {
a56ca899
NS
5018 lhs = convert_from_reference (lhs);
5019 olhstype = lhstype = TREE_TYPE (lhs);
8d08fdba 5020 }
a56ca899
NS
5021 lhs = require_complete_type (lhs);
5022 if (lhs == error_mark_node)
5023 return error_mark_node;
5024
5025 if (modifycode == NOP_EXPR)
c91a56d2 5026 {
a56ca899
NS
5027 /* `operator=' is not an inheritable operator. */
5028 if (! IS_AGGR_TYPE (lhstype))
5029 /* Do the default thing */;
5030 else
5031 {
14d22dd6
MM
5032 result = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL,
5033 lhs, rhs, make_node (NOP_EXPR));
a56ca899
NS
5034 if (result == NULL_TREE)
5035 return error_mark_node;
5036 return result;
5037 }
5038 lhstype = olhstype;
5039 }
5040 else
5041 {
5042 /* A binary op has been requested. Combine the old LHS
5043 value with the RHS producing the value we should actually
5044 store into the LHS. */
5045
5046 my_friendly_assert (!PROMOTES_TO_AGGR_TYPE (lhstype, REFERENCE_TYPE),
5047 978652);
5048 lhs = stabilize_reference (lhs);
5049 newrhs = cp_build_binary_op (modifycode, lhs, rhs);
5050 if (newrhs == error_mark_node)
5051 {
5052 error (" in evaluation of `%Q(%#T, %#T)'", modifycode,
5053 TREE_TYPE (lhs), TREE_TYPE (rhs));
5054 return error_mark_node;
5055 }
5056
5057 /* Now it looks like a plain assignment. */
5058 modifycode = NOP_EXPR;
c91a56d2 5059 }
a56ca899
NS
5060 my_friendly_assert (TREE_CODE (lhstype) != REFERENCE_TYPE, 20011220);
5061 my_friendly_assert (TREE_CODE (TREE_TYPE (newrhs)) != REFERENCE_TYPE,
5062 20011220);
8d08fdba
MS
5063 }
5064
5065 /* Handle a cast used as an "lvalue".
5066 We have already performed any binary operator using the value as cast.
5067 Now convert the result to the cast type of the lhs,
5068 and then true type of the lhs and store it there;
5069 then convert result back to the cast type to be the value
5070 of the assignment. */
5071
5072 switch (TREE_CODE (lhs))
5073 {
5074 case NOP_EXPR:
5075 case CONVERT_EXPR:
5076 case FLOAT_EXPR:
5077 case FIX_TRUNC_EXPR:
5078 case FIX_FLOOR_EXPR:
5079 case FIX_ROUND_EXPR:
5080 case FIX_CEIL_EXPR:
8d08fdba
MS
5081 {
5082 tree inner_lhs = TREE_OPERAND (lhs, 0);
5083 tree result;
2ba25f50 5084
a56ca899
NS
5085 if (TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
5086 || TREE_CODE (TREE_TYPE (newrhs)) == FUNCTION_TYPE
5087 || TREE_CODE (TREE_TYPE (newrhs)) == METHOD_TYPE
5088 || TREE_CODE (TREE_TYPE (newrhs)) == OFFSET_TYPE)
0a72704b 5089 newrhs = decay_conversion (newrhs);
a56ca899 5090
cab1f180
ML
5091 /* ISO C++ 5.4/1: The result is an lvalue if T is a reference
5092 type, otherwise the result is an rvalue. */
2ba25f50 5093 if (! lvalue_p (lhs))
7e4d7898 5094 pedwarn ("ISO C++ forbids cast to non-reference type used as lvalue");
a0a33927 5095
8d08fdba 5096 result = build_modify_expr (inner_lhs, NOP_EXPR,
37c46b43
MS
5097 cp_convert (TREE_TYPE (inner_lhs),
5098 cp_convert (lhstype, newrhs)));
bd6dd845 5099 if (result == error_mark_node)
8d08fdba 5100 return result;
37c46b43 5101 return cp_convert (TREE_TYPE (lhs), result);
8d08fdba 5102 }
7f85441b
KG
5103
5104 default:
5105 break;
8d08fdba 5106 }
8d08fdba
MS
5107
5108 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
5109 Reject anything strange now. */
5110
5111 if (!lvalue_or_else (lhs, "assignment"))
5112 return error_mark_node;
5113
a56ca899
NS
5114 /* Warn about modifying something that is `const'. Don't warn if
5115 this is initialization. */
8d08fdba 5116 if (modifycode != INIT_EXPR
91063b51 5117 && (TREE_READONLY (lhs) || CP_TYPE_CONST_P (lhstype)
69851283
MM
5118 /* Functions are not modifiable, even though they are
5119 lvalues. */
5120 || TREE_CODE (TREE_TYPE (lhs)) == FUNCTION_TYPE
a56ca899
NS
5121 || TREE_CODE (TREE_TYPE (lhs)) == METHOD_TYPE
5122 /* If it's an aggregate and any field is const, then it is
5123 effectively const. */
5552b43c 5124 || (CLASS_TYPE_P (lhstype)
a56ca899 5125 && C_TYPE_FIELDS_READONLY (lhstype))))
8d08fdba
MS
5126 readonly_error (lhs, "assignment", 0);
5127
a56ca899
NS
5128 /* If storing into a structure or union member, it has probably been
5129 given type `int'. Compute the type that would go with the actual
5130 amount of storage the member occupies. */
8d08fdba
MS
5131
5132 if (TREE_CODE (lhs) == COMPONENT_REF
5133 && (TREE_CODE (lhstype) == INTEGER_TYPE
5134 || TREE_CODE (lhstype) == REAL_TYPE
5135 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
a0a33927
MS
5136 {
5137 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
5138
5139 /* If storing in a field that is in actuality a short or narrower
5140 than one, we must store in the field in its actual type. */
5141
5142 if (lhstype != TREE_TYPE (lhs))
5143 {
5144 lhs = copy_node (lhs);
5145 TREE_TYPE (lhs) = lhstype;
5146 }
5147 }
8d08fdba 5148
8d08fdba
MS
5149 /* Convert new value to destination type. */
5150
5151 if (TREE_CODE (lhstype) == ARRAY_TYPE)
5152 {
f376e137
MS
5153 int from_array;
5154
985723ce
JM
5155 if (!same_or_base_type_p (TYPE_MAIN_VARIANT (lhstype),
5156 TYPE_MAIN_VARIANT (TREE_TYPE (rhs))))
44a8d0b3 5157 {
33bd39a2 5158 error ("incompatible types in assignment of `%T' to `%T'",
985723ce 5159 TREE_TYPE (rhs), lhstype);
44a8d0b3
MS
5160 return error_mark_node;
5161 }
5162
39211cd5 5163 /* Allow array assignment in compiler-generated code. */
a49cfba8 5164 if (! DECL_ARTIFICIAL (current_function_decl))
7e4d7898 5165 pedwarn ("ISO C++ forbids assignment of arrays");
39211cd5 5166
f376e137
MS
5167 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
5168 ? 1 + (modifycode != INIT_EXPR): 0;
a48cccea 5169 return build_vec_init (lhs, NULL_TREE, newrhs, from_array);
8d08fdba
MS
5170 }
5171
5172 if (modifycode == INIT_EXPR)
a56ca899
NS
5173 newrhs = convert_for_initialization (lhs, lhstype, newrhs, LOOKUP_NORMAL,
5174 "initialization", NULL_TREE, 0);
8d08fdba
MS
5175 else
5176 {
e92cc029 5177 /* Avoid warnings on enum bit fields. */
8d08fdba
MS
5178 if (TREE_CODE (olhstype) == ENUMERAL_TYPE
5179 && TREE_CODE (lhstype) == INTEGER_TYPE)
5180 {
5181 newrhs = convert_for_assignment (olhstype, newrhs, "assignment",
5182 NULL_TREE, 0);
6060a796 5183 newrhs = convert_force (lhstype, newrhs, 0);
8d08fdba
MS
5184 }
5185 else
5186 newrhs = convert_for_assignment (lhstype, newrhs, "assignment",
b7484fbe
MS
5187 NULL_TREE, 0);
5188 if (TREE_CODE (newrhs) == CALL_EXPR
5189 && TYPE_NEEDS_CONSTRUCTING (lhstype))
5566b478 5190 newrhs = build_cplus_new (lhstype, newrhs);
b7484fbe 5191
e8abc66f 5192 /* Can't initialize directly from a TARGET_EXPR, since that would
07674418
MS
5193 cause the lhs to be constructed twice, and possibly result in
5194 accidental self-initialization. So we force the TARGET_EXPR to be
be99da77 5195 expanded without a target. */
b7484fbe 5196 if (TREE_CODE (newrhs) == TARGET_EXPR)
be99da77 5197 newrhs = build (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
a0128b67 5198 TREE_OPERAND (newrhs, 0));
8d08fdba
MS
5199 }
5200
bd6dd845 5201 if (newrhs == error_mark_node)
8d08fdba
MS
5202 return error_mark_node;
5203
4a386498
MM
5204 result = build (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
5205 lhstype, lhs, newrhs);
2ee887f2 5206
8d08fdba
MS
5207 TREE_SIDE_EFFECTS (result) = 1;
5208
5209 /* If we got the LHS in a different type for storing in,
5210 convert the result back to the nominal type of LHS
5211 so that the value we return always has the same type
5212 as the LHS argument. */
5213
5214 if (olhstype == TREE_TYPE (result))
5215 return result;
5216 /* Avoid warnings converting integral types back into enums
e92cc029 5217 for enum bit fields. */
8d08fdba
MS
5218 if (TREE_CODE (TREE_TYPE (result)) == INTEGER_TYPE
5219 && TREE_CODE (olhstype) == ENUMERAL_TYPE)
a3203465
MS
5220 {
5221 result = build (COMPOUND_EXPR, olhstype, result, olhs);
5222 TREE_NO_UNUSED_WARNING (result) = 1;
5223 return result;
5224 }
8d08fdba
MS
5225 return convert_for_assignment (olhstype, result, "assignment",
5226 NULL_TREE, 0);
5227}
5228
5566b478 5229tree
acd8e2d0 5230build_x_modify_expr (tree lhs, enum tree_code modifycode, tree rhs)
5566b478 5231{
5156628f 5232 if (processing_template_decl)
5566b478 5233 return build_min_nt (MODOP_EXPR, lhs,
4dabb379 5234 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
5566b478
MS
5235
5236 if (modifycode != NOP_EXPR)
5237 {
14d22dd6
MM
5238 tree rval = build_new_op (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
5239 make_node (modifycode));
5566b478
MS
5240 if (rval)
5241 return rval;
5242 }
5243 return build_modify_expr (lhs, modifycode, rhs);
5244}
8d08fdba 5245
8d08fdba 5246\f
ddd5a7c1 5247/* Get difference in deltas for different pointer to member function
7b6d72fc
MM
5248 types. Returns an integer constant of type PTRDIFF_TYPE_NODE. If
5249 the conversion is invalid, the constant is zero. If FORCE is true,
5250 then allow reverse conversions as well.
3927874d
JM
5251
5252 Note that the naming of FROM and TO is kind of backwards; the return
5253 value is what we add to a TO in order to get a FROM. They are named
5254 this way because we call this function to find out how to convert from
5255 a pointer to member of FROM to a pointer to member of TO. */
e92cc029 5256
51c184be 5257static tree
acd8e2d0 5258get_delta_difference (tree from, tree to, int force)
51c184be 5259{
51c184be 5260 tree binfo;
f9825168 5261 tree virt_binfo;
2db1ab2d 5262 base_kind kind;
51c184be 5263
2db1ab2d
NS
5264 binfo = lookup_base (to, from, ba_check, &kind);
5265 if (kind == bk_inaccessible || kind == bk_ambig)
51c184be 5266 {
8251199e 5267 error (" in pointer to member function conversion");
7b6d72fc 5268 goto error;
51c184be 5269 }
2db1ab2d 5270 if (!binfo)
51c184be
MS
5271 {
5272 if (!force)
5273 {
5274 error_not_base_type (from, to);
8251199e 5275 error (" in pointer to member conversion");
7b6d72fc 5276 goto error;
51c184be 5277 }
2db1ab2d 5278 binfo = lookup_base (from, to, ba_check, &kind);
7b6d72fc
MM
5279 if (!binfo)
5280 goto error;
f9825168 5281 virt_binfo = binfo_from_vbase (binfo);
f9825168 5282 if (virt_binfo)
61402b80 5283 {
c6002625 5284 /* This is a reinterpret cast, we choose to do nothing. */
dbbf88d1
NS
5285 warning ("pointer to member cast via virtual base `%T'",
5286 BINFO_TYPE (virt_binfo));
7b6d72fc 5287 goto error;
61402b80 5288 }
7b6d72fc
MM
5289 return convert_to_integer (ptrdiff_type_node,
5290 size_diffop (size_zero_node,
5291 BINFO_OFFSET (binfo)));
51c184be 5292 }
32e02ee0 5293
f9825168 5294 virt_binfo = binfo_from_vbase (binfo);
7b6d72fc
MM
5295 if (!virt_binfo)
5296 return convert_to_integer (ptrdiff_type_node, BINFO_OFFSET (binfo));
5297
5298 /* This is a reinterpret cast, we choose to do nothing. */
5299 if (force)
5300 warning ("pointer to member cast via virtual base `%T'",
5301 BINFO_TYPE (virt_binfo));
5302 else
5303 error ("pointer to member conversion via virtual base `%T'",
5304 BINFO_TYPE (virt_binfo));
32e02ee0 5305
7b6d72fc
MM
5306 error:
5307 return convert_to_integer(ptrdiff_type_node, integer_zero_node);
51c184be
MS
5308}
5309
c7e266a6
MM
5310/* Return a constructor for the pointer-to-member-function TYPE using
5311 the other components as specified. */
5312
e08a8f45 5313tree
acd8e2d0 5314build_ptrmemfunc1 (tree type, tree delta, tree pfn)
594740f3 5315{
f78c7bc6 5316 tree u = NULL_TREE;
c7e266a6 5317 tree delta_field;
c7e266a6 5318 tree pfn_field;
594740f3 5319
c7e266a6 5320 /* Pull the FIELD_DECLs out of the type. */
1f84ec23
MM
5321 pfn_field = TYPE_FIELDS (type);
5322 delta_field = TREE_CHAIN (pfn_field);
594740f3 5323
c7e266a6
MM
5324 /* Make sure DELTA has the type we want. */
5325 delta = convert_and_check (delta_type_node, delta);
594740f3 5326
c7e266a6 5327 /* Finish creating the initializer. */
18ae7f63
AO
5328 u = tree_cons (pfn_field, pfn,
5329 build_tree_list (delta_field, delta));
dcf92453 5330 u = build_constructor (type, u);
530ec96d
MM
5331 TREE_CONSTANT (u) = TREE_CONSTANT (pfn) && TREE_CONSTANT (delta);
5332 TREE_STATIC (u) = (TREE_CONSTANT (u)
5333 && (initializer_constant_valid_p (pfn, TREE_TYPE (pfn))
5334 != NULL_TREE)
5335 && (initializer_constant_valid_p (delta, TREE_TYPE (delta))
5336 != NULL_TREE));
594740f3 5337 return u;
594740f3
MS
5338}
5339
8d08fdba
MS
5340/* Build a constructor for a pointer to member function. It can be
5341 used to initialize global variables, local variable, or used
5342 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
5343 want to be.
5344
838dfd8a 5345 If FORCE is nonzero, then force this conversion, even if
8d08fdba 5346 we would rather not do it. Usually set when using an explicit
51c184be
MS
5347 cast.
5348
5349 Return error_mark_node, if something goes wrong. */
8d08fdba
MS
5350
5351tree
acd8e2d0 5352build_ptrmemfunc (tree type, tree pfn, int force)
8d08fdba 5353{
e08a8f45 5354 tree fn;
7993382e
MM
5355 tree pfn_type;
5356 tree to_type;
5357
5358 if (error_operand_p (pfn))
5359 return error_mark_node;
5360
5361 pfn_type = TREE_TYPE (pfn);
5362 to_type = build_ptrmemfunc_type (type);
b928a651 5363
e92cc029 5364 /* Handle multiple conversions of pointer to member functions. */
7993382e 5365 if (TYPE_PTRMEMFUNC_P (pfn_type))
8d08fdba 5366 {
530ec96d 5367 tree delta = NULL_TREE;
7133357a 5368 tree npfn = NULL_TREE;
1f84ec23 5369 tree n;
594740f3 5370
b928a651
MM
5371 if (!force
5372 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn))
33bd39a2 5373 error ("invalid conversion to type `%T' from type `%T'",
b928a651 5374 to_type, pfn_type);
9ca21c0a 5375
3f2b640a
JM
5376 n = get_delta_difference (TYPE_PTRMEMFUNC_OBJECT_TYPE (pfn_type),
5377 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
5378 force);
5379
c7e266a6
MM
5380 /* We don't have to do any conversion to convert a
5381 pointer-to-member to its own type. But, we don't want to
5382 just return a PTRMEM_CST if there's an explicit cast; that
5383 cast should make the expression an invalid template argument. */
3f2b640a
JM
5384 if (TREE_CODE (pfn) != PTRMEM_CST)
5385 {
5386 if (same_type_p (to_type, pfn_type))
5387 return pfn;
5388 else if (integer_zerop (n))
5389 return build_reinterpret_cast (to_type, pfn);
5390 }
c7e266a6 5391
7def1251
JM
5392 if (TREE_SIDE_EFFECTS (pfn))
5393 pfn = save_expr (pfn);
5394
530ec96d
MM
5395 /* Obtain the function pointer and the current DELTA. */
5396 if (TREE_CODE (pfn) == PTRMEM_CST)
18ae7f63 5397 expand_ptrmemfunc_cst (pfn, &delta, &npfn);
530ec96d
MM
5398 else
5399 {
50ad9642
MM
5400 npfn = build_ptrmemfunc_access_expr (pfn, pfn_identifier);
5401 delta = build_ptrmemfunc_access_expr (pfn, delta_identifier);
530ec96d
MM
5402 }
5403
3461fba7 5404 /* Just adjust the DELTA field. */
7b6d72fc 5405 my_friendly_assert (TREE_TYPE (delta) == ptrdiff_type_node, 20030727);
cb7fdde2
AO
5406 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_delta)
5407 n = cp_build_binary_op (LSHIFT_EXPR, n, integer_one_node);
1f84ec23 5408 delta = cp_build_binary_op (PLUS_EXPR, delta, n);
18ae7f63 5409 return build_ptrmemfunc1 (to_type, delta, npfn);
8d08fdba 5410 }
51c184be 5411
e92cc029 5412 /* Handle null pointer to member function conversions. */
51c184be
MS
5413 if (integer_zerop (pfn))
5414 {
faf5394a 5415 pfn = build_c_cast (type, integer_zero_node);
b928a651 5416 return build_ptrmemfunc1 (to_type,
1f84ec23 5417 integer_zero_node,
18ae7f63 5418 pfn);
51c184be
MS
5419 }
5420
e6e174e5 5421 if (type_unknown_p (pfn))
c2ea3a40 5422 return instantiate_type (type, pfn, tf_error | tf_warning);
a0a33927 5423
e08a8f45
MM
5424 fn = TREE_OPERAND (pfn, 0);
5425 my_friendly_assert (TREE_CODE (fn) == FUNCTION_DECL, 0);
b928a651 5426 return make_ptrmem_cst (to_type, fn);
e08a8f45 5427}
8d08fdba 5428
18ae7f63 5429/* Return the DELTA, IDX, PFN, and DELTA2 values for the PTRMEM_CST
fed3cef0
RK
5430 given by CST.
5431
5432 ??? There is no consistency as to the types returned for the above
5433 values. Some code acts as if its a sizetype and some as if its
5434 integer_type_node. */
8d08fdba 5435
e08a8f45 5436void
acd8e2d0 5437expand_ptrmemfunc_cst (tree cst, tree *delta, tree *pfn)
e08a8f45
MM
5438{
5439 tree type = TREE_TYPE (cst);
5440 tree fn = PTRMEM_CST_MEMBER (cst);
3927874d 5441 tree ptr_class, fn_class;
8d08fdba 5442
e08a8f45 5443 my_friendly_assert (TREE_CODE (fn) == FUNCTION_DECL, 0);
3927874d
JM
5444
5445 /* The class that the function belongs to. */
4f1c5b7d 5446 fn_class = DECL_CONTEXT (fn);
3927874d
JM
5447
5448 /* The class that we're creating a pointer to member of. */
5449 ptr_class = TYPE_PTRMEMFUNC_OBJECT_TYPE (type);
5450
5451 /* First, calculate the adjustment to the function's class. */
5452 *delta = get_delta_difference (fn_class, ptr_class, /*force=*/0);
5453
e08a8f45 5454 if (!DECL_VIRTUAL_P (fn))
18ae7f63 5455 *pfn = convert (TYPE_PTRMEMFUNC_FN_TYPE (type), build_addr_func (fn));
8d08fdba 5456 else
51c184be 5457 {
3927874d
JM
5458 /* If we're dealing with a virtual function, we have to adjust 'this'
5459 again, to point to the base which provides the vtable entry for
5460 fn; the call will do the opposite adjustment. */
e93ee644 5461 tree orig_class = DECL_CONTEXT (fn);
3927874d 5462 tree binfo = binfo_or_else (orig_class, fn_class);
fed3cef0
RK
5463 *delta = fold (build (PLUS_EXPR, TREE_TYPE (*delta),
5464 *delta, BINFO_OFFSET (binfo)));
3927874d 5465
3461fba7
NS
5466 /* We set PFN to the vtable offset at which the function can be
5467 found, plus one (unless ptrmemfunc_vbit_in_delta, in which
5468 case delta is shifted left, and then incremented). */
cb7fdde2 5469 *pfn = DECL_VINDEX (fn);
eb2d0614
AO
5470 *pfn = fold (build (MULT_EXPR, integer_type_node, *pfn,
5471 TYPE_SIZE_UNIT (vtable_entry_type)));
cb7fdde2
AO
5472
5473 switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
5474 {
5475 case ptrmemfunc_vbit_in_pfn:
cb7fdde2
AO
5476 *pfn = fold (build (PLUS_EXPR, integer_type_node, *pfn,
5477 integer_one_node));
5478 break;
5479
5480 case ptrmemfunc_vbit_in_delta:
5481 *delta = fold (build (LSHIFT_EXPR, TREE_TYPE (*delta),
5482 *delta, integer_one_node));
5483 *delta = fold (build (PLUS_EXPR, TREE_TYPE (*delta),
5484 *delta, integer_one_node));
5485 break;
5486
5487 default:
5488 abort ();
5489 }
5490
1f84ec23
MM
5491 *pfn = fold (build1 (NOP_EXPR, TYPE_PTRMEMFUNC_FN_TYPE (type),
5492 *pfn));
e08a8f45
MM
5493 }
5494}
8d08fdba 5495
e08a8f45
MM
5496/* Return an expression for PFN from the pointer-to-member function
5497 given by T. */
5498
5499tree
acd8e2d0 5500pfn_from_ptrmemfunc (tree t)
e08a8f45
MM
5501{
5502 if (TREE_CODE (t) == PTRMEM_CST)
5503 {
5504 tree delta;
e08a8f45 5505 tree pfn;
e08a8f45 5506
18ae7f63 5507 expand_ptrmemfunc_cst (t, &delta, &pfn);
e08a8f45
MM
5508 if (pfn)
5509 return pfn;
51c184be 5510 }
8d08fdba 5511
50ad9642 5512 return build_ptrmemfunc_access_expr (t, pfn_identifier);
8d08fdba
MS
5513}
5514
c3f08228
NS
5515/* Expression EXPR is about to be implicitly converted to TYPE. Warn
5516 if this is a potentially dangerous thing to do. Returns a possibly
5517 marked EXPR. */
5518
5519tree
acd8e2d0
NS
5520dubious_conversion_warnings (tree type, tree expr,
5521 const char *errtype, tree fndecl, int parmnum)
c3f08228 5522{
ee76b931 5523 type = non_reference (type);
55df0175 5524
0e339752 5525 /* Issue warnings about peculiar, but valid, uses of NULL. */
c3f08228
NS
5526 if (ARITHMETIC_TYPE_P (type) && expr == null_node)
5527 {
5528 if (fndecl)
33bd39a2 5529 warning ("passing NULL used for non-pointer %s %P of `%D'",
c3f08228
NS
5530 errtype, parmnum, fndecl);
5531 else
33bd39a2 5532 warning ("%s to non-pointer type `%T' from NULL", errtype, type);
c3f08228
NS
5533 }
5534
5535 /* Warn about assigning a floating-point type to an integer type. */
5536 if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
5537 && TREE_CODE (type) == INTEGER_TYPE)
5538 {
5539 if (fndecl)
33bd39a2 5540 warning ("passing `%T' for %s %P of `%D'",
c3f08228
NS
5541 TREE_TYPE (expr), errtype, parmnum, fndecl);
5542 else
33bd39a2 5543 warning ("%s to `%T' from `%T'", errtype, type, TREE_TYPE (expr));
c3f08228
NS
5544 }
5545 /* And warn about assigning a negative value to an unsigned
5546 variable. */
5547 else if (TREE_UNSIGNED (type) && TREE_CODE (type) != BOOLEAN_TYPE)
5548 {
5549 if (TREE_CODE (expr) == INTEGER_CST
5550 && TREE_NEGATED_INT (expr))
5551 {
5552 if (fndecl)
33bd39a2 5553 warning ("passing negative value `%E' for %s %P of `%D'",
c3f08228
NS
5554 expr, errtype, parmnum, fndecl);
5555 else
33bd39a2 5556 warning ("%s of negative value `%E' to `%T'",
c3f08228
NS
5557 errtype, expr, type);
5558 }
44475138 5559
e36308b0 5560 overflow_warning (expr);
44475138 5561
c3f08228
NS
5562 if (TREE_CONSTANT (expr))
5563 expr = fold (expr);
5564 }
5565 return expr;
5566}
5567
a7a64a77
MM
5568/* Convert value RHS to type TYPE as preparation for an assignment to
5569 an lvalue of type TYPE. ERRTYPE is a string to use in error
5570 messages: "assignment", "return", etc. If FNDECL is non-NULL, we
5571 are doing the conversion in order to pass the PARMNUMth argument of
5572 FNDECL. */
8d08fdba
MS
5573
5574static tree
acd8e2d0
NS
5575convert_for_assignment (tree type, tree rhs,
5576 const char *errtype, tree fndecl, int parmnum)
8d08fdba 5577{
8d08fdba 5578 register tree rhstype;
a359be75 5579 register enum tree_code coder;
8d08fdba 5580
8d08fdba
MS
5581 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
5582 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
5583 rhs = TREE_OPERAND (rhs, 0);
5584
a7a64a77
MM
5585 rhstype = TREE_TYPE (rhs);
5586 coder = TREE_CODE (rhstype);
5587
7d149679
AH
5588 if (TREE_CODE (type) == VECTOR_TYPE && coder == VECTOR_TYPE
5589 && ((*targetm.vector_opaque_p) (type)
5590 || (*targetm.vector_opaque_p) (rhstype)))
5591 return convert (type, rhs);
5592
a7a64a77 5593 if (rhs == error_mark_node || rhstype == error_mark_node)
8d08fdba 5594 return error_mark_node;
2c73f9f5 5595 if (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node)
8d08fdba
MS
5596 return error_mark_node;
5597
c3f08228 5598 rhs = dubious_conversion_warnings (type, rhs, errtype, fndecl, parmnum);
a359be75 5599
a7a64a77 5600 /* The RHS of an assignment cannot have void type. */
8d08fdba
MS
5601 if (coder == VOID_TYPE)
5602 {
8251199e 5603 error ("void value not ignored as it ought to be");
8d08fdba
MS
5604 return error_mark_node;
5605 }
8d08fdba 5606
a7a64a77
MM
5607 /* Simplify the RHS if possible. */
5608 if (TREE_CODE (rhs) == CONST_DECL)
5609 rhs = DECL_INITIAL (rhs);
c17707f1
MM
5610
5611 /* We do not use decl_constant_value here because of this case:
5612
5613 const char* const s = "s";
5614
5615 The conversion rules for a string literal are more lax than for a
5616 variable; in particular, a string literal can be converted to a
5617 "char *" but the variable "s" cannot be converted in the same
5618 way. If the conversion is allowed, the optimization should be
5619 performed while creating the converted expression. */
e1cd6e56 5620
a7a64a77
MM
5621 /* [expr.ass]
5622
5623 The expression is implicitly converted (clause _conv_) to the
72a08131
JM
5624 cv-unqualified type of the left operand.
5625
5626 We allow bad conversions here because by the time we get to this point
5627 we are committed to doing the conversion. If we end up doing a bad
5628 conversion, convert_like will complain. */
5629 if (!can_convert_arg_bad (type, rhstype, rhs))
a7a64a77 5630 {
32facac8 5631 /* When -Wno-pmf-conversions is use, we just silently allow
a7a64a77
MM
5632 conversions from pointers-to-members to plain pointers. If
5633 the conversion doesn't work, cp_convert will complain. */
5634 if (!warn_pmf2ptr
5635 && TYPE_PTR_P (type)
5636 && TYPE_PTRMEMFUNC_P (rhstype))
5637 rhs = cp_convert (strip_top_quals (type), rhs);
72a08131 5638 else
32facac8
ML
5639 {
5640 /* If the right-hand side has unknown type, then it is an
5641 overloaded function. Call instantiate_type to get error
5642 messages. */
5643 if (rhstype == unknown_type_node)
c2ea3a40 5644 instantiate_type (type, rhs, tf_error | tf_warning);
32facac8 5645 else if (fndecl)
33bd39a2 5646 error ("cannot convert `%T' to `%T' for argument `%P' to `%D'",
32facac8
ML
5647 rhstype, type, parmnum, fndecl);
5648 else
33bd39a2 5649 error ("cannot convert `%T' to `%T' in %s", rhstype, type,
32facac8
ML
5650 errtype);
5651 return error_mark_node;
5652 }
51c184be 5653 }
4143af33 5654 return perform_implicit_conversion (strip_top_quals (type), rhs);
8d08fdba
MS
5655}
5656
56ae6d77 5657/* Convert RHS to be of type TYPE.
838dfd8a 5658 If EXP is nonzero, it is the target of the initialization.
8d08fdba
MS
5659 ERRTYPE is a string to use in error messages.
5660
5661 Two major differences between the behavior of
5662 `convert_for_assignment' and `convert_for_initialization'
5663 are that references are bashed in the former, while
5664 copied in the latter, and aggregates are assigned in
5665 the former (operator=) while initialized in the
5666 latter (X(X&)).
5667
5668 If using constructor make sure no conversion operator exists, if one does
878cd289
MS
5669 exist, an ambiguity exists.
5670
5671 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
e92cc029 5672
8d08fdba 5673tree
acd8e2d0
NS
5674convert_for_initialization (tree exp, tree type, tree rhs, int flags,
5675 const char *errtype, tree fndecl, int parmnum)
8d08fdba
MS
5676{
5677 register enum tree_code codel = TREE_CODE (type);
5678 register tree rhstype;
5679 register enum tree_code coder;
5680
5681 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5682 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
5683 if (TREE_CODE (rhs) == NOP_EXPR
a0a33927
MS
5684 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
5685 && codel != REFERENCE_TYPE)
8d08fdba
MS
5686 rhs = TREE_OPERAND (rhs, 0);
5687
5688 if (rhs == error_mark_node
5689 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
5690 return error_mark_node;
5691
8ccc31eb
MS
5692 if (TREE_CODE (TREE_TYPE (rhs)) == REFERENCE_TYPE)
5693 rhs = convert_from_reference (rhs);
5694
8d08fdba 5695 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
8ccc31eb
MS
5696 && TREE_CODE (type) != ARRAY_TYPE
5697 && (TREE_CODE (type) != REFERENCE_TYPE
5698 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
59e76fc6
JM
5699 || (TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
5700 && (TREE_CODE (type) != REFERENCE_TYPE
5701 || TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE))
8d08fdba 5702 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
0a72704b 5703 rhs = decay_conversion (rhs);
8d08fdba
MS
5704
5705 rhstype = TREE_TYPE (rhs);
5706 coder = TREE_CODE (rhstype);
5707
8d08fdba
MS
5708 if (coder == ERROR_MARK)
5709 return error_mark_node;
5710
8d08fdba
MS
5711 /* We accept references to incomplete types, so we can
5712 return here before checking if RHS is of complete type. */
5713
5714 if (codel == REFERENCE_TYPE)
2986ae00
MS
5715 {
5716 /* This should eventually happen in convert_arguments. */
a703fb38 5717 int savew = 0, savee = 0;
2986ae00
MS
5718
5719 if (fndecl)
5720 savew = warningcount, savee = errorcount;
7e99327d
MM
5721 rhs = initialize_reference (type, rhs, /*decl=*/NULL_TREE,
5722 /*cleanup=*/NULL);
2986ae00
MS
5723 if (fndecl)
5724 {
5725 if (warningcount > savew)
8251199e 5726 cp_warning_at ("in passing argument %P of `%+D'", parmnum, fndecl);
2986ae00 5727 else if (errorcount > savee)
8251199e 5728 cp_error_at ("in passing argument %P of `%+D'", parmnum, fndecl);
2986ae00
MS
5729 }
5730 return rhs;
5731 }
8d08fdba 5732
66543169
NS
5733 if (exp != 0)
5734 exp = require_complete_type (exp);
8d08fdba
MS
5735 if (exp == error_mark_node)
5736 return error_mark_node;
5737
ee76b931 5738 rhstype = non_reference (rhstype);
8d08fdba 5739
6467930b
MS
5740 type = complete_type (type);
5741
7bae46f4 5742 if (IS_AGGR_TYPE (type))
277294d7 5743 return ocp_convert (type, rhs, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
8d08fdba 5744
8d08fdba
MS
5745 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum);
5746}
5747\f
5748/* Expand an ASM statement with operands, handling output operands
5749 that are not variables or INDIRECT_REFS by transforming such
5750 cases into cases that expand_asm_operands can handle.
5751
5752 Arguments are same as for expand_asm_operands.
5753
5754 We don't do default conversions on all inputs, because it can screw
5755 up operands that are expected to be in memory. */
5756
5757void
acd8e2d0 5758c_expand_asm_operands (tree string, tree outputs, tree inputs, tree clobbers,
177560b2 5759 int vol, location_t locus)
8d08fdba
MS
5760{
5761 int noutputs = list_length (outputs);
5762 register int i;
5763 /* o[I] is the place that output number I should be written. */
c68b0a84 5764 register tree *o = alloca (noutputs * sizeof (tree));
8d08fdba
MS
5765 register tree tail;
5766
5767 /* Record the contents of OUTPUTS before it is modified. */
5768 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
5769 o[i] = TREE_VALUE (tail);
5770
5771 /* Generate the ASM_OPERANDS insn;
5772 store into the TREE_VALUEs of OUTPUTS some trees for
5773 where the values were actually stored. */
177560b2 5774 expand_asm_operands (string, outputs, inputs, clobbers, vol, locus);
8d08fdba
MS
5775
5776 /* Copy all the intermediate outputs into the specified outputs. */
5777 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
5778 {
5779 if (o[i] != TREE_VALUE (tail))
5780 {
5781 expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)),
9f617717 5782 const0_rtx, VOIDmode, EXPAND_NORMAL);
8d08fdba 5783 free_temp_slots ();
713f0303
RH
5784
5785 /* Restore the original value so that it's correct the next
5786 time we expand this function. */
5787 TREE_VALUE (tail) = o[i];
8d08fdba
MS
5788 }
5789 /* Detect modification of read-only values.
5790 (Otherwise done by build_modify_expr.) */
5791 else
5792 {
5793 tree type = TREE_TYPE (o[i]);
28c56d25
NS
5794 if (type != error_mark_node
5795 && (CP_TYPE_CONST_P (type)
5552b43c 5796 || (CLASS_TYPE_P (type) && C_TYPE_FIELDS_READONLY (type))))
8d08fdba
MS
5797 readonly_error (o[i], "modification by `asm'", 1);
5798 }
5799 }
5800
5801 /* Those MODIFY_EXPRs could do autoincrements. */
5802 emit_queue ();
5803}
5804\f
efee38a9 5805/* If RETVAL is the address of, or a reference to, a local variable or
34cd5ae7 5806 temporary give an appropriate warning. */
8d08fdba 5807
efee38a9 5808static void
acd8e2d0 5809maybe_warn_about_returning_address_of_local (tree retval)
efee38a9
MM
5810{
5811 tree valtype = TREE_TYPE (DECL_RESULT (current_function_decl));
2bfa73e4 5812 tree whats_returned = retval;
8d08fdba 5813
2bfa73e4 5814 for (;;)
efee38a9 5815 {
efee38a9 5816 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
2bfa73e4
BS
5817 whats_returned = TREE_OPERAND (whats_returned, 1);
5818 else if (TREE_CODE (whats_returned) == CONVERT_EXPR
5819 || TREE_CODE (whats_returned) == NON_LVALUE_EXPR
5820 || TREE_CODE (whats_returned) == NOP_EXPR)
efee38a9 5821 whats_returned = TREE_OPERAND (whats_returned, 0);
2bfa73e4
BS
5822 else
5823 break;
5824 }
5825
5826 if (TREE_CODE (whats_returned) != ADDR_EXPR)
5827 return;
5828 whats_returned = TREE_OPERAND (whats_returned, 0);
5829
5830 if (TREE_CODE (valtype) == REFERENCE_TYPE)
5831 {
5832 if (TREE_CODE (whats_returned) == AGGR_INIT_EXPR
5833 || TREE_CODE (whats_returned) == TARGET_EXPR)
efee38a9 5834 {
2bfa73e4
BS
5835 warning ("returning reference to temporary");
5836 return;
efee38a9 5837 }
efee38a9 5838 if (TREE_CODE (whats_returned) == VAR_DECL
2bfa73e4
BS
5839 && DECL_NAME (whats_returned)
5840 && TEMP_NAME_P (DECL_NAME (whats_returned)))
efee38a9 5841 {
2bfa73e4
BS
5842 warning ("reference to non-lvalue returned");
5843 return;
efee38a9
MM
5844 }
5845 }
efee38a9 5846
2bfa73e4
BS
5847 if (TREE_CODE (whats_returned) == VAR_DECL
5848 && DECL_NAME (whats_returned)
5849 && DECL_FUNCTION_SCOPE_P (whats_returned)
5850 && !(TREE_STATIC (whats_returned)
5851 || TREE_PUBLIC (whats_returned)))
5852 {
5853 if (TREE_CODE (valtype) == REFERENCE_TYPE)
5854 cp_warning_at ("reference to local variable `%D' returned",
5855 whats_returned);
5856 else
efee38a9
MM
5857 cp_warning_at ("address of local variable `%D' returned",
5858 whats_returned);
2bfa73e4 5859 return;
efee38a9
MM
5860 }
5861}
5862
0e339752 5863/* Check that returning RETVAL from the current function is valid.
efee38a9
MM
5864 Return an expression explicitly showing all conversions required to
5865 change RETVAL into the function return type, and to assign it to
5866 the DECL_RESULT for the function. */
5867
5868tree
acd8e2d0 5869check_return_expr (tree retval)
8d08fdba 5870{
efee38a9
MM
5871 tree result;
5872 /* The type actually returned by the function, after any
5873 promotions. */
5874 tree valtype;
5875 int fn_returns_value_p;
5876
5877 /* A `volatile' function is one that isn't supposed to return, ever.
5878 (This is a G++ extension, used to get better code for functions
5879 that call the `volatile' function.) */
8d08fdba 5880 if (TREE_THIS_VOLATILE (current_function_decl))
8251199e 5881 warning ("function declared `noreturn' has a `return' statement");
8d08fdba 5882
efee38a9 5883 /* Check for various simple errors. */
a0de9d20 5884 if (DECL_DESTRUCTOR_P (current_function_decl))
8d08fdba 5885 {
1c2c08a5 5886 if (retval)
8251199e 5887 error ("returning a value from a destructor");
efee38a9 5888 return NULL_TREE;
1c2c08a5 5889 }
90418208 5890 else if (DECL_CONSTRUCTOR_P (current_function_decl))
0dde4175 5891 {
90418208
JM
5892 if (in_function_try_handler)
5893 /* If a return statement appears in a handler of the
c6002625 5894 function-try-block of a constructor, the program is ill-formed. */
90418208
JM
5895 error ("cannot return from a handler of a function-try-block of a constructor");
5896 else if (retval)
5897 /* You can't return a value from a constructor. */
5898 error ("returning a value from a constructor");
5899 return NULL_TREE;
efee38a9 5900 }
efee38a9 5901
efc7052d
JM
5902 if (processing_template_decl)
5903 {
5904 current_function_returns_value = 1;
5905 return retval;
5906 }
5907
efee38a9
MM
5908 /* When no explicit return-value is given in a function with a named
5909 return value, the named return value is used. */
5910 result = DECL_RESULT (current_function_decl);
5911 valtype = TREE_TYPE (result);
5912 my_friendly_assert (valtype != NULL_TREE, 19990924);
b72801e2 5913 fn_returns_value_p = !VOID_TYPE_P (valtype);
efee38a9
MM
5914 if (!retval && DECL_NAME (result) && fn_returns_value_p)
5915 retval = result;
5916
5917 /* Check for a return statement with no return value in a function
5918 that's supposed to return a value. */
5919 if (!retval && fn_returns_value_p)
5920 {
b0e3f7ec 5921 pedwarn ("return-statement with no value, in function returning '%T'",
c8a209ca 5922 valtype);
efee38a9
MM
5923 /* Clear this, so finish_function won't say that we reach the
5924 end of a non-void function (which we don't, we gave a
5925 return!). */
5926 current_function_returns_null = 0;
5927 }
5928 /* Check for a return statement with a value in a function that
5929 isn't supposed to return a value. */
5930 else if (retval && !fn_returns_value_p)
5931 {
b72801e2 5932 if (VOID_TYPE_P (TREE_TYPE (retval)))
efee38a9
MM
5933 /* You can return a `void' value from a function of `void'
5934 type. In that case, we have to evaluate the expression for
5935 its side-effects. */
5936 finish_expr_stmt (retval);
5937 else
b0e3f7ec
GDR
5938 pedwarn ("return-statement with a value, in function "
5939 "returning 'void'");
efee38a9
MM
5940
5941 current_function_returns_null = 1;
5942
5943 /* There's really no value to return, after all. */
5944 return NULL_TREE;
0dde4175 5945 }
efee38a9
MM
5946 else if (!retval)
5947 /* Remember that this function can sometimes return without a
5948 value. */
5949 current_function_returns_null = 1;
90418208
JM
5950 else
5951 /* Remember that this function did return a value. */
5952 current_function_returns_value = 1;
1c2c08a5 5953
7f477e81 5954 /* Only operator new(...) throw(), can return NULL [expr.new/13]. */
596ea4e5
AS
5955 if ((DECL_OVERLOADED_OPERATOR_P (current_function_decl) == NEW_EXPR
5956 || DECL_OVERLOADED_OPERATOR_P (current_function_decl) == VEC_NEW_EXPR)
7f477e81 5957 && !TYPE_NOTHROW_P (TREE_TYPE (current_function_decl))
708cae97 5958 && ! flag_check_new
7f477e81 5959 && null_ptr_cst_p (retval))
33bd39a2 5960 warning ("`operator new' must not return NULL unless it is declared `throw()' (or -fcheck-new is in effect)");
8d08fdba 5961
824b9a4c 5962 /* Effective C++ rule 15. See also start_function. */
eb448459 5963 if (warn_ecpp
596ea4e5 5964 && DECL_NAME (current_function_decl) == ansi_assopname(NOP_EXPR)
824b9a4c 5965 && retval != current_class_ref)
33bd39a2 5966 warning ("`operator=' should return a reference to `*this'");
824b9a4c 5967
07b2f2fd
JM
5968 /* The fabled Named Return Value optimization, as per [class.copy]/15:
5969
5970 [...] For a function with a class return type, if the expression
5971 in the return statement is the name of a local object, and the cv-
5972 unqualified type of the local object is the same as the function
5973 return type, an implementation is permitted to omit creating the tem-
5974 porary object to hold the function return value [...]
5975
5976 So, if this is a value-returning function that always returns the same
5977 local variable, remember it.
0d97bf4c
JM
5978
5979 It might be nice to be more flexible, and choose the first suitable
5980 variable even if the function sometimes returns something else, but
5981 then we run the risk of clobbering the variable we chose if the other
5982 returned expression uses the chosen variable somehow. And people expect
07b2f2fd
JM
5983 this restriction, anyway. (jason 2000-11-19)
5984
5985 See finish_function, genrtl_start_function, and declare_return_variable
5986 for other pieces of this optimization. */
0d97bf4c 5987
01f9e964 5988 if (fn_returns_value_p && flag_elide_constructors)
0d97bf4c
JM
5989 {
5990 if (retval != NULL_TREE
5991 && (current_function_return_value == NULL_TREE
5992 || current_function_return_value == retval)
5993 && TREE_CODE (retval) == VAR_DECL
5994 && DECL_CONTEXT (retval) == current_function_decl
5995 && ! TREE_STATIC (retval)
01f9e964 5996 && (DECL_ALIGN (retval)
07b2f2fd
JM
5997 >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
5998 && same_type_p ((TYPE_MAIN_VARIANT
5999 (TREE_TYPE (retval))),
6000 (TYPE_MAIN_VARIANT
6001 (TREE_TYPE (TREE_TYPE (current_function_decl))))))
0d97bf4c
JM
6002 current_function_return_value = retval;
6003 else
6004 current_function_return_value = error_mark_node;
6005 }
6006
efee38a9
MM
6007 /* We don't need to do any conversions when there's nothing being
6008 returned. */
90418208
JM
6009 if (!retval || retval == error_mark_node)
6010 return retval;
efee38a9
MM
6011
6012 /* Do any required conversions. */
6013 if (retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
6014 /* No conversions are required. */
6015 ;
8d08fdba
MS
6016 else
6017 {
efee38a9 6018 /* The type the function is declared to return. */
cce2be43
JM
6019 tree functype = TREE_TYPE (TREE_TYPE (current_function_decl));
6020
6021 /* First convert the value to the function's return type, then
6022 to the type of return value's location to handle the
c6002625 6023 case that functype is smaller than the valtype. */
c1bc6829 6024 retval = convert_for_initialization
cce2be43 6025 (NULL_TREE, functype, retval, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING,
c1bc6829 6026 "return", NULL_TREE, 0);
cce2be43
JM
6027 retval = convert (valtype, retval);
6028
efee38a9 6029 /* If the conversion failed, treat this just like `return;'. */
691c003d 6030 if (retval == error_mark_node)
90418208 6031 return retval;
02531345 6032 /* We can't initialize a register from a AGGR_INIT_EXPR. */
c1bc6829
JM
6033 else if (! current_function_returns_struct
6034 && TREE_CODE (retval) == TARGET_EXPR
02531345 6035 && TREE_CODE (TREE_OPERAND (retval, 1)) == AGGR_INIT_EXPR)
c1bc6829
JM
6036 retval = build (COMPOUND_EXPR, TREE_TYPE (retval), retval,
6037 TREE_OPERAND (retval, 0));
efee38a9
MM
6038 else
6039 maybe_warn_about_returning_address_of_local (retval);
8d08fdba 6040 }
efee38a9
MM
6041
6042 /* Actually copy the value returned into the appropriate location. */
691c003d 6043 if (retval && retval != result)
c557501d 6044 retval = build (INIT_EXPR, TREE_TYPE (result), result, retval);
b88c08b6 6045
efee38a9
MM
6046 return retval;
6047}
6048
8d08fdba 6049\f
838dfd8a 6050/* Returns nonzero if the pointer-type FROM can be converted to the
ceab47eb 6051 pointer-type TO via a qualification conversion. If CONSTP is -1,
838dfd8a 6052 then we return nonzero if the pointers are similar, and the
ceab47eb
MM
6053 cv-qualification signature of FROM is a proper subset of that of TO.
6054
6055 If CONSTP is positive, then all outer pointers have been
6056 const-qualified. */
e92cc029 6057
bd6dd845 6058static int
acd8e2d0 6059comp_ptr_ttypes_real (tree to, tree from, int constp)
a0a33927 6060{
a5ac359a 6061 bool to_more_cv_qualified = false;
ceab47eb 6062
a0a33927
MS
6063 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
6064 {
6065 if (TREE_CODE (to) != TREE_CODE (from))
6066 return 0;
6067
d11ad92e 6068 if (TREE_CODE (from) == OFFSET_TYPE
b7a78333
MM
6069 && !same_type_p (TYPE_OFFSET_BASETYPE (from),
6070 TYPE_OFFSET_BASETYPE (to)))
6071 return 0;
d11ad92e 6072
f30432d7
MS
6073 /* Const and volatile mean something different for function types,
6074 so the usual checks are not appropriate. */
6075 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
6076 {
91063b51 6077 if (!at_least_as_qualified_p (to, from))
02020185 6078 return 0;
a0a33927 6079
91063b51 6080 if (!at_least_as_qualified_p (from, to))
02020185 6081 {
ceab47eb
MM
6082 if (constp == 0)
6083 return 0;
a5ac359a 6084 to_more_cv_qualified = true;
ceab47eb
MM
6085 }
6086
6087 if (constp > 0)
6088 constp &= TYPE_READONLY (to);
f30432d7 6089 }
a0a33927 6090
ae0b7dfc 6091 if (TREE_CODE (to) != POINTER_TYPE && !TYPE_PTRMEM_P (to))
8de9bb0e
NS
6092 return ((constp >= 0 || to_more_cv_qualified)
6093 && same_type_ignoring_top_level_qualifiers_p (to, from));
a0a33927
MS
6094 }
6095}
6096
8de9bb0e
NS
6097/* When comparing, say, char ** to char const **, this function takes
6098 the 'char *' and 'char const *'. Do not pass non-pointer/reference
6099 types to this function. */
e92cc029 6100
a0a33927 6101int
acd8e2d0 6102comp_ptr_ttypes (tree to, tree from)
a0a33927
MS
6103{
6104 return comp_ptr_ttypes_real (to, from, 1);
6105}
d11ad92e
MS
6106
6107/* Returns 1 if to and from are (possibly multi-level) pointers to the same
6108 type or inheritance-related types, regardless of cv-quals. */
6109
6110int
acd8e2d0 6111ptr_reasonably_similar (tree to, tree from)
d11ad92e
MS
6112{
6113 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
6114 {
72a08131
JM
6115 /* Any target type is similar enough to void. */
6116 if (TREE_CODE (to) == VOID_TYPE
6117 || TREE_CODE (from) == VOID_TYPE)
6118 return 1;
6119
d11ad92e
MS
6120 if (TREE_CODE (to) != TREE_CODE (from))
6121 return 0;
6122
6123 if (TREE_CODE (from) == OFFSET_TYPE
6124 && comptypes (TYPE_OFFSET_BASETYPE (to),
3bfdc719 6125 TYPE_OFFSET_BASETYPE (from),
c8a209ca 6126 COMPARE_BASE | COMPARE_DERIVED))
d11ad92e
MS
6127 continue;
6128
8a2b77e7
JM
6129 if (TREE_CODE (to) == INTEGER_TYPE
6130 && TYPE_PRECISION (to) == TYPE_PRECISION (from))
6131 return 1;
6132
6133 if (TREE_CODE (to) == FUNCTION_TYPE)
6134 return 1;
6135
d11ad92e
MS
6136 if (TREE_CODE (to) != POINTER_TYPE)
6137 return comptypes
3bfdc719 6138 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from),
c8a209ca 6139 COMPARE_BASE | COMPARE_DERIVED);
d11ad92e
MS
6140 }
6141}
c11b6f21
MS
6142
6143/* Like comp_ptr_ttypes, for const_cast. */
6144
bd6dd845 6145static int
acd8e2d0 6146comp_ptr_ttypes_const (tree to, tree from)
c11b6f21
MS
6147{
6148 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
6149 {
6150 if (TREE_CODE (to) != TREE_CODE (from))
6151 return 0;
6152
6153 if (TREE_CODE (from) == OFFSET_TYPE
3bfdc719
MM
6154 && same_type_p (TYPE_OFFSET_BASETYPE (from),
6155 TYPE_OFFSET_BASETYPE (to)))
c11b6f21
MS
6156 continue;
6157
6158 if (TREE_CODE (to) != POINTER_TYPE)
9edc3913 6159 return same_type_ignoring_top_level_qualifiers_p (to, from);
c11b6f21
MS
6160 }
6161}
6162
89d684bb
BM
6163/* Returns the type qualifiers for this type, including the qualifiers on the
6164 elements for an array type. */
27778b73
MM
6165
6166int
acd8e2d0 6167cp_type_quals (tree type)
27778b73 6168{
38da6039 6169 type = strip_array_types (type);
328de7c2
MM
6170 if (type == error_mark_node)
6171 return TYPE_UNQUALIFIED;
38da6039 6172 return TYPE_QUALS (type);
91063b51 6173}
a7a7710d 6174
838dfd8a 6175/* Returns nonzero if the TYPE contains a mutable member */
a7a7710d 6176
acd8e2d0
NS
6177bool
6178cp_has_mutable_p (tree type)
a7a7710d 6179{
38da6039 6180 type = strip_array_types (type);
a7a7710d
NS
6181
6182 return CLASS_TYPE_P (type) && CLASSTYPE_HAS_MUTABLE (type);
6183}
af7b9902
MM
6184
6185/* Subroutine of casts_away_constness. Make T1 and T2 point at
6186 exemplar types such that casting T1 to T2 is casting away castness
6187 if and only if there is no implicit conversion from T1 to T2. */
6188
6189static void
acd8e2d0 6190casts_away_constness_r (tree *t1, tree *t2)
af7b9902
MM
6191{
6192 int quals1;
6193 int quals2;
6194
6195 /* [expr.const.cast]
6196
6197 For multi-level pointer to members and multi-level mixed pointers
6198 and pointers to members (conv.qual), the "member" aspect of a
6199 pointer to member level is ignored when determining if a const
6200 cv-qualifier has been cast away. */
6201 if (TYPE_PTRMEM_P (*t1))
a5ac359a 6202 *t1 = build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (*t1));
af7b9902 6203 if (TYPE_PTRMEM_P (*t2))
a5ac359a 6204 *t2 = build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (*t2));
af7b9902
MM
6205
6206 /* [expr.const.cast]
6207
6208 For two pointer types:
6209
6210 X1 is T1cv1,1 * ... cv1,N * where T1 is not a pointer type
6211 X2 is T2cv2,1 * ... cv2,M * where T2 is not a pointer type
6212 K is min(N,M)
6213
6214 casting from X1 to X2 casts away constness if, for a non-pointer
6215 type T there does not exist an implicit conversion (clause
6216 _conv_) from:
6217
6218 Tcv1,(N-K+1) * cv1,(N-K+2) * ... cv1,N *
6219
6220 to
6221
6222 Tcv2,(M-K+1) * cv2,(M-K+2) * ... cv2,M *. */
6223
6224 if (TREE_CODE (*t1) != POINTER_TYPE
6225 || TREE_CODE (*t2) != POINTER_TYPE)
6226 {
6227 *t1 = cp_build_qualified_type (void_type_node,
89d684bb 6228 cp_type_quals (*t1));
af7b9902 6229 *t2 = cp_build_qualified_type (void_type_node,
89d684bb 6230 cp_type_quals (*t2));
af7b9902
MM
6231 return;
6232 }
6233
89d684bb
BM
6234 quals1 = cp_type_quals (*t1);
6235 quals2 = cp_type_quals (*t2);
af7b9902
MM
6236 *t1 = TREE_TYPE (*t1);
6237 *t2 = TREE_TYPE (*t2);
6238 casts_away_constness_r (t1, t2);
6239 *t1 = build_pointer_type (*t1);
6240 *t2 = build_pointer_type (*t2);
6241 *t1 = cp_build_qualified_type (*t1, quals1);
6242 *t2 = cp_build_qualified_type (*t2, quals2);
6243}
6244
838dfd8a 6245/* Returns nonzero if casting from TYPE1 to TYPE2 casts away
af7b9902
MM
6246 constness. */
6247
acd8e2d0
NS
6248static bool
6249casts_away_constness (tree t1, tree t2)
af7b9902
MM
6250{
6251 if (TREE_CODE (t2) == REFERENCE_TYPE)
6252 {
6253 /* [expr.const.cast]
6254
6255 Casting from an lvalue of type T1 to an lvalue of type T2
6256 using a reference cast casts away constness if a cast from an
6257 rvalue of type "pointer to T1" to the type "pointer to T2"
6258 casts away constness. */
acd8e2d0 6259 t1 = (TREE_CODE (t1) == REFERENCE_TYPE ? TREE_TYPE (t1) : t1);
af7b9902
MM
6260 return casts_away_constness (build_pointer_type (t1),
6261 build_pointer_type (TREE_TYPE (t2)));
6262 }
6263
6264 if (TYPE_PTRMEM_P (t1) && TYPE_PTRMEM_P (t2))
6265 /* [expr.const.cast]
6266
6267 Casting from an rvalue of type "pointer to data member of X
6268 of type T1" to the type "pointer to data member of Y of type
6269 T2" casts away constness if a cast from an rvalue of type
aba649ba 6270 "pointer to T1" to the type "pointer to T2" casts away
af7b9902 6271 constness. */
3e0b4710 6272 return casts_away_constness
a5ac359a
MM
6273 (build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t1)),
6274 build_pointer_type (TYPE_PTRMEM_POINTED_TO_TYPE (t2)));
af7b9902
MM
6275
6276 /* Casting away constness is only something that makes sense for
6277 pointer or reference types. */
6278 if (TREE_CODE (t1) != POINTER_TYPE
6279 || TREE_CODE (t2) != POINTER_TYPE)
acd8e2d0 6280 return false;
af7b9902
MM
6281
6282 /* Top-level qualifiers don't matter. */
6283 t1 = TYPE_MAIN_VARIANT (t1);
6284 t2 = TYPE_MAIN_VARIANT (t2);
6285 casts_away_constness_r (&t1, &t2);
6286 if (!can_convert (t2, t1))
acd8e2d0 6287 return true;
af7b9902 6288
acd8e2d0 6289 return false;
af7b9902 6290}
6816f040 6291
ee76b931
MM
6292/* If T is a REFERENCE_TYPE return the type to which T refers.
6293 Otherwise, return T itself. */
6294
6295tree
6296non_reference (tree t)
6297{
6298 if (TREE_CODE (t) == REFERENCE_TYPE)
6299 t = TREE_TYPE (t);
6300 return t;
6301}