OSDN Git Service

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