OSDN Git Service

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