Import final gcc2 snapshot (990109)
[official-gcc.git] / gcc / cp / typeck.c
blobe0ec3ffa3b4a4b2336747f247bf53a65d5f0e0cc
1 /* Build expressions with type checking for C++ compiler.
2 Copyright (C) 1987, 88, 89, 92-97, 1998 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* This file is part of the C++ front end.
24 It contains routines to build C++ expressions given their operands,
25 including computing the types of the result, C and C++ specific error
26 checks, and some optimization.
28 There are also routines to build RETURN_STMT nodes and CASE_STMT nodes,
29 and to process initializations in declarations (since they work
30 like a strange sort of assignment). */
32 #include "config.h"
33 #include <stdio.h>
34 #include "tree.h"
35 #include "rtl.h"
36 #include "cp-tree.h"
37 #include "flags.h"
38 #include "output.h"
39 #include "expr.h"
41 #ifdef HAVE_STRING_H
42 #include <string.h>
43 #endif
45 extern void compiler_error ();
47 static tree convert_for_assignment PROTO((tree, tree, char*, tree,
48 int));
49 static tree pointer_int_sum PROTO((enum tree_code, tree, tree));
50 static tree rationalize_conditional_expr PROTO((enum tree_code, tree));
51 static int comp_target_parms PROTO((tree, tree, int));
52 static int comp_ptr_ttypes_real PROTO((tree, tree, int));
53 static int comp_ptr_ttypes_const PROTO((tree, tree));
54 static int comp_ptr_ttypes_reinterpret PROTO((tree, tree));
55 static int comp_array_types PROTO((int (*) (tree, tree, int), tree,
56 tree, int));
57 static tree build_ptrmemfunc1 PROTO((tree, tree, tree, tree, tree));
58 static tree common_base_type PROTO((tree, tree));
59 static tree convert_sequence PROTO((tree, tree));
60 static tree lookup_anon_field PROTO((tree, tree));
61 static tree pointer_diff PROTO((tree, tree));
62 static tree qualify_type PROTO((tree, tree));
63 static tree expand_target_expr PROTO((tree));
64 static tree get_delta_difference PROTO((tree, tree, int));
66 /* Return the target type of TYPE, which meas return T for:
67 T*, T&, T[], T (...), and otherwise, just T. */
69 tree
70 target_type (type)
71 tree type;
73 if (TREE_CODE (type) == REFERENCE_TYPE)
74 type = TREE_TYPE (type);
75 while (TREE_CODE (type) == POINTER_TYPE
76 || TREE_CODE (type) == ARRAY_TYPE
77 || TREE_CODE (type) == FUNCTION_TYPE
78 || TREE_CODE (type) == METHOD_TYPE
79 || TREE_CODE (type) == OFFSET_TYPE)
80 type = TREE_TYPE (type);
81 return type;
84 /* Do `exp = require_complete_type (exp);' to make sure exp
85 does not have an incomplete type. (That includes void types.) */
87 tree
88 require_complete_type (value)
89 tree value;
91 tree type;
93 if (processing_template_decl)
94 return value;
96 type = TREE_TYPE (value);
98 /* First, detect a valid value with a complete type. */
99 if (TYPE_SIZE (type) != 0
100 && type != void_type_node
101 && ! (TYPE_LANG_SPECIFIC (type)
102 && (IS_SIGNATURE_POINTER (type) || IS_SIGNATURE_REFERENCE (type))
103 && TYPE_SIZE (SIGNATURE_TYPE (type)) == 0))
104 return value;
106 /* If we see X::Y, we build an OFFSET_TYPE which has
107 not been laid out. Try to avoid an error by interpreting
108 it as this->X::Y, if reasonable. */
109 if (TREE_CODE (value) == OFFSET_REF
110 && current_class_ref != 0
111 && TREE_OPERAND (value, 0) == current_class_ref)
113 tree base, member = TREE_OPERAND (value, 1);
114 tree basetype = TYPE_OFFSET_BASETYPE (type);
115 my_friendly_assert (TREE_CODE (member) == FIELD_DECL, 305);
116 base = convert_pointer_to (basetype, current_class_ptr);
117 value = build (COMPONENT_REF, TREE_TYPE (member),
118 build_indirect_ref (base, NULL_PTR), member);
119 return require_complete_type (value);
122 if (IS_AGGR_TYPE (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
124 instantiate_class_template (TYPE_MAIN_VARIANT (type));
125 if (TYPE_SIZE (type) != 0)
126 return value;
129 incomplete_type_error (value, type);
130 return error_mark_node;
133 tree
134 complete_type (type)
135 tree type;
137 if (type == error_mark_node || TYPE_SIZE (type) != NULL_TREE)
139 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
141 tree t = complete_type (TREE_TYPE (type));
142 if (TYPE_SIZE (t) != NULL_TREE && ! processing_template_decl)
143 layout_type (type);
144 TYPE_NEEDS_CONSTRUCTING (type)
145 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (t));
146 TYPE_NEEDS_DESTRUCTOR (type)
147 = TYPE_NEEDS_DESTRUCTOR (TYPE_MAIN_VARIANT (t));
149 else if (IS_AGGR_TYPE (type) && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
150 instantiate_class_template (TYPE_MAIN_VARIANT (type));
152 return type;
155 /* Return truthvalue of whether type of EXP is instantiated. */
158 type_unknown_p (exp)
159 tree exp;
161 return (TREE_CODE (exp) == TREE_LIST
162 || TREE_TYPE (exp) == unknown_type_node
163 || (TREE_CODE (TREE_TYPE (exp)) == OFFSET_TYPE
164 && TREE_TYPE (TREE_TYPE (exp)) == unknown_type_node));
167 /* Return truthvalue of whether T is function (or pfn) type. */
170 fntype_p (t)
171 tree t;
173 return (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE
174 || (TREE_CODE (t) == POINTER_TYPE
175 && (TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE
176 || TREE_CODE (TREE_TYPE (t)) == METHOD_TYPE)));
179 /* Do `exp = require_instantiated_type (type, exp);' to make sure EXP
180 does not have an uninstantiated type.
181 TYPE is type to instantiate with, if uninstantiated. */
183 tree
184 require_instantiated_type (type, exp, errval)
185 tree type, exp, errval;
187 if (TREE_TYPE (exp) == NULL_TREE)
189 error ("argument list may not have an initializer list");
190 return errval;
193 if (TREE_TYPE (exp) == unknown_type_node
194 || (TREE_CODE (TREE_TYPE (exp)) == OFFSET_TYPE
195 && TREE_TYPE (TREE_TYPE (exp)) == unknown_type_node))
197 exp = instantiate_type (type, exp, 1);
198 if (TREE_TYPE (exp) == error_mark_node)
199 return errval;
201 return exp;
204 /* Return a variant of TYPE which has all the type qualifiers of LIKE
205 as well as those of TYPE. */
207 static tree
208 qualify_type (type, like)
209 tree type, like;
211 int constflag = TYPE_READONLY (type) || TYPE_READONLY (like);
212 int volflag = TYPE_VOLATILE (type) || TYPE_VOLATILE (like);
213 /* @@ Must do member pointers here. */
214 return cp_build_type_variant (type, constflag, volflag);
217 /* Return the common type of two parameter lists.
218 We assume that comptypes has already been done and returned 1;
219 if that isn't so, this may crash.
221 As an optimization, free the space we allocate if the parameter
222 lists are already common. */
224 tree
225 commonparms (p1, p2)
226 tree p1, p2;
228 tree oldargs = p1, newargs, n;
229 int i, len;
230 int any_change = 0;
231 char *first_obj = (char *) oballoc (0);
233 len = list_length (p1);
234 newargs = tree_last (p1);
236 if (newargs == void_list_node)
237 i = 1;
238 else
240 i = 0;
241 newargs = 0;
244 for (; i < len; i++)
245 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
247 n = newargs;
249 for (i = 0; p1;
250 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n), i++)
252 if (TREE_PURPOSE (p1) && !TREE_PURPOSE (p2))
254 TREE_PURPOSE (n) = TREE_PURPOSE (p1);
255 any_change = 1;
257 else if (! TREE_PURPOSE (p1))
259 if (TREE_PURPOSE (p2))
261 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
262 any_change = 1;
265 else
267 if (1 != simple_cst_equal (TREE_PURPOSE (p1), TREE_PURPOSE (p2)))
268 any_change = 1;
269 TREE_PURPOSE (n) = TREE_PURPOSE (p2);
271 if (TREE_VALUE (p1) != TREE_VALUE (p2))
273 any_change = 1;
274 TREE_VALUE (n) = common_type (TREE_VALUE (p1), TREE_VALUE (p2));
276 else
277 TREE_VALUE (n) = TREE_VALUE (p1);
279 if (! any_change)
281 obfree (first_obj);
282 return oldargs;
285 return newargs;
288 /* Return the common type of two types.
289 We assume that comptypes has already been done and returned 1;
290 if that isn't so, this may crash.
292 This is the type for the result of most arithmetic operations
293 if the operands have the given two types.
295 We do not deal with enumeral types here because they have already been
296 converted to integer types. */
298 tree
299 common_type (t1, t2)
300 tree t1, t2;
302 register enum tree_code code1;
303 register enum tree_code code2;
304 tree attributes;
306 /* Save time if the two types are the same. */
308 if (t1 == t2) return t1;
310 /* If one type is nonsense, use the other. */
311 if (t1 == error_mark_node)
312 return t2;
313 if (t2 == error_mark_node)
314 return t1;
316 /* Merge the attributes */
318 { register tree a1, a2;
319 a1 = TYPE_ATTRIBUTES (t1);
320 a2 = TYPE_ATTRIBUTES (t2);
322 /* Either one unset? Take the set one. */
324 if (!(attributes = a1))
325 attributes = a2;
327 /* One that completely contains the other? Take it. */
329 else if (a2 && !attribute_list_contained (a1, a2))
330 if (attribute_list_contained (a2, a1))
331 attributes = a2;
332 else
334 /* Pick the longest list, and hang on the other list. */
335 /* ??? For the moment we punt on the issue of attrs with args. */
337 if (list_length (a1) < list_length (a2))
338 attributes = a2, a2 = a1;
340 for (; a2; a2 = TREE_CHAIN (a2))
341 if (lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
342 attributes) == NULL_TREE)
344 a1 = copy_node (a2);
345 TREE_CHAIN (a1) = attributes;
346 attributes = a1;
351 /* Treat an enum type as the unsigned integer type of the same width. */
353 if (TREE_CODE (t1) == ENUMERAL_TYPE)
354 t1 = type_for_size (TYPE_PRECISION (t1), 1);
355 if (TREE_CODE (t2) == ENUMERAL_TYPE)
356 t2 = type_for_size (TYPE_PRECISION (t2), 1);
358 if (TYPE_PTRMEMFUNC_P (t1))
359 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
360 if (TYPE_PTRMEMFUNC_P (t2))
361 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
363 code1 = TREE_CODE (t1);
364 code2 = TREE_CODE (t2);
366 /* If one type is complex, form the common type of the non-complex
367 components, then make that complex. Use T1 or T2 if it is the
368 required type. */
369 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
371 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
372 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
373 tree subtype = common_type (subtype1, subtype2);
375 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
376 return build_type_attribute_variant (t1, attributes);
377 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
378 return build_type_attribute_variant (t2, attributes);
379 else
380 return build_type_attribute_variant (build_complex_type (subtype),
381 attributes);
384 switch (code1)
386 case INTEGER_TYPE:
387 case REAL_TYPE:
388 /* If only one is real, use it as the result. */
390 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
391 return build_type_attribute_variant (t1, attributes);
393 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
394 return build_type_attribute_variant (t2, attributes);
396 /* Both real or both integers; use the one with greater precision. */
398 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
399 return build_type_attribute_variant (t1, attributes);
400 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
401 return build_type_attribute_variant (t2, attributes);
403 /* Same precision. Prefer longs to ints even when same size. */
405 if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
406 || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
407 return build_type_attribute_variant (long_unsigned_type_node,
408 attributes);
410 if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
411 || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
413 /* But preserve unsignedness from the other type,
414 since long cannot hold all the values of an unsigned int. */
415 if (TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
416 t1 = long_unsigned_type_node;
417 else
418 t1 = long_integer_type_node;
419 return build_type_attribute_variant (t1, attributes);
422 if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
423 || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
424 return build_type_attribute_variant (long_double_type_node,
425 attributes);
427 /* Otherwise prefer the unsigned one. */
429 if (TREE_UNSIGNED (t1))
430 return build_type_attribute_variant (t1, attributes);
431 else
432 return build_type_attribute_variant (t2, attributes);
434 case POINTER_TYPE:
435 case REFERENCE_TYPE:
436 /* For two pointers, do this recursively on the target type,
437 and combine the qualifiers of the two types' targets. */
438 /* This code was turned off; I don't know why.
439 But ANSI C++ specifies doing this with the qualifiers.
440 So I turned it on again. */
442 tree tt1 = TYPE_MAIN_VARIANT (TREE_TYPE (t1));
443 tree tt2 = TYPE_MAIN_VARIANT (TREE_TYPE (t2));
444 int constp
445 = TYPE_READONLY (TREE_TYPE (t1)) || TYPE_READONLY (TREE_TYPE (t2));
446 int volatilep
447 = TYPE_VOLATILE (TREE_TYPE (t1)) || TYPE_VOLATILE (TREE_TYPE (t2));
448 tree target;
450 if (tt1 == tt2)
451 target = tt1;
452 else if (tt1 == void_type_node || tt2 == void_type_node)
453 target = void_type_node;
454 else if (tt1 == unknown_type_node)
455 target = tt2;
456 else if (tt2 == unknown_type_node)
457 target = tt1;
458 else
459 target = common_type (tt1, tt2);
461 target = cp_build_type_variant (target, constp, volatilep);
462 if (code1 == POINTER_TYPE)
463 t1 = build_pointer_type (target);
464 else
465 t1 = build_reference_type (target);
466 t1 = build_type_attribute_variant (t1, attributes);
468 if (TREE_CODE (target) == METHOD_TYPE)
469 t1 = build_ptrmemfunc_type (t1);
471 return t1;
474 case ARRAY_TYPE:
476 tree elt = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
477 /* Save space: see if the result is identical to one of the args. */
478 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
479 return build_type_attribute_variant (t1, attributes);
480 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
481 return build_type_attribute_variant (t2, attributes);
482 /* Merge the element types, and have a size if either arg has one. */
483 t1 = build_cplus_array_type
484 (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
485 return build_type_attribute_variant (t1, attributes);
488 case FUNCTION_TYPE:
489 /* Function types: prefer the one that specified arg types.
490 If both do, merge the arg types. Also merge the return types. */
492 tree valtype = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
493 tree p1 = TYPE_ARG_TYPES (t1);
494 tree p2 = TYPE_ARG_TYPES (t2);
495 tree rval, raises;
497 /* Save space: see if the result is identical to one of the args. */
498 if (valtype == TREE_TYPE (t1) && ! p2)
499 return build_type_attribute_variant (t1, attributes);
500 if (valtype == TREE_TYPE (t2) && ! p1)
501 return build_type_attribute_variant (t2, attributes);
503 /* Simple way if one arg fails to specify argument types. */
504 if (p1 == NULL_TREE || TREE_VALUE (p1) == void_type_node)
506 rval = build_function_type (valtype, p2);
507 if ((raises = TYPE_RAISES_EXCEPTIONS (t2)))
508 rval = build_exception_variant (rval, raises);
509 return build_type_attribute_variant (rval, attributes);
511 raises = TYPE_RAISES_EXCEPTIONS (t1);
512 if (p2 == NULL_TREE || TREE_VALUE (p2) == void_type_node)
514 rval = build_function_type (valtype, p1);
515 if (raises)
516 rval = build_exception_variant (rval, raises);
517 return build_type_attribute_variant (rval, attributes);
520 rval = build_function_type (valtype, commonparms (p1, p2));
521 rval = build_exception_variant (rval, raises);
522 return build_type_attribute_variant (rval, attributes);
525 case RECORD_TYPE:
526 case UNION_TYPE:
527 my_friendly_assert (TYPE_MAIN_VARIANT (t1) == t1
528 && TYPE_MAIN_VARIANT (t2) == t2, 306);
530 if (DERIVED_FROM_P (t1, t2) && binfo_or_else (t1, t2))
531 return build_type_attribute_variant (t1, attributes);
532 else if (binfo_or_else (t2, t1))
533 return build_type_attribute_variant (t2, attributes);
534 else
535 compiler_error ("common_type called with uncommon aggregate types");
537 case METHOD_TYPE:
538 if (TREE_CODE (TREE_TYPE (t1)) == TREE_CODE (TREE_TYPE (t2)))
540 /* Get this value the long way, since TYPE_METHOD_BASETYPE
541 is just the main variant of this. */
542 tree basetype;
543 tree raises, t3;
545 tree b1 = TYPE_OFFSET_BASETYPE (t1);
546 tree b2 = TYPE_OFFSET_BASETYPE (t2);
548 if (comptypes (b1, b2, 1)
549 || (DERIVED_FROM_P (b1, b2) && binfo_or_else (b1, b2)))
550 basetype = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t2)));
551 else
553 if (binfo_or_else (b2, b1) == NULL_TREE)
554 compiler_error ("common_type called with uncommon method types");
555 basetype = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t1)));
558 raises = TYPE_RAISES_EXCEPTIONS (t1);
560 /* If this was a member function type, get back to the
561 original type of type member function (i.e., without
562 the class instance variable up front. */
563 t1 = build_function_type (TREE_TYPE (t1), TREE_CHAIN (TYPE_ARG_TYPES (t1)));
564 t2 = build_function_type (TREE_TYPE (t2), TREE_CHAIN (TYPE_ARG_TYPES (t2)));
565 t3 = common_type (t1, t2);
566 t3 = build_cplus_method_type (basetype, TREE_TYPE (t3), TYPE_ARG_TYPES (t3));
567 t1 = build_exception_variant (t3, raises);
569 else
570 compiler_error ("common_type called with uncommon method types");
572 return build_type_attribute_variant (t1, attributes);
574 case OFFSET_TYPE:
575 if (TREE_TYPE (t1) == TREE_TYPE (t2))
577 tree b1 = TYPE_OFFSET_BASETYPE (t1);
578 tree b2 = TYPE_OFFSET_BASETYPE (t2);
580 if (comptypes (b1, b2, 1)
581 || (DERIVED_FROM_P (b1, b2) && binfo_or_else (b1, b2)))
582 return build_type_attribute_variant (t2, attributes);
583 else if (binfo_or_else (b2, b1))
584 return build_type_attribute_variant (t1, attributes);
586 compiler_error ("common_type called with uncommon member types");
588 default:
589 return build_type_attribute_variant (t1, attributes);
593 /* Return 1 if TYPE1 and TYPE2 raise the same exceptions. */
596 compexcepttypes (t1, t2)
597 tree t1, t2;
599 return TYPE_RAISES_EXCEPTIONS (t1) == TYPE_RAISES_EXCEPTIONS (t2);
602 static int
603 comp_array_types (cmp, t1, t2, strict)
604 register int (*cmp) PROTO((tree, tree, int));
605 tree t1, t2;
606 int strict;
608 tree d1 = TYPE_DOMAIN (t1);
609 tree d2 = TYPE_DOMAIN (t2);
611 /* Target types must match incl. qualifiers. */
612 if (!(TREE_TYPE (t1) == TREE_TYPE (t2)
613 || (*cmp) (TREE_TYPE (t1), TREE_TYPE (t2), strict)))
614 return 0;
616 /* Sizes must match unless one is missing or variable. */
617 if (d1 == 0 || d2 == 0 || d1 == d2
618 || TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
619 || TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
620 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST
621 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST)
622 return 1;
624 return ((TREE_INT_CST_LOW (TYPE_MIN_VALUE (d1))
625 == TREE_INT_CST_LOW (TYPE_MIN_VALUE (d2)))
626 && (TREE_INT_CST_HIGH (TYPE_MIN_VALUE (d1))
627 == TREE_INT_CST_HIGH (TYPE_MIN_VALUE (d2)))
628 && (TREE_INT_CST_LOW (TYPE_MAX_VALUE (d1))
629 == TREE_INT_CST_LOW (TYPE_MAX_VALUE (d2)))
630 && (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (d1))
631 == TREE_INT_CST_HIGH (TYPE_MAX_VALUE (d2))));
634 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
635 or various other operations. This is what ANSI C++ speaks of as
636 "being the same".
638 For C++: argument STRICT says we should be strict about this
639 comparison:
641 2 : strict, except that if one type is a reference and
642 the other is not, compare the target type of the
643 reference to the type that's not a reference (ARM, p308).
644 This is used for checking for invalid overloading.
645 1 : strict (compared according to ANSI C)
646 This is used for checking whether two function decls match.
647 0 : <= (compared according to C++)
648 -1: <= or >= (relaxed)
650 Otherwise, pointers involving base classes and derived classes
651 can be mixed as valid: i.e. a pointer to a base class may be assigned
652 to a pointer to one of its derived classes, as per C++. A pointer to
653 a derived class may be passed as a parameter to a function expecting a
654 pointer to a base classes. These allowances do not commute. In this
655 case, TYPE1 is assumed to be the base class, and TYPE2 is assumed to
656 be the derived class. */
659 comptypes (type1, type2, strict)
660 tree type1, type2;
661 int strict;
663 register tree t1 = type1;
664 register tree t2 = type2;
665 int attrval, val;
667 /* Suppress errors caused by previously reported errors */
669 if (t1 == t2)
670 return 1;
672 /* This should never happen. */
673 my_friendly_assert (t1 != error_mark_node, 307);
675 if (t2 == error_mark_node)
676 return 0;
678 if (strict < 0)
680 /* Treat an enum type as the unsigned integer type of the same width. */
682 if (TREE_CODE (t1) == ENUMERAL_TYPE)
683 t1 = type_for_size (TYPE_PRECISION (t1), 1);
684 if (TREE_CODE (t2) == ENUMERAL_TYPE)
685 t2 = type_for_size (TYPE_PRECISION (t2), 1);
687 if (t1 == t2)
688 return 1;
691 if (TYPE_PTRMEMFUNC_P (t1))
692 t1 = TYPE_PTRMEMFUNC_FN_TYPE (t1);
693 if (TYPE_PTRMEMFUNC_P (t2))
694 t2 = TYPE_PTRMEMFUNC_FN_TYPE (t2);
696 /* Different classes of types can't be compatible. */
698 if (TREE_CODE (t1) != TREE_CODE (t2))
700 if (strict == 2
701 && ((TREE_CODE (t1) == REFERENCE_TYPE)
702 ^ (TREE_CODE (t2) == REFERENCE_TYPE)))
704 if (TREE_CODE (t1) == REFERENCE_TYPE)
705 return comptypes (TREE_TYPE (t1), t2, 1);
706 return comptypes (t1, TREE_TYPE (t2), 1);
709 return 0;
711 if (strict > 1)
712 strict = 1;
714 /* Qualifiers must match. */
716 if (TYPE_READONLY (t1) != TYPE_READONLY (t2))
717 return 0;
718 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
719 return 0;
721 /* Allow for two different type nodes which have essentially the same
722 definition. Note that we already checked for equality of the type
723 type qualifiers (just above). */
725 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
726 return 1;
728 /* ??? COMP_TYPE_ATTRIBUTES is currently useless for variables as each
729 attribute is its own main variant (`val' will remain 0). */
730 #ifndef COMP_TYPE_ATTRIBUTES
731 #define COMP_TYPE_ATTRIBUTES(t1,t2) 1
732 #endif
734 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
735 if (! (attrval = COMP_TYPE_ATTRIBUTES (t1, t2)))
736 return 0;
738 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
739 val = 0;
741 switch (TREE_CODE (t1))
743 case RECORD_TYPE:
744 case UNION_TYPE:
745 if (CLASSTYPE_TEMPLATE_INFO (t1) && CLASSTYPE_TEMPLATE_INFO (t2)
746 && CLASSTYPE_TI_TEMPLATE (t1) == CLASSTYPE_TI_TEMPLATE (t2))
748 int i = TREE_VEC_LENGTH (CLASSTYPE_TI_ARGS (t1));
749 tree *p1 = &TREE_VEC_ELT (CLASSTYPE_TI_ARGS (t1), 0);
750 tree *p2 = &TREE_VEC_ELT (CLASSTYPE_TI_ARGS (t2), 0);
752 while (i--)
754 if (TREE_CODE_CLASS (TREE_CODE (p1[i])) == 't')
756 if (! comptypes (p1[i], p2[i], 1))
757 return 0;
759 else
761 if (simple_cst_equal (p1[i], p2[i]) <= 0)
762 return 0;
765 return 1;
767 if (strict <= 0)
768 goto look_hard;
769 return 0;
771 case OFFSET_TYPE:
772 val = (comptypes (build_pointer_type (TYPE_OFFSET_BASETYPE (t1)),
773 build_pointer_type (TYPE_OFFSET_BASETYPE (t2)), strict)
774 && comptypes (TREE_TYPE (t1), TREE_TYPE (t2), strict));
775 break;
777 case METHOD_TYPE:
778 if (! compexcepttypes (t1, t2))
779 return 0;
781 /* This case is anti-symmetrical!
782 One can pass a base member (or member function)
783 to something expecting a derived member (or member function),
784 but not vice-versa! */
786 val = (comptypes (TREE_TYPE (t1), TREE_TYPE (t2), strict)
787 && compparms (TYPE_ARG_TYPES (t1),
788 TYPE_ARG_TYPES (t2), strict));
789 break;
791 case POINTER_TYPE:
792 case REFERENCE_TYPE:
793 t1 = TREE_TYPE (t1);
794 t2 = TREE_TYPE (t2);
795 if (t1 == t2)
797 val = 1;
798 break;
800 if (strict <= 0)
802 if (TREE_CODE (t1) == RECORD_TYPE && TREE_CODE (t2) == RECORD_TYPE)
804 int rval;
805 look_hard:
806 rval = t1 == t2 || DERIVED_FROM_P (t1, t2);
808 if (rval)
810 val = 1;
811 break;
813 if (strict < 0)
815 val = DERIVED_FROM_P (t2, t1);
816 break;
819 return 0;
821 else
822 val = comptypes (t1, t2, strict);
823 break;
825 case FUNCTION_TYPE:
826 if (! compexcepttypes (t1, t2))
827 return 0;
829 val = ((TREE_TYPE (t1) == TREE_TYPE (t2)
830 || comptypes (TREE_TYPE (t1), TREE_TYPE (t2), strict))
831 && compparms (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2), strict));
832 break;
834 case ARRAY_TYPE:
835 /* Target types must match incl. qualifiers. */
836 val = comp_array_types (comptypes, t1, t2, strict);
837 break;
839 case TEMPLATE_TYPE_PARM:
840 return TEMPLATE_TYPE_IDX (t1) == TEMPLATE_TYPE_IDX (t2)
841 && TEMPLATE_TYPE_LEVEL (t1) == TEMPLATE_TYPE_LEVEL (t2);
843 case TYPENAME_TYPE:
844 if (TYPE_IDENTIFIER (t1) != TYPE_IDENTIFIER (t2))
845 return 0;
846 return comptypes (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2), 1);
848 return attrval == 2 && val == 1 ? 2 : val;
851 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
852 ignoring their qualifiers.
854 NPTRS is the number of pointers we can strip off and keep cool.
855 This is used to permit (for aggr A, aggr B) A, B* to convert to A*,
856 but to not permit B** to convert to A**. */
859 comp_target_types (ttl, ttr, nptrs)
860 tree ttl, ttr;
861 int nptrs;
863 ttl = TYPE_MAIN_VARIANT (ttl);
864 ttr = TYPE_MAIN_VARIANT (ttr);
865 if (ttl == ttr)
866 return 1;
868 if (TREE_CODE (ttr) != TREE_CODE (ttl))
869 return 0;
871 if (TREE_CODE (ttr) == POINTER_TYPE)
873 ttl = TREE_TYPE (ttl);
874 ttr = TREE_TYPE (ttr);
876 if (nptrs > 0)
878 if (TREE_CODE (ttl) == UNKNOWN_TYPE
879 || TREE_CODE (ttr) == UNKNOWN_TYPE)
880 return 1;
881 else if (TREE_CODE (ttl) == VOID_TYPE
882 && TREE_CODE (ttr) != FUNCTION_TYPE
883 && TREE_CODE (ttr) != METHOD_TYPE
884 && TREE_CODE (ttr) != OFFSET_TYPE)
885 return 1;
886 else if (TREE_CODE (ttr) == VOID_TYPE
887 && TREE_CODE (ttl) != FUNCTION_TYPE
888 && TREE_CODE (ttl) != METHOD_TYPE
889 && TREE_CODE (ttl) != OFFSET_TYPE)
890 return -1;
891 else if (TREE_CODE (ttl) == POINTER_TYPE
892 || TREE_CODE (ttl) == ARRAY_TYPE)
894 if (comp_ptr_ttypes (ttl, ttr))
895 return 1;
896 else if (comp_ptr_ttypes (ttr, ttl))
897 return -1;
898 return 0;
902 /* Const and volatile mean something different for function types,
903 so the usual checks are not appropriate. */
904 if (TREE_CODE (ttl) == FUNCTION_TYPE || TREE_CODE (ttl) == METHOD_TYPE)
905 return comp_target_types (ttl, ttr, nptrs - 1);
907 /* Make sure that the cv-quals change only in the same direction as
908 the target type. */
910 int t;
911 int c = TYPE_READONLY (ttl) - TYPE_READONLY (ttr);
912 int v = TYPE_VOLATILE (ttl) - TYPE_VOLATILE (ttr);
914 if ((c > 0 && v < 0) || (c < 0 && v > 0))
915 return 0;
917 if (TYPE_MAIN_VARIANT (ttl) == TYPE_MAIN_VARIANT (ttr))
918 return (c + v < 0) ? -1 : 1;
920 t = comp_target_types (ttl, ttr, nptrs - 1);
921 if ((t == 1 && c + v >= 0) || (t == -1 && c + v <= 0))
922 return t;
924 return 0;
928 if (TREE_CODE (ttr) == REFERENCE_TYPE)
929 return comp_target_types (TREE_TYPE (ttl), TREE_TYPE (ttr), nptrs);
930 if (TREE_CODE (ttr) == ARRAY_TYPE)
931 return comp_array_types (comp_target_types, ttl, ttr, 0);
932 else if (TREE_CODE (ttr) == FUNCTION_TYPE || TREE_CODE (ttr) == METHOD_TYPE)
933 if (comp_target_types (TREE_TYPE (ttl), TREE_TYPE (ttr), nptrs))
934 switch (comp_target_parms (TYPE_ARG_TYPES (ttl), TYPE_ARG_TYPES (ttr), 1))
936 case 0:
937 return 0;
938 case 1:
939 return 1;
940 case 2:
941 return -1;
942 default:
943 my_friendly_abort (112);
945 else
946 return 0;
948 /* for C++ */
949 else if (TREE_CODE (ttr) == OFFSET_TYPE)
951 /* Contravariance: we can assign a pointer to base member to a pointer
952 to derived member. Note difference from simple pointer case, where
953 we can pass a pointer to derived to a pointer to base. */
954 if (comptypes (TYPE_OFFSET_BASETYPE (ttr), TYPE_OFFSET_BASETYPE (ttl), 0))
955 return comp_target_types (TREE_TYPE (ttl), TREE_TYPE (ttr), nptrs);
956 else if (comptypes (TYPE_OFFSET_BASETYPE (ttl), TYPE_OFFSET_BASETYPE (ttr), 0)
957 && comp_target_types (TREE_TYPE (ttl), TREE_TYPE (ttr), nptrs))
958 return -1;
960 else if (IS_AGGR_TYPE (ttl))
962 if (nptrs < 0)
963 return 0;
964 if (comptypes (build_pointer_type (ttl), build_pointer_type (ttr), 0))
965 return 1;
966 if (comptypes (build_pointer_type (ttr), build_pointer_type (ttl), 0))
967 return -1;
968 return 0;
971 return 0;
974 /* If two types share a common base type, return that basetype.
975 If there is not a unique most-derived base type, this function
976 returns ERROR_MARK_NODE. */
978 static tree
979 common_base_type (tt1, tt2)
980 tree tt1, tt2;
982 tree best = NULL_TREE;
983 int i;
985 /* If one is a baseclass of another, that's good enough. */
986 if (UNIQUELY_DERIVED_FROM_P (tt1, tt2))
987 return tt1;
988 if (UNIQUELY_DERIVED_FROM_P (tt2, tt1))
989 return tt2;
991 /* Otherwise, try to find a unique baseclass of TT1
992 that is shared by TT2, and follow that down. */
993 for (i = CLASSTYPE_N_BASECLASSES (tt1)-1; i >= 0; i--)
995 tree basetype = TYPE_BINFO_BASETYPE (tt1, i);
996 tree trial = common_base_type (basetype, tt2);
997 if (trial)
999 if (trial == error_mark_node)
1000 return trial;
1001 if (best == NULL_TREE)
1002 best = trial;
1003 else if (best != trial)
1004 return error_mark_node;
1008 /* Same for TT2. */
1009 for (i = CLASSTYPE_N_BASECLASSES (tt2)-1; i >= 0; i--)
1011 tree basetype = TYPE_BINFO_BASETYPE (tt2, i);
1012 tree trial = common_base_type (tt1, basetype);
1013 if (trial)
1015 if (trial == error_mark_node)
1016 return trial;
1017 if (best == NULL_TREE)
1018 best = trial;
1019 else if (best != trial)
1020 return error_mark_node;
1023 return best;
1026 /* Subroutines of `comptypes'. */
1028 /* Return 1 if two parameter type lists PARMS1 and PARMS2
1029 are equivalent in the sense that functions with those parameter types
1030 can have equivalent types.
1031 If either list is empty, we win.
1032 Otherwise, the two lists must be equivalent, element by element.
1034 C++: See comment above about TYPE1, TYPE2, STRICT.
1035 If STRICT == 3, it means checking is strict, but do not compare
1036 default parameter values. */
1039 compparms (parms1, parms2, strict)
1040 tree parms1, parms2;
1041 int strict;
1043 register tree t1 = parms1, t2 = parms2;
1045 /* An unspecified parmlist matches any specified parmlist
1046 whose argument types don't need default promotions. */
1048 if (strict <= 0 && t1 == 0)
1049 return self_promoting_args_p (t2);
1050 if (strict < 0 && t2 == 0)
1051 return self_promoting_args_p (t1);
1053 while (1)
1055 if (t1 == 0 && t2 == 0)
1056 return 1;
1057 /* If one parmlist is shorter than the other,
1058 they fail to match, unless STRICT is <= 0. */
1059 if (t1 == 0 || t2 == 0)
1061 if (strict > 0)
1062 return 0;
1063 if (strict < 0)
1064 return 1;
1065 if (strict == 0)
1066 return t1 && TREE_PURPOSE (t1);
1068 if (! comptypes (TREE_VALUE (t2), TREE_VALUE (t1), strict))
1070 if (strict > 0)
1071 return 0;
1072 if (strict == 0)
1073 return t2 == void_list_node && TREE_PURPOSE (t1);
1074 return TREE_PURPOSE (t1) || TREE_PURPOSE (t2);
1077 t1 = TREE_CHAIN (t1);
1078 t2 = TREE_CHAIN (t2);
1082 /* This really wants return whether or not parameter type lists
1083 would make their owning functions assignment compatible or not. */
1085 static int
1086 comp_target_parms (parms1, parms2, strict)
1087 tree parms1, parms2;
1088 int strict;
1090 register tree t1 = parms1, t2 = parms2;
1091 int warn_contravariance = 0;
1093 /* An unspecified parmlist matches any specified parmlist
1094 whose argument types don't need default promotions.
1095 @@@ see 13.3.3 for a counterexample... */
1097 if (t1 == 0 && t2 != 0)
1099 cp_pedwarn ("ANSI C++ prohibits conversion from `(%#T)' to `(...)'",
1100 parms2);
1101 return self_promoting_args_p (t2);
1103 if (t2 == 0)
1104 return self_promoting_args_p (t1);
1106 for (; t1 || t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1108 tree p1, p2;
1110 /* If one parmlist is shorter than the other,
1111 they fail to match, unless STRICT is <= 0. */
1112 if (t1 == 0 || t2 == 0)
1114 if (strict > 0)
1115 return 0;
1116 if (strict < 0)
1117 return 1 + warn_contravariance;
1118 return ((t1 && TREE_PURPOSE (t1)) + warn_contravariance);
1120 p1 = TREE_VALUE (t1);
1121 p2 = TREE_VALUE (t2);
1122 if (p1 == p2)
1123 continue;
1125 if ((TREE_CODE (p1) == POINTER_TYPE && TREE_CODE (p2) == POINTER_TYPE)
1126 || (TREE_CODE (p1) == REFERENCE_TYPE && TREE_CODE (p2) == REFERENCE_TYPE))
1128 if (strict <= 0
1129 && (TYPE_MAIN_VARIANT (TREE_TYPE (p1))
1130 == TYPE_MAIN_VARIANT (TREE_TYPE (p2))))
1131 continue;
1133 /* The following is wrong for contravariance,
1134 but many programs depend on it. */
1135 if (TREE_TYPE (p1) == void_type_node)
1136 continue;
1137 if (TREE_TYPE (p2) == void_type_node)
1139 warn_contravariance = 1;
1140 continue;
1142 if (IS_AGGR_TYPE (TREE_TYPE (p1)))
1144 if (comptypes (p2, p1, 0) == 0)
1146 if (comptypes (p1, p2, 0) != 0)
1147 warn_contravariance = 1;
1148 else
1149 return 0;
1151 continue;
1154 /* Note backwards order due to contravariance. */
1155 if (comp_target_types (p2, p1, 1) == 0)
1157 if (comp_target_types (p1, p2, 1))
1159 warn_contravariance = 1;
1160 continue;
1162 if (strict != 0)
1163 return 0;
1165 /* Target types are compatible--just make sure that if
1166 we use parameter lists, that they are ok as well. */
1167 if (TREE_CODE (p1) == FUNCTION_TYPE || TREE_CODE (p1) == METHOD_TYPE)
1168 switch (comp_target_parms (TYPE_ARG_TYPES (p1),
1169 TYPE_ARG_TYPES (p2),
1170 strict))
1172 case 0:
1173 return 0;
1174 case 1:
1175 break;
1176 case 2:
1177 warn_contravariance = 1;
1180 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1182 int cmp = simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1183 if (cmp < 0)
1184 my_friendly_abort (114);
1185 if (cmp == 0)
1186 return 0;
1189 return 1 + warn_contravariance;
1192 /* Return 1 if PARMS specifies a fixed number of parameters
1193 and none of their types is affected by default promotions. */
1196 self_promoting_args_p (parms)
1197 tree parms;
1199 register tree t;
1200 for (t = parms; t; t = TREE_CHAIN (t))
1202 register tree type = TREE_VALUE (t);
1204 if (TREE_CHAIN (t) == 0 && type != void_type_node)
1205 return 0;
1207 if (type == 0)
1208 return 0;
1210 if (TYPE_MAIN_VARIANT (type) == float_type_node)
1211 return 0;
1213 if (C_PROMOTING_INTEGER_TYPE_P (type))
1214 return 0;
1216 return 1;
1219 /* Return an unsigned type the same as TYPE in other respects.
1221 C++: must make these work for type variants as well. */
1223 tree
1224 unsigned_type (type)
1225 tree type;
1227 tree type1 = TYPE_MAIN_VARIANT (type);
1228 if (type1 == signed_char_type_node || type1 == char_type_node)
1229 return unsigned_char_type_node;
1230 if (type1 == integer_type_node)
1231 return unsigned_type_node;
1232 if (type1 == short_integer_type_node)
1233 return short_unsigned_type_node;
1234 if (type1 == long_integer_type_node)
1235 return long_unsigned_type_node;
1236 if (type1 == long_long_integer_type_node)
1237 return long_long_unsigned_type_node;
1238 if (type1 == intDI_type_node)
1239 return unsigned_intDI_type_node;
1240 if (type1 == intSI_type_node)
1241 return unsigned_intSI_type_node;
1242 if (type1 == intHI_type_node)
1243 return unsigned_intHI_type_node;
1244 if (type1 == intQI_type_node)
1245 return unsigned_intQI_type_node;
1247 return signed_or_unsigned_type (1, type);
1250 /* Return a signed type the same as TYPE in other respects. */
1252 tree
1253 signed_type (type)
1254 tree type;
1256 tree type1 = TYPE_MAIN_VARIANT (type);
1257 if (type1 == unsigned_char_type_node || type1 == char_type_node)
1258 return signed_char_type_node;
1259 if (type1 == unsigned_type_node)
1260 return integer_type_node;
1261 if (type1 == short_unsigned_type_node)
1262 return short_integer_type_node;
1263 if (type1 == long_unsigned_type_node)
1264 return long_integer_type_node;
1265 if (type1 == long_long_unsigned_type_node)
1266 return long_long_integer_type_node;
1267 if (type1 == unsigned_intDI_type_node)
1268 return intDI_type_node;
1269 if (type1 == unsigned_intSI_type_node)
1270 return intSI_type_node;
1271 if (type1 == unsigned_intHI_type_node)
1272 return intHI_type_node;
1273 if (type1 == unsigned_intQI_type_node)
1274 return intQI_type_node;
1276 return signed_or_unsigned_type (0, type);
1279 /* Return a type the same as TYPE except unsigned or
1280 signed according to UNSIGNEDP. */
1282 tree
1283 signed_or_unsigned_type (unsignedp, type)
1284 int unsignedp;
1285 tree type;
1287 if (! INTEGRAL_TYPE_P (type)
1288 || TREE_UNSIGNED (type) == unsignedp)
1289 return type;
1291 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1292 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1293 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1294 return unsignedp ? unsigned_type_node : integer_type_node;
1295 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
1296 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1297 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
1298 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1299 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
1300 return (unsignedp ? long_long_unsigned_type_node
1301 : long_long_integer_type_node);
1302 return type;
1305 /* Compute the value of the `sizeof' operator. */
1307 tree
1308 c_sizeof (type)
1309 tree type;
1311 enum tree_code code = TREE_CODE (type);
1312 tree t;
1314 if (processing_template_decl)
1315 return build_min (SIZEOF_EXPR, sizetype, type);
1317 if (code == FUNCTION_TYPE)
1319 if (pedantic || warn_pointer_arith)
1320 pedwarn ("ANSI C++ forbids taking the sizeof a function type");
1321 return size_int (1);
1323 if (code == METHOD_TYPE)
1325 if (pedantic || warn_pointer_arith)
1326 pedwarn ("ANSI C++ forbids taking the sizeof a method type");
1327 return size_int (1);
1329 if (code == VOID_TYPE)
1331 if (pedantic || warn_pointer_arith)
1332 pedwarn ("ANSI C++ forbids taking the sizeof a void type");
1333 return size_int (1);
1335 if (code == ERROR_MARK)
1336 return size_int (1);
1338 /* ARM $5.3.2: ``When applied to a reference, the result is the size of the
1339 referenced object.'' */
1340 if (code == REFERENCE_TYPE)
1341 type = TREE_TYPE (type);
1343 /* We couldn't find anything in the ARM or the draft standard that says,
1344 one way or the other, if doing sizeof on something that doesn't have
1345 an object associated with it is correct or incorrect. For example, if
1346 you declare `struct S { char str[16]; };', and in your program do
1347 a `sizeof (S::str)', should we flag that as an error or should we give
1348 the size of it? Since it seems like a reasonable thing to do, we'll go
1349 with giving the value. */
1350 if (code == OFFSET_TYPE)
1351 type = TREE_TYPE (type);
1353 /* @@ This also produces an error for a signature ref.
1354 In that case we should be able to do better. */
1355 if (IS_SIGNATURE (type))
1357 error ("`sizeof' applied to a signature type");
1358 return size_int (0);
1361 if (TYPE_SIZE (complete_type (type)) == 0)
1363 cp_error ("`sizeof' applied to incomplete type `%T'", type);
1364 return size_int (0);
1367 /* Convert in case a char is more than one unit. */
1368 t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
1369 size_int (TYPE_PRECISION (char_type_node)));
1370 /* size_binop does not put the constant in range, so do it now. */
1371 if (TREE_CODE (t) == INTEGER_CST && force_fit_type (t, 0))
1372 TREE_CONSTANT_OVERFLOW (t) = TREE_OVERFLOW (t) = 1;
1373 return t;
1376 tree
1377 expr_sizeof (e)
1378 tree e;
1380 if (processing_template_decl)
1381 return build_min (SIZEOF_EXPR, sizetype, e);
1383 if (TREE_CODE (e) == COMPONENT_REF
1384 && DECL_BIT_FIELD (TREE_OPERAND (e, 1)))
1385 error ("sizeof applied to a bit-field");
1386 /* ANSI says arrays and functions are converted inside comma.
1387 But we can't really convert them in build_compound_expr
1388 because that would break commas in lvalues.
1389 So do the conversion here if operand was a comma. */
1390 if (TREE_CODE (e) == COMPOUND_EXPR
1391 && (TREE_CODE (TREE_TYPE (e)) == ARRAY_TYPE
1392 || TREE_CODE (TREE_TYPE (e)) == FUNCTION_TYPE))
1393 e = default_conversion (e);
1394 else if (TREE_CODE (e) == TREE_LIST)
1396 tree t = TREE_VALUE (e);
1397 if (t != NULL_TREE
1398 && ((TREE_TYPE (t)
1399 && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
1400 || is_overloaded_fn (t)))
1401 pedwarn ("ANSI C++ forbids taking the sizeof a function type");
1403 return c_sizeof (TREE_TYPE (e));
1406 tree
1407 c_sizeof_nowarn (type)
1408 tree type;
1410 enum tree_code code = TREE_CODE (type);
1411 tree t;
1413 if (code == FUNCTION_TYPE
1414 || code == METHOD_TYPE
1415 || code == VOID_TYPE
1416 || code == ERROR_MARK)
1417 return size_int (1);
1418 if (code == REFERENCE_TYPE)
1419 type = TREE_TYPE (type);
1421 if (TYPE_SIZE (type) == 0)
1422 return size_int (0);
1424 /* Convert in case a char is more than one unit. */
1425 t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
1426 size_int (TYPE_PRECISION (char_type_node)));
1427 force_fit_type (t, 0);
1428 return t;
1431 /* Implement the __alignof keyword: Return the minimum required
1432 alignment of TYPE, measured in bytes. */
1434 tree
1435 c_alignof (type)
1436 tree type;
1438 enum tree_code code = TREE_CODE (type);
1439 tree t;
1441 if (code == FUNCTION_TYPE || code == METHOD_TYPE)
1442 return size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1444 if (code == VOID_TYPE || code == ERROR_MARK)
1445 return size_int (1);
1447 /* C++: this is really correct! */
1448 if (code == REFERENCE_TYPE)
1449 type = TREE_TYPE (type);
1451 /* @@ This also produces an error for a signature ref.
1452 In that case we should be able to do better. */
1453 if (IS_SIGNATURE (type))
1455 error ("`__alignof' applied to a signature type");
1456 return size_int (1);
1459 t = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
1460 force_fit_type (t, 0);
1461 return t;
1464 /* Perform default promotions for C data used in expressions.
1465 Arrays and functions are converted to pointers;
1466 enumeral types or short or char, to int.
1467 In addition, manifest constants symbols are replaced by their values.
1469 C++: this will automatically bash references to their target type. */
1471 tree
1472 decay_conversion (exp)
1473 tree exp;
1475 register tree type = TREE_TYPE (exp);
1476 register enum tree_code code = TREE_CODE (type);
1478 if (code == OFFSET_TYPE)
1480 if (TREE_CODE (exp) == OFFSET_REF)
1481 return decay_conversion (resolve_offset_ref (exp));
1483 type = TREE_TYPE (type);
1484 code = TREE_CODE (type);
1486 if (type == unknown_type_node)
1488 cp_pedwarn ("assuming & on overloaded member function");
1489 return build_unary_op (ADDR_EXPR, exp, 0);
1493 if (code == REFERENCE_TYPE)
1495 exp = convert_from_reference (exp);
1496 type = TREE_TYPE (exp);
1497 code = TREE_CODE (type);
1500 /* Constants can be used directly unless they're not loadable. */
1501 if (TREE_CODE (exp) == CONST_DECL)
1502 exp = DECL_INITIAL (exp);
1503 /* Replace a nonvolatile const static variable with its value. */
1504 else if (TREE_READONLY_DECL_P (exp))
1506 exp = decl_constant_value (exp);
1507 type = TREE_TYPE (exp);
1510 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1511 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1513 if (code == VOID_TYPE)
1515 error ("void value not ignored as it ought to be");
1516 return error_mark_node;
1518 if (code == FUNCTION_TYPE)
1520 return build_unary_op (ADDR_EXPR, exp, 0);
1522 if (code == METHOD_TYPE)
1524 cp_pedwarn ("assuming & on `%E'", exp);
1525 return build_unary_op (ADDR_EXPR, exp, 0);
1527 if (code == ARRAY_TYPE)
1529 register tree adr;
1530 tree restype;
1531 tree ptrtype;
1532 int constp, volatilep;
1534 if (TREE_CODE (exp) == INDIRECT_REF)
1536 /* Stripping away the INDIRECT_REF is not the right
1537 thing to do for references... */
1538 tree inner = TREE_OPERAND (exp, 0);
1539 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE)
1541 inner = build1 (CONVERT_EXPR,
1542 build_pointer_type (TREE_TYPE (TREE_TYPE (inner))),
1543 inner);
1544 TREE_CONSTANT (inner) = TREE_CONSTANT (TREE_OPERAND (inner, 0));
1546 return cp_convert (build_pointer_type (TREE_TYPE (type)), inner);
1549 if (TREE_CODE (exp) == COMPOUND_EXPR)
1551 tree op1 = decay_conversion (TREE_OPERAND (exp, 1));
1552 return build (COMPOUND_EXPR, TREE_TYPE (op1),
1553 TREE_OPERAND (exp, 0), op1);
1556 if (!lvalue_p (exp)
1557 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1559 error ("invalid use of non-lvalue array");
1560 return error_mark_node;
1563 constp = volatilep = 0;
1564 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'r'
1565 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'd')
1567 constp = TREE_READONLY (exp);
1568 volatilep = TREE_THIS_VOLATILE (exp);
1571 restype = TREE_TYPE (type);
1572 if (TYPE_READONLY (type) || TYPE_VOLATILE (type)
1573 || constp || volatilep)
1574 restype = cp_build_type_variant (restype,
1575 TYPE_READONLY (type) || constp,
1576 TYPE_VOLATILE (type) || volatilep);
1577 ptrtype = build_pointer_type (restype);
1579 if (TREE_CODE (exp) == VAR_DECL)
1581 /* ??? This is not really quite correct
1582 in that the type of the operand of ADDR_EXPR
1583 is not the target type of the type of the ADDR_EXPR itself.
1584 Question is, can this lossage be avoided? */
1585 adr = build1 (ADDR_EXPR, ptrtype, exp);
1586 if (mark_addressable (exp) == 0)
1587 return error_mark_node;
1588 TREE_CONSTANT (adr) = staticp (exp);
1589 TREE_SIDE_EFFECTS (adr) = 0; /* Default would be, same as EXP. */
1590 return adr;
1592 /* This way is better for a COMPONENT_REF since it can
1593 simplify the offset for a component. */
1594 adr = build_unary_op (ADDR_EXPR, exp, 1);
1595 return cp_convert (ptrtype, adr);
1598 return exp;
1601 tree
1602 default_conversion (exp)
1603 tree exp;
1605 tree type;
1606 enum tree_code code;
1608 exp = decay_conversion (exp);
1610 type = TREE_TYPE (exp);
1611 code = TREE_CODE (type);
1613 if (INTEGRAL_CODE_P (code))
1615 tree t = type_promotes_to (type);
1616 if (t != type)
1617 return cp_convert (t, exp);
1620 return exp;
1623 /* Take the address of an inline function without setting TREE_ADDRESSABLE
1624 or TREE_USED. */
1626 tree
1627 inline_conversion (exp)
1628 tree exp;
1630 if (TREE_CODE (exp) == FUNCTION_DECL)
1632 tree type = build_type_variant
1633 (TREE_TYPE (exp), TREE_READONLY (exp), TREE_THIS_VOLATILE (exp));
1634 exp = build1 (ADDR_EXPR, build_pointer_type (type), exp);
1636 return exp;
1639 tree
1640 build_object_ref (datum, basetype, field)
1641 tree datum, basetype, field;
1643 tree dtype;
1644 if (datum == error_mark_node)
1645 return error_mark_node;
1647 dtype = TREE_TYPE (datum);
1648 if (TREE_CODE (dtype) == REFERENCE_TYPE)
1649 dtype = TREE_TYPE (dtype);
1650 if (! IS_AGGR_TYPE_CODE (TREE_CODE (dtype)))
1652 cp_error ("request for member `%T::%D' in expression of non-aggregate type `%T'",
1653 basetype, field, dtype);
1654 return error_mark_node;
1656 else if (IS_SIGNATURE (basetype))
1658 warning ("signature name in scope resolution ignored");
1659 return build_component_ref (datum, field, NULL_TREE, 1);
1661 else if (is_aggr_type (basetype, 1))
1663 tree binfo = binfo_or_else (basetype, dtype);
1664 if (binfo)
1665 return build_x_component_ref (build_scoped_ref (datum, basetype),
1666 field, binfo, 1);
1668 return error_mark_node;
1671 /* Like `build_component_ref, but uses an already found field, and converts
1672 from a reference. Must compute access for current_class_ref.
1673 Otherwise, ok. */
1675 tree
1676 build_component_ref_1 (datum, field, protect)
1677 tree datum, field;
1678 int protect;
1680 return convert_from_reference
1681 (build_component_ref (datum, field, NULL_TREE, protect));
1684 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
1685 can, for example, use as an lvalue. This code used to be in
1686 unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
1687 expressions, where we're dealing with aggregates. But now it's again only
1688 called from unary_complex_lvalue. The case (in particular) that led to
1689 this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
1690 get it there. */
1692 static tree
1693 rationalize_conditional_expr (code, t)
1694 enum tree_code code;
1695 tree t;
1697 /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
1698 the first operand is always the one to be used if both operands
1699 are equal, so we know what conditional expression this used to be. */
1700 if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
1702 return
1703 build_conditional_expr (build_x_binary_op ((TREE_CODE (t) == MIN_EXPR
1704 ? LE_EXPR : GE_EXPR),
1705 TREE_OPERAND (t, 0),
1706 TREE_OPERAND (t, 1)),
1707 build_unary_op (code, TREE_OPERAND (t, 0), 0),
1708 build_unary_op (code, TREE_OPERAND (t, 1), 0));
1711 return
1712 build_conditional_expr (TREE_OPERAND (t, 0),
1713 build_unary_op (code, TREE_OPERAND (t, 1), 0),
1714 build_unary_op (code, TREE_OPERAND (t, 2), 0));
1717 /* Given the TYPE of an anonymous union field inside T, return the
1718 FIELD_DECL for the field. If not found return NULL_TREE. Because
1719 anonymous unions can nest, we must also search all anonymous unions
1720 that are directly reachable. */
1722 static tree
1723 lookup_anon_field (t, type)
1724 tree t, type;
1726 tree field;
1728 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
1730 if (TREE_STATIC (field))
1731 continue;
1732 if (TREE_CODE (field) != FIELD_DECL)
1733 continue;
1735 /* If we find it directly, return the field. */
1736 if (DECL_NAME (field) == NULL_TREE
1737 && type == TREE_TYPE (field))
1739 return field;
1742 /* Otherwise, it could be nested, search harder. */
1743 if (DECL_NAME (field) == NULL_TREE
1744 && TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1746 tree subfield = lookup_anon_field (TREE_TYPE (field), type);
1747 if (subfield)
1748 return subfield;
1751 return NULL_TREE;
1754 /* Build a COMPONENT_REF for a given DATUM, and it's member COMPONENT.
1755 COMPONENT can be an IDENTIFIER_NODE that is the name of the member
1756 that we are interested in, or it can be a FIELD_DECL. */
1758 tree
1759 build_component_ref (datum, component, basetype_path, protect)
1760 tree datum, component, basetype_path;
1761 int protect;
1763 register tree basetype = TREE_TYPE (datum);
1764 register enum tree_code code;
1765 register tree field = NULL;
1766 register tree ref;
1768 if (processing_template_decl)
1769 return build_min_nt (COMPONENT_REF, datum, component);
1771 /* If DATUM is a COMPOUND_EXPR or COND_EXPR, move our reference
1772 inside it. */
1773 switch (TREE_CODE (datum))
1775 case COMPOUND_EXPR:
1777 tree value = build_component_ref (TREE_OPERAND (datum, 1), component,
1778 basetype_path, protect);
1779 return build (COMPOUND_EXPR, TREE_TYPE (value),
1780 TREE_OPERAND (datum, 0), value);
1782 case COND_EXPR:
1783 return build_conditional_expr
1784 (TREE_OPERAND (datum, 0),
1785 build_component_ref (TREE_OPERAND (datum, 1), component,
1786 basetype_path, protect),
1787 build_component_ref (TREE_OPERAND (datum, 2), component,
1788 basetype_path, protect));
1791 code = TREE_CODE (basetype);
1793 if (code == REFERENCE_TYPE)
1795 datum = convert_from_reference (datum);
1796 basetype = TREE_TYPE (datum);
1797 code = TREE_CODE (basetype);
1799 if (TREE_CODE (datum) == OFFSET_REF)
1801 datum = resolve_offset_ref (datum);
1802 basetype = TREE_TYPE (datum);
1803 code = TREE_CODE (basetype);
1806 /* First, see if there is a field or component with name COMPONENT. */
1807 if (TREE_CODE (component) == TREE_LIST)
1809 my_friendly_assert (!(TREE_CHAIN (component) == NULL_TREE
1810 && DECL_CHAIN (TREE_VALUE (component)) == NULL_TREE), 309);
1811 return build (COMPONENT_REF, TREE_TYPE (component), datum, component);
1814 if (! IS_AGGR_TYPE_CODE (code))
1816 if (code != ERROR_MARK)
1817 cp_error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
1818 component, datum, basetype);
1819 return error_mark_node;
1822 if (TYPE_SIZE (complete_type (basetype)) == 0)
1824 incomplete_type_error (0, basetype);
1825 return error_mark_node;
1828 if (TREE_CODE (component) == BIT_NOT_EXPR)
1830 if (TYPE_IDENTIFIER (basetype) != TREE_OPERAND (component, 0))
1832 cp_error ("destructor specifier `%T::~%T' must have matching names",
1833 basetype, TREE_OPERAND (component, 0));
1834 return error_mark_node;
1836 if (! TYPE_HAS_DESTRUCTOR (basetype))
1838 cp_error ("type `%T' has no destructor", basetype);
1839 return error_mark_node;
1841 return TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (basetype), 1);
1844 /* Look up component name in the structure type definition. */
1845 if (CLASSTYPE_VFIELD (basetype)
1846 && DECL_NAME (CLASSTYPE_VFIELD (basetype)) == component)
1847 /* Special-case this because if we use normal lookups in an ambiguous
1848 hierarchy, the compiler will abort (because vptr lookups are
1849 not supposed to be ambiguous. */
1850 field = CLASSTYPE_VFIELD (basetype);
1851 else if (TREE_CODE (component) == FIELD_DECL
1852 || TREE_CODE (component) == TYPE_DECL)
1854 field = component;
1856 else
1858 tree name = component;
1859 if (TREE_CODE (component) == VAR_DECL)
1860 name = DECL_NAME (component);
1861 if (basetype_path == NULL_TREE)
1862 basetype_path = TYPE_BINFO (basetype);
1863 field = lookup_field (basetype_path, name,
1864 protect && !VFIELD_NAME_P (name), 0);
1865 if (field == error_mark_node)
1866 return error_mark_node;
1868 if (field == NULL_TREE)
1870 /* Not found as a data field, look for it as a method. If found,
1871 then if this is the only possible one, return it, else
1872 report ambiguity error. */
1873 tree fndecls = lookup_fnfields (basetype_path, name, 1);
1874 if (fndecls == error_mark_node)
1875 return error_mark_node;
1876 if (fndecls)
1878 if (TREE_CHAIN (fndecls) == NULL_TREE
1879 && DECL_CHAIN (TREE_VALUE (fndecls)) == NULL_TREE)
1881 tree access, fndecl;
1883 /* Unique, so use this one now. */
1884 basetype = TREE_PURPOSE (fndecls);
1885 fndecl = TREE_VALUE (fndecls);
1886 access = compute_access (TREE_PURPOSE (fndecls), fndecl);
1887 if (access == access_public_node)
1889 if (DECL_VINDEX (fndecl)
1890 && ! resolves_to_fixed_type_p (datum, 0))
1892 tree addr = build_unary_op (ADDR_EXPR, datum, 0);
1893 tree fntype = TREE_TYPE (fndecl);
1895 addr = convert_pointer_to (DECL_CONTEXT (fndecl), addr);
1896 datum = build_indirect_ref (addr, NULL_PTR);
1897 my_friendly_assert (datum != error_mark_node, 310);
1898 fndecl = build_vfn_ref (&addr, datum, DECL_VINDEX (fndecl));
1899 TREE_TYPE (fndecl) = build_pointer_type (fntype);
1901 else
1902 mark_used (fndecl);
1903 return build (OFFSET_REF, TREE_TYPE (fndecl), datum, fndecl);
1905 if (access == access_protected_node)
1906 cp_error ("member function `%D' is protected", fndecl);
1907 else
1908 cp_error ("member function `%D' is private", fndecl);
1909 return error_mark_node;
1911 else
1913 /* Just act like build_offset_ref, since the object does
1914 not matter unless we're actually calling the function. */
1915 tree t;
1917 t = build_tree_list (error_mark_node, fndecls);
1918 TREE_TYPE (t) = build_offset_type (basetype,
1919 unknown_type_node);
1920 return t;
1924 cp_error ("`%#T' has no member named `%D'", basetype, name);
1925 return error_mark_node;
1927 else if (TREE_TYPE (field) == error_mark_node)
1928 return error_mark_node;
1930 if (TREE_CODE (field) != FIELD_DECL)
1932 if (TREE_CODE (field) == TYPE_DECL)
1934 cp_error ("invalid use of type decl `%#D' as expression", field);
1935 return error_mark_node;
1937 else if (DECL_RTL (field) != 0)
1938 mark_used (field);
1939 else
1940 TREE_USED (field) = 1;
1941 return field;
1945 /* See if we have to do any conversions so that we pick up the field from the
1946 right context. */
1947 if (DECL_FIELD_CONTEXT (field) != basetype)
1949 tree context = DECL_FIELD_CONTEXT (field);
1950 tree base = context;
1951 while (base != basetype && TYPE_NAME (base)
1952 && ANON_AGGRNAME_P (TYPE_IDENTIFIER (base)))
1954 base = TYPE_CONTEXT (base);
1957 /* Handle base classes here... */
1958 if (base != basetype && TYPE_USES_COMPLEX_INHERITANCE (basetype))
1960 tree addr = build_unary_op (ADDR_EXPR, datum, 0);
1961 if (integer_zerop (addr))
1963 error ("invalid reference to NULL ptr, use ptr-to-member instead");
1964 return error_mark_node;
1966 if (VBASE_NAME_P (DECL_NAME (field)))
1968 /* It doesn't matter which vbase pointer we grab, just
1969 find one of them. */
1970 tree binfo = get_binfo (base,
1971 TREE_TYPE (TREE_TYPE (addr)), 0);
1972 addr = convert_pointer_to_real (binfo, addr);
1974 else
1975 addr = convert_pointer_to (base, addr);
1976 datum = build_indirect_ref (addr, NULL_PTR);
1977 my_friendly_assert (datum != error_mark_node, 311);
1979 basetype = base;
1981 /* Handle things from anon unions here... */
1982 if (TYPE_NAME (context) && ANON_AGGRNAME_P (TYPE_IDENTIFIER (context)))
1984 tree subfield = lookup_anon_field (basetype, context);
1985 tree subdatum = build_component_ref (datum, subfield,
1986 basetype_path, protect);
1987 return build_component_ref (subdatum, field, basetype_path, protect);
1991 ref = fold (build (COMPONENT_REF, TREE_TYPE (field),
1992 break_out_cleanups (datum), field));
1994 if (TREE_READONLY (datum) || TREE_READONLY (field))
1995 TREE_READONLY (ref) = 1;
1996 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (field))
1997 TREE_THIS_VOLATILE (ref) = 1;
1998 if (DECL_MUTABLE_P (field))
1999 TREE_READONLY (ref) = 0;
2001 return ref;
2004 /* Variant of build_component_ref for use in expressions, which should
2005 never have REFERENCE_TYPE. */
2007 tree
2008 build_x_component_ref (datum, component, basetype_path, protect)
2009 tree datum, component, basetype_path;
2010 int protect;
2012 tree t = build_component_ref (datum, component, basetype_path, protect);
2014 if (! processing_template_decl)
2015 t = convert_from_reference (t);
2017 return t;
2020 /* Given an expression PTR for a pointer, return an expression
2021 for the value pointed to.
2022 ERRORSTRING is the name of the operator to appear in error messages.
2024 This function may need to overload OPERATOR_FNNAME.
2025 Must also handle REFERENCE_TYPEs for C++. */
2027 tree
2028 build_x_indirect_ref (ptr, errorstring)
2029 tree ptr;
2030 char *errorstring;
2032 tree rval;
2034 if (processing_template_decl)
2035 return build_min_nt (INDIRECT_REF, ptr);
2037 rval = build_opfncall (INDIRECT_REF, LOOKUP_NORMAL, ptr, NULL_TREE, NULL_TREE);
2038 if (rval)
2039 return rval;
2040 return build_indirect_ref (ptr, errorstring);
2043 tree
2044 build_indirect_ref (ptr, errorstring)
2045 tree ptr;
2046 char *errorstring;
2048 register tree pointer, type;
2050 if (ptr == error_mark_node)
2051 return error_mark_node;
2053 pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2054 ? ptr : default_conversion (ptr));
2055 type = TREE_TYPE (pointer);
2057 if (ptr == current_class_ptr)
2058 return current_class_ref;
2060 if (IS_AGGR_TYPE (type))
2062 ptr = build_expr_type_conversion (WANT_POINTER, pointer, 1);
2064 if (ptr)
2066 pointer = ptr;
2067 type = TREE_TYPE (pointer);
2071 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
2073 if (TREE_CODE (pointer) == ADDR_EXPR
2074 && !flag_volatile
2075 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (pointer, 0)))
2076 == TYPE_MAIN_VARIANT (TREE_TYPE (type)))
2077 && (TREE_READONLY (TREE_OPERAND (pointer, 0))
2078 == TYPE_READONLY (TREE_TYPE (type)))
2079 && (TREE_THIS_VOLATILE (TREE_OPERAND (pointer, 0))
2080 == TYPE_VOLATILE (TREE_TYPE (type))))
2081 return TREE_OPERAND (pointer, 0);
2082 else
2084 tree t = TREE_TYPE (type);
2085 register tree ref = build1 (INDIRECT_REF,
2086 TYPE_MAIN_VARIANT (t), pointer);
2088 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2089 so that we get the proper error message if the result is used
2090 to assign to. Also, &* is supposed to be a no-op. */
2091 TREE_READONLY (ref) = TYPE_READONLY (t);
2092 TREE_SIDE_EFFECTS (ref)
2093 = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer) || flag_volatile;
2094 TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
2095 return ref;
2098 /* `pointer' won't be an error_mark_node if we were given a
2099 pointer to member, so it's cool to check for this here. */
2100 else if (TYPE_PTRMEMFUNC_P (type))
2101 error ("invalid use of `%s' on pointer to member function", errorstring);
2102 else if (TREE_CODE (type) == RECORD_TYPE
2103 && (IS_SIGNATURE_POINTER (type) || IS_SIGNATURE_REFERENCE (type)))
2104 error ("cannot dereference signature pointer/reference");
2105 else if (pointer != error_mark_node)
2107 if (errorstring)
2108 error ("invalid type argument of `%s'", errorstring);
2109 else
2110 error ("invalid type argument");
2112 return error_mark_node;
2115 /* This handles expressions of the form "a[i]", which denotes
2116 an array reference.
2118 This is logically equivalent in C to *(a+i), but we may do it differently.
2119 If A is a variable or a member, we generate a primitive ARRAY_REF.
2120 This avoids forcing the array out of registers, and can work on
2121 arrays that are not lvalues (for example, members of structures returned
2122 by functions).
2124 If INDEX is of some user-defined type, it must be converted to
2125 integer type. Otherwise, to make a compatible PLUS_EXPR, it
2126 will inherit the type of the array, which will be some pointer type. */
2128 tree
2129 build_array_ref (array, idx)
2130 tree array, idx;
2132 if (idx == 0)
2134 error ("subscript missing in array reference");
2135 return error_mark_node;
2138 if (TREE_TYPE (array) == error_mark_node
2139 || TREE_TYPE (idx) == error_mark_node)
2140 return error_mark_node;
2142 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE
2143 && TREE_CODE (array) != INDIRECT_REF)
2145 tree rval, type;
2147 /* Subscripting with type char is likely to lose
2148 on a machine where chars are signed.
2149 So warn on any machine, but optionally.
2150 Don't warn for unsigned char since that type is safe.
2151 Don't warn for signed char because anyone who uses that
2152 must have done so deliberately. */
2153 if (warn_char_subscripts
2154 && TYPE_MAIN_VARIANT (TREE_TYPE (idx)) == char_type_node)
2155 warning ("array subscript has type `char'");
2157 /* Apply default promotions *after* noticing character types. */
2158 idx = default_conversion (idx);
2160 if (TREE_CODE (TREE_TYPE (idx)) != INTEGER_TYPE)
2162 error ("array subscript is not an integer");
2163 return error_mark_node;
2166 /* An array that is indexed by a non-constant
2167 cannot be stored in a register; we must be able to do
2168 address arithmetic on its address.
2169 Likewise an array of elements of variable size. */
2170 if (TREE_CODE (idx) != INTEGER_CST
2171 || (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))) != 0
2172 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
2174 if (mark_addressable (array) == 0)
2175 return error_mark_node;
2177 /* An array that is indexed by a constant value which is not within
2178 the array bounds cannot be stored in a register either; because we
2179 would get a crash in store_bit_field/extract_bit_field when trying
2180 to access a non-existent part of the register. */
2181 if (TREE_CODE (idx) == INTEGER_CST
2182 && TYPE_VALUES (TREE_TYPE (array))
2183 && ! int_fits_type_p (idx, TYPE_VALUES (TREE_TYPE (array))))
2185 if (mark_addressable (array) == 0)
2186 return error_mark_node;
2189 if (pedantic && !lvalue_p (array))
2190 pedwarn ("ANSI C++ forbids subscripting non-lvalue array");
2192 /* Note in C++ it is valid to subscript a `register' array, since
2193 it is valid to take the address of something with that
2194 storage specification. */
2195 if (extra_warnings)
2197 tree foo = array;
2198 while (TREE_CODE (foo) == COMPONENT_REF)
2199 foo = TREE_OPERAND (foo, 0);
2200 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo))
2201 warning ("subscripting array declared `register'");
2204 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array)));
2205 rval = build (ARRAY_REF, type, array, idx);
2206 /* Array ref is const/volatile if the array elements are
2207 or if the array is.. */
2208 TREE_READONLY (rval)
2209 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
2210 | TREE_READONLY (array));
2211 TREE_SIDE_EFFECTS (rval)
2212 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2213 | TREE_SIDE_EFFECTS (array));
2214 TREE_THIS_VOLATILE (rval)
2215 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
2216 /* This was added by rms on 16 Nov 91.
2217 It fixes vol struct foo *a; a->elts[1]
2218 in an inline function.
2219 Hope it doesn't break something else. */
2220 | TREE_THIS_VOLATILE (array));
2221 return require_complete_type (fold (rval));
2225 tree ar = default_conversion (array);
2226 tree ind = default_conversion (idx);
2228 /* Put the integer in IND to simplify error checking. */
2229 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
2231 tree temp = ar;
2232 ar = ind;
2233 ind = temp;
2236 if (ar == error_mark_node)
2237 return ar;
2239 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE)
2241 error ("subscripted value is neither array nor pointer");
2242 return error_mark_node;
2244 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
2246 error ("array subscript is not an integer");
2247 return error_mark_node;
2250 return build_indirect_ref (build_binary_op_nodefault (PLUS_EXPR, ar, ind, PLUS_EXPR),
2251 "array indexing");
2255 /* Build a function call to function FUNCTION with parameters PARAMS.
2256 PARAMS is a list--a chain of TREE_LIST nodes--in which the
2257 TREE_VALUE of each node is a parameter-expression. The PARAMS do
2258 not include any object pointer that may be required. FUNCTION's
2259 data type may be a function type or a pointer-to-function.
2261 For C++: If FUNCTION's data type is a TREE_LIST, then the tree list
2262 is the list of possible methods that FUNCTION could conceivably
2263 be. If the list of methods comes from a class, then it will be
2264 a list of lists (where each element is associated with the class
2265 that produced it), otherwise it will be a simple list (for
2266 functions overloaded in global scope).
2268 In the first case, TREE_VALUE (function) is the head of one of those
2269 lists, and TREE_PURPOSE is the name of the function.
2271 In the second case, TREE_PURPOSE (function) is the function's
2272 name directly.
2274 DECL is the class instance variable, usually CURRENT_CLASS_REF.
2276 When calling a TEMPLATE_DECL, we don't require a complete return
2277 type. */
2279 tree
2280 build_x_function_call (function, params, decl)
2281 tree function, params, decl;
2283 tree type;
2284 tree template_id = NULL_TREE;
2285 int is_method;
2287 if (function == error_mark_node)
2288 return error_mark_node;
2290 if (processing_template_decl)
2291 return build_min_nt (CALL_EXPR, function, params, NULL_TREE);
2293 /* Save explicit template arguments if found */
2294 if (TREE_CODE (function) == TEMPLATE_ID_EXPR)
2296 template_id = function;
2297 function = TREE_OPERAND (function, 0);
2300 type = TREE_TYPE (function);
2302 if (TREE_CODE (type) == OFFSET_TYPE
2303 && TREE_TYPE (type) == unknown_type_node
2304 && TREE_CODE (function) == TREE_LIST
2305 && TREE_CHAIN (function) == NULL_TREE)
2307 /* Undo (Foo:bar)()... */
2308 type = TYPE_OFFSET_BASETYPE (type);
2309 function = TREE_VALUE (function);
2310 my_friendly_assert (TREE_CODE (function) == TREE_LIST, 999);
2311 my_friendly_assert (TREE_CHAIN (function) == NULL_TREE, 999);
2312 function = TREE_VALUE (function);
2313 my_friendly_assert (TREE_CODE (function) == FUNCTION_DECL, 999);
2314 function = DECL_NAME (function);
2315 return build_method_call (decl, function, params, TYPE_BINFO (type), LOOKUP_NORMAL);
2318 is_method = ((TREE_CODE (function) == TREE_LIST
2319 && current_class_type != NULL_TREE
2320 && IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (function)) == function)
2321 || TREE_CODE (function) == IDENTIFIER_NODE
2322 || TREE_CODE (type) == METHOD_TYPE
2323 || TYPE_PTRMEMFUNC_P (type));
2325 if (TREE_CODE (function) == FUNCTION_DECL
2326 && DECL_STATIC_FUNCTION_P (function))
2327 return build_member_call
2328 (DECL_CONTEXT (function), DECL_NAME (function), params);
2330 /* Handle methods, friends, and overloaded functions, respectively. */
2331 if (is_method)
2333 tree basetype = NULL_TREE;
2335 if (TREE_CODE (function) == FUNCTION_DECL
2336 || DECL_FUNCTION_TEMPLATE_P (function))
2338 basetype = DECL_CLASS_CONTEXT (function);
2340 if (DECL_NAME (function))
2341 function = DECL_NAME (function);
2342 else
2343 function = TYPE_IDENTIFIER (DECL_CLASS_CONTEXT (function));
2345 else if (TREE_CODE (function) == TREE_LIST)
2347 my_friendly_assert (TREE_CODE (TREE_VALUE (function)) == FUNCTION_DECL, 312);
2348 basetype = DECL_CLASS_CONTEXT (TREE_VALUE (function));
2349 function = TREE_PURPOSE (function);
2351 else if (TREE_CODE (function) != IDENTIFIER_NODE)
2353 if (TREE_CODE (function) == OFFSET_REF)
2355 if (TREE_OPERAND (function, 0))
2356 decl = TREE_OPERAND (function, 0);
2358 /* Call via a pointer to member function. */
2359 if (decl == NULL_TREE)
2361 error ("pointer to member function called, but not in class scope");
2362 return error_mark_node;
2364 /* What other type of POINTER_TYPE could this be? */
2365 if (TREE_CODE (TREE_TYPE (function)) != POINTER_TYPE
2366 && ! TYPE_PTRMEMFUNC_P (TREE_TYPE (function))
2367 && TREE_CODE (function) != OFFSET_REF)
2368 function = build (OFFSET_REF, TREE_TYPE (type), NULL_TREE, function);
2369 goto do_x_function;
2372 /* this is an abbreviated method call.
2373 must go through here in case it is a virtual function.
2374 @@ Perhaps this could be optimized. */
2376 if (basetype && (! current_class_type
2377 || ! DERIVED_FROM_P (basetype, current_class_type)))
2378 return build_member_call (basetype, function, params);
2380 if (decl == NULL_TREE)
2382 if (current_class_type == NULL_TREE)
2384 error ("object missing in call to method `%s'",
2385 IDENTIFIER_POINTER (function));
2386 return error_mark_node;
2388 /* Yow: call from a static member function. */
2389 decl = build1 (NOP_EXPR, build_pointer_type (current_class_type),
2390 error_mark_node);
2391 decl = build_indirect_ref (decl, NULL_PTR);
2394 /* Put back explicit template arguments, if any. */
2395 if (template_id)
2396 function = template_id;
2397 return build_method_call (decl, function, params,
2398 NULL_TREE, LOOKUP_NORMAL);
2400 else if (TREE_CODE (function) == COMPONENT_REF
2401 && type == unknown_type_node)
2403 /* Should we undo what was done in build_component_ref? */
2404 if (TREE_CODE (TREE_PURPOSE (TREE_OPERAND (function, 1))) == TREE_VEC)
2405 /* Get the name that build_component_ref hid. */
2406 function = DECL_NAME (TREE_VALUE (TREE_OPERAND (function, 1)));
2407 else
2408 function = TREE_PURPOSE (TREE_OPERAND (function, 1));
2409 return build_method_call (decl, function, params,
2410 NULL_TREE, LOOKUP_NORMAL);
2412 else if (really_overloaded_fn (function))
2414 if (TREE_VALUE (function) == NULL_TREE)
2416 cp_error ("function `%D' declared overloaded, but no definitions appear with which to resolve it?!?",
2417 TREE_PURPOSE (function));
2418 return error_mark_node;
2420 else
2422 tree val = TREE_VALUE (function);
2424 if (flag_ansi_overloading)
2426 /* Put back explicit template arguments, if any. */
2427 if (template_id)
2428 function = template_id;
2429 return build_new_function_call (function, params);
2432 if (TREE_CODE (val) == TEMPLATE_DECL)
2433 return build_overload_call_real
2434 (function, params, LOOKUP_COMPLAIN, (struct candidate *)0, 0);
2435 else if (DECL_CHAIN (val) != NULL_TREE)
2436 return build_overload_call
2437 (function, params, LOOKUP_COMPLAIN);
2438 else
2439 my_friendly_abort (360);
2443 do_x_function:
2444 if (TREE_CODE (function) == OFFSET_REF)
2446 /* If the component is a data element (or a virtual function), we play
2447 games here to make things work. */
2448 tree decl_addr;
2450 if (TREE_OPERAND (function, 0))
2451 decl = TREE_OPERAND (function, 0);
2452 else
2453 decl = current_class_ref;
2455 decl_addr = build_unary_op (ADDR_EXPR, decl, 0);
2456 function = get_member_function_from_ptrfunc (&decl_addr,
2457 TREE_OPERAND (function, 1));
2458 params = expr_tree_cons (NULL_TREE, decl_addr, params);
2459 return build_function_call (function, params);
2462 type = TREE_TYPE (function);
2463 if (type != error_mark_node)
2465 if (TREE_CODE (type) == REFERENCE_TYPE)
2466 type = TREE_TYPE (type);
2468 if (IS_AGGR_TYPE (type))
2469 return build_opfncall (CALL_EXPR, LOOKUP_NORMAL, function, params, NULL_TREE);
2472 if (is_method)
2474 tree fntype = TREE_TYPE (function);
2475 tree ctypeptr;
2477 /* Explicitly named method? */
2478 if (TREE_CODE (function) == FUNCTION_DECL)
2479 ctypeptr = build_pointer_type (DECL_CLASS_CONTEXT (function));
2480 /* Expression with ptr-to-method type? It could either be a plain
2481 usage, or it might be a case where the ptr-to-method is being
2482 passed in as an argument. */
2483 else if (TYPE_PTRMEMFUNC_P (fntype))
2485 tree rec = TYPE_METHOD_BASETYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (fntype)));
2486 ctypeptr = build_pointer_type (rec);
2488 /* Unexpected node type? */
2489 else
2490 my_friendly_abort (116);
2491 if (decl == NULL_TREE)
2493 if (current_function_decl
2494 && DECL_STATIC_FUNCTION_P (current_function_decl))
2495 error ("invalid call to member function needing `this' in static member function scope");
2496 else
2497 error ("pointer to member function called, but not in class scope");
2498 return error_mark_node;
2500 if (TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE
2501 && ! TYPE_PTRMEMFUNC_P (TREE_TYPE (decl)))
2503 decl = build_unary_op (ADDR_EXPR, decl, 0);
2504 decl = convert_pointer_to (TREE_TYPE (ctypeptr), decl);
2506 else
2507 decl = build_c_cast (ctypeptr, decl);
2508 params = expr_tree_cons (NULL_TREE, decl, params);
2511 return build_function_call (function, params);
2514 /* Resolve a pointer to member function. INSTANCE is the object
2515 instance to use, if the member points to a virtual member. */
2517 tree
2518 get_member_function_from_ptrfunc (instance_ptrptr, function)
2519 tree *instance_ptrptr;
2520 tree function;
2522 if (TREE_CODE (function) == OFFSET_REF)
2524 function = TREE_OPERAND (function, 1);
2527 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
2529 tree fntype, idx, e1, delta, delta2, e2, e3, aref, vtbl;
2530 tree instance;
2532 tree instance_ptr = *instance_ptrptr;
2534 if (TREE_SIDE_EFFECTS (instance_ptr))
2535 instance_ptr = save_expr (instance_ptr);
2537 if (TREE_SIDE_EFFECTS (function))
2538 function = save_expr (function);
2540 fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
2542 /* Promoting idx before saving it improves performance on RISC
2543 targets. Without promoting, the first compare used
2544 load-with-sign-extend, while the second used normal load then
2545 shift to sign-extend. An optimizer flaw, perhaps, but it's easier
2546 to make this change. */
2547 idx = save_expr (default_conversion
2548 (build_component_ref (function,
2549 index_identifier,
2550 NULL_TREE, 0)));
2551 e1 = build_binary_op (GT_EXPR, idx, integer_zero_node, 1);
2552 delta = cp_convert (ptrdiff_type_node,
2553 build_component_ref (function, delta_identifier, NULL_TREE, 0));
2554 delta2 = DELTA2_FROM_PTRMEMFUNC (function);
2556 /* Convert down to the right base, before using the instance. */
2557 instance
2558 = convert_pointer_to_real (TYPE_METHOD_BASETYPE (TREE_TYPE (fntype)),
2559 instance_ptr);
2560 if (instance == error_mark_node && instance_ptr != error_mark_node)
2561 return instance;
2563 vtbl = convert_pointer_to (ptr_type_node, instance);
2564 vtbl
2565 = build (PLUS_EXPR,
2566 build_pointer_type (build_pointer_type (vtable_entry_type)),
2567 vtbl, cp_convert (ptrdiff_type_node, delta2));
2568 vtbl = build_indirect_ref (vtbl, NULL_PTR);
2569 aref = build_array_ref (vtbl, build_binary_op (MINUS_EXPR,
2570 idx,
2571 integer_one_node, 1));
2572 if (! flag_vtable_thunks)
2574 aref = save_expr (aref);
2576 delta = build_binary_op (PLUS_EXPR,
2577 build_conditional_expr (e1, build_component_ref (aref, delta_identifier, NULL_TREE, 0), integer_zero_node),
2578 delta, 1);
2581 *instance_ptrptr = build (PLUS_EXPR, TREE_TYPE (instance_ptr),
2582 instance_ptr, delta);
2583 if (flag_vtable_thunks)
2584 e2 = aref;
2585 else
2586 e2 = build_component_ref (aref, pfn_identifier, NULL_TREE, 0);
2588 e3 = PFN_FROM_PTRMEMFUNC (function);
2589 TREE_TYPE (e2) = TREE_TYPE (e3);
2590 e1 = build_conditional_expr (e1, e2, e3);
2592 if (instance_ptr == error_mark_node
2593 && TREE_CODE (e1) != ADDR_EXPR
2594 && TREE_CODE (TREE_OPERAND (e1, 0)) != FUNCTION_DECL)
2595 cp_error ("object missing in `%E'", function);
2597 function = e1;
2599 /* Make sure this doesn't get evaluated first inside one of the
2600 branches of the COND_EXPR. */
2601 if (TREE_CODE (instance_ptr) == SAVE_EXPR)
2602 function = build (COMPOUND_EXPR, TREE_TYPE (function),
2603 instance_ptr, function);
2605 return function;
2608 tree
2609 build_function_call_real (function, params, require_complete, flags)
2610 tree function, params;
2611 int require_complete, flags;
2613 register tree fntype, fndecl;
2614 register tree value_type;
2615 register tree coerced_params;
2616 tree name = NULL_TREE, assembler_name = NULL_TREE;
2617 int is_method;
2619 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
2620 Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context. */
2621 if (TREE_CODE (function) == NOP_EXPR
2622 && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
2623 function = TREE_OPERAND (function, 0);
2625 if (TREE_CODE (function) == FUNCTION_DECL)
2627 name = DECL_NAME (function);
2628 assembler_name = DECL_ASSEMBLER_NAME (function);
2630 GNU_xref_call (current_function_decl,
2631 IDENTIFIER_POINTER (name ? name
2632 : TYPE_IDENTIFIER (DECL_CLASS_CONTEXT (function))));
2633 mark_used (function);
2634 fndecl = function;
2636 /* Convert anything with function type to a pointer-to-function. */
2637 if (pedantic
2638 && name
2639 && IDENTIFIER_LENGTH (name) == 4
2640 && ! strcmp (IDENTIFIER_POINTER (name), "main")
2641 && DECL_CONTEXT (function) == NULL_TREE)
2643 pedwarn ("ANSI C++ forbids calling `main' from within program");
2646 if (pedantic && DECL_THIS_INLINE (function) && ! DECL_INITIAL (function)
2647 && ! DECL_ARTIFICIAL (function)
2648 && ! DECL_PENDING_INLINE_INFO (function))
2649 cp_pedwarn ("inline function `%#D' called before definition",
2650 function);
2652 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
2653 (because calling an inline function does not mean the function
2654 needs to be separately compiled). */
2656 if (DECL_INLINE (function))
2657 function = inline_conversion (function);
2658 else
2659 function = build_addr_func (function);
2661 else
2663 fndecl = NULL_TREE;
2665 function = build_addr_func (function);
2668 if (function == error_mark_node)
2669 return error_mark_node;
2671 fntype = TREE_TYPE (function);
2673 if (TYPE_PTRMEMFUNC_P (fntype))
2675 cp_error ("must use .* or ->* to call pointer-to-member function in `%E (...)'",
2676 function);
2677 return error_mark_node;
2680 is_method = (TREE_CODE (fntype) == POINTER_TYPE
2681 && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
2683 if (!((TREE_CODE (fntype) == POINTER_TYPE
2684 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
2685 || is_method
2686 || TREE_CODE (function) == TEMPLATE_ID_EXPR))
2688 cp_error ("`%E' cannot be used as a function", function);
2689 return error_mark_node;
2692 /* fntype now gets the type of function pointed to. */
2693 fntype = TREE_TYPE (fntype);
2695 /* Convert the parameters to the types declared in the
2696 function prototype, or apply default promotions. */
2698 if (flags & LOOKUP_COMPLAIN)
2699 coerced_params = convert_arguments (NULL_TREE, TYPE_ARG_TYPES (fntype),
2700 params, fndecl, LOOKUP_NORMAL);
2701 else
2702 coerced_params = convert_arguments (NULL_TREE, TYPE_ARG_TYPES (fntype),
2703 params, fndecl, 0);
2705 if (coerced_params == error_mark_node)
2706 if (flags & LOOKUP_SPECULATIVELY)
2707 return NULL_TREE;
2708 else
2709 return error_mark_node;
2711 /* Check for errors in format strings. */
2713 if (warn_format && (name || assembler_name))
2714 check_function_format (name, assembler_name, coerced_params);
2716 /* Recognize certain built-in functions so we can make tree-codes
2717 other than CALL_EXPR. We do this when it enables fold-const.c
2718 to do something useful. */
2720 if (TREE_CODE (function) == ADDR_EXPR
2721 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
2722 && DECL_BUILT_IN (TREE_OPERAND (function, 0)))
2723 switch (DECL_FUNCTION_CODE (TREE_OPERAND (function, 0)))
2725 case BUILT_IN_ABS:
2726 case BUILT_IN_LABS:
2727 case BUILT_IN_FABS:
2728 if (coerced_params == 0)
2729 return integer_zero_node;
2730 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
2733 /* C++ */
2734 value_type = TREE_TYPE (fntype) ? TREE_TYPE (fntype) : void_type_node;
2736 register tree result
2737 = build_call (function, value_type, coerced_params);
2739 if (require_complete)
2741 if (value_type == void_type_node)
2742 return result;
2743 result = require_complete_type (result);
2745 if (IS_AGGR_TYPE (value_type))
2746 result = build_cplus_new (value_type, result);
2747 return convert_from_reference (result);
2751 tree
2752 build_function_call (function, params)
2753 tree function, params;
2755 return build_function_call_real (function, params, 1, LOOKUP_NORMAL);
2758 /* Convert the actual parameter expressions in the list VALUES
2759 to the types in the list TYPELIST.
2760 If parmdecls is exhausted, or when an element has NULL as its type,
2761 perform the default conversions.
2763 RETURN_LOC is the location of the return value, if known, NULL_TREE
2764 otherwise. This is useful in the case where we can avoid creating
2765 a temporary variable in the case where we can initialize the return
2766 value directly. If we are not eliding constructors, then we set this
2767 to NULL_TREE to avoid this avoidance.
2769 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
2771 This is also where warnings about wrong number of args are generated.
2773 Return a list of expressions for the parameters as converted.
2775 Both VALUES and the returned value are chains of TREE_LIST nodes
2776 with the elements of the list in the TREE_VALUE slots of those nodes.
2778 In C++, unspecified trailing parameters can be filled in with their
2779 default arguments, if such were specified. Do so here. */
2781 tree
2782 convert_arguments (return_loc, typelist, values, fndecl, flags)
2783 tree return_loc, typelist, values, fndecl;
2784 int flags;
2786 register tree typetail, valtail;
2787 register tree result = NULL_TREE;
2788 char *called_thing;
2789 int i = 0;
2791 if (! flag_elide_constructors)
2792 return_loc = 0;
2794 /* Argument passing is always copy-initialization. */
2795 flags |= LOOKUP_ONLYCONVERTING;
2797 if (fndecl)
2799 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
2801 if (DECL_NAME (fndecl) == NULL_TREE
2802 || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
2803 called_thing = "constructor";
2804 else
2805 called_thing = "member function";
2807 else
2808 called_thing = "function";
2811 for (valtail = values, typetail = typelist;
2812 valtail;
2813 valtail = TREE_CHAIN (valtail), i++)
2815 register tree type = typetail ? TREE_VALUE (typetail) : 0;
2816 register tree val = TREE_VALUE (valtail);
2818 if (val == error_mark_node)
2819 return error_mark_node;
2821 if (type == void_type_node)
2823 if (fndecl)
2825 cp_error_at ("too many arguments to %s `%+D'", called_thing,
2826 fndecl);
2827 error ("at this point in file");
2829 else
2830 error ("too many arguments to function");
2831 /* In case anybody wants to know if this argument
2832 list is valid. */
2833 if (result)
2834 TREE_TYPE (tree_last (result)) = error_mark_node;
2835 break;
2838 /* The tree type of the parameter being passed may not yet be
2839 known. In this case, its type is TYPE_UNKNOWN, and will
2840 be instantiated by the type given by TYPE. If TYPE
2841 is also NULL, the tree type of VAL is ERROR_MARK_NODE. */
2842 if (type && type_unknown_p (val))
2843 val = require_instantiated_type (type, val, integer_zero_node);
2844 else if (type_unknown_p (val))
2846 /* Strip the `&' from an overloaded FUNCTION_DECL. */
2847 if (TREE_CODE (val) == ADDR_EXPR)
2848 val = TREE_OPERAND (val, 0);
2849 if (really_overloaded_fn (val))
2850 cp_error ("insufficient type information to resolve address of overloaded function `%D'",
2851 DECL_NAME (get_first_fn (val)));
2852 else
2853 error ("insufficient type information in parameter list");
2854 val = integer_zero_node;
2856 else if (TREE_CODE (val) == OFFSET_REF
2857 && TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
2859 /* This is unclean. Should be handled elsewhere. */
2860 val = build_unary_op (ADDR_EXPR, val, 0);
2862 else if (TREE_CODE (val) == OFFSET_REF)
2863 val = resolve_offset_ref (val);
2865 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
2866 Strip such NOP_EXPRs, since VAL is used in non-lvalue context. */
2867 if (TREE_CODE (val) == NOP_EXPR
2868 && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
2869 && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
2870 val = TREE_OPERAND (val, 0);
2872 if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
2874 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
2875 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
2876 || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
2877 val = default_conversion (val);
2879 val = require_complete_type (val);
2882 if (val == error_mark_node)
2883 return error_mark_node;
2885 if (type != 0)
2887 /* Formal parm type is specified by a function prototype. */
2888 tree parmval;
2890 if (TYPE_SIZE (complete_type (type)) == 0)
2892 error ("parameter type of called function is incomplete");
2893 parmval = val;
2895 else
2897 parmval = convert_for_initialization
2898 (return_loc, type, val, flags,
2899 "argument passing", fndecl, i);
2900 #ifdef PROMOTE_PROTOTYPES
2901 if ((TREE_CODE (type) == INTEGER_TYPE
2902 || TREE_CODE (type) == ENUMERAL_TYPE)
2903 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
2904 parmval = default_conversion (parmval);
2905 #endif
2908 if (parmval == error_mark_node)
2909 return error_mark_node;
2911 result = expr_tree_cons (NULL_TREE, parmval, result);
2913 else
2915 if (TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
2916 val = convert_from_reference (val);
2918 if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
2919 && (TYPE_PRECISION (TREE_TYPE (val))
2920 < TYPE_PRECISION (double_type_node)))
2921 /* Convert `float' to `double'. */
2922 result = expr_tree_cons (NULL_TREE, cp_convert (double_type_node, val), result);
2923 else if (TYPE_LANG_SPECIFIC (TREE_TYPE (val))
2924 && ! TYPE_HAS_TRIVIAL_INIT_REF (TREE_TYPE (val)))
2926 cp_warning ("cannot pass objects of type `%T' through `...'",
2927 TREE_TYPE (val));
2928 result = expr_tree_cons (NULL_TREE, val, result);
2930 else
2931 /* Convert `short' and `char' to full-size `int'. */
2932 result = expr_tree_cons (NULL_TREE, default_conversion (val), result);
2935 if (typetail)
2936 typetail = TREE_CHAIN (typetail);
2939 if (typetail != 0 && typetail != void_list_node)
2941 /* See if there are default arguments that can be used */
2942 if (TREE_PURPOSE (typetail))
2944 for (; typetail != void_list_node; ++i)
2946 tree type = TREE_VALUE (typetail);
2947 tree val = break_out_target_exprs (TREE_PURPOSE (typetail));
2948 tree parmval;
2950 if (val == NULL_TREE)
2951 parmval = error_mark_node;
2952 else if (TREE_CODE (val) == CONSTRUCTOR)
2954 parmval = digest_init (type, val, (tree *)0);
2955 parmval = convert_for_initialization (return_loc, type, parmval, flags,
2956 "default constructor", fndecl, i);
2958 else
2960 /* This could get clobbered by the following call. */
2961 if (TREE_HAS_CONSTRUCTOR (val))
2962 val = copy_node (val);
2964 parmval = convert_for_initialization (return_loc, type, val, flags,
2965 "default argument", fndecl, i);
2966 #ifdef PROMOTE_PROTOTYPES
2967 if ((TREE_CODE (type) == INTEGER_TYPE
2968 || TREE_CODE (type) == ENUMERAL_TYPE)
2969 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
2970 parmval = default_conversion (parmval);
2971 #endif
2974 if (parmval == error_mark_node)
2975 return error_mark_node;
2977 result = expr_tree_cons (0, parmval, result);
2978 typetail = TREE_CHAIN (typetail);
2979 /* ends with `...'. */
2980 if (typetail == NULL_TREE)
2981 break;
2984 else
2986 if (fndecl)
2988 char *buf = (char *)alloca (32 + strlen (called_thing));
2989 sprintf (buf, "too few arguments to %s `%%#D'", called_thing);
2990 cp_error_at (buf, fndecl);
2991 error ("at this point in file");
2993 else
2994 error ("too few arguments to function");
2995 return error_mark_list;
2999 return nreverse (result);
3002 /* Build a binary-operation expression, after performing default
3003 conversions on the operands. CODE is the kind of expression to build. */
3005 tree
3006 build_x_binary_op (code, arg1, arg2)
3007 enum tree_code code;
3008 tree arg1, arg2;
3010 tree rval;
3012 if (processing_template_decl)
3013 return build_min_nt (code, arg1, arg2);
3015 if (flag_ansi_overloading)
3016 return build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE);
3018 rval = build_opfncall (code, LOOKUP_SPECULATIVELY,
3019 arg1, arg2, NULL_TREE);
3020 if (rval)
3021 return build_opfncall (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE);
3022 if (code == MEMBER_REF)
3023 return build_m_component_ref (build_indirect_ref (arg1, NULL_PTR),
3024 arg2);
3025 return build_binary_op (code, arg1, arg2, 1);
3028 tree
3029 build_binary_op (code, arg1, arg2, convert_p)
3030 enum tree_code code;
3031 tree arg1, arg2;
3032 int convert_p;
3034 tree args[2];
3036 args[0] = arg1;
3037 args[1] = arg2;
3039 if (convert_p)
3041 tree type0, type1;
3042 args[0] = decay_conversion (args[0]);
3043 args[1] = decay_conversion (args[1]);
3045 if (args[0] == error_mark_node || args[1] == error_mark_node)
3046 return error_mark_node;
3048 type0 = TREE_TYPE (args[0]);
3049 type1 = TREE_TYPE (args[1]);
3051 if (type_unknown_p (args[0]))
3053 args[0] = instantiate_type (type1, args[0], 1);
3054 args[0] = decay_conversion (args[0]);
3056 else if (type_unknown_p (args[1]))
3058 args[1] = require_instantiated_type (type0, args[1],
3059 error_mark_node);
3060 args[1] = decay_conversion (args[1]);
3063 if (IS_AGGR_TYPE (type0) || IS_AGGR_TYPE (type1))
3065 /* Try to convert this to something reasonable. */
3066 if (! build_default_binary_type_conversion(code, &args[0], &args[1]))
3068 cp_error ("no match for `%O(%#T, %#T)'", code,
3069 TREE_TYPE (arg1), TREE_TYPE (arg2));
3070 return error_mark_node;
3074 return build_binary_op_nodefault (code, args[0], args[1], code);
3077 /* Build a binary-operation expression without default conversions.
3078 CODE is the kind of expression to build.
3079 This function differs from `build' in several ways:
3080 the data type of the result is computed and recorded in it,
3081 warnings are generated if arg data types are invalid,
3082 special handling for addition and subtraction of pointers is known,
3083 and some optimization is done (operations on narrow ints
3084 are done in the narrower type when that gives the same result).
3085 Constant folding is also done before the result is returned.
3087 ERROR_CODE is the code that determines what to say in error messages.
3088 It is usually, but not always, the same as CODE.
3090 Note that the operands will never have enumeral types
3091 because either they have just had the default conversions performed
3092 or they have both just been converted to some other type in which
3093 the arithmetic is to be done.
3095 C++: must do special pointer arithmetic when implementing
3096 multiple inheritance, and deal with pointer to member functions. */
3098 tree
3099 build_binary_op_nodefault (code, orig_op0, orig_op1, error_code)
3100 enum tree_code code;
3101 tree orig_op0, orig_op1;
3102 enum tree_code error_code;
3104 tree op0, op1;
3105 register enum tree_code code0, code1;
3106 tree type0, type1;
3108 /* Expression code to give to the expression when it is built.
3109 Normally this is CODE, which is what the caller asked for,
3110 but in some special cases we change it. */
3111 register enum tree_code resultcode = code;
3113 /* Data type in which the computation is to be performed.
3114 In the simplest cases this is the common type of the arguments. */
3115 register tree result_type = NULL;
3117 /* Nonzero means operands have already been type-converted
3118 in whatever way is necessary.
3119 Zero means they need to be converted to RESULT_TYPE. */
3120 int converted = 0;
3122 /* Nonzero means create the expression with this type, rather than
3123 RESULT_TYPE. */
3124 tree build_type = 0;
3126 /* Nonzero means after finally constructing the expression
3127 convert it to this type. */
3128 tree final_type = 0;
3130 /* Nonzero if this is an operation like MIN or MAX which can
3131 safely be computed in short if both args are promoted shorts.
3132 Also implies COMMON.
3133 -1 indicates a bitwise operation; this makes a difference
3134 in the exact conditions for when it is safe to do the operation
3135 in a narrower mode. */
3136 int shorten = 0;
3138 /* Nonzero if this is a comparison operation;
3139 if both args are promoted shorts, compare the original shorts.
3140 Also implies COMMON. */
3141 int short_compare = 0;
3143 /* Nonzero if this is a right-shift operation, which can be computed on the
3144 original short and then promoted if the operand is a promoted short. */
3145 int short_shift = 0;
3147 /* Nonzero means set RESULT_TYPE to the common type of the args. */
3148 int common = 0;
3150 /* Apply default conversions. */
3151 if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3152 || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3153 || code == TRUTH_XOR_EXPR)
3155 op0 = decay_conversion (orig_op0);
3156 op1 = decay_conversion (orig_op1);
3158 else
3160 op0 = default_conversion (orig_op0);
3161 op1 = default_conversion (orig_op1);
3164 type0 = TREE_TYPE (op0);
3165 type1 = TREE_TYPE (op1);
3167 /* The expression codes of the data types of the arguments tell us
3168 whether the arguments are integers, floating, pointers, etc. */
3169 code0 = TREE_CODE (type0);
3170 code1 = TREE_CODE (type1);
3172 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
3173 STRIP_TYPE_NOPS (op0);
3174 STRIP_TYPE_NOPS (op1);
3176 /* If an error was already reported for one of the arguments,
3177 avoid reporting another error. */
3179 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
3180 return error_mark_node;
3182 switch (code)
3184 case PLUS_EXPR:
3185 /* Handle the pointer + int case. */
3186 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3187 return pointer_int_sum (PLUS_EXPR, op0, op1);
3188 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
3189 return pointer_int_sum (PLUS_EXPR, op1, op0);
3190 else
3191 common = 1;
3192 break;
3194 case MINUS_EXPR:
3195 /* Subtraction of two similar pointers.
3196 We must subtract them as integers, then divide by object size. */
3197 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
3198 && comp_target_types (type0, type1, 1))
3199 return pointer_diff (op0, op1);
3200 /* Handle pointer minus int. Just like pointer plus int. */
3201 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3202 return pointer_int_sum (MINUS_EXPR, op0, op1);
3203 else
3204 common = 1;
3205 break;
3207 case MULT_EXPR:
3208 common = 1;
3209 break;
3211 case TRUNC_DIV_EXPR:
3212 case CEIL_DIV_EXPR:
3213 case FLOOR_DIV_EXPR:
3214 case ROUND_DIV_EXPR:
3215 case EXACT_DIV_EXPR:
3216 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3217 || code0 == COMPLEX_TYPE)
3218 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3219 || code1 == COMPLEX_TYPE))
3221 if (TREE_CODE (op1) == INTEGER_CST && integer_zerop (op1))
3222 cp_warning ("division by zero in `%E / 0'", op0);
3223 else if (TREE_CODE (op1) == REAL_CST && real_zerop (op1))
3224 cp_warning ("division by zero in `%E / 0.'", op0);
3226 if (!(code0 == INTEGER_TYPE && code1 == INTEGER_TYPE))
3227 resultcode = RDIV_EXPR;
3228 else
3229 /* When dividing two signed integers, we have to promote to int.
3230 unless we divide by a constant != -1. Note that default
3231 conversion will have been performed on the operands at this
3232 point, so we have to dig out the original type to find out if
3233 it was unsigned. */
3234 shorten = ((TREE_CODE (op0) == NOP_EXPR
3235 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3236 || (TREE_CODE (op1) == INTEGER_CST
3237 && (TREE_INT_CST_LOW (op1) != -1
3238 || TREE_INT_CST_HIGH (op1) != -1)));
3239 common = 1;
3241 break;
3243 case BIT_AND_EXPR:
3244 case BIT_ANDTC_EXPR:
3245 case BIT_IOR_EXPR:
3246 case BIT_XOR_EXPR:
3247 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3248 shorten = -1;
3249 /* If one operand is a constant, and the other is a short type
3250 that has been converted to an int,
3251 really do the work in the short type and then convert the
3252 result to int. If we are lucky, the constant will be 0 or 1
3253 in the short type, making the entire operation go away. */
3254 if (TREE_CODE (op0) == INTEGER_CST
3255 && TREE_CODE (op1) == NOP_EXPR
3256 && TYPE_PRECISION (type1) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1, 0)))
3257 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op1, 0))))
3259 final_type = result_type;
3260 op1 = TREE_OPERAND (op1, 0);
3261 result_type = TREE_TYPE (op1);
3263 if (TREE_CODE (op1) == INTEGER_CST
3264 && TREE_CODE (op0) == NOP_EXPR
3265 && TYPE_PRECISION (type0) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))
3266 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3268 final_type = result_type;
3269 op0 = TREE_OPERAND (op0, 0);
3270 result_type = TREE_TYPE (op0);
3272 break;
3274 case TRUNC_MOD_EXPR:
3275 case FLOOR_MOD_EXPR:
3276 if (code1 == INTEGER_TYPE && integer_zerop (op1))
3277 cp_warning ("division by zero in `%E % 0'", op0);
3278 else if (code1 == REAL_TYPE && real_zerop (op1))
3279 cp_warning ("division by zero in `%E % 0.'", op0);
3281 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3283 /* Although it would be tempting to shorten always here, that loses
3284 on some targets, since the modulo instruction is undefined if the
3285 quotient can't be represented in the computation mode. We shorten
3286 only if unsigned or if dividing by something we know != -1. */
3287 shorten = ((TREE_CODE (op0) == NOP_EXPR
3288 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3289 || (TREE_CODE (op1) == INTEGER_CST
3290 && (TREE_INT_CST_LOW (op1) != -1
3291 || TREE_INT_CST_HIGH (op1) != -1)));
3292 common = 1;
3294 break;
3296 case TRUTH_ANDIF_EXPR:
3297 case TRUTH_ORIF_EXPR:
3298 case TRUTH_AND_EXPR:
3299 case TRUTH_OR_EXPR:
3300 result_type = boolean_type_node;
3301 break;
3303 /* Shift operations: result has same type as first operand;
3304 always convert second operand to int.
3305 Also set SHORT_SHIFT if shifting rightward. */
3307 case RSHIFT_EXPR:
3308 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3310 result_type = type0;
3311 if (TREE_CODE (op1) == INTEGER_CST)
3313 if (tree_int_cst_lt (op1, integer_zero_node))
3314 warning ("right shift count is negative");
3315 else
3317 if (TREE_INT_CST_LOW (op1) | TREE_INT_CST_HIGH (op1))
3318 short_shift = 1;
3319 if (TREE_INT_CST_HIGH (op1) != 0
3320 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
3321 >= TYPE_PRECISION (type0)))
3322 warning ("right shift count >= width of type");
3325 /* Convert the shift-count to an integer, regardless of
3326 size of value being shifted. */
3327 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3328 op1 = cp_convert (integer_type_node, op1);
3329 /* Avoid converting op1 to result_type later. */
3330 converted = 1;
3332 break;
3334 case LSHIFT_EXPR:
3335 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3337 result_type = type0;
3338 if (TREE_CODE (op1) == INTEGER_CST)
3340 if (tree_int_cst_lt (op1, integer_zero_node))
3341 warning ("left shift count is negative");
3342 else if (TREE_INT_CST_HIGH (op1) != 0
3343 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
3344 >= TYPE_PRECISION (type0)))
3345 warning ("left shift count >= width of type");
3347 /* Convert the shift-count to an integer, regardless of
3348 size of value being shifted. */
3349 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3350 op1 = cp_convert (integer_type_node, op1);
3351 /* Avoid converting op1 to result_type later. */
3352 converted = 1;
3354 break;
3356 case RROTATE_EXPR:
3357 case LROTATE_EXPR:
3358 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3360 result_type = type0;
3361 if (TREE_CODE (op1) == INTEGER_CST)
3363 if (tree_int_cst_lt (op1, integer_zero_node))
3364 warning ("%s rotate count is negative",
3365 (code == LROTATE_EXPR) ? "left" : "right");
3366 else if (TREE_INT_CST_HIGH (op1) != 0
3367 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
3368 >= TYPE_PRECISION (type0)))
3369 warning ("%s rotate count >= width of type",
3370 (code == LROTATE_EXPR) ? "left" : "right");
3372 /* Convert the shift-count to an integer, regardless of
3373 size of value being shifted. */
3374 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3375 op1 = cp_convert (integer_type_node, op1);
3377 break;
3379 case EQ_EXPR:
3380 case NE_EXPR:
3381 build_type = boolean_type_node;
3382 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3383 || code0 == COMPLEX_TYPE)
3384 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3385 || code1 == COMPLEX_TYPE))
3386 short_compare = 1;
3387 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3389 register tree tt0 = TYPE_MAIN_VARIANT (TREE_TYPE (type0));
3390 register tree tt1 = TYPE_MAIN_VARIANT (TREE_TYPE (type1));
3392 if (comp_target_types (type0, type1, 1))
3393 result_type = common_type (type0, type1);
3394 else if (tt0 == void_type_node)
3396 if (pedantic && TREE_CODE (tt1) == FUNCTION_TYPE
3397 && tree_int_cst_lt (TYPE_SIZE (type0), TYPE_SIZE (type1)))
3398 pedwarn ("ANSI C++ forbids comparison of `void *' with function pointer");
3399 else if (TREE_CODE (tt1) == OFFSET_TYPE)
3400 pedwarn ("ANSI C++ forbids conversion of a pointer to member to `void *'");
3402 else if (tt1 == void_type_node)
3404 if (pedantic && TREE_CODE (tt0) == FUNCTION_TYPE
3405 && tree_int_cst_lt (TYPE_SIZE (type1), TYPE_SIZE (type0)))
3406 pedwarn ("ANSI C++ forbids comparison of `void *' with function pointer");
3408 else
3409 cp_pedwarn ("comparison of distinct pointer types `%T' and `%T' lacks a cast",
3410 type0, type1);
3412 if (result_type == NULL_TREE)
3413 result_type = ptr_type_node;
3415 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
3416 && integer_zerop (op1))
3417 result_type = type0;
3418 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
3419 && integer_zerop (op0))
3420 result_type = type1;
3421 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3423 result_type = type0;
3424 error ("ANSI C++ forbids comparison between pointer and integer");
3426 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
3428 result_type = type1;
3429 error ("ANSI C++ forbids comparison between pointer and integer");
3431 else if (TYPE_PTRMEMFUNC_P (type0) && TREE_CODE (op1) == INTEGER_CST
3432 && integer_zerop (op1))
3434 op0 = build_component_ref (op0, index_identifier, NULL_TREE, 0);
3435 op1 = integer_zero_node;
3436 result_type = TREE_TYPE (op0);
3438 else if (TYPE_PTRMEMFUNC_P (type1) && TREE_CODE (op0) == INTEGER_CST
3439 && integer_zerop (op0))
3441 op0 = build_component_ref (op1, index_identifier, NULL_TREE, 0);
3442 op1 = integer_zero_node;
3443 result_type = TREE_TYPE (op0);
3445 else if (TYPE_PTRMEMFUNC_P (type0) && TYPE_PTRMEMFUNC_P (type1)
3446 && (TYPE_PTRMEMFUNC_FN_TYPE (type0)
3447 == TYPE_PTRMEMFUNC_FN_TYPE (type1)))
3449 /* The code we generate for the test is:
3451 (op0.index == op1.index
3452 && ((op1.index != -1 && op0.delta2 == op1.delta2)
3453 || op0.pfn == op1.pfn)) */
3455 tree index0 = build_component_ref (op0, index_identifier, NULL_TREE, 0);
3456 tree index1 = save_expr (build_component_ref (op1, index_identifier, NULL_TREE, 0));
3457 tree pfn0 = PFN_FROM_PTRMEMFUNC (op0);
3458 tree pfn1 = PFN_FROM_PTRMEMFUNC (op1);
3459 tree delta20 = DELTA2_FROM_PTRMEMFUNC (op0);
3460 tree delta21 = DELTA2_FROM_PTRMEMFUNC (op1);
3461 tree e1, e2, e3;
3462 tree integer_neg_one_node
3463 = build_binary_op (MINUS_EXPR, integer_zero_node, integer_one_node, 1);
3464 e1 = build_binary_op (EQ_EXPR, index0, index1, 1);
3465 e2 = build_binary_op (NE_EXPR, index1, integer_neg_one_node, 1);
3466 e2 = build_binary_op (TRUTH_ANDIF_EXPR, e2, build_binary_op (EQ_EXPR, delta20, delta21, 1), 1);
3467 e3 = build_binary_op (EQ_EXPR, pfn0, pfn1, 1);
3468 e2 = build_binary_op (TRUTH_ORIF_EXPR, e2, e3, 1);
3469 e2 = build_binary_op (TRUTH_ANDIF_EXPR, e1, e2, 1);
3470 if (code == EQ_EXPR)
3471 return e2;
3472 return build_binary_op (EQ_EXPR, e2, integer_zero_node, 1);
3474 else if (TYPE_PTRMEMFUNC_P (type0)
3475 && TYPE_PTRMEMFUNC_FN_TYPE (type0) == type1)
3477 tree index0 = build_component_ref (op0, index_identifier, NULL_TREE, 0);
3478 tree index1;
3479 tree pfn0 = PFN_FROM_PTRMEMFUNC (op0);
3480 tree delta20 = DELTA2_FROM_PTRMEMFUNC (op0);
3481 tree delta21 = integer_zero_node;
3482 tree e1, e2, e3;
3483 tree integer_neg_one_node
3484 = build_binary_op (MINUS_EXPR, integer_zero_node, integer_one_node, 1);
3485 if (TREE_CODE (TREE_OPERAND (op1, 0)) == FUNCTION_DECL
3486 && DECL_VINDEX (TREE_OPERAND (op1, 0)))
3488 /* Map everything down one to make room for the null pointer to member. */
3489 index1 = size_binop (PLUS_EXPR,
3490 DECL_VINDEX (TREE_OPERAND (op1, 0)),
3491 integer_one_node);
3492 op1 = integer_zero_node;
3493 delta21 = CLASSTYPE_VFIELD (TYPE_METHOD_BASETYPE (TREE_TYPE (type1)));
3494 delta21 = DECL_FIELD_BITPOS (delta21);
3495 delta21 = size_binop (FLOOR_DIV_EXPR, delta21, size_int (BITS_PER_UNIT));
3497 else
3498 index1 = integer_neg_one_node;
3500 tree nop1 = build1 (NOP_EXPR, TYPE_PTRMEMFUNC_FN_TYPE (type0), op1);
3501 TREE_CONSTANT (nop1) = TREE_CONSTANT (op1);
3502 op1 = nop1;
3504 e1 = build_binary_op (EQ_EXPR, index0, index1, 1);
3505 e2 = build_binary_op (NE_EXPR, index1, integer_neg_one_node, 1);
3506 e2 = build_binary_op (TRUTH_ANDIF_EXPR, e2, build_binary_op (EQ_EXPR, delta20, delta21, 1), 1);
3507 e3 = build_binary_op (EQ_EXPR, pfn0, op1, 1);
3508 e2 = build_binary_op (TRUTH_ORIF_EXPR, e2, e3, 1);
3509 e2 = build_binary_op (TRUTH_ANDIF_EXPR, e1, e2, 1);
3510 if (code == EQ_EXPR)
3511 return e2;
3512 return build_binary_op (EQ_EXPR, e2, integer_zero_node, 1);
3514 else if (TYPE_PTRMEMFUNC_P (type1)
3515 && TYPE_PTRMEMFUNC_FN_TYPE (type1) == type0)
3517 return build_binary_op (code, op1, op0, 1);
3519 break;
3521 case MAX_EXPR:
3522 case MIN_EXPR:
3523 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3524 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3525 shorten = 1;
3526 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3528 if (comp_target_types (type0, type1, 1))
3529 result_type = common_type (type0, type1);
3530 else
3532 cp_pedwarn ("comparison of distinct pointer types `%T' and `%T' lacks a cast",
3533 type0, type1);
3534 result_type = ptr_type_node;
3537 break;
3539 case LE_EXPR:
3540 case GE_EXPR:
3541 case LT_EXPR:
3542 case GT_EXPR:
3543 build_type = boolean_type_node;
3544 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3545 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3546 short_compare = 1;
3547 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3549 if (comp_target_types (type0, type1, 1))
3550 result_type = common_type (type0, type1);
3551 else
3553 cp_pedwarn ("comparison of distinct pointer types `%T' and `%T' lacks a cast",
3554 type0, type1);
3555 result_type = ptr_type_node;
3558 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
3559 && integer_zerop (op1))
3560 result_type = type0;
3561 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
3562 && integer_zerop (op0))
3563 result_type = type1;
3564 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
3566 result_type = type0;
3567 pedwarn ("ANSI C++ forbids comparison between pointer and integer");
3569 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
3571 result_type = type1;
3572 pedwarn ("ANSI C++ forbids comparison between pointer and integer");
3574 break;
3577 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
3579 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
3581 int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
3583 if (shorten || common || short_compare)
3584 result_type = common_type (type0, type1);
3586 /* For certain operations (which identify themselves by shorten != 0)
3587 if both args were extended from the same smaller type,
3588 do the arithmetic in that type and then extend.
3590 shorten !=0 and !=1 indicates a bitwise operation.
3591 For them, this optimization is safe only if
3592 both args are zero-extended or both are sign-extended.
3593 Otherwise, we might change the result.
3594 Eg, (short)-1 | (unsigned short)-1 is (int)-1
3595 but calculated in (unsigned short) it would be (unsigned short)-1. */
3597 if (shorten && none_complex)
3599 int unsigned0, unsigned1;
3600 tree arg0 = get_narrower (op0, &unsigned0);
3601 tree arg1 = get_narrower (op1, &unsigned1);
3602 /* UNS is 1 if the operation to be done is an unsigned one. */
3603 int uns = TREE_UNSIGNED (result_type);
3604 tree type;
3606 final_type = result_type;
3608 /* Handle the case that OP0 does not *contain* a conversion
3609 but it *requires* conversion to FINAL_TYPE. */
3611 if (op0 == arg0 && TREE_TYPE (op0) != final_type)
3612 unsigned0 = TREE_UNSIGNED (TREE_TYPE (op0));
3613 if (op1 == arg1 && TREE_TYPE (op1) != final_type)
3614 unsigned1 = TREE_UNSIGNED (TREE_TYPE (op1));
3616 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
3618 /* For bitwise operations, signedness of nominal type
3619 does not matter. Consider only how operands were extended. */
3620 if (shorten == -1)
3621 uns = unsigned0;
3623 /* Note that in all three cases below we refrain from optimizing
3624 an unsigned operation on sign-extended args.
3625 That would not be valid. */
3627 /* Both args variable: if both extended in same way
3628 from same width, do it in that width.
3629 Do it unsigned if args were zero-extended. */
3630 if ((TYPE_PRECISION (TREE_TYPE (arg0))
3631 < TYPE_PRECISION (result_type))
3632 && (TYPE_PRECISION (TREE_TYPE (arg1))
3633 == TYPE_PRECISION (TREE_TYPE (arg0)))
3634 && unsigned0 == unsigned1
3635 && (unsigned0 || !uns))
3636 result_type
3637 = signed_or_unsigned_type (unsigned0,
3638 common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
3639 else if (TREE_CODE (arg0) == INTEGER_CST
3640 && (unsigned1 || !uns)
3641 && (TYPE_PRECISION (TREE_TYPE (arg1))
3642 < TYPE_PRECISION (result_type))
3643 && (type = signed_or_unsigned_type (unsigned1,
3644 TREE_TYPE (arg1)),
3645 int_fits_type_p (arg0, type)))
3646 result_type = type;
3647 else if (TREE_CODE (arg1) == INTEGER_CST
3648 && (unsigned0 || !uns)
3649 && (TYPE_PRECISION (TREE_TYPE (arg0))
3650 < TYPE_PRECISION (result_type))
3651 && (type = signed_or_unsigned_type (unsigned0,
3652 TREE_TYPE (arg0)),
3653 int_fits_type_p (arg1, type)))
3654 result_type = type;
3657 /* Shifts can be shortened if shifting right. */
3659 if (short_shift)
3661 int unsigned_arg;
3662 tree arg0 = get_narrower (op0, &unsigned_arg);
3664 final_type = result_type;
3666 if (arg0 == op0 && final_type == TREE_TYPE (op0))
3667 unsigned_arg = TREE_UNSIGNED (TREE_TYPE (op0));
3669 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
3670 /* We can shorten only if the shift count is less than the
3671 number of bits in the smaller type size. */
3672 && TREE_INT_CST_HIGH (op1) == 0
3673 && TYPE_PRECISION (TREE_TYPE (arg0)) > TREE_INT_CST_LOW (op1)
3674 /* If arg is sign-extended and then unsigned-shifted,
3675 we can simulate this with a signed shift in arg's type
3676 only if the extended result is at least twice as wide
3677 as the arg. Otherwise, the shift could use up all the
3678 ones made by sign-extension and bring in zeros.
3679 We can't optimize that case at all, but in most machines
3680 it never happens because available widths are 2**N. */
3681 && (!TREE_UNSIGNED (final_type)
3682 || unsigned_arg
3683 || (((unsigned) 2 * TYPE_PRECISION (TREE_TYPE (arg0)))
3684 <= TYPE_PRECISION (result_type))))
3686 /* Do an unsigned shift if the operand was zero-extended. */
3687 result_type
3688 = signed_or_unsigned_type (unsigned_arg,
3689 TREE_TYPE (arg0));
3690 /* Convert value-to-be-shifted to that type. */
3691 if (TREE_TYPE (op0) != result_type)
3692 op0 = cp_convert (result_type, op0);
3693 converted = 1;
3697 /* Comparison operations are shortened too but differently.
3698 They identify themselves by setting short_compare = 1. */
3700 if (short_compare)
3702 /* Don't write &op0, etc., because that would prevent op0
3703 from being kept in a register.
3704 Instead, make copies of the our local variables and
3705 pass the copies by reference, then copy them back afterward. */
3706 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
3707 enum tree_code xresultcode = resultcode;
3708 tree val
3709 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
3710 if (val != 0)
3711 return cp_convert (boolean_type_node, val);
3712 op0 = xop0, op1 = xop1;
3713 converted = 1;
3714 resultcode = xresultcode;
3717 if (short_compare && warn_sign_compare)
3719 int op0_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op0));
3720 int op1_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op1));
3722 int unsignedp0, unsignedp1;
3723 tree primop0 = get_narrower (op0, &unsignedp0);
3724 tree primop1 = get_narrower (op1, &unsignedp1);
3726 /* Check for comparison of different enum types. */
3727 if (flag_int_enum_equivalence == 0
3728 && TREE_CODE (TREE_TYPE (orig_op0)) == ENUMERAL_TYPE
3729 && TREE_CODE (TREE_TYPE (orig_op1)) == ENUMERAL_TYPE
3730 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0))
3731 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1)))
3733 cp_warning ("comparison between `%#T' and `%#T'",
3734 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1));
3737 /* Give warnings for comparisons between signed and unsigned
3738 quantities that may fail. */
3739 /* Do the checking based on the original operand trees, so that
3740 casts will be considered, but default promotions won't be. */
3742 /* Do not warn if the comparison is being done in a signed type,
3743 since the signed type will only be chosen if it can represent
3744 all the values of the unsigned type. */
3745 if (! TREE_UNSIGNED (result_type))
3746 /* OK */;
3747 /* Do not warn if both operands are unsigned. */
3748 else if (op0_signed == op1_signed)
3749 /* OK */;
3750 /* Do not warn if the signed quantity is an unsuffixed
3751 integer literal (or some static constant expression
3752 involving such literals) and it is non-negative. */
3753 else if ((op0_signed && TREE_CODE (orig_op0) == INTEGER_CST
3754 && tree_int_cst_sgn (orig_op0) >= 0)
3755 || (op1_signed && TREE_CODE (orig_op1) == INTEGER_CST
3756 && tree_int_cst_sgn (orig_op1) >= 0))
3757 /* OK */;
3758 /* Do not warn if the comparison is an equality operation,
3759 the unsigned quantity is an integral constant and it does
3760 not use the most significant bit of result_type. */
3761 else if ((resultcode == EQ_EXPR || resultcode == NE_EXPR)
3762 && ((op0_signed && TREE_CODE (orig_op1) == INTEGER_CST
3763 && int_fits_type_p (orig_op1, signed_type (result_type))
3764 || (op1_signed && TREE_CODE (orig_op0) == INTEGER_CST
3765 && int_fits_type_p (orig_op0, signed_type (result_type))))))
3766 /* OK */;
3767 else
3768 warning ("comparison between signed and unsigned");
3770 /* Warn if two unsigned values are being compared in a size
3771 larger than their original size, and one (and only one) is the
3772 result of a `~' operator. This comparison will always fail.
3774 Also warn if one operand is a constant, and the constant does not
3775 have all bits set that are set in the ~ operand when it is
3776 extended. */
3778 if ((TREE_CODE (primop0) == BIT_NOT_EXPR)
3779 ^ (TREE_CODE (primop1) == BIT_NOT_EXPR))
3781 if (TREE_CODE (primop0) == BIT_NOT_EXPR)
3782 primop0 = get_narrower (TREE_OPERAND (op0, 0), &unsignedp0);
3783 if (TREE_CODE (primop1) == BIT_NOT_EXPR)
3784 primop1 = get_narrower (TREE_OPERAND (op1, 0), &unsignedp1);
3786 if (TREE_CODE (primop0) == INTEGER_CST
3787 || TREE_CODE (primop1) == INTEGER_CST)
3789 tree primop;
3790 HOST_WIDE_INT constant, mask;
3791 int unsignedp;
3792 unsigned bits;
3794 if (TREE_CODE (primop0) == INTEGER_CST)
3796 primop = primop1;
3797 unsignedp = unsignedp1;
3798 constant = TREE_INT_CST_LOW (primop0);
3800 else
3802 primop = primop0;
3803 unsignedp = unsignedp0;
3804 constant = TREE_INT_CST_LOW (primop1);
3807 bits = TYPE_PRECISION (TREE_TYPE (primop));
3808 if (bits < TYPE_PRECISION (result_type)
3809 && bits < HOST_BITS_PER_LONG && unsignedp)
3811 mask = (~ (HOST_WIDE_INT) 0) << bits;
3812 if ((mask & constant) != mask)
3813 warning ("comparison of promoted ~unsigned with constant");
3816 else if (unsignedp0 && unsignedp1
3817 && (TYPE_PRECISION (TREE_TYPE (primop0))
3818 < TYPE_PRECISION (result_type))
3819 && (TYPE_PRECISION (TREE_TYPE (primop1))
3820 < TYPE_PRECISION (result_type)))
3821 warning ("comparison of promoted ~unsigned with unsigned");
3826 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
3827 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
3828 Then the expression will be built.
3829 It will be given type FINAL_TYPE if that is nonzero;
3830 otherwise, it will be given type RESULT_TYPE. */
3832 if (!result_type)
3834 cp_error ("invalid operands `%T' and `%T' to binary `%O'",
3835 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1), error_code);
3836 return error_mark_node;
3839 if (! converted)
3841 if (TREE_TYPE (op0) != result_type)
3842 op0 = cp_convert (result_type, op0);
3843 if (TREE_TYPE (op1) != result_type)
3844 op1 = cp_convert (result_type, op1);
3847 if (build_type == NULL_TREE)
3848 build_type = result_type;
3851 register tree result = build (resultcode, build_type, op0, op1);
3852 register tree folded;
3854 folded = fold (result);
3855 if (folded == result)
3856 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
3857 if (final_type != 0)
3858 return cp_convert (final_type, folded);
3859 return folded;
3863 /* Return a tree for the sum or difference (RESULTCODE says which)
3864 of pointer PTROP and integer INTOP. */
3866 static tree
3867 pointer_int_sum (resultcode, ptrop, intop)
3868 enum tree_code resultcode;
3869 register tree ptrop, intop;
3871 tree size_exp;
3873 register tree result;
3874 register tree folded = fold (intop);
3876 /* The result is a pointer of the same type that is being added. */
3878 register tree result_type = TREE_TYPE (ptrop);
3880 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
3882 if (pedantic || warn_pointer_arith)
3883 pedwarn ("ANSI C++ forbids using pointer of type `void *' in arithmetic");
3884 size_exp = integer_one_node;
3886 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
3888 if (pedantic || warn_pointer_arith)
3889 pedwarn ("ANSI C++ forbids using pointer to a function in arithmetic");
3890 size_exp = integer_one_node;
3892 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
3894 if (pedantic || warn_pointer_arith)
3895 pedwarn ("ANSI C++ forbids using pointer to a method in arithmetic");
3896 size_exp = integer_one_node;
3898 else if (TREE_CODE (TREE_TYPE (result_type)) == OFFSET_TYPE)
3900 if (pedantic || warn_pointer_arith)
3901 pedwarn ("ANSI C++ forbids using pointer to a member in arithmetic");
3902 size_exp = integer_one_node;
3904 else
3905 size_exp = size_in_bytes (complete_type (TREE_TYPE (result_type)));
3907 /* Needed to make OOPS V2R3 work. */
3908 intop = folded;
3909 if (TREE_CODE (intop) == INTEGER_CST
3910 && TREE_INT_CST_LOW (intop) == 0
3911 && TREE_INT_CST_HIGH (intop) == 0)
3912 return ptrop;
3914 /* If what we are about to multiply by the size of the elements
3915 contains a constant term, apply distributive law
3916 and multiply that constant term separately.
3917 This helps produce common subexpressions. */
3919 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
3920 && ! TREE_CONSTANT (intop)
3921 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
3922 && TREE_CONSTANT (size_exp))
3924 enum tree_code subcode = resultcode;
3925 if (TREE_CODE (intop) == MINUS_EXPR)
3926 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
3927 ptrop = build_binary_op (subcode, ptrop, TREE_OPERAND (intop, 1), 1);
3928 intop = TREE_OPERAND (intop, 0);
3931 /* Convert the integer argument to a type the same size as sizetype
3932 so the multiply won't overflow spuriously. */
3934 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype))
3935 intop = cp_convert (type_for_size (TYPE_PRECISION (sizetype), 0), intop);
3937 /* Replace the integer argument with a suitable product by the object size.
3938 Do this multiplication as signed, then convert to the appropriate
3939 pointer type (actually unsigned integral). */
3941 intop = cp_convert (result_type,
3942 build_binary_op (MULT_EXPR, intop,
3943 cp_convert (TREE_TYPE (intop), size_exp), 1));
3945 /* Create the sum or difference. */
3947 result = build (resultcode, result_type, ptrop, intop);
3949 folded = fold (result);
3950 if (folded == result)
3951 TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
3952 return folded;
3955 /* Return a tree for the difference of pointers OP0 and OP1.
3956 The resulting tree has type int. */
3958 static tree
3959 pointer_diff (op0, op1)
3960 register tree op0, op1;
3962 register tree result, folded;
3963 tree restype = ptrdiff_type_node;
3964 tree target_type = TREE_TYPE (TREE_TYPE (op0));
3966 if (pedantic || warn_pointer_arith)
3968 if (TREE_CODE (target_type) == VOID_TYPE)
3969 pedwarn ("ANSI C++ forbids using pointer of type `void *' in subtraction");
3970 if (TREE_CODE (target_type) == FUNCTION_TYPE)
3971 pedwarn ("ANSI C++ forbids using pointer to a function in subtraction");
3972 if (TREE_CODE (target_type) == METHOD_TYPE)
3973 pedwarn ("ANSI C++ forbids using pointer to a method in subtraction");
3974 if (TREE_CODE (target_type) == OFFSET_TYPE)
3975 pedwarn ("ANSI C++ forbids using pointer to a member in subtraction");
3978 /* First do the subtraction as integers;
3979 then drop through to build the divide operator. */
3981 op0 = build_binary_op (MINUS_EXPR,
3982 cp_convert (restype, op0), cp_convert (restype, op1), 1);
3984 /* This generates an error if op1 is a pointer to an incomplete type. */
3985 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (op1))) == 0)
3986 error ("arithmetic on pointer to an incomplete type");
3988 op1 = ((TREE_CODE (target_type) == VOID_TYPE
3989 || TREE_CODE (target_type) == FUNCTION_TYPE
3990 || TREE_CODE (target_type) == METHOD_TYPE
3991 || TREE_CODE (target_type) == OFFSET_TYPE)
3992 ? integer_one_node
3993 : size_in_bytes (target_type));
3995 /* Do the division. */
3997 result = build (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
3999 folded = fold (result);
4000 if (folded == result)
4001 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
4002 return folded;
4005 /* Handle the case of taking the address of a COMPONENT_REF.
4006 Called by `build_unary_op' and `build_up_reference'.
4008 ARG is the COMPONENT_REF whose address we want.
4009 ARGTYPE is the pointer type that this address should have.
4010 MSG is an error message to print if this COMPONENT_REF is not
4011 addressable (such as a bitfield). */
4013 tree
4014 build_component_addr (arg, argtype, msg)
4015 tree arg, argtype;
4016 char *msg;
4018 tree field = TREE_OPERAND (arg, 1);
4019 tree basetype = decl_type_context (field);
4020 tree rval = build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0), 0);
4022 if (DECL_BIT_FIELD (field))
4024 error (msg, IDENTIFIER_POINTER (DECL_NAME (field)));
4025 return error_mark_node;
4028 if (TREE_CODE (field) == FIELD_DECL
4029 && TYPE_USES_COMPLEX_INHERITANCE (basetype))
4031 /* Can't convert directly to ARGTYPE, since that
4032 may have the same pointer type as one of our
4033 baseclasses. */
4034 rval = build1 (NOP_EXPR, argtype,
4035 convert_pointer_to (basetype, rval));
4036 TREE_CONSTANT (rval) = TREE_CONSTANT (TREE_OPERAND (rval, 0));
4038 else
4039 /* This conversion is harmless. */
4040 rval = convert_force (argtype, rval, 0);
4042 if (! integer_zerop (DECL_FIELD_BITPOS (field)))
4044 tree offset = size_binop (EASY_DIV_EXPR, DECL_FIELD_BITPOS (field),
4045 size_int (BITS_PER_UNIT));
4046 int flag = TREE_CONSTANT (rval);
4047 rval = fold (build (PLUS_EXPR, argtype,
4048 rval, cp_convert (argtype, offset)));
4049 TREE_CONSTANT (rval) = flag;
4051 return rval;
4054 /* Construct and perhaps optimize a tree representation
4055 for a unary operation. CODE, a tree_code, specifies the operation
4056 and XARG is the operand. */
4058 tree
4059 build_x_unary_op (code, xarg)
4060 enum tree_code code;
4061 tree xarg;
4063 if (processing_template_decl)
4064 return build_min_nt (code, xarg, NULL_TREE);
4066 /* & rec, on incomplete RECORD_TYPEs is the simple opr &, not an
4067 error message. */
4068 if (code == ADDR_EXPR
4069 && TREE_CODE (xarg) != TEMPLATE_ID_EXPR
4070 && ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (xarg)))
4071 && TYPE_SIZE (TREE_TYPE (xarg)) == NULL_TREE)
4072 || (TREE_CODE (xarg) == OFFSET_REF)))
4073 /* don't look for a function */;
4074 else
4076 tree rval;
4078 if (flag_ansi_overloading)
4080 rval = build_new_op (code, LOOKUP_NORMAL, xarg,
4081 NULL_TREE, NULL_TREE);
4082 if (rval || code != ADDR_EXPR)
4083 return rval;
4085 else
4087 rval = build_opfncall (code, LOOKUP_SPECULATIVELY, xarg,
4088 NULL_TREE, NULL_TREE);
4089 if (rval)
4090 return build_opfncall (code, LOOKUP_NORMAL, xarg,
4091 NULL_TREE, NULL_TREE);
4095 if (code == ADDR_EXPR)
4097 if (TREE_CODE (xarg) == TARGET_EXPR)
4098 warning ("taking address of temporary");
4101 return build_unary_op (code, xarg, 0);
4104 /* Just like truthvalue_conversion, but we want a CLEANUP_POINT_EXPR. */
4106 tree
4107 condition_conversion (expr)
4108 tree expr;
4110 tree t;
4111 if (processing_template_decl)
4112 return expr;
4113 t = cp_convert (boolean_type_node, expr);
4114 t = fold (build1 (CLEANUP_POINT_EXPR, boolean_type_node, t));
4115 return t;
4118 /* C++: Must handle pointers to members.
4120 Perhaps type instantiation should be extended to handle conversion
4121 from aggregates to types we don't yet know we want? (Or are those
4122 cases typically errors which should be reported?)
4124 NOCONVERT nonzero suppresses the default promotions
4125 (such as from short to int). */
4127 tree
4128 build_unary_op (code, xarg, noconvert)
4129 enum tree_code code;
4130 tree xarg;
4131 int noconvert;
4133 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
4134 register tree arg = xarg;
4135 register tree argtype = 0;
4136 char *errstring = NULL;
4137 tree val;
4139 if (arg == error_mark_node)
4140 return error_mark_node;
4142 switch (code)
4144 case CONVERT_EXPR:
4145 /* This is used for unary plus, because a CONVERT_EXPR
4146 is enough to prevent anybody from looking inside for
4147 associativity, but won't generate any code. */
4148 if (!(arg = build_expr_type_conversion
4149 (WANT_ARITH | WANT_ENUM | WANT_POINTER, arg, 1)))
4150 errstring = "wrong type argument to unary plus";
4151 else
4153 if (!noconvert)
4154 arg = default_conversion (arg);
4155 arg = build1 (NON_LVALUE_EXPR, TREE_TYPE (arg), arg);
4157 break;
4159 case NEGATE_EXPR:
4160 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, 1)))
4161 errstring = "wrong type argument to unary minus";
4162 else if (!noconvert)
4163 arg = default_conversion (arg);
4164 break;
4166 case BIT_NOT_EXPR:
4167 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
4169 code = CONJ_EXPR;
4170 if (!noconvert)
4171 arg = default_conversion (arg);
4173 else if (!(arg = build_expr_type_conversion (WANT_INT | WANT_ENUM,
4174 arg, 1)))
4175 errstring = "wrong type argument to bit-complement";
4176 else if (!noconvert)
4177 arg = default_conversion (arg);
4178 break;
4180 case ABS_EXPR:
4181 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, 1)))
4182 errstring = "wrong type argument to abs";
4183 else if (!noconvert)
4184 arg = default_conversion (arg);
4185 break;
4187 case CONJ_EXPR:
4188 /* Conjugating a real value is a no-op, but allow it anyway. */
4189 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_ENUM, arg, 1)))
4190 errstring = "wrong type argument to conjugation";
4191 else if (!noconvert)
4192 arg = default_conversion (arg);
4193 break;
4195 case TRUTH_NOT_EXPR:
4196 arg = cp_convert (boolean_type_node, arg);
4197 val = invert_truthvalue (arg);
4198 if (arg != error_mark_node)
4199 return val;
4200 errstring = "in argument to unary !";
4201 break;
4203 case NOP_EXPR:
4204 break;
4206 case REALPART_EXPR:
4207 if (TREE_CODE (arg) == COMPLEX_CST)
4208 return TREE_REALPART (arg);
4209 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
4210 return fold (build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
4211 else
4212 return arg;
4214 case IMAGPART_EXPR:
4215 if (TREE_CODE (arg) == COMPLEX_CST)
4216 return TREE_IMAGPART (arg);
4217 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
4218 return fold (build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
4219 else
4220 return cp_convert (TREE_TYPE (arg), integer_zero_node);
4222 case PREINCREMENT_EXPR:
4223 case POSTINCREMENT_EXPR:
4224 case PREDECREMENT_EXPR:
4225 case POSTDECREMENT_EXPR:
4226 /* Handle complex lvalues (when permitted)
4227 by reduction to simpler cases. */
4229 val = unary_complex_lvalue (code, arg);
4230 if (val != 0)
4231 return val;
4233 /* Increment or decrement the real part of the value,
4234 and don't change the imaginary part. */
4235 if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
4237 tree real, imag;
4239 arg = stabilize_reference (arg);
4240 real = build_unary_op (REALPART_EXPR, arg, 1);
4241 imag = build_unary_op (IMAGPART_EXPR, arg, 1);
4242 return build (COMPLEX_EXPR, TREE_TYPE (arg),
4243 build_unary_op (code, real, 1), imag);
4246 /* Report invalid types. */
4248 if (!(arg = build_expr_type_conversion (WANT_ARITH | WANT_POINTER,
4249 arg, 1)))
4251 if (code == PREINCREMENT_EXPR)
4252 errstring ="no pre-increment operator for type";
4253 else if (code == POSTINCREMENT_EXPR)
4254 errstring ="no post-increment operator for type";
4255 else if (code == PREDECREMENT_EXPR)
4256 errstring ="no pre-decrement operator for type";
4257 else
4258 errstring ="no post-decrement operator for type";
4259 break;
4262 /* Report something read-only. */
4264 if (TYPE_READONLY (TREE_TYPE (arg))
4265 || TREE_READONLY (arg))
4266 readonly_error (arg, ((code == PREINCREMENT_EXPR
4267 || code == POSTINCREMENT_EXPR)
4268 ? "increment" : "decrement"),
4272 register tree inc;
4273 tree result_type = TREE_TYPE (arg);
4275 arg = get_unwidened (arg, 0);
4276 argtype = TREE_TYPE (arg);
4278 /* ARM $5.2.5 last annotation says this should be forbidden. */
4279 if (TREE_CODE (argtype) == ENUMERAL_TYPE)
4280 pedwarn ("ANSI C++ forbids %sing an enum",
4281 (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
4282 ? "increment" : "decrement");
4284 /* Compute the increment. */
4286 if (TREE_CODE (argtype) == POINTER_TYPE)
4288 enum tree_code tmp = TREE_CODE (TREE_TYPE (argtype));
4289 if (TYPE_SIZE (complete_type (TREE_TYPE (argtype))) == 0)
4290 cp_error ("cannot %s a pointer to incomplete type `%T'",
4291 ((code == PREINCREMENT_EXPR
4292 || code == POSTINCREMENT_EXPR)
4293 ? "increment" : "decrement"), TREE_TYPE (argtype));
4294 else if (tmp == FUNCTION_TYPE || tmp == METHOD_TYPE
4295 || tmp == VOID_TYPE || tmp == OFFSET_TYPE)
4296 cp_pedwarn ("ANSI C++ forbids %sing a pointer of type `%T'",
4297 ((code == PREINCREMENT_EXPR
4298 || code == POSTINCREMENT_EXPR)
4299 ? "increment" : "decrement"), argtype);
4300 inc = c_sizeof_nowarn (TREE_TYPE (argtype));
4302 else
4303 inc = integer_one_node;
4305 inc = cp_convert (argtype, inc);
4307 /* Handle incrementing a cast-expression. */
4309 switch (TREE_CODE (arg))
4311 case NOP_EXPR:
4312 case CONVERT_EXPR:
4313 case FLOAT_EXPR:
4314 case FIX_TRUNC_EXPR:
4315 case FIX_FLOOR_EXPR:
4316 case FIX_ROUND_EXPR:
4317 case FIX_CEIL_EXPR:
4319 tree incremented, modify, value, compound;
4320 if (! lvalue_p (arg) && pedantic)
4321 pedwarn ("cast to non-reference type used as lvalue");
4322 arg = stabilize_reference (arg);
4323 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
4324 value = arg;
4325 else
4326 value = save_expr (arg);
4327 incremented = build (((code == PREINCREMENT_EXPR
4328 || code == POSTINCREMENT_EXPR)
4329 ? PLUS_EXPR : MINUS_EXPR),
4330 argtype, value, inc);
4331 TREE_SIDE_EFFECTS (incremented) = 1;
4333 modify = build_modify_expr (arg, NOP_EXPR, incremented);
4334 compound = build (COMPOUND_EXPR, TREE_TYPE (arg), modify, value);
4336 /* Eliminate warning about unused result of + or -. */
4337 TREE_NO_UNUSED_WARNING (compound) = 1;
4338 return compound;
4342 /* Complain about anything else that is not a true lvalue. */
4343 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
4344 || code == POSTINCREMENT_EXPR)
4345 ? "increment" : "decrement")))
4346 return error_mark_node;
4348 /* Forbid using -- on `bool'. */
4349 if (TREE_TYPE (arg) == boolean_type_node)
4351 if (code == POSTDECREMENT_EXPR || code == PREDECREMENT_EXPR)
4353 cp_error ("invalid use of `--' on bool variable `%D'", arg);
4354 return error_mark_node;
4356 #if 0
4357 /* This will only work if someone can convince Kenner to accept
4358 my patch to expand_increment. (jason) */
4359 val = build (code, TREE_TYPE (arg), arg, inc);
4360 #else
4361 if (code == POSTINCREMENT_EXPR)
4363 arg = stabilize_reference (arg);
4364 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg,
4365 boolean_true_node);
4366 TREE_SIDE_EFFECTS (val) = 1;
4367 arg = save_expr (arg);
4368 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4369 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4371 else
4372 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg,
4373 boolean_true_node);
4374 #endif
4376 else
4377 val = build (code, TREE_TYPE (arg), arg, inc);
4379 TREE_SIDE_EFFECTS (val) = 1;
4380 return cp_convert (result_type, val);
4383 case ADDR_EXPR:
4384 /* Note that this operation never does default_conversion
4385 regardless of NOCONVERT. */
4387 argtype = TREE_TYPE (arg);
4388 if (TREE_CODE (argtype) == REFERENCE_TYPE)
4390 arg = build1
4391 (CONVERT_EXPR,
4392 build_pointer_type (TREE_TYPE (TREE_TYPE (arg))), arg);
4393 TREE_CONSTANT (arg) = TREE_CONSTANT (TREE_OPERAND (arg, 0));
4394 return arg;
4396 else if (pedantic
4397 && TREE_CODE (arg) == FUNCTION_DECL
4398 && DECL_NAME (arg)
4399 && DECL_CONTEXT (arg) == NULL_TREE
4400 && IDENTIFIER_LENGTH (DECL_NAME (arg)) == 4
4401 && IDENTIFIER_POINTER (DECL_NAME (arg))[0] == 'm'
4402 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (arg)), "main"))
4403 /* ARM $3.4 */
4404 pedwarn ("taking address of function `main'");
4406 /* Let &* cancel out to simplify resulting code. */
4407 if (TREE_CODE (arg) == INDIRECT_REF)
4409 /* We don't need to have `current_class_ptr' wrapped in a
4410 NON_LVALUE_EXPR node. */
4411 if (arg == current_class_ref)
4412 return current_class_ptr;
4414 arg = TREE_OPERAND (arg, 0);
4415 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
4417 arg = build1
4418 (CONVERT_EXPR,
4419 build_pointer_type (TREE_TYPE (TREE_TYPE (arg))), arg);
4420 TREE_CONSTANT (arg) = TREE_CONSTANT (TREE_OPERAND (arg, 0));
4422 else if (lvalue_p (arg))
4423 /* Don't let this be an lvalue. */
4424 return non_lvalue (arg);
4425 return arg;
4428 /* For &x[y], return x+y */
4429 if (TREE_CODE (arg) == ARRAY_REF)
4431 if (mark_addressable (TREE_OPERAND (arg, 0)) == 0)
4432 return error_mark_node;
4433 return build_binary_op (PLUS_EXPR, TREE_OPERAND (arg, 0),
4434 TREE_OPERAND (arg, 1), 1);
4437 /* Uninstantiated types are all functions. Taking the
4438 address of a function is a no-op, so just return the
4439 argument. */
4441 if (TREE_CODE (arg) == IDENTIFIER_NODE
4442 && IDENTIFIER_OPNAME_P (arg))
4444 my_friendly_abort (117);
4445 /* We don't know the type yet, so just work around the problem.
4446 We know that this will resolve to an lvalue. */
4447 return build1 (ADDR_EXPR, unknown_type_node, arg);
4450 if (TREE_CODE (arg) == TREE_LIST)
4452 if (TREE_CODE (TREE_VALUE (arg)) == FUNCTION_DECL
4453 && DECL_CHAIN (TREE_VALUE (arg)) == NULL_TREE)
4454 /* Unique overloaded non-member function. */
4455 return build_unary_op (ADDR_EXPR, TREE_VALUE (arg), 0);
4456 if (TREE_CHAIN (arg) == NULL_TREE
4457 && TREE_CODE (TREE_VALUE (arg)) == TREE_LIST
4458 && DECL_CHAIN (TREE_VALUE (TREE_VALUE (arg))) == NULL_TREE)
4459 /* Unique overloaded member function. */
4460 return build_unary_op (ADDR_EXPR, TREE_VALUE (TREE_VALUE (arg)),
4462 return build1 (ADDR_EXPR, unknown_type_node, arg);
4464 else if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
4466 tree targs;
4467 tree fn;
4469 /* We don't require a match here; it's possible that the
4470 context (like a cast to a particular type) will resolve
4471 the particular choice of template. */
4472 fn = determine_explicit_specialization (arg, NULL_TREE,
4473 &targs,
4474 0, 0);
4476 if (fn)
4478 fn = instantiate_template (fn, targs);
4479 mark_addressable (fn);
4480 return build_unary_op (ADDR_EXPR, fn, 0);
4483 return build1 (ADDR_EXPR, unknown_type_node, arg);
4486 /* Handle complex lvalues (when permitted)
4487 by reduction to simpler cases. */
4488 val = unary_complex_lvalue (code, arg);
4489 if (val != 0)
4490 return val;
4492 switch (TREE_CODE (arg))
4494 case NOP_EXPR:
4495 case CONVERT_EXPR:
4496 case FLOAT_EXPR:
4497 case FIX_TRUNC_EXPR:
4498 case FIX_FLOOR_EXPR:
4499 case FIX_ROUND_EXPR:
4500 case FIX_CEIL_EXPR:
4501 if (! lvalue_p (arg) && pedantic)
4502 pedwarn ("taking the address of a cast to non-reference type");
4505 /* Allow the address of a constructor if all the elements
4506 are constant. */
4507 if (TREE_CODE (arg) == CONSTRUCTOR && TREE_CONSTANT (arg))
4509 /* Anything not already handled and not a true memory reference
4510 is an error. */
4511 else if (TREE_CODE (argtype) != FUNCTION_TYPE
4512 && TREE_CODE (argtype) != METHOD_TYPE
4513 && !lvalue_or_else (arg, "unary `&'"))
4514 return error_mark_node;
4516 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
4517 /* If the lvalue is const or volatile,
4518 merge that into the type that the address will point to. */
4519 if (TREE_CODE_CLASS (TREE_CODE (arg)) == 'd'
4520 || TREE_CODE_CLASS (TREE_CODE (arg)) == 'r')
4522 if (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg))
4523 argtype = cp_build_type_variant (argtype,
4524 TREE_READONLY (arg),
4525 TREE_THIS_VOLATILE (arg));
4528 argtype = build_pointer_type (argtype);
4530 if (mark_addressable (arg) == 0)
4531 return error_mark_node;
4534 tree addr;
4536 if (TREE_CODE (arg) == COMPONENT_REF)
4537 addr = build_component_addr (arg, argtype,
4538 "attempt to take address of bit-field structure member `%s'");
4539 else
4540 addr = build1 (code, argtype, arg);
4542 /* Address of a static or external variable or
4543 function counts as a constant */
4544 if (staticp (arg))
4545 TREE_CONSTANT (addr) = 1;
4547 if (TREE_CODE (argtype) == POINTER_TYPE
4548 && TREE_CODE (TREE_TYPE (argtype)) == METHOD_TYPE)
4550 build_ptrmemfunc_type (argtype);
4551 addr = build_ptrmemfunc (argtype, addr, 0);
4554 return addr;
4558 if (!errstring)
4560 if (argtype == 0)
4561 argtype = TREE_TYPE (arg);
4562 return fold (build1 (code, argtype, arg));
4565 error (errstring);
4566 return error_mark_node;
4569 #if 0
4570 /* If CONVERSIONS is a conversion expression or a nested sequence of such,
4571 convert ARG with the same conversions in the same order
4572 and return the result. */
4574 static tree
4575 convert_sequence (conversions, arg)
4576 tree conversions;
4577 tree arg;
4579 switch (TREE_CODE (conversions))
4581 case NOP_EXPR:
4582 case CONVERT_EXPR:
4583 case FLOAT_EXPR:
4584 case FIX_TRUNC_EXPR:
4585 case FIX_FLOOR_EXPR:
4586 case FIX_ROUND_EXPR:
4587 case FIX_CEIL_EXPR:
4588 return cp_convert (TREE_TYPE (conversions),
4589 convert_sequence (TREE_OPERAND (conversions, 0),
4590 arg));
4592 default:
4593 return arg;
4596 #endif
4598 /* Apply unary lvalue-demanding operator CODE to the expression ARG
4599 for certain kinds of expressions which are not really lvalues
4600 but which we can accept as lvalues.
4602 If ARG is not a kind of expression we can handle, return zero. */
4604 tree
4605 unary_complex_lvalue (code, arg)
4606 enum tree_code code;
4607 tree arg;
4609 /* Handle (a, b) used as an "lvalue". */
4610 if (TREE_CODE (arg) == COMPOUND_EXPR)
4612 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 1), 0);
4613 return build (COMPOUND_EXPR, TREE_TYPE (real_result),
4614 TREE_OPERAND (arg, 0), real_result);
4617 /* Handle (a ? b : c) used as an "lvalue". */
4618 if (TREE_CODE (arg) == COND_EXPR
4619 || TREE_CODE (arg) == MIN_EXPR || TREE_CODE (arg) == MAX_EXPR)
4620 return rationalize_conditional_expr (code, arg);
4622 if (TREE_CODE (arg) == MODIFY_EXPR
4623 || TREE_CODE (arg) == PREINCREMENT_EXPR
4624 || TREE_CODE (arg) == PREDECREMENT_EXPR)
4625 return unary_complex_lvalue
4626 (code, build (COMPOUND_EXPR, TREE_TYPE (TREE_OPERAND (arg, 0)),
4627 arg, TREE_OPERAND (arg, 0)));
4629 if (code != ADDR_EXPR)
4630 return 0;
4632 /* Handle (a = b) used as an "lvalue" for `&'. */
4633 if (TREE_CODE (arg) == MODIFY_EXPR
4634 || TREE_CODE (arg) == INIT_EXPR)
4636 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 0), 0);
4637 arg = build (COMPOUND_EXPR, TREE_TYPE (real_result), arg, real_result);
4638 TREE_NO_UNUSED_WARNING (arg) = 1;
4639 return arg;
4642 if (TREE_CODE (TREE_TYPE (arg)) == FUNCTION_TYPE
4643 || TREE_CODE (TREE_TYPE (arg)) == METHOD_TYPE
4644 || TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE)
4646 /* The representation of something of type OFFSET_TYPE
4647 is really the representation of a pointer to it.
4648 Here give the representation its true type. */
4649 tree t;
4651 my_friendly_assert (TREE_CODE (arg) != SCOPE_REF, 313);
4653 if (TREE_CODE (arg) != OFFSET_REF)
4654 return 0;
4656 t = TREE_OPERAND (arg, 1);
4658 if (TREE_CODE (t) == FUNCTION_DECL) /* Check all this code for right semantics. */
4659 return build_unary_op (ADDR_EXPR, t, 0);
4660 if (TREE_CODE (t) == VAR_DECL)
4661 return build_unary_op (ADDR_EXPR, t, 0);
4662 else
4664 tree type;
4665 tree offset = integer_zero_node;
4667 if (TREE_OPERAND (arg, 0)
4668 && (TREE_CODE (TREE_OPERAND (arg, 0)) != NOP_EXPR
4669 || TREE_OPERAND (TREE_OPERAND (arg, 0), 0) != error_mark_node))
4670 if (TREE_CODE (t) != FIELD_DECL)
4672 /* Don't know if this should return address to just
4673 _DECL, or actual address resolved in this expression. */
4674 sorry ("address of bound pointer-to-member expression");
4675 return error_mark_node;
4678 type = TREE_TYPE (TREE_OPERAND (arg, 0));
4680 if (TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE)
4682 /* Add in the offset to the intermediate subobject, if any. */
4683 offset = get_delta_difference (TYPE_OFFSET_BASETYPE (TREE_TYPE (arg)),
4684 type,
4686 type = TYPE_OFFSET_BASETYPE (TREE_TYPE (arg));
4689 /* Now in the offset to the final subobject. */
4690 offset = size_binop (PLUS_EXPR,
4691 offset,
4692 get_delta_difference (DECL_FIELD_CONTEXT (t),
4693 type,
4694 0));
4696 /* Add in the offset to the field. */
4697 offset = size_binop (PLUS_EXPR, offset,
4698 size_binop (EASY_DIV_EXPR,
4699 DECL_FIELD_BITPOS (t),
4700 size_int (BITS_PER_UNIT)));
4702 /* We offset all pointer to data members by 1 so that we can
4703 distinguish between a null pointer to data member and the first
4704 data member of a structure. */
4705 offset = size_binop (PLUS_EXPR, offset, size_int (1));
4707 return cp_convert (build_pointer_type (TREE_TYPE (arg)), offset);
4712 /* We permit compiler to make function calls returning
4713 objects of aggregate type look like lvalues. */
4715 tree targ = arg;
4717 if (TREE_CODE (targ) == SAVE_EXPR)
4718 targ = TREE_OPERAND (targ, 0);
4720 if (TREE_CODE (targ) == CALL_EXPR && IS_AGGR_TYPE (TREE_TYPE (targ)))
4722 if (TREE_CODE (arg) == SAVE_EXPR)
4723 targ = arg;
4724 else
4725 targ = build_cplus_new (TREE_TYPE (arg), arg);
4726 return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
4729 if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
4730 return build (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
4731 TREE_OPERAND (targ, 0), current_function_decl, NULL);
4734 /* Don't let anything else be handled specially. */
4735 return 0;
4738 /* Mark EXP saying that we need to be able to take the
4739 address of it; it should not be allocated in a register.
4740 Value is 1 if successful.
4742 C++: we do not allow `current_class_ptr' to be addressable. */
4745 mark_addressable (exp)
4746 tree exp;
4748 register tree x = exp;
4750 if (TREE_ADDRESSABLE (x) == 1)
4751 return 1;
4753 while (1)
4754 switch (TREE_CODE (x))
4756 case ADDR_EXPR:
4757 case COMPONENT_REF:
4758 case ARRAY_REF:
4759 case REALPART_EXPR:
4760 case IMAGPART_EXPR:
4761 x = TREE_OPERAND (x, 0);
4762 break;
4764 case PARM_DECL:
4765 if (x == current_class_ptr)
4767 if (! flag_this_is_variable)
4768 error ("address of `this' not available");
4769 TREE_ADDRESSABLE (x) = 1; /* so compiler doesn't die later */
4770 put_var_into_stack (x);
4771 return 1;
4773 case VAR_DECL:
4774 if (TREE_STATIC (x) && TREE_READONLY (x)
4775 && DECL_RTL (x) != 0
4776 && ! DECL_IN_MEMORY_P (x))
4778 /* We thought this would make a good constant variable,
4779 but we were wrong. */
4780 push_obstacks_nochange ();
4781 end_temporary_allocation ();
4783 TREE_ASM_WRITTEN (x) = 0;
4784 DECL_RTL (x) = 0;
4785 rest_of_decl_compilation (x, 0, IDENTIFIER_LOCAL_VALUE (x) == 0, 0);
4786 TREE_ADDRESSABLE (x) = 1;
4788 pop_obstacks ();
4790 return 1;
4792 /* Caller should not be trying to mark initialized
4793 constant fields addressable. */
4794 my_friendly_assert (DECL_LANG_SPECIFIC (x) == 0
4795 || DECL_IN_AGGR_P (x) == 0
4796 || TREE_STATIC (x)
4797 || DECL_EXTERNAL (x), 314);
4799 case CONST_DECL:
4800 case RESULT_DECL:
4801 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
4802 && !DECL_ARTIFICIAL (x) && extra_warnings)
4803 cp_warning ("address requested for `%D', which is declared `register'",
4805 put_var_into_stack (x);
4806 TREE_ADDRESSABLE (x) = 1;
4807 return 1;
4809 case FUNCTION_DECL:
4810 if (DECL_LANG_SPECIFIC (x) != 0)
4812 x = DECL_MAIN_VARIANT (x);
4813 /* We have to test both conditions here. The first may be
4814 non-zero in the case of processing a default function. The
4815 second may be non-zero in the case of a template function. */
4816 if (DECL_TEMPLATE_INFO (x) && !DECL_TEMPLATE_SPECIALIZATION (x))
4817 mark_used (x);
4819 TREE_ADDRESSABLE (x) = 1;
4820 TREE_USED (x) = 1;
4821 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x)) = 1;
4822 return 1;
4824 case CONSTRUCTOR:
4825 TREE_ADDRESSABLE (x) = 1;
4826 return 1;
4828 case TARGET_EXPR:
4829 TREE_ADDRESSABLE (x) = 1;
4830 mark_addressable (TREE_OPERAND (x, 0));
4831 return 1;
4833 default:
4834 return 1;
4838 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
4840 tree
4841 build_x_conditional_expr (ifexp, op1, op2)
4842 tree ifexp, op1, op2;
4844 tree rval = NULL_TREE;
4846 if (processing_template_decl)
4847 return build_min_nt (COND_EXPR, ifexp, op1, op2);
4849 if (flag_ansi_overloading)
4850 return build_new_op (COND_EXPR, LOOKUP_NORMAL, ifexp, op1, op2);
4852 /* See comments in `build_x_binary_op'. */
4853 if (op1 != 0)
4854 rval = build_opfncall (COND_EXPR, LOOKUP_SPECULATIVELY, ifexp, op1, op2);
4855 if (rval)
4856 return build_opfncall (COND_EXPR, LOOKUP_NORMAL, ifexp, op1, op2);
4858 return build_conditional_expr (ifexp, op1, op2);
4861 tree
4862 build_conditional_expr (ifexp, op1, op2)
4863 tree ifexp, op1, op2;
4865 register tree type1;
4866 register tree type2;
4867 register enum tree_code code1;
4868 register enum tree_code code2;
4869 register tree result_type = NULL_TREE;
4871 /* If second operand is omitted, it is the same as the first one;
4872 make sure it is calculated only once. */
4873 if (op1 == 0)
4875 if (pedantic)
4876 pedwarn ("ANSI C++ forbids omitting the middle term of a ?: expression");
4877 ifexp = op1 = save_expr (ifexp);
4880 ifexp = cp_convert (boolean_type_node, ifexp);
4882 if (TREE_CODE (ifexp) == ERROR_MARK)
4883 return error_mark_node;
4885 op1 = require_instantiated_type (TREE_TYPE (op2), op1, error_mark_node);
4886 if (op1 == error_mark_node)
4887 return error_mark_node;
4888 op2 = require_instantiated_type (TREE_TYPE (op1), op2, error_mark_node);
4889 if (op2 == error_mark_node)
4890 return error_mark_node;
4892 /* C++: REFERENCE_TYPES must be dereferenced. */
4893 type1 = TREE_TYPE (op1);
4894 code1 = TREE_CODE (type1);
4895 type2 = TREE_TYPE (op2);
4896 code2 = TREE_CODE (type2);
4898 if (code1 == REFERENCE_TYPE)
4900 op1 = convert_from_reference (op1);
4901 type1 = TREE_TYPE (op1);
4902 code1 = TREE_CODE (type1);
4904 if (code2 == REFERENCE_TYPE)
4906 op2 = convert_from_reference (op2);
4907 type2 = TREE_TYPE (op2);
4908 code2 = TREE_CODE (type2);
4911 /* Don't promote the operands separately if they promote
4912 the same way. Return the unpromoted type and let the combined
4913 value get promoted if necessary. */
4915 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2)
4916 && code2 != ARRAY_TYPE
4917 && code2 != FUNCTION_TYPE
4918 && code2 != METHOD_TYPE)
4920 tree result;
4922 if (TREE_CONSTANT (ifexp)
4923 && (TREE_CODE (ifexp) == INTEGER_CST
4924 || TREE_CODE (ifexp) == ADDR_EXPR))
4925 return (integer_zerop (ifexp) ? op2 : op1);
4927 if (TREE_CODE (op1) == CONST_DECL)
4928 op1 = DECL_INITIAL (op1);
4929 else if (TREE_READONLY_DECL_P (op1))
4930 op1 = decl_constant_value (op1);
4931 if (TREE_CODE (op2) == CONST_DECL)
4932 op2 = DECL_INITIAL (op2);
4933 else if (TREE_READONLY_DECL_P (op2))
4934 op2 = decl_constant_value (op2);
4935 if (type1 != type2)
4936 type1 = cp_build_type_variant
4937 (type1,
4938 TREE_READONLY (op1) || TREE_READONLY (op2),
4939 TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
4940 /* ??? This is a kludge to deal with the fact that
4941 we don't sort out integers and enums properly, yet. */
4942 result = fold (build (COND_EXPR, type1, ifexp, op1, op2));
4943 if (TREE_TYPE (result) != type1)
4944 result = build1 (NOP_EXPR, type1, result);
4945 /* Expand both sides into the same slot,
4946 hopefully the target of the ?: expression. */
4947 if (TREE_CODE (op1) == TARGET_EXPR && TREE_CODE (op2) == TARGET_EXPR)
4949 tree slot = build (VAR_DECL, TREE_TYPE (result));
4950 layout_decl (slot, 0);
4951 result = build (TARGET_EXPR, TREE_TYPE (result),
4952 slot, result, NULL_TREE, NULL_TREE);
4954 return result;
4957 /* They don't match; promote them both and then try to reconcile them.
4958 But don't permit mismatching enum types. */
4959 if (code1 == ENUMERAL_TYPE)
4961 if (code2 == ENUMERAL_TYPE)
4963 cp_error ("enumeral mismatch in conditional expression: `%T' vs `%T'", type1, type2);
4964 return error_mark_node;
4966 else if (extra_warnings && ! IS_AGGR_TYPE_CODE (code2)
4967 && type2 != type_promotes_to (type1))
4968 warning ("enumeral and non-enumeral type in conditional expression");
4970 else if (extra_warnings
4971 && code2 == ENUMERAL_TYPE && ! IS_AGGR_TYPE_CODE (code1)
4972 && type1 != type_promotes_to (type2))
4973 warning ("enumeral and non-enumeral type in conditional expression");
4975 if (code1 != VOID_TYPE)
4977 op1 = default_conversion (op1);
4978 type1 = TREE_TYPE (op1);
4979 if (TYPE_PTRMEMFUNC_P (type1))
4980 type1 = TYPE_PTRMEMFUNC_FN_TYPE (type1);
4981 code1 = TREE_CODE (type1);
4983 if (code2 != VOID_TYPE)
4985 op2 = default_conversion (op2);
4986 type2 = TREE_TYPE (op2);
4987 if (TYPE_PTRMEMFUNC_P (type2))
4988 type2 = TYPE_PTRMEMFUNC_FN_TYPE (type2);
4989 code2 = TREE_CODE (type2);
4992 if (code1 == RECORD_TYPE && code2 == RECORD_TYPE
4993 && real_lvalue_p (op1) && real_lvalue_p (op2)
4994 && comptypes (type1, type2, -1))
4996 type1 = build_reference_type (type1);
4997 type2 = build_reference_type (type2);
4998 result_type = common_type (type1, type2);
4999 op1 = convert_to_reference (result_type, op1, CONV_IMPLICIT,
5000 LOOKUP_NORMAL, NULL_TREE);
5001 op2 = convert_to_reference (result_type, op2, CONV_IMPLICIT,
5002 LOOKUP_NORMAL, NULL_TREE);
5004 /* Quickly detect the usual case where op1 and op2 have the same type
5005 after promotion. */
5006 else if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
5008 if (type1 == type2)
5009 result_type = type1;
5010 else
5011 result_type = cp_build_type_variant
5012 (type1,
5013 TREE_READONLY (op1) || TREE_READONLY (op2),
5014 TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
5016 else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE)
5017 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE))
5019 result_type = common_type (type1, type2);
5021 else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
5023 if (pedantic && (code1 != VOID_TYPE || code2 != VOID_TYPE))
5024 pedwarn ("ANSI C++ forbids conditional expr with only one void side");
5025 result_type = void_type_node;
5027 else if (code1 == POINTER_TYPE && null_ptr_cst_p (op2))
5028 result_type = qualify_type (type1, type2);
5029 else if (code2 == POINTER_TYPE && null_ptr_cst_p (op1))
5030 result_type = qualify_type (type2, type1);
5031 else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
5033 if (comp_target_types (type1, type2, 1))
5034 result_type = common_type (type1, type2);
5035 else if (TYPE_MAIN_VARIANT (TREE_TYPE (type1)) == void_type_node)
5037 if (pedantic && TREE_CODE (type2) == FUNCTION_TYPE)
5038 pedwarn ("ANSI C++ forbids conditional expr between `void *' and function pointer");
5039 result_type = qualify_type (type1, type2);
5041 else if (TYPE_MAIN_VARIANT (TREE_TYPE (type2)) == void_type_node)
5043 if (pedantic && TREE_CODE (type1) == FUNCTION_TYPE)
5044 pedwarn ("ANSI C++ forbids conditional expr between `void *' and function pointer");
5045 result_type = qualify_type (type2, type1);
5047 /* C++ */
5048 else if (comptypes (type2, type1, 0))
5049 result_type = type2;
5050 else if (IS_AGGR_TYPE (TREE_TYPE (type1))
5051 && IS_AGGR_TYPE (TREE_TYPE (type2))
5052 && (result_type = common_base_type (TREE_TYPE (type1), TREE_TYPE (type2))))
5054 if (result_type == error_mark_node)
5056 cp_error ("common base type of types `%T' and `%T' is ambiguous",
5057 TREE_TYPE (type1), TREE_TYPE (type2));
5058 result_type = ptr_type_node;
5060 else
5062 if (pedantic
5063 && result_type != TREE_TYPE (type1)
5064 && result_type != TREE_TYPE (type2))
5065 cp_pedwarn ("`%T' and `%T' converted to `%T *' in conditional expression",
5066 type1, type2, result_type);
5068 result_type = build_pointer_type (result_type);
5071 else
5073 pedwarn ("pointer type mismatch in conditional expression");
5074 result_type = ptr_type_node;
5077 else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
5079 pedwarn ("pointer/integer type mismatch in conditional expression");
5080 result_type = type1;
5082 else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
5084 pedwarn ("pointer/integer type mismatch in conditional expression");
5085 result_type = type2;
5088 if (!result_type)
5090 /* The match does not look good. If either is
5091 an aggregate value, try converting to a scalar type. */
5092 if (code1 == RECORD_TYPE && code2 == RECORD_TYPE)
5094 cp_error ("aggregate mismatch in conditional expression: `%T' vs `%T'", type1, type2);
5095 return error_mark_node;
5097 /* Warning: this code assumes that conversion between cv-variants of
5098 a type is done using NOP_EXPRs. */
5099 if (code1 == RECORD_TYPE && TYPE_HAS_CONVERSION (type1))
5101 /* There are other types besides pointers and records. */
5102 tree tmp;
5103 if (code2 == POINTER_TYPE)
5104 tmp = build_pointer_type
5105 (build_type_variant (TREE_TYPE (type2), 1, 1));
5106 else
5107 tmp = type2;
5108 tmp = build_type_conversion (CONVERT_EXPR, tmp, op1, 0);
5109 if (tmp == NULL_TREE)
5111 cp_error ("incompatible types `%T' and `%T' in `?:'",
5112 type1, type2);
5113 return error_mark_node;
5115 if (tmp == error_mark_node)
5116 error ("ambiguous pointer conversion");
5117 else
5118 STRIP_NOPS (tmp);
5119 result_type = common_type (type2, TREE_TYPE (tmp));
5120 op1 = tmp;
5122 else if (code2 == RECORD_TYPE && TYPE_HAS_CONVERSION (type2))
5124 tree tmp;
5125 if (code1 == POINTER_TYPE)
5126 tmp = build_pointer_type
5127 (build_type_variant (TREE_TYPE (type1), 1, 1));
5128 else
5129 tmp = type1;
5131 tmp = build_type_conversion (CONVERT_EXPR, tmp, op2, 0);
5132 if (tmp == NULL_TREE)
5134 cp_error ("incompatible types `%T' and `%T' in `?:'",
5135 type1, type2);
5136 return error_mark_node;
5138 if (tmp == error_mark_node)
5139 error ("ambiguous pointer conversion");
5140 else
5141 STRIP_NOPS (tmp);
5142 result_type = common_type (type1, TREE_TYPE (tmp));
5143 op2 = tmp;
5145 else if (flag_cond_mismatch)
5146 result_type = void_type_node;
5147 else
5149 error ("type mismatch in conditional expression");
5150 return error_mark_node;
5154 if (TREE_CODE (result_type) == POINTER_TYPE
5155 && TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
5156 result_type = build_ptrmemfunc_type (result_type);
5158 if (result_type != TREE_TYPE (op1))
5159 op1 = convert_for_initialization
5160 (NULL_TREE, result_type, op1, LOOKUP_NORMAL, "converting", NULL_TREE, 0);
5161 if (result_type != TREE_TYPE (op2))
5162 op2 = convert_for_initialization
5163 (NULL_TREE, result_type, op2, LOOKUP_NORMAL, "converting", NULL_TREE, 0);
5165 if (TREE_CONSTANT (ifexp))
5166 return integer_zerop (ifexp) ? op2 : op1;
5168 return convert_from_reference
5169 (fold (build (COND_EXPR, result_type, ifexp, op1, op2)));
5172 /* Handle overloading of the ',' operator when needed. Otherwise,
5173 this function just builds an expression list. */
5175 tree
5176 build_x_compound_expr (list)
5177 tree list;
5179 tree rest = TREE_CHAIN (list);
5180 tree result;
5182 if (processing_template_decl)
5183 return build_min_nt (COMPOUND_EXPR, list, NULL_TREE);
5185 if (rest == NULL_TREE)
5186 return build_compound_expr (list);
5188 result = build_opfncall (COMPOUND_EXPR, LOOKUP_NORMAL,
5189 TREE_VALUE (list), TREE_VALUE (rest), NULL_TREE);
5190 if (result)
5191 return build_x_compound_expr (expr_tree_cons (NULL_TREE, result, TREE_CHAIN (rest)));
5193 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list)))
5195 /* the left-hand operand of a comma expression is like an expression
5196 statement: we should warn if it doesn't have any side-effects,
5197 unless it was explicitly cast to (void). */
5198 if ((extra_warnings || warn_unused)
5199 && !(TREE_CODE (TREE_VALUE(list)) == CONVERT_EXPR
5200 && TREE_TYPE (TREE_VALUE(list)) == void_type_node))
5201 warning("left-hand operand of comma expression has no effect");
5203 #if 0 /* this requires a gcc backend patch to export warn_if_unused_value */
5204 else if (warn_unused)
5205 warn_if_unused_value (TREE_VALUE(list));
5206 #endif
5208 return build_compound_expr (expr_tree_cons (NULL_TREE, TREE_VALUE (list),
5209 build_expr_list (NULL_TREE, build_x_compound_expr (rest))));
5212 /* Given a list of expressions, return a compound expression
5213 that performs them all and returns the value of the last of them. */
5215 tree
5216 build_compound_expr (list)
5217 tree list;
5219 register tree rest;
5221 if (TREE_READONLY_DECL_P (TREE_VALUE (list)))
5222 TREE_VALUE (list) = decl_constant_value (TREE_VALUE (list));
5224 if (TREE_CHAIN (list) == 0)
5226 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5227 Strip such NOP_EXPRs, since LIST is used in non-lvalue context. */
5228 if (TREE_CODE (list) == NOP_EXPR
5229 && TREE_TYPE (list) == TREE_TYPE (TREE_OPERAND (list, 0)))
5230 list = TREE_OPERAND (list, 0);
5232 /* Convert arrays to pointers. */
5233 if (TREE_CODE (TREE_TYPE (TREE_VALUE (list))) == ARRAY_TYPE)
5234 return default_conversion (TREE_VALUE (list));
5235 else
5236 return TREE_VALUE (list);
5239 rest = build_compound_expr (TREE_CHAIN (list));
5241 /* When pedantic, a compound expression cannot be a constant expression. */
5242 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list)) && ! pedantic)
5243 return rest;
5245 return build (COMPOUND_EXPR, TREE_TYPE (rest),
5246 break_out_cleanups (TREE_VALUE (list)), rest);
5249 tree
5250 build_static_cast (type, expr)
5251 tree type, expr;
5253 tree intype, binfo;
5254 int ok;
5256 if (type == error_mark_node || expr == error_mark_node)
5257 return error_mark_node;
5259 if (TREE_CODE (expr) == OFFSET_REF)
5260 expr = resolve_offset_ref (expr);
5262 if (processing_template_decl)
5264 tree t = build_min (STATIC_CAST_EXPR, type, expr);
5265 return t;
5268 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5269 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
5270 if (TREE_CODE (type) != REFERENCE_TYPE
5271 && TREE_CODE (expr) == NOP_EXPR
5272 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
5273 expr = TREE_OPERAND (expr, 0);
5275 if (TREE_CODE (type) == VOID_TYPE)
5276 return build1 (CONVERT_EXPR, type, expr);
5278 if (type_unknown_p (expr))
5280 expr = instantiate_type (type, expr, 1);
5281 if (expr == error_mark_node)
5282 return error_mark_node;
5285 if (TREE_CODE (type) == REFERENCE_TYPE)
5286 return (convert_from_reference
5287 (convert_to_reference (type, expr, CONV_STATIC|CONV_IMPLICIT,
5288 LOOKUP_COMPLAIN, NULL_TREE)));
5290 if (IS_AGGR_TYPE (type))
5291 return build_cplus_new
5292 (type, (build_method_call
5293 (NULL_TREE, ctor_identifier, build_expr_list (NULL_TREE, expr),
5294 TYPE_BINFO (type), LOOKUP_NORMAL)));
5296 expr = decay_conversion (expr);
5297 intype = TREE_TYPE (expr);
5299 /* FIXME handle casting to array type. */
5301 ok = 0;
5302 if (can_convert_arg (type, intype, expr))
5303 ok = 1;
5304 else if (TYPE_PTROB_P (type) && TYPE_PTROB_P (intype))
5306 tree binfo;
5307 if (IS_AGGR_TYPE (TREE_TYPE (type)) && IS_AGGR_TYPE (TREE_TYPE (intype))
5308 && (TYPE_READONLY (TREE_TYPE (type))
5309 >= TYPE_READONLY (TREE_TYPE (intype)))
5310 && (TYPE_VOLATILE (TREE_TYPE (type))
5311 >= TYPE_VOLATILE (TREE_TYPE (intype)))
5312 && (binfo = get_binfo (TREE_TYPE (intype), TREE_TYPE (type), 0))
5313 && ! TREE_VIA_VIRTUAL (binfo))
5314 ok = 1;
5316 else if (TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
5318 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type))),
5319 TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (intype))), 1)
5320 && (TYPE_READONLY (TREE_TYPE (TREE_TYPE (type)))
5321 >= TYPE_READONLY (TREE_TYPE (TREE_TYPE (intype))))
5322 && (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (type)))
5323 >= TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (intype))))
5324 && (binfo = get_binfo (TYPE_OFFSET_BASETYPE (intype),
5325 TYPE_OFFSET_BASETYPE (type), 0))
5326 && ! TREE_VIA_VIRTUAL (binfo))
5327 ok = 1;
5329 else if (TREE_CODE (intype) != BOOLEAN_TYPE
5330 && TREE_CODE (type) != ARRAY_TYPE
5331 && TREE_CODE (type) != FUNCTION_TYPE
5332 && can_convert (intype, type))
5333 ok = 1;
5335 if (ok)
5336 return build_c_cast (type, expr);
5338 cp_error ("static_cast from `%T' to `%T'", intype, type);
5339 return error_mark_node;
5342 tree
5343 build_reinterpret_cast (type, expr)
5344 tree type, expr;
5346 tree intype;
5348 if (type == error_mark_node || expr == error_mark_node)
5349 return error_mark_node;
5351 if (TREE_CODE (expr) == OFFSET_REF)
5352 expr = resolve_offset_ref (expr);
5354 if (processing_template_decl)
5356 tree t = build_min (REINTERPRET_CAST_EXPR, type, expr);
5357 return t;
5360 if (TREE_CODE (type) != REFERENCE_TYPE)
5362 expr = decay_conversion (expr);
5364 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5365 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
5366 if (TREE_CODE (expr) == NOP_EXPR
5367 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
5368 expr = TREE_OPERAND (expr, 0);
5371 if (type_unknown_p (expr))
5373 expr = instantiate_type (type, expr, 1);
5374 if (expr == error_mark_node)
5375 return error_mark_node;
5378 intype = TREE_TYPE (expr);
5380 if (TREE_CODE (type) == REFERENCE_TYPE)
5382 if (! real_lvalue_p (expr))
5384 cp_error ("reinterpret_cast from `%T' rvalue to `%T'", intype, type);
5385 return error_mark_node;
5387 expr = build_unary_op (ADDR_EXPR, expr, 0);
5388 if (expr != error_mark_node)
5389 expr = build_reinterpret_cast
5390 (build_pointer_type (TREE_TYPE (type)), expr);
5391 if (expr != error_mark_node)
5392 expr = build_indirect_ref (expr, 0);
5393 return expr;
5395 else if (comptypes (TYPE_MAIN_VARIANT (intype), TYPE_MAIN_VARIANT (type), 1))
5396 return build_static_cast (type, expr);
5398 if (TYPE_PTR_P (type) && (TREE_CODE (intype) == INTEGER_TYPE
5399 || TREE_CODE (intype) == ENUMERAL_TYPE))
5400 /* OK */;
5401 else if (TREE_CODE (type) == INTEGER_TYPE && TYPE_PTR_P (intype))
5403 if (TYPE_PRECISION (type) < TYPE_PRECISION (intype))
5404 cp_pedwarn ("reinterpret_cast from `%T' to `%T' loses precision",
5405 intype, type);
5407 else if ((TYPE_PTRFN_P (type) && TYPE_PTRFN_P (intype))
5408 || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
5410 if (TREE_READONLY_DECL_P (expr))
5411 expr = decl_constant_value (expr);
5412 return fold (build1 (NOP_EXPR, type, expr));
5414 else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
5415 || (TYPE_PTROBV_P (type) && TYPE_PTROBV_P (intype)))
5417 if (! comp_ptr_ttypes_reinterpret (TREE_TYPE (type), TREE_TYPE (intype)))
5418 cp_pedwarn ("reinterpret_cast from `%T' to `%T' casts away const (or volatile)",
5419 intype, type);
5421 if (TREE_READONLY_DECL_P (expr))
5422 expr = decl_constant_value (expr);
5423 return fold (build1 (NOP_EXPR, type, expr));
5425 else if ((TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype))
5426 || (TYPE_PTRFN_P (type) && TYPE_PTROBV_P (intype)))
5428 pedwarn ("ANSI C++ forbids casting between pointers to functions and objects");
5429 if (TREE_READONLY_DECL_P (expr))
5430 expr = decl_constant_value (expr);
5431 return fold (build1 (NOP_EXPR, type, expr));
5433 else
5435 cp_error ("reinterpret_cast from `%T' to `%T'", intype, type);
5436 return error_mark_node;
5439 return cp_convert (type, expr);
5442 tree
5443 build_const_cast (type, expr)
5444 tree type, expr;
5446 tree intype;
5448 if (type == error_mark_node || expr == error_mark_node)
5449 return error_mark_node;
5451 if (TREE_CODE (expr) == OFFSET_REF)
5452 expr = resolve_offset_ref (expr);
5454 if (processing_template_decl)
5456 tree t = build_min (CONST_CAST_EXPR, type, expr);
5457 return t;
5460 if (TREE_CODE (type) != REFERENCE_TYPE)
5462 expr = decay_conversion (expr);
5464 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5465 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
5466 if (TREE_CODE (expr) == NOP_EXPR
5467 && TREE_TYPE (expr) == TREE_TYPE (TREE_OPERAND (expr, 0)))
5468 expr = TREE_OPERAND (expr, 0);
5471 if (type_unknown_p (expr))
5473 expr = instantiate_type (type, expr, 1);
5474 if (expr == error_mark_node)
5475 return error_mark_node;
5478 intype = TREE_TYPE (expr);
5480 if (comptypes (TYPE_MAIN_VARIANT (intype), TYPE_MAIN_VARIANT (type), 1))
5481 return build_static_cast (type, expr);
5482 else if (TREE_CODE (type) == REFERENCE_TYPE)
5484 if (! real_lvalue_p (expr))
5486 cp_error ("const_cast from `%T' rvalue to `%T'", intype, type);
5487 return error_mark_node;
5490 if (comp_ptr_ttypes_const (TREE_TYPE (type), intype))
5491 return (convert_from_reference
5492 (convert_to_reference (type, expr, CONV_CONST|CONV_IMPLICIT,
5493 LOOKUP_COMPLAIN, NULL_TREE)));
5495 else if (TREE_CODE (type) == POINTER_TYPE
5496 && TREE_CODE (intype) == POINTER_TYPE
5497 && comp_ptr_ttypes_const (TREE_TYPE (type), TREE_TYPE (intype)))
5498 return cp_convert (type, expr);
5500 cp_error ("const_cast from `%T' to `%T'", intype, type);
5501 return error_mark_node;
5504 /* Build an expression representing a cast to type TYPE of expression EXPR.
5506 ALLOW_NONCONVERTING is true if we should allow non-converting constructors
5507 when doing the cast. */
5509 tree
5510 build_c_cast (type, expr)
5511 tree type, expr;
5513 register tree value = expr;
5515 if (type == error_mark_node || expr == error_mark_node)
5516 return error_mark_node;
5518 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
5519 Strip such NOP_EXPRs if VALUE is being used in non-lvalue context. */
5520 if (TREE_CODE (type) != REFERENCE_TYPE
5521 && TREE_CODE (value) == NOP_EXPR
5522 && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
5523 value = TREE_OPERAND (value, 0);
5525 if (TREE_TYPE (expr)
5526 && TREE_CODE (TREE_TYPE (expr)) == OFFSET_TYPE
5527 && TREE_CODE (type) != OFFSET_TYPE)
5528 value = resolve_offset_ref (value);
5530 if (TREE_CODE (type) == ARRAY_TYPE)
5532 /* Allow casting from T1* to T2[] because Cfront allows it.
5533 NIHCL uses it. It is not valid ANSI C however, and hence, not
5534 valid ANSI C++. */
5535 if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
5537 if (pedantic)
5538 pedwarn ("ANSI C++ forbids casting to an array type");
5539 type = build_pointer_type (TREE_TYPE (type));
5541 else
5543 error ("ANSI C++ forbids casting to an array type");
5544 return error_mark_node;
5548 if (TREE_CODE (type) == FUNCTION_TYPE
5549 || TREE_CODE (type) == METHOD_TYPE)
5551 cp_error ("casting to function type `%T'", type);
5552 return error_mark_node;
5555 if (IS_SIGNATURE (type))
5557 error ("cast specifies signature type");
5558 return error_mark_node;
5561 if (processing_template_decl)
5563 tree t = build_min (CAST_EXPR, type,
5564 min_tree_cons (NULL_TREE, value, NULL_TREE));
5565 return t;
5568 if (TREE_CODE (type) == VOID_TYPE)
5569 value = build1 (CONVERT_EXPR, type, value);
5570 else if (TREE_TYPE (value) == NULL_TREE
5571 || type_unknown_p (value))
5573 value = instantiate_type (type, value, 1);
5574 /* Did we lose? */
5575 if (value == error_mark_node)
5576 return error_mark_node;
5578 else
5580 tree otype;
5582 /* Convert functions and arrays to pointers and
5583 convert references to their expanded types,
5584 but don't convert any other types. */
5585 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
5586 || (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE
5587 /* Don't do the default conversion if we want a
5588 pointer to a function. */
5589 && ! (TREE_CODE (type) == POINTER_TYPE
5590 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE))
5591 || TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
5592 || TREE_CODE (TREE_TYPE (value)) == REFERENCE_TYPE)
5593 value = default_conversion (value);
5594 otype = TREE_TYPE (value);
5596 /* Optionally warn about potentially worrisome casts. */
5598 if (warn_cast_qual
5599 && TREE_CODE (type) == POINTER_TYPE
5600 && TREE_CODE (otype) == POINTER_TYPE)
5602 /* For C++ we make these regular warnings, rather than
5603 softening them into pedwarns. */
5604 if (TYPE_VOLATILE (TREE_TYPE (otype))
5605 && ! TYPE_VOLATILE (TREE_TYPE (type)))
5606 warning ("cast discards `volatile' from pointer target type");
5607 if (TYPE_READONLY (TREE_TYPE (otype))
5608 && ! TYPE_READONLY (TREE_TYPE (type)))
5609 warning ("cast discards `const' from pointer target type");
5612 /* Warn about possible alignment problems. */
5613 if (STRICT_ALIGNMENT && warn_cast_align
5614 && TREE_CODE (type) == POINTER_TYPE
5615 && TREE_CODE (otype) == POINTER_TYPE
5616 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
5617 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
5618 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
5619 warning ("cast increases required alignment of target type");
5621 #if 0
5622 /* We should see about re-enabling these, they seem useful to
5623 me. */
5624 if (TREE_CODE (type) == INTEGER_TYPE
5625 && TREE_CODE (otype) == POINTER_TYPE
5626 && TYPE_PRECISION (type) != TYPE_PRECISION (otype))
5627 warning ("cast from pointer to integer of different size");
5629 if (TREE_CODE (type) == POINTER_TYPE
5630 && TREE_CODE (otype) == INTEGER_TYPE
5631 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
5632 /* Don't warn about converting 0 to pointer,
5633 provided the 0 was explicit--not cast or made by folding. */
5634 && !(TREE_CODE (value) == INTEGER_CST && integer_zerop (value)))
5635 warning ("cast to pointer from integer of different size");
5636 #endif
5638 if (TREE_CODE (type) == REFERENCE_TYPE)
5639 value = (convert_from_reference
5640 (convert_to_reference (type, value, CONV_C_CAST,
5641 LOOKUP_COMPLAIN, NULL_TREE)));
5642 else
5644 tree ovalue;
5646 if (TREE_READONLY_DECL_P (value))
5647 value = decl_constant_value (value);
5649 ovalue = value;
5650 value = convert_force (type, value, CONV_C_CAST);
5652 /* Ignore any integer overflow caused by the cast. */
5653 if (TREE_CODE (value) == INTEGER_CST)
5655 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
5656 TREE_CONSTANT_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (ovalue);
5661 /* Always produce some operator for an explicit cast,
5662 so we can tell (for -pedantic) that the cast is no lvalue. */
5663 if (TREE_CODE (type) != REFERENCE_TYPE && value == expr
5664 && real_lvalue_p (value))
5665 value = non_lvalue (value);
5667 return value;
5670 static tree
5671 expand_target_expr (t)
5672 tree t;
5674 int old_temp_level = get_target_temp_slot_level ();
5675 tree xval = make_node (RTL_EXPR);
5676 rtx rtxval;
5678 /* Any TARGET_EXPR temps live only as long as the outer temp level.
5679 Since they are preserved in this new inner level, we know they
5680 will make it into the outer level. */
5681 push_temp_slots_for_target ();
5683 do_pending_stack_adjust ();
5684 start_sequence_for_rtl_expr (xval);
5685 emit_note (0, -1);
5686 rtxval = expand_expr (t, NULL_RTX, VOIDmode, EXPAND_NORMAL);
5687 do_pending_stack_adjust ();
5688 TREE_SIDE_EFFECTS (xval) = 1;
5689 RTL_EXPR_SEQUENCE (xval) = get_insns ();
5690 end_sequence ();
5691 RTL_EXPR_RTL (xval) = rtxval;
5692 TREE_TYPE (xval) = TREE_TYPE (t);
5694 pop_temp_slots ();
5695 set_target_temp_slot_level (old_temp_level);
5697 return xval;
5700 /* Build an assignment expression of lvalue LHS from value RHS.
5701 MODIFYCODE is the code for a binary operator that we use
5702 to combine the old value of LHS with RHS to get the new value.
5703 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment.
5705 C++: If MODIFYCODE is INIT_EXPR, then leave references unbashed. */
5707 tree
5708 build_modify_expr (lhs, modifycode, rhs)
5709 tree lhs;
5710 enum tree_code modifycode;
5711 tree rhs;
5713 register tree result;
5714 tree newrhs = rhs;
5715 tree lhstype = TREE_TYPE (lhs);
5716 tree olhstype = lhstype;
5717 tree olhs = lhs;
5719 /* Avoid duplicate error messages from operands that had errors. */
5720 if (lhs == error_mark_node || rhs == error_mark_node)
5721 return error_mark_node;
5723 /* Types that aren't fully specified cannot be used in assignments. */
5724 lhs = require_complete_type (lhs);
5726 newrhs = rhs;
5728 /* Handle assignment to signature pointers/refs. */
5730 if (TYPE_LANG_SPECIFIC (lhstype)
5731 && (IS_SIGNATURE_POINTER (lhstype) || IS_SIGNATURE_REFERENCE (lhstype)))
5733 return build_signature_pointer_constructor (lhs, rhs);
5736 /* Handle control structure constructs used as "lvalues". */
5738 switch (TREE_CODE (lhs))
5740 /* Handle --foo = 5; as these are valid constructs in C++ */
5741 case PREDECREMENT_EXPR:
5742 case PREINCREMENT_EXPR:
5743 if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
5744 lhs = build (TREE_CODE (lhs), TREE_TYPE (lhs),
5745 stabilize_reference (TREE_OPERAND (lhs, 0)),
5746 TREE_OPERAND (lhs, 1));
5747 return build (COMPOUND_EXPR, lhstype,
5748 lhs,
5749 build_modify_expr (TREE_OPERAND (lhs, 0),
5750 modifycode, rhs));
5752 /* Handle (a, b) used as an "lvalue". */
5753 case COMPOUND_EXPR:
5754 newrhs = build_modify_expr (TREE_OPERAND (lhs, 1),
5755 modifycode, rhs);
5756 if (newrhs == error_mark_node)
5757 return error_mark_node;
5758 return build (COMPOUND_EXPR, lhstype,
5759 TREE_OPERAND (lhs, 0), newrhs);
5761 case MODIFY_EXPR:
5762 newrhs = build_modify_expr (TREE_OPERAND (lhs, 0), modifycode, rhs);
5763 if (newrhs == error_mark_node)
5764 return error_mark_node;
5765 return build (COMPOUND_EXPR, lhstype, lhs, newrhs);
5767 /* Handle (a ? b : c) used as an "lvalue". */
5768 case COND_EXPR:
5769 rhs = save_expr (rhs);
5771 /* Produce (a ? (b = rhs) : (c = rhs))
5772 except that the RHS goes through a save-expr
5773 so the code to compute it is only emitted once. */
5774 tree cond
5775 = build_conditional_expr (TREE_OPERAND (lhs, 0),
5776 build_modify_expr (cp_convert (TREE_TYPE (lhs), TREE_OPERAND (lhs, 1)),
5777 modifycode, rhs),
5778 build_modify_expr (cp_convert (TREE_TYPE (lhs), TREE_OPERAND (lhs, 2)),
5779 modifycode, rhs));
5780 if (cond == error_mark_node)
5781 return cond;
5782 /* Make sure the code to compute the rhs comes out
5783 before the split. */
5784 return build (COMPOUND_EXPR, TREE_TYPE (lhs),
5785 /* Case to void to suppress warning
5786 from warn_if_unused_value. */
5787 cp_convert (void_type_node, rhs), cond);
5791 if (TREE_CODE (lhs) == OFFSET_REF)
5793 if (TREE_OPERAND (lhs, 0) == NULL_TREE)
5795 /* Static class member? */
5796 tree member = TREE_OPERAND (lhs, 1);
5797 if (TREE_CODE (member) == VAR_DECL)
5798 lhs = member;
5799 else
5801 compiler_error ("invalid static class member");
5802 return error_mark_node;
5805 else
5806 lhs = resolve_offset_ref (lhs);
5808 olhstype = lhstype = TREE_TYPE (lhs);
5811 if (TREE_CODE (lhstype) == REFERENCE_TYPE
5812 && modifycode != INIT_EXPR)
5814 lhs = convert_from_reference (lhs);
5815 olhstype = lhstype = TREE_TYPE (lhs);
5818 /* If a binary op has been requested, combine the old LHS value with the RHS
5819 producing the value we should actually store into the LHS. */
5821 if (modifycode == INIT_EXPR)
5823 if (! IS_AGGR_TYPE (lhstype))
5824 /* Do the default thing */;
5825 else if (! TYPE_HAS_CONSTRUCTOR (lhstype))
5827 cp_error ("`%T' has no constructors", lhstype);
5828 return error_mark_node;
5830 else if (TYPE_HAS_TRIVIAL_INIT_REF (lhstype)
5831 && TYPE_MAIN_VARIANT (lhstype) == TYPE_MAIN_VARIANT (TREE_TYPE (newrhs)))
5832 /* Do the default thing */;
5833 else
5835 result = build_method_call (lhs, ctor_identifier,
5836 build_expr_list (NULL_TREE, rhs),
5837 TYPE_BINFO (lhstype), LOOKUP_NORMAL);
5838 if (result == NULL_TREE)
5839 return error_mark_node;
5840 return result;
5843 else if (modifycode == NOP_EXPR)
5845 /* `operator=' is not an inheritable operator. */
5846 if (! IS_AGGR_TYPE (lhstype))
5847 /* Do the default thing */;
5848 else if (! TYPE_HAS_ASSIGNMENT (lhstype))
5850 cp_error ("`%T' does not define operator=", lhstype);
5851 return error_mark_node;
5853 else if (TYPE_HAS_TRIVIAL_ASSIGN_REF (lhstype)
5854 && TYPE_MAIN_VARIANT (lhstype) == TYPE_MAIN_VARIANT (TREE_TYPE (newrhs)))
5856 build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL,
5857 lhs, rhs, make_node (NOP_EXPR));
5859 /* Do the default thing */;
5861 else
5863 result = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL,
5864 lhs, rhs, make_node (NOP_EXPR));
5865 if (result == NULL_TREE)
5866 return error_mark_node;
5867 return result;
5869 lhstype = olhstype;
5871 else if (PROMOTES_TO_AGGR_TYPE (lhstype, REFERENCE_TYPE))
5873 /* This case must convert to some sort of lvalue that
5874 can participate in an op= operation. */
5875 tree lhs_tmp = lhs;
5876 tree rhs_tmp = rhs;
5877 if (build_default_binary_type_conversion (modifycode, &lhs_tmp, &rhs_tmp))
5879 lhs = stabilize_reference (lhs_tmp);
5880 /* Forget it was ever anything else. */
5881 olhstype = lhstype = TREE_TYPE (lhs);
5882 newrhs = build_binary_op (modifycode, lhs, rhs_tmp, 1);
5884 else
5886 cp_error ("no match for `%Q(%#T, %#T)'", modifycode,
5887 TREE_TYPE (lhs), TREE_TYPE (rhs));
5888 return error_mark_node;
5891 else
5893 lhs = stabilize_reference (lhs);
5894 newrhs = build_binary_op (modifycode, lhs, rhs, 1);
5895 if (newrhs == error_mark_node)
5897 cp_error (" in evaluation of `%Q(%#T, %#T)'", modifycode,
5898 TREE_TYPE (lhs), TREE_TYPE (rhs));
5899 return error_mark_node;
5903 /* Handle a cast used as an "lvalue".
5904 We have already performed any binary operator using the value as cast.
5905 Now convert the result to the cast type of the lhs,
5906 and then true type of the lhs and store it there;
5907 then convert result back to the cast type to be the value
5908 of the assignment. */
5910 switch (TREE_CODE (lhs))
5912 case NOP_EXPR:
5913 case CONVERT_EXPR:
5914 case FLOAT_EXPR:
5915 case FIX_TRUNC_EXPR:
5916 case FIX_FLOOR_EXPR:
5917 case FIX_ROUND_EXPR:
5918 case FIX_CEIL_EXPR:
5919 if (TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
5920 || TREE_CODE (TREE_TYPE (newrhs)) == FUNCTION_TYPE
5921 || TREE_CODE (TREE_TYPE (newrhs)) == METHOD_TYPE
5922 || TREE_CODE (TREE_TYPE (newrhs)) == OFFSET_TYPE)
5923 newrhs = default_conversion (newrhs);
5925 tree inner_lhs = TREE_OPERAND (lhs, 0);
5926 tree result;
5928 /* WP 5.4.1: The result is an lvalue if T is a reference type,
5929 otherwise the result is an rvalue. */
5930 if (! lvalue_p (lhs))
5931 pedwarn ("ANSI C++ forbids cast to non-reference type used as lvalue");
5933 result = build_modify_expr (inner_lhs, NOP_EXPR,
5934 cp_convert (TREE_TYPE (inner_lhs),
5935 cp_convert (lhstype, newrhs)));
5936 if (result == error_mark_node)
5937 return result;
5938 return cp_convert (TREE_TYPE (lhs), result);
5942 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
5943 Reject anything strange now. */
5945 if (!lvalue_or_else (lhs, "assignment"))
5946 return error_mark_node;
5948 GNU_xref_assign (lhs);
5950 /* Warn about storing in something that is `const'. */
5951 /* For C++, don't warn if this is initialization. */
5952 if (modifycode != INIT_EXPR
5953 /* For assignment to `const' signature pointer/reference fields,
5954 don't warn either, we already printed a better message before. */
5955 && ! (TREE_CODE (lhs) == COMPONENT_REF
5956 && (IS_SIGNATURE_POINTER (TREE_TYPE (TREE_OPERAND (lhs, 0)))
5957 || IS_SIGNATURE_REFERENCE (TREE_TYPE (TREE_OPERAND (lhs, 0)))))
5958 && (TREE_READONLY (lhs) || TYPE_READONLY (lhstype)
5959 || ((TREE_CODE (lhstype) == RECORD_TYPE
5960 || TREE_CODE (lhstype) == UNION_TYPE)
5961 && C_TYPE_FIELDS_READONLY (lhstype))
5962 || (TREE_CODE (lhstype) == REFERENCE_TYPE
5963 && TYPE_READONLY (TREE_TYPE (lhstype)))))
5964 readonly_error (lhs, "assignment", 0);
5966 /* If storing into a structure or union member,
5967 it has probably been given type `int'.
5968 Compute the type that would go with
5969 the actual amount of storage the member occupies. */
5971 if (TREE_CODE (lhs) == COMPONENT_REF
5972 && (TREE_CODE (lhstype) == INTEGER_TYPE
5973 || TREE_CODE (lhstype) == REAL_TYPE
5974 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
5976 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
5978 /* If storing in a field that is in actuality a short or narrower
5979 than one, we must store in the field in its actual type. */
5981 if (lhstype != TREE_TYPE (lhs))
5983 lhs = copy_node (lhs);
5984 TREE_TYPE (lhs) = lhstype;
5988 /* check to see if there is an assignment to `this' */
5989 if (lhs == current_class_ptr)
5991 if (flag_this_is_variable > 0
5992 && DECL_NAME (current_function_decl) != NULL_TREE
5993 && (DECL_NAME (current_function_decl)
5994 != constructor_name (current_class_type)))
5995 warning ("assignment to `this' not in constructor or destructor");
5996 current_function_just_assigned_this = 1;
5999 /* The TREE_TYPE of RHS may be TYPE_UNKNOWN. This can happen
6000 when the type of RHS is not yet known, i.e. its type
6001 is inherited from LHS. */
6002 rhs = require_instantiated_type (lhstype, newrhs, error_mark_node);
6003 if (rhs == error_mark_node)
6004 return error_mark_node;
6005 newrhs = rhs;
6007 if (modifycode != INIT_EXPR)
6009 /* Make modifycode now either a NOP_EXPR or an INIT_EXPR. */
6010 modifycode = NOP_EXPR;
6011 /* Reference-bashing */
6012 if (TREE_CODE (lhstype) == REFERENCE_TYPE)
6014 tree tmp = convert_from_reference (lhs);
6015 lhstype = TREE_TYPE (tmp);
6016 if (TYPE_SIZE (lhstype) == 0)
6018 incomplete_type_error (lhs, lhstype);
6019 return error_mark_node;
6021 lhs = tmp;
6022 olhstype = lhstype;
6024 if (TREE_CODE (TREE_TYPE (newrhs)) == REFERENCE_TYPE)
6026 tree tmp = convert_from_reference (newrhs);
6027 if (TYPE_SIZE (TREE_TYPE (tmp)) == 0)
6029 incomplete_type_error (newrhs, TREE_TYPE (tmp));
6030 return error_mark_node;
6032 newrhs = tmp;
6036 if (TREE_SIDE_EFFECTS (lhs))
6037 lhs = stabilize_reference (lhs);
6038 if (TREE_SIDE_EFFECTS (newrhs))
6039 newrhs = stabilize_reference (newrhs);
6041 /* Convert new value to destination type. */
6043 if (TREE_CODE (lhstype) == ARRAY_TYPE)
6045 int from_array;
6047 if (! comptypes (lhstype, TREE_TYPE (rhs), 0))
6049 cp_error ("incompatible types in assignment of `%T' to `%T'",
6050 TREE_TYPE (rhs), lhstype);
6051 return error_mark_node;
6054 /* Allow array assignment in compiler-generated code. */
6055 if (pedantic && ! DECL_ARTIFICIAL (current_function_decl))
6056 pedwarn ("ANSI C++ forbids assignment of arrays");
6058 /* Have to wrap this in RTL_EXPR for two cases:
6059 in base or member initialization and if we
6060 are a branch of a ?: operator. Since we
6061 can't easily know the latter, just do it always. */
6063 result = make_node (RTL_EXPR);
6065 TREE_TYPE (result) = void_type_node;
6066 do_pending_stack_adjust ();
6067 start_sequence_for_rtl_expr (result);
6069 /* As a matter of principle, `start_sequence' should do this. */
6070 emit_note (0, -1);
6072 from_array = TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
6073 ? 1 + (modifycode != INIT_EXPR): 0;
6074 expand_vec_init (lhs, lhs, array_type_nelts (lhstype), newrhs,
6075 from_array);
6077 do_pending_stack_adjust ();
6079 TREE_SIDE_EFFECTS (result) = 1;
6080 RTL_EXPR_SEQUENCE (result) = get_insns ();
6081 RTL_EXPR_RTL (result) = const0_rtx;
6082 end_sequence ();
6083 return result;
6086 if (modifycode == INIT_EXPR)
6088 newrhs = convert_for_initialization (lhs, lhstype, newrhs, LOOKUP_NORMAL,
6089 "assignment", NULL_TREE, 0);
6090 if (lhs == DECL_RESULT (current_function_decl))
6092 if (DECL_INITIAL (lhs))
6093 warning ("return value from function receives multiple initializations");
6094 DECL_INITIAL (lhs) = newrhs;
6097 else
6099 /* Avoid warnings on enum bit fields. */
6100 if (TREE_CODE (olhstype) == ENUMERAL_TYPE
6101 && TREE_CODE (lhstype) == INTEGER_TYPE)
6103 newrhs = convert_for_assignment (olhstype, newrhs, "assignment",
6104 NULL_TREE, 0);
6105 newrhs = convert_force (lhstype, newrhs, 0);
6107 else
6108 newrhs = convert_for_assignment (lhstype, newrhs, "assignment",
6109 NULL_TREE, 0);
6110 if (TREE_CODE (newrhs) == CALL_EXPR
6111 && TYPE_NEEDS_CONSTRUCTING (lhstype))
6112 newrhs = build_cplus_new (lhstype, newrhs);
6114 /* Can't initialize directly from a TARGET_EXPR, since that would
6115 cause the lhs to be constructed twice, and possibly result in
6116 accidental self-initialization. So we force the TARGET_EXPR to be
6117 expanded without a target. */
6118 if (TREE_CODE (newrhs) == TARGET_EXPR)
6119 newrhs = build (COMPOUND_EXPR, TREE_TYPE (newrhs), newrhs,
6120 TREE_OPERAND (newrhs, 0));
6123 if (newrhs == error_mark_node)
6124 return error_mark_node;
6126 if (TREE_CODE (newrhs) == COND_EXPR)
6128 tree lhs1;
6129 tree cond = TREE_OPERAND (newrhs, 0);
6131 if (TREE_SIDE_EFFECTS (lhs))
6132 cond = build_compound_expr (tree_cons
6133 (NULL_TREE, lhs,
6134 build_expr_list (NULL_TREE, cond)));
6136 /* Cannot have two identical lhs on this one tree (result) as preexpand
6137 calls will rip them out and fill in RTL for them, but when the
6138 rtl is generated, the calls will only be in the first side of the
6139 condition, not on both, or before the conditional jump! (mrs) */
6140 lhs1 = break_out_calls (lhs);
6142 if (lhs == lhs1)
6143 /* If there's no change, the COND_EXPR behaves like any other rhs. */
6144 result = build (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6145 lhstype, lhs, newrhs);
6146 else
6148 tree result_type = TREE_TYPE (newrhs);
6149 /* We have to convert each arm to the proper type because the
6150 types may have been munged by constant folding. */
6151 result
6152 = build (COND_EXPR, result_type, cond,
6153 build_modify_expr (lhs, modifycode,
6154 cp_convert (result_type,
6155 TREE_OPERAND (newrhs, 1))),
6156 build_modify_expr (lhs1, modifycode,
6157 cp_convert (result_type,
6158 TREE_OPERAND (newrhs, 2))));
6161 else
6162 result = build (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
6163 lhstype, lhs, newrhs);
6165 TREE_SIDE_EFFECTS (result) = 1;
6167 /* If we got the LHS in a different type for storing in,
6168 convert the result back to the nominal type of LHS
6169 so that the value we return always has the same type
6170 as the LHS argument. */
6172 if (olhstype == TREE_TYPE (result))
6173 return result;
6174 /* Avoid warnings converting integral types back into enums
6175 for enum bit fields. */
6176 if (TREE_CODE (TREE_TYPE (result)) == INTEGER_TYPE
6177 && TREE_CODE (olhstype) == ENUMERAL_TYPE)
6179 result = build (COMPOUND_EXPR, olhstype, result, olhs);
6180 TREE_NO_UNUSED_WARNING (result) = 1;
6181 return result;
6183 return convert_for_assignment (olhstype, result, "assignment",
6184 NULL_TREE, 0);
6187 tree
6188 build_x_modify_expr (lhs, modifycode, rhs)
6189 tree lhs;
6190 enum tree_code modifycode;
6191 tree rhs;
6193 if (processing_template_decl)
6194 return build_min_nt (MODOP_EXPR, lhs,
6195 build_min_nt (modifycode, NULL_TREE, NULL_TREE), rhs);
6197 if (modifycode != NOP_EXPR)
6199 tree rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, lhs, rhs,
6200 make_node (modifycode));
6201 if (rval)
6202 return rval;
6204 return build_modify_expr (lhs, modifycode, rhs);
6207 /* Return 0 if EXP is not a valid lvalue in this language
6208 even though `lvalue_or_else' would accept it. */
6211 language_lvalue_valid (exp)
6212 tree exp;
6214 return 1;
6217 /* Get difference in deltas for different pointer to member function
6218 types. Return integer_zero_node, if FROM cannot be converted to a
6219 TO type. If FORCE is true, then allow reverse conversions as well. */
6221 static tree
6222 get_delta_difference (from, to, force)
6223 tree from, to;
6224 int force;
6226 tree delta = integer_zero_node;
6227 tree binfo;
6229 if (to == from)
6230 return delta;
6232 /* Should get_base_distance here, so we can check if any thing along the
6233 path is virtual, and we need to make sure we stay
6234 inside the real binfos when going through virtual bases.
6235 Maybe we should replace virtual bases with
6236 binfo_member (...CLASSTYPE_VBASECLASSES...)... (mrs) */
6237 binfo = get_binfo (from, to, 1);
6238 if (binfo == error_mark_node)
6240 error (" in pointer to member function conversion");
6241 return delta;
6243 if (binfo == 0)
6245 if (!force)
6247 error_not_base_type (from, to);
6248 error (" in pointer to member conversion");
6249 return delta;
6251 binfo = get_binfo (to, from, 1);
6252 if (binfo == error_mark_node)
6254 if (!force)
6255 error (" in pointer to member conversion");
6256 return delta;
6258 if (binfo == 0)
6260 if (!force)
6261 cp_error ("cannot convert pointer to member of type %T to unrelated pointer to member of type %T", from, to);
6262 return delta;
6264 if (TREE_VIA_VIRTUAL (binfo))
6266 binfo = binfo_member (BINFO_TYPE (binfo),
6267 CLASSTYPE_VBASECLASSES (from));
6268 warning ("pointer to member conversion to virtual base class will only work if you are very careful");
6270 delta = BINFO_OFFSET (binfo);
6271 delta = cp_convert (ptrdiff_type_node, delta);
6273 return build_binary_op (MINUS_EXPR,
6274 integer_zero_node,
6275 delta, 1);
6277 if (TREE_VIA_VIRTUAL (binfo))
6279 warning ("pointer to member conversion from virtual base class will only work if you are very careful");
6281 return BINFO_OFFSET (binfo);
6284 static tree
6285 build_ptrmemfunc1 (type, delta, idx, pfn, delta2)
6286 tree type, delta, idx, pfn, delta2;
6288 tree u;
6290 #if 0
6291 /* This is the old way we did it. We want to avoid calling
6292 digest_init, so that it can give an error if we use { } when
6293 initializing a pointer to member function. */
6295 if (pfn)
6297 u = build_nt (CONSTRUCTOR, NULL_TREE,
6298 expr_tree_cons (pfn_identifier, pfn, NULL_TREE));
6300 else
6302 u = build_nt (CONSTRUCTOR, NULL_TREE,
6303 expr_tree_cons (delta2_identifier, delta2, NULL_TREE));
6306 u = build_nt (CONSTRUCTOR, NULL_TREE,
6307 expr_tree_cons (NULL_TREE, delta,
6308 expr_tree_cons (NULL_TREE, idx,
6309 expr_tree_cons (NULL_TREE, u, NULL_TREE))));
6311 return digest_init (type, u, (tree*)0);
6312 #else
6313 tree delta_field, idx_field, pfn_or_delta2_field, pfn_field, delta2_field;
6314 tree subtype;
6315 int allconstant, allsimple;
6317 delta_field = TYPE_FIELDS (type);
6318 idx_field = TREE_CHAIN (delta_field);
6319 pfn_or_delta2_field = TREE_CHAIN (idx_field);
6320 subtype = TREE_TYPE (pfn_or_delta2_field);
6321 pfn_field = TYPE_FIELDS (subtype);
6322 delta2_field = TREE_CHAIN (pfn_field);
6324 if (pfn)
6326 allconstant = TREE_CONSTANT (pfn);
6327 allsimple = !! initializer_constant_valid_p (pfn, TREE_TYPE (pfn));
6328 u = expr_tree_cons (pfn_field, pfn, NULL_TREE);
6330 else
6332 delta2 = convert_and_check (delta_type_node, delta2);
6333 allconstant = TREE_CONSTANT (delta2);
6334 allsimple = !! initializer_constant_valid_p (delta2, TREE_TYPE (delta2));
6335 u = expr_tree_cons (delta2_field, delta2, NULL_TREE);
6338 delta = convert_and_check (delta_type_node, delta);
6339 idx = convert_and_check (delta_type_node, idx);
6341 allconstant = allconstant && TREE_CONSTANT (delta) && TREE_CONSTANT (idx);
6342 allsimple = allsimple
6343 && initializer_constant_valid_p (delta, TREE_TYPE (delta))
6344 && initializer_constant_valid_p (idx, TREE_TYPE (idx));
6346 u = build (CONSTRUCTOR, subtype, NULL_TREE, u);
6347 u = expr_tree_cons (delta_field, delta,
6348 expr_tree_cons (idx_field, idx,
6349 expr_tree_cons (pfn_or_delta2_field, u, NULL_TREE)));
6350 u = build (CONSTRUCTOR, type, NULL_TREE, u);
6351 TREE_CONSTANT (u) = allconstant;
6352 TREE_STATIC (u) = allconstant && allsimple;
6353 return u;
6354 #endif
6357 /* Build a constructor for a pointer to member function. It can be
6358 used to initialize global variables, local variable, or used
6359 as a value in expressions. TYPE is the POINTER to METHOD_TYPE we
6360 want to be.
6362 If FORCE is non-zero, then force this conversion, even if
6363 we would rather not do it. Usually set when using an explicit
6364 cast.
6366 Return error_mark_node, if something goes wrong. */
6368 tree
6369 build_ptrmemfunc (type, pfn, force)
6370 tree type, pfn;
6371 int force;
6373 tree idx = integer_zero_node;
6374 tree delta = integer_zero_node;
6375 tree delta2 = integer_zero_node;
6376 tree vfield_offset;
6377 tree npfn = NULL_TREE;
6379 /* Handle multiple conversions of pointer to member functions. */
6380 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (pfn)))
6382 tree ndelta, ndelta2;
6383 tree e1, e2, e3, n;
6385 /* Is is already the right type? */
6386 if (type == TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (pfn)))
6387 return pfn;
6389 ndelta = cp_convert (ptrdiff_type_node, build_component_ref (pfn, delta_identifier, NULL_TREE, 0));
6390 ndelta2 = cp_convert (ptrdiff_type_node, DELTA2_FROM_PTRMEMFUNC (pfn));
6391 idx = build_component_ref (pfn, index_identifier, NULL_TREE, 0);
6393 n = get_delta_difference (TYPE_METHOD_BASETYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (pfn)))),
6394 TYPE_METHOD_BASETYPE (TREE_TYPE (type)),
6395 force);
6397 delta = build_binary_op (PLUS_EXPR, ndelta, n, 1);
6398 delta2 = build_binary_op (PLUS_EXPR, ndelta2, n, 1);
6399 e1 = fold (build (GT_EXPR, boolean_type_node, idx, integer_zero_node));
6401 e2 = build_ptrmemfunc1 (TYPE_GET_PTRMEMFUNC_TYPE (type), delta, idx,
6402 NULL_TREE, delta2);
6404 pfn = PFN_FROM_PTRMEMFUNC (pfn);
6405 npfn = build1 (NOP_EXPR, type, pfn);
6406 TREE_CONSTANT (npfn) = TREE_CONSTANT (pfn);
6408 e3 = build_ptrmemfunc1 (TYPE_GET_PTRMEMFUNC_TYPE (type), delta, idx, npfn,
6409 NULL_TREE);
6410 return build_conditional_expr (e1, e2, e3);
6413 /* Handle null pointer to member function conversions. */
6414 if (integer_zerop (pfn))
6416 pfn = build_c_cast (type, integer_zero_node);
6417 return build_ptrmemfunc1 (TYPE_GET_PTRMEMFUNC_TYPE (type),
6418 integer_zero_node, integer_zero_node,
6419 pfn, NULL_TREE);
6422 if (TREE_CODE (pfn) == TREE_LIST
6423 || (TREE_CODE (pfn) == ADDR_EXPR
6424 && TREE_CODE (TREE_OPERAND (pfn, 0)) == TREE_LIST))
6425 return instantiate_type (type, pfn, 1);
6427 /* Allow pointer to member conversions here. */
6428 delta = get_delta_difference (TYPE_METHOD_BASETYPE (TREE_TYPE (TREE_TYPE (pfn))),
6429 TYPE_METHOD_BASETYPE (TREE_TYPE (type)),
6430 force);
6431 delta2 = build_binary_op (PLUS_EXPR, delta2, delta, 1);
6433 #if 0
6434 /* We need to check the argument types to see if they are compatible
6435 (any const or volatile violations. */
6436 something like this:
6437 comptype (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (type))),
6438 TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (pfn)))), ?);
6439 #endif
6441 if (TREE_CODE (TREE_OPERAND (pfn, 0)) != FUNCTION_DECL)
6442 warning ("assuming pointer to member function is non-virtual");
6444 if (TREE_CODE (TREE_OPERAND (pfn, 0)) == FUNCTION_DECL
6445 && DECL_VINDEX (TREE_OPERAND (pfn, 0)))
6447 /* Find the offset to the vfield pointer in the object. */
6448 vfield_offset = get_binfo (DECL_CONTEXT (TREE_OPERAND (pfn, 0)),
6449 DECL_CLASS_CONTEXT (TREE_OPERAND (pfn, 0)),
6451 vfield_offset = get_vfield_offset (vfield_offset);
6452 delta2 = size_binop (PLUS_EXPR, vfield_offset, delta2);
6454 /* Map everything down one to make room for the null pointer to member. */
6455 idx = size_binop (PLUS_EXPR,
6456 DECL_VINDEX (TREE_OPERAND (pfn, 0)),
6457 integer_one_node);
6459 else
6461 idx = size_binop (MINUS_EXPR, integer_zero_node, integer_one_node);
6463 if (type == TREE_TYPE (pfn))
6465 npfn = pfn;
6467 else
6469 npfn = build1 (NOP_EXPR, type, pfn);
6470 TREE_CONSTANT (npfn) = TREE_CONSTANT (pfn);
6474 return build_ptrmemfunc1 (TYPE_GET_PTRMEMFUNC_TYPE (type), delta, idx, npfn, delta2);
6477 /* Convert value RHS to type TYPE as preparation for an assignment
6478 to an lvalue of type TYPE.
6479 The real work of conversion is done by `convert'.
6480 The purpose of this function is to generate error messages
6481 for assignments that are not allowed in C.
6482 ERRTYPE is a string to use in error messages:
6483 "assignment", "return", etc.
6485 C++: attempts to allow `convert' to find conversions involving
6486 implicit type conversion between aggregate and scalar types
6487 as per 8.5.6 of C++ manual. Does not randomly dereference
6488 pointers to aggregates! */
6490 static tree
6491 convert_for_assignment (type, rhs, errtype, fndecl, parmnum)
6492 tree type, rhs;
6493 char *errtype;
6494 tree fndecl;
6495 int parmnum;
6497 register enum tree_code codel = TREE_CODE (type);
6498 register tree rhstype;
6499 register enum tree_code coder = TREE_CODE (TREE_TYPE (rhs));
6501 if (coder == UNKNOWN_TYPE)
6502 rhs = instantiate_type (type, rhs, 1);
6504 if (coder == ERROR_MARK)
6505 return error_mark_node;
6507 if (codel == OFFSET_TYPE)
6509 type = TREE_TYPE (type);
6510 codel = TREE_CODE (type);
6513 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
6514 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
6515 rhs = TREE_OPERAND (rhs, 0);
6517 if (rhs == error_mark_node)
6518 return error_mark_node;
6520 if (TREE_VALUE (rhs) == error_mark_node)
6521 return error_mark_node;
6523 if (TREE_CODE (TREE_TYPE (rhs)) == OFFSET_TYPE)
6525 rhs = resolve_offset_ref (rhs);
6526 if (rhs == error_mark_node)
6527 return error_mark_node;
6528 rhstype = TREE_TYPE (rhs);
6529 coder = TREE_CODE (rhstype);
6532 if (TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
6533 || TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
6534 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
6535 rhs = default_conversion (rhs);
6536 else if (TREE_CODE (TREE_TYPE (rhs)) == REFERENCE_TYPE)
6537 rhs = convert_from_reference (rhs);
6539 rhstype = TREE_TYPE (rhs);
6540 coder = TREE_CODE (rhstype);
6542 /* This should no longer change types on us. */
6543 if (TREE_CODE (rhs) == CONST_DECL)
6544 rhs = DECL_INITIAL (rhs);
6545 else if (TREE_READONLY_DECL_P (rhs))
6546 rhs = decl_constant_value (rhs);
6548 if (type == rhstype)
6550 overflow_warning (rhs);
6551 return rhs;
6554 if (coder == VOID_TYPE)
6556 error ("void value not ignored as it ought to be");
6557 return error_mark_node;
6559 /* Arithmetic types all interconvert. */
6560 if ((codel == INTEGER_TYPE || codel == REAL_TYPE || codel == BOOLEAN_TYPE
6561 || codel == COMPLEX_TYPE)
6562 && (coder == INTEGER_TYPE || coder == REAL_TYPE || coder == BOOLEAN_TYPE
6563 || coder == COMPLEX_TYPE))
6565 /* But we should warn if assigning REAL_TYPE to INTEGER_TYPE. */
6566 if (coder == REAL_TYPE && codel == INTEGER_TYPE)
6568 if (fndecl)
6569 cp_warning ("`%T' used for argument %P of `%D'",
6570 rhstype, parmnum, fndecl);
6571 else
6572 cp_warning ("%s to `%T' from `%T'", errtype, type, rhstype);
6574 /* And we should warn if assigning a negative value to
6575 an unsigned variable. */
6576 else if (TREE_UNSIGNED (type) && codel != BOOLEAN_TYPE)
6578 if (TREE_CODE (rhs) == INTEGER_CST
6579 && TREE_NEGATED_INT (rhs))
6581 if (fndecl)
6582 cp_warning ("negative value `%E' passed as argument %P of `%D'",
6583 rhs, parmnum, fndecl);
6584 else
6585 cp_warning ("%s of negative value `%E' to `%T'",
6586 errtype, rhs, type);
6588 overflow_warning (rhs);
6589 if (TREE_CONSTANT (rhs))
6590 rhs = fold (rhs);
6593 return convert_and_check (type, rhs);
6595 /* Conversions involving enums. */
6596 else if ((codel == ENUMERAL_TYPE
6597 && (INTEGRAL_CODE_P (coder) || coder == REAL_TYPE))
6598 || (coder == ENUMERAL_TYPE
6599 && (INTEGRAL_CODE_P (codel) || codel == REAL_TYPE)))
6601 return ocp_convert (type, rhs, CONV_IMPLICIT, LOOKUP_NORMAL);
6603 /* Conversions among pointers */
6604 else if (codel == POINTER_TYPE
6605 && (coder == POINTER_TYPE
6606 || (coder == RECORD_TYPE
6607 && (IS_SIGNATURE_POINTER (rhstype)
6608 || IS_SIGNATURE_REFERENCE (rhstype)))))
6610 register tree ttl = TREE_TYPE (type);
6611 register tree ttr;
6612 int ctt = 0;
6614 if (coder == RECORD_TYPE)
6616 rhs = build_optr_ref (rhs);
6617 rhstype = TREE_TYPE (rhs);
6619 ttr = TREE_TYPE (rhstype);
6621 /* If both pointers are of aggregate type, then we
6622 can give better error messages, and save some work
6623 as well. */
6624 if (TREE_CODE (ttl) == RECORD_TYPE && TREE_CODE (ttr) == RECORD_TYPE)
6626 tree binfo;
6628 if (TYPE_MAIN_VARIANT (ttl) == TYPE_MAIN_VARIANT (ttr)
6629 || type == class_star_type_node
6630 || rhstype == class_star_type_node)
6631 binfo = TYPE_BINFO (ttl);
6632 else
6633 binfo = get_binfo (ttl, ttr, 1);
6635 if (binfo == error_mark_node)
6636 return error_mark_node;
6637 if (binfo == 0)
6638 return error_not_base_type (ttl, ttr);
6640 if (! TYPE_READONLY (ttl) && TYPE_READONLY (ttr))
6642 if (fndecl)
6643 cp_pedwarn ("passing `%T' as argument %P of `%D' discards const",
6644 rhstype, parmnum, fndecl);
6645 else
6646 cp_pedwarn ("%s to `%T' from `%T' discards const",
6647 errtype, type, rhstype);
6649 if (! TYPE_VOLATILE (ttl) && TYPE_VOLATILE (ttr))
6651 if (fndecl)
6652 cp_pedwarn ("passing `%T' as argument %P of `%D' discards volatile",
6653 rhstype, parmnum, fndecl);
6654 else
6655 cp_pedwarn ("%s to `%T' from `%T' discards volatile",
6656 errtype, type, rhstype);
6660 /* Any non-function converts to a [const][volatile] void *
6661 and vice versa; otherwise, targets must be the same.
6662 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
6663 else if (TYPE_MAIN_VARIANT (ttl) == void_type_node
6664 || TYPE_MAIN_VARIANT (ttr) == void_type_node
6665 || (ctt = comp_target_types (type, rhstype, 1))
6666 || (unsigned_type (TYPE_MAIN_VARIANT (ttl))
6667 == unsigned_type (TYPE_MAIN_VARIANT (ttr))))
6669 /* ARM $4.8, commentary on p39. */
6670 if (TYPE_MAIN_VARIANT (ttl) == void_type_node
6671 && TREE_CODE (ttr) == OFFSET_TYPE)
6673 cp_error ("no standard conversion from `%T' to `void *'", ttr);
6674 return error_mark_node;
6677 if (ctt < 0 && TYPE_MAIN_VARIANT (ttl) != TYPE_MAIN_VARIANT (ttr))
6678 cp_pedwarn ("converting `%T' to `%T' is a contravariance violation",
6679 rhstype, type);
6681 if (TYPE_MAIN_VARIANT (ttl) != void_type_node
6682 && TYPE_MAIN_VARIANT (ttr) == void_type_node
6683 && ! null_ptr_cst_p (rhs))
6685 if (coder == RECORD_TYPE)
6686 cp_pedwarn ("implicit conversion of signature pointer to type `%T'",
6687 type);
6688 else
6689 pedwarn ("ANSI C++ forbids implicit conversion from `void *' in %s",
6690 errtype);
6692 /* Const and volatile mean something different for function types,
6693 so the usual warnings are not appropriate. */
6694 else if ((TREE_CODE (ttr) != FUNCTION_TYPE && TREE_CODE (ttr) != METHOD_TYPE)
6695 || (TREE_CODE (ttl) != FUNCTION_TYPE && TREE_CODE (ttl) != METHOD_TYPE))
6697 if (TREE_CODE (ttl) == OFFSET_TYPE
6698 && binfo_member (TYPE_OFFSET_BASETYPE (ttr),
6699 CLASSTYPE_VBASECLASSES (TYPE_OFFSET_BASETYPE (ttl))))
6701 sorry ("%s between pointer to members converting across virtual baseclasses", errtype);
6702 return error_mark_node;
6704 else if (! TYPE_READONLY (ttl) && TYPE_READONLY (ttr))
6706 if (fndecl)
6707 cp_pedwarn ("passing `%T' as argument %P of `%D' discards const",
6708 rhstype, parmnum, fndecl);
6709 else
6710 cp_pedwarn ("%s to `%T' from `%T' discards const",
6711 errtype, type, rhstype);
6713 else if (! TYPE_VOLATILE (ttl) && TYPE_VOLATILE (ttr))
6715 if (fndecl)
6716 cp_pedwarn ("passing `%T' as argument %P of `%D' discards volatile",
6717 rhstype, parmnum, fndecl);
6718 else
6719 cp_pedwarn ("%s to `%T' from `%T' discards volatile",
6720 errtype, type, rhstype);
6722 else if (TREE_CODE (ttl) == TREE_CODE (ttr)
6723 && ! comp_target_types (type, rhstype, 1))
6725 if (fndecl)
6726 cp_pedwarn ("passing `%T' as argument %P of `%D' changes signedness",
6727 rhstype, parmnum, fndecl);
6728 else
6729 cp_pedwarn ("%s to `%T' from `%T' changes signedness",
6730 errtype, type, rhstype);
6734 else
6736 int add_quals = 0, const_parity = 0, volatile_parity = 0;
6737 int left_const = 1;
6738 int unsigned_parity;
6739 int nptrs = 0;
6741 /* This code is basically a duplicate of comp_ptr_ttypes_real. */
6742 for (; ; ttl = TREE_TYPE (ttl), ttr = TREE_TYPE (ttr))
6744 nptrs -= 1;
6745 const_parity |= (TYPE_READONLY (ttl) < TYPE_READONLY (ttr));
6746 volatile_parity |= (TYPE_VOLATILE (ttl) < TYPE_VOLATILE (ttr));
6748 if (! left_const
6749 && (TYPE_READONLY (ttl) > TYPE_READONLY (ttr)
6750 || TYPE_VOLATILE (ttl) > TYPE_VOLATILE (ttr)))
6751 add_quals = 1;
6752 left_const &= TYPE_READONLY (ttl);
6754 if (TREE_CODE (ttl) != POINTER_TYPE
6755 || TREE_CODE (ttr) != POINTER_TYPE)
6756 break;
6758 unsigned_parity = TREE_UNSIGNED (ttl) - TREE_UNSIGNED (ttr);
6759 if (unsigned_parity)
6761 if (TREE_UNSIGNED (ttl))
6762 ttr = unsigned_type (ttr);
6763 else
6764 ttl = unsigned_type (ttl);
6767 if (comp_target_types (ttl, ttr, nptrs) > 0)
6769 if (add_quals)
6771 if (fndecl)
6772 cp_pedwarn ("passing `%T' as argument %P of `%D' adds cv-quals without intervening `const'",
6773 rhstype, parmnum, fndecl);
6774 else
6775 cp_pedwarn ("%s to `%T' from `%T' adds cv-quals without intervening `const'",
6776 errtype, type, rhstype);
6778 if (const_parity)
6780 if (fndecl)
6781 cp_pedwarn ("passing `%T' as argument %P of `%D' discards const",
6782 rhstype, parmnum, fndecl);
6783 else
6784 cp_pedwarn ("%s to `%T' from `%T' discards const",
6785 errtype, type, rhstype);
6787 if (volatile_parity)
6789 if (fndecl)
6790 cp_pedwarn ("passing `%T' as argument %P of `%D' discards volatile",
6791 rhstype, parmnum, fndecl);
6792 else
6793 cp_pedwarn ("%s to `%T' from `%T' discards volatile",
6794 errtype, type, rhstype);
6796 if (unsigned_parity > 0)
6798 if (fndecl)
6799 cp_pedwarn ("passing `%T' as argument %P of `%D' changes signed to unsigned",
6800 rhstype, parmnum, fndecl);
6801 else
6802 cp_pedwarn ("%s to `%T' from `%T' changes signed to unsigned",
6803 errtype, type, rhstype);
6805 else if (unsigned_parity < 0)
6807 if (fndecl)
6808 cp_pedwarn ("passing `%T' as argument %P of `%D' changes unsigned to signed",
6809 rhstype, parmnum, fndecl);
6810 else
6811 cp_pedwarn ("%s to `%T' from `%T' changes unsigned to signed",
6812 errtype, type, rhstype);
6815 /* C++ is not so friendly about converting function and
6816 member function pointers as C. Emit warnings here. */
6817 if (TREE_CODE (ttl) == FUNCTION_TYPE
6818 || TREE_CODE (ttl) == METHOD_TYPE)
6819 if (! comptypes (ttl, ttr, 0))
6821 warning ("conflicting function types in %s:", errtype);
6822 cp_warning ("\t`%T' != `%T'", type, rhstype);
6825 else
6827 if (fndecl)
6828 cp_error ("passing `%T' as argument %P of `%D'",
6829 rhstype, parmnum, fndecl);
6830 else
6831 cp_error ("%s to `%T' from `%T'", errtype, type, rhstype);
6832 return error_mark_node;
6835 return cp_convert (type, rhs);
6837 else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
6839 /* An explicit constant 0 can convert to a pointer,
6840 but not a 0 that results from casting or folding. */
6841 if (! (TREE_CODE (rhs) == INTEGER_CST && integer_zerop (rhs)))
6843 if (fndecl)
6844 cp_pedwarn ("passing `%T' to argument %P of `%D' lacks a cast",
6845 rhstype, parmnum, fndecl);
6846 else
6847 cp_pedwarn ("%s to `%T' from `%T' lacks a cast",
6848 errtype, type, rhstype);
6850 return cp_convert (type, rhs);
6852 else if (codel == INTEGER_TYPE
6853 && (coder == POINTER_TYPE
6854 || (coder == RECORD_TYPE
6855 && (IS_SIGNATURE_POINTER (rhstype)
6856 || TYPE_PTRMEMFUNC_FLAG (rhstype)
6857 || IS_SIGNATURE_REFERENCE (rhstype)))))
6859 if (fndecl)
6860 cp_pedwarn ("passing `%T' to argument %P of `%D' lacks a cast",
6861 rhstype, parmnum, fndecl);
6862 else
6863 cp_pedwarn ("%s to `%T' from `%T' lacks a cast",
6864 errtype, type, rhstype);
6865 return cp_convert (type, rhs);
6867 else if (codel == BOOLEAN_TYPE
6868 && (coder == POINTER_TYPE
6869 || (coder == RECORD_TYPE
6870 && (IS_SIGNATURE_POINTER (rhstype)
6871 || TYPE_PTRMEMFUNC_FLAG (rhstype)
6872 || IS_SIGNATURE_REFERENCE (rhstype)))))
6873 return cp_convert (type, rhs);
6875 /* C++ */
6876 else if (((coder == POINTER_TYPE
6877 && TREE_CODE (TREE_TYPE (rhstype)) == METHOD_TYPE)
6878 || integer_zerop (rhs)
6879 || TYPE_PTRMEMFUNC_P (rhstype))
6880 && TYPE_PTRMEMFUNC_P (type))
6882 tree ttl = TYPE_PTRMEMFUNC_FN_TYPE (type);
6883 tree ttr = (TREE_CODE (rhstype) == POINTER_TYPE ? rhstype
6884 : TYPE_PTRMEMFUNC_FN_TYPE (type));
6885 int ctt = comp_target_types (ttl, ttr, 1);
6887 if (ctt < 0)
6888 cp_pedwarn ("converting `%T' to `%T' is a contravariance violation",
6889 ttr, ttl);
6890 else if (ctt == 0)
6891 cp_error ("%s to `%T' from `%T'", errtype, ttl, ttr);
6893 /* compatible pointer to member functions. */
6894 return build_ptrmemfunc (ttl, rhs, 0);
6896 else if (codel == ERROR_MARK || coder == ERROR_MARK)
6897 return error_mark_node;
6899 /* This should no longer happen. References are initialized via
6900 `convert_for_initialization'. They should otherwise be
6901 bashed before coming here. */
6902 else if (codel == REFERENCE_TYPE)
6903 my_friendly_abort (317);
6904 else if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (rhs)))
6906 tree nrhs = build1 (NOP_EXPR, type, rhs);
6907 TREE_CONSTANT (nrhs) = TREE_CONSTANT (rhs);
6908 return nrhs;
6910 else if (TYPE_HAS_CONSTRUCTOR (type) || IS_AGGR_TYPE (TREE_TYPE (rhs)))
6911 return cp_convert (type, rhs);
6912 /* Handle anachronistic conversions from (::*)() to cv void* or (*)(). */
6913 else if (TREE_CODE (type) == POINTER_TYPE
6914 && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
6915 || TYPE_MAIN_VARIANT (TREE_TYPE (type)) == void_type_node)
6916 && TREE_TYPE (rhs)
6917 && TYPE_PTRMEMFUNC_P (TREE_TYPE (rhs)))
6918 return cp_convert (type, rhs);
6920 cp_error ("%s to `%T' from `%T'", errtype, type, rhstype);
6921 return error_mark_node;
6924 /* Convert RHS to be of type TYPE. If EXP is non-zero,
6925 it is the target of the initialization.
6926 ERRTYPE is a string to use in error messages.
6928 Two major differences between the behavior of
6929 `convert_for_assignment' and `convert_for_initialization'
6930 are that references are bashed in the former, while
6931 copied in the latter, and aggregates are assigned in
6932 the former (operator=) while initialized in the
6933 latter (X(X&)).
6935 If using constructor make sure no conversion operator exists, if one does
6936 exist, an ambiguity exists.
6938 If flags doesn't include LOOKUP_COMPLAIN, don't complain about anything. */
6940 tree
6941 convert_for_initialization (exp, type, rhs, flags, errtype, fndecl, parmnum)
6942 tree exp, type, rhs;
6943 int flags;
6944 char *errtype;
6945 tree fndecl;
6946 int parmnum;
6948 register enum tree_code codel = TREE_CODE (type);
6949 register tree rhstype;
6950 register enum tree_code coder;
6952 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
6953 Strip such NOP_EXPRs, since RHS is used in non-lvalue context. */
6954 if (TREE_CODE (rhs) == NOP_EXPR
6955 && TREE_TYPE (rhs) == TREE_TYPE (TREE_OPERAND (rhs, 0))
6956 && codel != REFERENCE_TYPE)
6957 rhs = TREE_OPERAND (rhs, 0);
6959 if (rhs == error_mark_node
6960 || (TREE_CODE (rhs) == TREE_LIST && TREE_VALUE (rhs) == error_mark_node))
6961 return error_mark_node;
6963 if (TREE_CODE (TREE_TYPE (rhs)) == OFFSET_TYPE)
6965 rhs = resolve_offset_ref (rhs);
6966 if (rhs == error_mark_node)
6967 return error_mark_node;
6970 if (TREE_CODE (TREE_TYPE (rhs)) == REFERENCE_TYPE)
6971 rhs = convert_from_reference (rhs);
6973 if ((TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
6974 && TREE_CODE (type) != ARRAY_TYPE
6975 && (TREE_CODE (type) != REFERENCE_TYPE
6976 || TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE))
6977 || TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE
6978 || TREE_CODE (TREE_TYPE (rhs)) == METHOD_TYPE)
6979 rhs = default_conversion (rhs);
6981 rhstype = TREE_TYPE (rhs);
6982 coder = TREE_CODE (rhstype);
6984 if (coder == UNKNOWN_TYPE)
6986 rhs = instantiate_type (type, rhs, 1);
6987 rhstype = TREE_TYPE (rhs);
6988 coder = TREE_CODE (rhstype);
6991 if (coder == ERROR_MARK)
6992 return error_mark_node;
6994 /* We accept references to incomplete types, so we can
6995 return here before checking if RHS is of complete type. */
6997 if (codel == REFERENCE_TYPE)
6999 /* This should eventually happen in convert_arguments. */
7000 extern int warningcount, errorcount;
7001 int savew, savee;
7003 if (fndecl)
7004 savew = warningcount, savee = errorcount;
7005 rhs = convert_to_reference (type, rhs, CONV_IMPLICIT, flags,
7006 exp ? exp : error_mark_node);
7007 if (fndecl)
7009 if (warningcount > savew)
7010 cp_warning_at ("in passing argument %P of `%+D'", parmnum, fndecl);
7011 else if (errorcount > savee)
7012 cp_error_at ("in passing argument %P of `%+D'", parmnum, fndecl);
7014 return rhs;
7017 rhs = require_complete_type (rhs);
7018 if (rhs == error_mark_node)
7019 return error_mark_node;
7021 if (exp != 0) exp = require_complete_type (exp);
7022 if (exp == error_mark_node)
7023 return error_mark_node;
7025 if (TREE_CODE (rhstype) == REFERENCE_TYPE)
7026 rhstype = TREE_TYPE (rhstype);
7028 type = complete_type (type);
7030 if (TYPE_LANG_SPECIFIC (type)
7031 && (IS_SIGNATURE_POINTER (type) || IS_SIGNATURE_REFERENCE (type)))
7032 return build_signature_pointer_constructor (type, rhs);
7034 if (IS_AGGR_TYPE (type)
7035 && (TYPE_NEEDS_CONSTRUCTING (type) || TREE_HAS_CONSTRUCTOR (rhs)))
7037 if (flag_ansi_overloading)
7038 return ocp_convert (type, rhs, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
7040 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
7042 /* This is sufficient to perform initialization. No need,
7043 apparently, to go through X(X&) to do first-cut
7044 initialization. Return through a TARGET_EXPR so that we get
7045 cleanups if it is used. */
7046 if (TREE_CODE (rhs) == CALL_EXPR)
7048 rhs = build_cplus_new (type, rhs);
7049 return rhs;
7051 /* Handle the case of default parameter initialization and
7052 initialization of static variables. */
7053 else if (TREE_CODE (rhs) == TARGET_EXPR)
7054 return rhs;
7055 else if (TREE_CODE (rhs) == INDIRECT_REF && TREE_HAS_CONSTRUCTOR (rhs))
7057 my_friendly_assert (TREE_CODE (TREE_OPERAND (rhs, 0)) == CALL_EXPR, 318);
7058 if (exp)
7060 my_friendly_assert (TREE_VALUE (TREE_OPERAND (TREE_OPERAND (rhs, 0), 1)) == NULL_TREE, 316);
7061 TREE_VALUE (TREE_OPERAND (TREE_OPERAND (rhs, 0), 1))
7062 = build_unary_op (ADDR_EXPR, exp, 0);
7064 else
7065 rhs = build_cplus_new (type, TREE_OPERAND (rhs, 0));
7066 return rhs;
7068 else if (TYPE_HAS_TRIVIAL_INIT_REF (type))
7069 return rhs;
7071 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype)
7072 || (IS_AGGR_TYPE (rhstype) && UNIQUELY_DERIVED_FROM_P (type, rhstype)))
7074 if (TYPE_HAS_INIT_REF (type))
7076 tree init = build_method_call (exp, ctor_identifier,
7077 build_expr_list (NULL_TREE, rhs),
7078 TYPE_BINFO (type), LOOKUP_NORMAL);
7080 if (init == error_mark_node)
7081 return error_mark_node;
7083 if (exp == 0)
7085 exp = build_cplus_new (type, init);
7086 return exp;
7089 return build (COMPOUND_EXPR, type, init, exp);
7092 /* ??? The following warnings are turned off because
7093 this is another place where the default X(X&) constructor
7094 is implemented. */
7095 if (TYPE_HAS_ASSIGNMENT (type))
7096 cp_warning ("bitwise copy: `%T' defines operator=", type);
7098 if (TREE_CODE (TREE_TYPE (rhs)) == REFERENCE_TYPE)
7099 rhs = convert_from_reference (rhs);
7100 if (type != rhstype)
7102 tree nrhs = build1 (NOP_EXPR, type, rhs);
7103 TREE_CONSTANT (nrhs) = TREE_CONSTANT (rhs);
7104 rhs = nrhs;
7106 return rhs;
7109 return ocp_convert (type, rhs, CONV_OLD_CONVERT,
7110 flags | LOOKUP_NO_CONVERSION);
7113 if (type == TREE_TYPE (rhs))
7115 if (TREE_READONLY_DECL_P (rhs))
7116 rhs = decl_constant_value (rhs);
7117 return rhs;
7120 return convert_for_assignment (type, rhs, errtype, fndecl, parmnum);
7123 /* Expand an ASM statement with operands, handling output operands
7124 that are not variables or INDIRECT_REFS by transforming such
7125 cases into cases that expand_asm_operands can handle.
7127 Arguments are same as for expand_asm_operands.
7129 We don't do default conversions on all inputs, because it can screw
7130 up operands that are expected to be in memory. */
7132 void
7133 c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
7134 tree string, outputs, inputs, clobbers;
7135 int vol;
7136 char *filename;
7137 int line;
7139 int noutputs = list_length (outputs);
7140 register int i;
7141 /* o[I] is the place that output number I should be written. */
7142 register tree *o = (tree *) alloca (noutputs * sizeof (tree));
7143 register tree tail;
7145 /* Record the contents of OUTPUTS before it is modified. */
7146 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
7147 o[i] = TREE_VALUE (tail);
7149 /* Generate the ASM_OPERANDS insn;
7150 store into the TREE_VALUEs of OUTPUTS some trees for
7151 where the values were actually stored. */
7152 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line);
7154 /* Copy all the intermediate outputs into the specified outputs. */
7155 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
7157 if (o[i] != TREE_VALUE (tail))
7159 expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)),
7160 const0_rtx, VOIDmode, EXPAND_NORMAL);
7161 free_temp_slots ();
7163 /* Detect modification of read-only values.
7164 (Otherwise done by build_modify_expr.) */
7165 else
7167 tree type = TREE_TYPE (o[i]);
7168 if (TYPE_READONLY (type)
7169 || ((TREE_CODE (type) == RECORD_TYPE
7170 || TREE_CODE (type) == UNION_TYPE)
7171 && C_TYPE_FIELDS_READONLY (type)))
7172 readonly_error (o[i], "modification by `asm'", 1);
7176 /* Those MODIFY_EXPRs could do autoincrements. */
7177 emit_queue ();
7180 /* Expand a C `return' statement.
7181 RETVAL is the expression for what to return,
7182 or a null pointer for `return;' with no value.
7184 C++: upon seeing a `return', we must call destructors on all
7185 variables in scope which had constructors called on them.
7186 This means that if in a destructor, the base class destructors
7187 must be called before returning.
7189 The RETURN statement in C++ has initialization semantics. */
7191 void
7192 c_expand_return (retval)
7193 tree retval;
7195 extern struct nesting *cond_stack, *loop_stack, *case_stack;
7196 extern tree dtor_label, ctor_label;
7197 tree result = DECL_RESULT (current_function_decl);
7198 tree valtype = TREE_TYPE (result);
7200 if (TREE_THIS_VOLATILE (current_function_decl))
7201 warning ("function declared `noreturn' has a `return' statement");
7203 if (retval == error_mark_node)
7205 current_function_returns_null = 1;
7206 return;
7209 if (processing_template_decl)
7211 add_tree (build_min_nt (RETURN_STMT, retval));
7212 return;
7215 if (retval == NULL_TREE)
7217 /* A non-named return value does not count. */
7219 /* Can't just return from a destructor. */
7220 if (dtor_label)
7222 expand_goto (dtor_label);
7223 return;
7226 if (DECL_CONSTRUCTOR_P (current_function_decl))
7227 retval = current_class_ptr;
7228 else if (DECL_NAME (result) != NULL_TREE
7229 && TREE_CODE (valtype) != VOID_TYPE)
7230 retval = result;
7231 else
7233 current_function_returns_null = 1;
7235 if (valtype != NULL_TREE && TREE_CODE (valtype) != VOID_TYPE)
7237 if (DECL_NAME (DECL_RESULT (current_function_decl)) == NULL_TREE)
7239 pedwarn ("`return' with no value, in function returning non-void");
7240 /* Clear this, so finish_function won't say that we
7241 reach the end of a non-void function (which we don't,
7242 we gave a return!). */
7243 current_function_returns_null = 0;
7247 expand_null_return ();
7248 return;
7251 else if (DECL_CONSTRUCTOR_P (current_function_decl)
7252 && retval != current_class_ptr)
7254 if (flag_this_is_variable)
7255 error ("return from a constructor: use `this = ...' instead");
7256 else
7257 error ("return from a constructor");
7258 retval = current_class_ptr;
7261 /* Effective C++ rule 15. See also start_function. */
7262 if (warn_ecpp
7263 && DECL_NAME (current_function_decl) == ansi_opname[(int) MODIFY_EXPR]
7264 && retval != current_class_ref)
7265 cp_warning ("`operator=' should return a reference to `*this'");
7267 if (valtype == NULL_TREE || TREE_CODE (valtype) == VOID_TYPE)
7269 current_function_returns_null = 1;
7270 if ((pedantic && ! DECL_ARTIFICIAL (current_function_decl))
7271 || TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
7272 pedwarn ("`return' with a value, in function returning void");
7273 expand_return (retval);
7274 return;
7277 /* Now deal with possible C++ hair:
7278 (1) Compute the return value.
7279 (2) If there are aggregate values with destructors which
7280 must be cleaned up, clean them (taking care
7281 not to clobber the return value).
7282 (3) If an X(X&) constructor is defined, the return
7283 value must be returned via that. */
7285 if (retval == result
7286 || DECL_CONSTRUCTOR_P (current_function_decl))
7287 /* It's already done for us. */;
7288 else if (TREE_TYPE (retval) == void_type_node)
7290 pedwarn ("return of void value in function returning non-void");
7291 expand_expr_stmt (retval);
7292 retval = 0;
7294 else
7296 retval = convert_for_initialization
7297 (NULL_TREE, valtype, retval, LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING,
7298 "return", NULL_TREE, 0);
7300 if (retval == error_mark_node)
7302 /* Avoid warning about control reaching end of function. */
7303 expand_null_return ();
7304 return;
7307 /* We can't initialize a register from a NEW_EXPR. */
7308 else if (! current_function_returns_struct
7309 && TREE_CODE (retval) == TARGET_EXPR
7310 && TREE_CODE (TREE_OPERAND (retval, 1)) == NEW_EXPR)
7311 retval = build (COMPOUND_EXPR, TREE_TYPE (retval), retval,
7312 TREE_OPERAND (retval, 0));
7314 /* Add some useful error checking for C++. */
7315 else if (TREE_CODE (valtype) == REFERENCE_TYPE)
7317 tree whats_returned;
7319 /* Sort through common things to see what it is
7320 we are returning. */
7321 whats_returned = retval;
7322 if (TREE_CODE (whats_returned) == COMPOUND_EXPR)
7324 whats_returned = TREE_OPERAND (whats_returned, 1);
7325 if (TREE_CODE (whats_returned) == ADDR_EXPR)
7326 whats_returned = TREE_OPERAND (whats_returned, 0);
7328 while (TREE_CODE (whats_returned) == CONVERT_EXPR
7329 || TREE_CODE (whats_returned) == NOP_EXPR)
7330 whats_returned = TREE_OPERAND (whats_returned, 0);
7331 if (TREE_CODE (whats_returned) == ADDR_EXPR)
7333 whats_returned = TREE_OPERAND (whats_returned, 0);
7334 while (TREE_CODE (whats_returned) == NEW_EXPR
7335 || TREE_CODE (whats_returned) == TARGET_EXPR)
7337 /* Get the target. */
7338 whats_returned = TREE_OPERAND (whats_returned, 0);
7339 warning ("returning reference to temporary");
7343 if (TREE_CODE (whats_returned) == VAR_DECL && DECL_NAME (whats_returned))
7345 if (TEMP_NAME_P (DECL_NAME (whats_returned)))
7346 warning ("reference to non-lvalue returned");
7347 else if (TREE_CODE (TREE_TYPE (whats_returned)) != REFERENCE_TYPE
7348 && ! TREE_STATIC (whats_returned)
7349 && IDENTIFIER_LOCAL_VALUE (DECL_NAME (whats_returned))
7350 && !TREE_PUBLIC (whats_returned))
7351 cp_warning_at ("reference to local variable `%D' returned", whats_returned);
7354 else if (TREE_CODE (retval) == ADDR_EXPR)
7356 tree whats_returned = TREE_OPERAND (retval, 0);
7358 if (TREE_CODE (whats_returned) == VAR_DECL
7359 && DECL_NAME (whats_returned)
7360 && IDENTIFIER_LOCAL_VALUE (DECL_NAME (whats_returned))
7361 && !TREE_STATIC (whats_returned)
7362 && !TREE_PUBLIC (whats_returned))
7363 cp_warning_at ("address of local variable `%D' returned", whats_returned);
7367 if (retval != NULL_TREE
7368 && TREE_CODE_CLASS (TREE_CODE (retval)) == 'd'
7369 && cond_stack == 0 && loop_stack == 0 && case_stack == 0)
7370 current_function_return_value = retval;
7372 if (ctor_label && TREE_CODE (ctor_label) != ERROR_MARK)
7374 /* Here RETVAL is CURRENT_CLASS_PTR, so there's nothing to do. */
7375 expand_goto (ctor_label);
7378 if (retval && retval != result)
7380 result = build (INIT_EXPR, TREE_TYPE (result), result, retval);
7381 TREE_SIDE_EFFECTS (result) = 1;
7384 expand_start_target_temps ();
7386 expand_return (result);
7388 expand_end_target_temps ();
7390 current_function_returns_value = 1;
7393 /* Start a C switch statement, testing expression EXP.
7394 Return EXP if it is valid, an error node otherwise. */
7396 tree
7397 c_expand_start_case (exp)
7398 tree exp;
7400 tree type;
7401 register enum tree_code code;
7403 /* Convert from references, etc. */
7404 exp = default_conversion (exp);
7405 type = TREE_TYPE (exp);
7406 code = TREE_CODE (type);
7408 if (IS_AGGR_TYPE_CODE (code))
7409 exp = build_type_conversion (CONVERT_EXPR, integer_type_node, exp, 1);
7411 if (exp == NULL_TREE)
7413 error ("switch quantity not an integer");
7414 exp = error_mark_node;
7416 type = TREE_TYPE (exp);
7417 code = TREE_CODE (type);
7419 if (code != INTEGER_TYPE && code != ENUMERAL_TYPE && code != ERROR_MARK)
7421 error ("switch quantity not an integer");
7422 exp = error_mark_node;
7424 else
7426 tree idx;
7428 exp = default_conversion (exp);
7429 type = TREE_TYPE (exp);
7430 idx = get_unwidened (exp, 0);
7431 /* We can't strip a conversion from a signed type to an unsigned,
7432 because if we did, int_fits_type_p would do the wrong thing
7433 when checking case values for being in range,
7434 and it's too hard to do the right thing. */
7435 if (TREE_UNSIGNED (TREE_TYPE (exp))
7436 == TREE_UNSIGNED (TREE_TYPE (idx)))
7437 exp = idx;
7440 expand_start_case
7441 (1, fold (build1 (CLEANUP_POINT_EXPR, TREE_TYPE (exp), exp)),
7442 type, "switch statement");
7444 return exp;
7447 /* CONSTP remembers whether or not all the intervening pointers in the `to'
7448 type have been const. */
7450 static int
7451 comp_ptr_ttypes_real (to, from, constp)
7452 tree to, from;
7453 int constp;
7455 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7457 if (TREE_CODE (to) != TREE_CODE (from))
7458 return 0;
7460 if (TREE_CODE (from) == OFFSET_TYPE
7461 && comptypes (TYPE_OFFSET_BASETYPE (from),
7462 TYPE_OFFSET_BASETYPE (to), 1))
7463 continue;
7465 /* Const and volatile mean something different for function types,
7466 so the usual checks are not appropriate. */
7467 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7469 if (TYPE_READONLY (from) > TYPE_READONLY (to)
7470 || TYPE_VOLATILE (from) > TYPE_VOLATILE (to))
7471 return 0;
7473 if (! constp
7474 && (TYPE_READONLY (to) > TYPE_READONLY (from)
7475 || TYPE_VOLATILE (to) > TYPE_READONLY (from)))
7476 return 0;
7477 constp &= TYPE_READONLY (to);
7480 if (TREE_CODE (to) != POINTER_TYPE)
7481 return comptypes (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from), 1);
7485 /* When comparing, say, char ** to char const **, this function takes the
7486 'char *' and 'char const *'. Do not pass non-pointer types to this
7487 function. */
7490 comp_ptr_ttypes (to, from)
7491 tree to, from;
7493 return comp_ptr_ttypes_real (to, from, 1);
7496 /* Returns 1 if to and from are (possibly multi-level) pointers to the same
7497 type or inheritance-related types, regardless of cv-quals. */
7500 ptr_reasonably_similar (to, from)
7501 tree to, from;
7503 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7505 if (TREE_CODE (to) != TREE_CODE (from))
7506 return 0;
7508 if (TREE_CODE (from) == OFFSET_TYPE
7509 && comptypes (TYPE_OFFSET_BASETYPE (to),
7510 TYPE_OFFSET_BASETYPE (from), -1))
7511 continue;
7513 if (TREE_CODE (to) != POINTER_TYPE)
7514 return comptypes
7515 (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from), -1);
7519 /* Like comp_ptr_ttypes, for const_cast. */
7521 static int
7522 comp_ptr_ttypes_const (to, from)
7523 tree to, from;
7525 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7527 if (TREE_CODE (to) != TREE_CODE (from))
7528 return 0;
7530 if (TREE_CODE (from) == OFFSET_TYPE
7531 && comptypes (TYPE_OFFSET_BASETYPE (from),
7532 TYPE_OFFSET_BASETYPE (to), 1))
7533 continue;
7535 if (TREE_CODE (to) != POINTER_TYPE)
7536 return comptypes (TYPE_MAIN_VARIANT (to), TYPE_MAIN_VARIANT (from), 1);
7540 /* Like comp_ptr_ttypes, for reinterpret_cast. */
7542 static int
7543 comp_ptr_ttypes_reinterpret (to, from)
7544 tree to, from;
7546 int constp = 1;
7548 for (; ; to = TREE_TYPE (to), from = TREE_TYPE (from))
7550 if (TREE_CODE (from) == OFFSET_TYPE)
7551 from = TREE_TYPE (from);
7552 if (TREE_CODE (to) == OFFSET_TYPE)
7553 to = TREE_TYPE (to);
7555 if (TREE_CODE (to) != TREE_CODE (from))
7556 return 1;
7558 /* Const and volatile mean something different for function types,
7559 so the usual checks are not appropriate. */
7560 if (TREE_CODE (to) != FUNCTION_TYPE && TREE_CODE (to) != METHOD_TYPE)
7562 if (TYPE_READONLY (from) > TYPE_READONLY (to)
7563 || TYPE_VOLATILE (from) > TYPE_VOLATILE (to))
7564 return 0;
7566 if (! constp
7567 && (TYPE_READONLY (to) > TYPE_READONLY (from)
7568 || TYPE_VOLATILE (to) > TYPE_READONLY (from)))
7569 return 0;
7570 constp &= TYPE_READONLY (to);
7573 if (TREE_CODE (to) != POINTER_TYPE)
7574 return 1;