OSDN Git Service

2008-08-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / cp / typeck2.c
1 /* Report error messages, build initializers, and perform
2    some front-end optimizations for C++ compiler.
3    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4    1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008
5    Free Software Foundation, Inc.
6    Hacked by Michael Tiemann (tiemann@cygnus.com)
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
14
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3.  If not see
22 <http://www.gnu.org/licenses/>.  */
23
24
25 /* This file is part of the C++ front end.
26    It contains routines to build C++ expressions given their operands,
27    including computing the types of the result, C and C++ specific error
28    checks, and some optimization.  */
29
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "tree.h"
35 #include "cp-tree.h"
36 #include "flags.h"
37 #include "toplev.h"
38 #include "output.h"
39 #include "diagnostic.h"
40 #include "real.h"
41
42 static tree
43 process_init_constructor (tree type, tree init);
44
45
46 /* Print an error message stemming from an attempt to use
47    BASETYPE as a base class for TYPE.  */
48
49 tree
50 error_not_base_type (tree basetype, tree type)
51 {
52   if (TREE_CODE (basetype) == FUNCTION_DECL)
53     basetype = DECL_CONTEXT (basetype);
54   error ("type %qT is not a base type for type %qT", basetype, type);
55   return error_mark_node;
56 }
57
58 tree
59 binfo_or_else (tree base, tree type)
60 {
61   tree binfo = lookup_base (type, base, ba_unique, NULL);
62
63   if (binfo == error_mark_node)
64     return NULL_TREE;
65   else if (!binfo)
66     error_not_base_type (base, type);
67   return binfo;
68 }
69
70 /* According to ARM $7.1.6, "A `const' object may be initialized, but its
71    value may not be changed thereafter.  */
72
73 void
74 readonly_error (tree arg, const char* string)
75 {
76   const char *fmt;
77
78   if (TREE_CODE (arg) == COMPONENT_REF)
79     {
80       if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
81         fmt = "%s of data-member %qD in read-only structure";
82       else
83         fmt = "%s of read-only data-member %qD";
84       error (fmt, string, TREE_OPERAND (arg, 1));
85     }
86   else if (TREE_CODE (arg) == VAR_DECL)
87     {
88       if (DECL_LANG_SPECIFIC (arg)
89           && DECL_IN_AGGR_P (arg)
90           && !TREE_STATIC (arg))
91         fmt = "%s of constant field %qD";
92       else
93         fmt = "%s of read-only variable %qD";
94       error (fmt, string, arg);
95     }
96   else if (TREE_CODE (arg) == PARM_DECL)
97     error ("%s of read-only parameter %qD", string, arg);
98   else if (TREE_CODE (arg) == INDIRECT_REF
99            && TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))) == REFERENCE_TYPE
100            && (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL
101                || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))
102     error ("%s of read-only reference %qD", string, TREE_OPERAND (arg, 0));
103   else if (TREE_CODE (arg) == RESULT_DECL)
104     error ("%s of read-only named return value %qD", string, arg);
105   else if (TREE_CODE (arg) == FUNCTION_DECL)
106     error ("%s of function %qD", string, arg);
107   else
108     error ("%s of read-only location %qE", string, arg);
109 }
110
111 \f
112 /* Structure that holds information about declarations whose type was
113    incomplete and we could not check whether it was abstract or not.  */
114
115 struct pending_abstract_type GTY((chain_next ("%h.next")))
116 {
117   /* Declaration which we are checking for abstractness. It is either
118      a DECL node, or an IDENTIFIER_NODE if we do not have a full
119      declaration available.  */
120   tree decl;
121
122   /* Type which will be checked for abstractness.  */
123   tree type;
124
125   /* Position of the declaration. This is only needed for IDENTIFIER_NODEs,
126      because DECLs already carry locus information.  */
127   location_t locus;
128
129   /* Link to the next element in list.  */
130   struct pending_abstract_type* next;
131 };
132
133
134 /* Compute the hash value of the node VAL. This function is used by the
135    hash table abstract_pending_vars.  */
136
137 static hashval_t
138 pat_calc_hash (const void* val)
139 {
140   const struct pending_abstract_type *pat =
141      (const struct pending_abstract_type *) val;
142   return (hashval_t) TYPE_UID (pat->type);
143 }
144
145
146 /* Compare node VAL1 with the type VAL2. This function is used by the
147    hash table abstract_pending_vars.  */
148
149 static int
150 pat_compare (const void* val1, const void* val2)
151 {
152   const struct pending_abstract_type *const pat1 =
153      (const struct pending_abstract_type *) val1;
154   const_tree const type2 = (const_tree)val2;
155
156   return (pat1->type == type2);
157 }
158
159 /* Hash table that maintains pending_abstract_type nodes, for which we still
160    need to check for type abstractness.  The key of the table is the type
161    of the declaration.  */
162 static GTY ((param_is (struct pending_abstract_type)))
163 htab_t abstract_pending_vars = NULL;
164
165
166 /* This function is called after TYPE is completed, and will check if there
167    are pending declarations for which we still need to verify the abstractness
168    of TYPE, and emit a diagnostic (through abstract_virtuals_error) if TYPE
169    turned out to be incomplete.  */
170
171 void
172 complete_type_check_abstract (tree type)
173 {
174   void **slot;
175   struct pending_abstract_type *pat;
176   location_t cur_loc = input_location;
177
178   gcc_assert (COMPLETE_TYPE_P (type));
179
180   if (!abstract_pending_vars)
181     return;
182
183   /* Retrieve the list of pending declarations for this type.  */
184   slot = htab_find_slot_with_hash (abstract_pending_vars, type,
185                                    (hashval_t)TYPE_UID (type), NO_INSERT);
186   if (!slot)
187     return;
188   pat = (struct pending_abstract_type*)*slot;
189   gcc_assert (pat);
190
191   /* If the type is not abstract, do not do anything.  */
192   if (CLASSTYPE_PURE_VIRTUALS (type))
193     {
194       struct pending_abstract_type *prev = 0, *next;
195
196       /* Reverse the list to emit the errors in top-down order.  */
197       for (; pat; pat = next)
198         {
199           next = pat->next;
200           pat->next = prev;
201           prev = pat;
202         }
203       pat = prev;
204
205       /* Go through the list, and call abstract_virtuals_error for each
206         element: it will issue a diagnostic if the type is abstract.  */
207       while (pat)
208         {
209           gcc_assert (type == pat->type);
210
211           /* Tweak input_location so that the diagnostic appears at the correct
212             location. Notice that this is only needed if the decl is an
213             IDENTIFIER_NODE.  */
214           input_location = pat->locus;
215           abstract_virtuals_error (pat->decl, pat->type);
216           pat = pat->next;
217         }
218     }
219
220   htab_clear_slot (abstract_pending_vars, slot);
221
222   input_location = cur_loc;
223 }
224
225
226 /* If TYPE has abstract virtual functions, issue an error about trying
227    to create an object of that type.  DECL is the object declared, or
228    NULL_TREE if the declaration is unavailable.  Returns 1 if an error
229    occurred; zero if all was well.  */
230
231 int
232 abstract_virtuals_error (tree decl, tree type)
233 {
234   VEC(tree,gc) *pure;
235
236   /* This function applies only to classes. Any other entity can never
237      be abstract.  */
238   if (!CLASS_TYPE_P (type))
239     return 0;
240
241   /* If the type is incomplete, we register it within a hash table,
242      so that we can check again once it is completed. This makes sense
243      only for objects for which we have a declaration or at least a
244      name.  */
245   if (!COMPLETE_TYPE_P (type))
246     {
247       void **slot;
248       struct pending_abstract_type *pat;
249
250       gcc_assert (!decl || DECL_P (decl)
251                   || TREE_CODE (decl) == IDENTIFIER_NODE);
252
253       if (!abstract_pending_vars)
254         abstract_pending_vars = htab_create_ggc (31, &pat_calc_hash,
255                                                 &pat_compare, NULL);
256
257       slot = htab_find_slot_with_hash (abstract_pending_vars, type,
258                                       (hashval_t)TYPE_UID (type), INSERT);
259
260       pat = GGC_NEW (struct pending_abstract_type);
261       pat->type = type;
262       pat->decl = decl;
263       pat->locus = ((decl && DECL_P (decl))
264                     ? DECL_SOURCE_LOCATION (decl)
265                     : input_location);
266
267       pat->next = (struct pending_abstract_type *) *slot;
268       *slot = pat;
269
270       return 0;
271     }
272
273   if (!TYPE_SIZE (type))
274     /* TYPE is being defined, and during that time
275        CLASSTYPE_PURE_VIRTUALS holds the inline friends.  */
276     return 0;
277
278   pure = CLASSTYPE_PURE_VIRTUALS (type);
279   if (!pure)
280     return 0;
281
282   if (decl)
283     {
284       if (TREE_CODE (decl) == RESULT_DECL)
285         return 0;
286
287       if (TREE_CODE (decl) == VAR_DECL)
288         error ("cannot declare variable %q+D to be of abstract "
289                "type %qT", decl, type);
290       else if (TREE_CODE (decl) == PARM_DECL)
291         error ("cannot declare parameter %q+D to be of abstract type %qT",
292                decl, type);
293       else if (TREE_CODE (decl) == FIELD_DECL)
294         error ("cannot declare field %q+D to be of abstract type %qT",
295                decl, type);
296       else if (TREE_CODE (decl) == FUNCTION_DECL
297                && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
298         error ("invalid abstract return type for member function %q+#D", decl);
299       else if (TREE_CODE (decl) == FUNCTION_DECL)
300         error ("invalid abstract return type for function %q+#D", decl);
301       else if (TREE_CODE (decl) == IDENTIFIER_NODE)
302         /* Here we do not have location information.  */
303         error ("invalid abstract type %qT for %qE", type, decl);
304       else
305         error ("invalid abstract type for %q+D", decl);
306     }
307   else
308     error ("cannot allocate an object of abstract type %qT", type);
309
310   /* Only go through this once.  */
311   if (VEC_length (tree, pure))
312     {
313       unsigned ix;
314       tree fn;
315
316       inform (input_location, "%J  because the following virtual functions are pure "
317               "within %qT:", TYPE_MAIN_DECL (type), type);
318
319       for (ix = 0; VEC_iterate (tree, pure, ix, fn); ix++)
320         inform (input_location, "\t%+#D", fn);
321       /* Now truncate the vector.  This leaves it non-null, so we know
322          there are pure virtuals, but empty so we don't list them out
323          again.  */
324       VEC_truncate (tree, pure, 0);
325     }
326   else
327     inform (input_location, "%J  since type %qT has pure virtual functions",
328             TYPE_MAIN_DECL (type), type);
329
330   return 1;
331 }
332
333 /* Print an error message for invalid use of an incomplete type.
334    VALUE is the expression that was used (or 0 if that isn't known)
335    and TYPE is the type that was invalid.  DIAG_KIND indicates the
336    type of diagnostic (see diagnostic.def).  */
337
338 void
339 cxx_incomplete_type_diagnostic (const_tree value, const_tree type, 
340                                 diagnostic_t diag_kind)
341 {
342   int decl = 0;
343
344   gcc_assert (diag_kind == DK_WARNING 
345               || diag_kind == DK_PEDWARN 
346               || diag_kind == DK_ERROR);
347
348   /* Avoid duplicate error message.  */
349   if (TREE_CODE (type) == ERROR_MARK)
350     return;
351
352   if (value != 0 && (TREE_CODE (value) == VAR_DECL
353                      || TREE_CODE (value) == PARM_DECL
354                      || TREE_CODE (value) == FIELD_DECL))
355     {
356       emit_diagnostic (diag_kind, input_location, 0,
357                        "%q+D has incomplete type", value);
358       decl = 1;
359     }
360  retry:
361   /* We must print an error message.  Be clever about what it says.  */
362
363   switch (TREE_CODE (type))
364     {
365     case RECORD_TYPE:
366     case UNION_TYPE:
367     case ENUMERAL_TYPE:
368       if (!decl)
369         emit_diagnostic (diag_kind, input_location, 0,
370                          "invalid use of incomplete type %q#T", type);
371       if (!TYPE_TEMPLATE_INFO (type))
372         emit_diagnostic (diag_kind, input_location, 0,
373                          "forward declaration of %q+#T", type);
374       else
375         emit_diagnostic (diag_kind, input_location, 0,
376                          "declaration of %q+#T", type);
377       break;
378
379     case VOID_TYPE:
380       emit_diagnostic (diag_kind, input_location, 0,
381                        "invalid use of %qT", type);
382       break;
383
384     case ARRAY_TYPE:
385       if (TYPE_DOMAIN (type))
386         {
387           type = TREE_TYPE (type);
388           goto retry;
389         }
390       emit_diagnostic (diag_kind, input_location, 0,
391                        "invalid use of array with unspecified bounds");
392       break;
393
394     case OFFSET_TYPE:
395     bad_member:
396       emit_diagnostic (diag_kind, input_location, 0,
397                        "invalid use of member (did you forget the %<&%> ?)");
398       break;
399
400     case TEMPLATE_TYPE_PARM:
401       emit_diagnostic (diag_kind, input_location, 0,
402                        "invalid use of template type parameter %qT", type);
403       break;
404
405     case BOUND_TEMPLATE_TEMPLATE_PARM:
406       emit_diagnostic (diag_kind, input_location, 0,
407                        "invalid use of template template parameter %qT",
408                        TYPE_NAME (type));
409       break;
410
411     case TYPENAME_TYPE:
412       emit_diagnostic (diag_kind, input_location, 0,
413                        "invalid use of dependent type %qT", type);
414       break;
415
416     case UNKNOWN_TYPE:
417       if (value && TREE_CODE (value) == COMPONENT_REF)
418         goto bad_member;
419       else if (value && TREE_CODE (value) == ADDR_EXPR)
420         emit_diagnostic (diag_kind, input_location, 0,
421                          "address of overloaded function with no contextual "
422                          "type information");
423       else if (value && TREE_CODE (value) == OVERLOAD)
424         emit_diagnostic (diag_kind, input_location, 0,
425                          "overloaded function with no contextual type information");
426       else
427         emit_diagnostic (diag_kind, input_location, 0,
428                          "insufficient contextual information to determine type");
429       break;
430
431     default:
432       gcc_unreachable ();
433     }
434 }
435
436 /* Backward-compatibility interface to incomplete_type_diagnostic;
437    required by ../tree.c.  */
438 #undef cxx_incomplete_type_error
439 void
440 cxx_incomplete_type_error (const_tree value, const_tree type)
441 {
442   cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
443 }
444
445 \f
446 /* The recursive part of split_nonconstant_init.  DEST is an lvalue
447    expression to which INIT should be assigned.  INIT is a CONSTRUCTOR.  */
448
449 static void
450 split_nonconstant_init_1 (tree dest, tree init)
451 {
452   unsigned HOST_WIDE_INT idx;
453   tree field_index, value;
454   tree type = TREE_TYPE (dest);
455   tree inner_type = NULL;
456   bool array_type_p = false;
457
458   switch (TREE_CODE (type))
459     {
460     case ARRAY_TYPE:
461       inner_type = TREE_TYPE (type);
462       array_type_p = true;
463       /* FALLTHRU */
464
465     case RECORD_TYPE:
466     case UNION_TYPE:
467     case QUAL_UNION_TYPE:
468       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx,
469                                 field_index, value)
470         {
471           /* The current implementation of this algorithm assumes that
472              the field was set for all the elements. This is usually done
473              by process_init_constructor.  */
474           gcc_assert (field_index);
475
476           if (!array_type_p)
477             inner_type = TREE_TYPE (field_index);
478
479           if (TREE_CODE (value) == CONSTRUCTOR)
480             {
481               tree sub;
482
483               if (array_type_p)
484                 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
485                               NULL_TREE, NULL_TREE);
486               else
487                 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
488                               NULL_TREE);
489
490               split_nonconstant_init_1 (sub, value);
491             }
492           else if (!initializer_constant_valid_p (value, inner_type))
493             {
494               tree code;
495               tree sub;
496
497               /* FIXME: Ordered removal is O(1) so the whole function is
498                  worst-case quadratic. This could be fixed using an aside
499                  bitmap to record which elements must be removed and remove
500                  them all at the same time. Or by merging
501                  split_non_constant_init into process_init_constructor_array,
502                  that is separating constants from non-constants while building
503                  the vector.  */
504               VEC_ordered_remove (constructor_elt, CONSTRUCTOR_ELTS (init),
505                                   idx);
506               --idx;
507
508               if (array_type_p)
509                 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
510                               NULL_TREE, NULL_TREE);
511               else
512                 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
513                               NULL_TREE);
514
515               code = build2 (INIT_EXPR, inner_type, sub, value);
516               code = build_stmt (EXPR_STMT, code);
517               add_stmt (code);
518               continue;
519             }
520         }
521       break;
522
523     case VECTOR_TYPE:
524       if (!initializer_constant_valid_p (init, type))
525         {
526           tree code;
527           tree cons = copy_node (init);
528           CONSTRUCTOR_ELTS (init) = NULL;
529           code = build2 (MODIFY_EXPR, type, dest, cons);
530           code = build_stmt (EXPR_STMT, code);
531           add_stmt (code);
532         }
533       break;
534
535     default:
536       gcc_unreachable ();
537     }
538
539   /* The rest of the initializer is now a constant. */
540   TREE_CONSTANT (init) = 1;
541 }
542
543 /* A subroutine of store_init_value.  Splits non-constant static
544    initializer INIT into a constant part and generates code to
545    perform the non-constant part of the initialization to DEST.
546    Returns the code for the runtime init.  */
547
548 static tree
549 split_nonconstant_init (tree dest, tree init)
550 {
551   tree code;
552
553   if (TREE_CODE (init) == CONSTRUCTOR)
554     {
555       code = push_stmt_list ();
556       split_nonconstant_init_1 (dest, init);
557       code = pop_stmt_list (code);
558       DECL_INITIAL (dest) = init;
559       TREE_READONLY (dest) = 0;
560     }
561   else
562     code = build2 (INIT_EXPR, TREE_TYPE (dest), dest, init);
563
564   return code;
565 }
566
567 /* Perform appropriate conversions on the initial value of a variable,
568    store it in the declaration DECL,
569    and print any error messages that are appropriate.
570    If the init is invalid, store an ERROR_MARK.
571
572    C++: Note that INIT might be a TREE_LIST, which would mean that it is
573    a base class initializer for some aggregate type, hopefully compatible
574    with DECL.  If INIT is a single element, and DECL is an aggregate
575    type, we silently convert INIT into a TREE_LIST, allowing a constructor
576    to be called.
577
578    If INIT is a TREE_LIST and there is no constructor, turn INIT
579    into a CONSTRUCTOR and use standard initialization techniques.
580    Perhaps a warning should be generated?
581
582    Returns code to be executed if initialization could not be performed
583    for static variable.  In that case, caller must emit the code.  */
584
585 tree
586 store_init_value (tree decl, tree init)
587 {
588   tree value, type;
589
590   /* If variable's type was invalidly declared, just ignore it.  */
591
592   type = TREE_TYPE (decl);
593   if (TREE_CODE (type) == ERROR_MARK)
594     return NULL_TREE;
595
596   if (MAYBE_CLASS_TYPE_P (type))
597     {
598       gcc_assert (TYPE_HAS_TRIVIAL_INIT_REF (type)
599                   || TREE_CODE (init) == CONSTRUCTOR);
600
601       if (TREE_CODE (init) == TREE_LIST)
602         {
603           error ("constructor syntax used, but no constructor declared "
604                  "for type %qT", type);
605           init = build_constructor_from_list (init_list_type_node, nreverse (init));
606         }
607     }
608   else if (TREE_CODE (init) == TREE_LIST
609            && TREE_TYPE (init) != unknown_type_node)
610     {
611       if (TREE_CODE (decl) == RESULT_DECL)
612         init = build_x_compound_expr_from_list (init,
613                                                 "return value initializer");
614       else if (TREE_CODE (init) == TREE_LIST
615                && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
616         {
617           error ("cannot initialize arrays using this syntax");
618           return NULL_TREE;
619         }
620       else
621         /* We get here with code like `int a (2);' */
622         init = build_x_compound_expr_from_list (init, "initializer");
623     }
624
625   /* End of special C++ code.  */
626
627   /* Digest the specified initializer into an expression.  */
628   value = digest_init (type, init);
629   /* If the initializer is not a constant, fill in DECL_INITIAL with
630      the bits that are constant, and then return an expression that
631      will perform the dynamic initialization.  */
632   if (value != error_mark_node
633       && (TREE_SIDE_EFFECTS (value)
634            || ! initializer_constant_valid_p (value, TREE_TYPE (value))))
635     return split_nonconstant_init (decl, value);
636   /* If the value is a constant, just put it in DECL_INITIAL.  If DECL
637      is an automatic variable, the middle end will turn this into a
638      dynamic initialization later.  */
639   DECL_INITIAL (decl) = value;
640   return NULL_TREE;
641 }
642
643 \f
644 /* Give errors about narrowing conversions within { }.  */
645
646 void
647 check_narrowing (tree type, tree init)
648 {
649   tree ftype = TREE_TYPE (init);
650   bool ok = true;
651   REAL_VALUE_TYPE d;
652   bool was_decl = false;
653
654   if (DECL_P (init))
655     {
656       was_decl = true;
657       init = decl_constant_value (init);
658     }
659
660   if (TREE_CODE (type) == INTEGER_TYPE
661       && TREE_CODE (ftype) == REAL_TYPE)
662     ok = false;
663   else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
664            && CP_INTEGRAL_TYPE_P (type))
665     {
666       if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype)
667           && (TREE_CODE (init) != INTEGER_CST
668               || !int_fits_type_p (init, type)))
669         ok = false;
670     }
671   else if (TREE_CODE (ftype) == REAL_TYPE
672            && TREE_CODE (type) == REAL_TYPE)
673     {
674       if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype))
675         {
676           ok = false;
677           if (TREE_CODE (init) == REAL_CST)
678             {
679               d = TREE_REAL_CST (init);
680               if (exact_real_truncate (TYPE_MODE (type), &d)
681                   /* FIXME: As a temporary workaround for PR 36963, don't
682                      complain about narrowing from a floating
683                      literal. Hopefully this will be resolved at the
684                      September 2008 C++ meeting. */
685                   || !was_decl)
686                 ok = true;
687             }
688         }
689     }
690   else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
691            && TREE_CODE (type) == REAL_TYPE)
692     {
693       ok = false;
694       if (TREE_CODE (init) == INTEGER_CST)
695         {
696           d = real_value_from_int_cst (0, init);
697           if (exact_real_truncate (TYPE_MODE (type), &d))
698             ok = true;
699         }
700     }
701
702   if (!ok)
703     error ("narrowing conversion of %qE to %qT inside { }", init, type);
704 }
705
706 /* Process the initializer INIT for a variable of type TYPE, emitting
707    diagnostics for invalid initializers and converting the initializer as
708    appropriate.
709
710    For aggregate types, it assumes that reshape_init has already run, thus the
711    initializer will have the right shape (brace elision has been undone).
712
713    NESTED is true iff we are being called for an element of a CONSTRUCTOR.  */
714
715 static tree
716 digest_init_r (tree type, tree init, bool nested)
717 {
718   enum tree_code code = TREE_CODE (type);
719
720   if (init == error_mark_node)
721     return error_mark_node;
722
723   gcc_assert (init);
724
725   /* We must strip the outermost array type when completing the type,
726      because the its bounds might be incomplete at the moment.  */
727   if (!complete_type_or_else (TREE_CODE (type) == ARRAY_TYPE
728                               ? TREE_TYPE (type) : type, NULL_TREE))
729     return error_mark_node;
730
731   /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue
732      (g++.old-deja/g++.law/casts2.C).  */
733   if (TREE_CODE (init) == NON_LVALUE_EXPR)
734     init = TREE_OPERAND (init, 0);
735
736   /* Initialization of an array of chars from a string constant. The initializer
737      can be optionally enclosed in braces, but reshape_init has already removed
738      them if they were present.  */
739   if (code == ARRAY_TYPE)
740     {
741       tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
742       if (char_type_p (typ1)
743           /*&& init */
744           && TREE_CODE (init) == STRING_CST)
745         {
746           tree char_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init)));
747
748           if (TYPE_PRECISION (typ1) == BITS_PER_UNIT)
749             {
750               if (char_type != char_type_node)
751                 {
752                   error ("char-array initialized from wide string");
753                   return error_mark_node;
754                 }
755             }
756           else
757             {
758               if (char_type == char_type_node)
759                 {
760                   error ("int-array initialized from non-wide string");
761                   return error_mark_node;
762                 }
763               else if (char_type != typ1)
764                 {
765                   error ("int-array initialized from incompatible wide string");
766                   return error_mark_node;
767                 }
768             }
769
770           TREE_TYPE (init) = type;
771           if (TYPE_DOMAIN (type) != 0 && TREE_CONSTANT (TYPE_SIZE (type)))
772             {
773               int size = TREE_INT_CST_LOW (TYPE_SIZE (type));
774               size = (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
775               /* In C it is ok to subtract 1 from the length of the string
776                  because it's ok to ignore the terminating null char that is
777                  counted in the length of the constant, but in C++ this would
778                  be invalid.  */
779               if (size < TREE_STRING_LENGTH (init))
780                 permerror (input_location, "initializer-string for array of chars is too long");
781             }
782           return init;
783         }
784     }
785
786   /* Handle scalar types (including conversions) and references.  */
787   if (TREE_CODE (type) != COMPLEX_TYPE
788       && (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE))
789     {
790       tree *exp;
791
792       if (cxx_dialect != cxx98 && nested)
793         check_narrowing (type, init);
794       init = convert_for_initialization (0, type, init, LOOKUP_NORMAL,
795                                          "initialization", NULL_TREE, 0,
796                                          tf_warning_or_error);
797       exp = &init;
798
799       /* Skip any conversions since we'll be outputting the underlying
800          constant.  */
801       while (CONVERT_EXPR_P (*exp)
802              || TREE_CODE (*exp) == NON_LVALUE_EXPR)
803         exp = &TREE_OPERAND (*exp, 0);
804
805       *exp = cplus_expand_constant (*exp);
806
807       return init;
808     }
809
810   /* Come here only for aggregates: records, arrays, unions, complex numbers
811      and vectors.  */
812   gcc_assert (TREE_CODE (type) == ARRAY_TYPE
813               || TREE_CODE (type) == VECTOR_TYPE
814               || TREE_CODE (type) == RECORD_TYPE
815               || TREE_CODE (type) == UNION_TYPE
816               || TREE_CODE (type) == COMPLEX_TYPE);
817
818   if (BRACE_ENCLOSED_INITIALIZER_P (init))
819     return process_init_constructor (type, init);
820   else
821     {
822       if (COMPOUND_LITERAL_P (init) && TREE_CODE (type) == ARRAY_TYPE)
823         {
824           error ("cannot initialize aggregate of type %qT with "
825                  "a compound literal", type);
826
827           return error_mark_node;
828         }
829
830       if (TREE_CODE (type) == ARRAY_TYPE
831           && TREE_CODE (init) != CONSTRUCTOR)
832         {
833           error ("array must be initialized with a brace-enclosed"
834                  " initializer");
835           return error_mark_node;
836         }
837
838       return convert_for_initialization (NULL_TREE, type, init,
839                                          LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING,
840                                          "initialization", NULL_TREE, 0,
841                                          tf_warning_or_error);
842     }
843 }
844
845 tree
846 digest_init (tree type, tree init)
847 {
848   return digest_init_r (type, init, false);
849 }
850 \f
851 /* Set of flags used within process_init_constructor to describe the
852    initializers.  */
853 #define PICFLAG_ERRONEOUS 1
854 #define PICFLAG_NOT_ALL_CONSTANT 2
855 #define PICFLAG_NOT_ALL_SIMPLE 4
856
857 /* Given an initializer INIT, return the flag (PICFLAG_*) which better
858    describe it.  */
859
860 static int
861 picflag_from_initializer (tree init)
862 {
863   if (init == error_mark_node)
864     return PICFLAG_ERRONEOUS;
865   else if (!TREE_CONSTANT (init))
866     return PICFLAG_NOT_ALL_CONSTANT;
867   else if (!initializer_constant_valid_p (init, TREE_TYPE (init)))
868     return PICFLAG_NOT_ALL_SIMPLE;
869   return 0;
870 }
871
872 /* Subroutine of process_init_constructor, which will process an initializer
873    INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
874    which describe the initializers.  */
875
876 static int
877 process_init_constructor_array (tree type, tree init)
878 {
879   unsigned HOST_WIDE_INT i, len = 0;
880   int flags = 0;
881   bool unbounded = false;
882   constructor_elt *ce;
883   VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (init);
884
885   gcc_assert (TREE_CODE (type) == ARRAY_TYPE
886               || TREE_CODE (type) == VECTOR_TYPE);
887
888   if (TREE_CODE (type) == ARRAY_TYPE)
889     {
890       tree domain = TYPE_DOMAIN (type);
891       if (domain)
892         len = (TREE_INT_CST_LOW (TYPE_MAX_VALUE (domain))
893               - TREE_INT_CST_LOW (TYPE_MIN_VALUE (domain))
894               + 1);
895       else
896         unbounded = true;  /* Take as many as there are.  */
897     }
898   else
899     /* Vectors are like simple fixed-size arrays.  */
900     len = TYPE_VECTOR_SUBPARTS (type);
901
902   /* There cannot be more initializers than needed as otherwise
903      reshape_init would have already rejected the initializer.  */
904   if (!unbounded)
905     gcc_assert (VEC_length (constructor_elt, v) <= len);
906
907   for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
908     {
909       if (ce->index)
910         {
911           gcc_assert (TREE_CODE (ce->index) == INTEGER_CST);
912           if (compare_tree_int (ce->index, i) != 0)
913             {
914               ce->value = error_mark_node;
915               sorry ("non-trivial designated initializers not supported");
916             }
917         }
918       else
919         ce->index = size_int (i);
920       gcc_assert (ce->value);
921       ce->value = digest_init_r (TREE_TYPE (type), ce->value, true);
922
923       if (ce->value != error_mark_node)
924         gcc_assert (same_type_ignoring_top_level_qualifiers_p
925                       (TREE_TYPE (type), TREE_TYPE (ce->value)));
926
927       flags |= picflag_from_initializer (ce->value);
928     }
929
930   /* No more initializers. If the array is unbounded, we are done. Otherwise,
931      we must add initializers ourselves.  */
932   if (!unbounded)
933     for (; i < len; ++i)
934       {
935         tree next;
936
937         if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (type)))
938           {
939             /* If this type needs constructors run for default-initialization,
940               we can't rely on the back end to do it for us, so build up
941               TARGET_EXPRs.  If the type in question is a class, just build
942               one up; if it's an array, recurse.  */
943             if (MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
944               next = build_functional_cast (TREE_TYPE (type), NULL_TREE,
945                                             tf_warning_or_error);
946             else
947               next = build_constructor (init_list_type_node, NULL);
948             next = digest_init (TREE_TYPE (type), next);
949           }
950         else if (!zero_init_p (TREE_TYPE (type)))
951           next = build_zero_init (TREE_TYPE (type),
952                                   /*nelts=*/NULL_TREE,
953                                   /*static_storage_p=*/false);
954         else
955           /* The default zero-initialization is fine for us; don't
956              add anything to the CONSTRUCTOR.  */
957           break;
958
959         flags |= picflag_from_initializer (next);
960         CONSTRUCTOR_APPEND_ELT (v, size_int (i), next);
961       }
962
963   CONSTRUCTOR_ELTS (init) = v;
964   return flags;
965 }
966
967 /* Subroutine of process_init_constructor, which will process an initializer
968    INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
969    the initializers.  */
970
971 static int
972 process_init_constructor_record (tree type, tree init)
973 {
974   VEC(constructor_elt,gc) *v = NULL;
975   int flags = 0;
976   tree field;
977   unsigned HOST_WIDE_INT idx = 0;
978
979   gcc_assert (TREE_CODE (type) == RECORD_TYPE);
980   gcc_assert (!CLASSTYPE_VBASECLASSES (type));
981   gcc_assert (!TYPE_BINFO (type)
982               || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
983   gcc_assert (!TYPE_POLYMORPHIC_P (type));
984
985   /* Generally, we will always have an index for each initializer (which is
986      a FIELD_DECL, put by reshape_init), but compound literals don't go trough
987      reshape_init. So we need to handle both cases.  */
988   for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
989     {
990       tree next;
991
992       if (!DECL_NAME (field) && DECL_C_BIT_FIELD (field))
993         {
994           flags |= picflag_from_initializer (integer_zero_node);
995           CONSTRUCTOR_APPEND_ELT (v, field, integer_zero_node);
996           continue;
997         }
998
999       if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
1000         continue;
1001
1002       if (idx < VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)))
1003         {
1004           constructor_elt *ce = VEC_index (constructor_elt,
1005                                            CONSTRUCTOR_ELTS (init), idx);
1006           if (ce->index)
1007             {
1008               /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
1009                  latter case can happen in templates where lookup has to be
1010                  deferred.  */
1011               gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1012                           || TREE_CODE (ce->index) == IDENTIFIER_NODE);
1013               if (ce->index != field
1014                   && ce->index != DECL_NAME (field))
1015                 {
1016                   ce->value = error_mark_node;
1017                   sorry ("non-trivial designated initializers not supported");
1018                 }
1019             }
1020
1021           gcc_assert (ce->value);
1022           next = digest_init_r (TREE_TYPE (field), ce->value, true);
1023           ++idx;
1024         }
1025       else if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (field)))
1026         {
1027           /* If this type needs constructors run for
1028              default-initialization, we can't rely on the back end to do it
1029              for us, so build up TARGET_EXPRs.  If the type in question is
1030              a class, just build one up; if it's an array, recurse.  */
1031           if (MAYBE_CLASS_TYPE_P (TREE_TYPE (field)))
1032             next = build_functional_cast (TREE_TYPE (field), NULL_TREE,
1033                                           tf_warning_or_error);
1034           else
1035             next = build_constructor (init_list_type_node, NULL);
1036
1037           next = digest_init_r (TREE_TYPE (field), next, true);
1038
1039           /* Warn when some struct elements are implicitly initialized.  */
1040           warning (OPT_Wmissing_field_initializers,
1041                    "missing initializer for member %qD", field);
1042         }
1043       else
1044         {
1045           if (TREE_READONLY (field))
1046             error ("uninitialized const member %qD", field);
1047           else if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (TREE_TYPE (field)))
1048             error ("member %qD with uninitialized const fields", field);
1049           else if (TREE_CODE (TREE_TYPE (field)) == REFERENCE_TYPE)
1050             error ("member %qD is uninitialized reference", field);
1051
1052           /* Warn when some struct elements are implicitly initialized
1053              to zero.  */
1054           warning (OPT_Wmissing_field_initializers,
1055                    "missing initializer for member %qD", field);
1056
1057           if (!zero_init_p (TREE_TYPE (field)))
1058             next = build_zero_init (TREE_TYPE (field), /*nelts=*/NULL_TREE,
1059                                     /*static_storage_p=*/false);
1060           else
1061             /* The default zero-initialization is fine for us; don't
1062             add anything to the CONSTRUCTOR.  */
1063             continue;
1064         }
1065
1066       flags |= picflag_from_initializer (next);
1067       CONSTRUCTOR_APPEND_ELT (v, field, next);
1068     }
1069
1070   CONSTRUCTOR_ELTS (init) = v;
1071   return flags;
1072 }
1073
1074 /* Subroutine of process_init_constructor, which will process a single
1075    initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
1076    which describe the initializer.  */
1077
1078 static int
1079 process_init_constructor_union (tree type, tree init)
1080 {
1081   constructor_elt *ce;
1082
1083   /* If the initializer was empty, use default zero initialization.  */
1084   if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
1085     return 0;
1086
1087   gcc_assert (VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)) == 1);
1088   ce = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (init), 0);
1089
1090   /* If this element specifies a field, initialize via that field.  */
1091   if (ce->index)
1092     {
1093       if (TREE_CODE (ce->index) == FIELD_DECL)
1094         ;
1095       else if (TREE_CODE (ce->index) == IDENTIFIER_NODE)
1096         {
1097           /* This can happen within a cast, see g++.dg/opt/cse2.C.  */
1098           tree name = ce->index;
1099           tree field;
1100           for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1101             if (DECL_NAME (field) == name)
1102               break;
1103           if (!field)
1104             {
1105               error ("no field %qD found in union being initialized", field);
1106               ce->value = error_mark_node;
1107             }
1108           ce->index = field;
1109         }
1110       else
1111         {
1112           gcc_assert (TREE_CODE (ce->index) == INTEGER_CST
1113                       || TREE_CODE (ce->index) == RANGE_EXPR);
1114           error ("index value instead of field name in union initializer");
1115           ce->value = error_mark_node;
1116         }
1117     }
1118   else
1119     {
1120       /* Find the first named field.  ANSI decided in September 1990
1121          that only named fields count here.  */
1122       tree field = TYPE_FIELDS (type);
1123       while (field && (!DECL_NAME (field) || TREE_CODE (field) != FIELD_DECL))
1124         field = TREE_CHAIN (field);
1125       gcc_assert (field);
1126       ce->index = field;
1127     }
1128
1129   if (ce->value && ce->value != error_mark_node)
1130     ce->value = digest_init_r (TREE_TYPE (ce->index), ce->value, true);
1131
1132   return picflag_from_initializer (ce->value);
1133 }
1134
1135 /* Process INIT, a constructor for a variable of aggregate type TYPE. The
1136    constructor is a brace-enclosed initializer, and will be modified in-place.
1137
1138    Each element is converted to the right type through digest_init, and
1139    missing initializers are added following the language rules (zero-padding,
1140    etc.).
1141
1142    After the execution, the initializer will have TREE_CONSTANT if all elts are
1143    constant, and TREE_STATIC set if, in addition, all elts are simple enough
1144    constants that the assembler and linker can compute them.
1145
1146    The function returns the initializer itself, or error_mark_node in case
1147    of error.  */
1148
1149 static tree
1150 process_init_constructor (tree type, tree init)
1151 {
1152   int flags;
1153
1154   gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
1155
1156   if (TREE_CODE (type) == ARRAY_TYPE || TREE_CODE (type) == VECTOR_TYPE)
1157     flags = process_init_constructor_array (type, init);
1158   else if (TREE_CODE (type) == RECORD_TYPE)
1159     flags = process_init_constructor_record (type, init);
1160   else if (TREE_CODE (type) == UNION_TYPE)
1161     flags = process_init_constructor_union (type, init);
1162   else
1163     gcc_unreachable ();
1164
1165   if (flags & PICFLAG_ERRONEOUS)
1166     return error_mark_node;
1167
1168   TREE_TYPE (init) = type;
1169   if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == NULL_TREE)
1170     cp_complete_array_type (&TREE_TYPE (init), init, /*do_default=*/0);
1171   if (!(flags & PICFLAG_NOT_ALL_CONSTANT))
1172     {
1173       TREE_CONSTANT (init) = 1;
1174       if (!(flags & PICFLAG_NOT_ALL_SIMPLE))
1175         TREE_STATIC (init) = 1;
1176     }
1177   return init;
1178 }
1179 \f
1180 /* Given a structure or union value DATUM, construct and return
1181    the structure or union component which results from narrowing
1182    that value to the base specified in BASETYPE.  For example, given the
1183    hierarchy
1184
1185    class L { int ii; };
1186    class A : L { ... };
1187    class B : L { ... };
1188    class C : A, B { ... };
1189
1190    and the declaration
1191
1192    C x;
1193
1194    then the expression
1195
1196    x.A::ii refers to the ii member of the L part of
1197    the A part of the C object named by X.  In this case,
1198    DATUM would be x, and BASETYPE would be A.
1199
1200    I used to think that this was nonconformant, that the standard specified
1201    that first we look up ii in A, then convert x to an L& and pull out the
1202    ii part.  But in fact, it does say that we convert x to an A&; A here
1203    is known as the "naming class".  (jason 2000-12-19)
1204
1205    BINFO_P points to a variable initialized either to NULL_TREE or to the
1206    binfo for the specific base subobject we want to convert to.  */
1207
1208 tree
1209 build_scoped_ref (tree datum, tree basetype, tree* binfo_p)
1210 {
1211   tree binfo;
1212
1213   if (datum == error_mark_node)
1214     return error_mark_node;
1215   if (*binfo_p)
1216     binfo = *binfo_p;
1217   else
1218     binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check, NULL);
1219
1220   if (!binfo || binfo == error_mark_node)
1221     {
1222       *binfo_p = NULL_TREE;
1223       if (!binfo)
1224         error_not_base_type (basetype, TREE_TYPE (datum));
1225       return error_mark_node;
1226     }
1227
1228   *binfo_p = binfo;
1229   return build_base_path (PLUS_EXPR, datum, binfo, 1);
1230 }
1231
1232 /* Build a reference to an object specified by the C++ `->' operator.
1233    Usually this just involves dereferencing the object, but if the
1234    `->' operator is overloaded, then such overloads must be
1235    performed until an object which does not have the `->' operator
1236    overloaded is found.  An error is reported when circular pointer
1237    delegation is detected.  */
1238
1239 tree
1240 build_x_arrow (tree expr)
1241 {
1242   tree orig_expr = expr;
1243   tree types_memoized = NULL_TREE;
1244   tree type = TREE_TYPE (expr);
1245   tree last_rval = NULL_TREE;
1246
1247   if (type == error_mark_node)
1248     return error_mark_node;
1249
1250   if (processing_template_decl)
1251     {
1252       if (type_dependent_expression_p (expr))
1253         return build_min_nt (ARROW_EXPR, expr);
1254       expr = build_non_dependent_expr (expr);
1255     }
1256
1257   if (MAYBE_CLASS_TYPE_P (type))
1258     {
1259       while ((expr = build_new_op (COMPONENT_REF, LOOKUP_NORMAL, expr,
1260                                    NULL_TREE, NULL_TREE,
1261                                    /*overloaded_p=*/NULL, 
1262                                    tf_warning_or_error)))
1263         {
1264           if (expr == error_mark_node)
1265             return error_mark_node;
1266
1267           if (value_member (TREE_TYPE (expr), types_memoized))
1268             {
1269               error ("circular pointer delegation detected");
1270               return error_mark_node;
1271             }
1272           else
1273             {
1274               types_memoized = tree_cons (NULL_TREE, TREE_TYPE (expr),
1275                                           types_memoized);
1276             }
1277           last_rval = expr;
1278         }
1279
1280       if (last_rval == NULL_TREE)
1281         {
1282           error ("base operand of %<->%> has non-pointer type %qT", type);
1283           return error_mark_node;
1284         }
1285
1286       if (TREE_CODE (TREE_TYPE (last_rval)) == REFERENCE_TYPE)
1287         last_rval = convert_from_reference (last_rval);
1288     }
1289   else
1290     last_rval = decay_conversion (expr);
1291
1292   if (TREE_CODE (TREE_TYPE (last_rval)) == POINTER_TYPE)
1293     {
1294       if (processing_template_decl)
1295         {
1296           expr = build_min_non_dep (ARROW_EXPR, last_rval, orig_expr);
1297           /* It will be dereferenced.  */
1298           TREE_TYPE (expr) = TREE_TYPE (TREE_TYPE (last_rval));
1299           return expr;
1300         }
1301
1302       return cp_build_indirect_ref (last_rval, NULL, tf_warning_or_error);
1303     }
1304
1305   if (types_memoized)
1306     error ("result of %<operator->()%> yields non-pointer result");
1307   else
1308     error ("base operand of %<->%> is not a pointer");
1309   return error_mark_node;
1310 }
1311
1312 /* Return an expression for "DATUM .* COMPONENT".  DATUM has not
1313    already been checked out to be of aggregate type.  */
1314
1315 tree
1316 build_m_component_ref (tree datum, tree component)
1317 {
1318   tree ptrmem_type;
1319   tree objtype;
1320   tree type;
1321   tree binfo;
1322   tree ctype;
1323
1324   if (error_operand_p (datum) || error_operand_p (component))
1325     return error_mark_node;
1326
1327   ptrmem_type = TREE_TYPE (component);
1328   if (!TYPE_PTR_TO_MEMBER_P (ptrmem_type))
1329     {
1330       error ("%qE cannot be used as a member pointer, since it is of "
1331              "type %qT",
1332              component, ptrmem_type);
1333       return error_mark_node;
1334     }
1335
1336   objtype = TYPE_MAIN_VARIANT (TREE_TYPE (datum));
1337   if (! MAYBE_CLASS_TYPE_P (objtype))
1338     {
1339       error ("cannot apply member pointer %qE to %qE, which is of "
1340              "non-class type %qT",
1341              component, datum, objtype);
1342       return error_mark_node;
1343     }
1344
1345   type = TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type);
1346   ctype = complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type));
1347
1348   if (!COMPLETE_TYPE_P (ctype))
1349     {
1350       if (!same_type_p (ctype, objtype))
1351         goto mismatch;
1352       binfo = NULL;
1353     }
1354   else
1355     {
1356       binfo = lookup_base (objtype, ctype, ba_check, NULL);
1357
1358       if (!binfo)
1359         {
1360         mismatch:
1361           error ("pointer to member type %qT incompatible with object "
1362                  "type %qT",
1363                  type, objtype);
1364           return error_mark_node;
1365         }
1366       else if (binfo == error_mark_node)
1367         return error_mark_node;
1368     }
1369
1370   if (TYPE_PTRMEM_P (ptrmem_type))
1371     {
1372       tree ptype;
1373
1374       /* Compute the type of the field, as described in [expr.ref].
1375          There's no such thing as a mutable pointer-to-member, so
1376          things are not as complex as they are for references to
1377          non-static data members.  */
1378       type = cp_build_qualified_type (type,
1379                                       (cp_type_quals (type)
1380                                        | cp_type_quals (TREE_TYPE (datum))));
1381
1382       datum = build_address (datum);
1383
1384       /* Convert object to the correct base.  */
1385       if (binfo)
1386         datum = build_base_path (PLUS_EXPR, datum, binfo, 1);
1387
1388       /* Build an expression for "object + offset" where offset is the
1389          value stored in the pointer-to-data-member.  */
1390       ptype = build_pointer_type (type);
1391       datum = build2 (POINTER_PLUS_EXPR, ptype,
1392                       fold_convert (ptype, datum),
1393                       build_nop (sizetype, component));
1394       return cp_build_indirect_ref (datum, 0, tf_warning_or_error);
1395     }
1396   else
1397     return build2 (OFFSET_REF, type, datum, component);
1398 }
1399
1400 /* Return a tree node for the expression TYPENAME '(' PARMS ')'.  */
1401
1402 tree
1403 build_functional_cast (tree exp, tree parms, tsubst_flags_t complain)
1404 {
1405   /* This is either a call to a constructor,
1406      or a C cast in C++'s `functional' notation.  */
1407
1408   /* The type to which we are casting.  */
1409   tree type;
1410
1411   if (exp == error_mark_node || parms == error_mark_node)
1412     return error_mark_node;
1413
1414   if (TREE_CODE (exp) == TYPE_DECL)
1415     type = TREE_TYPE (exp);
1416   else
1417     type = exp;
1418
1419   if (processing_template_decl)
1420     {
1421       tree t = build_min (CAST_EXPR, type, parms);
1422       /* We don't know if it will or will not have side effects.  */
1423       TREE_SIDE_EFFECTS (t) = 1;
1424       return t;
1425     }
1426
1427   if (! MAYBE_CLASS_TYPE_P (type))
1428     {
1429       if (parms == NULL_TREE)
1430         return cp_convert (type, integer_zero_node);
1431
1432       /* This must build a C cast.  */
1433       parms = build_x_compound_expr_from_list (parms, "functional cast");
1434       return cp_build_c_cast (type, parms, complain);
1435     }
1436
1437   /* Prepare to evaluate as a call to a constructor.  If this expression
1438      is actually used, for example,
1439
1440      return X (arg1, arg2, ...);
1441
1442      then the slot being initialized will be filled in.  */
1443
1444   if (!complete_type_or_else (type, NULL_TREE))
1445     return error_mark_node;
1446   if (abstract_virtuals_error (NULL_TREE, type))
1447     return error_mark_node;
1448
1449   /* [expr.type.conv]
1450
1451      If the expression list is a single-expression, the type
1452      conversion is equivalent (in definedness, and if defined in
1453      meaning) to the corresponding cast expression.  */
1454   if (parms && TREE_CHAIN (parms) == NULL_TREE)
1455     return cp_build_c_cast (type, TREE_VALUE (parms), complain);
1456
1457   /* [expr.type.conv]
1458
1459      The expression T(), where T is a simple-type-specifier for a
1460      non-array complete object type or the (possibly cv-qualified)
1461      void type, creates an rvalue of the specified type, which is
1462      value-initialized.  */
1463
1464   if (parms == NULL_TREE
1465       /* If there's a user-defined constructor, value-initialization is
1466          just calling the constructor, so fall through.  */
1467       && !TYPE_HAS_USER_CONSTRUCTOR (type))
1468     {
1469       exp = build_value_init (type);
1470       return get_target_expr (exp);
1471     }
1472
1473   /* Call the constructor.  */
1474   exp = build_special_member_call (NULL_TREE, complete_ctor_identifier, parms,
1475                                    type, LOOKUP_NORMAL, complain);
1476
1477   if (exp == error_mark_node)
1478     return error_mark_node;
1479
1480   return build_cplus_new (type, exp);
1481 }
1482 \f
1483
1484 /* Add new exception specifier SPEC, to the LIST we currently have.
1485    If it's already in LIST then do nothing.
1486    Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
1487    know what we're doing.  */
1488
1489 tree
1490 add_exception_specifier (tree list, tree spec, int complain)
1491 {
1492   bool ok;
1493   tree core = spec;
1494   bool is_ptr;
1495   diagnostic_t diag_type = DK_UNSPECIFIED; /* none */
1496
1497   if (spec == error_mark_node)
1498     return list;
1499
1500   gcc_assert (spec && (!list || TREE_VALUE (list)));
1501
1502   /* [except.spec] 1, type in an exception specifier shall not be
1503      incomplete, or pointer or ref to incomplete other than pointer
1504      to cv void.  */
1505   is_ptr = TREE_CODE (core) == POINTER_TYPE;
1506   if (is_ptr || TREE_CODE (core) == REFERENCE_TYPE)
1507     core = TREE_TYPE (core);
1508   if (complain < 0)
1509     ok = true;
1510   else if (VOID_TYPE_P (core))
1511     ok = is_ptr;
1512   else if (TREE_CODE (core) == TEMPLATE_TYPE_PARM)
1513     ok = true;
1514   else if (processing_template_decl)
1515     ok = true;
1516   else
1517     {
1518       ok = true;
1519       /* 15.4/1 says that types in an exception specifier must be complete,
1520          but it seems more reasonable to only require this on definitions
1521          and calls.  So just give a pedwarn at this point; we will give an
1522          error later if we hit one of those two cases.  */
1523       if (!COMPLETE_TYPE_P (complete_type (core)))
1524         diag_type = DK_PEDWARN; /* pedwarn */
1525     }
1526
1527   if (ok)
1528     {
1529       tree probe;
1530
1531       for (probe = list; probe; probe = TREE_CHAIN (probe))
1532         if (same_type_p (TREE_VALUE (probe), spec))
1533           break;
1534       if (!probe)
1535         list = tree_cons (NULL_TREE, spec, list);
1536     }
1537   else
1538     diag_type = DK_ERROR; /* error */
1539
1540   if (diag_type != DK_UNSPECIFIED && complain)
1541     cxx_incomplete_type_diagnostic (NULL_TREE, core, diag_type);
1542
1543   return list;
1544 }
1545
1546 /* Combine the two exceptions specifier lists LIST and ADD, and return
1547    their union.  */
1548
1549 tree
1550 merge_exception_specifiers (tree list, tree add)
1551 {
1552   if (!list || !add)
1553     return NULL_TREE;
1554   else if (!TREE_VALUE (list))
1555     return add;
1556   else if (!TREE_VALUE (add))
1557     return list;
1558   else
1559     {
1560       tree orig_list = list;
1561
1562       for (; add; add = TREE_CHAIN (add))
1563         {
1564           tree spec = TREE_VALUE (add);
1565           tree probe;
1566
1567           for (probe = orig_list; probe; probe = TREE_CHAIN (probe))
1568             if (same_type_p (TREE_VALUE (probe), spec))
1569               break;
1570           if (!probe)
1571             {
1572               spec = build_tree_list (NULL_TREE, spec);
1573               TREE_CHAIN (spec) = list;
1574               list = spec;
1575             }
1576         }
1577     }
1578   return list;
1579 }
1580
1581 /* Subroutine of build_call.  Ensure that each of the types in the
1582    exception specification is complete.  Technically, 15.4/1 says that
1583    they need to be complete when we see a declaration of the function,
1584    but we should be able to get away with only requiring this when the
1585    function is defined or called.  See also add_exception_specifier.  */
1586
1587 void
1588 require_complete_eh_spec_types (tree fntype, tree decl)
1589 {
1590   tree raises;
1591   /* Don't complain about calls to op new.  */
1592   if (decl && DECL_ARTIFICIAL (decl))
1593     return;
1594   for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
1595        raises = TREE_CHAIN (raises))
1596     {
1597       tree type = TREE_VALUE (raises);
1598       if (type && !COMPLETE_TYPE_P (type))
1599         {
1600           if (decl)
1601             error
1602               ("call to function %qD which throws incomplete type %q#T",
1603                decl, type);
1604           else
1605             error ("call to function which throws incomplete type %q#T",
1606                    decl);
1607         }
1608     }
1609 }
1610
1611 \f
1612 #include "gt-cp-typeck2.h"