OSDN Git Service

* cp-tree.h (struct tinst_level): Add chain_next GTY
[pf3gnuchains/gcc-fork.git] / gcc / cp / cvt.c
1 /* Language-level data type conversion for GNU C++.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5    Hacked by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
22
23
24 /* This file contains the functions for converting C++ expressions
25    to different data types.  The only entry point is `convert'.
26    Every language front end must have a `convert' function
27    but what kind of conversions it does will depend on the language.  */
28
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "tree.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "intl.h"
37 #include "convert.h"
38 #include "decl.h"
39 #include "target.h"
40
41 static tree cp_convert_to_pointer (tree, tree);
42 static tree convert_to_pointer_force (tree, tree);
43 static tree build_type_conversion (tree, tree);
44 static tree build_up_reference (tree, tree, int, tree);
45 static void warn_ref_binding (tree, tree, tree);
46
47 /* Change of width--truncation and extension of integers or reals--
48    is represented with NOP_EXPR.  Proper functioning of many things
49    assumes that no other conversions can be NOP_EXPRs.
50
51    Conversion between integer and pointer is represented with CONVERT_EXPR.
52    Converting integer to real uses FLOAT_EXPR
53    and real to integer uses FIX_TRUNC_EXPR.
54
55    Here is a list of all the functions that assume that widening and
56    narrowing is always done with a NOP_EXPR:
57      In convert.c, convert_to_integer.
58      In c-typeck.c, build_binary_op_nodefault (boolean ops),
59         and c_common_truthvalue_conversion.
60      In expr.c: expand_expr, for operands of a MULT_EXPR.
61      In fold-const.c: fold.
62      In tree.c: get_narrower and get_unwidened.
63
64    C++: in multiple-inheritance, converting between pointers may involve
65    adjusting them by a delta stored within the class definition.  */
66 \f
67 /* Subroutines of `convert'.  */
68
69 /* if converting pointer to pointer
70      if dealing with classes, check for derived->base or vice versa
71      else if dealing with method pointers, delegate
72      else convert blindly
73    else if converting class, pass off to build_type_conversion
74    else try C-style pointer conversion.  */
75
76 static tree
77 cp_convert_to_pointer (tree type, tree expr)
78 {
79   tree intype = TREE_TYPE (expr);
80   enum tree_code form;
81   tree rval;
82   if (intype == error_mark_node)
83     return error_mark_node;
84
85   if (MAYBE_CLASS_TYPE_P (intype))
86     {
87       intype = complete_type (intype);
88       if (!COMPLETE_TYPE_P (intype))
89         {
90           error ("can%'t convert from incomplete type %qT to %qT",
91                  intype, type);
92           return error_mark_node;
93         }
94
95       rval = build_type_conversion (type, expr);
96       if (rval)
97         {
98           if (rval == error_mark_node)
99             error ("conversion of %qE from %qT to %qT is ambiguous",
100                    expr, intype, type);
101           return rval;
102         }
103     }
104
105   /* Handle anachronistic conversions from (::*)() to cv void* or (*)().  */
106   if (TREE_CODE (type) == POINTER_TYPE
107       && (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE
108           || VOID_TYPE_P (TREE_TYPE (type))))
109     {
110       if (TYPE_PTRMEMFUNC_P (intype)
111           || TREE_CODE (intype) == METHOD_TYPE)
112         return convert_member_func_to_ptr (type, expr);
113       if (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE)
114         return build_nop (type, expr);
115       intype = TREE_TYPE (expr);
116     }
117
118   if (expr == error_mark_node)
119     return error_mark_node;
120
121   form = TREE_CODE (intype);
122
123   if (POINTER_TYPE_P (intype))
124     {
125       intype = TYPE_MAIN_VARIANT (intype);
126
127       if (TYPE_MAIN_VARIANT (type) != intype
128           && TREE_CODE (type) == POINTER_TYPE
129           && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
130           && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
131           && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
132           && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
133         {
134           enum tree_code code = PLUS_EXPR;
135           tree binfo;
136           tree intype_class;
137           tree type_class;
138           bool same_p;
139
140           intype_class = TREE_TYPE (intype);
141           type_class = TREE_TYPE (type);
142
143           same_p = same_type_p (TYPE_MAIN_VARIANT (intype_class),
144                                 TYPE_MAIN_VARIANT (type_class));
145           binfo = NULL_TREE;
146           /* Try derived to base conversion.  */
147           if (!same_p)
148             binfo = lookup_base (intype_class, type_class, ba_check, NULL);
149           if (!same_p && !binfo)
150             {
151               /* Try base to derived conversion.  */
152               binfo = lookup_base (type_class, intype_class, ba_check, NULL);
153               code = MINUS_EXPR;
154             }
155           if (binfo == error_mark_node)
156             return error_mark_node;
157           if (binfo || same_p)
158             {
159               if (binfo)
160                 expr = build_base_path (code, expr, binfo, 0);
161               /* Add any qualifier conversions.  */
162               return build_nop (type, expr);
163             }
164         }
165
166       if (TYPE_PTRMEMFUNC_P (type))
167         {
168           error ("cannot convert %qE from type %qT to type %qT",
169                  expr, intype, type);
170           return error_mark_node;
171         }
172
173       return build_nop (type, expr);
174     }
175   else if ((TYPE_PTRMEM_P (type) && TYPE_PTRMEM_P (intype))
176            || (TYPE_PTRMEMFUNC_P (type) && TYPE_PTRMEMFUNC_P (intype)))
177     return convert_ptrmem (type, expr, /*allow_inverse_p=*/false,
178                            /*c_cast_p=*/false, tf_warning_or_error);
179   else if (TYPE_PTRMEMFUNC_P (intype))
180     {
181       if (!warn_pmf2ptr)
182         {
183           if (TREE_CODE (expr) == PTRMEM_CST)
184             return cp_convert_to_pointer (type,
185                                           PTRMEM_CST_MEMBER (expr));
186           else if (TREE_CODE (expr) == OFFSET_REF)
187             {
188               tree object = TREE_OPERAND (expr, 0);
189               return get_member_function_from_ptrfunc (&object,
190                                                        TREE_OPERAND (expr, 1));
191             }
192         }
193       error ("cannot convert %qE from type %qT to type %qT",
194              expr, intype, type);
195       return error_mark_node;
196     }
197
198   if (null_ptr_cst_p (expr))
199     {
200       if (TYPE_PTRMEMFUNC_P (type))
201         return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0,
202                                  /*c_cast_p=*/false, tf_warning_or_error);
203
204       if (TYPE_PTRMEM_P (type))
205         {
206           /* A NULL pointer-to-member is represented by -1, not by
207              zero.  */
208           expr = build_int_cst_type (type, -1);
209         }
210       else
211         expr = build_int_cst (type, 0);
212
213       return expr;
214     }
215   else if (TYPE_PTR_TO_MEMBER_P (type) && INTEGRAL_CODE_P (form))
216     {
217       error ("invalid conversion from %qT to %qT", intype, type);
218       return error_mark_node;
219     }
220
221   if (INTEGRAL_CODE_P (form))
222     {
223       if (TYPE_PRECISION (intype) == POINTER_SIZE)
224         return build1 (CONVERT_EXPR, type, expr);
225       expr = cp_convert (c_common_type_for_size (POINTER_SIZE, 0), expr);
226       /* Modes may be different but sizes should be the same.  There
227          is supposed to be some integral type that is the same width
228          as a pointer.  */
229       gcc_assert (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (expr)))
230                   == GET_MODE_SIZE (TYPE_MODE (type)));
231
232       return convert_to_pointer (type, expr);
233     }
234
235   if (type_unknown_p (expr))
236     return instantiate_type (type, expr, tf_warning_or_error);
237
238   error ("cannot convert %qE from type %qT to type %qT",
239          expr, intype, type);
240   return error_mark_node;
241 }
242
243 /* Like convert, except permit conversions to take place which
244    are not normally allowed due to access restrictions
245    (such as conversion from sub-type to private super-type).  */
246
247 static tree
248 convert_to_pointer_force (tree type, tree expr)
249 {
250   tree intype = TREE_TYPE (expr);
251   enum tree_code form = TREE_CODE (intype);
252
253   if (form == POINTER_TYPE)
254     {
255       intype = TYPE_MAIN_VARIANT (intype);
256
257       if (TYPE_MAIN_VARIANT (type) != intype
258           && TREE_CODE (TREE_TYPE (type)) == RECORD_TYPE
259           && MAYBE_CLASS_TYPE_P (TREE_TYPE (type))
260           && MAYBE_CLASS_TYPE_P (TREE_TYPE (intype))
261           && TREE_CODE (TREE_TYPE (intype)) == RECORD_TYPE)
262         {
263           enum tree_code code = PLUS_EXPR;
264           tree binfo;
265
266           binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
267                                ba_unique, NULL);
268           if (!binfo)
269             {
270               binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
271                                    ba_unique, NULL);
272               code = MINUS_EXPR;
273             }
274           if (binfo == error_mark_node)
275             return error_mark_node;
276           if (binfo)
277             {
278               expr = build_base_path (code, expr, binfo, 0);
279               if (expr == error_mark_node)
280                  return error_mark_node;
281               /* Add any qualifier conversions.  */
282               if (!same_type_p (TREE_TYPE (TREE_TYPE (expr)),
283                                 TREE_TYPE (type)))
284                 expr = build_nop (type, expr);
285               return expr;
286             }
287         }
288     }
289
290   return cp_convert_to_pointer (type, expr);
291 }
292
293 /* We are passing something to a function which requires a reference.
294    The type we are interested in is in TYPE. The initial
295    value we have to begin with is in ARG.
296
297    FLAGS controls how we manage access checking.
298    DIRECT_BIND in FLAGS controls how any temporaries are generated.
299      If DIRECT_BIND is set, DECL is the reference we're binding to.  */
300
301 static tree
302 build_up_reference (tree type, tree arg, int flags, tree decl)
303 {
304   tree rval;
305   tree argtype = TREE_TYPE (arg);
306   tree target_type = TREE_TYPE (type);
307
308   gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
309
310   if ((flags & DIRECT_BIND) && ! real_lvalue_p (arg))
311     {
312       /* Create a new temporary variable.  We can't just use a TARGET_EXPR
313          here because it needs to live as long as DECL.  */
314       tree targ = arg;
315
316       arg = make_temporary_var_for_ref_to_temp (decl, target_type);
317
318       /* Process the initializer for the declaration.  */
319       DECL_INITIAL (arg) = targ;
320       cp_finish_decl (arg, targ, /*init_const_expr_p=*/false, NULL_TREE,
321                       LOOKUP_ONLYCONVERTING|DIRECT_BIND);
322     }
323   else if (!(flags & DIRECT_BIND) && ! lvalue_p (arg))
324     return get_target_expr (arg);
325
326   /* If we had a way to wrap this up, and say, if we ever needed its
327      address, transform all occurrences of the register, into a memory
328      reference we could win better.  */
329   rval = cp_build_addr_expr (arg, tf_warning_or_error);
330   if (rval == error_mark_node)
331     return error_mark_node;
332
333   if ((flags & LOOKUP_PROTECT)
334       && TYPE_MAIN_VARIANT (argtype) != TYPE_MAIN_VARIANT (target_type)
335       && MAYBE_CLASS_TYPE_P (argtype)
336       && MAYBE_CLASS_TYPE_P (target_type))
337     {
338       /* We go through lookup_base for the access control.  */
339       tree binfo = lookup_base (argtype, target_type, ba_check, NULL);
340       if (binfo == error_mark_node)
341         return error_mark_node;
342       if (binfo == NULL_TREE)
343         return error_not_base_type (target_type, argtype);
344       rval = build_base_path (PLUS_EXPR, rval, binfo, 1);
345     }
346   else
347     rval
348       = convert_to_pointer_force (build_pointer_type (target_type), rval);
349   return build_nop (type, rval);
350 }
351
352 /* Subroutine of convert_to_reference. REFTYPE is the target reference type.
353    INTYPE is the original rvalue type and DECL is an optional _DECL node
354    for diagnostics.
355
356    [dcl.init.ref] says that if an rvalue is used to
357    initialize a reference, then the reference must be to a
358    non-volatile const type.  */
359
360 static void
361 warn_ref_binding (tree reftype, tree intype, tree decl)
362 {
363   tree ttl = TREE_TYPE (reftype);
364
365   if (!CP_TYPE_CONST_NON_VOLATILE_P (ttl))
366     {
367       const char *msg;
368
369       if (CP_TYPE_VOLATILE_P (ttl) && decl)
370         msg = G_("initialization of volatile reference type %q#T from "
371                  "rvalue of type %qT");
372       else if (CP_TYPE_VOLATILE_P (ttl))
373         msg = G_("conversion to volatile reference type %q#T "
374                  "from rvalue of type %qT");
375       else if (decl)
376         msg = G_("initialization of non-const reference type %q#T from "
377                  "rvalue of type %qT");
378       else
379         msg = G_("conversion to non-const reference type %q#T from "
380                  "rvalue of type %qT");
381
382       permerror (input_location, msg, reftype, intype);
383     }
384 }
385
386 /* For C++: Only need to do one-level references, but cannot
387    get tripped up on signed/unsigned differences.
388
389    DECL is either NULL_TREE or the _DECL node for a reference that is being
390    initialized.  It can be error_mark_node if we don't know the _DECL but
391    we know it's an initialization.  */
392
393 tree
394 convert_to_reference (tree reftype, tree expr, int convtype,
395                       int flags, tree decl)
396 {
397   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (reftype));
398   tree intype;
399   tree rval = NULL_TREE;
400   tree rval_as_conversion = NULL_TREE;
401   bool can_convert_intype_to_type;
402
403   if (TREE_CODE (type) == FUNCTION_TYPE
404       && TREE_TYPE (expr) == unknown_type_node)
405     expr = instantiate_type (type, expr,
406                              (flags & LOOKUP_COMPLAIN)
407                              ? tf_warning_or_error : tf_none);
408
409   if (expr == error_mark_node)
410     return error_mark_node;
411
412   intype = TREE_TYPE (expr);
413
414   gcc_assert (TREE_CODE (intype) != REFERENCE_TYPE);
415   gcc_assert (TREE_CODE (reftype) == REFERENCE_TYPE);
416
417   intype = TYPE_MAIN_VARIANT (intype);
418
419   can_convert_intype_to_type = can_convert (type, intype);
420   if (!can_convert_intype_to_type
421       && (convtype & CONV_IMPLICIT) && MAYBE_CLASS_TYPE_P (intype)
422       && ! (flags & LOOKUP_NO_CONVERSION))
423     {
424       /* Look for a user-defined conversion to lvalue that we can use.  */
425
426       rval_as_conversion
427         = build_type_conversion (reftype, expr);
428
429       if (rval_as_conversion && rval_as_conversion != error_mark_node
430           && real_lvalue_p (rval_as_conversion))
431         {
432           expr = rval_as_conversion;
433           rval_as_conversion = NULL_TREE;
434           intype = type;
435           can_convert_intype_to_type = 1;
436         }
437     }
438
439   if (((convtype & CONV_STATIC) && can_convert (intype, type))
440       || ((convtype & CONV_IMPLICIT) && can_convert_intype_to_type))
441     {
442       if (flags & LOOKUP_COMPLAIN)
443         {
444           tree ttl = TREE_TYPE (reftype);
445           tree ttr = lvalue_type (expr);
446
447           if (! real_lvalue_p (expr))
448             warn_ref_binding (reftype, intype, decl);
449
450           if (! (convtype & CONV_CONST)
451                    && !at_least_as_qualified_p (ttl, ttr))
452             permerror (input_location, "conversion from %qT to %qT discards qualifiers",
453                        ttr, reftype);
454         }
455
456       return build_up_reference (reftype, expr, flags, decl);
457     }
458   else if ((convtype & CONV_REINTERPRET) && lvalue_p (expr))
459     {
460       /* When casting an lvalue to a reference type, just convert into
461          a pointer to the new type and deference it.  This is allowed
462          by San Diego WP section 5.2.9 paragraph 12, though perhaps it
463          should be done directly (jason).  (int &)ri ---> *(int*)&ri */
464
465       /* B* bp; A& ar = (A&)bp; is valid, but it's probably not what they
466          meant.  */
467       if (TREE_CODE (intype) == POINTER_TYPE
468           && (comptypes (TREE_TYPE (intype), type,
469                          COMPARE_BASE | COMPARE_DERIVED)))
470         warning (0, "casting %qT to %qT does not dereference pointer",
471                  intype, reftype);
472
473       rval = cp_build_addr_expr (expr, tf_warning_or_error);
474       if (rval != error_mark_node)
475         rval = convert_force (build_pointer_type (TREE_TYPE (reftype)),
476                               rval, 0);
477       if (rval != error_mark_node)
478         rval = build1 (NOP_EXPR, reftype, rval);
479     }
480   else
481     {
482       rval = convert_for_initialization (NULL_TREE, type, expr, flags,
483                                          ICR_CONVERTING, 0, 0,
484                                          tf_warning_or_error);
485       if (rval == NULL_TREE || rval == error_mark_node)
486         return rval;
487       warn_ref_binding (reftype, intype, decl);
488       rval = build_up_reference (reftype, rval, flags, decl);
489     }
490
491   if (rval)
492     {
493       /* If we found a way to convert earlier, then use it.  */
494       return rval;
495     }
496
497   if (flags & LOOKUP_COMPLAIN)
498     error ("cannot convert type %qT to type %qT", intype, reftype);
499
500   return error_mark_node;
501 }
502
503 /* We are using a reference VAL for its value. Bash that reference all the
504    way down to its lowest form.  */
505
506 tree
507 convert_from_reference (tree val)
508 {
509   if (TREE_TYPE (val)
510       && TREE_CODE (TREE_TYPE (val)) == REFERENCE_TYPE)
511     {
512       tree t = TREE_TYPE (TREE_TYPE (val));
513       tree ref = build1 (INDIRECT_REF, t, val);
514
515       mark_exp_read (val);
516        /* We *must* set TREE_READONLY when dereferencing a pointer to const,
517           so that we get the proper error message if the result is used
518           to assign to.  Also, &* is supposed to be a no-op.  */
519       TREE_READONLY (ref) = CP_TYPE_CONST_P (t);
520       TREE_THIS_VOLATILE (ref) = CP_TYPE_VOLATILE_P (t);
521       TREE_SIDE_EFFECTS (ref)
522         = (TREE_THIS_VOLATILE (ref) || TREE_SIDE_EFFECTS (val));
523       val = ref;
524     }
525
526   return val;
527 }
528
529 /* Really perform an lvalue-to-rvalue conversion, including copying an
530    argument of class type into a temporary.  */
531
532 tree
533 force_rvalue (tree expr, tsubst_flags_t complain)
534 {
535   tree type = TREE_TYPE (expr);
536   if (MAYBE_CLASS_TYPE_P (type) && TREE_CODE (expr) != TARGET_EXPR)
537     {
538       VEC(tree,gc) *args = make_tree_vector_single (expr);
539       expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
540                                         &args, type, LOOKUP_NORMAL, complain);
541       release_tree_vector (args);
542       expr = build_cplus_new (type, expr, complain);
543     }
544   else
545     expr = decay_conversion (expr);
546
547   return expr;
548 }
549
550 \f
551 /* If EXPR and ORIG are INTEGER_CSTs, return a version of EXPR that has
552    TREE_OVERFLOW set only if it is set in ORIG.  Otherwise, return EXPR
553    unchanged.  */
554
555 static tree
556 ignore_overflows (tree expr, tree orig)
557 {
558   if (TREE_CODE (expr) == INTEGER_CST
559       && TREE_CODE (orig) == INTEGER_CST
560       && TREE_OVERFLOW (expr) != TREE_OVERFLOW (orig))
561     {
562       gcc_assert (!TREE_OVERFLOW (orig));
563       /* Ensure constant sharing.  */
564       expr = build_int_cst_wide (TREE_TYPE (expr),
565                                  TREE_INT_CST_LOW (expr),
566                                  TREE_INT_CST_HIGH (expr));
567     }
568   return expr;
569 }
570
571 /* Fold away simple conversions, but make sure TREE_OVERFLOW is set
572    properly.  */
573
574 tree
575 cp_fold_convert (tree type, tree expr)
576 {
577   tree conv = fold_convert (type, expr);
578   conv = ignore_overflows (conv, expr);
579   return conv;
580 }
581
582 /* C++ conversions, preference to static cast conversions.  */
583
584 tree
585 cp_convert (tree type, tree expr)
586 {
587   return ocp_convert (type, expr, CONV_OLD_CONVERT, LOOKUP_NORMAL);
588 }
589
590 /* C++ equivalent of convert_and_check but using cp_convert as the
591    conversion function.
592
593    Convert EXPR to TYPE, warning about conversion problems with constants.
594    Invoke this function on every expression that is converted implicitly,
595    i.e. because of language rules and not because of an explicit cast.  */
596
597 tree
598 cp_convert_and_check (tree type, tree expr)
599 {
600   tree result;
601
602   if (TREE_TYPE (expr) == type)
603     return expr;
604   
605   result = cp_convert (type, expr);
606
607   if (c_inhibit_evaluation_warnings == 0
608       && !TREE_OVERFLOW_P (expr)
609       && result != error_mark_node)
610     warnings_for_convert_and_check (type, expr, result);
611
612   return result;
613 }
614
615 /* Conversion...
616
617    FLAGS indicates how we should behave.  */
618
619 tree
620 ocp_convert (tree type, tree expr, int convtype, int flags)
621 {
622   tree e = expr;
623   enum tree_code code = TREE_CODE (type);
624   const char *invalid_conv_diag;
625   tree e1;
626
627   if (error_operand_p (e) || type == error_mark_node)
628     return error_mark_node;
629
630   complete_type (type);
631   complete_type (TREE_TYPE (expr));
632
633   if ((invalid_conv_diag
634        = targetm.invalid_conversion (TREE_TYPE (expr), type)))
635     {
636       error (invalid_conv_diag);
637       return error_mark_node;
638     }
639
640   /* FIXME remove when moving to c_fully_fold model.  */
641   /* FIXME do we still need this test?  */
642   if (!CLASS_TYPE_P (type))
643     e = integral_constant_value (e);
644   if (error_operand_p (e))
645     return error_mark_node;
646
647   if (MAYBE_CLASS_TYPE_P (type) && (convtype & CONV_FORCE_TEMP))
648     /* We need a new temporary; don't take this shortcut.  */;
649   else if (same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (e)))
650     {
651       if (same_type_p (type, TREE_TYPE (e)))
652         /* The call to fold will not always remove the NOP_EXPR as
653            might be expected, since if one of the types is a typedef;
654            the comparison in fold is just equality of pointers, not a
655            call to comptypes.  We don't call fold in this case because
656            that can result in infinite recursion; fold will call
657            convert, which will call ocp_convert, etc.  */
658         return e;
659       /* For complex data types, we need to perform componentwise
660          conversion.  */
661       else if (TREE_CODE (type) == COMPLEX_TYPE)
662         return fold_if_not_in_template (convert_to_complex (type, e));
663       else if (TREE_CODE (e) == TARGET_EXPR)
664         {
665           /* Don't build a NOP_EXPR of class type.  Instead, change the
666              type of the temporary.  */
667           TREE_TYPE (e) = TREE_TYPE (TARGET_EXPR_SLOT (e)) = type;
668           return e;
669         }
670       else
671         {
672           /* We shouldn't be treating objects of ADDRESSABLE type as
673              rvalues.  */
674           gcc_assert (!TREE_ADDRESSABLE (type));
675           return fold_if_not_in_template (build_nop (type, e));
676         }
677     }
678
679   e1 = targetm.convert_to_type (type, e);
680   if (e1)
681     return e1;
682
683   if (code == VOID_TYPE && (convtype & CONV_STATIC))
684     {
685       e = convert_to_void (e, ICV_CAST, tf_warning_or_error);
686       return e;
687     }
688
689   if (INTEGRAL_CODE_P (code))
690     {
691       tree intype = TREE_TYPE (e);
692       tree converted;
693
694       if (TREE_CODE (type) == ENUMERAL_TYPE)
695         {
696           /* enum = enum, enum = int, enum = float, (enum)pointer are all
697              errors.  */
698           if (((INTEGRAL_OR_ENUMERATION_TYPE_P (intype)
699                 || TREE_CODE (intype) == REAL_TYPE)
700                && ! (convtype & CONV_STATIC))
701               || TREE_CODE (intype) == POINTER_TYPE)
702             {
703               if (flags & LOOKUP_COMPLAIN)
704                 permerror (input_location, "conversion from %q#T to %q#T", intype, type);
705
706               if (!flag_permissive)
707                 return error_mark_node;
708             }
709
710           /* [expr.static.cast]
711
712              8. A value of integral or enumeration type can be explicitly
713              converted to an enumeration type. The value is unchanged if
714              the original value is within the range of the enumeration
715              values. Otherwise, the resulting enumeration value is
716              unspecified.  */
717           if (TREE_CODE (expr) == INTEGER_CST
718               && !int_fits_type_p (expr, ENUM_UNDERLYING_TYPE (type)))
719             warning (OPT_Wconversion, 
720                      "the result of the conversion is unspecified because "
721                      "%qE is outside the range of type %qT",
722                      expr, type);
723         }
724       if (MAYBE_CLASS_TYPE_P (intype))
725         {
726           tree rval;
727           rval = build_type_conversion (type, e);
728           if (rval)
729             return rval;
730           if (flags & LOOKUP_COMPLAIN)
731             error ("%q#T used where a %qT was expected", intype, type);
732           return error_mark_node;
733         }
734       if (code == BOOLEAN_TYPE)
735         {
736           /* We can't implicitly convert a scoped enum to bool, so convert
737              to the underlying type first.  */
738           if (SCOPED_ENUM_P (intype) && (convtype & CONV_STATIC))
739             e = build_nop (ENUM_UNDERLYING_TYPE (intype), e);
740           return cp_truthvalue_conversion (e);
741         }
742
743       converted = fold_if_not_in_template (convert_to_integer (type, e));
744
745       /* Ignore any integer overflow caused by the conversion.  */
746       return ignore_overflows (converted, e);
747     }
748   if (NULLPTR_TYPE_P (type) && e && null_ptr_cst_p (e))
749     return nullptr_node;
750   if (POINTER_TYPE_P (type) || TYPE_PTR_TO_MEMBER_P (type))
751     return fold_if_not_in_template (cp_convert_to_pointer (type, e));
752   if (code == VECTOR_TYPE)
753     {
754       tree in_vtype = TREE_TYPE (e);
755       if (MAYBE_CLASS_TYPE_P (in_vtype))
756         {
757           tree ret_val;
758           ret_val = build_type_conversion (type, e);
759           if (ret_val)
760             return ret_val;
761           if (flags & LOOKUP_COMPLAIN)
762             error ("%q#T used where a %qT was expected", in_vtype, type);
763           return error_mark_node;
764         }
765       return fold_if_not_in_template (convert_to_vector (type, e));
766     }
767   if (code == REAL_TYPE || code == COMPLEX_TYPE)
768     {
769       if (MAYBE_CLASS_TYPE_P (TREE_TYPE (e)))
770         {
771           tree rval;
772           rval = build_type_conversion (type, e);
773           if (rval)
774             return rval;
775           else
776             if (flags & LOOKUP_COMPLAIN)
777               error ("%q#T used where a floating point value was expected",
778                         TREE_TYPE (e));
779         }
780       if (code == REAL_TYPE)
781         return fold_if_not_in_template (convert_to_real (type, e));
782       else if (code == COMPLEX_TYPE)
783         return fold_if_not_in_template (convert_to_complex (type, e));
784     }
785
786   /* New C++ semantics:  since assignment is now based on
787      memberwise copying,  if the rhs type is derived from the
788      lhs type, then we may still do a conversion.  */
789   if (RECORD_OR_UNION_CODE_P (code))
790     {
791       tree dtype = TREE_TYPE (e);
792       tree ctor = NULL_TREE;
793
794       dtype = TYPE_MAIN_VARIANT (dtype);
795
796       /* Conversion between aggregate types.  New C++ semantics allow
797          objects of derived type to be cast to objects of base type.
798          Old semantics only allowed this between pointers.
799
800          There may be some ambiguity between using a constructor
801          vs. using a type conversion operator when both apply.  */
802
803       ctor = e;
804
805       if (abstract_virtuals_error (NULL_TREE, type))
806         return error_mark_node;
807
808       if (BRACE_ENCLOSED_INITIALIZER_P (ctor))
809         ctor = perform_implicit_conversion (type, ctor, tf_warning_or_error);
810       else if ((flags & LOOKUP_ONLYCONVERTING)
811                && ! (CLASS_TYPE_P (dtype) && DERIVED_FROM_P (type, dtype)))
812         /* For copy-initialization, first we create a temp of the proper type
813            with a user-defined conversion sequence, then we direct-initialize
814            the target with the temp (see [dcl.init]).  */
815         ctor = build_user_type_conversion (type, ctor, flags);
816       else
817         {
818           VEC(tree,gc) *ctor_vec = make_tree_vector_single (ctor);
819           ctor = build_special_member_call (NULL_TREE,
820                                             complete_ctor_identifier,
821                                             &ctor_vec,
822                                             type, flags,
823                                             tf_warning_or_error);
824           release_tree_vector (ctor_vec);
825         }
826       if (ctor)
827         return build_cplus_new (type, ctor, tf_warning_or_error);
828     }
829
830   if (flags & LOOKUP_COMPLAIN)
831     {
832       /* If the conversion failed and expr was an invalid use of pointer to
833          member function, try to report a meaningful error.  */
834       if (invalid_nonstatic_memfn_p (expr, tf_warning_or_error))
835         /* We displayed the error message.  */;
836       else
837         error ("conversion from %qT to non-scalar type %qT requested",
838                TREE_TYPE (expr), type);
839     }
840   return error_mark_node;
841 }
842
843 /* When an expression is used in a void context, its value is discarded and
844    no lvalue-rvalue and similar conversions happen [expr.static.cast/4,
845    stmt.expr/1, expr.comma/1].  This permits dereferencing an incomplete type
846    in a void context. The C++ standard does not define what an `access' to an
847    object is, but there is reason to believe that it is the lvalue to rvalue
848    conversion -- if it were not, `*&*p = 1' would violate [expr]/4 in that it
849    accesses `*p' not to calculate the value to be stored. But, dcl.type.cv/8
850    indicates that volatile semantics should be the same between C and C++
851    where ever possible. C leaves it implementation defined as to what
852    constitutes an access to a volatile. So, we interpret `*vp' as a read of
853    the volatile object `vp' points to, unless that is an incomplete type. For
854    volatile references we do not do this interpretation, because that would
855    make it impossible to ignore the reference return value from functions. We
856    issue warnings in the confusing cases.
857
858    The IMPLICIT is ICV_CAST when the user is explicitly converting an expression
859    to void via a cast. If an expression is being implicitly converted, IMPLICIT
860    indicates the context of the implicit conversion.  */
861
862 tree
863 convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
864 {
865   if (expr == error_mark_node
866       || TREE_TYPE (expr) == error_mark_node)
867     return error_mark_node;
868
869   if (implicit == ICV_CAST)
870     mark_exp_read (expr);
871   else
872     {
873       tree exprv = expr;
874
875       while (TREE_CODE (exprv) == COMPOUND_EXPR)
876         exprv = TREE_OPERAND (exprv, 1);
877       if (DECL_P (exprv)
878           || handled_component_p (exprv)
879           || TREE_CODE (exprv) == INDIRECT_REF)
880         /* Expr is not being 'used' here, otherwise we whould have
881            called mark_{rl}value_use use here, which would have in turn
882            called mark_exp_read.  Rather, we call mark_exp_read directly
883            to avoid some warnings when
884            -Wunused-but-set-{variable,parameter} is in effect.  */
885         mark_exp_read (exprv);
886     }
887
888   if (!TREE_TYPE (expr))
889     return expr;
890   if (invalid_nonstatic_memfn_p (expr, complain))
891     return error_mark_node;
892   if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
893     {
894       if (complain & tf_error)
895         error ("pseudo-destructor is not called");
896       return error_mark_node;
897     }
898   if (VOID_TYPE_P (TREE_TYPE (expr)))
899     return expr;
900   switch (TREE_CODE (expr))
901     {
902     case COND_EXPR:
903       {
904         /* The two parts of a cond expr might be separate lvalues.  */
905         tree op1 = TREE_OPERAND (expr,1);
906         tree op2 = TREE_OPERAND (expr,2);
907         bool side_effects = ((op1 && TREE_SIDE_EFFECTS (op1))
908                              || TREE_SIDE_EFFECTS (op2));
909         tree new_op1, new_op2;
910         new_op1 = NULL_TREE;
911         if (implicit != ICV_CAST && !side_effects)
912           {
913             if (op1)
914               new_op1 = convert_to_void (op1, ICV_SECOND_OF_COND, complain);
915             new_op2 = convert_to_void (op2, ICV_THIRD_OF_COND, complain);
916           }
917         else
918           {
919             if (op1)
920               new_op1 = convert_to_void (op1, ICV_CAST, complain);
921             new_op2 = convert_to_void (op2, ICV_CAST, complain);
922           }
923
924         expr = build3 (COND_EXPR, TREE_TYPE (new_op2),
925                        TREE_OPERAND (expr, 0), new_op1, new_op2);
926         break;
927       }
928
929     case COMPOUND_EXPR:
930       {
931         /* The second part of a compound expr contains the value.  */
932         tree op1 = TREE_OPERAND (expr,1);
933         tree new_op1;
934         if (implicit != ICV_CAST && !TREE_NO_WARNING (expr))
935           new_op1 = convert_to_void (op1, ICV_RIGHT_OF_COMMA, complain);
936         else
937           new_op1 = convert_to_void (op1, ICV_CAST, complain);
938
939         if (new_op1 != op1)
940           {
941             tree t = build2 (COMPOUND_EXPR, TREE_TYPE (new_op1),
942                              TREE_OPERAND (expr, 0), new_op1);
943             expr = t;
944           }
945
946         break;
947       }
948
949     case NON_LVALUE_EXPR:
950     case NOP_EXPR:
951       /* These have already decayed to rvalue.  */
952       break;
953
954     case CALL_EXPR:   /* We have a special meaning for volatile void fn().  */
955       break;
956
957     case INDIRECT_REF:
958       {
959         tree type = TREE_TYPE (expr);
960         int is_reference = TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
961                            == REFERENCE_TYPE;
962         int is_volatile = TYPE_VOLATILE (type);
963         int is_complete = COMPLETE_TYPE_P (complete_type (type));
964
965         /* Can't load the value if we don't know the type.  */
966         if (is_volatile && !is_complete)
967           {
968             if (complain & tf_warning)
969               switch (implicit)
970                 {
971                   case ICV_CAST:
972                     warning (0, "conversion to void will not access "
973                                 "object of incomplete type %qT", type);
974                     break;
975                   case ICV_SECOND_OF_COND:
976                     warning (0, "indirection will not access object of "
977                                 "incomplete type %qT in second operand "
978                                 "of conditional expression", type);
979                     break;
980                   case ICV_THIRD_OF_COND:
981                     warning (0, "indirection will not access object of "
982                                 "incomplete type %qT in third operand "
983                                 "of conditional expression", type);
984                     break;
985                   case ICV_RIGHT_OF_COMMA:
986                     warning (0, "indirection will not access object of "
987                                 "incomplete type %qT in right operand of "
988                                 "comma operator", type);
989                     break;
990                   case ICV_LEFT_OF_COMMA:
991                     warning (0, "indirection will not access object of "
992                                 "incomplete type %qT in left operand of "
993                                 "comma operator", type);
994                     break;
995                   case ICV_STATEMENT:
996                     warning (0, "indirection will not access object of "
997                                 "incomplete type %qT in statement", type);
998                      break;
999                   case ICV_THIRD_IN_FOR:
1000                     warning (0, "indirection will not access object of "
1001                                 "incomplete type %qT in for increment "
1002                                 "expression", type);
1003                     break;
1004                   default:
1005                     gcc_unreachable ();
1006                 }
1007           }
1008         /* Don't load the value if this is an implicit dereference, or if
1009            the type needs to be handled by ctors/dtors.  */
1010         else if (is_volatile && is_reference)
1011           {
1012             if (complain & tf_warning)
1013               switch (implicit)
1014                 {
1015                   case ICV_CAST:
1016                     warning (0, "conversion to void will not access "
1017                                 "object of type %qT", type);
1018                     break;
1019                   case ICV_SECOND_OF_COND:
1020                     warning (0, "implicit dereference will not access object "
1021                                 "of type %qT in second operand of "
1022                                 "conditional expression", type);
1023                     break;
1024                   case ICV_THIRD_OF_COND:
1025                     warning (0, "implicit dereference will not access object "
1026                                 "of type %qT in third operand of "
1027                                 "conditional expression", type);
1028                     break;
1029                   case ICV_RIGHT_OF_COMMA:
1030                     warning (0, "implicit dereference will not access object "
1031                                 "of type %qT in right operand of "
1032                                 "comma operator", type);
1033                     break;
1034                   case ICV_LEFT_OF_COMMA:
1035                     warning (0, "implicit dereference will not access object "
1036                                 "of type %qT in left operand of comma operator",
1037                              type);
1038                     break;
1039                   case ICV_STATEMENT:
1040                     warning (0, "implicit dereference will not access object "
1041                                 "of type %qT in statement",  type);
1042                      break;
1043                   case ICV_THIRD_IN_FOR:
1044                     warning (0, "implicit dereference will not access object "
1045                                 "of type %qT in for increment expression",
1046                              type);
1047                     break;
1048                   default:
1049                     gcc_unreachable ();
1050                 }
1051           }
1052         else if (is_volatile && TREE_ADDRESSABLE (type))
1053           {
1054             if (complain & tf_warning)
1055               switch (implicit)
1056                 {
1057                   case ICV_CAST:
1058                     warning (0, "conversion to void will not access "
1059                                 "object of non-trivially-copyable type %qT",
1060                              type);
1061                     break;
1062                   case ICV_SECOND_OF_COND:
1063                     warning (0, "indirection will not access object of "
1064                                 "non-trivially-copyable type %qT in second "
1065                                 "operand of conditional expression", type);
1066                     break;
1067                   case ICV_THIRD_OF_COND:
1068                     warning (0, "indirection will not access object of "
1069                                 "non-trivially-copyable type %qT in third "
1070                                 "operand of conditional expression", type);
1071                     break;
1072                   case ICV_RIGHT_OF_COMMA:
1073                     warning (0, "indirection will not access object of "
1074                                 "non-trivially-copyable type %qT in right "
1075                                 "operand of comma operator", type);
1076                     break;
1077                   case ICV_LEFT_OF_COMMA:
1078                     warning (0, "indirection will not access object of "
1079                                 "non-trivially-copyable type %qT in left "
1080                                 "operand of comma operator", type);
1081                     break;
1082                   case ICV_STATEMENT:
1083                     warning (0, "indirection will not access object of "
1084                                 "non-trivially-copyable type %qT in statement",
1085                               type);
1086                      break;
1087                   case ICV_THIRD_IN_FOR:
1088                     warning (0, "indirection will not access object of "
1089                                 "non-trivially-copyable type %qT in for "
1090                                 "increment expression", type);
1091                     break;
1092                   default:
1093                     gcc_unreachable ();
1094                 }
1095           }
1096         if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type))
1097           {
1098             /* Emit a warning (if enabled) when the "effect-less" INDIRECT_REF
1099                operation is stripped off. Note that we don't warn about
1100                - an expression with TREE_NO_WARNING set. (For an example of
1101                  such expressions, see build_over_call in call.c.)
1102                - automatic dereferencing of references, since the user cannot
1103                  control it. (See also warn_if_unused_value() in stmt.c.)  */
1104             if (warn_unused_value
1105                 && implicit != ICV_CAST
1106                 && (complain & tf_warning)
1107                 && !TREE_NO_WARNING (expr)
1108                 && !is_reference)
1109               warning (OPT_Wunused_value, "value computed is not used");
1110             expr = TREE_OPERAND (expr, 0);
1111           }
1112
1113         break;
1114       }
1115
1116     case VAR_DECL:
1117       {
1118         /* External variables might be incomplete.  */
1119         tree type = TREE_TYPE (expr);
1120         int is_complete = COMPLETE_TYPE_P (complete_type (type));
1121
1122         if (TYPE_VOLATILE (type) && !is_complete && (complain & tf_warning))
1123           switch (implicit)
1124             {
1125               case ICV_CAST:
1126                 warning (0, "conversion to void will not access "
1127                             "object %qE of incomplete type %qT", expr, type);
1128                 break;
1129               case ICV_SECOND_OF_COND:
1130                 warning (0, "variable %qE of incomplete type %qT will not "
1131                             "be accessed in second operand of "
1132                             "conditional expression", expr, type);
1133                 break;
1134               case ICV_THIRD_OF_COND:
1135                 warning (0, "variable %qE of incomplete type %qT will not "
1136                             "be accessed in third operand of "
1137                             "conditional expression", expr, type);
1138                 break;
1139               case ICV_RIGHT_OF_COMMA:
1140                 warning (0, "variable %qE of incomplete type %qT will not "
1141                             "be accessed in right operand of comma operator",
1142                          expr, type);
1143                 break;
1144               case ICV_LEFT_OF_COMMA:
1145                 warning (0, "variable %qE of incomplete type %qT will not "
1146                             "be accessed in left operand of comma operator",
1147                          expr, type);
1148                 break;
1149               case ICV_STATEMENT:
1150                 warning (0, "variable %qE of incomplete type %qT will not "
1151                             "be accessed in statement", expr, type);
1152                 break;
1153               case ICV_THIRD_IN_FOR:
1154                 warning (0, "variable %qE of incomplete type %qT will not "
1155                             "be accessed in for increment expression",
1156                          expr, type);
1157                 break;
1158               default:
1159                 gcc_unreachable ();
1160             }
1161
1162         break;
1163       }
1164
1165     case TARGET_EXPR:
1166       /* Don't bother with the temporary object returned from a function if
1167          we don't use it and don't need to destroy it.  We'll still
1168          allocate space for it in expand_call or declare_return_variable,
1169          but we don't need to track it through all the tree phases.  */
1170       if (TARGET_EXPR_IMPLICIT_P (expr)
1171           && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (expr)))
1172         {
1173           tree init = TARGET_EXPR_INITIAL (expr);
1174           if (TREE_CODE (init) == AGGR_INIT_EXPR
1175               && !AGGR_INIT_VIA_CTOR_P (init))
1176             {
1177               tree fn = AGGR_INIT_EXPR_FN (init);
1178               expr = build_call_array_loc (input_location,
1179                                            TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
1180                                            fn,
1181                                            aggr_init_expr_nargs (init),
1182                                            AGGR_INIT_EXPR_ARGP (init));
1183             }
1184         }
1185       break;
1186
1187     default:;
1188     }
1189   expr = resolve_nondeduced_context (expr);
1190   {
1191     tree probe = expr;
1192
1193     if (TREE_CODE (probe) == ADDR_EXPR)
1194       probe = TREE_OPERAND (expr, 0);
1195     if (type_unknown_p (probe))
1196       {
1197         /* [over.over] enumerates the places where we can take the address
1198            of an overloaded function, and this is not one of them.  */
1199         if (complain & tf_error)
1200           switch (implicit)
1201             {
1202               case ICV_CAST:
1203                 error ("conversion to void "
1204                        "cannot resolve address of overloaded function");
1205                 break;
1206               case ICV_SECOND_OF_COND:
1207                 error ("second operand of conditional expression "
1208                        "cannot resolve address of overloaded function");
1209                 break;
1210               case ICV_THIRD_OF_COND:
1211                 error ("third operand of conditional expression "
1212                        "cannot resolve address of overloaded function");
1213                 break;
1214               case ICV_RIGHT_OF_COMMA:
1215                 error ("right operand of comma operator "
1216                        "cannot resolve address of overloaded function");
1217                 break;
1218               case ICV_LEFT_OF_COMMA:
1219                 error ("left operand of comma operator "
1220                        "cannot resolve address of overloaded function");
1221                 break;
1222               case ICV_STATEMENT:
1223                 error ("statement "
1224                        "cannot resolve address of overloaded function");
1225                 break;
1226               case ICV_THIRD_IN_FOR:
1227                 error ("for increment expression "
1228                        "cannot resolve address of overloaded function");
1229                 break;
1230             }
1231         else
1232           return error_mark_node;
1233         expr = void_zero_node;
1234       }
1235     else if (implicit != ICV_CAST && probe == expr && is_overloaded_fn (probe))
1236       {
1237         /* Only warn when there is no &.  */
1238         if (complain & tf_warning)
1239           switch (implicit)
1240             {
1241               case ICV_SECOND_OF_COND:
1242                 warning (OPT_Waddress,
1243                          "second operand of conditional expression "
1244                          "is a reference, not call, to function %qE", expr);
1245                 break;
1246               case ICV_THIRD_OF_COND:
1247                 warning (OPT_Waddress,
1248                          "third operand of conditional expression "
1249                          "is a reference, not call, to function %qE", expr);
1250                 break;
1251               case ICV_RIGHT_OF_COMMA:
1252                 warning (OPT_Waddress,
1253                          "right operand of comma operator "
1254                          "is a reference, not call, to function %qE", expr);
1255                 break;
1256               case ICV_LEFT_OF_COMMA:
1257                 warning (OPT_Waddress,
1258                          "left operand of comma operator "
1259                          "is a reference, not call, to function %qE", expr);
1260                 break;
1261               case ICV_STATEMENT:
1262                 warning (OPT_Waddress,
1263                          "statement is a reference, not call, to function %qE",
1264                          expr);
1265                 break;
1266               case ICV_THIRD_IN_FOR:
1267                 warning (OPT_Waddress,
1268                          "for increment expression "
1269                          "is a reference, not call, to function %qE", expr);
1270                 break;
1271               default:
1272                 gcc_unreachable ();
1273             }
1274
1275         if (TREE_CODE (expr) == COMPONENT_REF)
1276           expr = TREE_OPERAND (expr, 0);
1277       }
1278   }
1279
1280   if (expr != error_mark_node && !VOID_TYPE_P (TREE_TYPE (expr)))
1281     {
1282       if (implicit != ICV_CAST
1283           && warn_unused_value
1284           && !TREE_NO_WARNING (expr)
1285           && !processing_template_decl)
1286         {
1287           /* The middle end does not warn about expressions that have
1288              been explicitly cast to void, so we must do so here.  */
1289           if (!TREE_SIDE_EFFECTS (expr)) {
1290             if (complain & tf_warning)
1291               switch (implicit)
1292                 {
1293                   case ICV_SECOND_OF_COND:
1294                     warning (OPT_Wunused_value,
1295                              "second operand of conditional expression has no effect");
1296                     break;
1297                   case ICV_THIRD_OF_COND:
1298                     warning (OPT_Wunused_value,
1299                              "third operand of conditional expression has no effect");
1300                     break;
1301                   case ICV_RIGHT_OF_COMMA:
1302                     warning (OPT_Wunused_value,
1303                              "right operand of comma operator has no effect");
1304                     break;
1305                   case ICV_LEFT_OF_COMMA:
1306                     warning (OPT_Wunused_value,
1307                              "left operand of comma operator has no effect");
1308                     break;
1309                   case ICV_STATEMENT:
1310                     warning (OPT_Wunused_value,
1311                              "statement has no effect");
1312                     break;
1313                   case ICV_THIRD_IN_FOR:
1314                     warning (OPT_Wunused_value,
1315                              "for increment expression has no effect");
1316                     break;
1317                   default:
1318                     gcc_unreachable ();
1319                 }
1320           }
1321           else
1322             {
1323               tree e;
1324               enum tree_code code;
1325               enum tree_code_class tclass;
1326
1327               e = expr;
1328               /* We might like to warn about (say) "(int) f()", as the
1329                  cast has no effect, but the compiler itself will
1330                  generate implicit conversions under some
1331                  circumstances.  (For example a block copy will be
1332                  turned into a call to "__builtin_memcpy", with a
1333                  conversion of the return value to an appropriate
1334                  type.)  So, to avoid false positives, we strip
1335                  conversions.  Do not use STRIP_NOPs because it will
1336                  not strip conversions to "void", as that is not a
1337                  mode-preserving conversion.  */
1338               while (TREE_CODE (e) == NOP_EXPR)
1339                 e = TREE_OPERAND (e, 0);
1340
1341               code = TREE_CODE (e);
1342               tclass = TREE_CODE_CLASS (code);
1343               if ((tclass == tcc_comparison
1344                    || tclass == tcc_unary
1345                    || (tclass == tcc_binary
1346                        && !(code == MODIFY_EXPR
1347                             || code == INIT_EXPR
1348                             || code == PREDECREMENT_EXPR
1349                             || code == PREINCREMENT_EXPR
1350                             || code == POSTDECREMENT_EXPR
1351                             || code == POSTINCREMENT_EXPR)))
1352                   && (complain & tf_warning))
1353                 warning (OPT_Wunused_value, "value computed is not used");
1354             }
1355         }
1356       expr = build1 (CONVERT_EXPR, void_type_node, expr);
1357     }
1358   if (! TREE_SIDE_EFFECTS (expr))
1359     expr = void_zero_node;
1360   return expr;
1361 }
1362
1363 /* Create an expression whose value is that of EXPR,
1364    converted to type TYPE.  The TREE_TYPE of the value
1365    is always TYPE.  This function implements all reasonable
1366    conversions; callers should filter out those that are
1367    not permitted by the language being compiled.
1368
1369    Most of this routine is from build_reinterpret_cast.
1370
1371    The back end cannot call cp_convert (what was convert) because
1372    conversions to/from basetypes may involve memory references
1373    (vbases) and adding or subtracting small values (multiple
1374    inheritance), but it calls convert from the constant folding code
1375    on subtrees of already built trees after it has ripped them apart.
1376
1377    Also, if we ever support range variables, we'll probably also have to
1378    do a little bit more work.  */
1379
1380 tree
1381 convert (tree type, tree expr)
1382 {
1383   tree intype;
1384
1385   if (type == error_mark_node || expr == error_mark_node)
1386     return error_mark_node;
1387
1388   intype = TREE_TYPE (expr);
1389
1390   if (POINTER_TYPE_P (type) && POINTER_TYPE_P (intype))
1391     return fold_if_not_in_template (build_nop (type, expr));
1392
1393   return ocp_convert (type, expr, CONV_OLD_CONVERT,
1394                       LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
1395 }
1396
1397 /* Like cp_convert, except permit conversions to take place which
1398    are not normally allowed due to access restrictions
1399    (such as conversion from sub-type to private super-type).  */
1400
1401 tree
1402 convert_force (tree type, tree expr, int convtype)
1403 {
1404   tree e = expr;
1405   enum tree_code code = TREE_CODE (type);
1406
1407   if (code == REFERENCE_TYPE)
1408     return (fold_if_not_in_template
1409             (convert_to_reference (type, e, CONV_C_CAST, LOOKUP_COMPLAIN,
1410                                    NULL_TREE)));
1411
1412   if (code == POINTER_TYPE)
1413     return fold_if_not_in_template (convert_to_pointer_force (type, e));
1414
1415   /* From typeck.c convert_for_assignment */
1416   if (((TREE_CODE (TREE_TYPE (e)) == POINTER_TYPE && TREE_CODE (e) == ADDR_EXPR
1417         && TREE_CODE (TREE_TYPE (e)) == POINTER_TYPE
1418         && TREE_CODE (TREE_TYPE (TREE_TYPE (e))) == METHOD_TYPE)
1419        || integer_zerop (e)
1420        || TYPE_PTRMEMFUNC_P (TREE_TYPE (e)))
1421       && TYPE_PTRMEMFUNC_P (type))
1422     /* compatible pointer to member functions.  */
1423     return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), e, 1,
1424                              /*c_cast_p=*/1, tf_warning_or_error);
1425
1426   return ocp_convert (type, e, CONV_C_CAST|convtype, LOOKUP_NORMAL);
1427 }
1428
1429 /* Convert an aggregate EXPR to type XTYPE.  If a conversion
1430    exists, return the attempted conversion.  This may
1431    return ERROR_MARK_NODE if the conversion is not
1432    allowed (references private members, etc).
1433    If no conversion exists, NULL_TREE is returned.
1434
1435    FIXME: Ambiguity checking is wrong.  Should choose one by the implicit
1436    object parameter, or by the second standard conversion sequence if
1437    that doesn't do it.  This will probably wait for an overloading rewrite.
1438    (jason 8/9/95)  */
1439
1440 static tree
1441 build_type_conversion (tree xtype, tree expr)
1442 {
1443   /* C++: check to see if we can convert this aggregate type
1444      into the required type.  */
1445   return build_user_type_conversion (xtype, expr, LOOKUP_NORMAL);
1446 }
1447
1448 /* Convert the given EXPR to one of a group of types suitable for use in an
1449    expression.  DESIRES is a combination of various WANT_* flags (q.v.)
1450    which indicates which types are suitable.  If COMPLAIN is true, complain
1451    about ambiguity; otherwise, the caller will deal with it.  */
1452
1453 tree
1454 build_expr_type_conversion (int desires, tree expr, bool complain)
1455 {
1456   tree basetype = TREE_TYPE (expr);
1457   tree conv = NULL_TREE;
1458   tree winner = NULL_TREE;
1459
1460   if (expr == null_node
1461       && (desires & WANT_INT)
1462       && !(desires & WANT_NULL))
1463     warning_at (input_location, OPT_Wconversion_null,
1464                 "converting NULL to non-pointer type");
1465
1466   basetype = TREE_TYPE (expr);
1467
1468   if (basetype == error_mark_node)
1469     return error_mark_node;
1470
1471   if (! MAYBE_CLASS_TYPE_P (basetype))
1472     switch (TREE_CODE (basetype))
1473       {
1474       case INTEGER_TYPE:
1475         if ((desires & WANT_NULL) && null_ptr_cst_p (expr))
1476           return expr;
1477         /* else fall through...  */
1478
1479       case BOOLEAN_TYPE:
1480         return (desires & WANT_INT) ? expr : NULL_TREE;
1481       case ENUMERAL_TYPE:
1482         return (desires & WANT_ENUM) ? expr : NULL_TREE;
1483       case REAL_TYPE:
1484         return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1485       case POINTER_TYPE:
1486         return (desires & WANT_POINTER) ? expr : NULL_TREE;
1487
1488       case FUNCTION_TYPE:
1489       case ARRAY_TYPE:
1490         return (desires & WANT_POINTER) ? decay_conversion (expr)
1491                                         : NULL_TREE;
1492
1493       case COMPLEX_TYPE:
1494       case VECTOR_TYPE:
1495         if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1496           return NULL_TREE;
1497         switch (TREE_CODE (TREE_TYPE (basetype)))
1498           {
1499           case INTEGER_TYPE:
1500           case BOOLEAN_TYPE:
1501             return (desires & WANT_INT) ? expr : NULL_TREE;
1502           case ENUMERAL_TYPE:
1503             return (desires & WANT_ENUM) ? expr : NULL_TREE;
1504           case REAL_TYPE:
1505             return (desires & WANT_FLOAT) ? expr : NULL_TREE;
1506           default:
1507             return NULL_TREE;
1508           }
1509
1510       default:
1511         return NULL_TREE;
1512       }
1513
1514   /* The code for conversions from class type is currently only used for
1515      delete expressions.  Other expressions are handled by build_new_op.  */
1516   if (!complete_type_or_maybe_complain (basetype, expr, complain))
1517     return error_mark_node;
1518   if (!TYPE_HAS_CONVERSION (basetype))
1519     return NULL_TREE;
1520
1521   for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv))
1522     {
1523       int win = 0;
1524       tree candidate;
1525       tree cand = TREE_VALUE (conv);
1526       cand = OVL_CURRENT (cand);
1527
1528       if (winner && winner == cand)
1529         continue;
1530
1531       if (DECL_NONCONVERTING_P (cand))
1532         continue;
1533
1534       candidate = non_reference (TREE_TYPE (TREE_TYPE (cand)));
1535
1536       switch (TREE_CODE (candidate))
1537         {
1538         case BOOLEAN_TYPE:
1539         case INTEGER_TYPE:
1540           win = (desires & WANT_INT); break;
1541         case ENUMERAL_TYPE:
1542           win = (desires & WANT_ENUM); break;
1543         case REAL_TYPE:
1544           win = (desires & WANT_FLOAT); break;
1545         case POINTER_TYPE:
1546           win = (desires & WANT_POINTER); break;
1547
1548         case COMPLEX_TYPE:
1549         case VECTOR_TYPE:
1550           if ((desires & WANT_VECTOR_OR_COMPLEX) == 0)
1551             break;
1552           switch (TREE_CODE (TREE_TYPE (candidate)))
1553             {
1554             case BOOLEAN_TYPE:
1555             case INTEGER_TYPE:
1556               win = (desires & WANT_INT); break;
1557             case ENUMERAL_TYPE:
1558               win = (desires & WANT_ENUM); break;
1559             case REAL_TYPE:
1560               win = (desires & WANT_FLOAT); break;
1561             default:
1562               break;
1563             }
1564           break;
1565
1566         default:
1567           break;
1568         }
1569
1570       if (win)
1571         {
1572           if (winner)
1573             {
1574               if (complain)
1575                 {
1576                   error ("ambiguous default type conversion from %qT",
1577                          basetype);
1578                   error ("  candidate conversions include %qD and %qD",
1579                          winner, cand);
1580                 }
1581               return error_mark_node;
1582             }
1583           else
1584             winner = cand;
1585         }
1586     }
1587
1588   if (winner)
1589     {
1590       tree type = non_reference (TREE_TYPE (TREE_TYPE (winner)));
1591       return build_user_type_conversion (type, expr, LOOKUP_NORMAL);
1592     }
1593
1594   return NULL_TREE;
1595 }
1596
1597 /* Implements integral promotion (4.1) and float->double promotion.  */
1598
1599 tree
1600 type_promotes_to (tree type)
1601 {
1602   tree promoted_type;
1603
1604   if (type == error_mark_node)
1605     return error_mark_node;
1606
1607   type = TYPE_MAIN_VARIANT (type);
1608
1609   /* Check for promotions of target-defined types first.  */
1610   promoted_type = targetm.promoted_type (type);
1611   if (promoted_type)
1612     return promoted_type;
1613
1614   /* bool always promotes to int (not unsigned), even if it's the same
1615      size.  */
1616   if (TREE_CODE (type) == BOOLEAN_TYPE)
1617     type = integer_type_node;
1618
1619   /* Scoped enums don't promote, but pretend they do for backward ABI bug
1620      compatibility wrt varargs.  */
1621   else if (SCOPED_ENUM_P (type) && abi_version_at_least (6))
1622     ;
1623
1624   /* Normally convert enums to int, but convert wide enums to something
1625      wider.  */
1626   else if (TREE_CODE (type) == ENUMERAL_TYPE
1627            || type == char16_type_node
1628            || type == char32_type_node
1629            || type == wchar_type_node)
1630     {
1631       int precision = MAX (TYPE_PRECISION (type),
1632                            TYPE_PRECISION (integer_type_node));
1633       tree totype = c_common_type_for_size (precision, 0);
1634       if (SCOPED_ENUM_P (type))
1635         warning (OPT_Wabi, "scoped enum %qT will not promote to an integral "
1636                  "type in a future version of GCC", type);
1637       if (TREE_CODE (type) == ENUMERAL_TYPE)
1638         type = ENUM_UNDERLYING_TYPE (type);
1639       if (TYPE_UNSIGNED (type)
1640           && ! int_fits_type_p (TYPE_MAX_VALUE (type), totype))
1641         type = c_common_type_for_size (precision, 1);
1642       else
1643         type = totype;
1644     }
1645   else if (c_promoting_integer_type_p (type))
1646     {
1647       /* Retain unsignedness if really not getting bigger.  */
1648       if (TYPE_UNSIGNED (type)
1649           && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1650         type = unsigned_type_node;
1651       else
1652         type = integer_type_node;
1653     }
1654   else if (type == float_type_node)
1655     type = double_type_node;
1656
1657   return type;
1658 }
1659
1660 /* The routines below this point are carefully written to conform to
1661    the standard.  They use the same terminology, and follow the rules
1662    closely.  Although they are used only in pt.c at the moment, they
1663    should presumably be used everywhere in the future.  */
1664
1665 /* Attempt to perform qualification conversions on EXPR to convert it
1666    to TYPE.  Return the resulting expression, or error_mark_node if
1667    the conversion was impossible.  */
1668
1669 tree
1670 perform_qualification_conversions (tree type, tree expr)
1671 {
1672   tree expr_type;
1673
1674   expr_type = TREE_TYPE (expr);
1675
1676   if (same_type_p (type, expr_type))
1677     return expr;
1678   else if (TYPE_PTR_P (type) && TYPE_PTR_P (expr_type)
1679            && comp_ptr_ttypes (TREE_TYPE (type), TREE_TYPE (expr_type)))
1680     return build_nop (type, expr);
1681   else if (TYPE_PTR_TO_MEMBER_P (type)
1682            && TYPE_PTR_TO_MEMBER_P (expr_type)
1683            && same_type_p (TYPE_PTRMEM_CLASS_TYPE (type),
1684                            TYPE_PTRMEM_CLASS_TYPE (expr_type))
1685            && comp_ptr_ttypes (TYPE_PTRMEM_POINTED_TO_TYPE (type),
1686                                TYPE_PTRMEM_POINTED_TO_TYPE (expr_type)))
1687     return build_nop (type, expr);
1688   else
1689     return error_mark_node;
1690 }