OSDN Git Service

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