OSDN Git Service

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