OSDN Git Service

d9166c933bba226652eed83906fc86b7c4aba2f0
[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               && comp_template_args (PACK_EXPANSION_EXTRA_ARGS (t1),
1335                                      PACK_EXPANSION_EXTRA_ARGS (t2)));
1336
1337     case DECLTYPE_TYPE:
1338       if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t1)
1339           != DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t2)
1340           || (DECLTYPE_FOR_LAMBDA_CAPTURE (t1)
1341               != DECLTYPE_FOR_LAMBDA_CAPTURE (t2))
1342           || (DECLTYPE_FOR_LAMBDA_PROXY (t1)
1343               != DECLTYPE_FOR_LAMBDA_PROXY (t2))
1344           || !cp_tree_equal (DECLTYPE_TYPE_EXPR (t1), 
1345                              DECLTYPE_TYPE_EXPR (t2)))
1346         return false;
1347       break;
1348
1349     case UNDERLYING_TYPE:
1350       return same_type_p (UNDERLYING_TYPE_TYPE (t1), 
1351                           UNDERLYING_TYPE_TYPE (t2));
1352
1353     default:
1354       return false;
1355     }
1356
1357   /* If we get here, we know that from a target independent POV the
1358      types are the same.  Make sure the target attributes are also
1359      the same.  */
1360   return comp_type_attributes (t1, t2);
1361 }
1362
1363 /* Return true if T1 and T2 are related as allowed by STRICT.  STRICT
1364    is a bitwise-or of the COMPARE_* flags.  */
1365
1366 bool
1367 comptypes (tree t1, tree t2, int strict)
1368 {
1369   if (strict == COMPARE_STRICT)
1370     {
1371       if (t1 == t2)
1372         return true;
1373
1374       if (t1 == error_mark_node || t2 == error_mark_node)
1375         return false;
1376
1377       if (TYPE_STRUCTURAL_EQUALITY_P (t1) || TYPE_STRUCTURAL_EQUALITY_P (t2))
1378         /* At least one of the types requires structural equality, so
1379            perform a deep check. */
1380         return structural_comptypes (t1, t2, strict);
1381
1382 #ifdef ENABLE_CHECKING
1383       if (USE_CANONICAL_TYPES)
1384         {
1385           bool result = structural_comptypes (t1, t2, strict);
1386           
1387           if (result && TYPE_CANONICAL (t1) != TYPE_CANONICAL (t2))
1388             /* The two types are structurally equivalent, but their
1389                canonical types were different. This is a failure of the
1390                canonical type propagation code.*/
1391             internal_error 
1392               ("canonical types differ for identical types %T and %T", 
1393                t1, t2);
1394           else if (!result && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
1395             /* Two types are structurally different, but the canonical
1396                types are the same. This means we were over-eager in
1397                assigning canonical types. */
1398             internal_error 
1399               ("same canonical type node for different types %T and %T",
1400                t1, t2);
1401           
1402           return result;
1403         }
1404 #else
1405       if (USE_CANONICAL_TYPES)
1406         return TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2);
1407 #endif
1408       else
1409         return structural_comptypes (t1, t2, strict);
1410     }
1411   else if (strict == COMPARE_STRUCTURAL)
1412     return structural_comptypes (t1, t2, COMPARE_STRICT);
1413   else
1414     return structural_comptypes (t1, t2, strict);
1415 }
1416
1417 /* Returns nonzero iff TYPE1 and TYPE2 are the same type, ignoring
1418    top-level qualifiers.  */
1419
1420 bool
1421 same_type_ignoring_top_level_qualifiers_p (tree type1, tree type2)
1422 {
1423   if (type1 == error_mark_node || type2 == error_mark_node)
1424     return false;
1425
1426   return same_type_p (TYPE_MAIN_VARIANT (type1), TYPE_MAIN_VARIANT (type2));
1427 }
1428
1429 /* Returns 1 if TYPE1 is at least as qualified as TYPE2.  */
1430
1431 bool
1432 at_least_as_qualified_p (const_tree type1, const_tree type2)
1433 {
1434   int q1 = cp_type_quals (type1);
1435   int q2 = cp_type_quals (type2);
1436
1437   /* All qualifiers for TYPE2 must also appear in TYPE1.  */
1438   return (q1 & q2) == q2;
1439 }
1440
1441 /* Returns 1 if TYPE1 is more cv-qualified than TYPE2, -1 if TYPE2 is
1442    more cv-qualified that TYPE1, and 0 otherwise.  */
1443
1444 int
1445 comp_cv_qualification (const_tree type1, const_tree type2)
1446 {
1447   int q1 = cp_type_quals (type1);
1448   int q2 = cp_type_quals (type2);
1449
1450   if (q1 == q2)
1451     return 0;
1452
1453   if ((q1 & q2) == q2)
1454     return 1;
1455   else if ((q1 & q2) == q1)
1456     return -1;
1457
1458   return 0;
1459 }
1460
1461 /* Returns 1 if the cv-qualification signature of TYPE1 is a proper
1462    subset of the cv-qualification signature of TYPE2, and the types
1463    are similar.  Returns -1 if the other way 'round, and 0 otherwise.  */
1464
1465 int
1466 comp_cv_qual_signature (tree type1, tree type2)
1467 {
1468   if (comp_ptr_ttypes_real (type2, type1, -1))
1469     return 1;
1470   else if (comp_ptr_ttypes_real (type1, type2, -1))
1471     return -1;
1472   else
1473     return 0;
1474 }
1475 \f
1476 /* Subroutines of `comptypes'.  */
1477
1478 /* Return true if two parameter type lists PARMS1 and PARMS2 are
1479    equivalent in the sense that functions with those parameter types
1480    can have equivalent types.  The two lists must be equivalent,
1481    element by element.  */
1482
1483 bool
1484 compparms (const_tree parms1, const_tree parms2)
1485 {
1486   const_tree t1, t2;
1487
1488   /* An unspecified parmlist matches any specified parmlist
1489      whose argument types don't need default promotions.  */
1490
1491   for (t1 = parms1, t2 = parms2;
1492        t1 || t2;
1493        t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1494     {
1495       /* If one parmlist is shorter than the other,
1496          they fail to match.  */
1497       if (!t1 || !t2)
1498         return false;
1499       if (!same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1500         return false;
1501     }
1502   return true;
1503 }
1504
1505 \f
1506 /* Process a sizeof or alignof expression where the operand is a
1507    type.  */
1508
1509 tree
1510 cxx_sizeof_or_alignof_type (tree type, enum tree_code op, bool complain)
1511 {
1512   tree value;
1513   bool dependent_p;
1514
1515   gcc_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR);
1516   if (type == error_mark_node)
1517     return error_mark_node;
1518
1519   type = non_reference (type);
1520   if (TREE_CODE (type) == METHOD_TYPE)
1521     {
1522       if (complain)
1523         pedwarn (input_location, pedantic ? OPT_pedantic : OPT_Wpointer_arith, 
1524                  "invalid application of %qs to a member function", 
1525                  operator_name_info[(int) op].name);
1526       value = size_one_node;
1527     }
1528
1529   dependent_p = dependent_type_p (type);
1530   if (!dependent_p)
1531     complete_type (type);
1532   if (dependent_p
1533       /* VLA types will have a non-constant size.  In the body of an
1534          uninstantiated template, we don't need to try to compute the
1535          value, because the sizeof expression is not an integral
1536          constant expression in that case.  And, if we do try to
1537          compute the value, we'll likely end up with SAVE_EXPRs, which
1538          the template substitution machinery does not expect to see.  */
1539       || (processing_template_decl 
1540           && COMPLETE_TYPE_P (type)
1541           && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
1542     {
1543       value = build_min (op, size_type_node, type);
1544       TREE_READONLY (value) = 1;
1545       return value;
1546     }
1547
1548   return c_sizeof_or_alignof_type (input_location, complete_type (type),
1549                                    op == SIZEOF_EXPR,
1550                                    complain);
1551 }
1552
1553 /* Return the size of the type, without producing any warnings for
1554    types whose size cannot be taken.  This routine should be used only
1555    in some other routine that has already produced a diagnostic about
1556    using the size of such a type.  */
1557 tree 
1558 cxx_sizeof_nowarn (tree type)
1559 {
1560   if (TREE_CODE (type) == FUNCTION_TYPE
1561       || TREE_CODE (type) == VOID_TYPE
1562       || TREE_CODE (type) == ERROR_MARK)
1563     return size_one_node;
1564   else if (!COMPLETE_TYPE_P (type))
1565     return size_zero_node;
1566   else
1567     return cxx_sizeof_or_alignof_type (type, SIZEOF_EXPR, false);
1568 }
1569
1570 /* Process a sizeof expression where the operand is an expression.  */
1571
1572 static tree
1573 cxx_sizeof_expr (tree e, tsubst_flags_t complain)
1574 {
1575   if (e == error_mark_node)
1576     return error_mark_node;
1577
1578   if (processing_template_decl)
1579     {
1580       e = build_min (SIZEOF_EXPR, size_type_node, e);
1581       TREE_SIDE_EFFECTS (e) = 0;
1582       TREE_READONLY (e) = 1;
1583
1584       return e;
1585     }
1586
1587   /* To get the size of a static data member declared as an array of
1588      unknown bound, we need to instantiate it.  */
1589   if (TREE_CODE (e) == VAR_DECL
1590       && VAR_HAD_UNKNOWN_BOUND (e)
1591       && DECL_TEMPLATE_INSTANTIATION (e))
1592     instantiate_decl (e, /*defer_ok*/true, /*expl_inst_mem*/false);
1593
1594   e = mark_type_use (e);
1595
1596   if (TREE_CODE (e) == COMPONENT_REF
1597       && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1598       && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1599     {
1600       if (complain & tf_error)
1601         error ("invalid application of %<sizeof%> to a bit-field");
1602       else
1603         return error_mark_node;
1604       e = char_type_node;
1605     }
1606   else if (is_overloaded_fn (e))
1607     {
1608       if (complain & tf_error)
1609         permerror (input_location, "ISO C++ forbids applying %<sizeof%> to an expression of "
1610                    "function type");
1611       else
1612         return error_mark_node;
1613       e = char_type_node;
1614     }
1615   else if (type_unknown_p (e))
1616     {
1617       if (complain & tf_error)
1618         cxx_incomplete_type_error (e, TREE_TYPE (e));
1619       else
1620         return error_mark_node;
1621       e = char_type_node;
1622     }
1623   else
1624     e = TREE_TYPE (e);
1625
1626   return cxx_sizeof_or_alignof_type (e, SIZEOF_EXPR, complain & tf_error);
1627 }
1628
1629 /* Implement the __alignof keyword: Return the minimum required
1630    alignment of E, measured in bytes.  For VAR_DECL's and
1631    FIELD_DECL's return DECL_ALIGN (which can be set from an
1632    "aligned" __attribute__ specification).  */
1633
1634 static tree
1635 cxx_alignof_expr (tree e, tsubst_flags_t complain)
1636 {
1637   tree t;
1638
1639   if (e == error_mark_node)
1640     return error_mark_node;
1641
1642   if (processing_template_decl)
1643     {
1644       e = build_min (ALIGNOF_EXPR, size_type_node, e);
1645       TREE_SIDE_EFFECTS (e) = 0;
1646       TREE_READONLY (e) = 1;
1647
1648       return e;
1649     }
1650
1651   e = mark_type_use (e);
1652
1653   if (TREE_CODE (e) == VAR_DECL)
1654     t = size_int (DECL_ALIGN_UNIT (e));
1655   else if (TREE_CODE (e) == COMPONENT_REF
1656            && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL
1657            && DECL_C_BIT_FIELD (TREE_OPERAND (e, 1)))
1658     {
1659       if (complain & tf_error)
1660         error ("invalid application of %<__alignof%> to a bit-field");
1661       else
1662         return error_mark_node;
1663       t = size_one_node;
1664     }
1665   else if (TREE_CODE (e) == COMPONENT_REF
1666            && TREE_CODE (TREE_OPERAND (e, 1)) == FIELD_DECL)
1667     t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (e, 1)));
1668   else if (is_overloaded_fn (e))
1669     {
1670       if (complain & tf_error)
1671         permerror (input_location, "ISO C++ forbids applying %<__alignof%> to an expression of "
1672                    "function type");
1673       else
1674         return error_mark_node;
1675       if (TREE_CODE (e) == FUNCTION_DECL)
1676         t = size_int (DECL_ALIGN_UNIT (e));
1677       else
1678         t = size_one_node;
1679     }
1680   else if (type_unknown_p (e))
1681     {
1682       if (complain & tf_error)
1683         cxx_incomplete_type_error (e, TREE_TYPE (e));
1684       else
1685         return error_mark_node;
1686       t = size_one_node;
1687     }
1688   else
1689     return cxx_sizeof_or_alignof_type (TREE_TYPE (e), ALIGNOF_EXPR, 
1690                                        complain & tf_error);
1691
1692   return fold_convert (size_type_node, t);
1693 }
1694
1695 /* Process a sizeof or alignof expression E with code OP where the operand
1696    is an expression.  */
1697
1698 tree
1699 cxx_sizeof_or_alignof_expr (tree e, enum tree_code op, bool complain)
1700 {
1701   if (op == SIZEOF_EXPR)
1702     return cxx_sizeof_expr (e, complain? tf_warning_or_error : tf_none);
1703   else
1704     return cxx_alignof_expr (e, complain? tf_warning_or_error : tf_none);
1705 }
1706 \f
1707 /* EXPR is being used in a context that is not a function call.
1708    Enforce:
1709
1710      [expr.ref]
1711
1712      The expression can be used only as the left-hand operand of a
1713      member function call.
1714
1715      [expr.mptr.operator]
1716
1717      If the result of .* or ->* is a function, then that result can be
1718      used only as the operand for the function call operator ().
1719
1720    by issuing an error message if appropriate.  Returns true iff EXPR
1721    violates these rules.  */
1722
1723 bool
1724 invalid_nonstatic_memfn_p (const_tree expr, tsubst_flags_t complain)
1725 {
1726   if (expr && DECL_NONSTATIC_MEMBER_FUNCTION_P (expr))
1727     {
1728       if (complain & tf_error)
1729         error ("invalid use of non-static member function");
1730       return true;
1731     }
1732   return false;
1733 }
1734
1735 /* If EXP is a reference to a bitfield, and the type of EXP does not
1736    match the declared type of the bitfield, return the declared type
1737    of the bitfield.  Otherwise, return NULL_TREE.  */
1738
1739 tree
1740 is_bitfield_expr_with_lowered_type (const_tree exp)
1741 {
1742   switch (TREE_CODE (exp))
1743     {
1744     case COND_EXPR:
1745       if (!is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1)
1746                                                ? TREE_OPERAND (exp, 1)
1747                                                : TREE_OPERAND (exp, 0)))
1748         return NULL_TREE;
1749       return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 2));
1750
1751     case COMPOUND_EXPR:
1752       return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 1));
1753
1754     case MODIFY_EXPR:
1755     case SAVE_EXPR:
1756       return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1757
1758     case COMPONENT_REF:
1759       {
1760         tree field;
1761         
1762         field = TREE_OPERAND (exp, 1);
1763         if (TREE_CODE (field) != FIELD_DECL || !DECL_BIT_FIELD_TYPE (field))
1764           return NULL_TREE;
1765         if (same_type_ignoring_top_level_qualifiers_p
1766             (TREE_TYPE (exp), DECL_BIT_FIELD_TYPE (field)))
1767           return NULL_TREE;
1768         return DECL_BIT_FIELD_TYPE (field);
1769       }
1770
1771     CASE_CONVERT:
1772       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (exp, 0)))
1773           == TYPE_MAIN_VARIANT (TREE_TYPE (exp)))
1774         return is_bitfield_expr_with_lowered_type (TREE_OPERAND (exp, 0));
1775       /* Fallthrough.  */
1776
1777     default:
1778       return NULL_TREE;
1779     }
1780 }
1781
1782 /* Like is_bitfield_with_lowered_type, except that if EXP is not a
1783    bitfield with a lowered type, the type of EXP is returned, rather
1784    than NULL_TREE.  */
1785
1786 tree
1787 unlowered_expr_type (const_tree exp)
1788 {
1789   tree type;
1790   tree etype = TREE_TYPE (exp);
1791
1792   type = is_bitfield_expr_with_lowered_type (exp);
1793   if (type)
1794     type = cp_build_qualified_type (type, cp_type_quals (etype));
1795   else
1796     type = etype;
1797
1798   return type;
1799 }
1800
1801 /* Perform the conversions in [expr] that apply when an lvalue appears
1802    in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1803    function-to-pointer conversions.  In addition, manifest constants
1804    are replaced by their values, and bitfield references are converted
1805    to their declared types. Note that this function does not perform the
1806    lvalue-to-rvalue conversion for class types. If you need that conversion
1807    to for class types, then you probably need to use force_rvalue.
1808
1809    Although the returned value is being used as an rvalue, this
1810    function does not wrap the returned expression in a
1811    NON_LVALUE_EXPR; the caller is expected to be mindful of the fact
1812    that the return value is no longer an lvalue.  */
1813
1814 tree
1815 decay_conversion (tree exp)
1816 {
1817   tree type;
1818   enum tree_code code;
1819
1820   type = TREE_TYPE (exp);
1821   if (type == error_mark_node)
1822     return error_mark_node;
1823
1824   exp = mark_rvalue_use (exp);
1825
1826   exp = resolve_nondeduced_context (exp);
1827   if (type_unknown_p (exp))
1828     {
1829       cxx_incomplete_type_error (exp, TREE_TYPE (exp));
1830       return error_mark_node;
1831     }
1832
1833   /* FIXME remove? at least need to remember that this isn't really a
1834      constant expression if EXP isn't decl_constant_var_p, like with
1835      C_MAYBE_CONST_EXPR.  */
1836   exp = decl_constant_value_safe (exp);
1837   if (error_operand_p (exp))
1838     return error_mark_node;
1839
1840   if (NULLPTR_TYPE_P (type))
1841     return nullptr_node;
1842
1843   /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1844      Leave such NOP_EXPRs, since RHS is being used in non-lvalue context.  */
1845   code = TREE_CODE (type);
1846   if (code == VOID_TYPE)
1847     {
1848       error ("void value not ignored as it ought to be");
1849       return error_mark_node;
1850     }
1851   if (invalid_nonstatic_memfn_p (exp, tf_warning_or_error))
1852     return error_mark_node;
1853   if (code == FUNCTION_TYPE || is_overloaded_fn (exp))
1854     return cp_build_addr_expr (exp, tf_warning_or_error);
1855   if (code == ARRAY_TYPE)
1856     {
1857       tree adr;
1858       tree ptrtype;
1859
1860       if (TREE_CODE (exp) == INDIRECT_REF)
1861         return build_nop (build_pointer_type (TREE_TYPE (type)),
1862                           TREE_OPERAND (exp, 0));
1863
1864       if (TREE_CODE (exp) == COMPOUND_EXPR)
1865         {
1866           tree op1 = decay_conversion (TREE_OPERAND (exp, 1));
1867           return build2 (COMPOUND_EXPR, TREE_TYPE (op1),
1868                          TREE_OPERAND (exp, 0), op1);
1869         }
1870
1871       if (!lvalue_p (exp)
1872           && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1873         {
1874           error ("invalid use of non-lvalue array");
1875           return error_mark_node;
1876         }
1877
1878       ptrtype = build_pointer_type (TREE_TYPE (type));
1879
1880       if (TREE_CODE (exp) == VAR_DECL)
1881         {
1882           if (!cxx_mark_addressable (exp))
1883             return error_mark_node;
1884           adr = build_nop (ptrtype, build_address (exp));
1885           return adr;
1886         }
1887       /* This way is better for a COMPONENT_REF since it can
1888          simplify the offset for a component.  */
1889       adr = cp_build_addr_expr (exp, tf_warning_or_error);
1890       return cp_convert (ptrtype, adr);
1891     }
1892
1893   /* If a bitfield is used in a context where integral promotion
1894      applies, then the caller is expected to have used
1895      default_conversion.  That function promotes bitfields correctly
1896      before calling this function.  At this point, if we have a
1897      bitfield referenced, we may assume that is not subject to
1898      promotion, and that, therefore, the type of the resulting rvalue
1899      is the declared type of the bitfield.  */
1900   exp = convert_bitfield_to_declared_type (exp);
1901
1902   /* We do not call rvalue() here because we do not want to wrap EXP
1903      in a NON_LVALUE_EXPR.  */
1904
1905   /* [basic.lval]
1906
1907      Non-class rvalues always have cv-unqualified types.  */
1908   type = TREE_TYPE (exp);
1909   if (!CLASS_TYPE_P (type) && cv_qualified_p (type))
1910     exp = build_nop (cv_unqualified (type), exp);
1911
1912   return exp;
1913 }
1914
1915 /* Perform preparatory conversions, as part of the "usual arithmetic
1916    conversions".  In particular, as per [expr]:
1917
1918      Whenever an lvalue expression appears as an operand of an
1919      operator that expects the rvalue for that operand, the
1920      lvalue-to-rvalue, array-to-pointer, or function-to-pointer
1921      standard conversions are applied to convert the expression to an
1922      rvalue.
1923
1924    In addition, we perform integral promotions here, as those are
1925    applied to both operands to a binary operator before determining
1926    what additional conversions should apply.  */
1927
1928 tree
1929 default_conversion (tree exp)
1930 {
1931   /* Check for target-specific promotions.  */
1932   tree promoted_type = targetm.promoted_type (TREE_TYPE (exp));
1933   if (promoted_type)
1934     exp = cp_convert (promoted_type, exp);
1935   /* Perform the integral promotions first so that bitfield
1936      expressions (which may promote to "int", even if the bitfield is
1937      declared "unsigned") are promoted correctly.  */
1938   else if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (exp)))
1939     exp = perform_integral_promotions (exp);
1940   /* Perform the other conversions.  */
1941   exp = decay_conversion (exp);
1942
1943   return exp;
1944 }
1945
1946 /* EXPR is an expression with an integral or enumeration type.
1947    Perform the integral promotions in [conv.prom], and return the
1948    converted value.  */
1949
1950 tree
1951 perform_integral_promotions (tree expr)
1952 {
1953   tree type;
1954   tree promoted_type;
1955
1956   expr = mark_rvalue_use (expr);
1957
1958   /* [conv.prom]
1959
1960      If the bitfield has an enumerated type, it is treated as any
1961      other value of that type for promotion purposes.  */
1962   type = is_bitfield_expr_with_lowered_type (expr);
1963   if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
1964     type = TREE_TYPE (expr);
1965   gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
1966   /* Scoped enums don't promote.  */
1967   if (SCOPED_ENUM_P (type))
1968     return expr;
1969   promoted_type = type_promotes_to (type);
1970   if (type != promoted_type)
1971     expr = cp_convert (promoted_type, expr);
1972   return expr;
1973 }
1974
1975 /* Returns nonzero iff exp is a STRING_CST or the result of applying
1976    decay_conversion to one.  */
1977
1978 int
1979 string_conv_p (const_tree totype, const_tree exp, int warn)
1980 {
1981   tree t;
1982
1983   if (TREE_CODE (totype) != POINTER_TYPE)
1984     return 0;
1985
1986   t = TREE_TYPE (totype);
1987   if (!same_type_p (t, char_type_node)
1988       && !same_type_p (t, char16_type_node)
1989       && !same_type_p (t, char32_type_node)
1990       && !same_type_p (t, wchar_type_node))
1991     return 0;
1992
1993   if (TREE_CODE (exp) == STRING_CST)
1994     {
1995       /* Make sure that we don't try to convert between char and wide chars.  */
1996       if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
1997         return 0;
1998     }
1999   else
2000     {
2001       /* Is this a string constant which has decayed to 'const char *'?  */
2002       t = build_pointer_type (cp_build_qualified_type (t, TYPE_QUAL_CONST));
2003       if (!same_type_p (TREE_TYPE (exp), t))
2004         return 0;
2005       STRIP_NOPS (exp);
2006       if (TREE_CODE (exp) != ADDR_EXPR
2007           || TREE_CODE (TREE_OPERAND (exp, 0)) != STRING_CST)
2008         return 0;
2009     }
2010
2011   /* This warning is not very useful, as it complains about printf.  */
2012   if (warn)
2013     warning (OPT_Wwrite_strings,
2014              "deprecated conversion from string constant to %qT",
2015              totype);
2016
2017   return 1;
2018 }
2019
2020 /* Given a COND_EXPR, MIN_EXPR, or MAX_EXPR in T, return it in a form that we
2021    can, for example, use as an lvalue.  This code used to be in
2022    unary_complex_lvalue, but we needed it to deal with `a = (d == c) ? b : c'
2023    expressions, where we're dealing with aggregates.  But now it's again only
2024    called from unary_complex_lvalue.  The case (in particular) that led to
2025    this was with CODE == ADDR_EXPR, since it's not an lvalue when we'd
2026    get it there.  */
2027
2028 static tree
2029 rationalize_conditional_expr (enum tree_code code, tree t,
2030                               tsubst_flags_t complain)
2031 {
2032   /* For MIN_EXPR or MAX_EXPR, fold-const.c has arranged things so that
2033      the first operand is always the one to be used if both operands
2034      are equal, so we know what conditional expression this used to be.  */
2035   if (TREE_CODE (t) == MIN_EXPR || TREE_CODE (t) == MAX_EXPR)
2036     {
2037       tree op0 = TREE_OPERAND (t, 0);
2038       tree op1 = TREE_OPERAND (t, 1);
2039
2040       /* The following code is incorrect if either operand side-effects.  */
2041       gcc_assert (!TREE_SIDE_EFFECTS (op0)
2042                   && !TREE_SIDE_EFFECTS (op1));
2043       return
2044         build_conditional_expr (build_x_binary_op ((TREE_CODE (t) == MIN_EXPR
2045                                                     ? LE_EXPR : GE_EXPR),
2046                                                    op0, TREE_CODE (op0),
2047                                                    op1, TREE_CODE (op1),
2048                                                    /*overload=*/NULL,
2049                                                    complain),
2050                                 cp_build_unary_op (code, op0, 0, complain),
2051                                 cp_build_unary_op (code, op1, 0, complain),
2052                                 complain);
2053     }
2054
2055   return
2056     build_conditional_expr (TREE_OPERAND (t, 0),
2057                             cp_build_unary_op (code, TREE_OPERAND (t, 1), 0,
2058                                                complain),
2059                             cp_build_unary_op (code, TREE_OPERAND (t, 2), 0,
2060                                                complain),
2061                             complain);
2062 }
2063
2064 /* Given the TYPE of an anonymous union field inside T, return the
2065    FIELD_DECL for the field.  If not found return NULL_TREE.  Because
2066    anonymous unions can nest, we must also search all anonymous unions
2067    that are directly reachable.  */
2068
2069 tree
2070 lookup_anon_field (tree t, tree type)
2071 {
2072   tree field;
2073
2074   for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2075     {
2076       if (TREE_STATIC (field))
2077         continue;
2078       if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
2079         continue;
2080
2081       /* If we find it directly, return the field.  */
2082       if (DECL_NAME (field) == NULL_TREE
2083           && type == TYPE_MAIN_VARIANT (TREE_TYPE (field)))
2084         {
2085           return field;
2086         }
2087
2088       /* Otherwise, it could be nested, search harder.  */
2089       if (DECL_NAME (field) == NULL_TREE
2090           && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2091         {
2092           tree subfield = lookup_anon_field (TREE_TYPE (field), type);
2093           if (subfield)
2094             return subfield;
2095         }
2096     }
2097   return NULL_TREE;
2098 }
2099
2100 /* Build an expression representing OBJECT.MEMBER.  OBJECT is an
2101    expression; MEMBER is a DECL or baselink.  If ACCESS_PATH is
2102    non-NULL, it indicates the path to the base used to name MEMBER.
2103    If PRESERVE_REFERENCE is true, the expression returned will have
2104    REFERENCE_TYPE if the MEMBER does.  Otherwise, the expression
2105    returned will have the type referred to by the reference.
2106
2107    This function does not perform access control; that is either done
2108    earlier by the parser when the name of MEMBER is resolved to MEMBER
2109    itself, or later when overload resolution selects one of the
2110    functions indicated by MEMBER.  */
2111
2112 tree
2113 build_class_member_access_expr (tree object, tree member,
2114                                 tree access_path, bool preserve_reference,
2115                                 tsubst_flags_t complain)
2116 {
2117   tree object_type;
2118   tree member_scope;
2119   tree result = NULL_TREE;
2120   tree using_decl = NULL_TREE;
2121
2122   if (error_operand_p (object) || error_operand_p (member))
2123     return error_mark_node;
2124
2125   gcc_assert (DECL_P (member) || BASELINK_P (member));
2126
2127   /* [expr.ref]
2128
2129      The type of the first expression shall be "class object" (of a
2130      complete type).  */
2131   object_type = TREE_TYPE (object);
2132   if (!currently_open_class (object_type)
2133       && !complete_type_or_maybe_complain (object_type, object, complain))
2134     return error_mark_node;
2135   if (!CLASS_TYPE_P (object_type))
2136     {
2137       if (complain & tf_error)
2138         {
2139           if (POINTER_TYPE_P (object_type)
2140               && CLASS_TYPE_P (TREE_TYPE (object_type)))
2141             error ("request for member %qD in %qE, which is of pointer "
2142                    "type %qT (maybe you meant to use %<->%> ?)",
2143                    member, object, object_type);
2144           else
2145             error ("request for member %qD in %qE, which is of non-class "
2146                    "type %qT", member, object, object_type);
2147         }
2148       return error_mark_node;
2149     }
2150
2151   /* The standard does not seem to actually say that MEMBER must be a
2152      member of OBJECT_TYPE.  However, that is clearly what is
2153      intended.  */
2154   if (DECL_P (member))
2155     {
2156       member_scope = DECL_CLASS_CONTEXT (member);
2157       mark_used (member);
2158       if (TREE_DEPRECATED (member))
2159         warn_deprecated_use (member, NULL_TREE);
2160     }
2161   else
2162     member_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (member));
2163   /* If MEMBER is from an anonymous aggregate, MEMBER_SCOPE will
2164      presently be the anonymous union.  Go outwards until we find a
2165      type related to OBJECT_TYPE.  */
2166   while (ANON_AGGR_TYPE_P (member_scope)
2167          && !same_type_ignoring_top_level_qualifiers_p (member_scope,
2168                                                         object_type))
2169     member_scope = TYPE_CONTEXT (member_scope);
2170   if (!member_scope || !DERIVED_FROM_P (member_scope, object_type))
2171     {
2172       if (complain & tf_error)
2173         {
2174           if (TREE_CODE (member) == FIELD_DECL)
2175             error ("invalid use of nonstatic data member %qE", member);
2176           else
2177             error ("%qD is not a member of %qT", member, object_type);
2178         }
2179       return error_mark_node;
2180     }
2181
2182   /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x' into
2183      `(*(a ?  &b : &c)).x', and so on.  A COND_EXPR is only an lvalue
2184      in the front end; only _DECLs and _REFs are lvalues in the back end.  */
2185   {
2186     tree temp = unary_complex_lvalue (ADDR_EXPR, object);
2187     if (temp)
2188       object = cp_build_indirect_ref (temp, RO_NULL, complain);
2189   }
2190
2191   /* In [expr.ref], there is an explicit list of the valid choices for
2192      MEMBER.  We check for each of those cases here.  */
2193   if (TREE_CODE (member) == VAR_DECL)
2194     {
2195       /* A static data member.  */
2196       result = member;
2197       mark_exp_read (object);
2198       /* If OBJECT has side-effects, they are supposed to occur.  */
2199       if (TREE_SIDE_EFFECTS (object))
2200         result = build2 (COMPOUND_EXPR, TREE_TYPE (result), object, result);
2201     }
2202   else if (TREE_CODE (member) == FIELD_DECL)
2203     {
2204       /* A non-static data member.  */
2205       bool null_object_p;
2206       int type_quals;
2207       tree member_type;
2208
2209       null_object_p = (TREE_CODE (object) == INDIRECT_REF
2210                        && integer_zerop (TREE_OPERAND (object, 0)));
2211
2212       /* Convert OBJECT to the type of MEMBER.  */
2213       if (!same_type_p (TYPE_MAIN_VARIANT (object_type),
2214                         TYPE_MAIN_VARIANT (member_scope)))
2215         {
2216           tree binfo;
2217           base_kind kind;
2218
2219           binfo = lookup_base (access_path ? access_path : object_type,
2220                                member_scope, ba_unique,  &kind);
2221           if (binfo == error_mark_node)
2222             return error_mark_node;
2223
2224           /* It is invalid to try to get to a virtual base of a
2225              NULL object.  The most common cause is invalid use of
2226              offsetof macro.  */
2227           if (null_object_p && kind == bk_via_virtual)
2228             {
2229               if (complain & tf_error)
2230                 {
2231                   error ("invalid access to non-static data member %qD of "
2232                          "NULL object",
2233                          member);
2234                   error ("(perhaps the %<offsetof%> macro was used incorrectly)");
2235                 }
2236               return error_mark_node;
2237             }
2238
2239           /* Convert to the base.  */
2240           object = build_base_path (PLUS_EXPR, object, binfo,
2241                                     /*nonnull=*/1, complain);
2242           /* If we found the base successfully then we should be able
2243              to convert to it successfully.  */
2244           gcc_assert (object != error_mark_node);
2245         }
2246
2247       /* Complain about other invalid uses of offsetof, even though they will
2248          give the right answer.  Note that we complain whether or not they
2249          actually used the offsetof macro, since there's no way to know at this
2250          point.  So we just give a warning, instead of a pedwarn.  */
2251       /* Do not produce this warning for base class field references, because
2252          we know for a fact that didn't come from offsetof.  This does occur
2253          in various testsuite cases where a null object is passed where a
2254          vtable access is required.  */
2255       if (null_object_p && warn_invalid_offsetof
2256           && CLASSTYPE_NON_STD_LAYOUT (object_type)
2257           && !DECL_FIELD_IS_BASE (member)
2258           && cp_unevaluated_operand == 0
2259           && (complain & tf_warning))
2260         {
2261           warning (OPT_Winvalid_offsetof, 
2262                    "invalid access to non-static data member %qD "
2263                    " of NULL object", member);
2264           warning (OPT_Winvalid_offsetof, 
2265                    "(perhaps the %<offsetof%> macro was used incorrectly)");
2266         }
2267
2268       /* If MEMBER is from an anonymous aggregate, we have converted
2269          OBJECT so that it refers to the class containing the
2270          anonymous union.  Generate a reference to the anonymous union
2271          itself, and recur to find MEMBER.  */
2272       if (ANON_AGGR_TYPE_P (DECL_CONTEXT (member))
2273           /* When this code is called from build_field_call, the
2274              object already has the type of the anonymous union.
2275              That is because the COMPONENT_REF was already
2276              constructed, and was then disassembled before calling
2277              build_field_call.  After the function-call code is
2278              cleaned up, this waste can be eliminated.  */
2279           && (!same_type_ignoring_top_level_qualifiers_p
2280               (TREE_TYPE (object), DECL_CONTEXT (member))))
2281         {
2282           tree anonymous_union;
2283
2284           anonymous_union = lookup_anon_field (TREE_TYPE (object),
2285                                                DECL_CONTEXT (member));
2286           object = build_class_member_access_expr (object,
2287                                                    anonymous_union,
2288                                                    /*access_path=*/NULL_TREE,
2289                                                    preserve_reference,
2290                                                    complain);
2291         }
2292
2293       /* Compute the type of the field, as described in [expr.ref].  */
2294       type_quals = TYPE_UNQUALIFIED;
2295       member_type = TREE_TYPE (member);
2296       if (TREE_CODE (member_type) != REFERENCE_TYPE)
2297         {
2298           type_quals = (cp_type_quals (member_type)
2299                         | cp_type_quals (object_type));
2300
2301           /* A field is const (volatile) if the enclosing object, or the
2302              field itself, is const (volatile).  But, a mutable field is
2303              not const, even within a const object.  */
2304           if (DECL_MUTABLE_P (member))
2305             type_quals &= ~TYPE_QUAL_CONST;
2306           member_type = cp_build_qualified_type (member_type, type_quals);
2307         }
2308
2309       result = build3 (COMPONENT_REF, member_type, object, member,
2310                        NULL_TREE);
2311       result = fold_if_not_in_template (result);
2312
2313       /* Mark the expression const or volatile, as appropriate.  Even
2314          though we've dealt with the type above, we still have to mark the
2315          expression itself.  */
2316       if (type_quals & TYPE_QUAL_CONST)
2317         TREE_READONLY (result) = 1;
2318       if (type_quals & TYPE_QUAL_VOLATILE)
2319         TREE_THIS_VOLATILE (result) = 1;
2320     }
2321   else if (BASELINK_P (member))
2322     {
2323       /* The member is a (possibly overloaded) member function.  */
2324       tree functions;
2325       tree type;
2326
2327       /* If the MEMBER is exactly one static member function, then we
2328          know the type of the expression.  Otherwise, we must wait
2329          until overload resolution has been performed.  */
2330       functions = BASELINK_FUNCTIONS (member);
2331       if (TREE_CODE (functions) == FUNCTION_DECL
2332           && DECL_STATIC_FUNCTION_P (functions))
2333         type = TREE_TYPE (functions);
2334       else
2335         type = unknown_type_node;
2336       /* Note that we do not convert OBJECT to the BASELINK_BINFO
2337          base.  That will happen when the function is called.  */
2338       result = build3 (COMPONENT_REF, type, object, member, NULL_TREE);
2339     }
2340   else if (TREE_CODE (member) == CONST_DECL)
2341     {
2342       /* The member is an enumerator.  */
2343       result = member;
2344       /* If OBJECT has side-effects, they are supposed to occur.  */
2345       if (TREE_SIDE_EFFECTS (object))
2346         result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2347                          object, result);
2348     }
2349   else if ((using_decl = strip_using_decl (member)) != member)
2350     result = build_class_member_access_expr (object,
2351                                              using_decl,
2352                                              access_path, preserve_reference,
2353                                              complain);
2354   else
2355     {
2356       if (complain & tf_error)
2357         error ("invalid use of %qD", member);
2358       return error_mark_node;
2359     }
2360
2361   if (!preserve_reference)
2362     /* [expr.ref]
2363
2364        If E2 is declared to have type "reference to T", then ... the
2365        type of E1.E2 is T.  */
2366     result = convert_from_reference (result);
2367
2368   return result;
2369 }
2370
2371 /* Return the destructor denoted by OBJECT.SCOPE::DTOR_NAME, or, if
2372    SCOPE is NULL, by OBJECT.DTOR_NAME, where DTOR_NAME is ~type.  */
2373
2374 static tree
2375 lookup_destructor (tree object, tree scope, tree dtor_name)
2376 {
2377   tree object_type = TREE_TYPE (object);
2378   tree dtor_type = TREE_OPERAND (dtor_name, 0);
2379   tree expr;
2380
2381   if (scope && !check_dtor_name (scope, dtor_type))
2382     {
2383       error ("qualified type %qT does not match destructor name ~%qT",
2384              scope, dtor_type);
2385       return error_mark_node;
2386     }
2387   if (TREE_CODE (dtor_type) == IDENTIFIER_NODE)
2388     {
2389       /* In a template, names we can't find a match for are still accepted
2390          destructor names, and we check them here.  */
2391       if (check_dtor_name (object_type, dtor_type))
2392         dtor_type = object_type;
2393       else
2394         {
2395           error ("object type %qT does not match destructor name ~%qT",
2396                  object_type, dtor_type);
2397           return error_mark_node;
2398         }
2399       
2400     }
2401   else if (!DERIVED_FROM_P (dtor_type, TYPE_MAIN_VARIANT (object_type)))
2402     {
2403       error ("the type being destroyed is %qT, but the destructor refers to %qT",
2404              TYPE_MAIN_VARIANT (object_type), dtor_type);
2405       return error_mark_node;
2406     }
2407   expr = lookup_member (dtor_type, complete_dtor_identifier,
2408                         /*protect=*/1, /*want_type=*/false,
2409                         tf_warning_or_error);
2410   expr = (adjust_result_of_qualified_name_lookup
2411           (expr, dtor_type, object_type));
2412   return expr;
2413 }
2414
2415 /* An expression of the form "A::template B" has been resolved to
2416    DECL.  Issue a diagnostic if B is not a template or template
2417    specialization.  */
2418
2419 void
2420 check_template_keyword (tree decl)
2421 {
2422   /* The standard says:
2423
2424       [temp.names]
2425
2426       If a name prefixed by the keyword template is not a member
2427       template, the program is ill-formed.
2428
2429      DR 228 removed the restriction that the template be a member
2430      template.
2431
2432      DR 96, if accepted would add the further restriction that explicit
2433      template arguments must be provided if the template keyword is
2434      used, but, as of 2005-10-16, that DR is still in "drafting".  If
2435      this DR is accepted, then the semantic checks here can be
2436      simplified, as the entity named must in fact be a template
2437      specialization, rather than, as at present, a set of overloaded
2438      functions containing at least one template function.  */
2439   if (TREE_CODE (decl) != TEMPLATE_DECL
2440       && TREE_CODE (decl) != TEMPLATE_ID_EXPR)
2441     {
2442       if (!is_overloaded_fn (decl))
2443         permerror (input_location, "%qD is not a template", decl);
2444       else
2445         {
2446           tree fns;
2447           fns = decl;
2448           if (BASELINK_P (fns))
2449             fns = BASELINK_FUNCTIONS (fns);
2450           while (fns)
2451             {
2452               tree fn = OVL_CURRENT (fns);
2453               if (TREE_CODE (fn) == TEMPLATE_DECL
2454                   || TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2455                 break;
2456               if (TREE_CODE (fn) == FUNCTION_DECL
2457                   && DECL_USE_TEMPLATE (fn)
2458                   && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
2459                 break;
2460               fns = OVL_NEXT (fns);
2461             }
2462           if (!fns)
2463             permerror (input_location, "%qD is not a template", decl);
2464         }
2465     }
2466 }
2467
2468 /* This function is called by the parser to process a class member
2469    access expression of the form OBJECT.NAME.  NAME is a node used by
2470    the parser to represent a name; it is not yet a DECL.  It may,
2471    however, be a BASELINK where the BASELINK_FUNCTIONS is a
2472    TEMPLATE_ID_EXPR.  Templates must be looked up by the parser, and
2473    there is no reason to do the lookup twice, so the parser keeps the
2474    BASELINK.  TEMPLATE_P is true iff NAME was explicitly declared to
2475    be a template via the use of the "A::template B" syntax.  */
2476
2477 tree
2478 finish_class_member_access_expr (tree object, tree name, bool template_p,
2479                                  tsubst_flags_t complain)
2480 {
2481   tree expr;
2482   tree object_type;
2483   tree member;
2484   tree access_path = NULL_TREE;
2485   tree orig_object = object;
2486   tree orig_name = name;
2487
2488   if (object == error_mark_node || name == error_mark_node)
2489     return error_mark_node;
2490
2491   /* If OBJECT is an ObjC class instance, we must obey ObjC access rules.  */
2492   if (!objc_is_public (object, name))
2493     return error_mark_node;
2494
2495   object_type = TREE_TYPE (object);
2496
2497   if (processing_template_decl)
2498     {
2499       if (/* If OBJECT_TYPE is dependent, so is OBJECT.NAME.  */
2500           dependent_type_p (object_type)
2501           /* If NAME is just an IDENTIFIER_NODE, then the expression
2502              is dependent.  */
2503           || TREE_CODE (object) == IDENTIFIER_NODE
2504           /* If NAME is "f<args>", where either 'f' or 'args' is
2505              dependent, then the expression is dependent.  */
2506           || (TREE_CODE (name) == TEMPLATE_ID_EXPR
2507               && dependent_template_id_p (TREE_OPERAND (name, 0),
2508                                           TREE_OPERAND (name, 1)))
2509           /* If NAME is "T::X" where "T" is dependent, then the
2510              expression is dependent.  */
2511           || (TREE_CODE (name) == SCOPE_REF
2512               && TYPE_P (TREE_OPERAND (name, 0))
2513               && dependent_type_p (TREE_OPERAND (name, 0))))
2514         return build_min_nt (COMPONENT_REF, object, name, NULL_TREE);
2515       object = build_non_dependent_expr (object);
2516     }
2517   else if (c_dialect_objc ()
2518            && TREE_CODE (name) == IDENTIFIER_NODE
2519            && (expr = objc_maybe_build_component_ref (object, name)))
2520     return expr;
2521     
2522   /* [expr.ref]
2523
2524      The type of the first expression shall be "class object" (of a
2525      complete type).  */
2526   if (!currently_open_class (object_type)
2527       && !complete_type_or_maybe_complain (object_type, object, complain))
2528     return error_mark_node;
2529   if (!CLASS_TYPE_P (object_type))
2530     {
2531       if (complain & tf_error)
2532         {
2533           if (POINTER_TYPE_P (object_type)
2534               && CLASS_TYPE_P (TREE_TYPE (object_type)))
2535             error ("request for member %qD in %qE, which is of pointer "
2536                    "type %qT (maybe you meant to use %<->%> ?)",
2537                    name, object, object_type);
2538           else
2539             error ("request for member %qD in %qE, which is of non-class "
2540                    "type %qT", name, object, object_type);
2541         }
2542       return error_mark_node;
2543     }
2544
2545   if (BASELINK_P (name))
2546     /* A member function that has already been looked up.  */
2547     member = name;
2548   else
2549     {
2550       bool is_template_id = false;
2551       tree template_args = NULL_TREE;
2552       tree scope;
2553
2554       if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2555         {
2556           is_template_id = true;
2557           template_args = TREE_OPERAND (name, 1);
2558           name = TREE_OPERAND (name, 0);
2559
2560           if (TREE_CODE (name) == OVERLOAD)
2561             name = DECL_NAME (get_first_fn (name));
2562           else if (DECL_P (name))
2563             name = DECL_NAME (name);
2564         }
2565
2566       if (TREE_CODE (name) == SCOPE_REF)
2567         {
2568           /* A qualified name.  The qualifying class or namespace `S'
2569              has already been looked up; it is either a TYPE or a
2570              NAMESPACE_DECL.  */
2571           scope = TREE_OPERAND (name, 0);
2572           name = TREE_OPERAND (name, 1);
2573
2574           /* If SCOPE is a namespace, then the qualified name does not
2575              name a member of OBJECT_TYPE.  */
2576           if (TREE_CODE (scope) == NAMESPACE_DECL)
2577             {
2578               if (complain & tf_error)
2579                 error ("%<%D::%D%> is not a member of %qT",
2580                        scope, name, object_type);
2581               return error_mark_node;
2582             }
2583
2584           gcc_assert (CLASS_TYPE_P (scope));
2585           gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE
2586                       || TREE_CODE (name) == BIT_NOT_EXPR);
2587
2588           if (constructor_name_p (name, scope))
2589             {
2590               if (complain & tf_error)
2591                 error ("cannot call constructor %<%T::%D%> directly",
2592                        scope, name);
2593               return error_mark_node;
2594             }
2595
2596           /* Find the base of OBJECT_TYPE corresponding to SCOPE.  */
2597           access_path = lookup_base (object_type, scope, ba_check, NULL);
2598           if (access_path == error_mark_node)
2599             return error_mark_node;
2600           if (!access_path)
2601             {
2602               if (complain & tf_error)
2603                 error ("%qT is not a base of %qT", scope, object_type);
2604               return error_mark_node;
2605             }
2606         }
2607       else
2608         {
2609           scope = NULL_TREE;
2610           access_path = object_type;
2611         }
2612
2613       if (TREE_CODE (name) == BIT_NOT_EXPR)
2614         member = lookup_destructor (object, scope, name);
2615       else
2616         {
2617           /* Look up the member.  */
2618           member = lookup_member (access_path, name, /*protect=*/1,
2619                                   /*want_type=*/false, complain);
2620           if (member == NULL_TREE)
2621             {
2622               if (complain & tf_error)
2623                 error ("%qD has no member named %qE",
2624                        TREE_CODE (access_path) == TREE_BINFO
2625                        ? TREE_TYPE (access_path) : object_type, name);
2626               return error_mark_node;
2627             }
2628           if (member == error_mark_node)
2629             return error_mark_node;
2630         }
2631
2632       if (is_template_id)
2633         {
2634           tree templ = member;
2635
2636           if (BASELINK_P (templ))
2637             templ = lookup_template_function (templ, template_args);
2638           else
2639             {
2640               if (complain & tf_error)
2641                 error ("%qD is not a member template function", name);
2642               return error_mark_node;
2643             }
2644         }
2645     }
2646
2647   if (TREE_DEPRECATED (member))
2648     warn_deprecated_use (member, NULL_TREE);
2649
2650   if (template_p)
2651     check_template_keyword (member);
2652
2653   expr = build_class_member_access_expr (object, member, access_path,
2654                                          /*preserve_reference=*/false,
2655                                          complain);
2656   if (processing_template_decl && expr != error_mark_node)
2657     {
2658       if (BASELINK_P (member))
2659         {
2660           if (TREE_CODE (orig_name) == SCOPE_REF)
2661             BASELINK_QUALIFIED_P (member) = 1;
2662           orig_name = member;
2663         }
2664       return build_min_non_dep (COMPONENT_REF, expr,
2665                                 orig_object, orig_name,
2666                                 NULL_TREE);
2667     }
2668
2669   return expr;
2670 }
2671
2672 /* Return an expression for the MEMBER_NAME field in the internal
2673    representation of PTRMEM, a pointer-to-member function.  (Each
2674    pointer-to-member function type gets its own RECORD_TYPE so it is
2675    more convenient to access the fields by name than by FIELD_DECL.)
2676    This routine converts the NAME to a FIELD_DECL and then creates the
2677    node for the complete expression.  */
2678
2679 tree
2680 build_ptrmemfunc_access_expr (tree ptrmem, tree member_name)
2681 {
2682   tree ptrmem_type;
2683   tree member;
2684   tree member_type;
2685
2686   /* This code is a stripped down version of
2687      build_class_member_access_expr.  It does not work to use that
2688      routine directly because it expects the object to be of class
2689      type.  */
2690   ptrmem_type = TREE_TYPE (ptrmem);
2691   gcc_assert (TYPE_PTRMEMFUNC_P (ptrmem_type));
2692   member = lookup_member (ptrmem_type, member_name, /*protect=*/0,
2693                           /*want_type=*/false, tf_warning_or_error);
2694   member_type = cp_build_qualified_type (TREE_TYPE (member),
2695                                          cp_type_quals (ptrmem_type));
2696   return fold_build3_loc (input_location,
2697                       COMPONENT_REF, member_type,
2698                       ptrmem, member, NULL_TREE);
2699 }
2700
2701 /* Given an expression PTR for a pointer, return an expression
2702    for the value pointed to.
2703    ERRORSTRING is the name of the operator to appear in error messages.
2704
2705    This function may need to overload OPERATOR_FNNAME.
2706    Must also handle REFERENCE_TYPEs for C++.  */
2707
2708 tree
2709 build_x_indirect_ref (tree expr, ref_operator errorstring, 
2710                       tsubst_flags_t complain)
2711 {
2712   tree orig_expr = expr;
2713   tree rval;
2714
2715   if (processing_template_decl)
2716     {
2717       /* Retain the type if we know the operand is a pointer.  */
2718       if (TREE_TYPE (expr) && POINTER_TYPE_P (TREE_TYPE (expr)))
2719         return build_min (INDIRECT_REF, TREE_TYPE (TREE_TYPE (expr)), expr);
2720       if (type_dependent_expression_p (expr))
2721         return build_min_nt (INDIRECT_REF, expr);
2722       expr = build_non_dependent_expr (expr);
2723     }
2724
2725   rval = build_new_op (INDIRECT_REF, LOOKUP_NORMAL, expr, NULL_TREE,
2726                        NULL_TREE, /*overload=*/NULL, complain);
2727   if (!rval)
2728     rval = cp_build_indirect_ref (expr, errorstring, complain);
2729
2730   if (processing_template_decl && rval != error_mark_node)
2731     return build_min_non_dep (INDIRECT_REF, rval, orig_expr);
2732   else
2733     return rval;
2734 }
2735
2736 /* Helper function called from c-common.  */
2737 tree
2738 build_indirect_ref (location_t loc ATTRIBUTE_UNUSED,
2739                     tree ptr, ref_operator errorstring)
2740 {
2741   return cp_build_indirect_ref (ptr, errorstring, tf_warning_or_error);
2742 }
2743
2744 tree
2745 cp_build_indirect_ref (tree ptr, ref_operator errorstring, 
2746                        tsubst_flags_t complain)
2747 {
2748   tree pointer, type;
2749
2750   if (ptr == error_mark_node)
2751     return error_mark_node;
2752
2753   if (ptr == current_class_ptr)
2754     return current_class_ref;
2755
2756   pointer = (TREE_CODE (TREE_TYPE (ptr)) == REFERENCE_TYPE
2757              ? ptr : decay_conversion (ptr));
2758   type = TREE_TYPE (pointer);
2759
2760   if (POINTER_TYPE_P (type))
2761     {
2762       /* [expr.unary.op]
2763
2764          If the type of the expression is "pointer to T," the type
2765          of  the  result  is  "T."  */
2766       tree t = TREE_TYPE (type);
2767
2768       if (CONVERT_EXPR_P (ptr)
2769           || TREE_CODE (ptr) == VIEW_CONVERT_EXPR)
2770         {
2771           /* If a warning is issued, mark it to avoid duplicates from
2772              the backend.  This only needs to be done at
2773              warn_strict_aliasing > 2.  */
2774           if (warn_strict_aliasing > 2)
2775             if (strict_aliasing_warning (TREE_TYPE (TREE_OPERAND (ptr, 0)),
2776                                          type, TREE_OPERAND (ptr, 0)))
2777               TREE_NO_WARNING (ptr) = 1;
2778         }
2779
2780       if (VOID_TYPE_P (t))
2781         {
2782           /* A pointer to incomplete type (other than cv void) can be
2783              dereferenced [expr.unary.op]/1  */
2784           if (complain & tf_error)
2785             error ("%qT is not a pointer-to-object type", type);
2786           return error_mark_node;
2787         }
2788       else if (TREE_CODE (pointer) == ADDR_EXPR
2789                && same_type_p (t, TREE_TYPE (TREE_OPERAND (pointer, 0))))
2790         /* The POINTER was something like `&x'.  We simplify `*&x' to
2791            `x'.  */
2792         return TREE_OPERAND (pointer, 0);
2793       else
2794         {
2795           tree ref = build1 (INDIRECT_REF, t, pointer);
2796
2797           /* We *must* set TREE_READONLY when dereferencing a pointer to const,
2798              so that we get the proper error message if the result is used
2799              to assign to.  Also, &* is supposed to be a no-op.  */
2800           TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
2801           TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
2802           TREE_SIDE_EFFECTS (ref)
2803             = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (pointer));
2804           return ref;
2805         }
2806     }
2807   else if (!(complain & tf_error))
2808     /* Don't emit any errors; we'll just return ERROR_MARK_NODE later.  */
2809     ;
2810   /* `pointer' won't be an error_mark_node if we were given a
2811      pointer to member, so it's cool to check for this here.  */
2812   else if (TYPE_PTR_TO_MEMBER_P (type))
2813     switch (errorstring)
2814       {
2815          case RO_ARRAY_INDEXING:
2816            error ("invalid use of array indexing on pointer to member");
2817            break;
2818          case RO_UNARY_STAR:
2819            error ("invalid use of unary %<*%> on pointer to member");
2820            break;
2821          case RO_IMPLICIT_CONVERSION:
2822            error ("invalid use of implicit conversion on pointer to member");
2823            break;
2824          default:
2825            gcc_unreachable ();
2826       }
2827   else if (pointer != error_mark_node)
2828     invalid_indirection_error (input_location, type, errorstring);
2829
2830   return error_mark_node;
2831 }
2832
2833 /* This handles expressions of the form "a[i]", which denotes
2834    an array reference.
2835
2836    This is logically equivalent in C to *(a+i), but we may do it differently.
2837    If A is a variable or a member, we generate a primitive ARRAY_REF.
2838    This avoids forcing the array out of registers, and can work on
2839    arrays that are not lvalues (for example, members of structures returned
2840    by functions).
2841
2842    If INDEX is of some user-defined type, it must be converted to
2843    integer type.  Otherwise, to make a compatible PLUS_EXPR, it
2844    will inherit the type of the array, which will be some pointer type.
2845    
2846    LOC is the location to use in building the array reference.  */
2847
2848 tree
2849 cp_build_array_ref (location_t loc, tree array, tree idx,
2850                     tsubst_flags_t complain)
2851 {
2852   tree ret;
2853
2854   if (idx == 0)
2855     {
2856       if (complain & tf_error)
2857         error_at (loc, "subscript missing in array reference");
2858       return error_mark_node;
2859     }
2860
2861   if (TREE_TYPE (array) == error_mark_node
2862       || TREE_TYPE (idx) == error_mark_node)
2863     return error_mark_node;
2864
2865   /* If ARRAY is a COMPOUND_EXPR or COND_EXPR, move our reference
2866      inside it.  */
2867   switch (TREE_CODE (array))
2868     {
2869     case COMPOUND_EXPR:
2870       {
2871         tree value = cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2872                                          complain);
2873         ret = build2 (COMPOUND_EXPR, TREE_TYPE (value),
2874                       TREE_OPERAND (array, 0), value);
2875         SET_EXPR_LOCATION (ret, loc);
2876         return ret;
2877       }
2878
2879     case COND_EXPR:
2880       ret = build_conditional_expr
2881               (TREE_OPERAND (array, 0),
2882                cp_build_array_ref (loc, TREE_OPERAND (array, 1), idx,
2883                                    complain),
2884                cp_build_array_ref (loc, TREE_OPERAND (array, 2), idx,
2885                                    complain),
2886                tf_warning_or_error);
2887       protected_set_expr_location (ret, loc);
2888       return ret;
2889
2890     default:
2891       break;
2892     }
2893
2894   if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE)
2895     {
2896       tree rval, type;
2897
2898       warn_array_subscript_with_type_char (idx);
2899
2900       if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (idx)))
2901         {
2902           if (complain & tf_error)
2903             error_at (loc, "array subscript is not an integer");
2904           return error_mark_node;
2905         }
2906
2907       /* Apply integral promotions *after* noticing character types.
2908          (It is unclear why we do these promotions -- the standard
2909          does not say that we should.  In fact, the natural thing would
2910          seem to be to convert IDX to ptrdiff_t; we're performing
2911          pointer arithmetic.)  */
2912       idx = perform_integral_promotions (idx);
2913
2914       /* An array that is indexed by a non-constant
2915          cannot be stored in a register; we must be able to do
2916          address arithmetic on its address.
2917          Likewise an array of elements of variable size.  */
2918       if (TREE_CODE (idx) != INTEGER_CST
2919           || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
2920               && (TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))))
2921                   != INTEGER_CST)))
2922         {
2923           if (!cxx_mark_addressable (array))
2924             return error_mark_node;
2925         }
2926
2927       /* An array that is indexed by a constant value which is not within
2928          the array bounds cannot be stored in a register either; because we
2929          would get a crash in store_bit_field/extract_bit_field when trying
2930          to access a non-existent part of the register.  */
2931       if (TREE_CODE (idx) == INTEGER_CST
2932           && TYPE_DOMAIN (TREE_TYPE (array))
2933           && ! int_fits_type_p (idx, TYPE_DOMAIN (TREE_TYPE (array))))
2934         {
2935           if (!cxx_mark_addressable (array))
2936             return error_mark_node;
2937         }
2938
2939       if (!lvalue_p (array) && (complain & tf_error))
2940         pedwarn (loc, OPT_pedantic, 
2941                  "ISO C++ forbids subscripting non-lvalue array");
2942
2943       /* Note in C++ it is valid to subscript a `register' array, since
2944          it is valid to take the address of something with that
2945          storage specification.  */
2946       if (extra_warnings)
2947         {
2948           tree foo = array;
2949           while (TREE_CODE (foo) == COMPONENT_REF)
2950             foo = TREE_OPERAND (foo, 0);
2951           if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo)
2952               && (complain & tf_warning))
2953             warning_at (loc, OPT_Wextra,
2954                         "subscripting array declared %<register%>");
2955         }
2956
2957       type = TREE_TYPE (TREE_TYPE (array));
2958       rval = build4 (ARRAY_REF, type, array, idx, NULL_TREE, NULL_TREE);
2959       /* Array ref is const/volatile if the array elements are
2960          or if the array is..  */
2961       TREE_READONLY (rval)
2962         |= (CP_TYPE_CONST_P (type) | TREE_READONLY (array));
2963       TREE_SIDE_EFFECTS (rval)
2964         |= (CP_TYPE_VOLATILE_P (type) | TREE_SIDE_EFFECTS (array));
2965       TREE_THIS_VOLATILE (rval)
2966         |= (CP_TYPE_VOLATILE_P (type) | TREE_THIS_VOLATILE (array));
2967       ret = require_complete_type_sfinae (fold_if_not_in_template (rval),
2968                                           complain);
2969       protected_set_expr_location (ret, loc);
2970       return ret;
2971     }
2972
2973   {
2974     tree ar = default_conversion (array);
2975     tree ind = default_conversion (idx);
2976
2977     /* Put the integer in IND to simplify error checking.  */
2978     if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
2979       {
2980         tree temp = ar;
2981         ar = ind;
2982         ind = temp;
2983       }
2984
2985     if (ar == error_mark_node)
2986       return ar;
2987
2988     if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE)
2989       {
2990         if (complain & tf_error)
2991           error_at (loc, "subscripted value is neither array nor pointer");
2992         return error_mark_node;
2993       }
2994     if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
2995       {
2996         if (complain & tf_error)
2997           error_at (loc, "array subscript is not an integer");
2998         return error_mark_node;
2999       }
3000
3001     warn_array_subscript_with_type_char (idx);
3002
3003     ret = cp_build_indirect_ref (cp_build_binary_op (input_location,
3004                                                      PLUS_EXPR, ar, ind,
3005                                                      complain),
3006                                  RO_ARRAY_INDEXING,
3007                                  complain);
3008     protected_set_expr_location (ret, loc);
3009     return ret;
3010   }
3011 }
3012
3013 /* Entry point for Obj-C++.  */
3014
3015 tree
3016 build_array_ref (location_t loc, tree array, tree idx)
3017 {
3018   return cp_build_array_ref (loc, array, idx, tf_warning_or_error);
3019 }
3020 \f
3021 /* Resolve a pointer to member function.  INSTANCE is the object
3022    instance to use, if the member points to a virtual member.
3023
3024    This used to avoid checking for virtual functions if basetype
3025    has no virtual functions, according to an earlier ANSI draft.
3026    With the final ISO C++ rules, such an optimization is
3027    incorrect: A pointer to a derived member can be static_cast
3028    to pointer-to-base-member, as long as the dynamic object
3029    later has the right member.  */
3030
3031 tree
3032 get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function)
3033 {
3034   if (TREE_CODE (function) == OFFSET_REF)
3035     function = TREE_OPERAND (function, 1);
3036
3037   if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
3038     {
3039       tree idx, delta, e1, e2, e3, vtbl, basetype;
3040       tree fntype = TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (function));
3041
3042       tree instance_ptr = *instance_ptrptr;
3043       tree instance_save_expr = 0;
3044       if (instance_ptr == error_mark_node)
3045         {
3046           if (TREE_CODE (function) == PTRMEM_CST)
3047             {
3048               /* Extracting the function address from a pmf is only
3049                  allowed with -Wno-pmf-conversions. It only works for
3050                  pmf constants.  */
3051               e1 = build_addr_func (PTRMEM_CST_MEMBER (function));
3052               e1 = convert (fntype, e1);
3053               return e1;
3054             }
3055           else
3056             {
3057               error ("object missing in use of %qE", function);
3058               return error_mark_node;
3059             }
3060         }
3061
3062       if (TREE_SIDE_EFFECTS (instance_ptr))
3063         instance_ptr = instance_save_expr = save_expr (instance_ptr);
3064
3065       if (TREE_SIDE_EFFECTS (function))
3066         function = save_expr (function);
3067
3068       /* Start by extracting all the information from the PMF itself.  */
3069       e3 = pfn_from_ptrmemfunc (function);
3070       delta = delta_from_ptrmemfunc (function);
3071       idx = build1 (NOP_EXPR, vtable_index_type, e3);
3072       switch (TARGET_PTRMEMFUNC_VBIT_LOCATION)
3073         {
3074         case ptrmemfunc_vbit_in_pfn:
3075           e1 = cp_build_binary_op (input_location,
3076                                    BIT_AND_EXPR, idx, integer_one_node,
3077                                    tf_warning_or_error);
3078           idx = cp_build_binary_op (input_location,
3079                                     MINUS_EXPR, idx, integer_one_node,
3080                                     tf_warning_or_error);
3081           break;
3082
3083         case ptrmemfunc_vbit_in_delta:
3084           e1 = cp_build_binary_op (input_location,
3085                                    BIT_AND_EXPR, delta, integer_one_node,
3086                                    tf_warning_or_error);
3087           delta = cp_build_binary_op (input_location,
3088                                       RSHIFT_EXPR, delta, integer_one_node,
3089                                       tf_warning_or_error);
3090           break;
3091
3092         default:
3093           gcc_unreachable ();
3094         }
3095
3096       /* Convert down to the right base before using the instance.  A
3097          special case is that in a pointer to member of class C, C may
3098          be incomplete.  In that case, the function will of course be
3099          a member of C, and no conversion is required.  In fact,
3100          lookup_base will fail in that case, because incomplete
3101          classes do not have BINFOs.  */
3102       basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
3103       if (!same_type_ignoring_top_level_qualifiers_p
3104           (basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
3105         {
3106           basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
3107                                   basetype, ba_check, NULL);
3108           instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
3109                                           1, tf_warning_or_error);
3110           if (instance_ptr == error_mark_node)
3111             return error_mark_node;
3112         }
3113       /* ...and then the delta in the PMF.  */
3114       instance_ptr = fold_build_pointer_plus (instance_ptr, delta);
3115
3116       /* Hand back the adjusted 'this' argument to our caller.  */
3117       *instance_ptrptr = instance_ptr;
3118
3119       /* Next extract the vtable pointer from the object.  */
3120       vtbl = build1 (NOP_EXPR, build_pointer_type (vtbl_ptr_type_node),
3121                      instance_ptr);
3122       vtbl = cp_build_indirect_ref (vtbl, RO_NULL, tf_warning_or_error);
3123       /* If the object is not dynamic the access invokes undefined
3124          behavior.  As it is not executed in this case silence the
3125          spurious warnings it may provoke.  */
3126       TREE_NO_WARNING (vtbl) = 1;
3127
3128       /* Finally, extract the function pointer from the vtable.  */
3129       e2 = fold_build_pointer_plus_loc (input_location, vtbl, idx);
3130       e2 = cp_build_indirect_ref (e2, RO_NULL, tf_warning_or_error);
3131       TREE_CONSTANT (e2) = 1;
3132
3133       /* When using function descriptors, the address of the
3134          vtable entry is treated as a function pointer.  */
3135       if (TARGET_VTABLE_USES_DESCRIPTORS)
3136         e2 = build1 (NOP_EXPR, TREE_TYPE (e2),
3137                      cp_build_addr_expr (e2, tf_warning_or_error));
3138
3139       e2 = fold_convert (TREE_TYPE (e3), e2);
3140       e1 = build_conditional_expr (e1, e2, e3, tf_warning_or_error);
3141
3142       /* Make sure this doesn't get evaluated first inside one of the
3143          branches of the COND_EXPR.  */
3144       if (instance_save_expr)
3145         e1 = build2 (COMPOUND_EXPR, TREE_TYPE (e1),
3146                      instance_save_expr, e1);
3147
3148       function = e1;
3149     }
3150   return function;
3151 }
3152
3153 /* Used by the C-common bits.  */
3154 tree
3155 build_function_call (location_t loc ATTRIBUTE_UNUSED, 
3156                      tree function, tree params)
3157 {
3158   return cp_build_function_call (function, params, tf_warning_or_error);
3159 }
3160
3161 /* Used by the C-common bits.  */
3162 tree
3163 build_function_call_vec (location_t loc ATTRIBUTE_UNUSED,
3164                          tree function, VEC(tree,gc) *params,
3165                          VEC(tree,gc) *origtypes ATTRIBUTE_UNUSED)
3166 {
3167   VEC(tree,gc) *orig_params = params;
3168   tree ret = cp_build_function_call_vec (function, &params,
3169                                          tf_warning_or_error);
3170
3171   /* cp_build_function_call_vec can reallocate PARAMS by adding
3172      default arguments.  That should never happen here.  Verify
3173      that.  */
3174   gcc_assert (params == orig_params);
3175
3176   return ret;
3177 }
3178
3179 /* Build a function call using a tree list of arguments.  */
3180
3181 tree
3182 cp_build_function_call (tree function, tree params, tsubst_flags_t complain)
3183 {
3184   VEC(tree,gc) *vec;
3185   tree ret;
3186
3187   vec = make_tree_vector ();
3188   for (; params != NULL_TREE; params = TREE_CHAIN (params))
3189     VEC_safe_push (tree, gc, vec, TREE_VALUE (params));
3190   ret = cp_build_function_call_vec (function, &vec, complain);
3191   release_tree_vector (vec);
3192   return ret;
3193 }
3194
3195 /* Build a function call using varargs.  */
3196
3197 tree
3198 cp_build_function_call_nary (tree function, tsubst_flags_t complain, ...)
3199 {
3200   VEC(tree,gc) *vec;
3201   va_list args;
3202   tree ret, t;
3203
3204   vec = make_tree_vector ();
3205   va_start (args, complain);
3206   for (t = va_arg (args, tree); t != NULL_TREE; t = va_arg (args, tree))
3207     VEC_safe_push (tree, gc, vec, t);
3208   va_end (args);
3209   ret = cp_build_function_call_vec (function, &vec, complain);
3210   release_tree_vector (vec);
3211   return ret;
3212 }
3213
3214 /* Build a function call using a vector of arguments.  PARAMS may be
3215    NULL if there are no parameters.  This changes the contents of
3216    PARAMS.  */
3217
3218 tree
3219 cp_build_function_call_vec (tree function, VEC(tree,gc) **params,
3220                             tsubst_flags_t complain)
3221 {
3222   tree fntype, fndecl;
3223   int is_method;
3224   tree original = function;
3225   int nargs;
3226   tree *argarray;
3227   tree parm_types;
3228   VEC(tree,gc) *allocated = NULL;
3229   tree ret;
3230
3231   /* For Objective-C, convert any calls via a cast to OBJC_TYPE_REF
3232      expressions, like those used for ObjC messenger dispatches.  */
3233   if (params != NULL && !VEC_empty (tree, *params))
3234     function = objc_rewrite_function_call (function,
3235                                            VEC_index (tree, *params, 0));
3236
3237   /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3238      Strip such NOP_EXPRs, since FUNCTION is used in non-lvalue context.  */
3239   if (TREE_CODE (function) == NOP_EXPR
3240       && TREE_TYPE (function) == TREE_TYPE (TREE_OPERAND (function, 0)))
3241     function = TREE_OPERAND (function, 0);
3242
3243   if (TREE_CODE (function) == FUNCTION_DECL)
3244     {
3245       mark_used (function);
3246       fndecl = function;
3247
3248       /* Convert anything with function type to a pointer-to-function.  */
3249       if (DECL_MAIN_P (function) && (complain & tf_error))
3250         pedwarn (input_location, OPT_pedantic, 
3251                  "ISO C++ forbids calling %<::main%> from within program");
3252
3253       function = build_addr_func (function);
3254     }
3255   else
3256     {
3257       fndecl = NULL_TREE;
3258
3259       function = build_addr_func (function);
3260     }
3261
3262   if (function == error_mark_node)
3263     return error_mark_node;
3264
3265   fntype = TREE_TYPE (function);
3266
3267   if (TYPE_PTRMEMFUNC_P (fntype))
3268     {
3269       if (complain & tf_error)
3270         error ("must use %<.*%> or %<->*%> to call pointer-to-member "
3271                "function in %<%E (...)%>, e.g. %<(... ->* %E) (...)%>",
3272                original, original);
3273       return error_mark_node;
3274     }
3275
3276   is_method = (TREE_CODE (fntype) == POINTER_TYPE
3277                && TREE_CODE (TREE_TYPE (fntype)) == METHOD_TYPE);
3278
3279   if (!((TREE_CODE (fntype) == POINTER_TYPE
3280          && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE)
3281         || is_method
3282         || TREE_CODE (function) == TEMPLATE_ID_EXPR))
3283     {
3284       if (complain & tf_error)
3285         error ("%qE cannot be used as a function", original);
3286       return error_mark_node;
3287     }
3288
3289   /* fntype now gets the type of function pointed to.  */
3290   fntype = TREE_TYPE (fntype);
3291   parm_types = TYPE_ARG_TYPES (fntype);
3292
3293   if (params == NULL)
3294     {
3295       allocated = make_tree_vector ();
3296       params = &allocated;
3297     }
3298
3299   nargs = convert_arguments (parm_types, params, fndecl, LOOKUP_NORMAL,
3300                              complain);
3301   if (nargs < 0)
3302     return error_mark_node;
3303
3304   argarray = VEC_address (tree, *params);
3305
3306   /* Check for errors in format strings and inappropriately
3307      null parameters.  */
3308   check_function_arguments (fntype, nargs, argarray);
3309
3310   ret = build_cxx_call (function, nargs, argarray);
3311
3312   if (allocated != NULL)
3313     release_tree_vector (allocated);
3314
3315   return ret;
3316 }
3317 \f
3318 /* Subroutine of convert_arguments.
3319    Warn about wrong number of args are genereted. */
3320
3321 static void
3322 warn_args_num (location_t loc, tree fndecl, bool too_many_p)
3323 {
3324   if (fndecl)
3325     {
3326       if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
3327         {
3328           if (DECL_NAME (fndecl) == NULL_TREE
3329               || IDENTIFIER_HAS_TYPE_VALUE (DECL_NAME (fndecl)))
3330             error_at (loc,
3331                       too_many_p
3332                       ? G_("too many arguments to constructor %q#D")
3333                       : G_("too few arguments to constructor %q#D"),
3334                       fndecl);
3335           else
3336             error_at (loc,
3337                       too_many_p
3338                       ? G_("too many arguments to member function %q#D")
3339                       : G_("too few arguments to member function %q#D"),
3340                       fndecl);
3341         }
3342       else
3343         error_at (loc,
3344                   too_many_p
3345                   ? G_("too many arguments to function %q#D")
3346                   : G_("too few arguments to function %q#D"),
3347                   fndecl);
3348       inform (DECL_SOURCE_LOCATION (fndecl),
3349               "declared here");
3350     }
3351   else
3352     {
3353       if (c_dialect_objc ()  &&  objc_message_selector ())
3354         error_at (loc,
3355                   too_many_p 
3356                   ? G_("too many arguments to method %q#D")
3357                   : G_("too few arguments to method %q#D"),
3358                   objc_message_selector ());
3359       else
3360         error_at (loc, too_many_p ? G_("too many arguments to function")
3361                                   : G_("too few arguments to function"));
3362     }
3363 }
3364
3365 /* Convert the actual parameter expressions in the list VALUES to the
3366    types in the list TYPELIST.  The converted expressions are stored
3367    back in the VALUES vector.
3368    If parmdecls is exhausted, or when an element has NULL as its type,
3369    perform the default conversions.
3370
3371    NAME is an IDENTIFIER_NODE or 0.  It is used only for error messages.
3372
3373    This is also where warnings about wrong number of args are generated.
3374
3375    Returns the actual number of arguments processed (which might be less
3376    than the length of the vector), or -1 on error.
3377
3378    In C++, unspecified trailing parameters can be filled in with their
3379    default arguments, if such were specified.  Do so here.  */
3380
3381 static int
3382 convert_arguments (tree typelist, VEC(tree,gc) **values, tree fndecl,
3383                    int flags, tsubst_flags_t complain)
3384 {
3385   tree typetail;
3386   unsigned int i;
3387
3388   /* Argument passing is always copy-initialization.  */
3389   flags |= LOOKUP_ONLYCONVERTING;
3390
3391   for (i = 0, typetail = typelist;
3392        i < VEC_length (tree, *values);
3393        i++)
3394     {
3395       tree type = typetail ? TREE_VALUE (typetail) : 0;
3396       tree val = VEC_index (tree, *values, i);
3397
3398       if (val == error_mark_node || type == error_mark_node)
3399         return -1;
3400
3401       if (type == void_type_node)
3402         {
3403           if (complain & tf_error)
3404             {
3405               warn_args_num (input_location, fndecl, /*too_many_p=*/true);
3406               return i;
3407             }
3408           else
3409             return -1;
3410         }
3411
3412       /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
3413          Strip such NOP_EXPRs, since VAL is used in non-lvalue context.  */
3414       if (TREE_CODE (val) == NOP_EXPR
3415           && TREE_TYPE (val) == TREE_TYPE (TREE_OPERAND (val, 0))
3416           && (type == 0 || TREE_CODE (type) != REFERENCE_TYPE))
3417         val = TREE_OPERAND (val, 0);
3418
3419       if (type == 0 || TREE_CODE (type) != REFERENCE_TYPE)
3420         {
3421           if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
3422               || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE
3423               || TREE_CODE (TREE_TYPE (val)) == METHOD_TYPE)
3424             val = decay_conversion (val);
3425         }
3426
3427       if (val == error_mark_node)
3428         return -1;
3429
3430       if (type != 0)
3431         {
3432           /* Formal parm type is specified by a function prototype.  */
3433           tree parmval;
3434
3435           if (!COMPLETE_TYPE_P (complete_type (type)))
3436             {
3437               if (complain & tf_error)
3438                 {
3439                   if (fndecl)
3440                     error ("parameter %P of %qD has incomplete type %qT",
3441                            i, fndecl, type);
3442                   else
3443                     error ("parameter %P has incomplete type %qT", i, type);
3444                 }
3445               parmval = error_mark_node;
3446             }
3447           else
3448             {
3449               parmval = convert_for_initialization
3450                 (NULL_TREE, type, val, flags,
3451                  ICR_ARGPASS, fndecl, i, complain);
3452               parmval = convert_for_arg_passing (type, parmval);
3453             }
3454
3455           if (parmval == error_mark_node)
3456             return -1;
3457
3458           VEC_replace (tree, *values, i, parmval);
3459         }
3460       else
3461         {
3462           if (fndecl && DECL_BUILT_IN (fndecl)
3463               && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_CONSTANT_P)
3464             /* Don't do ellipsis conversion for __built_in_constant_p
3465                as this will result in spurious errors for non-trivial
3466                types.  */
3467             val = require_complete_type_sfinae (val, complain);
3468           else
3469             val = convert_arg_to_ellipsis (val);
3470
3471           VEC_replace (tree, *values, i, val);
3472         }
3473
3474       if (typetail)
3475         typetail = TREE_CHAIN (typetail);
3476     }
3477
3478   if (typetail != 0 && typetail != void_list_node)
3479     {
3480       /* See if there are default arguments that can be used.  Because
3481          we hold default arguments in the FUNCTION_TYPE (which is so
3482          wrong), we can see default parameters here from deduced
3483          contexts (and via typeof) for indirect function calls.
3484          Fortunately we know whether we have a function decl to
3485          provide default arguments in a language conformant
3486          manner.  */
3487       if (fndecl && TREE_PURPOSE (typetail)
3488           && TREE_CODE (TREE_PURPOSE (typetail)) != DEFAULT_ARG)
3489         {
3490           for (; typetail != void_list_node; ++i)
3491             {
3492               tree parmval
3493                 = convert_default_arg (TREE_VALUE (typetail),
3494                                        TREE_PURPOSE (typetail),
3495                                        fndecl, i);
3496
3497               if (parmval == error_mark_node)
3498                 return -1;
3499
3500               VEC_safe_push (tree, gc, *values, parmval);
3501               typetail = TREE_CHAIN (typetail);
3502               /* ends with `...'.  */
3503               if (typetail == NULL_TREE)
3504                 break;
3505             }
3506         }
3507       else
3508         {
3509           if (complain & tf_error)
3510             warn_args_num (input_location, fndecl, /*too_many_p=*/false);
3511           return -1;
3512         }
3513     }
3514
3515   return (int) i;
3516 }
3517 \f
3518 /* Build a binary-operation expression, after performing default
3519    conversions on the operands.  CODE is the kind of expression to
3520    build.  ARG1 and ARG2 are the arguments.  ARG1_CODE and ARG2_CODE
3521    are the tree codes which correspond to ARG1 and ARG2 when issuing
3522    warnings about possibly misplaced parentheses.  They may differ
3523    from the TREE_CODE of ARG1 and ARG2 if the parser has done constant
3524    folding (e.g., if the parser sees "a | 1 + 1", it may call this
3525    routine with ARG2 being an INTEGER_CST and ARG2_CODE == PLUS_EXPR).
3526    To avoid issuing any parentheses warnings, pass ARG1_CODE and/or
3527    ARG2_CODE as ERROR_MARK.  */
3528
3529 tree
3530 build_x_binary_op (enum tree_code code, tree arg1, enum tree_code arg1_code,
3531                    tree arg2, enum tree_code arg2_code, tree *overload,
3532                    tsubst_flags_t complain)
3533 {
3534   tree orig_arg1;
3535   tree orig_arg2;
3536   tree expr;
3537
3538   orig_arg1 = arg1;
3539   orig_arg2 = arg2;
3540
3541   if (processing_template_decl)
3542     {
3543       if (type_dependent_expression_p (arg1)
3544           || type_dependent_expression_p (arg2))
3545         return build_min_nt (code, arg1, arg2);
3546       arg1 = build_non_dependent_expr (arg1);
3547       arg2 = build_non_dependent_expr (arg2);
3548     }
3549
3550   if (code == DOTSTAR_EXPR)
3551     expr = build_m_component_ref (arg1, arg2);
3552   else
3553     expr = build_new_op (code, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3554                          overload, complain);
3555
3556   /* Check for cases such as x+y<<z which users are likely to
3557      misinterpret.  But don't warn about obj << x + y, since that is a
3558      common idiom for I/O.  */
3559   if (warn_parentheses
3560       && (complain & tf_warning)
3561       && !processing_template_decl
3562       && !error_operand_p (arg1)
3563       && !error_operand_p (arg2)
3564       && (code != LSHIFT_EXPR
3565           || !CLASS_TYPE_P (TREE_TYPE (arg1))))
3566     warn_about_parentheses (code, arg1_code, orig_arg1, arg2_code, orig_arg2);
3567
3568   if (processing_template_decl && expr != error_mark_node)
3569     return build_min_non_dep (code, expr, orig_arg1, orig_arg2);
3570
3571   return expr;
3572 }
3573
3574 /* Build and return an ARRAY_REF expression.  */
3575
3576 tree
3577 build_x_array_ref (tree arg1, tree arg2, tsubst_flags_t complain)
3578 {
3579   tree orig_arg1 = arg1;
3580   tree orig_arg2 = arg2;
3581   tree expr;
3582
3583   if (processing_template_decl)
3584     {
3585       if (type_dependent_expression_p (arg1)
3586           || type_dependent_expression_p (arg2))
3587         return build_min_nt (ARRAY_REF, arg1, arg2,
3588                              NULL_TREE, NULL_TREE);
3589       arg1 = build_non_dependent_expr (arg1);
3590       arg2 = build_non_dependent_expr (arg2);
3591     }
3592
3593   expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL, arg1, arg2, NULL_TREE,
3594                        /*overload=*/NULL, complain);
3595
3596   if (processing_template_decl && expr != error_mark_node)
3597     return build_min_non_dep (ARRAY_REF, expr, orig_arg1, orig_arg2,
3598                               NULL_TREE, NULL_TREE);
3599   return expr;
3600 }
3601
3602 /* For the c-common bits.  */
3603 tree
3604 build_binary_op (location_t location, enum tree_code code, tree op0, tree op1,
3605                  int convert_p ATTRIBUTE_UNUSED)
3606 {
3607   return cp_build_binary_op (location, code, op0, op1, tf_warning_or_error);
3608 }
3609
3610
3611 /* Build a binary-operation expression without default conversions.
3612    CODE is the kind of expression to build.
3613    LOCATION is the location_t of the operator in the source code.
3614    This function differs from `build' in several ways:
3615    the data type of the result is computed and recorded in it,
3616    warnings are generated if arg data types are invalid,
3617    special handling for addition and subtraction of pointers is known,
3618    and some optimization is done (operations on narrow ints
3619    are done in the narrower type when that gives the same result).
3620    Constant folding is also done before the result is returned.
3621
3622    Note that the operands will never have enumeral types
3623    because either they have just had the default conversions performed
3624    or they have both just been converted to some other type in which
3625    the arithmetic is to be done.
3626
3627    C++: must do special pointer arithmetic when implementing
3628    multiple inheritance, and deal with pointer to member functions.  */
3629
3630 tree
3631 cp_build_binary_op (location_t location,
3632                     enum tree_code code, tree orig_op0, tree orig_op1,
3633                     tsubst_flags_t complain)
3634 {
3635   tree op0, op1;
3636   enum tree_code code0, code1;
3637   tree type0, type1;
3638   const char *invalid_op_diag;
3639
3640   /* Expression code to give to the expression when it is built.
3641      Normally this is CODE, which is what the caller asked for,
3642      but in some special cases we change it.  */
3643   enum tree_code resultcode = code;
3644
3645   /* Data type in which the computation is to be performed.
3646      In the simplest cases this is the common type of the arguments.  */
3647   tree result_type = NULL;
3648
3649   /* Nonzero means operands have already been type-converted
3650      in whatever way is necessary.
3651      Zero means they need to be converted to RESULT_TYPE.  */
3652   int converted = 0;
3653
3654   /* Nonzero means create the expression with this type, rather than
3655      RESULT_TYPE.  */
3656   tree build_type = 0;
3657
3658   /* Nonzero means after finally constructing the expression
3659      convert it to this type.  */
3660   tree final_type = 0;
3661
3662   tree result;
3663
3664   /* Nonzero if this is an operation like MIN or MAX which can
3665      safely be computed in short if both args are promoted shorts.
3666      Also implies COMMON.
3667      -1 indicates a bitwise operation; this makes a difference
3668      in the exact conditions for when it is safe to do the operation
3669      in a narrower mode.  */
3670   int shorten = 0;
3671
3672   /* Nonzero if this is a comparison operation;
3673      if both args are promoted shorts, compare the original shorts.
3674      Also implies COMMON.  */
3675   int short_compare = 0;
3676
3677   /* Nonzero means set RESULT_TYPE to the common type of the args.  */
3678   int common = 0;
3679
3680   /* True if both operands have arithmetic type.  */
3681   bool arithmetic_types_p;
3682
3683   /* Apply default conversions.  */
3684   op0 = orig_op0;
3685   op1 = orig_op1;
3686
3687   if (code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR
3688       || code == TRUTH_OR_EXPR || code == TRUTH_ORIF_EXPR
3689       || code == TRUTH_XOR_EXPR)
3690     {
3691       if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3692         op0 = decay_conversion (op0);
3693       if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3694         op1 = decay_conversion (op1);
3695     }
3696   else
3697     {
3698       if (!really_overloaded_fn (op0) && !VOID_TYPE_P (TREE_TYPE (op0)))
3699         op0 = default_conversion (op0);
3700       if (!really_overloaded_fn (op1) && !VOID_TYPE_P (TREE_TYPE (op1)))
3701         op1 = default_conversion (op1);
3702     }
3703
3704   /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue.  */
3705   STRIP_TYPE_NOPS (op0);
3706   STRIP_TYPE_NOPS (op1);
3707
3708   /* DTRT if one side is an overloaded function, but complain about it.  */
3709   if (type_unknown_p (op0))
3710     {
3711       tree t = instantiate_type (TREE_TYPE (op1), op0, tf_none);
3712       if (t != error_mark_node)
3713         {
3714           if (complain & tf_error)
3715             permerror (input_location, "assuming cast to type %qT from overloaded function",
3716                        TREE_TYPE (t));
3717           op0 = t;
3718         }
3719     }
3720   if (type_unknown_p (op1))
3721     {
3722       tree t = instantiate_type (TREE_TYPE (op0), op1, tf_none);
3723       if (t != error_mark_node)
3724         {
3725           if (complain & tf_error)
3726             permerror (input_location, "assuming cast to type %qT from overloaded function",
3727                        TREE_TYPE (t));
3728           op1 = t;
3729         }
3730     }
3731
3732   type0 = TREE_TYPE (op0);
3733   type1 = TREE_TYPE (op1);
3734
3735   /* The expression codes of the data types of the arguments tell us
3736      whether the arguments are integers, floating, pointers, etc.  */
3737   code0 = TREE_CODE (type0);
3738   code1 = TREE_CODE (type1);
3739
3740   /* If an error was already reported for one of the arguments,
3741      avoid reporting another error.  */
3742   if (code0 == ERROR_MARK || code1 == ERROR_MARK)
3743     return error_mark_node;
3744
3745   if ((invalid_op_diag
3746        = targetm.invalid_binary_op (code, type0, type1)))
3747     {
3748       error (invalid_op_diag);
3749       return error_mark_node;
3750     }
3751
3752   /* Issue warnings about peculiar, but valid, uses of NULL.  */
3753   if ((orig_op0 == null_node || orig_op1 == null_node)
3754       /* It's reasonable to use pointer values as operands of &&
3755          and ||, so NULL is no exception.  */
3756       && code != TRUTH_ANDIF_EXPR && code != TRUTH_ORIF_EXPR 
3757       && ( /* Both are NULL (or 0) and the operation was not a
3758               comparison or a pointer subtraction.  */
3759           (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1) 
3760            && code != EQ_EXPR && code != NE_EXPR && code != MINUS_EXPR) 
3761           /* Or if one of OP0 or OP1 is neither a pointer nor NULL.  */
3762           || (!null_ptr_cst_p (orig_op0)
3763               && !TYPE_PTR_P (type0) && !TYPE_PTR_TO_MEMBER_P (type0))
3764           || (!null_ptr_cst_p (orig_op1) 
3765               && !TYPE_PTR_P (type1) && !TYPE_PTR_TO_MEMBER_P (type1)))
3766       && (complain & tf_warning))
3767     /* Some sort of arithmetic operation involving NULL was
3768        performed.  */
3769     warning (OPT_Wpointer_arith, "NULL used in arithmetic");
3770
3771   switch (code)
3772     {
3773     case MINUS_EXPR:
3774       /* Subtraction of two similar pointers.
3775          We must subtract them as integers, then divide by object size.  */
3776       if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
3777           && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type0),
3778                                                         TREE_TYPE (type1)))
3779         return pointer_diff (op0, op1, common_pointer_type (type0, type1));
3780       /* In all other cases except pointer - int, the usual arithmetic
3781          rules apply.  */
3782       else if (!(code0 == POINTER_TYPE && code1 == INTEGER_TYPE))
3783         {
3784           common = 1;
3785           break;
3786         }
3787       /* The pointer - int case is just like pointer + int; fall
3788          through.  */
3789     case PLUS_EXPR:
3790       if ((code0 == POINTER_TYPE || code1 == POINTER_TYPE)
3791           && (code0 == INTEGER_TYPE || code1 == INTEGER_TYPE))
3792         {
3793           tree ptr_operand;
3794           tree int_operand;
3795           ptr_operand = ((code0 == POINTER_TYPE) ? op0 : op1);
3796           int_operand = ((code0 == INTEGER_TYPE) ? op0 : op1);
3797           if (processing_template_decl)
3798             {
3799               result_type = TREE_TYPE (ptr_operand);
3800               break;
3801             }
3802           return cp_pointer_int_sum (code,
3803                                      ptr_operand, 
3804                                      int_operand);
3805         }
3806       common = 1;
3807       break;
3808
3809     case MULT_EXPR:
3810       common = 1;
3811       break;
3812
3813     case TRUNC_DIV_EXPR:
3814     case CEIL_DIV_EXPR:
3815     case FLOOR_DIV_EXPR:
3816     case ROUND_DIV_EXPR:
3817     case EXACT_DIV_EXPR:
3818       if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3819            || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
3820           && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3821               || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
3822         {
3823           enum tree_code tcode0 = code0, tcode1 = code1;
3824
3825           warn_for_div_by_zero (location, op1);
3826
3827           if (tcode0 == COMPLEX_TYPE || tcode0 == VECTOR_TYPE)
3828             tcode0 = TREE_CODE (TREE_TYPE (TREE_TYPE (op0)));
3829           if (tcode1 == COMPLEX_TYPE || tcode1 == VECTOR_TYPE)
3830             tcode1 = TREE_CODE (TREE_TYPE (TREE_TYPE (op1)));
3831
3832           if (!(tcode0 == INTEGER_TYPE && tcode1 == INTEGER_TYPE))
3833             resultcode = RDIV_EXPR;
3834           else
3835             /* When dividing two signed integers, we have to promote to int.
3836                unless we divide by a constant != -1.  Note that default
3837                conversion will have been performed on the operands at this
3838                point, so we have to dig out the original type to find out if
3839                it was unsigned.  */
3840             shorten = ((TREE_CODE (op0) == NOP_EXPR
3841                         && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3842                        || (TREE_CODE (op1) == INTEGER_CST
3843                            && ! integer_all_onesp (op1)));
3844
3845           common = 1;
3846         }
3847       break;
3848
3849     case BIT_AND_EXPR:
3850     case BIT_IOR_EXPR:
3851     case BIT_XOR_EXPR:
3852       if ((code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3853           || (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3854               && !VECTOR_FLOAT_TYPE_P (type0)
3855               && !VECTOR_FLOAT_TYPE_P (type1)))
3856         shorten = -1;
3857       break;
3858
3859     case TRUNC_MOD_EXPR:
3860     case FLOOR_MOD_EXPR:
3861       warn_for_div_by_zero (location, op1);
3862
3863       if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE
3864           && TREE_CODE (TREE_TYPE (type0)) == INTEGER_TYPE
3865           && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
3866         common = 1;
3867       else if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3868         {
3869           /* Although it would be tempting to shorten always here, that loses
3870              on some targets, since the modulo instruction is undefined if the
3871              quotient can't be represented in the computation mode.  We shorten
3872              only if unsigned or if dividing by something we know != -1.  */
3873           shorten = ((TREE_CODE (op0) == NOP_EXPR
3874                       && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
3875                      || (TREE_CODE (op1) == INTEGER_CST
3876                          && ! integer_all_onesp (op1)));
3877           common = 1;
3878         }
3879       break;
3880
3881     case TRUTH_ANDIF_EXPR:
3882     case TRUTH_ORIF_EXPR:
3883     case TRUTH_AND_EXPR:
3884     case TRUTH_OR_EXPR:
3885       result_type = boolean_type_node;
3886       break;
3887
3888       /* Shift operations: result has same type as first operand;
3889          always convert second operand to int.
3890          Also set SHORT_SHIFT if shifting rightward.  */
3891
3892     case RSHIFT_EXPR:
3893       if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3894         {
3895           result_type = type0;
3896           if (TREE_CODE (op1) == INTEGER_CST)
3897             {
3898               if (tree_int_cst_lt (op1, integer_zero_node))
3899                 {
3900                   if ((complain & tf_warning)
3901                       && c_inhibit_evaluation_warnings == 0)
3902                     warning (0, "right shift count is negative");
3903                 }
3904               else
3905                 {
3906                   if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0
3907                       && (complain & tf_warning)
3908                       && c_inhibit_evaluation_warnings == 0)
3909                     warning (0, "right shift count >= width of type");
3910                 }
3911             }
3912           /* Convert the shift-count to an integer, regardless of
3913              size of value being shifted.  */
3914           if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3915             op1 = cp_convert (integer_type_node, op1);
3916           /* Avoid converting op1 to result_type later.  */
3917           converted = 1;
3918         }
3919       break;
3920
3921     case LSHIFT_EXPR:
3922       if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3923         {
3924           result_type = type0;
3925           if (TREE_CODE (op1) == INTEGER_CST)
3926             {
3927               if (tree_int_cst_lt (op1, integer_zero_node))
3928                 {
3929                   if ((complain & tf_warning)
3930                       && c_inhibit_evaluation_warnings == 0)
3931                     warning (0, "left shift count is negative");
3932                 }
3933               else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3934                 {
3935                   if ((complain & tf_warning)
3936                       && c_inhibit_evaluation_warnings == 0)
3937                     warning (0, "left shift count >= width of type");
3938                 }
3939             }
3940           /* Convert the shift-count to an integer, regardless of
3941              size of value being shifted.  */
3942           if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3943             op1 = cp_convert (integer_type_node, op1);
3944           /* Avoid converting op1 to result_type later.  */
3945           converted = 1;
3946         }
3947       break;
3948
3949     case RROTATE_EXPR:
3950     case LROTATE_EXPR:
3951       if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
3952         {
3953           result_type = type0;
3954           if (TREE_CODE (op1) == INTEGER_CST)
3955             {
3956               if (tree_int_cst_lt (op1, integer_zero_node))
3957                 {
3958                   if (complain & tf_warning)
3959                     warning (0, (code == LROTATE_EXPR)
3960                                   ? G_("left rotate count is negative")
3961                                   : G_("right rotate count is negative"));
3962                 }
3963               else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
3964                 {
3965                   if (complain & tf_warning)
3966                     warning (0, (code == LROTATE_EXPR) 
3967                                   ? G_("left rotate count >= width of type")
3968                                   : G_("right rotate count >= width of type"));
3969                 }
3970             }
3971           /* Convert the shift-count to an integer, regardless of
3972              size of value being shifted.  */
3973           if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
3974             op1 = cp_convert (integer_type_node, op1);
3975         }
3976       break;
3977
3978     case EQ_EXPR:
3979     case NE_EXPR:
3980       if ((complain & tf_warning)
3981           && (FLOAT_TYPE_P (type0) || FLOAT_TYPE_P (type1)))
3982         warning (OPT_Wfloat_equal,
3983                  "comparing floating point with == or != is unsafe");
3984       if ((complain & tf_warning)
3985           && ((TREE_CODE (orig_op0) == STRING_CST && !integer_zerop (op1))
3986               || (TREE_CODE (orig_op1) == STRING_CST && !integer_zerop (op0))))
3987         warning (OPT_Waddress, "comparison with string literal results in unspecified behaviour");
3988
3989       build_type = boolean_type_node;
3990       if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
3991            || code0 == COMPLEX_TYPE || code0 == ENUMERAL_TYPE)
3992           && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
3993               || code1 == COMPLEX_TYPE || code1 == ENUMERAL_TYPE))
3994         short_compare = 1;
3995       else if ((code0 == POINTER_TYPE && code1 == POINTER_TYPE)
3996                || (TYPE_PTRMEM_P (type0) && TYPE_PTRMEM_P (type1)))
3997         result_type = composite_pointer_type (type0, type1, op0, op1,
3998                                               CPO_COMPARISON, complain);
3999       else if ((code0 == POINTER_TYPE || TYPE_PTRMEM_P (type0))
4000                && null_ptr_cst_p (op1))
4001         {
4002           if (TREE_CODE (op0) == ADDR_EXPR
4003               && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
4004             {
4005               if (complain & tf_warning)
4006                 warning (OPT_Waddress, "the address of %qD will never be NULL",
4007                          TREE_OPERAND (op0, 0));
4008             }
4009           result_type = type0;
4010         }
4011       else if ((code1 == POINTER_TYPE || TYPE_PTRMEM_P (type1))
4012                && null_ptr_cst_p (op0))
4013         {
4014           if (TREE_CODE (op1) == ADDR_EXPR 
4015               && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
4016             {
4017               if (complain & tf_warning)
4018                 warning (OPT_Waddress, "the address of %qD will never be NULL",
4019                          TREE_OPERAND (op1, 0));
4020             }
4021           result_type = type1;
4022         }
4023       else if (null_ptr_cst_p (op0) && null_ptr_cst_p (op1))
4024         /* One of the operands must be of nullptr_t type.  */
4025         result_type = TREE_TYPE (nullptr_node);
4026       else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
4027         {
4028           result_type = type0;
4029           if (complain & tf_error) 
4030             permerror (input_location, "ISO C++ forbids comparison between pointer and integer");
4031           else
4032             return error_mark_node;
4033         }
4034       else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
4035         {
4036           result_type = type1;
4037           if (complain & tf_error)