Merged revisions 143552,143554,143557,143560,143562,143564-143567,143570-143573,14357...
[official-gcc.git] / gcc / cp / typeck2.c
blob637076554fb8d7e9378ad6eee252b73347fa43ce
1 /* Report error messages, build initializers, and perform
2 some front-end optimizations for C++ compiler.
3 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
6 Hacked by Michael Tiemann (tiemann@cygnus.com)
8 This file is part of GCC.
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.
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.
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/>. */
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. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "tree.h"
35 #include "cp-tree.h"
36 #include "flags.h"
37 #include "toplev.h"
38 #include "output.h"
39 #include "diagnostic.h"
40 #include "real.h"
42 static tree
43 process_init_constructor (tree type, tree init);
46 /* Print an error message stemming from an attempt to use
47 BASETYPE as a base class for TYPE. */
49 tree
50 error_not_base_type (tree basetype, tree type)
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;
58 tree
59 binfo_or_else (tree base, tree type)
61 tree binfo = lookup_base (type, base, ba_unique, NULL);
63 if (binfo == error_mark_node)
64 return NULL_TREE;
65 else if (!binfo)
66 error_not_base_type (base, type);
67 return binfo;
70 /* According to ARM $7.1.6, "A `const' object may be initialized, but its
71 value may not be changed thereafter. */
73 void
74 readonly_error (tree arg, const char* string)
76 const char *fmt;
78 if (TREE_CODE (arg) == COMPONENT_REF)
80 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
81 fmt = "%s of data-member %qD in read-only structure";
82 else
83 fmt = "%s of read-only data-member %qD";
84 error (fmt, string, TREE_OPERAND (arg, 1));
86 else if (TREE_CODE (arg) == VAR_DECL)
88 if (DECL_LANG_SPECIFIC (arg)
89 && DECL_IN_AGGR_P (arg)
90 && !TREE_STATIC (arg))
91 fmt = "%s of constant field %qD";
92 else
93 fmt = "%s of read-only variable %qD";
94 error (fmt, string, arg);
96 else if (TREE_CODE (arg) == PARM_DECL)
97 error ("%s of read-only parameter %qD", string, arg);
98 else if (TREE_CODE (arg) == INDIRECT_REF
99 && TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))) == REFERENCE_TYPE
100 && (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL
101 || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))
102 error ("%s of read-only reference %qD", string, TREE_OPERAND (arg, 0));
103 else if (TREE_CODE (arg) == RESULT_DECL)
104 error ("%s of read-only named return value %qD", string, arg);
105 else if (TREE_CODE (arg) == FUNCTION_DECL)
106 error ("%s of function %qD", string, arg);
107 else
108 error ("%s of read-only location %qE", string, arg);
112 /* Structure that holds information about declarations whose type was
113 incomplete and we could not check whether it was abstract or not. */
115 struct pending_abstract_type GTY((chain_next ("%h.next")))
117 /* Declaration which we are checking for abstractness. It is either
118 a DECL node, or an IDENTIFIER_NODE if we do not have a full
119 declaration available. */
120 tree decl;
122 /* Type which will be checked for abstractness. */
123 tree type;
125 /* Position of the declaration. This is only needed for IDENTIFIER_NODEs,
126 because DECLs already carry locus information. */
127 location_t locus;
129 /* Link to the next element in list. */
130 struct pending_abstract_type* next;
134 /* Compute the hash value of the node VAL. This function is used by the
135 hash table abstract_pending_vars. */
137 static hashval_t
138 pat_calc_hash (const void* val)
140 const struct pending_abstract_type *pat =
141 (const struct pending_abstract_type *) val;
142 return (hashval_t) TYPE_UID (pat->type);
146 /* Compare node VAL1 with the type VAL2. This function is used by the
147 hash table abstract_pending_vars. */
149 static int
150 pat_compare (const void* val1, const void* val2)
152 const struct pending_abstract_type *const pat1 =
153 (const struct pending_abstract_type *) val1;
154 const_tree const type2 = (const_tree)val2;
156 return (pat1->type == type2);
159 /* Hash table that maintains pending_abstract_type nodes, for which we still
160 need to check for type abstractness. The key of the table is the type
161 of the declaration. */
162 static GTY ((param_is (struct pending_abstract_type)))
163 htab_t abstract_pending_vars = NULL;
166 /* This function is called after TYPE is completed, and will check if there
167 are pending declarations for which we still need to verify the abstractness
168 of TYPE, and emit a diagnostic (through abstract_virtuals_error) if TYPE
169 turned out to be incomplete. */
171 void
172 complete_type_check_abstract (tree type)
174 void **slot;
175 struct pending_abstract_type *pat;
176 location_t cur_loc = input_location;
178 gcc_assert (COMPLETE_TYPE_P (type));
180 if (!abstract_pending_vars)
181 return;
183 /* Retrieve the list of pending declarations for this type. */
184 slot = htab_find_slot_with_hash (abstract_pending_vars, type,
185 (hashval_t)TYPE_UID (type), NO_INSERT);
186 if (!slot)
187 return;
188 pat = (struct pending_abstract_type*)*slot;
189 gcc_assert (pat);
191 /* If the type is not abstract, do not do anything. */
192 if (CLASSTYPE_PURE_VIRTUALS (type))
194 struct pending_abstract_type *prev = 0, *next;
196 /* Reverse the list to emit the errors in top-down order. */
197 for (; pat; pat = next)
199 next = pat->next;
200 pat->next = prev;
201 prev = pat;
203 pat = prev;
205 /* Go through the list, and call abstract_virtuals_error for each
206 element: it will issue a diagnostic if the type is abstract. */
207 while (pat)
209 gcc_assert (type == pat->type);
211 /* Tweak input_location so that the diagnostic appears at the correct
212 location. Notice that this is only needed if the decl is an
213 IDENTIFIER_NODE. */
214 input_location = pat->locus;
215 abstract_virtuals_error (pat->decl, pat->type);
216 pat = pat->next;
220 htab_clear_slot (abstract_pending_vars, slot);
222 input_location = cur_loc;
226 /* If TYPE has abstract virtual functions, issue an error about trying
227 to create an object of that type. DECL is the object declared, or
228 NULL_TREE if the declaration is unavailable. Returns 1 if an error
229 occurred; zero if all was well. */
232 abstract_virtuals_error (tree decl, tree type)
234 VEC(tree,gc) *pure;
236 /* This function applies only to classes. Any other entity can never
237 be abstract. */
238 if (!CLASS_TYPE_P (type))
239 return 0;
241 /* If the type is incomplete, we register it within a hash table,
242 so that we can check again once it is completed. This makes sense
243 only for objects for which we have a declaration or at least a
244 name. */
245 if (!COMPLETE_TYPE_P (type))
247 void **slot;
248 struct pending_abstract_type *pat;
250 gcc_assert (!decl || DECL_P (decl)
251 || TREE_CODE (decl) == IDENTIFIER_NODE);
253 if (!abstract_pending_vars)
254 abstract_pending_vars = htab_create_ggc (31, &pat_calc_hash,
255 &pat_compare, NULL);
257 slot = htab_find_slot_with_hash (abstract_pending_vars, type,
258 (hashval_t)TYPE_UID (type), INSERT);
260 pat = GGC_NEW (struct pending_abstract_type);
261 pat->type = type;
262 pat->decl = decl;
263 pat->locus = ((decl && DECL_P (decl))
264 ? DECL_SOURCE_LOCATION (decl)
265 : input_location);
267 pat->next = (struct pending_abstract_type *) *slot;
268 *slot = pat;
270 return 0;
273 if (!TYPE_SIZE (type))
274 /* TYPE is being defined, and during that time
275 CLASSTYPE_PURE_VIRTUALS holds the inline friends. */
276 return 0;
278 pure = CLASSTYPE_PURE_VIRTUALS (type);
279 if (!pure)
280 return 0;
282 if (decl)
284 if (TREE_CODE (decl) == RESULT_DECL)
285 return 0;
287 if (TREE_CODE (decl) == VAR_DECL)
288 error ("cannot declare variable %q+D to be of abstract "
289 "type %qT", decl, type);
290 else if (TREE_CODE (decl) == PARM_DECL)
291 error ("cannot declare parameter %q+D to be of abstract type %qT",
292 decl, type);
293 else if (TREE_CODE (decl) == FIELD_DECL)
294 error ("cannot declare field %q+D to be of abstract type %qT",
295 decl, type);
296 else if (TREE_CODE (decl) == FUNCTION_DECL
297 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
298 error ("invalid abstract return type for member function %q+#D", decl);
299 else if (TREE_CODE (decl) == FUNCTION_DECL)
300 error ("invalid abstract return type for function %q+#D", decl);
301 else if (TREE_CODE (decl) == IDENTIFIER_NODE)
302 /* Here we do not have location information. */
303 error ("invalid abstract type %qT for %qE", type, decl);
304 else
305 error ("invalid abstract type for %q+D", decl);
307 else
308 error ("cannot allocate an object of abstract type %qT", type);
310 /* Only go through this once. */
311 if (VEC_length (tree, pure))
313 unsigned ix;
314 tree fn;
316 inform (input_location, "%J because the following virtual functions are pure "
317 "within %qT:", TYPE_MAIN_DECL (type), type);
319 for (ix = 0; VEC_iterate (tree, pure, ix, fn); ix++)
320 inform (input_location, "\t%+#D", fn);
321 /* Now truncate the vector. This leaves it non-null, so we know
322 there are pure virtuals, but empty so we don't list them out
323 again. */
324 VEC_truncate (tree, pure, 0);
326 else
327 inform (input_location, "%J since type %qT has pure virtual functions",
328 TYPE_MAIN_DECL (type), type);
330 return 1;
333 /* Print an error message for invalid use of an incomplete type.
334 VALUE is the expression that was used (or 0 if that isn't known)
335 and TYPE is the type that was invalid. DIAG_KIND indicates the
336 type of diagnostic (see diagnostic.def). */
338 void
339 cxx_incomplete_type_diagnostic (const_tree value, const_tree type,
340 diagnostic_t diag_kind)
342 int decl = 0;
344 gcc_assert (diag_kind == DK_WARNING
345 || diag_kind == DK_PEDWARN
346 || diag_kind == DK_ERROR);
348 /* Avoid duplicate error message. */
349 if (TREE_CODE (type) == ERROR_MARK)
350 return;
352 if (value != 0 && (TREE_CODE (value) == VAR_DECL
353 || TREE_CODE (value) == PARM_DECL
354 || TREE_CODE (value) == FIELD_DECL))
356 emit_diagnostic (diag_kind, input_location, 0,
357 "%q+D has incomplete type", value);
358 decl = 1;
360 retry:
361 /* We must print an error message. Be clever about what it says. */
363 switch (TREE_CODE (type))
365 case RECORD_TYPE:
366 case UNION_TYPE:
367 case ENUMERAL_TYPE:
368 if (!decl)
369 emit_diagnostic (diag_kind, input_location, 0,
370 "invalid use of incomplete type %q#T", type);
371 if (!TYPE_TEMPLATE_INFO (type))
372 emit_diagnostic (diag_kind, input_location, 0,
373 "forward declaration of %q+#T", type);
374 else
375 emit_diagnostic (diag_kind, input_location, 0,
376 "declaration of %q+#T", type);
377 break;
379 case VOID_TYPE:
380 emit_diagnostic (diag_kind, input_location, 0,
381 "invalid use of %qT", type);
382 break;
384 case ARRAY_TYPE:
385 if (TYPE_DOMAIN (type))
387 type = TREE_TYPE (type);
388 goto retry;
390 emit_diagnostic (diag_kind, input_location, 0,
391 "invalid use of array with unspecified bounds");
392 break;
394 case OFFSET_TYPE:
395 bad_member:
396 emit_diagnostic (diag_kind, input_location, 0,
397 "invalid use of member (did you forget the %<&%> ?)");
398 break;
400 case TEMPLATE_TYPE_PARM:
401 if (is_auto (type))
402 emit_diagnostic (diag_kind, input_location, 0,
403 "invalid use of %<auto%>");
404 else
405 emit_diagnostic (diag_kind, input_location, 0,
406 "invalid use of template type parameter %qT", type);
407 break;
409 case BOUND_TEMPLATE_TEMPLATE_PARM:
410 emit_diagnostic (diag_kind, input_location, 0,
411 "invalid use of template template parameter %qT",
412 TYPE_NAME (type));
413 break;
415 case TYPENAME_TYPE:
416 emit_diagnostic (diag_kind, input_location, 0,
417 "invalid use of dependent type %qT", type);
418 break;
420 case UNKNOWN_TYPE:
421 if (value && TREE_CODE (value) == COMPONENT_REF)
422 goto bad_member;
423 else if (value && TREE_CODE (value) == ADDR_EXPR)
424 emit_diagnostic (diag_kind, input_location, 0,
425 "address of overloaded function with no contextual "
426 "type information");
427 else if (value && TREE_CODE (value) == OVERLOAD)
428 emit_diagnostic (diag_kind, input_location, 0,
429 "overloaded function with no contextual type information");
430 else
431 emit_diagnostic (diag_kind, input_location, 0,
432 "insufficient contextual information to determine type");
433 break;
435 default:
436 gcc_unreachable ();
440 /* Backward-compatibility interface to incomplete_type_diagnostic;
441 required by ../tree.c. */
442 #undef cxx_incomplete_type_error
443 void
444 cxx_incomplete_type_error (const_tree value, const_tree type)
446 cxx_incomplete_type_diagnostic (value, type, DK_ERROR);
450 /* The recursive part of split_nonconstant_init. DEST is an lvalue
451 expression to which INIT should be assigned. INIT is a CONSTRUCTOR. */
453 static void
454 split_nonconstant_init_1 (tree dest, tree init)
456 unsigned HOST_WIDE_INT idx;
457 tree field_index, value;
458 tree type = TREE_TYPE (dest);
459 tree inner_type = NULL;
460 bool array_type_p = false;
462 switch (TREE_CODE (type))
464 case ARRAY_TYPE:
465 inner_type = TREE_TYPE (type);
466 array_type_p = true;
467 /* FALLTHRU */
469 case RECORD_TYPE:
470 case UNION_TYPE:
471 case QUAL_UNION_TYPE:
472 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx,
473 field_index, value)
475 /* The current implementation of this algorithm assumes that
476 the field was set for all the elements. This is usually done
477 by process_init_constructor. */
478 gcc_assert (field_index);
480 if (!array_type_p)
481 inner_type = TREE_TYPE (field_index);
483 if (TREE_CODE (value) == CONSTRUCTOR)
485 tree sub;
487 if (array_type_p)
488 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
489 NULL_TREE, NULL_TREE);
490 else
491 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
492 NULL_TREE);
494 split_nonconstant_init_1 (sub, value);
496 else if (!initializer_constant_valid_p (value, inner_type))
498 tree code;
499 tree sub;
501 /* FIXME: Ordered removal is O(1) so the whole function is
502 worst-case quadratic. This could be fixed using an aside
503 bitmap to record which elements must be removed and remove
504 them all at the same time. Or by merging
505 split_non_constant_init into process_init_constructor_array,
506 that is separating constants from non-constants while building
507 the vector. */
508 VEC_ordered_remove (constructor_elt, CONSTRUCTOR_ELTS (init),
509 idx);
510 --idx;
512 if (array_type_p)
513 sub = build4 (ARRAY_REF, inner_type, dest, field_index,
514 NULL_TREE, NULL_TREE);
515 else
516 sub = build3 (COMPONENT_REF, inner_type, dest, field_index,
517 NULL_TREE);
519 code = build2 (INIT_EXPR, inner_type, sub, value);
520 code = build_stmt (EXPR_STMT, code);
521 add_stmt (code);
522 continue;
525 break;
527 case VECTOR_TYPE:
528 if (!initializer_constant_valid_p (init, type))
530 tree code;
531 tree cons = copy_node (init);
532 CONSTRUCTOR_ELTS (init) = NULL;
533 code = build2 (MODIFY_EXPR, type, dest, cons);
534 code = build_stmt (EXPR_STMT, code);
535 add_stmt (code);
537 break;
539 default:
540 gcc_unreachable ();
543 /* The rest of the initializer is now a constant. */
544 TREE_CONSTANT (init) = 1;
547 /* A subroutine of store_init_value. Splits non-constant static
548 initializer INIT into a constant part and generates code to
549 perform the non-constant part of the initialization to DEST.
550 Returns the code for the runtime init. */
552 static tree
553 split_nonconstant_init (tree dest, tree init)
555 tree code;
557 if (TREE_CODE (init) == CONSTRUCTOR)
559 code = push_stmt_list ();
560 split_nonconstant_init_1 (dest, init);
561 code = pop_stmt_list (code);
562 DECL_INITIAL (dest) = init;
563 TREE_READONLY (dest) = 0;
565 else
566 code = build2 (INIT_EXPR, TREE_TYPE (dest), dest, init);
568 return code;
571 /* Perform appropriate conversions on the initial value of a variable,
572 store it in the declaration DECL,
573 and print any error messages that are appropriate.
574 If the init is invalid, store an ERROR_MARK.
576 C++: Note that INIT might be a TREE_LIST, which would mean that it is
577 a base class initializer for some aggregate type, hopefully compatible
578 with DECL. If INIT is a single element, and DECL is an aggregate
579 type, we silently convert INIT into a TREE_LIST, allowing a constructor
580 to be called.
582 If INIT is a TREE_LIST and there is no constructor, turn INIT
583 into a CONSTRUCTOR and use standard initialization techniques.
584 Perhaps a warning should be generated?
586 Returns code to be executed if initialization could not be performed
587 for static variable. In that case, caller must emit the code. */
589 tree
590 store_init_value (tree decl, tree init)
592 tree value, type;
594 /* If variable's type was invalidly declared, just ignore it. */
596 type = TREE_TYPE (decl);
597 if (TREE_CODE (type) == ERROR_MARK)
598 return NULL_TREE;
600 if (MAYBE_CLASS_TYPE_P (type))
602 gcc_assert (TYPE_HAS_TRIVIAL_INIT_REF (type)
603 || TREE_CODE (init) == CONSTRUCTOR);
605 if (TREE_CODE (init) == TREE_LIST)
607 error ("constructor syntax used, but no constructor declared "
608 "for type %qT", type);
609 init = build_constructor_from_list (init_list_type_node, nreverse (init));
612 else if (TREE_CODE (init) == TREE_LIST
613 && TREE_TYPE (init) != unknown_type_node)
615 if (TREE_CODE (decl) == RESULT_DECL)
616 init = build_x_compound_expr_from_list (init,
617 "return value initializer");
618 else if (TREE_CODE (init) == TREE_LIST
619 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
621 error ("cannot initialize arrays using this syntax");
622 return NULL_TREE;
624 else
625 /* We get here with code like `int a (2);' */
626 init = build_x_compound_expr_from_list (init, "initializer");
629 /* End of special C++ code. */
631 /* Digest the specified initializer into an expression. */
632 value = digest_init (type, init);
633 /* If the initializer is not a constant, fill in DECL_INITIAL with
634 the bits that are constant, and then return an expression that
635 will perform the dynamic initialization. */
636 if (value != error_mark_node
637 && (TREE_SIDE_EFFECTS (value)
638 || ! initializer_constant_valid_p (value, TREE_TYPE (value))))
639 return split_nonconstant_init (decl, value);
640 /* If the value is a constant, just put it in DECL_INITIAL. If DECL
641 is an automatic variable, the middle end will turn this into a
642 dynamic initialization later. */
643 DECL_INITIAL (decl) = value;
644 return NULL_TREE;
648 /* Give errors about narrowing conversions within { }. */
650 void
651 check_narrowing (tree type, tree init)
653 tree ftype = unlowered_expr_type (init);
654 bool ok = true;
655 REAL_VALUE_TYPE d;
656 bool was_decl = false;
658 if (DECL_P (init))
660 was_decl = true;
661 init = decl_constant_value (init);
664 if (TREE_CODE (type) == INTEGER_TYPE
665 && TREE_CODE (ftype) == REAL_TYPE)
666 ok = false;
667 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
668 && CP_INTEGRAL_TYPE_P (type))
670 if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype)
671 && (TREE_CODE (init) != INTEGER_CST
672 || !int_fits_type_p (init, type)))
673 ok = false;
675 else if (TREE_CODE (ftype) == REAL_TYPE
676 && TREE_CODE (type) == REAL_TYPE)
678 if (TYPE_PRECISION (type) < TYPE_PRECISION (ftype))
680 ok = false;
681 if (TREE_CODE (init) == REAL_CST)
683 d = TREE_REAL_CST (init);
684 if (exact_real_truncate (TYPE_MODE (type), &d)
685 /* FIXME: As a temporary workaround for PR 36963, don't
686 complain about narrowing from a floating
687 literal. Hopefully this will be resolved at the
688 September 2008 C++ meeting. */
689 || !was_decl)
690 ok = true;
694 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (ftype)
695 && TREE_CODE (type) == REAL_TYPE)
697 ok = false;
698 if (TREE_CODE (init) == INTEGER_CST)
700 d = real_value_from_int_cst (0, init);
701 if (exact_real_truncate (TYPE_MODE (type), &d))
702 ok = true;
706 if (!ok)
707 permerror (input_location, "narrowing conversion of %qE from %qT to %qT inside { }",
708 init, ftype, type);
711 /* Process the initializer INIT for a variable of type TYPE, emitting
712 diagnostics for invalid initializers and converting the initializer as
713 appropriate.
715 For aggregate types, it assumes that reshape_init has already run, thus the
716 initializer will have the right shape (brace elision has been undone).
718 NESTED is true iff we are being called for an element of a CONSTRUCTOR. */
720 static tree
721 digest_init_r (tree type, tree init, bool nested)
723 enum tree_code code = TREE_CODE (type);
725 if (init == error_mark_node)
726 return error_mark_node;
728 gcc_assert (init);
730 /* We must strip the outermost array type when completing the type,
731 because the its bounds might be incomplete at the moment. */
732 if (!complete_type_or_else (TREE_CODE (type) == ARRAY_TYPE
733 ? TREE_TYPE (type) : type, NULL_TREE))
734 return error_mark_node;
736 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue
737 (g++.old-deja/g++.law/casts2.C). */
738 if (TREE_CODE (init) == NON_LVALUE_EXPR)
739 init = TREE_OPERAND (init, 0);
741 /* Initialization of an array of chars from a string constant. The initializer
742 can be optionally enclosed in braces, but reshape_init has already removed
743 them if they were present. */
744 if (code == ARRAY_TYPE)
746 tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
747 if (char_type_p (typ1)
748 /*&& init */
749 && TREE_CODE (init) == STRING_CST)
751 tree char_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (init)));
753 if (TYPE_PRECISION (typ1) == BITS_PER_UNIT)
755 if (char_type != char_type_node)
757 error ("char-array initialized from wide string");
758 return error_mark_node;
761 else
763 if (char_type == char_type_node)
765 error ("int-array initialized from non-wide string");
766 return error_mark_node;
768 else if (char_type != typ1)
770 error ("int-array initialized from incompatible wide string");
771 return error_mark_node;
775 TREE_TYPE (init) = type;
776 if (TYPE_DOMAIN (type) != 0 && TREE_CONSTANT (TYPE_SIZE (type)))
778 int size = TREE_INT_CST_LOW (TYPE_SIZE (type));
779 size = (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
780 /* In C it is ok to subtract 1 from the length of the string
781 because it's ok to ignore the terminating null char that is
782 counted in the length of the constant, but in C++ this would
783 be invalid. */
784 if (size < TREE_STRING_LENGTH (init))
785 permerror (input_location, "initializer-string for array of chars is too long");
787 return init;
791 /* Handle scalar types (including conversions) and references. */
792 if ((TREE_CODE (type) != COMPLEX_TYPE
793 || BRACE_ENCLOSED_INITIALIZER_P (init))
794 && (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE))
796 tree *exp;
798 if (cxx_dialect != cxx98 && nested)
799 check_narrowing (type, init);
800 init = convert_for_initialization (0, type, init, LOOKUP_NORMAL,
801 "initialization", NULL_TREE, 0,
802 tf_warning_or_error);
803 exp = &init;
805 /* Skip any conversions since we'll be outputting the underlying
806 constant. */
807 while (CONVERT_EXPR_P (*exp)
808 || TREE_CODE (*exp) == NON_LVALUE_EXPR)
809 exp = &TREE_OPERAND (*exp, 0);
811 *exp = cplus_expand_constant (*exp);
813 return init;
816 /* Come here only for aggregates: records, arrays, unions, complex numbers
817 and vectors. */
818 gcc_assert (TREE_CODE (type) == ARRAY_TYPE
819 || TREE_CODE (type) == VECTOR_TYPE
820 || TREE_CODE (type) == RECORD_TYPE
821 || TREE_CODE (type) == UNION_TYPE
822 || TREE_CODE (type) == COMPLEX_TYPE);
824 if (BRACE_ENCLOSED_INITIALIZER_P (init)
825 && !TYPE_NON_AGGREGATE_CLASS (type))
826 return process_init_constructor (type, init);
827 else
829 if (COMPOUND_LITERAL_P (init) && TREE_CODE (type) == ARRAY_TYPE)
831 error ("cannot initialize aggregate of type %qT with "
832 "a compound literal", type);
834 return error_mark_node;
837 if (TREE_CODE (type) == ARRAY_TYPE
838 && TREE_CODE (init) != CONSTRUCTOR)
840 error ("array must be initialized with a brace-enclosed"
841 " initializer");
842 return error_mark_node;
845 return convert_for_initialization (NULL_TREE, type, init,
846 LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING,
847 "initialization", NULL_TREE, 0,
848 tf_warning_or_error);
852 tree
853 digest_init (tree type, tree init)
855 return digest_init_r (type, init, false);
858 /* Set of flags used within process_init_constructor to describe the
859 initializers. */
860 #define PICFLAG_ERRONEOUS 1
861 #define PICFLAG_NOT_ALL_CONSTANT 2
862 #define PICFLAG_NOT_ALL_SIMPLE 4
864 /* Given an initializer INIT, return the flag (PICFLAG_*) which better
865 describe it. */
867 static int
868 picflag_from_initializer (tree init)
870 if (init == error_mark_node)
871 return PICFLAG_ERRONEOUS;
872 else if (!TREE_CONSTANT (init))
873 return PICFLAG_NOT_ALL_CONSTANT;
874 else if (!initializer_constant_valid_p (init, TREE_TYPE (init)))
875 return PICFLAG_NOT_ALL_SIMPLE;
876 return 0;
879 /* Subroutine of process_init_constructor, which will process an initializer
880 INIT for an array or vector of type TYPE. Returns the flags (PICFLAG_*)
881 which describe the initializers. */
883 static int
884 process_init_constructor_array (tree type, tree init)
886 unsigned HOST_WIDE_INT i, len = 0;
887 int flags = 0;
888 bool unbounded = false;
889 constructor_elt *ce;
890 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (init);
892 gcc_assert (TREE_CODE (type) == ARRAY_TYPE
893 || TREE_CODE (type) == VECTOR_TYPE);
895 if (TREE_CODE (type) == ARRAY_TYPE)
897 tree domain = TYPE_DOMAIN (type);
898 if (domain)
899 len = (TREE_INT_CST_LOW (TYPE_MAX_VALUE (domain))
900 - TREE_INT_CST_LOW (TYPE_MIN_VALUE (domain))
901 + 1);
902 else
903 unbounded = true; /* Take as many as there are. */
905 else
906 /* Vectors are like simple fixed-size arrays. */
907 len = TYPE_VECTOR_SUBPARTS (type);
909 /* There cannot be more initializers than needed as otherwise
910 reshape_init would have already rejected the initializer. */
911 if (!unbounded)
912 gcc_assert (VEC_length (constructor_elt, v) <= len);
914 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
916 if (ce->index)
918 gcc_assert (TREE_CODE (ce->index) == INTEGER_CST);
919 if (compare_tree_int (ce->index, i) != 0)
921 ce->value = error_mark_node;
922 sorry ("non-trivial designated initializers not supported");
925 else
926 ce->index = size_int (i);
927 gcc_assert (ce->value);
928 ce->value = digest_init_r (TREE_TYPE (type), ce->value, true);
930 if (ce->value != error_mark_node)
931 gcc_assert (same_type_ignoring_top_level_qualifiers_p
932 (TREE_TYPE (type), TREE_TYPE (ce->value)));
934 flags |= picflag_from_initializer (ce->value);
937 /* No more initializers. If the array is unbounded, we are done. Otherwise,
938 we must add initializers ourselves. */
939 if (!unbounded)
940 for (; i < len; ++i)
942 tree next;
944 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (type)))
946 /* If this type needs constructors run for default-initialization,
947 we can't rely on the back end to do it for us, so build up
948 TARGET_EXPRs. If the type in question is a class, just build
949 one up; if it's an array, recurse. */
950 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (type)))
951 next = build_functional_cast (TREE_TYPE (type), NULL_TREE,
952 tf_warning_or_error);
953 else
954 next = build_constructor (init_list_type_node, NULL);
955 next = digest_init (TREE_TYPE (type), next);
957 else if (!zero_init_p (TREE_TYPE (type)))
958 next = build_zero_init (TREE_TYPE (type),
959 /*nelts=*/NULL_TREE,
960 /*static_storage_p=*/false);
961 else
962 /* The default zero-initialization is fine for us; don't
963 add anything to the CONSTRUCTOR. */
964 break;
966 flags |= picflag_from_initializer (next);
967 CONSTRUCTOR_APPEND_ELT (v, size_int (i), next);
970 CONSTRUCTOR_ELTS (init) = v;
971 return flags;
974 /* Subroutine of process_init_constructor, which will process an initializer
975 INIT for a class of type TYPE. Returns the flags (PICFLAG_*) which describe
976 the initializers. */
978 static int
979 process_init_constructor_record (tree type, tree init)
981 VEC(constructor_elt,gc) *v = NULL;
982 int flags = 0;
983 tree field;
984 unsigned HOST_WIDE_INT idx = 0;
986 gcc_assert (TREE_CODE (type) == RECORD_TYPE);
987 gcc_assert (!CLASSTYPE_VBASECLASSES (type));
988 gcc_assert (!TYPE_BINFO (type)
989 || !BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
990 gcc_assert (!TYPE_POLYMORPHIC_P (type));
992 /* Generally, we will always have an index for each initializer (which is
993 a FIELD_DECL, put by reshape_init), but compound literals don't go trough
994 reshape_init. So we need to handle both cases. */
995 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
997 tree next;
998 tree type;
1000 if (!DECL_NAME (field) && DECL_C_BIT_FIELD (field))
1002 flags |= picflag_from_initializer (integer_zero_node);
1003 CONSTRUCTOR_APPEND_ELT (v, field, integer_zero_node);
1004 continue;
1007 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
1008 continue;
1010 /* If this is a bitfield, first convert to the declared type. */
1011 type = TREE_TYPE (field);
1012 if (DECL_BIT_FIELD_TYPE (field))
1013 type = DECL_BIT_FIELD_TYPE (field);
1015 if (idx < VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)))
1017 constructor_elt *ce = VEC_index (constructor_elt,
1018 CONSTRUCTOR_ELTS (init), idx);
1019 if (ce->index)
1021 /* We can have either a FIELD_DECL or an IDENTIFIER_NODE. The
1022 latter case can happen in templates where lookup has to be
1023 deferred. */
1024 gcc_assert (TREE_CODE (ce->index) == FIELD_DECL
1025 || TREE_CODE (ce->index) == IDENTIFIER_NODE);
1026 if (ce->index != field
1027 && ce->index != DECL_NAME (field))
1029 ce->value = error_mark_node;
1030 sorry ("non-trivial designated initializers not supported");
1034 gcc_assert (ce->value);
1035 next = digest_init_r (type, ce->value, true);
1036 ++idx;
1038 else if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (field)))
1040 /* If this type needs constructors run for
1041 default-initialization, we can't rely on the back end to do it
1042 for us, so build up TARGET_EXPRs. If the type in question is
1043 a class, just build one up; if it's an array, recurse. */
1044 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (field)))
1045 next = build_functional_cast (TREE_TYPE (field), NULL_TREE,
1046 tf_warning_or_error);
1047 else
1048 next = build_constructor (init_list_type_node, NULL);
1050 next = digest_init_r (TREE_TYPE (field), next, true);
1052 /* Warn when some struct elements are implicitly initialized. */
1053 warning (OPT_Wmissing_field_initializers,
1054 "missing initializer for member %qD", field);
1056 else
1058 if (TREE_READONLY (field))
1059 error ("uninitialized const member %qD", field);
1060 else if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (TREE_TYPE (field)))
1061 error ("member %qD with uninitialized const fields", field);
1062 else if (TREE_CODE (TREE_TYPE (field)) == REFERENCE_TYPE)
1063 error ("member %qD is uninitialized reference", field);
1065 /* Warn when some struct elements are implicitly initialized
1066 to zero. */
1067 warning (OPT_Wmissing_field_initializers,
1068 "missing initializer for member %qD", field);
1070 if (!zero_init_p (TREE_TYPE (field)))
1071 next = build_zero_init (TREE_TYPE (field), /*nelts=*/NULL_TREE,
1072 /*static_storage_p=*/false);
1073 else
1074 /* The default zero-initialization is fine for us; don't
1075 add anything to the CONSTRUCTOR. */
1076 continue;
1079 /* If this is a bitfield, now convert to the lowered type. */
1080 if (type != TREE_TYPE (field))
1081 next = cp_convert_and_check (TREE_TYPE (field), next);
1082 flags |= picflag_from_initializer (next);
1083 CONSTRUCTOR_APPEND_ELT (v, field, next);
1086 if (idx < VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init)))
1087 error ("too many initializers for %qT", type);
1089 CONSTRUCTOR_ELTS (init) = v;
1090 return flags;
1093 /* Subroutine of process_init_constructor, which will process a single
1094 initializer INIT for a union of type TYPE. Returns the flags (PICFLAG_*)
1095 which describe the initializer. */
1097 static int
1098 process_init_constructor_union (tree type, tree init)
1100 constructor_elt *ce;
1101 int len;
1103 /* If the initializer was empty, use default zero initialization. */
1104 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
1105 return 0;
1107 len = VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init));
1108 if (len > 1)
1110 error ("too many initializers for %qT", type);
1111 VEC_block_remove (constructor_elt, CONSTRUCTOR_ELTS (init), 1, len-1);
1114 ce = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (init), 0);
1116 /* If this element specifies a field, initialize via that field. */
1117 if (ce->index)
1119 if (TREE_CODE (ce->index) == FIELD_DECL)
1121 else if (TREE_CODE (ce->index) == IDENTIFIER_NODE)
1123 /* This can happen within a cast, see g++.dg/opt/cse2.C. */
1124 tree name = ce->index;
1125 tree field;
1126 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1127 if (DECL_NAME (field) == name)
1128 break;
1129 if (!field)
1131 error ("no field %qD found in union being initialized", field);
1132 ce->value = error_mark_node;
1134 ce->index = field;
1136 else
1138 gcc_assert (TREE_CODE (ce->index) == INTEGER_CST
1139 || TREE_CODE (ce->index) == RANGE_EXPR);
1140 error ("index value instead of field name in union initializer");
1141 ce->value = error_mark_node;
1144 else
1146 /* Find the first named field. ANSI decided in September 1990
1147 that only named fields count here. */
1148 tree field = TYPE_FIELDS (type);
1149 while (field && (!DECL_NAME (field) || TREE_CODE (field) != FIELD_DECL))
1150 field = TREE_CHAIN (field);
1151 if (field == NULL_TREE)
1153 error ("too many initializers for %qT", type);
1154 ce->value = error_mark_node;
1156 ce->index = field;
1159 if (ce->value && ce->value != error_mark_node)
1160 ce->value = digest_init_r (TREE_TYPE (ce->index), ce->value, true);
1162 return picflag_from_initializer (ce->value);
1165 /* Process INIT, a constructor for a variable of aggregate type TYPE. The
1166 constructor is a brace-enclosed initializer, and will be modified in-place.
1168 Each element is converted to the right type through digest_init, and
1169 missing initializers are added following the language rules (zero-padding,
1170 etc.).
1172 After the execution, the initializer will have TREE_CONSTANT if all elts are
1173 constant, and TREE_STATIC set if, in addition, all elts are simple enough
1174 constants that the assembler and linker can compute them.
1176 The function returns the initializer itself, or error_mark_node in case
1177 of error. */
1179 static tree
1180 process_init_constructor (tree type, tree init)
1182 int flags;
1184 gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
1186 if (TREE_CODE (type) == ARRAY_TYPE || TREE_CODE (type) == VECTOR_TYPE)
1187 flags = process_init_constructor_array (type, init);
1188 else if (TREE_CODE (type) == RECORD_TYPE)
1189 flags = process_init_constructor_record (type, init);
1190 else if (TREE_CODE (type) == UNION_TYPE)
1191 flags = process_init_constructor_union (type, init);
1192 else
1193 gcc_unreachable ();
1195 if (flags & PICFLAG_ERRONEOUS)
1196 return error_mark_node;
1198 TREE_TYPE (init) = type;
1199 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == NULL_TREE)
1200 cp_complete_array_type (&TREE_TYPE (init), init, /*do_default=*/0);
1201 if (!(flags & PICFLAG_NOT_ALL_CONSTANT))
1203 TREE_CONSTANT (init) = 1;
1204 if (!(flags & PICFLAG_NOT_ALL_SIMPLE))
1205 TREE_STATIC (init) = 1;
1207 return init;
1210 /* Given a structure or union value DATUM, construct and return
1211 the structure or union component which results from narrowing
1212 that value to the base specified in BASETYPE. For example, given the
1213 hierarchy
1215 class L { int ii; };
1216 class A : L { ... };
1217 class B : L { ... };
1218 class C : A, B { ... };
1220 and the declaration
1222 C x;
1224 then the expression
1226 x.A::ii refers to the ii member of the L part of
1227 the A part of the C object named by X. In this case,
1228 DATUM would be x, and BASETYPE would be A.
1230 I used to think that this was nonconformant, that the standard specified
1231 that first we look up ii in A, then convert x to an L& and pull out the
1232 ii part. But in fact, it does say that we convert x to an A&; A here
1233 is known as the "naming class". (jason 2000-12-19)
1235 BINFO_P points to a variable initialized either to NULL_TREE or to the
1236 binfo for the specific base subobject we want to convert to. */
1238 tree
1239 build_scoped_ref (tree datum, tree basetype, tree* binfo_p)
1241 tree binfo;
1243 if (datum == error_mark_node)
1244 return error_mark_node;
1245 if (*binfo_p)
1246 binfo = *binfo_p;
1247 else
1248 binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check, NULL);
1250 if (!binfo || binfo == error_mark_node)
1252 *binfo_p = NULL_TREE;
1253 if (!binfo)
1254 error_not_base_type (basetype, TREE_TYPE (datum));
1255 return error_mark_node;
1258 *binfo_p = binfo;
1259 return build_base_path (PLUS_EXPR, datum, binfo, 1);
1262 /* Build a reference to an object specified by the C++ `->' operator.
1263 Usually this just involves dereferencing the object, but if the
1264 `->' operator is overloaded, then such overloads must be
1265 performed until an object which does not have the `->' operator
1266 overloaded is found. An error is reported when circular pointer
1267 delegation is detected. */
1269 tree
1270 build_x_arrow (tree expr)
1272 tree orig_expr = expr;
1273 tree types_memoized = NULL_TREE;
1274 tree type = TREE_TYPE (expr);
1275 tree last_rval = NULL_TREE;
1277 if (type == error_mark_node)
1278 return error_mark_node;
1280 if (processing_template_decl)
1282 if (type_dependent_expression_p (expr))
1283 return build_min_nt (ARROW_EXPR, expr);
1284 expr = build_non_dependent_expr (expr);
1287 if (MAYBE_CLASS_TYPE_P (type))
1289 while ((expr = build_new_op (COMPONENT_REF, LOOKUP_NORMAL, expr,
1290 NULL_TREE, NULL_TREE,
1291 /*overloaded_p=*/NULL,
1292 tf_warning_or_error)))
1294 if (expr == error_mark_node)
1295 return error_mark_node;
1297 if (value_member (TREE_TYPE (expr), types_memoized))
1299 error ("circular pointer delegation detected");
1300 return error_mark_node;
1302 else
1304 types_memoized = tree_cons (NULL_TREE, TREE_TYPE (expr),
1305 types_memoized);
1307 last_rval = expr;
1310 if (last_rval == NULL_TREE)
1312 error ("base operand of %<->%> has non-pointer type %qT", type);
1313 return error_mark_node;
1316 if (TREE_CODE (TREE_TYPE (last_rval)) == REFERENCE_TYPE)
1317 last_rval = convert_from_reference (last_rval);
1319 else
1320 last_rval = decay_conversion (expr);
1322 if (TREE_CODE (TREE_TYPE (last_rval)) == POINTER_TYPE)
1324 if (processing_template_decl)
1326 expr = build_min_non_dep (ARROW_EXPR, last_rval, orig_expr);
1327 /* It will be dereferenced. */
1328 TREE_TYPE (expr) = TREE_TYPE (TREE_TYPE (last_rval));
1329 return expr;
1332 return cp_build_indirect_ref (last_rval, NULL, tf_warning_or_error);
1335 if (types_memoized)
1336 error ("result of %<operator->()%> yields non-pointer result");
1337 else
1338 error ("base operand of %<->%> is not a pointer");
1339 return error_mark_node;
1342 /* Return an expression for "DATUM .* COMPONENT". DATUM has not
1343 already been checked out to be of aggregate type. */
1345 tree
1346 build_m_component_ref (tree datum, tree component)
1348 tree ptrmem_type;
1349 tree objtype;
1350 tree type;
1351 tree binfo;
1352 tree ctype;
1354 if (error_operand_p (datum) || error_operand_p (component))
1355 return error_mark_node;
1357 ptrmem_type = TREE_TYPE (component);
1358 if (!TYPE_PTR_TO_MEMBER_P (ptrmem_type))
1360 error ("%qE cannot be used as a member pointer, since it is of "
1361 "type %qT",
1362 component, ptrmem_type);
1363 return error_mark_node;
1366 objtype = TYPE_MAIN_VARIANT (TREE_TYPE (datum));
1367 if (! MAYBE_CLASS_TYPE_P (objtype))
1369 error ("cannot apply member pointer %qE to %qE, which is of "
1370 "non-class type %qT",
1371 component, datum, objtype);
1372 return error_mark_node;
1375 type = TYPE_PTRMEM_POINTED_TO_TYPE (ptrmem_type);
1376 ctype = complete_type (TYPE_PTRMEM_CLASS_TYPE (ptrmem_type));
1378 if (!COMPLETE_TYPE_P (ctype))
1380 if (!same_type_p (ctype, objtype))
1381 goto mismatch;
1382 binfo = NULL;
1384 else
1386 binfo = lookup_base (objtype, ctype, ba_check, NULL);
1388 if (!binfo)
1390 mismatch:
1391 error ("pointer to member type %qT incompatible with object "
1392 "type %qT",
1393 type, objtype);
1394 return error_mark_node;
1396 else if (binfo == error_mark_node)
1397 return error_mark_node;
1400 if (TYPE_PTRMEM_P (ptrmem_type))
1402 tree ptype;
1404 /* Compute the type of the field, as described in [expr.ref].
1405 There's no such thing as a mutable pointer-to-member, so
1406 things are not as complex as they are for references to
1407 non-static data members. */
1408 type = cp_build_qualified_type (type,
1409 (cp_type_quals (type)
1410 | cp_type_quals (TREE_TYPE (datum))));
1412 datum = build_address (datum);
1414 /* Convert object to the correct base. */
1415 if (binfo)
1416 datum = build_base_path (PLUS_EXPR, datum, binfo, 1);
1418 /* Build an expression for "object + offset" where offset is the
1419 value stored in the pointer-to-data-member. */
1420 ptype = build_pointer_type (type);
1421 datum = build2 (POINTER_PLUS_EXPR, ptype,
1422 fold_convert (ptype, datum),
1423 build_nop (sizetype, component));
1424 return cp_build_indirect_ref (datum, 0, tf_warning_or_error);
1426 else
1427 return build2 (OFFSET_REF, type, datum, component);
1430 /* Return a tree node for the expression TYPENAME '(' PARMS ')'. */
1432 tree
1433 build_functional_cast (tree exp, tree parms, tsubst_flags_t complain)
1435 /* This is either a call to a constructor,
1436 or a C cast in C++'s `functional' notation. */
1438 /* The type to which we are casting. */
1439 tree type;
1441 if (exp == error_mark_node || parms == error_mark_node)
1442 return error_mark_node;
1444 if (TREE_CODE (exp) == TYPE_DECL)
1445 type = TREE_TYPE (exp);
1446 else
1447 type = exp;
1449 if (TREE_CODE (type) == REFERENCE_TYPE && !parms)
1451 error ("invalid value-initialization of reference types");
1452 return error_mark_node;
1455 if (processing_template_decl)
1457 tree t = build_min (CAST_EXPR, type, parms);
1458 /* We don't know if it will or will not have side effects. */
1459 TREE_SIDE_EFFECTS (t) = 1;
1460 return t;
1463 if (! MAYBE_CLASS_TYPE_P (type))
1465 if (parms == NULL_TREE)
1466 return cp_convert (type, integer_zero_node);
1468 /* This must build a C cast. */
1469 parms = build_x_compound_expr_from_list (parms, "functional cast");
1470 return cp_build_c_cast (type, parms, complain);
1473 /* Prepare to evaluate as a call to a constructor. If this expression
1474 is actually used, for example,
1476 return X (arg1, arg2, ...);
1478 then the slot being initialized will be filled in. */
1480 if (!complete_type_or_else (type, NULL_TREE))
1481 return error_mark_node;
1482 if (abstract_virtuals_error (NULL_TREE, type))
1483 return error_mark_node;
1485 /* [expr.type.conv]
1487 If the expression list is a single-expression, the type
1488 conversion is equivalent (in definedness, and if defined in
1489 meaning) to the corresponding cast expression. */
1490 if (parms && TREE_CHAIN (parms) == NULL_TREE)
1491 return cp_build_c_cast (type, TREE_VALUE (parms), complain);
1493 /* [expr.type.conv]
1495 The expression T(), where T is a simple-type-specifier for a
1496 non-array complete object type or the (possibly cv-qualified)
1497 void type, creates an rvalue of the specified type, which is
1498 value-initialized. */
1500 if (parms == NULL_TREE
1501 /* If there's a user-defined constructor, value-initialization is
1502 just calling the constructor, so fall through. */
1503 && !TYPE_HAS_USER_CONSTRUCTOR (type))
1505 exp = build_value_init (type);
1506 return get_target_expr (exp);
1509 /* Call the constructor. */
1510 exp = build_special_member_call (NULL_TREE, complete_ctor_identifier, parms,
1511 type, LOOKUP_NORMAL, complain);
1513 if (exp == error_mark_node)
1514 return error_mark_node;
1516 return build_cplus_new (type, exp);
1520 /* Add new exception specifier SPEC, to the LIST we currently have.
1521 If it's already in LIST then do nothing.
1522 Moan if it's bad and we're allowed to. COMPLAIN < 0 means we
1523 know what we're doing. */
1525 tree
1526 add_exception_specifier (tree list, tree spec, int complain)
1528 bool ok;
1529 tree core = spec;
1530 bool is_ptr;
1531 diagnostic_t diag_type = DK_UNSPECIFIED; /* none */
1533 if (spec == error_mark_node)
1534 return list;
1536 gcc_assert (spec && (!list || TREE_VALUE (list)));
1538 /* [except.spec] 1, type in an exception specifier shall not be
1539 incomplete, or pointer or ref to incomplete other than pointer
1540 to cv void. */
1541 is_ptr = TREE_CODE (core) == POINTER_TYPE;
1542 if (is_ptr || TREE_CODE (core) == REFERENCE_TYPE)
1543 core = TREE_TYPE (core);
1544 if (complain < 0)
1545 ok = true;
1546 else if (VOID_TYPE_P (core))
1547 ok = is_ptr;
1548 else if (TREE_CODE (core) == TEMPLATE_TYPE_PARM)
1549 ok = true;
1550 else if (processing_template_decl)
1551 ok = true;
1552 else
1554 ok = true;
1555 /* 15.4/1 says that types in an exception specifier must be complete,
1556 but it seems more reasonable to only require this on definitions
1557 and calls. So just give a pedwarn at this point; we will give an
1558 error later if we hit one of those two cases. */
1559 if (!COMPLETE_TYPE_P (complete_type (core)))
1560 diag_type = DK_PEDWARN; /* pedwarn */
1563 if (ok)
1565 tree probe;
1567 for (probe = list; probe; probe = TREE_CHAIN (probe))
1568 if (same_type_p (TREE_VALUE (probe), spec))
1569 break;
1570 if (!probe)
1571 list = tree_cons (NULL_TREE, spec, list);
1573 else
1574 diag_type = DK_ERROR; /* error */
1576 if (diag_type != DK_UNSPECIFIED && complain)
1577 cxx_incomplete_type_diagnostic (NULL_TREE, core, diag_type);
1579 return list;
1582 /* Combine the two exceptions specifier lists LIST and ADD, and return
1583 their union. */
1585 tree
1586 merge_exception_specifiers (tree list, tree add)
1588 if (!list || !add)
1589 return NULL_TREE;
1590 else if (!TREE_VALUE (list))
1591 return add;
1592 else if (!TREE_VALUE (add))
1593 return list;
1594 else
1596 tree orig_list = list;
1598 for (; add; add = TREE_CHAIN (add))
1600 tree spec = TREE_VALUE (add);
1601 tree probe;
1603 for (probe = orig_list; probe; probe = TREE_CHAIN (probe))
1604 if (same_type_p (TREE_VALUE (probe), spec))
1605 break;
1606 if (!probe)
1608 spec = build_tree_list (NULL_TREE, spec);
1609 TREE_CHAIN (spec) = list;
1610 list = spec;
1614 return list;
1617 /* Subroutine of build_call. Ensure that each of the types in the
1618 exception specification is complete. Technically, 15.4/1 says that
1619 they need to be complete when we see a declaration of the function,
1620 but we should be able to get away with only requiring this when the
1621 function is defined or called. See also add_exception_specifier. */
1623 void
1624 require_complete_eh_spec_types (tree fntype, tree decl)
1626 tree raises;
1627 /* Don't complain about calls to op new. */
1628 if (decl && DECL_ARTIFICIAL (decl))
1629 return;
1630 for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
1631 raises = TREE_CHAIN (raises))
1633 tree type = TREE_VALUE (raises);
1634 if (type && !COMPLETE_TYPE_P (type))
1636 if (decl)
1637 error
1638 ("call to function %qD which throws incomplete type %q#T",
1639 decl, type);
1640 else
1641 error ("call to function which throws incomplete type %q#T",
1642 decl);
1648 #include "gt-cp-typeck2.h"