OSDN Git Service

* configure: Regenerate.
[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
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
41 static tree
42 process_init_constructor (tree type, tree init);
43
44
45 /* Print an error message stemming from an attempt to use
46    BASETYPE as a base class for TYPE.  */
47
48 tree
49 error_not_base_type (tree basetype, tree type)
50 {
51   if (TREE_CODE (basetype) == FUNCTION_DECL)
52     basetype = DECL_CONTEXT (basetype);
53   error ("type %qT is not a base type for type %qT", basetype, type);
54   return error_mark_node;
55 }
56
57 tree
58 binfo_or_else (tree base, tree type)
59 {
60   tree binfo = lookup_base (type, base, ba_unique, NULL);
61
62   if (binfo == error_mark_node)
63     return NULL_TREE;
64   else if (!binfo)
65     error_not_base_type (base, type);
66   return binfo;
67 }
68
69 /* According to ARM $7.1.6, "A `const' object may be initialized, but its
70    value may not be changed thereafter.  */
71
72 void
73 readonly_error (tree arg, const char* string)
74 {
75   const char *fmt;
76
77   if (TREE_CODE (arg) == COMPONENT_REF)
78     {
79       if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
80         fmt = "%s of data-member %qD in read-only structure";
81       else
82         fmt = "%s of read-only data-member %qD";
83       error (fmt, string, TREE_OPERAND (arg, 1));
84     }
85   else if (TREE_CODE (arg) == VAR_DECL)
86     {
87       if (DECL_LANG_SPECIFIC (arg)
88           && DECL_IN_AGGR_P (arg)
89           && !TREE_STATIC (arg))
90         fmt = "%s of constant field %qD";
91       else
92         fmt = "%s of read-only variable %qD";
93       error (fmt, string, arg);
94     }
95   else if (TREE_CODE (arg) == PARM_DECL)
96     error ("%s of read-only parameter %qD", string, arg);
97   else if (TREE_CODE (arg) == INDIRECT_REF
98            && TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))) == REFERENCE_TYPE
99            && (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL
100                || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))
101     error ("%s of read-only reference %qD", string, TREE_OPERAND (arg, 0));
102   else if (TREE_CODE (arg) == RESULT_DECL)
103     error ("%s of read-only named return value %qD", string, arg);
104   else if (TREE_CODE (arg) == FUNCTION_DECL)
105     error ("%s of function %qD", string, arg);
106   else
107     error ("%s of read-only location %qE", string, arg);
108 }
109
110 \f
111 /* Structure that holds information about declarations whose type was
112    incomplete and we could not check whether it was abstract or not.  */
113
114 struct pending_abstract_type GTY((chain_next ("%h.next")))
115 {
116   /* Declaration which we are checking for abstractness. It is either
117      a DECL node, or an IDENTIFIER_NODE if we do not have a full
118      declaration available.  */
119   tree decl;
120
121   /* Type which will be checked for abstractness.  */
122   tree type;
123
124   /* Position of the declaration. This is only needed for IDENTIFIER_NODEs,
125      because DECLs already carry locus information.  */
126   location_t locus;
127
128   /* Link to the next element in list.  */
129   struct pending_abstract_type* next;
130 };
131
132
133 /* Compute the hash value of the node VAL. This function is used by the
134    hash table abstract_pending_vars.  */
135
136 static hashval_t
137 pat_calc_hash (const void* val)
138 {
139   const struct pending_abstract_type *pat =
140      (const struct pending_abstract_type *) val;
141   return (hashval_t) TYPE_UID (pat->type);
142 }
143
144
145 /* Compare node VAL1 with the type VAL2. This function is used by the
146    hash table abstract_pending_vars.  */
147
148 static int
149 pat_compare (const void* val1, const void* val2)
150 {
151   const struct pending_abstract_type *const pat1 =
152      (const struct pending_abstract_type *) val1;
153   const_tree const type2 = (const_tree)val2;
154
155   return (pat1->type == type2);
156 }
157
158 /* Hash table that maintains pending_abstract_type nodes, for which we still
159    need to check for type abstractness.  The key of the table is the type
160    of the declaration.  */
161 static GTY ((param_is (struct pending_abstract_type)))
162 htab_t abstract_pending_vars = NULL;
163
164
165 /* This function is called after TYPE is completed, and will check if there
166    are pending declarations for which we still need to verify the abstractness
167    of TYPE, and emit a diagnostic (through abstract_virtuals_error) if TYPE
168    turned out to be incomplete.  */
169
170 void
171 complete_type_check_abstract (tree type)
172 {
173   void **slot;
174   struct pending_abstract_type *pat;
175   location_t cur_loc = input_location;
176
177   gcc_assert (COMPLETE_TYPE_P (type));
178
179   if (!abstract_pending_vars)
180     return;
181
182   /* Retrieve the list of pending declarations for this type.  */
183   slot = htab_find_slot_with_hash (abstract_pending_vars, type,
184                                    (hashval_t)TYPE_UID (type), NO_INSERT);
185   if (!slot)
186     return;
187   pat = (struct pending_abstract_type*)*slot;
188   gcc_assert (pat);
189
190   /* If the type is not abstract, do not do anything.  */
191   if (CLASSTYPE_PURE_VIRTUALS (type))
192     {
193       struct pending_abstract_type *prev = 0, *next;
194
195       /* Reverse the list to emit the errors in top-down order.  */
196       for (; pat; pat = next)
197         {
198           next = pat->next;
199           pat->next = prev;
200           prev = pat;
201         }
202       pat = prev;
203
204       /* Go through the list, and call abstract_virtuals_error for each
205         element: it will issue a diagnostic if the type is abstract.  */
206       while (pat)
207         {
208           gcc_assert (type == pat->type);
209
210           /* Tweak input_location so that the diagnostic appears at the correct
211             location. Notice that this is only needed if the decl is an
212             IDENTIFIER_NODE.  */
213           input_location = pat->locus;
214           abstract_virtuals_error (pat->decl, pat->type);
215           pat = pat->next;
216         }
217     }
218
219   htab_clear_slot (abstract_pending_vars, slot);
220
221   input_location = cur_loc;
222 }
223
224
225 /* If TYPE has abstract virtual functions, issue an error about trying
226    to create an object of that type.  DECL is the object declared, or
227    NULL_TREE if the declaration is unavailable.  Returns 1 if an error
228    occurred; zero if all was well.  */
229
230 int
231 abstract_virtuals_error (tree decl, tree type)
232 {
233   VEC(tree,gc) *pure;
234
235   /* This function applies only to classes. Any other entity can never
236      be abstract.  */
237   if (!CLASS_TYPE_P (type))
238     return 0;
239
240   /* If the type is incomplete, we register it within a hash table,
241      so that we can check again once it is completed. This makes sense
242      only for objects for which we have a declaration or at least a
243      name.  */
244   if (!COMPLETE_TYPE_P (type))
245     {
246       void **slot;
247       struct pending_abstract_type *pat;
248
249       gcc_assert (!decl || DECL_P (decl)
250                   || TREE_CODE (decl) == IDENTIFIER_NODE);
251
252       if (!abstract_pending_vars)
253         abstract_pending_vars = htab_create_ggc (31, &pat_calc_hash,
254                                                 &pat_compare, NULL);
255
256       slot = htab_find_slot_with_hash (abstract_pending_vars, type,
257                                       (hashval_t)TYPE_UID (type), INSERT);
258
259       pat = GGC_NEW (struct pending_abstract_type);
260       pat->type = type;
261       pat->decl = decl;
262       pat->locus = ((decl && DECL_P (decl))
263                     ? DECL_SOURCE_LOCATION (decl)
264                     : input_location);
265
266       pat->next = (struct pending_abstract_type *) *slot;
267       *slot = pat;
268
269       return 0;
270     }
271
272   if (!TYPE_SIZE (type))
273     /* TYPE is being defined, and during that time
274        CLASSTYPE_PURE_VIRTUALS holds the inline friends.  */
275     return 0;
276
277   pure = CLASSTYPE_PURE_VIRTUALS (type);
278   if (!pure)
279     return 0;
280
281   if (decl)
282     {
283       if (TREE_CODE (decl) == RESULT_DECL)
284         return 0;
285
286       if (TREE_CODE (decl) == VAR_DECL)
287         error ("cannot declare variable %q+D to be of abstract "
288                "type %qT", decl, type);
289       else if (TREE_CODE (decl) == PARM_DECL)
290         error ("cannot declare parameter %q+D to be of abstract type %qT",
291                decl, type);
292       else if (TREE_CODE (decl) == FIELD_DECL)
293         error ("cannot declare field %q+D to be of abstract type %qT",
294                decl, type);
295       else if (TREE_CODE (decl) == FUNCTION_DECL
296                && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
297         error ("invalid abstract return type for member function %q+#D", decl);
298       else if (TREE_CODE (decl) == FUNCTION_DECL)
299         error ("invalid abstract return type for function %q+#D", decl);
300       else if (TREE_CODE (decl) == IDENTIFIER_NODE)
301         /* Here we do not have location information.  */
302         error ("invalid abstract type %qT for %qE", type, decl);
303       else
304         error ("invalid abstract type for %q+D", decl);
305     }
306   else
307     error ("cannot allocate an object of abstract type %qT", type);
308
309   /* Only go through this once.  */
310   if (VEC_length (tree, pure))
311     {
312       unsigned ix;
313       tree fn;
314
315       inform ("%J  because the following virtual functions are pure "
316               "within %qT:", TYPE_MAIN_DECL (type), type);
317
318       for (ix = 0; VEC_iterate (tree, pure, ix, fn); ix++)
319         inform ("\t%+#D", fn);
320       /* Now truncate the vector.  This leaves it non-null, so we know
321          there are pure virtuals, but empty so we don't list them out
322          again.  */
323       VEC_truncate (tree, pure, 0);
324     }
325   else
326     inform ("%J  since type %qT has pure virtual functions",
327             TYPE_MAIN_DECL (type), type);
328
329   return 1;
330 }
331
332 /* Print an error message for invalid use of an incomplete type.
333    VALUE is the expression that was used (or 0 if that isn't known)
334    and TYPE is the type that was invalid.  DIAG_TYPE indicates the
335    type of diagnostic:  0 for an error, 1 for a warning, 2 for a
336    pedwarn.  */
337
338 void
339 cxx_incomplete_type_diagnostic (const_tree value, const_tree type, int diag_type)
340 {
341   int decl = 0;
342   void (*p_msg) (const char *, ...) ATTRIBUTE_GCC_CXXDIAG(1,2);
343
344   if (diag_type == 1)
345     p_msg = warning0;
346   else if (diag_type == 2)
347     p_msg = pedwarn;
348   else
349     p_msg = error;
350
351   /* Avoid duplicate error message.  */
352   if (TREE_CODE (type) == ERROR_MARK)
353     return;
354
355   if (value != 0 && (TREE_CODE (value) == VAR_DECL
356                      || TREE_CODE (value) == PARM_DECL
357                      || TREE_CODE (value) == FIELD_DECL))
358     {
359       p_msg ("%q+D has incomplete type", value);
360       decl = 1;
361     }
362  retry:
363   /* We must print an error message.  Be clever about what it says.  */
364
365   switch (TREE_CODE (type))
366     {
367     case RECORD_TYPE:
368     case UNION_TYPE:
369     case ENUMERAL_TYPE:
370       if (!decl)
371         p_msg ("invalid use of incomplete type %q#T", type);
372       if (!TYPE_TEMPLATE_INFO (type))
373         p_msg ("forward declaration of %q+#T", type);
374       else
375         p_msg ("declaration of %q+#T", type);
376       break;
377
378     case VOID_TYPE:
379       p_msg ("invalid use of %qT", type);
380       break;
381
382     case ARRAY_TYPE:
383       if (TYPE_DOMAIN (type))
384         {
385           type = TREE_TYPE (type);
386           goto retry;
387         }
388       p_msg ("invalid use of array with unspecified bounds");
389       break;
390
391     case OFFSET_TYPE:
392     bad_member:
393       p_msg ("invalid use of member (did you forget the %<&%> ?)");
394       break;
395
396     case TEMPLATE_TYPE_PARM:
397       p_msg ("invalid use of template type parameter %qT", type);
398       break;
399
400     case BOUND_TEMPLATE_TEMPLATE_PARM:
401       p_msg ("invalid use of template template parameter %qT",
402             TYPE_NAME (type));
403       break;
404
405     case TYPENAME_TYPE:
406       p_msg ("invalid use of dependent type %qT", type);
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 (const_tree value, const_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 (TREE_CODE (type) != COMPLEX_TYPE
705       && (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE))
706     {
707       tree *exp;
708
709       init = convert_for_initialization (0, type, init, LOOKUP_NORMAL,
710                                          "initialization", NULL_TREE, 0);
711       exp = &init;
712
713       /* Skip any conversions since we'll be outputting the underlying
714          constant.  */
715       while (TREE_CODE (*exp) == NOP_EXPR || TREE_CODE (*exp) == CONVERT_EXPR
716              || TREE_CODE (*exp) == NON_LVALUE_EXPR)
717         exp = &TREE_OPERAND (*exp, 0);
718
719       *exp = cplus_expand_constant (*exp);
720
721       return init;
722     }
723
724   /* Come here only for aggregates: records, arrays, unions, complex numbers
725      and vectors.  */
726   gcc_assert (TREE_CODE (type) == ARRAY_TYPE
727               || TREE_CODE (type) == VECTOR_TYPE
728               || TREE_CODE (type) == RECORD_TYPE
729               || TREE_CODE (type) == UNION_TYPE
730               || TREE_CODE (type) == COMPLEX_TYPE);
731
732   if (BRACE_ENCLOSED_INITIALIZER_P (init))
733       return process_init_constructor (type, init);
734   else
735     {
736       if (COMPOUND_LITERAL_P (init) && TREE_CODE (type) == ARRAY_TYPE)
737         {
738           error ("cannot initialize aggregate of type %qT with "
739                  "a compound literal", type);
740
741           return error_mark_node;
742         }
743
744       if (TREE_CODE (type) == ARRAY_TYPE
745           && TREE_CODE (init) != CONSTRUCTOR)
746         {
747           error ("array must be initialized with a brace-enclosed"
748                  " initializer");
749           return error_mark_node;
750         }
751
752       return convert_for_initialization (NULL_TREE, type, init,
753                                          LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING,
754                                          "initialization", NULL_TREE, 0);
755     }
756 }
757
758 \f
759 /* Set of flags used within process_init_constructor to describe the
760    initializers.  */
761 #define PICFLAG_ERRONEOUS 1
762 #define PICFLAG_NOT_ALL_CONSTANT 2
763 #define PICFLAG_NOT_ALL_SIMPLE 4
764
765 /* Given an initializer INIT, return the flag (PICFLAG_*) which better
766    describe it.  */
767
768 static int
769 picflag_from_initializer (tree init)
770 {
771   if (init == error_mark_node)
772     return PICFLAG_ERRONEOUS;
773   else if (!TREE_CONSTANT (init))
774     return PICFLAG_NOT_ALL_CONSTANT;
775   else if (!initializer_constant_valid_p (init, TREE_TYPE (init)))
776     return PICFLAG_NOT_ALL_SIMPLE;
777   return 0;
778 }
779
780 /* Subroutine of process_init_constructor, which will process an initializer
781    INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
782    which describe the initializers.  */
783
784 static int
785 process_init_constructor_array (tree type, tree init)
786 {
787   unsigned HOST_WIDE_INT i, len = 0;
788   int flags = 0;
789   bool unbounded = false;
790   constructor_elt *ce;
791   VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (init);
792
793   gcc_assert (TREE_CODE (type) == ARRAY_TYPE
794               || TREE_CODE (type) == VECTOR_TYPE);
795
796   if (TREE_CODE (type) == ARRAY_TYPE)
797     {
798       tree domain = TYPE_DOMAIN (type);
799       if (domain)
800         len = (TREE_INT_CST_LOW (TYPE_MAX_VALUE (domain))
801               - TREE_INT_CST_LOW (TYPE_MIN_VALUE (domain))
802               + 1);
803       else
804         unbounded = true;  /* Take as many as there are.  */
805     }
806   else
807     /* Vectors are like simple fixed-size arrays.  */
808     len = TYPE_VECTOR_SUBPARTS (type);
809
810   /* There cannot be more initializers than needed as otherwise
811      reshape_init would have already rejected the initializer.  */
812   if (!unbounded)
813     gcc_assert (VEC_length (constructor_elt, v) <= len);
814
815   for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
816     {
817       if (ce->index)
818         {
819           gcc_assert (TREE_CODE (ce->index) == INTEGER_CST);
820           if (compare_tree_int (ce->index, i) != 0)
821             {
822               ce->value = error_mark_node;
823               sorry ("non-trivial designated initializers not supported");
824             }
825         }
826       else
827         ce->index = size_int (i);
828       gcc_assert (ce->value);
829       ce->value = digest_init (TREE_TYPE (type), ce->value);
830
831       if (ce->value != error_mark_node)
832         gcc_assert (same_type_ignoring_top_level_qualifiers_p
833                       (TREE_TYPE (type), TREE_TYPE (ce->value)));
834
835       flags |= picflag_from_initializer (ce->value);
836     }
837
838   /* No more initializers. If the array is unbounded, we are done. Otherwise,
839      we must add initializers ourselves.  */
840   if (!unbounded)
841     for (; i < len; ++i)
842       {
843         tree next;
844
845         if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (type)))
846           {
847             /* If this type needs constructors run for default-initialization,
848               we can't rely on the back end to do it for us, so build up
849               TARGET_EXPRs.  If the type in question is a class, just build
850               one up; if it's an array, recurse.  */
851             if (IS_AGGR_TYPE (TREE_TYPE (type)))
852                 next = build_functional_cast (TREE_TYPE (type), NULL_TREE);
853             else
854                 next = build_constructor (NULL_TREE, NULL);
855             next = digest_init (TREE_TYPE (type), next);
856           }
857         else if (!zero_init_p (TREE_TYPE (type)))
858           next = build_zero_init (TREE_TYPE (type),
859                                   /*nelts=*/NULL_TREE,
860                                   /*static_storage_p=*/false);
861         else
862           /* The default zero-initialization is fine for us; don't
863              add anything to the CONSTRUCTOR.  */
864           break;
865
866         flags |= picflag_from_initializer (next);
867         CONSTRUCTOR_APPEND_ELT (v, size_int (i), next);
868       }
869
870   CONSTRUCTOR_ELTS (init) = v;
871   return flags;
872 }
873
874 /* Subroutine of process_init_constructor, which will process an initializer
875    INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
876    the initializers.  */
877
878 static int
879 process_init_constructor_record (tree type, tree init)
880 {
881   VEC(constructor_elt,gc) *v = NULL;
882   int flags = 0;
883   tree field;
884   unsigned HOST_WIDE_INT idx = 0;
885
886   gcc_assert (TREE_CODE (type) == RECORD_TYPE);
887   gcc_assert (!CLASSTYPE_VBASECLASSES (type));
888   gcc_assert (!TYPE_BINFO (type)
889               || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
890   gcc_assert (!TYPE_POLYMORPHIC_P (type));
891
892   /* Generally, we will always have an index for each initializer (which is
893      a FIELD_DECL, put by reshape_init), but compound literals don't go trough
894      reshape_init. So we need to handle both cases.  */
895   for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
896     {
897       tree next;
898
899       if (!DECL_NAME (field) && DECL_C_BIT_FIELD (field))
900         {
901           flags |= picflag_from_initializer (integer_zero_node);
902           CONSTRUCTOR_APPEND_ELT (v, field, integer_zero_node);
903           continue;
904         }
905
906       if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
907         continue;
908
909       if (idx < VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)))
910         {
911           constructor_elt *ce = VEC_index (constructor_elt,
912                                            CONSTRUCTOR_ELTS (init), idx);
913           if (ce->index)
914             {
915               /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
916                  latter case can happen in templates where lookup has to be
917                  deferred.  */
918               gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
919                           || TREE_CODE (ce->index) == IDENTIFIER_NODE);
920               if (ce->index != field
921                   && ce->index != DECL_NAME (field))
922                 {
923                   ce->value = error_mark_node;
924                   sorry ("non-trivial designated initializers not supported");
925                 }
926             }
927
928           gcc_assert (ce->value);
929           next = digest_init (TREE_TYPE (field), ce->value);
930           ++idx;
931         }
932       else if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (field)))
933         {
934           /* If this type needs constructors run for
935              default-initialization, we can't rely on the back end to do it
936              for us, so build up TARGET_EXPRs.  If the type in question is
937              a class, just build one up; if it's an array, recurse.  */
938           if (IS_AGGR_TYPE (TREE_TYPE (field)))
939             next = build_functional_cast (TREE_TYPE (field), NULL_TREE);
940           else
941             next = build_constructor (NULL_TREE, NULL);
942
943           next = digest_init (TREE_TYPE (field), next);
944
945           /* Warn when some struct elements are implicitly initialized.  */
946           warning (OPT_Wmissing_field_initializers,
947                    "missing initializer for member %qD", field);
948         }
949       else
950         {
951           if (TREE_READONLY (field))
952             error ("uninitialized const member %qD", field);
953           else if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (TREE_TYPE (field)))
954             error ("member %qD with uninitialized const fields", field);
955           else if (TREE_CODE (TREE_TYPE (field)) == REFERENCE_TYPE)
956             error ("member %qD is uninitialized reference", field);
957
958           /* Warn when some struct elements are implicitly initialized
959              to zero.  */
960           warning (OPT_Wmissing_field_initializers,
961                    "missing initializer for member %qD", field);
962
963           if (!zero_init_p (TREE_TYPE (field)))
964             next = build_zero_init (TREE_TYPE (field), /*nelts=*/NULL_TREE,
965                                     /*static_storage_p=*/false);
966           else
967             /* The default zero-initialization is fine for us; don't
968             add anything to the CONSTRUCTOR.  */
969             continue;
970         }
971
972       flags |= picflag_from_initializer (next);
973       CONSTRUCTOR_APPEND_ELT (v, field, next);
974     }
975
976   CONSTRUCTOR_ELTS (init) = v;
977   return flags;
978 }
979
980 /* Subroutine of process_init_constructor, which will process a single
981    initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
982    which describe the initializer.  */
983
984 static int
985 process_init_constructor_union (tree type, tree init)
986 {
987   constructor_elt *ce;
988
989   /* If the initializer was empty, use default zero initialization.  */
990   if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
991     return 0;
992
993   gcc_assert (VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)) == 1);
994   ce = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (init), 0);
995
996   /* If this element specifies a field, initialize via that field.  */
997   if (ce->index)
998     {
999       if (TREE_CODE (ce->index) == FIELD_DECL)
1000         ;
1001       else if (TREE_CODE (ce->index) == IDENTIFIER_NODE)
1002         {
1003           /* This can happen within a cast, see g++.dg/opt/cse2.C.  */
1004           tree name = ce->index;
1005           tree field;
1006           for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1007             if (DECL_NAME (field) == name)
1008               break;
1009           if (!field)
1010             {
1011               error ("no field %qD found in union being initialized", field);
1012               ce->value = error_mark_node;
1013             }
1014           ce->index = field;
1015         }
1016       else
1017         {
1018           gcc_assert (TREE_CODE (ce->index) == INTEGER_CST
1019                       || TREE_CODE (ce->index) == RANGE_EXPR);
1020           error ("index value instead of field name in union initializer");
1021           ce->value = error_mark_node;
1022         }
1023     }
1024   else
1025     {
1026       /* Find the first named field.  ANSI decided in September 1990
1027          that only named fields count here.  */
1028       tree field = TYPE_FIELDS (type);
1029       while (field && (!DECL_NAME (field) || TREE_CODE (field) != FIELD_DECL))
1030         field = TREE_CHAIN (field);
1031       gcc_assert (field);
1032       ce->index = field;
1033     }
1034
1035   if (ce->value && ce->value != error_mark_node)
1036     ce->value = digest_init (TREE_TYPE (ce->index), ce->value);
1037
1038   return picflag_from_initializer (ce->value);
1039 }
1040
1041 /* Process INIT, a constructor for a variable of aggregate type TYPE. The
1042    constructor is a brace-enclosed initializer, and will be modified in-place.
1043
1044    Each element is converted to the right type through digest_init, and
1045    missing initializers are added following the language rules (zero-padding,
1046    etc.).
1047
1048    After the execution, the initializer will have TREE_CONSTANT if all elts are
1049    constant, and TREE_STATIC set if, in addition, all elts are simple enough
1050    constants that the assembler and linker can compute them.
1051
1052    The function returns the initializer itself, or error_mark_node in case
1053    of error.  */
1054
1055 static tree
1056 process_init_constructor (tree type, tree init)
1057 {
1058   int flags;
1059
1060   gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
1061
1062   if (TREE_CODE (type) == ARRAY_TYPE || TREE_CODE (type) == VECTOR_TYPE)
1063     flags = process_init_constructor_array (type, init);
1064   else if (TREE_CODE (type) == RECORD_TYPE)
1065     flags = process_init_constructor_record (type, init);
1066   else if (TREE_CODE (type) == UNION_TYPE)
1067     flags = process_init_constructor_union (type, init);
1068   else
1069     gcc_unreachable ();
1070
1071   if (flags & PICFLAG_ERRONEOUS)
1072     return error_mark_node;
1073
1074   TREE_TYPE (init) = type;
1075   if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == NULL_TREE)
1076     cp_complete_array_type (&TREE_TYPE (init), init, /*do_default=*/0);
1077   if (!(flags & PICFLAG_NOT_ALL_CONSTANT))
1078     {
1079       TREE_CONSTANT (init) = 1;
1080       TREE_INVARIANT (init) = 1;
1081       if (!(flags & PICFLAG_NOT_ALL_SIMPLE))
1082         TREE_STATIC (init) = 1;
1083     }
1084   return init;
1085 }
1086 \f
1087 /* Given a structure or union value DATUM, construct and return
1088    the structure or union component which results from narrowing
1089    that value to the base specified in BASETYPE.  For example, given the
1090    hierarchy
1091
1092    class L { int ii; };
1093    class A : L { ... };
1094    class B : L { ... };
1095    class C : A, B { ... };
1096
1097    and the declaration
1098
1099    C x;
1100
1101    then the expression
1102
1103    x.A::ii refers to the ii member of the L part of
1104    the A part of the C object named by X.  In this case,
1105    DATUM would be x, and BASETYPE would be A.
1106
1107    I used to think that this was nonconformant, that the standard specified
1108    that first we look up ii in A, then convert x to an L& and pull out the
1109    ii part.  But in fact, it does say that we convert x to an A&; A here
1110    is known as the "naming class".  (jason 2000-12-19)
1111
1112    BINFO_P points to a variable initialized either to NULL_TREE or to the
1113    binfo for the specific base subobject we want to convert to.  */
1114
1115 tree
1116 build_scoped_ref (tree datum, tree basetype, tree* binfo_p)
1117 {
1118   tree binfo;
1119
1120   if (datum == error_mark_node)
1121     return error_mark_node;
1122   if (*binfo_p)
1123     binfo = *binfo_p;
1124   else
1125     binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check, NULL);
1126
1127   if (!binfo || binfo == error_mark_node)
1128     {
1129       *binfo_p = NULL_TREE;
1130       if (!binfo)
1131         error_not_base_type (basetype, TREE_TYPE (datum));
1132       return error_mark_node;
1133     }
1134
1135   *binfo_p = binfo;
1136   return build_base_path (PLUS_EXPR, datum, binfo, 1);
1137 }
1138
1139 /* Build a reference to an object specified by the C++ `->' operator.
1140    Usually this just involves dereferencing the object, but if the
1141    `->' operator is overloaded, then such overloads must be
1142    performed until an object which does not have the `->' operator
1143    overloaded is found.  An error is reported when circular pointer
1144    delegation is detected.  */
1145
1146 tree
1147 build_x_arrow (tree expr)
1148 {
1149   tree orig_expr = expr;
1150   tree types_memoized = NULL_TREE;
1151   tree type = TREE_TYPE (expr);
1152   tree last_rval = NULL_TREE;
1153
1154   if (type == error_mark_node)
1155     return error_mark_node;
1156
1157   if (processing_template_decl)
1158     {
1159       if (type_dependent_expression_p (expr))
1160         return build_min_nt (ARROW_EXPR, expr);
1161       expr = build_non_dependent_expr (expr);
1162     }
1163
1164   if (IS_AGGR_TYPE (type))
1165     {
1166       while ((expr = build_new_op (COMPONENT_REF, LOOKUP_NORMAL, expr,
1167                                    NULL_TREE, NULL_TREE,
1168                                    /*overloaded_p=*/NULL)))
1169         {
1170           if (expr == error_mark_node)
1171             return error_mark_node;
1172
1173           if (value_member (TREE_TYPE (expr), types_memoized))
1174             {
1175               error ("circular pointer delegation detected");
1176               return error_mark_node;
1177             }
1178           else
1179             {
1180               types_memoized = tree_cons (NULL_TREE, TREE_TYPE (expr),
1181                                           types_memoized);
1182             }
1183           last_rval = expr;
1184         }
1185
1186       if (last_rval == NULL_TREE)
1187         {
1188           error ("base operand of %<->%> has non-pointer type %qT", type);
1189           return error_mark_node;
1190         }
1191
1192       if (TREE_CODE (TREE_TYPE (last_rval)) == REFERENCE_TYPE)
1193         last_rval = convert_from_reference (last_rval);
1194     }
1195   else
1196     last_rval = decay_conversion (expr);
1197
1198   if (TREE_CODE (TREE_TYPE (last_rval)) == POINTER_TYPE)
1199     {
1200       if (processing_template_decl)
1201         {
1202           expr = build_min_non_dep (ARROW_EXPR, last_rval, orig_expr);
1203           /* It will be dereferenced.  */
1204           TREE_TYPE (expr) = TREE_TYPE (TREE_TYPE (last_rval));
1205           return expr;
1206         }
1207
1208       return build_indirect_ref (last_rval, NULL);
1209     }
1210
1211   if (types_memoized)
1212     error ("result of %<operator->()%> yields non-pointer result");
1213   else
1214     error ("base operand of %<->%> is not a pointer");
1215   return error_mark_node;
1216 }
1217
1218 /* Return an expression for "DATUM .* COMPONENT".  DATUM has not
1219    already been checked out to be of aggregate type.  */
1220
1221 tree
1222 build_m_component_ref (tree datum, tree component)
1223 {
1224   tree ptrmem_type;
1225   tree objtype;
1226   tree type;
1227   tree binfo;
1228   tree ctype;
1229
1230   if (error_operand_p (datum) || error_operand_p (component))
1231     return error_mark_node;
1232
1233   ptrmem_type = TREE_TYPE (component);
1234   if (!TYPE_PTR_TO_MEMBER_P (ptrmem_type))
1235     {
1236       error ("%qE cannot be used as a member pointer, since it is of "
1237              "type %qT",
1238              component, ptrmem_type);
1239       return error_mark_node;
1240     }
1241
1242   objtype = TYPE_MAIN_VARIANT (TREE_TYPE (datum));
1243   if (! IS_AGGR_TYPE (objtype))
1244     {
1245       error ("cannot apply member pointer %qE to %qE, which is of "
1246              "non-class type %qT",
1247              component, datum, objtype);
1248       return error_mark_node;
1249     }
1250
1251   type = TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type);
1252   ctype = complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type));
1253
1254   if (!COMPLETE_TYPE_P (ctype))
1255     {
1256       if (!same_type_p (ctype, objtype))
1257         goto mismatch;
1258       binfo = NULL;
1259     }
1260   else
1261     {
1262       binfo = lookup_base (objtype, ctype, ba_check, NULL);
1263
1264       if (!binfo)
1265         {
1266         mismatch:
1267           error ("pointer to member type %qT incompatible with object "
1268                  "type %qT",
1269                  type, objtype);
1270           return error_mark_node;
1271         }
1272       else if (binfo == error_mark_node)
1273         return error_mark_node;
1274     }
1275
1276   if (TYPE_PTRMEM_P (ptrmem_type))
1277     {
1278       tree ptype;
1279
1280       /* Compute the type of the field, as described in [expr.ref].
1281          There's no such thing as a mutable pointer-to-member, so
1282          things are not as complex as they are for references to
1283          non-static data members.  */
1284       type = cp_build_qualified_type (type,
1285                                       (cp_type_quals (type)
1286                                        | cp_type_quals (TREE_TYPE (datum))));
1287
1288       datum = build_address (datum);
1289
1290       /* Convert object to the correct base.  */
1291       if (binfo)
1292         datum = build_base_path (PLUS_EXPR, datum, binfo, 1);
1293
1294       /* Build an expression for "object + offset" where offset is the
1295          value stored in the pointer-to-data-member.  */
1296       ptype = build_pointer_type (type);
1297       datum = build2 (POINTER_PLUS_EXPR, ptype,
1298                       fold_convert (ptype, datum),
1299                       build_nop (sizetype, component));
1300       return build_indirect_ref (datum, 0);
1301     }
1302   else
1303     return build2 (OFFSET_REF, type, datum, component);
1304 }
1305
1306 /* Return a tree node for the expression TYPENAME '(' PARMS ')'.  */
1307
1308 tree
1309 build_functional_cast (tree exp, tree parms)
1310 {
1311   /* This is either a call to a constructor,
1312      or a C cast in C++'s `functional' notation.  */
1313   tree type;
1314
1315   if (exp == error_mark_node || parms == error_mark_node)
1316     return error_mark_node;
1317
1318   if (TREE_CODE (exp) == TYPE_DECL)
1319     type = TREE_TYPE (exp);
1320   else
1321     type = exp;
1322
1323   if (processing_template_decl)
1324     {
1325       tree t = build_min (CAST_EXPR, type, parms);
1326       /* We don't know if it will or will not have side effects.  */
1327       TREE_SIDE_EFFECTS (t) = 1;
1328       return t;
1329     }
1330
1331   if (! IS_AGGR_TYPE (type))
1332     {
1333       if (parms == NULL_TREE)
1334         return cp_convert (type, integer_zero_node);
1335
1336       /* This must build a C cast.  */
1337       parms = build_x_compound_expr_from_list (parms, "functional cast");
1338       return build_c_cast (type, parms);
1339     }
1340
1341   /* Prepare to evaluate as a call to a constructor.  If this expression
1342      is actually used, for example,
1343
1344      return X (arg1, arg2, ...);
1345
1346      then the slot being initialized will be filled in.  */
1347
1348   if (!complete_type_or_else (type, NULL_TREE))
1349     return error_mark_node;
1350   if (abstract_virtuals_error (NULL_TREE, type))
1351     return error_mark_node;
1352
1353   if (parms && TREE_CHAIN (parms) == NULL_TREE)
1354     return build_c_cast (type, TREE_VALUE (parms));
1355
1356   /* We need to zero-initialize POD types.  */
1357   if (parms == NULL_TREE 
1358       && !CLASSTYPE_NON_POD_P (type)
1359       && TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
1360     {
1361       exp = build_zero_init (type, 
1362                              /*nelts=*/NULL_TREE,
1363                              /*static_storage_p=*/false);
1364       return get_target_expr (exp);
1365     }
1366
1367   exp = build_special_member_call (NULL_TREE, complete_ctor_identifier, parms,
1368                                    type, LOOKUP_NORMAL);
1369
1370   if (exp == error_mark_node)
1371     return error_mark_node;
1372
1373   return build_cplus_new (type, exp);
1374 }
1375 \f
1376
1377 /* Add new exception specifier SPEC, to the LIST we currently have.
1378    If it's already in LIST then do nothing.
1379    Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
1380    know what we're doing.  */
1381
1382 tree
1383 add_exception_specifier (tree list, tree spec, int complain)
1384 {
1385   bool ok;
1386   tree core = spec;
1387   bool is_ptr;
1388   int diag_type = -1; /* none */
1389
1390   if (spec == error_mark_node)
1391     return list;
1392
1393   gcc_assert (spec && (!list || TREE_VALUE (list)));
1394
1395   /* [except.spec] 1, type in an exception specifier shall not be
1396      incomplete, or pointer or ref to incomplete other than pointer
1397      to cv void.  */
1398   is_ptr = TREE_CODE (core) == POINTER_TYPE;
1399   if (is_ptr || TREE_CODE (core) == REFERENCE_TYPE)
1400     core = TREE_TYPE (core);
1401   if (complain < 0)
1402     ok = true;
1403   else if (VOID_TYPE_P (core))
1404     ok = is_ptr;
1405   else if (TREE_CODE (core) == TEMPLATE_TYPE_PARM)
1406     ok = true;
1407   else if (processing_template_decl)
1408     ok = true;
1409   else
1410     {
1411       ok = true;
1412       /* 15.4/1 says that types in an exception specifier must be complete,
1413          but it seems more reasonable to only require this on definitions
1414          and calls.  So just give a pedwarn at this point; we will give an
1415          error later if we hit one of those two cases.  */
1416       if (!COMPLETE_TYPE_P (complete_type (core)))
1417         diag_type = 2; /* pedwarn */
1418     }
1419
1420   if (ok)
1421     {
1422       tree probe;
1423
1424       for (probe = list; probe; probe = TREE_CHAIN (probe))
1425         if (same_type_p (TREE_VALUE (probe), spec))
1426           break;
1427       if (!probe)
1428         list = tree_cons (NULL_TREE, spec, list);
1429     }
1430   else
1431     diag_type = 0; /* error */
1432
1433   if (diag_type >= 0 && complain)
1434     cxx_incomplete_type_diagnostic (NULL_TREE, core, diag_type);
1435
1436   return list;
1437 }
1438
1439 /* Combine the two exceptions specifier lists LIST and ADD, and return
1440    their union.  */
1441
1442 tree
1443 merge_exception_specifiers (tree list, tree add)
1444 {
1445   if (!list || !add)
1446     return NULL_TREE;
1447   else if (!TREE_VALUE (list))
1448     return add;
1449   else if (!TREE_VALUE (add))
1450     return list;
1451   else
1452     {
1453       tree orig_list = list;
1454
1455       for (; add; add = TREE_CHAIN (add))
1456         {
1457           tree spec = TREE_VALUE (add);
1458           tree probe;
1459
1460           for (probe = orig_list; probe; probe = TREE_CHAIN (probe))
1461             if (same_type_p (TREE_VALUE (probe), spec))
1462               break;
1463           if (!probe)
1464             {
1465               spec = build_tree_list (NULL_TREE, spec);
1466               TREE_CHAIN (spec) = list;
1467               list = spec;
1468             }
1469         }
1470     }
1471   return list;
1472 }
1473
1474 /* Subroutine of build_call.  Ensure that each of the types in the
1475    exception specification is complete.  Technically, 15.4/1 says that
1476    they need to be complete when we see a declaration of the function,
1477    but we should be able to get away with only requiring this when the
1478    function is defined or called.  See also add_exception_specifier.  */
1479
1480 void
1481 require_complete_eh_spec_types (tree fntype, tree decl)
1482 {
1483   tree raises;
1484   /* Don't complain about calls to op new.  */
1485   if (decl && DECL_ARTIFICIAL (decl))
1486     return;
1487   for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
1488        raises = TREE_CHAIN (raises))
1489     {
1490       tree type = TREE_VALUE (raises);
1491       if (type && !COMPLETE_TYPE_P (type))
1492         {
1493           if (decl)
1494             error
1495               ("call to function %qD which throws incomplete type %q#T",
1496                decl, type);
1497           else
1498             error ("call to function which throws incomplete type %q#T",
1499                    decl);
1500         }
1501     }
1502 }
1503
1504 \f
1505 #include "gt-cp-typeck2.h"